From cfae0fc06c9685763829b77c65e54fce9ee29fa3 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Thu, 15 Sep 2022 09:24:38 +0200 Subject: [PATCH 01/59] init --- packages/css-tokenizer/.gitignore | 6 + packages/css-tokenizer/.nvmrc | 1 + packages/css-tokenizer/CHANGELOG.md | 3 + packages/css-tokenizer/LICENSE.md | 20 ++ packages/css-tokenizer/README.md | 1 + packages/css-tokenizer/package.json | 72 +++++ packages/css-tokenizer/src/index.ts | 0 packages/css-tokenizer/src/tokenize.ts | 293 ++++++++++++++++++ packages/css-tokenizer/stryker.conf.json | 19 ++ packages/css-tokenizer/test/_import.mjs | 8 + packages/css-tokenizer/test/_require.cjs | 8 + packages/css-tokenizer/test/example.mjs | 10 + packages/css-tokenizer/test/test-compare.mjs | 20 ++ packages/css-tokenizer/test/test.mjs | 95 ++++++ .../test/tests-from-bramus-specificity.mjs | 106 +++++++ .../tests-from-keeganstreet-specificity.mjs | 78 +++++ packages/css-tokenizer/tsconfig.json | 9 + 17 files changed, 749 insertions(+) create mode 100644 packages/css-tokenizer/.gitignore create mode 100644 packages/css-tokenizer/.nvmrc create mode 100644 packages/css-tokenizer/CHANGELOG.md create mode 100644 packages/css-tokenizer/LICENSE.md create mode 100644 packages/css-tokenizer/README.md create mode 100644 packages/css-tokenizer/package.json create mode 100644 packages/css-tokenizer/src/index.ts create mode 100644 packages/css-tokenizer/src/tokenize.ts create mode 100644 packages/css-tokenizer/stryker.conf.json create mode 100644 packages/css-tokenizer/test/_import.mjs create mode 100644 packages/css-tokenizer/test/_require.cjs create mode 100644 packages/css-tokenizer/test/example.mjs create mode 100644 packages/css-tokenizer/test/test-compare.mjs create mode 100644 packages/css-tokenizer/test/test.mjs create mode 100644 packages/css-tokenizer/test/tests-from-bramus-specificity.mjs create mode 100644 packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs create mode 100644 packages/css-tokenizer/tsconfig.json diff --git a/packages/css-tokenizer/.gitignore b/packages/css-tokenizer/.gitignore new file mode 100644 index 0000000000..7172b04f10 --- /dev/null +++ b/packages/css-tokenizer/.gitignore @@ -0,0 +1,6 @@ +node_modules +package-lock.json +yarn.lock +*.result.css +*.result.css.map +dist/* diff --git a/packages/css-tokenizer/.nvmrc b/packages/css-tokenizer/.nvmrc new file mode 100644 index 0000000000..f0b10f153f --- /dev/null +++ b/packages/css-tokenizer/.nvmrc @@ -0,0 +1 @@ +v16.13.1 diff --git a/packages/css-tokenizer/CHANGELOG.md b/packages/css-tokenizer/CHANGELOG.md new file mode 100644 index 0000000000..b0ff6b0825 --- /dev/null +++ b/packages/css-tokenizer/CHANGELOG.md @@ -0,0 +1,3 @@ +### 1.0.0 + +- Initial version diff --git a/packages/css-tokenizer/LICENSE.md b/packages/css-tokenizer/LICENSE.md new file mode 100644 index 0000000000..af5411fa24 --- /dev/null +++ b/packages/css-tokenizer/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2022 Romain Menke, Antonio Laguna + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md new file mode 100644 index 0000000000..464090415c --- /dev/null +++ b/packages/css-tokenizer/README.md @@ -0,0 +1 @@ +# TODO diff --git a/packages/css-tokenizer/package.json b/packages/css-tokenizer/package.json new file mode 100644 index 0000000000..46558fd281 --- /dev/null +++ b/packages/css-tokenizer/package.json @@ -0,0 +1,72 @@ +{ + "name": "@csstools/css-tokenizer", + "description": "Tokenize CSS", + "version": "1.0.0", + "contributors": [ + { + "name": "Antonio Laguna", + "email": "antonio@laguna.es", + "url": "https://antonio.laguna.es" + }, + { + "name": "Romain Menke", + "email": "romainmenke@gmail.com" + } + ], + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "main": "dist/index.cjs", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.cjs", + "default": "./dist/index.mjs" + } + }, + "files": [ + "CHANGELOG.md", + "LICENSE.md", + "README.md", + "dist" + ], + "peerDependencies": { + "postcss": "^8.2", + "postcss-selector-parser": "^6.0.10" + }, + "devDependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "scripts": { + "build": "rollup -c ../../rollup/default.js", + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", + "lint": "npm run lint:eslint && npm run lint:package-json", + "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", + "lint:package-json": "node ../../.github/bin/format-package-json.mjs", + "prepublishOnly": "npm run clean && npm run build && npm run test", + "stryker": "stryker run --logLevel error", + "test": "npm run test:exports && node ./test/example.mjs && node ./test/test.mjs && node ./test/tests-from-bramus-specificity.mjs && node ./test/tests-from-keeganstreet-specificity.mjs && node ./test/test-compare.mjs", + "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs" + }, + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer#readme", + "repository": { + "type": "git", + "url": "https://github.com/csstools/postcss-plugins.git", + "directory": "packages/css-tokenizer" + }, + "bugs": "https://github.com/csstools/postcss-plugins/issues", + "keywords": [ + "css", + "tokenizer" + ], + "volta": { + "extends": "../../package.json" + } +} diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/css-tokenizer/src/tokenize.ts b/packages/css-tokenizer/src/tokenize.ts new file mode 100644 index 0000000000..ccaf9e4ddc --- /dev/null +++ b/packages/css-tokenizer/src/tokenize.ts @@ -0,0 +1,293 @@ +// The MIT License (MIT) +// +// Copyright 2013 Andrey Sitnik +// +// Permission is hereby granted, free of charge, to any person obtaining a copy of +// this software and associated documentation files (the "Software"), to deal in +// the Software without restriction, including without limitation the rights to +// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +// the Software, and to permit persons to whom the Software is furnished to do so, +// subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// +// https://github.com/postcss/postcss + +'use strict'; + +const SINGLE_QUOTE = '\''.charCodeAt(0); +const DOUBLE_QUOTE = '"'.charCodeAt(0); +const BACKSLASH = '\\'.charCodeAt(0); +const SLASH = '/'.charCodeAt(0); +const NEWLINE = '\n'.charCodeAt(0); +const SPACE = ' '.charCodeAt(0); +const FEED = '\f'.charCodeAt(0); +const TAB = '\t'.charCodeAt(0); +const CR = '\r'.charCodeAt(0); +const OPEN_SQUARE = '['.charCodeAt(0); +const CLOSE_SQUARE = ']'.charCodeAt(0); +const OPEN_PARENTHESES = '('.charCodeAt(0); +const CLOSE_PARENTHESES = ')'.charCodeAt(0); +const OPEN_CURLY = '{'.charCodeAt(0); +const CLOSE_CURLY = '}'.charCodeAt(0); +const SEMICOLON = ';'.charCodeAt(0); +const ASTERISK = '*'.charCodeAt(0); +const COLON = ':'.charCodeAt(0); +const AT = '@'.charCodeAt(0); + +const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g; +const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g; +const RE_BAD_BRACKET = /.[\n"'(/\\]/; +const RE_HEX_ESCAPE = /[\da-f]/i; + +module.exports = function tokenizer(input, options = {}) { + const css = input.css.valueOf(); + const ignore = options.ignoreErrors; + + let code, next, quote, content, escape; + let escaped, escapePos, prev, n, currentToken; + + const length = css.length; + let pos = 0; + const buffer = []; + const returned = []; + + function position() { + return pos; + } + + function unclosed(what) { + throw input.error('Unclosed ' + what, pos); + } + + function endOfFile() { + return returned.length === 0 && pos >= length; + } + + function nextToken(opts) { + if (returned.length) { + return returned.pop(); + } + if (pos >= length) { + return; + } + + const ignoreUnclosed = opts ? opts.ignoreUnclosed : false; + + code = css.charCodeAt(pos); + + switch (code) { + case NEWLINE: + case SPACE: + case TAB: + case CR: + case FEED: { + next = pos; + do { + next += 1; + code = css.charCodeAt(next); + } while ( + code === SPACE || + code === NEWLINE || + code === TAB || + code === CR || + code === FEED + ); + + currentToken = ['space', css.slice(pos, next)]; + pos = next - 1; + break; + } + + case OPEN_SQUARE: + case CLOSE_SQUARE: + case OPEN_CURLY: + case CLOSE_CURLY: + case COLON: + case SEMICOLON: + case CLOSE_PARENTHESES: { + const controlChar = String.fromCharCode(code); + currentToken = [controlChar, controlChar, pos]; + break; + } + + case OPEN_PARENTHESES: { + prev = buffer.length ? buffer.pop()[1] : ''; + n = css.charCodeAt(pos + 1); + if ( + prev === 'url' && + n !== SINGLE_QUOTE && + n !== DOUBLE_QUOTE && + n !== SPACE && + n !== NEWLINE && + n !== TAB && + n !== FEED && + n !== CR + ) { + next = pos; + do { + escaped = false; + next = css.indexOf(')', next + 1); + if (next === -1) { + if (ignore || ignoreUnclosed) { + next = pos; + break; + } else { + unclosed('bracket'); + } + } + escapePos = next; + while (css.charCodeAt(escapePos - 1) === BACKSLASH) { + escapePos -= 1; + escaped = !escaped; + } + } while (escaped); + + currentToken = ['brackets', css.slice(pos, next + 1), pos, next]; + + pos = next; + } else { + next = css.indexOf(')', pos + 1); + content = css.slice(pos, next + 1); + + if (next === -1 || RE_BAD_BRACKET.test(content)) { + currentToken = ['(', '(', pos]; + } else { + currentToken = ['brackets', content, pos, next]; + pos = next; + } + } + + break; + } + + case SINGLE_QUOTE: + case DOUBLE_QUOTE: { + quote = code === SINGLE_QUOTE ? '\'' : '"'; + next = pos; + do { + escaped = false; + next = css.indexOf(quote, next + 1); + if (next === -1) { + if (ignore || ignoreUnclosed) { + next = pos + 1; + break; + } else { + unclosed('string'); + } + } + escapePos = next; + while (css.charCodeAt(escapePos - 1) === BACKSLASH) { + escapePos -= 1; + escaped = !escaped; + } + } while (escaped); + + currentToken = ['string', css.slice(pos, next + 1), pos, next]; + pos = next; + break; + } + + case AT: { + RE_AT_END.lastIndex = pos + 1; + RE_AT_END.test(css); + if (RE_AT_END.lastIndex === 0) { + next = css.length - 1; + } else { + next = RE_AT_END.lastIndex - 2; + } + + currentToken = ['at-word', css.slice(pos, next + 1), pos, next]; + + pos = next; + break; + } + + case BACKSLASH: { + next = pos; + escape = true; + while (css.charCodeAt(next + 1) === BACKSLASH) { + next += 1; + escape = !escape; + } + code = css.charCodeAt(next + 1); + if ( + escape && + code !== SLASH && + code !== SPACE && + code !== NEWLINE && + code !== TAB && + code !== CR && + code !== FEED + ) { + next += 1; + if (RE_HEX_ESCAPE.test(css.charAt(next))) { + while (RE_HEX_ESCAPE.test(css.charAt(next + 1))) { + next += 1; + } + if (css.charCodeAt(next + 1) === SPACE) { + next += 1; + } + } + } + + currentToken = ['word', css.slice(pos, next + 1), pos, next]; + + pos = next; + break; + } + + default: { + if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) { + next = css.indexOf('*/', pos + 2) + 1; + if (next === 0) { + if (ignore || ignoreUnclosed) { + next = css.length; + } else { + unclosed('comment'); + } + } + + currentToken = ['comment', css.slice(pos, next + 1), pos, next]; + pos = next; + } else { + RE_WORD_END.lastIndex = pos + 1; + RE_WORD_END.test(css); + if (RE_WORD_END.lastIndex === 0) { + next = css.length - 1; + } else { + next = RE_WORD_END.lastIndex - 2; + } + + currentToken = ['word', css.slice(pos, next + 1), pos, next]; + buffer.push(currentToken); + pos = next; + } + + break; + } + } + + pos++; + return currentToken; + } + + function back(token) { + returned.push(token); + } + + return { + back, + nextToken, + endOfFile, + position, + }; +}; diff --git a/packages/css-tokenizer/stryker.conf.json b/packages/css-tokenizer/stryker.conf.json new file mode 100644 index 0000000000..015ebbb73c --- /dev/null +++ b/packages/css-tokenizer/stryker.conf.json @@ -0,0 +1,19 @@ +{ + "$schema": "../../node_modules/@stryker-mutator/core/schema/stryker-schema.json", + "mutate": [ + "src/**/*.ts" + ], + "buildCommand": "npm run build", + "testRunner": "command", + "coverageAnalysis": "perTest", + "tempDirName": "../../.stryker-tmp", + "commandRunner": { + "command": "npm run test" + }, + "thresholds": { + "high": 100, + "low": 100, + "break": 100 + }, + "inPlace": true +} diff --git a/packages/css-tokenizer/test/_import.mjs b/packages/css-tokenizer/test/_import.mjs new file mode 100644 index 0000000000..9c969f45d0 --- /dev/null +++ b/packages/css-tokenizer/test/_import.mjs @@ -0,0 +1,8 @@ +import assert from 'assert'; +import { selectorSpecificity, compare } from '@csstools/selector-specificity'; + +assert.equal(selectorSpecificity().a, 0); +assert.equal(selectorSpecificity().b, 0); +assert.equal(selectorSpecificity().c, 0); + +assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/css-tokenizer/test/_require.cjs b/packages/css-tokenizer/test/_require.cjs new file mode 100644 index 0000000000..018f19a809 --- /dev/null +++ b/packages/css-tokenizer/test/_require.cjs @@ -0,0 +1,8 @@ +const assert = require('assert'); +const { selectorSpecificity, compare } = require('@csstools/selector-specificity'); + +assert.equal(selectorSpecificity().a, 0); +assert.equal(selectorSpecificity().b, 0); +assert.equal(selectorSpecificity().c, 0); + +assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/css-tokenizer/test/example.mjs b/packages/css-tokenizer/test/example.mjs new file mode 100644 index 0000000000..76f086ec24 --- /dev/null +++ b/packages/css-tokenizer/test/example.mjs @@ -0,0 +1,10 @@ +import assert from 'assert'; +import { selectorSpecificity } from '@csstools/selector-specificity'; +import parser from 'postcss-selector-parser'; + +const selectorAST = parser().astSync('#foo:has(> .foo)'); +const specificity = selectorSpecificity(selectorAST); + +assert.equal(specificity.a, 1); +assert.equal(specificity.b, 1); +assert.equal(specificity.c, 0); diff --git a/packages/css-tokenizer/test/test-compare.mjs b/packages/css-tokenizer/test/test-compare.mjs new file mode 100644 index 0000000000..19c71bfe39 --- /dev/null +++ b/packages/css-tokenizer/test/test-compare.mjs @@ -0,0 +1,20 @@ +import assert from 'assert'; +import { compare } from '@csstools/selector-specificity'; + +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 0, c: 0 }), 0); + +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 0, c: 1 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 1, c: 0 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 0, c: 0 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 1, c: 0 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 0, c: 1 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 1, c: 1 }), -1); +assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 1, c: 1 }), -1); + +assert.strictEqual(compare({ a: 0, b: 0, c: 1 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 0, b: 1, c: 0 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 1, b: 0, c: 0 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 1, b: 1, c: 0 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 1, b: 0, c: 1 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 0, b: 1, c: 1 }, { a: 0, b: 0, c: 0 }), 1); +assert.strictEqual(compare({ a: 1, b: 1, c: 1 }, { a: 0, b: 0, c: 0 }), 1); diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs new file mode 100644 index 0000000000..5196320cd9 --- /dev/null +++ b/packages/css-tokenizer/test/test.mjs @@ -0,0 +1,95 @@ +import assert from 'assert'; +import { selectorSpecificity } from '@csstools/selector-specificity'; +import parser from 'postcss-selector-parser'; + +function calculate(selector) { + const selectorAST = parser().astSync(selector); + return selectorSpecificity(selectorAST); +} + +assert.deepEqual(calculate('*'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':where(*)'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':is(*)'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':not(*)'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':where(*)'), { a: 0, b: 0, c: 0 }); + +assert.deepEqual(calculate(':-moz-any'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':-moz-any()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':-moz-any(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':-webkit-any'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':-webkit-any()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':-webkit-any(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':any'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':any()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':any(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':has'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':has()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':has(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':is'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':is()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':is(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':matches'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':matches()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':matches(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':not'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':not()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':not(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':where'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':where()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':where(.a)'), { a: 0, b: 0, c: 0 }); + +assert.deepEqual(calculate(':nth-child'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-child()'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-child(1n)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-child(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-child'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-child()'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-child(1n)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-child(.a)'), { a: 0, b: 1, c: 0 }); + +assert.deepEqual(calculate(':nth-of-type'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-of-type()'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-of-type(1n)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-of-type(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-of-type'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-of-type()'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-of-type(1n)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':nth-last-of-type(.a)'), { a: 0, b: 1, c: 0 }); + +assert.deepEqual(calculate(':local'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':local()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':local(.a)'), { a: 0, b: 1, c: 0 }); +assert.deepEqual(calculate(':global'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':global()'), { a: 0, b: 0, c: 0 }); +assert.deepEqual(calculate(':global(.a)'), { a: 0, b: 1, c: 0 }); + +assert.deepEqual(calculate(':before'), { a: 0, b: 0, c: 1 }); +assert.deepEqual(calculate('::before'), { a: 0, b: 0, c: 1 }); + +assert.deepEqual(calculate(':focus'), { a: 0, b: 1, c: 0 }); + +assert.deepEqual(calculate(':is(a + a, b + b + b)'), { a: 0, b: 0, c: 3 }); +assert.deepEqual(calculate(':is(.a + .a, .b + .b + .b)'), { a: 0, b: 3, c: 0 }); +assert.deepEqual(calculate(':is(#a + #a, #b + #b + #b)'), { a: 3, b: 0, c: 0 }); + +assert.deepEqual(calculate(':is(a + a + a, b + b)'), { a: 0, b: 0, c: 3 }); +assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b)'), { a: 0, b: 3, c: 0 }); +assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b)'), { a: 3, b: 0, c: 0 }); + +assert.deepEqual(calculate(':is(a + a, b + b + b, :is(a + a, b + b + b))'), { a: 0, b: 0, c: 3 }); +assert.deepEqual(calculate(':is(.a + .a, .b + .b + .b, :is(.a + .a, .b + .b + .b))'), { a: 0, b: 3, c: 0 }); +assert.deepEqual(calculate(':is(#a + #a, #b + #b + #b, :is(#a + #a, #b + #b + #b))'), { a: 3, b: 0, c: 0 }); + +assert.deepEqual(calculate(':is(a + a + a, b + b + b)'), { a: 0, b: 0, c: 3 }); +assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b + .b)'), { a: 0, b: 3, c: 0 }); +assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + #b)'), { a: 3, b: 0, c: 0 }); + +assert.deepEqual(calculate(':is(.a + .a + a.a, .b + .b + .b)'), { a: 0, b: 3, c: 1 }); + +assert.deepEqual(calculate(':is(#a + #a + a#a, #b + #b + #b)'), { a: 3, b: 0, c: 1 }); +assert.deepEqual(calculate(':is(#a + #a + #a.a, #b + #b + #b)'), { a: 3, b: 1, c: 0 }); + +assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b + b.b)'), { a: 0, b: 3, c: 1 }); + +assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + b#b)'), { a: 3, b: 0, c: 1 }); +assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + #b.b)'), { a: 3, b: 1, c: 0 }); diff --git a/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs b/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs new file mode 100644 index 0000000000..3911754594 --- /dev/null +++ b/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs @@ -0,0 +1,106 @@ +import assert from 'assert'; +import { selectorSpecificity } from '@csstools/selector-specificity'; +import parser from 'postcss-selector-parser'; + +function calculate(selector) { + const selectorAST = parser().astSync(selector); + return selectorSpecificity(selectorAST); +} + +// Copyright (c) 2022 Bramus Van Damme - https://www.bram.us/ +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is furnished +// to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// see : https://github.com/bramus/specificity/blob/main/test/index.js + +// Examples from the spec +assert.deepEqual(calculate('*'), { a: 0, b: 0, c: 0 }, '* = (0,0,0)'); + +// Examples from the spec +assert.deepEqual(calculate('li'), { a: 0, b: 0, c: 1 }, 'li = (0,0,1)'); +assert.deepEqual(calculate('ul li'), { a: 0, b: 0, c: 2 }, 'ul li = (0,0,2)'); +assert.deepEqual(calculate('UL OL+LI '), { a: 0, b: 0, c: 3 }, 'UL OL+LI = (0,0,3)'); +assert.deepEqual(calculate('H1 + *[REL=up]'), { a: 0, b: 1, c: 1 }, 'H1 + *[REL=up] = (0,1,1)'); +assert.deepEqual(calculate('UL OL LI.red'), { a: 0, b: 1, c: 3 }, 'UL OL LI.red = (0,1,3)'); +assert.deepEqual(calculate('LI.red.level'), { a: 0, b: 2, c: 1 }, 'LI.red.level = (0,2,1)'); +assert.deepEqual(calculate('#x34y'), { a: 1, b: 0, c: 0 }, '#x34y = (1,0,0)'); +assert.deepEqual(calculate('#s12:not(FOO)'), { a: 1, b: 0, c: 1 }, '#s12:not(FOO) = (1,0,1)'); +assert.deepEqual(calculate('.foo :is(.bar, #baz)'), { a: 1, b: 1, c: 0 }, '.foo :is(.bar, #baz) = (1,1,0)'); + +// Examples by Kilian +assert.deepEqual(calculate('header h1#sitetitle > .logo'), { a: 1, b: 1, c: 2 }, 'header h1#sitetitle > .logo = (1,1,2)'); +assert.deepEqual(calculate('ul > li:is(.highlighted, .active)'), { a: 0, b: 1, c: 2 }, 'ul > li:is(.highlighted, .active) = (0,1,2)'); +assert.deepEqual(calculate('header:where(#top) nav li:nth-child(2n + 1)'), { a: 0, b: 1, c: 3 }, 'header:where(#top) nav li:nth-child(2n + 1) = (0,1,3)'); + +// Examples by Kilian, remixed +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1) = (1,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of) = (1,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of of)'), { a: 1, b: 1, c: 4 }, 'header:has(#top) nav li:nth-child(2n + 1 of of) = (1,1,4)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo)'), { a: 1, b: 2, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo) = (1,2,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar)'), { a: 2, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar) = (2,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar, #bar > #baz)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar, #bar > #baz) = (3,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of #bar > #baz, .foo, #bar)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of #bar > #baz, .foo, #bar) = (3,1,3)'); + +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1) = (1,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of) = (1,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of of)'), { a: 1, b: 1, c: 4 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of of) = (1,1,4)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo)'), { a: 1, b: 2, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo) = (1,2,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar)'), { a: 2, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar) = (2,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar, #bar > #baz)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar, #bar > #baz) = (3,1,3)'); +assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of #bar > #baz, .foo, #bar)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of #bar > #baz, .foo, #bar) = (3,1,3)'); + +// Pseudo-Element Selector = (0,0,1) +assert.deepEqual(calculate('::after'), { a: 0, b: 0, c: 1 }, '::after'); +assert.deepEqual(calculate('::cue'), { a: 0, b: 0, c: 1 }, '::cue'); +assert.deepEqual(calculate('::before'), { a: 0, b: 0, c: 1 }, '::before'); +assert.deepEqual(calculate('::first-line'), { a: 0, b: 0, c: 1 }, '::first-line'); +assert.deepEqual(calculate('::first-letter'), { a: 0, b: 0, c: 1 }, '::first-letter'); + +// Pseudo-Element improperly used as Pseudo-Class Selector = (0,0,1)// @ref https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements#index +assert.deepEqual(calculate(':before'), { a: 0, b: 0, c: 1 }, ':before'); +assert.deepEqual(calculate(':after'), { a: 0, b: 0, c: 1 }, ':after'); +assert.deepEqual(calculate(':first-line'), { a: 0, b: 0, c: 1 }, ':first-line'); +assert.deepEqual(calculate(':first-letter'), { a: 0, b: 0, c: 1 }, ':first-letter'); + +// Pseudo-Class Selector = (0,1,0) +assert.deepEqual(calculate(':hover'), { a: 0, b: 1, c: 0 }, ':hover'); +assert.deepEqual(calculate(':focus'), { a: 0, b: 1, c: 0 }, ':focus'); + +// CSS :is() - :matches() - :any() = Specificity of the most specific complex selector in its selector list argument +assert.deepEqual(calculate(':is(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':is(#foo, .bar, baz) = (1,0,0)'); +assert.deepEqual(calculate(':matches(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':matches(#foo, .bar, baz) = (1,0,0)'); +assert.deepEqual(calculate(':any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':any(#foo, .bar, baz) = (1,0,0)'); +assert.deepEqual(calculate(':-moz-any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':-moz-any(#foo, .bar, baz) = (1,0,0)'); +assert.deepEqual(calculate(':-webkit-any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':-webkit-any(#foo, .bar, baz) = (1,0,0)'); + +// CSS :has() = Specificity of the most specific complex selector in its selector list argument +assert.deepEqual(calculate(':has(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':has(#foo, .bar, baz) = (1,0,0)'); + +// CSS :not() = Specificity of the most specific complex selector in its selector list argument +assert.deepEqual(calculate(':not(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':not(#foo, .bar, baz) = (1,0,0)'); + +// CSS :where() = Replaced by zero +assert.deepEqual(calculate(':where(#foo, .bar, baz)'), { a: 0, b: 0, c: 0 }, ':where(#foo, .bar, baz) = (0,0,0)'); + +// Namespaced Selectors// @ref https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors#namespaces +assert.deepEqual(calculate('ns|*'), { a: 0, b: 0, c: 0 }, 'ns|* = (0,0,0)'); +assert.deepEqual(calculate('ns|a'), { a: 0, b: 0, c: 1 }, 'ns|a = (0,0,1)'); + +// Calculate accepts an empty value +assert.deepEqual(calculate(''), { a: 0, b: 0, c: 0 }, '"" = (0,0,0)'); diff --git a/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs b/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs new file mode 100644 index 0000000000..e263c4a509 --- /dev/null +++ b/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs @@ -0,0 +1,78 @@ +import assert from 'assert'; +import { selectorSpecificity } from '@csstools/selector-specificity'; +import parser from 'postcss-selector-parser'; + +function calculate(selector) { + const selectorAST = parser().astSync(selector); + return selectorSpecificity(selectorAST); +} + +// The MIT License (MIT) +// Copyright (c) 2016 Keegan Street and others +// +// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// +// see : https://github.com/keeganstreet/specificity/blob/master/test/test.js + +// http://css-tricks.com/specifics-on-css-specificity/ +assert.deepEqual(calculate('ul#nav li.active a'), { a: 1, b: 1, c: 3 }); +assert.deepEqual(calculate('body.ie7 .col_3 h2 ~ h2'), { a: 0, b: 2, c: 3 }); +assert.deepEqual(calculate('#footer *:not(nav) li'), { a: 1, b: 0, c: 2 }); +assert.deepEqual(calculate('ul > li ul li ol li:first-letter'), { a: 0, b: 0, c: 7 }); + +// http://reference.sitepoint.com/css/specificity +assert.deepEqual(calculate('body#home div#warning p.message'), { a: 2, b: 1, c: 3 }); +assert.deepEqual(calculate('* body#home>div#warning p.message'), { a: 2, b: 1, c: 3 }); +assert.deepEqual(calculate('#home #warning p.message'), { a: 2, b: 1, c: 1 }); +assert.deepEqual(calculate('#warning p.message'), { a: 1, b: 1, c: 1 }); +assert.deepEqual(calculate('#warning p'), { a: 1, b: 0, c: 1 }); +assert.deepEqual(calculate('p.message'), { a: 0, b: 1, c: 1 }); +assert.deepEqual(calculate('p'), { a: 0, b: 0, c: 1 }); + +// Test pseudo-element with uppertestCase letters +assert.deepEqual(calculate('li:bEfoRE'), { a: 0, b: 0, c: 2 }); + +// Pseudo-class tests +assert.deepEqual(calculate('li:first-child+p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate('li:nth-child(even)+p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate('li:nth-child(2n+1)+p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate('li:nth-child( 2n + 1 )+p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate('li:nth-child(2n-1)+p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate('li:nth-child(2n-1) p'), { a: 0, b: 1, c: 2 }); +assert.deepEqual(calculate(':lang(nl-be)'), { a: 0, b: 1, c: 0 }); + +// Tests with CSS escape sequences +// https://mathiasbynens.be/notes/css-escapes and https://mathiasbynens.be/demo/crazy-class +assert.deepEqual(calculate('.\\3A -\\)'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\3A \\`\\('), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\3A .\\`\\('), { a: 0, b: 2, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\31 a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\000031a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ +// assert.deepEqual(calculate('.\\000031 a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('#\\#fake-id'), { a: 1, b: 0, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\#fake-id'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('#\\'), { a: 1, b: 0, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\#\\.\\#\\.\\#'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.foo\\.bar'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\:hover\\:active'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\3A hover\\3A active'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\000031 p'), { a: 0, b: 1, c: 1 }); /*

" */ +assert.deepEqual(calculate('.\\3A \\`\\( .another'), { a: 0, b: 2, c: 0 }); /*

*/ +assert.deepEqual(calculate('.\\--cool'), { a: 0, b: 1, c: 0 }); /*

*/ +assert.deepEqual(calculate('#home .\\[page\\]'), { a: 1, b: 1, c: 0 }); /*

*/ + +// Test repeated IDs +// https://github.com/keeganstreet/specificity/issues/29 +assert.deepEqual(calculate('ul#nav#nav-main li.active a'), { a: 2, b: 1, c: 3 }); + +// Test CSS Modules https://github.com/css-modules/css-modules +// Whilst they are not part of the CSS spec, this calculator can support them without breaking results for standard selectors +assert.deepEqual(calculate('.root :global .text'), { a: 0, b: 2, c: 0 }); +assert.deepEqual(calculate('.localA :global .global-b :local(.local-c) .global-d'), { a: 0, b: 4, c: 0 }); +assert.deepEqual(calculate('.localA :global .global-b .global-c :local(.localD.localE) .global-d'), { a: 0, b: 6, c: 0 }); +assert.deepEqual(calculate('.localA :global(.global-b) .local-b'), { a: 0, b: 3, c: 0 }); +assert.deepEqual(calculate(':local(:nth-child(2n) .test)'), { a: 0, b: 2, c: 0 }); diff --git a/packages/css-tokenizer/tsconfig.json b/packages/css-tokenizer/tsconfig.json new file mode 100644 index 0000000000..e0d06239cc --- /dev/null +++ b/packages/css-tokenizer/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "dist", + "declarationDir": "." + }, + "include": ["./src/**/*"], + "exclude": ["dist"], +} From f34facbe9ea486e498920eda12a30c86497d461e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Thu, 15 Sep 2022 18:38:45 +0200 Subject: [PATCH 02/59] init --- packages/css-tokenizer/README.md | 12 ++ packages/css-tokenizer/package.json | 2 +- .../css-tokenizer/src/checks/next-is-eof.ts | 10 ++ ...-code-points-would-start-ident-sequence.ts | 50 ++++++ .../three-code-points-would-start-number.ts | 41 +++++ .../two-code-points-are-valid-escape.ts | 19 +++ .../src/codepoints/codepoints.ts | 14 ++ .../css-tokenizer/src/codepoints/ranges.ts | 113 ++++++++++++++ packages/css-tokenizer/src/index.ts | 1 + .../src/interfaces/code-point-reader.ts | 5 + packages/css-tokenizer/src/tokenize.ts | 4 +- packages/css-tokenizer/test/example.mjs | 10 -- packages/css-tokenizer/test/foo.css | 7 + packages/css-tokenizer/test/test-compare.mjs | 20 --- packages/css-tokenizer/test/test.mjs | 142 +++++++----------- .../test/tests-from-bramus-specificity.mjs | 106 ------------- .../tests-from-keeganstreet-specificity.mjs | 78 ---------- 17 files changed, 327 insertions(+), 307 deletions(-) create mode 100644 packages/css-tokenizer/src/checks/next-is-eof.ts create mode 100644 packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts create mode 100644 packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts create mode 100644 packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts create mode 100644 packages/css-tokenizer/src/codepoints/codepoints.ts create mode 100644 packages/css-tokenizer/src/codepoints/ranges.ts create mode 100644 packages/css-tokenizer/src/interfaces/code-point-reader.ts delete mode 100644 packages/css-tokenizer/test/example.mjs create mode 100644 packages/css-tokenizer/test/foo.css delete mode 100644 packages/css-tokenizer/test/test-compare.mjs delete mode 100644 packages/css-tokenizer/test/tests-from-bramus-specificity.mjs delete mode 100644 packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index 464090415c..912d7a3c6a 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -1 +1,13 @@ # TODO + +A CSS tokenizer that strictly follows the spec. + +Goals : +- only a tokenizer. I want to use the tokenizer of CSSTree but I don't want the other 1.5mb that come with it. This is a recurring problem. Most good CSS tokenizers are embedded in other packages. +- just follows the spec without having any opinions about anything. +- must be transformable +- must be able to serialize from a constructed AST +- must be able to serialize from a parsed AST (without any mutation or data loss) +- must have the same interface as the PostCSS tokenizer. + +This will be a mashup of my previous work on a [CSS tokenizer in Go](https://github.com/romainmenke/css) and the API surface of the PostCSS tokenizer. diff --git a/packages/css-tokenizer/package.json b/packages/css-tokenizer/package.json index 46558fd281..d0ccdd8374 100644 --- a/packages/css-tokenizer/package.json +++ b/packages/css-tokenizer/package.json @@ -52,7 +52,7 @@ "lint:package-json": "node ../../.github/bin/format-package-json.mjs", "prepublishOnly": "npm run clean && npm run build && npm run test", "stryker": "stryker run --logLevel error", - "test": "npm run test:exports && node ./test/example.mjs && node ./test/test.mjs && node ./test/tests-from-bramus-specificity.mjs && node ./test/tests-from-keeganstreet-specificity.mjs && node ./test/test-compare.mjs", + "test": "npm run test:exports && node ./test/test.mjs", "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs" }, "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer#readme", diff --git a/packages/css-tokenizer/src/checks/next-is-eof.ts b/packages/css-tokenizer/src/checks/next-is-eof.ts new file mode 100644 index 0000000000..bcde1c7f67 --- /dev/null +++ b/packages/css-tokenizer/src/checks/next-is-eof.ts @@ -0,0 +1,10 @@ +import { CodePointReader } from '../interfaces/code-point-reader'; + +export function checkIfNextIsEOF(reader: CodePointReader): boolean { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return true; + } + + return false; +} diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts new file mode 100644 index 0000000000..8eaec04f30 --- /dev/null +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts @@ -0,0 +1,50 @@ +import { HYPHEN_MINUS, LINE_FEED, REVERSE_SOLIDUS } from '../codepoints/codepoints'; +import { isIdentStartCodePoint } from '../codepoints/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { checkIfTwoCodePointsAreAValidEscape } from './two-code-points-are-valid-escape'; + +export function checkIfThreeCodePointsWouldStartAnIdentSequence(reader: CodePointReader): boolean { + const peeked = reader.peekThreeCodePoints(); + if (peeked === false) { + return false; + } + + const [first, second, third] = peeked; + + // // U+002D HYPHEN-MINUS + if (first === HYPHEN_MINUS) { + // If the second code point is a U+002D HYPHEN-MINUS return true + if (second === HYPHEN_MINUS) { + return true; + } + + // If the second code point is an ident-start code point return true + if (isIdentStartCodePoint(second)) { + return true; + } + + // If the second and third code points are a valid escape return true + if (second === REVERSE_SOLIDUS && third !== LINE_FEED) { + return true; + } + + return false; + } + + // ident-start code point + // Return true. + if (isIdentStartCodePoint(first)) { + return true; + } + + // U+005C REVERSE SOLIDUS (\) + if (first === REVERSE_SOLIDUS) { + // If the first and second code points are a valid escape, return true. + // Otherwise, return false. + return checkIfTwoCodePointsAreAValidEscape(reader); + } + + // anything else + // Return false. + return false; +} diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts new file mode 100644 index 0000000000..3a12645d8a --- /dev/null +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts @@ -0,0 +1,41 @@ +import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../codepoints/codepoints'; +import { isDigitCodePoint } from '../codepoints/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +export function checkIfThreeCodePointsWouldStartANumber(reader: CodePointReader): boolean { + const peeked = reader.peekThreeCodePoints(); + if (peeked === false) { + return false; + } + + const [first, second, third] = peeked; + + if (first === PLUS_SIGN || first === HYPHEN_MINUS) { // U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-) + // If the second code point is a digit, return true. + if (isDigitCodePoint(second)) { + return true; + } + + // Otherwise, if the second code point is a U+002E FULL STOP (.) + if (second === FULL_STOP) { + // and the third code point is a digit, return true. + return isDigitCodePoint(third); + } + + // Otherwise, return false. + return false; + + } else if (first === FULL_STOP) { // U+002E FULL STOP (.) + // If the second code point is a digit, return true. + // Otherwise, return false. + return isDigitCodePoint(second); + + } else if (isDigitCodePoint(first)) { // digit + // Return true. + return true; + } + + // anything else + // Return false. + return false; +} diff --git a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts new file mode 100644 index 0000000000..84c9977d3d --- /dev/null +++ b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts @@ -0,0 +1,19 @@ +import { LINE_FEED, REVERSE_SOLIDUS } from '../codepoints/codepoints'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +export function checkIfTwoCodePointsAreAValidEscape(reader: CodePointReader): boolean { + const peeked = reader.peekTwoCodePoints(); + if (peeked === false) { + return false; + } + + if (peeked[0] !== REVERSE_SOLIDUS) { // "\" + return false; + } + + if (peeked[1] === LINE_FEED) { + return false; + } + + return true; +} diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/codepoints/codepoints.ts new file mode 100644 index 0000000000..131bdd2d0d --- /dev/null +++ b/packages/css-tokenizer/src/codepoints/codepoints.ts @@ -0,0 +1,14 @@ +export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); +export const FORM_FEED = '\u{c}'.charCodeAt(0); +export const LINE_FEED = '\u{a}'.charCodeAt(0); +export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); +export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); +export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); +export const FULL_STOP = '\u{2e}'.charCodeAt(0); +export const LOW_LINE = '\u{5f}'.charCodeAt(0); +export const NULL = '\u{0}'.charCodeAt(0); +export const BACKSPACE = '\u{8}'.charCodeAt(0); +export const LINE_TABULATION = '\u{b}'.charCodeAt(0); +export const SHIFT_OUT = '\u{e}'.charCodeAt(0); +export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); +export const DELETE = '\u{7f}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/codepoints/ranges.ts b/packages/css-tokenizer/src/codepoints/ranges.ts new file mode 100644 index 0000000000..c71f5a34c4 --- /dev/null +++ b/packages/css-tokenizer/src/codepoints/ranges.ts @@ -0,0 +1,113 @@ +import { BACKSPACE, DELETE, INFORMATION_SEPARATOR_ONE, LINE_TABULATION, LOW_LINE, HYPHEN_MINUS, NULL, SHIFT_OUT } from './codepoints'; + +const digitsLow = '\u{30}'.charCodeAt(0); +const digitsHigh = '\u{39}'.charCodeAt(0); + +export function isDigitCodePoint(search: number): boolean { + if (digitsLow <= search && search <= digitsHigh) { + return true; + } + + return false; +} + +const afUppercaseLow = '\u{41}'.charCodeAt(0); +const afUppercaseHigh = '\u{46}'.charCodeAt(0); +const afLowercaseLow = '\u{61}'.charCodeAt(0); +const afLowercaseHigh = '\u{66}'.charCodeAt(0); + +export function isHexDigitCodePoint(search: number): boolean { + if (isDigitCodePoint(search)) { + return true; + } + + if (afUppercaseLow <= search && search <= afUppercaseHigh) { + return true; + } + + if (afLowercaseLow <= search && search <= afLowercaseHigh) { + return true; + } + + return false; +} + +const letterUppercaseLow = '\u{41}'.charCodeAt(0); +const letterUppercaseHigh = '\u{5a}'.charCodeAt(0); + +export function isUppercaseLetterCodePoint(search: number): boolean { + if (letterUppercaseLow <= search && search <= letterUppercaseHigh) { + return true; + } + + return false; +} + +const letterLowercaseLow = '\u{61}'.charCodeAt(0); +const letterLowercaseHigh = '\u{7a}'.charCodeAt(0); + +export function isLowercaseLetterCodePoint(search: number): boolean { + if (letterLowercaseLow <= search && search <= letterLowercaseHigh) { + return true; + } + + return false; +} + +export function isLetterCodePoint(search: number): boolean { + if (isUppercaseLetterCodePoint(search) || isLowercaseLetterCodePoint(search)) { + return true; + } + + return false; +} + +const nonASCIILow = '\u{80}'.charCodeAt(0); + +export function isNonASCIICodePoint(search: number): boolean { + return search >= nonASCIILow; +} + +export function isIdentStartCodePoint(search: number): boolean { + if (isLetterCodePoint(search)) { + return true; + } + + if (isNonASCIICodePoint(search)) { + return true; + } + + return search === LOW_LINE; +} + +export function isIdentCodePoint(search: number): boolean { + if (isIdentStartCodePoint(search)) { + return true; + } + + if (isDigitCodePoint(search)) { + return true; + } + + return search === HYPHEN_MINUS; +} + +export function isNonPrintableCodePoint(search: number): boolean { + if (search === LINE_TABULATION) { + return true; + } + + if (search === DELETE) { + return true; + } + + if (NULL <= search && search <= BACKSPACE) { + return true; + } + + if (SHIFT_OUT <= search && search <= INFORMATION_SEPARATOR_ONE) { + return true; + } + + return false; +} diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index e69de29bb2..b0a18f2cd6 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -0,0 +1 @@ +export * from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts new file mode 100644 index 0000000000..24f4fb09a5 --- /dev/null +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -0,0 +1,5 @@ +export type CodePointReader = { + peekOneCodePoint(): number | false + peekTwoCodePoints(): [number, number] | false + peekThreeCodePoints(): [number, number, number] | false +} diff --git a/packages/css-tokenizer/src/tokenize.ts b/packages/css-tokenizer/src/tokenize.ts index ccaf9e4ddc..89d96c060a 100644 --- a/packages/css-tokenizer/src/tokenize.ts +++ b/packages/css-tokenizer/src/tokenize.ts @@ -48,7 +48,7 @@ const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g; const RE_BAD_BRACKET = /.[\n"'(/\\]/; const RE_HEX_ESCAPE = /[\da-f]/i; -module.exports = function tokenizer(input, options = {}) { +export function tokenizer(input, options: { ignoreErrors?: boolean } = {}) { const css = input.css.valueOf(); const ignore = options.ignoreErrors; @@ -290,4 +290,4 @@ module.exports = function tokenizer(input, options = {}) { endOfFile, position, }; -}; +} diff --git a/packages/css-tokenizer/test/example.mjs b/packages/css-tokenizer/test/example.mjs deleted file mode 100644 index 76f086ec24..0000000000 --- a/packages/css-tokenizer/test/example.mjs +++ /dev/null @@ -1,10 +0,0 @@ -import assert from 'assert'; -import { selectorSpecificity } from '@csstools/selector-specificity'; -import parser from 'postcss-selector-parser'; - -const selectorAST = parser().astSync('#foo:has(> .foo)'); -const specificity = selectorSpecificity(selectorAST); - -assert.equal(specificity.a, 1); -assert.equal(specificity.b, 1); -assert.equal(specificity.c, 0); diff --git a/packages/css-tokenizer/test/foo.css b/packages/css-tokenizer/test/foo.css new file mode 100644 index 0000000000..6a7d9bcfec --- /dev/null +++ b/packages/css-tokenizer/test/foo.css @@ -0,0 +1,7 @@ +/* TODO : delete me */ + +.foo { + content: "hello + +world!"; +} diff --git a/packages/css-tokenizer/test/test-compare.mjs b/packages/css-tokenizer/test/test-compare.mjs deleted file mode 100644 index 19c71bfe39..0000000000 --- a/packages/css-tokenizer/test/test-compare.mjs +++ /dev/null @@ -1,20 +0,0 @@ -import assert from 'assert'; -import { compare } from '@csstools/selector-specificity'; - -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 0, c: 0 }), 0); - -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 0, c: 1 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 1, c: 0 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 0, c: 0 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 1, c: 0 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 0, c: 1 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 0, b: 1, c: 1 }), -1); -assert.strictEqual(compare({ a: 0, b: 0, c: 0 }, { a: 1, b: 1, c: 1 }), -1); - -assert.strictEqual(compare({ a: 0, b: 0, c: 1 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 0, b: 1, c: 0 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 1, b: 0, c: 0 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 1, b: 1, c: 0 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 1, b: 0, c: 1 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 0, b: 1, c: 1 }, { a: 0, b: 0, c: 0 }), 1); -assert.strictEqual(compare({ a: 1, b: 1, c: 1 }, { a: 0, b: 0, c: 0 }), 1); diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 5196320cd9..757f756972 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,95 +1,57 @@ import assert from 'assert'; -import { selectorSpecificity } from '@csstools/selector-specificity'; -import parser from 'postcss-selector-parser'; +import { tokenizer } from '@csstools/css-tokenizer'; -function calculate(selector) { - const selectorAST = parser().astSync(selector); - return selectorSpecificity(selectorAST); -} - -assert.deepEqual(calculate('*'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':where(*)'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':is(*)'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':not(*)'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':where(*)'), { a: 0, b: 0, c: 0 }); - -assert.deepEqual(calculate(':-moz-any'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':-moz-any()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':-moz-any(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':-webkit-any'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':-webkit-any()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':-webkit-any(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':any'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':any()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':any(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':has'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':has()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':has(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':is'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':is()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':is(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':matches'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':matches()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':matches(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':not'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':not()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':not(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':where'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':where()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':where(.a)'), { a: 0, b: 0, c: 0 }); - -assert.deepEqual(calculate(':nth-child'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-child()'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-child(1n)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-child(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-child'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-child()'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-child(1n)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-child(.a)'), { a: 0, b: 1, c: 0 }); - -assert.deepEqual(calculate(':nth-of-type'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-of-type()'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-of-type(1n)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-of-type(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-of-type'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-of-type()'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-of-type(1n)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':nth-last-of-type(.a)'), { a: 0, b: 1, c: 0 }); - -assert.deepEqual(calculate(':local'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':local()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':local(.a)'), { a: 0, b: 1, c: 0 }); -assert.deepEqual(calculate(':global'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':global()'), { a: 0, b: 0, c: 0 }); -assert.deepEqual(calculate(':global(.a)'), { a: 0, b: 1, c: 0 }); - -assert.deepEqual(calculate(':before'), { a: 0, b: 0, c: 1 }); -assert.deepEqual(calculate('::before'), { a: 0, b: 0, c: 1 }); - -assert.deepEqual(calculate(':focus'), { a: 0, b: 1, c: 0 }); +function collectTokens(t) { + const bag = []; + while (!t.endOfFile()) { + bag.push(t.nextToken()); + } -assert.deepEqual(calculate(':is(a + a, b + b + b)'), { a: 0, b: 0, c: 3 }); -assert.deepEqual(calculate(':is(.a + .a, .b + .b + .b)'), { a: 0, b: 3, c: 0 }); -assert.deepEqual(calculate(':is(#a + #a, #b + #b + #b)'), { a: 3, b: 0, c: 0 }); - -assert.deepEqual(calculate(':is(a + a + a, b + b)'), { a: 0, b: 0, c: 3 }); -assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b)'), { a: 0, b: 3, c: 0 }); -assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b)'), { a: 3, b: 0, c: 0 }); - -assert.deepEqual(calculate(':is(a + a, b + b + b, :is(a + a, b + b + b))'), { a: 0, b: 0, c: 3 }); -assert.deepEqual(calculate(':is(.a + .a, .b + .b + .b, :is(.a + .a, .b + .b + .b))'), { a: 0, b: 3, c: 0 }); -assert.deepEqual(calculate(':is(#a + #a, #b + #b + #b, :is(#a + #a, #b + #b + #b))'), { a: 3, b: 0, c: 0 }); - -assert.deepEqual(calculate(':is(a + a + a, b + b + b)'), { a: 0, b: 0, c: 3 }); -assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b + .b)'), { a: 0, b: 3, c: 0 }); -assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + #b)'), { a: 3, b: 0, c: 0 }); - -assert.deepEqual(calculate(':is(.a + .a + a.a, .b + .b + .b)'), { a: 0, b: 3, c: 1 }); - -assert.deepEqual(calculate(':is(#a + #a + a#a, #b + #b + #b)'), { a: 3, b: 0, c: 1 }); -assert.deepEqual(calculate(':is(#a + #a + #a.a, #b + #b + #b)'), { a: 3, b: 1, c: 0 }); + return bag; +} -assert.deepEqual(calculate(':is(.a + .a + .a, .b + .b + b.b)'), { a: 0, b: 3, c: 1 }); +{ + const t = tokenizer({ + css: '@media screen and (min-width: 200px) {}', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['at-word', '@media', 0, 5], + ['space', ' '], + ['word', 'screen', 7, 12], + ['space', ' '], + ['word', 'and', 14, 16], + ['space', ' '], + ['brackets', '(min-width: 200px)', 18, 35], + ['space', ' '], + ['{', '{', 37], + ['}', '}', 38], + ], + ); +} -assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + b#b)'), { a: 3, b: 0, c: 1 }); -assert.deepEqual(calculate(':is(#a + #a + #a, #b + #b + #b.b)'), { a: 3, b: 1, c: 0 }); +{ + const t = tokenizer({ + css: `.foo { content: "hello + +world!" }`, + }); + + assert.deepEqual( + collectTokens(t), + [ + ['word', '.foo', 0, 3], + ['space', ' '], + ['{', '{', 5], + ['space', ' '], + ['word', 'content', 7, 13], + [':', ':', 14], + ['space', ' '], + ['string', '"hello\n\nworld!"', 16, 30], + ['space', ' '], + ['}', '}', 32], + ], + ); +} diff --git a/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs b/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs deleted file mode 100644 index 3911754594..0000000000 --- a/packages/css-tokenizer/test/tests-from-bramus-specificity.mjs +++ /dev/null @@ -1,106 +0,0 @@ -import assert from 'assert'; -import { selectorSpecificity } from '@csstools/selector-specificity'; -import parser from 'postcss-selector-parser'; - -function calculate(selector) { - const selectorAST = parser().astSync(selector); - return selectorSpecificity(selectorAST); -} - -// Copyright (c) 2022 Bramus Van Damme - https://www.bram.us/ -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is furnished -// to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in all -// copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. -// -// see : https://github.com/bramus/specificity/blob/main/test/index.js - -// Examples from the spec -assert.deepEqual(calculate('*'), { a: 0, b: 0, c: 0 }, '* = (0,0,0)'); - -// Examples from the spec -assert.deepEqual(calculate('li'), { a: 0, b: 0, c: 1 }, 'li = (0,0,1)'); -assert.deepEqual(calculate('ul li'), { a: 0, b: 0, c: 2 }, 'ul li = (0,0,2)'); -assert.deepEqual(calculate('UL OL+LI '), { a: 0, b: 0, c: 3 }, 'UL OL+LI = (0,0,3)'); -assert.deepEqual(calculate('H1 + *[REL=up]'), { a: 0, b: 1, c: 1 }, 'H1 + *[REL=up] = (0,1,1)'); -assert.deepEqual(calculate('UL OL LI.red'), { a: 0, b: 1, c: 3 }, 'UL OL LI.red = (0,1,3)'); -assert.deepEqual(calculate('LI.red.level'), { a: 0, b: 2, c: 1 }, 'LI.red.level = (0,2,1)'); -assert.deepEqual(calculate('#x34y'), { a: 1, b: 0, c: 0 }, '#x34y = (1,0,0)'); -assert.deepEqual(calculate('#s12:not(FOO)'), { a: 1, b: 0, c: 1 }, '#s12:not(FOO) = (1,0,1)'); -assert.deepEqual(calculate('.foo :is(.bar, #baz)'), { a: 1, b: 1, c: 0 }, '.foo :is(.bar, #baz) = (1,1,0)'); - -// Examples by Kilian -assert.deepEqual(calculate('header h1#sitetitle > .logo'), { a: 1, b: 1, c: 2 }, 'header h1#sitetitle > .logo = (1,1,2)'); -assert.deepEqual(calculate('ul > li:is(.highlighted, .active)'), { a: 0, b: 1, c: 2 }, 'ul > li:is(.highlighted, .active) = (0,1,2)'); -assert.deepEqual(calculate('header:where(#top) nav li:nth-child(2n + 1)'), { a: 0, b: 1, c: 3 }, 'header:where(#top) nav li:nth-child(2n + 1) = (0,1,3)'); - -// Examples by Kilian, remixed -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1) = (1,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of) = (1,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of of)'), { a: 1, b: 1, c: 4 }, 'header:has(#top) nav li:nth-child(2n + 1 of of) = (1,1,4)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo)'), { a: 1, b: 2, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo) = (1,2,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar)'), { a: 2, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar) = (2,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar, #bar > #baz)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of .foo, #bar, #bar > #baz) = (3,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-child(2n + 1 of #bar > #baz, .foo, #bar)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-child(2n + 1 of #bar > #baz, .foo, #bar) = (3,1,3)'); - -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1) = (1,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of)'), { a: 1, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of) = (1,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of of)'), { a: 1, b: 1, c: 4 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of of) = (1,1,4)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo)'), { a: 1, b: 2, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo) = (1,2,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar)'), { a: 2, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar) = (2,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar, #bar > #baz)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of .foo, #bar, #bar > #baz) = (3,1,3)'); -assert.deepEqual(calculate('header:has(#top) nav li:nth-last-child(2n + 1 of #bar > #baz, .foo, #bar)'), { a: 3, b: 1, c: 3 }, 'header:has(#top) nav li:nth-last-child(2n + 1 of #bar > #baz, .foo, #bar) = (3,1,3)'); - -// Pseudo-Element Selector = (0,0,1) -assert.deepEqual(calculate('::after'), { a: 0, b: 0, c: 1 }, '::after'); -assert.deepEqual(calculate('::cue'), { a: 0, b: 0, c: 1 }, '::cue'); -assert.deepEqual(calculate('::before'), { a: 0, b: 0, c: 1 }, '::before'); -assert.deepEqual(calculate('::first-line'), { a: 0, b: 0, c: 1 }, '::first-line'); -assert.deepEqual(calculate('::first-letter'), { a: 0, b: 0, c: 1 }, '::first-letter'); - -// Pseudo-Element improperly used as Pseudo-Class Selector = (0,0,1)// @ref https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements#index -assert.deepEqual(calculate(':before'), { a: 0, b: 0, c: 1 }, ':before'); -assert.deepEqual(calculate(':after'), { a: 0, b: 0, c: 1 }, ':after'); -assert.deepEqual(calculate(':first-line'), { a: 0, b: 0, c: 1 }, ':first-line'); -assert.deepEqual(calculate(':first-letter'), { a: 0, b: 0, c: 1 }, ':first-letter'); - -// Pseudo-Class Selector = (0,1,0) -assert.deepEqual(calculate(':hover'), { a: 0, b: 1, c: 0 }, ':hover'); -assert.deepEqual(calculate(':focus'), { a: 0, b: 1, c: 0 }, ':focus'); - -// CSS :is() - :matches() - :any() = Specificity of the most specific complex selector in its selector list argument -assert.deepEqual(calculate(':is(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':is(#foo, .bar, baz) = (1,0,0)'); -assert.deepEqual(calculate(':matches(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':matches(#foo, .bar, baz) = (1,0,0)'); -assert.deepEqual(calculate(':any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':any(#foo, .bar, baz) = (1,0,0)'); -assert.deepEqual(calculate(':-moz-any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':-moz-any(#foo, .bar, baz) = (1,0,0)'); -assert.deepEqual(calculate(':-webkit-any(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':-webkit-any(#foo, .bar, baz) = (1,0,0)'); - -// CSS :has() = Specificity of the most specific complex selector in its selector list argument -assert.deepEqual(calculate(':has(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':has(#foo, .bar, baz) = (1,0,0)'); - -// CSS :not() = Specificity of the most specific complex selector in its selector list argument -assert.deepEqual(calculate(':not(#foo, .bar, baz)'), { a: 1, b: 0, c: 0 }, ':not(#foo, .bar, baz) = (1,0,0)'); - -// CSS :where() = Replaced by zero -assert.deepEqual(calculate(':where(#foo, .bar, baz)'), { a: 0, b: 0, c: 0 }, ':where(#foo, .bar, baz) = (0,0,0)'); - -// Namespaced Selectors// @ref https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors#namespaces -assert.deepEqual(calculate('ns|*'), { a: 0, b: 0, c: 0 }, 'ns|* = (0,0,0)'); -assert.deepEqual(calculate('ns|a'), { a: 0, b: 0, c: 1 }, 'ns|a = (0,0,1)'); - -// Calculate accepts an empty value -assert.deepEqual(calculate(''), { a: 0, b: 0, c: 0 }, '"" = (0,0,0)'); diff --git a/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs b/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs deleted file mode 100644 index e263c4a509..0000000000 --- a/packages/css-tokenizer/test/tests-from-keeganstreet-specificity.mjs +++ /dev/null @@ -1,78 +0,0 @@ -import assert from 'assert'; -import { selectorSpecificity } from '@csstools/selector-specificity'; -import parser from 'postcss-selector-parser'; - -function calculate(selector) { - const selectorAST = parser().astSync(selector); - return selectorSpecificity(selectorAST); -} - -// The MIT License (MIT) -// Copyright (c) 2016 Keegan Street and others -// -// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// see : https://github.com/keeganstreet/specificity/blob/master/test/test.js - -// http://css-tricks.com/specifics-on-css-specificity/ -assert.deepEqual(calculate('ul#nav li.active a'), { a: 1, b: 1, c: 3 }); -assert.deepEqual(calculate('body.ie7 .col_3 h2 ~ h2'), { a: 0, b: 2, c: 3 }); -assert.deepEqual(calculate('#footer *:not(nav) li'), { a: 1, b: 0, c: 2 }); -assert.deepEqual(calculate('ul > li ul li ol li:first-letter'), { a: 0, b: 0, c: 7 }); - -// http://reference.sitepoint.com/css/specificity -assert.deepEqual(calculate('body#home div#warning p.message'), { a: 2, b: 1, c: 3 }); -assert.deepEqual(calculate('* body#home>div#warning p.message'), { a: 2, b: 1, c: 3 }); -assert.deepEqual(calculate('#home #warning p.message'), { a: 2, b: 1, c: 1 }); -assert.deepEqual(calculate('#warning p.message'), { a: 1, b: 1, c: 1 }); -assert.deepEqual(calculate('#warning p'), { a: 1, b: 0, c: 1 }); -assert.deepEqual(calculate('p.message'), { a: 0, b: 1, c: 1 }); -assert.deepEqual(calculate('p'), { a: 0, b: 0, c: 1 }); - -// Test pseudo-element with uppertestCase letters -assert.deepEqual(calculate('li:bEfoRE'), { a: 0, b: 0, c: 2 }); - -// Pseudo-class tests -assert.deepEqual(calculate('li:first-child+p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate('li:nth-child(even)+p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate('li:nth-child(2n+1)+p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate('li:nth-child( 2n + 1 )+p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate('li:nth-child(2n-1)+p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate('li:nth-child(2n-1) p'), { a: 0, b: 1, c: 2 }); -assert.deepEqual(calculate(':lang(nl-be)'), { a: 0, b: 1, c: 0 }); - -// Tests with CSS escape sequences -// https://mathiasbynens.be/notes/css-escapes and https://mathiasbynens.be/demo/crazy-class -assert.deepEqual(calculate('.\\3A -\\)'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\3A \\`\\('), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\3A .\\`\\('), { a: 0, b: 2, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\31 a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\000031a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ -// assert.deepEqual(calculate('.\\000031 a2b3c'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('#\\#fake-id'), { a: 1, b: 0, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\#fake-id'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('#\\'), { a: 1, b: 0, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\#\\.\\#\\.\\#'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.foo\\.bar'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\:hover\\:active'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\3A hover\\3A active'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\000031 p'), { a: 0, b: 1, c: 1 }); /*

" */ -assert.deepEqual(calculate('.\\3A \\`\\( .another'), { a: 0, b: 2, c: 0 }); /*

*/ -assert.deepEqual(calculate('.\\--cool'), { a: 0, b: 1, c: 0 }); /*

*/ -assert.deepEqual(calculate('#home .\\[page\\]'), { a: 1, b: 1, c: 0 }); /*

*/ - -// Test repeated IDs -// https://github.com/keeganstreet/specificity/issues/29 -assert.deepEqual(calculate('ul#nav#nav-main li.active a'), { a: 2, b: 1, c: 3 }); - -// Test CSS Modules https://github.com/css-modules/css-modules -// Whilst they are not part of the CSS spec, this calculator can support them without breaking results for standard selectors -assert.deepEqual(calculate('.root :global .text'), { a: 0, b: 2, c: 0 }); -assert.deepEqual(calculate('.localA :global .global-b :local(.local-c) .global-d'), { a: 0, b: 4, c: 0 }); -assert.deepEqual(calculate('.localA :global .global-b .global-c :local(.localD.localE) .global-d'), { a: 0, b: 6, c: 0 }); -assert.deepEqual(calculate('.localA :global(.global-b) .local-b'), { a: 0, b: 3, c: 0 }); -assert.deepEqual(calculate(':local(:nth-child(2n) .test)'), { a: 0, b: 2, c: 0 }); From 05fab68a1792a349306446e334b0427de238d126 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Fri, 16 Sep 2022 10:28:30 +0200 Subject: [PATCH 03/59] consume a token --- ...-code-points-would-start-ident-sequence.ts | 1 + .../three-code-points-would-start-number.ts | 1 + .../two-code-points-are-valid-escape.ts | 4 ++ .../src/codepoints/codepoints.ts | 18 ++--- .../css-tokenizer/src/codepoints/ranges.ts | 69 +++++++++++++------ .../css-tokenizer/src/consume/whitespace.ts | 40 +++++++++++ .../src/interfaces/code-point-reader.ts | 5 ++ .../css-tokenizer/src/interfaces/token.ts | 16 +++++ 8 files changed, 124 insertions(+), 30 deletions(-) create mode 100644 packages/css-tokenizer/src/consume/whitespace.ts create mode 100644 packages/css-tokenizer/src/interfaces/token.ts diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts index 8eaec04f30..d00fc8305c 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts @@ -3,6 +3,7 @@ import { isIdentStartCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; import { checkIfTwoCodePointsAreAValidEscape } from './two-code-points-are-valid-escape'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#would-start-an-identifier export function checkIfThreeCodePointsWouldStartAnIdentSequence(reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); if (peeked === false) { diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts index 3a12645d8a..1d1f27744d 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts @@ -2,6 +2,7 @@ import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../codepoints/codepoints'; import { isDigitCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-number export function checkIfThreeCodePointsWouldStartANumber(reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); if (peeked === false) { diff --git a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts index 84c9977d3d..8ca052bbc6 100644 --- a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts +++ b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts @@ -1,19 +1,23 @@ import { LINE_FEED, REVERSE_SOLIDUS } from '../codepoints/codepoints'; import { CodePointReader } from '../interfaces/code-point-reader'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-valid-escape export function checkIfTwoCodePointsAreAValidEscape(reader: CodePointReader): boolean { const peeked = reader.peekTwoCodePoints(); if (peeked === false) { return false; } + // If the first code point is not U+005C REVERSE SOLIDUS (\), return false. if (peeked[0] !== REVERSE_SOLIDUS) { // "\" return false; } + // Otherwise, if the second code point is a newline, return false. if (peeked[1] === LINE_FEED) { return false; } + // Otherwise, return true. return true; } diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/codepoints/codepoints.ts index 131bdd2d0d..84f9b90ac1 100644 --- a/packages/css-tokenizer/src/codepoints/codepoints.ts +++ b/packages/css-tokenizer/src/codepoints/codepoints.ts @@ -1,14 +1,16 @@ +export const BACKSPACE = '\u{8}'.charCodeAt(0); export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); +export const CHARACTER_TABULATION = '\u{9}'.charCodeAt(0); +export const DELETE = '\u{7f}'.charCodeAt(0); export const FORM_FEED = '\u{c}'.charCodeAt(0); -export const LINE_FEED = '\u{a}'.charCodeAt(0); -export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); -export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); -export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); export const FULL_STOP = '\u{2e}'.charCodeAt(0); +export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); +export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); +export const LINE_FEED = '\u{a}'.charCodeAt(0); +export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); export const NULL = '\u{0}'.charCodeAt(0); -export const BACKSPACE = '\u{8}'.charCodeAt(0); -export const LINE_TABULATION = '\u{b}'.charCodeAt(0); +export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); +export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); export const SHIFT_OUT = '\u{e}'.charCodeAt(0); -export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); -export const DELETE = '\u{7f}'.charCodeAt(0); +export const SPACE = '\u{20}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/codepoints/ranges.ts b/packages/css-tokenizer/src/codepoints/ranges.ts index c71f5a34c4..838521538e 100644 --- a/packages/css-tokenizer/src/codepoints/ranges.ts +++ b/packages/css-tokenizer/src/codepoints/ranges.ts @@ -1,8 +1,10 @@ -import { BACKSPACE, DELETE, INFORMATION_SEPARATOR_ONE, LINE_TABULATION, LOW_LINE, HYPHEN_MINUS, NULL, SHIFT_OUT } from './codepoints'; +import { BACKSPACE, DELETE, INFORMATION_SEPARATOR_ONE, LINE_TABULATION, LOW_LINE, HYPHEN_MINUS, NULL, SHIFT_OUT, LINE_FEED, CARRIAGE_RETURN, FORM_FEED, CHARACTER_TABULATION, SPACE } from './codepoints'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokenizer-definitions const digitsLow = '\u{30}'.charCodeAt(0); const digitsHigh = '\u{39}'.charCodeAt(0); +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#digit export function isDigitCodePoint(search: number): boolean { if (digitsLow <= search && search <= digitsHigh) { return true; @@ -11,30 +13,10 @@ export function isDigitCodePoint(search: number): boolean { return false; } -const afUppercaseLow = '\u{41}'.charCodeAt(0); -const afUppercaseHigh = '\u{46}'.charCodeAt(0); -const afLowercaseLow = '\u{61}'.charCodeAt(0); -const afLowercaseHigh = '\u{66}'.charCodeAt(0); - -export function isHexDigitCodePoint(search: number): boolean { - if (isDigitCodePoint(search)) { - return true; - } - - if (afUppercaseLow <= search && search <= afUppercaseHigh) { - return true; - } - - if (afLowercaseLow <= search && search <= afLowercaseHigh) { - return true; - } - - return false; -} - const letterUppercaseLow = '\u{41}'.charCodeAt(0); const letterUppercaseHigh = '\u{5a}'.charCodeAt(0); +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#uppercase-letter export function isUppercaseLetterCodePoint(search: number): boolean { if (letterUppercaseLow <= search && search <= letterUppercaseHigh) { return true; @@ -46,6 +28,7 @@ export function isUppercaseLetterCodePoint(search: number): boolean { const letterLowercaseLow = '\u{61}'.charCodeAt(0); const letterLowercaseHigh = '\u{7a}'.charCodeAt(0); +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#lowercase-letter export function isLowercaseLetterCodePoint(search: number): boolean { if (letterLowercaseLow <= search && search <= letterLowercaseHigh) { return true; @@ -54,6 +37,27 @@ export function isLowercaseLetterCodePoint(search: number): boolean { return false; } +const afUppercaseHigh = '\u{46}'.charCodeAt(0); +const afLowercaseHigh = '\u{66}'.charCodeAt(0); + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#hex-digit +export function isHexDigitCodePoint(search: number): boolean { + if (isDigitCodePoint(search)) { + return true; + } + + if (letterUppercaseLow <= search && search <= afUppercaseHigh) { + return true; + } + + if (letterLowercaseLow <= search && search <= afLowercaseHigh) { + return true; + } + + return false; +} + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#letter export function isLetterCodePoint(search: number): boolean { if (isUppercaseLetterCodePoint(search) || isLowercaseLetterCodePoint(search)) { return true; @@ -64,10 +68,12 @@ export function isLetterCodePoint(search: number): boolean { const nonASCIILow = '\u{80}'.charCodeAt(0); +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#non-ascii-code-point export function isNonASCIICodePoint(search: number): boolean { return search >= nonASCIILow; } +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#ident-start-code-point export function isIdentStartCodePoint(search: number): boolean { if (isLetterCodePoint(search)) { return true; @@ -80,6 +86,7 @@ export function isIdentStartCodePoint(search: number): boolean { return search === LOW_LINE; } +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#ident-code-point export function isIdentCodePoint(search: number): boolean { if (isIdentStartCodePoint(search)) { return true; @@ -92,6 +99,7 @@ export function isIdentCodePoint(search: number): boolean { return search === HYPHEN_MINUS; } +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#non-printable-code-point export function isNonPrintableCodePoint(search: number): boolean { if (search === LINE_TABULATION) { return true; @@ -111,3 +119,20 @@ export function isNonPrintableCodePoint(search: number): boolean { return false; } + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#whitespace +export function isWhitespace(search: number): boolean { + switch (search) { + case LINE_FEED: + case CARRIAGE_RETURN: + case FORM_FEED: + return true; + case CHARACTER_TABULATION: + return true; + case SPACE: + return true; + + default: + return false; + } +} diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace.ts new file mode 100644 index 0000000000..43b8bfc73f --- /dev/null +++ b/packages/css-tokenizer/src/consume/whitespace.ts @@ -0,0 +1,40 @@ +import { isWhitespace } from '../codepoints/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenType, TokenWhitespace } from '../interfaces/token'; + +export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhitespace { + let current = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + if (max !== -1 && current === max) { + return [ + TokenType.Whitespace, + ' ', + ...reader.representation(), + ]; + } + + current++; + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return [ + TokenType.Whitespace, + ' ', + ...reader.representation(), + ]; + } + + if (isWhitespace(peeked)) { + break; + } + + reader.readCodePoint(); + } + + return [ + TokenType.Whitespace, + ' ', + ...reader.representation(), + ]; +} diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index 24f4fb09a5..dfeedd2a98 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -2,4 +2,9 @@ export type CodePointReader = { peekOneCodePoint(): number | false peekTwoCodePoints(): [number, number] | false peekThreeCodePoints(): [number, number, number] | false + + readCodePoint(): number | false + + representation(): [number, number] + resetRepresentation() } diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts new file mode 100644 index 0000000000..3cbf3f4f5b --- /dev/null +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -0,0 +1,16 @@ +export enum TokenType { + Whitespace = 'space', +} + +export type TokenWhitespace = Token; + +export type Token = [ + // The type of token + T, + // The token value + string, + // Start position of representation + number, + // End position of representation + number, +] From b47fdb405d2f3dd602f961bf00f39a22c08c279b Mon Sep 17 00:00:00 2001 From: romainmenke Date: Fri, 16 Sep 2022 11:06:45 +0200 Subject: [PATCH 04/59] consume a comment --- .../src/codepoints/codepoints.ts | 2 + .../css-tokenizer/src/codepoints/ranges.ts | 4 ++ packages/css-tokenizer/src/consume/comment.ts | 68 +++++++++++++++++++ .../src/interfaces/code-point-reader.ts | 6 ++ .../css-tokenizer/src/interfaces/token.ts | 10 ++- packages/css-tokenizer/test/foo.css | 4 ++ 6 files changed, 92 insertions(+), 2 deletions(-) create mode 100644 packages/css-tokenizer/src/consume/comment.ts diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/codepoints/codepoints.ts index 84f9b90ac1..18f9b46dac 100644 --- a/packages/css-tokenizer/src/codepoints/codepoints.ts +++ b/packages/css-tokenizer/src/codepoints/codepoints.ts @@ -1,3 +1,4 @@ +export const ASTERISK = '\u{2a}'.charCodeAt(0); export const BACKSPACE = '\u{8}'.charCodeAt(0); export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); export const CHARACTER_TABULATION = '\u{9}'.charCodeAt(0); @@ -13,4 +14,5 @@ export const NULL = '\u{0}'.charCodeAt(0); export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); export const SHIFT_OUT = '\u{e}'.charCodeAt(0); +export const SOLIDUS = '\u{2f}'.charCodeAt(0); export const SPACE = '\u{20}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/codepoints/ranges.ts b/packages/css-tokenizer/src/codepoints/ranges.ts index 838521538e..3a3c9563dd 100644 --- a/packages/css-tokenizer/src/codepoints/ranges.ts +++ b/packages/css-tokenizer/src/codepoints/ranges.ts @@ -126,6 +126,10 @@ export function isWhitespace(search: number): boolean { case LINE_FEED: case CARRIAGE_RETURN: case FORM_FEED: + // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#input-preprocessing + // We can not follow the preprocessing rules because our output is text and must be minimally different from the input. + // Applying the preprocessing rules would make it impossible to match the input. + // A side effect of this is that our definition of whitespace is broader. return true; case CHARACTER_TABULATION: return true; diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts new file mode 100644 index 0000000000..f1aad45be5 --- /dev/null +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -0,0 +1,68 @@ +import { ASTERISK, SOLIDUS } from '../codepoints/codepoints'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenComment, TokenError, TokenType } from '../interfaces/token'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment +export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { + let value = ''; + + const open = reader.peekOneCodePoint(); + if (open === false) { + return [ + TokenType.Error, + '', + ...reader.representation(), + { + reason: 'parse error while consuming a comment, expected "*" after "/".', + }, + ]; + } + + if (open !== ASTERISK) { + return; + } + + reader.readCodePoint(); + + // eslint-disable-next-line no-constant-condition + while (true) { + const codePoint = reader.readCodePoint(); + if (codePoint === false) { + return [ + TokenType.Error, + '', + ...reader.representation(), + { + reason: 'parse error while consuming a comment, comment was unclosed before the end of the file.', + }, + ]; + } + + if (codePoint !== ASTERISK) { + value += String.fromCharCode(codePoint); + continue; + } + + const close = reader.peekOneCodePoint(); + if (close === false) { + return [ + TokenType.Error, + '', + ...reader.representation(), + { + reason: 'parse error while consuming a comment, comment was unclosed before the end of the file.', + }, + ]; + } + + if (close === SOLIDUS) { + reader.readCodePoint(); + + return [ + TokenType.Comment, + value, + ...reader.representation(), + ]; + } + } +} diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index dfeedd2a98..dd6fb90164 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -1,3 +1,9 @@ +// Note 1 +// The CSS specification refers to units of text as code points. +// We follow this naming. +// This must not be confused with `codePointAt`|`charCodeAt` which are JS API's. +// A char code in JS is equivalent to a code point from the CSS Specification. + export type CodePointReader = { peekOneCodePoint(): number | false peekTwoCodePoints(): [number, number] | false diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 3cbf3f4f5b..9aadafbba8 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -1,10 +1,14 @@ export enum TokenType { + Comment = 'comment', + Error = 'error', Whitespace = 'space', } -export type TokenWhitespace = Token; +export type TokenComment = Token; +export type TokenError = Token>; +export type TokenWhitespace = Token; -export type Token = [ +export type Token = [ // The type of token T, // The token value @@ -13,4 +17,6 @@ export type Token = [ number, // End position of representation number, + // Extra data + U?, ] diff --git a/packages/css-tokenizer/test/foo.css b/packages/css-tokenizer/test/foo.css index 6a7d9bcfec..7782f067c0 100644 --- a/packages/css-tokenizer/test/foo.css +++ b/packages/css-tokenizer/test/foo.css @@ -5,3 +5,7 @@ world!"; } + +.bar { + /* a comment \*/ still in a comment */ +} From 46fdd6a2f8a224d5f4881d19dccdeaa961d82ace Mon Sep 17 00:00:00 2001 From: romainmenke Date: Fri, 16 Sep 2022 19:49:05 +0200 Subject: [PATCH 05/59] add reader --- package-lock.json | 29 +++ .../src/codepoints/codepoints.ts | 2 + packages/css-tokenizer/src/consume/number.ts | 13 ++ packages/css-tokenizer/src/index.ts | 1 + .../src/interfaces/code-point-reader.ts | 2 + .../css-tokenizer/src/interfaces/token.ts | 3 + packages/css-tokenizer/src/reader.ts | 90 +++++++++ packages/css-tokenizer/test/test-reader.mjs | 176 ++++++++++++++++++ packages/css-tokenizer/test/test.mjs | 1 + 9 files changed, 317 insertions(+) create mode 100644 packages/css-tokenizer/src/consume/number.ts create mode 100644 packages/css-tokenizer/src/reader.ts create mode 100644 packages/css-tokenizer/test/test-reader.mjs diff --git a/package-lock.json b/package-lock.json index 607df05f2b..481d50eaaa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1804,6 +1804,10 @@ "resolved": "experimental/css-has-pseudo", "link": true }, + "node_modules/@csstools/css-tokenizer": { + "resolved": "packages/css-tokenizer", + "link": true + }, "node_modules/@csstools/csstools-cli": { "resolved": "cli/csstools-cli", "link": true @@ -6721,6 +6725,25 @@ "url": "https://opencollective.com/csstools" } }, + "packages/css-tokenizer": { + "name": "@csstools/css-tokenizer", + "version": "1.0.0", + "license": "MIT", + "devDependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2", + "postcss-selector-parser": "^6.0.10" + } + }, "packages/generate-test-cases": { "name": "@csstools/generate-test-cases", "version": "1.0.0", @@ -8778,6 +8801,12 @@ "puppeteer": "^17.1.3" } }, + "@csstools/css-tokenizer": { + "version": "file:packages/css-tokenizer", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, "@csstools/csstools-cli": { "version": "file:cli/csstools-cli", "requires": { diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/codepoints/codepoints.ts index 18f9b46dac..ba3491024e 100644 --- a/packages/css-tokenizer/src/codepoints/codepoints.ts +++ b/packages/css-tokenizer/src/codepoints/codepoints.ts @@ -7,6 +7,8 @@ export const FORM_FEED = '\u{c}'.charCodeAt(0); export const FULL_STOP = '\u{2e}'.charCodeAt(0); export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); +export const LATIN_CAPITAL_LETTER = '\u{45}'.charCodeAt(0); +export const LATIN_SMALL_LETTER = '\u{65}'.charCodeAt(0); export const LINE_FEED = '\u{a}'.charCodeAt(0); export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts new file mode 100644 index 0000000000..9c8b17f25a --- /dev/null +++ b/packages/css-tokenizer/src/consume/number.ts @@ -0,0 +1,13 @@ +import { CodePointReader } from '../interfaces/code-point-reader'; + +export enum NumberType { + Integer = 1, + Number = 2, +} + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number +export function consumeNumber(reader: CodePointReader): [number, NumberType] { + reader.representation(); + + return [0, NumberType.Integer]; +} diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index b0a18f2cd6..f3b9174ba5 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1 +1,2 @@ +export { Reader } from './reader'; export * from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index dd6fb90164..c7740ffd55 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -13,4 +13,6 @@ export type CodePointReader = { representation(): [number, number] resetRepresentation() + + slice(start: number, end: number): string } diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 9aadafbba8..eabf0207b2 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -1,6 +1,9 @@ export enum TokenType { Comment = 'comment', + Dimension = 'dimension', Error = 'error', + Number = 'number', + Percentage = 'percentage', Whitespace = 'space', } diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts new file mode 100644 index 0000000000..40171f4820 --- /dev/null +++ b/packages/css-tokenizer/src/reader.ts @@ -0,0 +1,90 @@ +import { CodePointReader } from './interfaces/code-point-reader'; + +export class Reader implements CodePointReader { + #cursor: number; + #stringSource = ''; + #codePointSource: Array = []; + #length = 0; + + #representationStart = 0; + #representationEnd = 0; + + constructor(source: string) { + this.#cursor = 0; + this.#stringSource = source.valueOf(); + this.#length = source.length; + + for (let i = 0; i < this.#length; i++) { + this.#codePointSource.push(this.#stringSource.charCodeAt(i)); + } + } + + slice(start: number, end: number): string { + return this.#stringSource.slice(start, end); + } + + peekOneCodePoint(): number | false { + const first = this.#codePointSource[this.#cursor]; + if (typeof first === 'undefined') { + return false; + } + + return first; + } + + peekTwoCodePoints(): [number, number] | false { + const first = this.#codePointSource[this.#cursor]; + if (typeof first === 'undefined') { + return false; + } + + const second = this.#codePointSource[this.#cursor + 1]; + if (typeof second === 'undefined') { + return false; + } + + return [first, second]; + } + + peekThreeCodePoints(): [number, number, number] | false { + const first = this.#codePointSource[this.#cursor]; + if (typeof first === 'undefined') { + return false; + } + + const second = this.#codePointSource[this.#cursor + 1]; + if (typeof second === 'undefined') { + return false; + } + + const third = this.#codePointSource[this.#cursor + 2]; + if (typeof third === 'undefined') { + return false; + } + + return [first, second, third]; + } + + readCodePoint(): number | false { + const first = this.#codePointSource[this.#cursor]; + if (typeof first === 'undefined') { + return false; + } + + this.#representationEnd = this.#cursor + 1; + this.#cursor += 1; + return first; + } + + representation(): [number, number] { + return [ + this.#representationStart, + this.#representationEnd, + ]; + } + + resetRepresentation() { + this.#representationStart = this.#cursor; + this.#representationEnd = this.#cursor; + } +} diff --git a/packages/css-tokenizer/test/test-reader.mjs b/packages/css-tokenizer/test/test-reader.mjs new file mode 100644 index 0000000000..2b41465eac --- /dev/null +++ b/packages/css-tokenizer/test/test-reader.mjs @@ -0,0 +1,176 @@ +import assert from 'assert'; +import { Reader } from '@csstools/css-tokenizer'; + +{ + const r = new Reader('abc👨‍👨‍👧‍👦d'); + + { + const peeked = r.peekOneCodePoint(); + assert.deepEqual( + peeked, + 97, + ); + + assert.deepEqual( + String.fromCharCode(peeked), + 'a', + ); + + assert.deepEqual( + r.representation(), + [ + 0, + 0, + ], + ); + } + + { + const peeked = r.peekTwoCodePoints(); + assert.deepEqual( + peeked, + [97, 98], + ); + + assert.deepEqual( + String.fromCharCode(peeked[0]), + 'a', + ); + + assert.deepEqual( + String.fromCharCode(peeked[1]), + 'b', + ); + + assert.deepEqual( + r.representation(), + [ + 0, + 0, + ], + ); + } + + { + const peeked = r.peekThreeCodePoints(); + assert.deepEqual( + peeked, + [97, 98, 99], + ); + + assert.deepEqual( + String.fromCharCode(peeked[0]), + 'a', + ); + + assert.deepEqual( + String.fromCharCode(peeked[1]), + 'b', + ); + + assert.deepEqual( + String.fromCharCode(peeked[2]), + 'c', + ); + + assert.deepEqual( + r.representation(), + [ + 0, + 0, + ], + ); + } + + { + const read = r.readCodePoint(); + assert.deepEqual( + read, + 97, + ); + + assert.deepEqual( + String.fromCharCode(read), + 'a', + ); + + assert.deepEqual( + r.representation(), + [ + 0, + 1, + ], + ); + } + + r.resetRepresentation(); + + { + const read1 = r.readCodePoint(); + assert.deepEqual( + read1, + 98, + ); + + const read2 = r.readCodePoint(); + assert.deepEqual( + read2, + 99, + ); + + const read3 = r.readCodePoint(); + assert.deepEqual( + read3, + 55357, + ); + + assert.deepEqual( + String.fromCharCode(read3), + '\uD83D', + ); + + const read4 = r.readCodePoint(); + assert.deepEqual( + read4, + 56424, + ); + + assert.deepEqual( + String.fromCharCode(read4), + '\uDC68', + ); + + assert.deepEqual( + r.representation(), + [ + 1, + 5, + ], + ); + + // Read to the end + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + r.readCodePoint(); + + assert.deepEqual( + r.representation(), + [ + 1, + 15, + ], + ); + + assert.deepEqual( + r.slice(r.representation()[0], r.representation()[1]), + 'bc👨‍👨‍👧‍👦d', + ); + } +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 757f756972..a8a1783b57 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,5 +1,6 @@ import assert from 'assert'; import { tokenizer } from '@csstools/css-tokenizer'; +import './test-reader.mjs'; function collectTokens(t) { const bag = []; From c46d7aced89af66e5d54b7e803a556a6ac57d68e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Fri, 16 Sep 2022 22:55:34 +0200 Subject: [PATCH 06/59] tweaks --- packages/css-tokenizer/src/consume/comment.ts | 13 ++++++++++--- packages/css-tokenizer/src/consume/number.ts | 2 +- packages/css-tokenizer/src/index.ts | 1 + .../src/interfaces/code-point-reader.ts | 2 ++ packages/css-tokenizer/src/reader.ts | 14 +++++++++----- .../css-tokenizer/test/consume/comment.mjs | 19 +++++++++++++++++++ packages/css-tokenizer/test/test.mjs | 1 + 7 files changed, 43 insertions(+), 9 deletions(-) create mode 100644 packages/css-tokenizer/test/consume/comment.mjs diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index f1aad45be5..fb82ecc947 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -4,7 +4,8 @@ import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { - let value = ''; + let start = -1; + let end = -1; const open = reader.peekOneCodePoint(); if (open === false) { @@ -39,7 +40,13 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError } if (codePoint !== ASTERISK) { - value += String.fromCharCode(codePoint); + if (start === -1) { + // current cursor position minus one. + start = reader.cursorPositionOfLastReadCodePoint(); + } + + end = reader.cursorPositionOfLastReadCodePoint() + 1; + continue; } @@ -60,7 +67,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError return [ TokenType.Comment, - value, + reader.slice(start, end), ...reader.representation(), ]; } diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 9c8b17f25a..881a1cd21d 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -6,7 +6,7 @@ export enum NumberType { } // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number -export function consumeNumber(reader: CodePointReader): [number, NumberType] { +export function consumeNumber(reader: CodePointReader, initial: number): [number, NumberType] { reader.representation(); return [0, NumberType.Integer]; diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index f3b9174ba5..a0f964caef 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,2 +1,3 @@ export { Reader } from './reader'; +export { consumeComment } from './consume/comment'; export * from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index c7740ffd55..293899e86b 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -5,6 +5,8 @@ // A char code in JS is equivalent to a code point from the CSS Specification. export type CodePointReader = { + cursorPositionOfLastReadCodePoint(): number; + peekOneCodePoint(): number | false peekTwoCodePoints(): [number, number] | false peekThreeCodePoints(): [number, number, number] | false diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 40171f4820..132e9c7cd2 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -19,8 +19,8 @@ export class Reader implements CodePointReader { } } - slice(start: number, end: number): string { - return this.#stringSource.slice(start, end); + cursorPositionOfLastReadCodePoint(): number { + return this.#cursor - 1; } peekOneCodePoint(): number | false { @@ -66,14 +66,14 @@ export class Reader implements CodePointReader { } readCodePoint(): number | false { - const first = this.#codePointSource[this.#cursor]; - if (typeof first === 'undefined') { + const codePoint = this.#codePointSource[this.#cursor]; + if (typeof codePoint === 'undefined') { return false; } this.#representationEnd = this.#cursor + 1; this.#cursor += 1; - return first; + return codePoint; } representation(): [number, number] { @@ -87,4 +87,8 @@ export class Reader implements CodePointReader { this.#representationStart = this.#cursor; this.#representationEnd = this.#cursor; } + + slice(start: number, end: number): string { + return this.#stringSource.slice(start, end); + } } diff --git a/packages/css-tokenizer/test/consume/comment.mjs b/packages/css-tokenizer/test/consume/comment.mjs new file mode 100644 index 0000000000..78d8f4b3c2 --- /dev/null +++ b/packages/css-tokenizer/test/consume/comment.mjs @@ -0,0 +1,19 @@ +import assert from 'assert'; +import { Reader, consumeComment } from '@csstools/css-tokenizer'; + +{ + const r = new Reader('/* a comment */'); + r.readCodePoint(); + + const token = consumeComment(r); + + assert.deepEqual( + token, + ['comment', ' a comment ', 0, 15], + ); + + assert.deepEqual( + r.slice(token[2], token[3]), + '/* a comment */', + ); +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index a8a1783b57..adb1b66b53 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,6 +1,7 @@ import assert from 'assert'; import { tokenizer } from '@csstools/css-tokenizer'; import './test-reader.mjs'; +import './consume/comment.mjs'; function collectTokens(t) { const bag = []; From 151cf482016cd63bc3a5342b8d1193aa30d57929 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 17 Sep 2022 11:13:37 +0200 Subject: [PATCH 07/59] postcss interop --- packages/css-tokenizer/README.md | 2 + packages/css-tokenizer/src/consume/comment.ts | 12 +----- packages/css-tokenizer/src/consume/number.ts | 39 +++++++++++++++++++ .../src/interfaces/code-point-reader.ts | 1 + packages/css-tokenizer/src/reader.ts | 15 +++++-- .../css-tokenizer/test/consume/comment.mjs | 9 ++++- packages/css-tokenizer/test/test-reader.mjs | 24 ++++++++---- packages/css-tokenizer/test/test.mjs | 13 +++++++ 8 files changed, 92 insertions(+), 23 deletions(-) diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index 912d7a3c6a..74fbabd56c 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -1,5 +1,7 @@ # TODO +Implemented from : https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/ + A CSS tokenizer that strictly follows the spec. Goals : diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index fb82ecc947..24559cd142 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -4,9 +4,6 @@ import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { - let start = -1; - let end = -1; - const open = reader.peekOneCodePoint(); if (open === false) { return [ @@ -40,13 +37,6 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError } if (codePoint !== ASTERISK) { - if (start === -1) { - // current cursor position minus one. - start = reader.cursorPositionOfLastReadCodePoint(); - } - - end = reader.cursorPositionOfLastReadCodePoint() + 1; - continue; } @@ -67,7 +57,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError return [ TokenType.Comment, - reader.slice(start, end), + reader.representationString(), ...reader.representation(), ]; } diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 881a1cd21d..2003f8c6c0 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -1,3 +1,4 @@ +import { isDigitCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; export enum NumberType { @@ -11,3 +12,41 @@ export function consumeNumber(reader: CodePointReader, initial: number): [number return [0, NumberType.Integer]; } + +function consumeDigits(reader: CodePointReader): string | false { + let value = ''; + + // eslint-disable-next-line no-constant-condition + while (true) { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return false; + } + + if (isDigitCodePoint(peeked)) { + value += String.fromCharCode(peeked); + reader.readCodePoint(); + } else { + return value; + } + } +} + + +function parseNumber(value: string, isNumber: boolean): number|false { + if (isNumber) { + const floatValue = Number.parseFloat(value); + if (Number.isNaN(floatValue)) { + return false; + } + + return floatValue; + } + + const integerValue = Number.parseInt(value, 10); + if (Number.isNaN(integerValue)) { + return false; + } + + return integerValue; +} diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index 293899e86b..56a20af2cd 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -14,6 +14,7 @@ export type CodePointReader = { readCodePoint(): number | false representation(): [number, number] + representationString(): string resetRepresentation() slice(start: number, end: number): string diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 132e9c7cd2..39d386f81e 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -7,7 +7,7 @@ export class Reader implements CodePointReader { #length = 0; #representationStart = 0; - #representationEnd = 0; + #representationEnd = -1; constructor(source: string) { this.#cursor = 0; @@ -71,7 +71,7 @@ export class Reader implements CodePointReader { return false; } - this.#representationEnd = this.#cursor + 1; + this.#representationEnd = this.#cursor; this.#cursor += 1; return codePoint; } @@ -83,9 +83,18 @@ export class Reader implements CodePointReader { ]; } + representationString(): string { + const representation = this.representation(); + if (representation[1] === -1) { + return ''; + } + + return this.slice(representation[0], representation[1] + 1); + } + resetRepresentation() { this.#representationStart = this.#cursor; - this.#representationEnd = this.#cursor; + this.#representationEnd = -1; } slice(start: number, end: number): string { diff --git a/packages/css-tokenizer/test/consume/comment.mjs b/packages/css-tokenizer/test/consume/comment.mjs index 78d8f4b3c2..40cddf9f35 100644 --- a/packages/css-tokenizer/test/consume/comment.mjs +++ b/packages/css-tokenizer/test/consume/comment.mjs @@ -9,11 +9,16 @@ import { Reader, consumeComment } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['comment', ' a comment ', 0, 15], + ['comment', '/* a comment */', 0, 14], ); assert.deepEqual( - r.slice(token[2], token[3]), + r.slice(token[2], token[3] + 1), + '/* a comment */', + ); + + assert.deepEqual( + r.representationString(), '/* a comment */', ); } diff --git a/packages/css-tokenizer/test/test-reader.mjs b/packages/css-tokenizer/test/test-reader.mjs index 2b41465eac..69c59e7066 100644 --- a/packages/css-tokenizer/test/test-reader.mjs +++ b/packages/css-tokenizer/test/test-reader.mjs @@ -20,7 +20,7 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 0, - 0, + -1, ], ); } @@ -46,7 +46,7 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 0, - 0, + -1, ], ); } @@ -77,7 +77,7 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 0, - 0, + -1, ], ); } @@ -98,9 +98,14 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 0, - 1, + 0, ], ); + + assert.deepEqual( + r.representationString(), + 'a', + ); } r.resetRepresentation(); @@ -144,7 +149,7 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 1, - 5, + 4, ], ); @@ -164,12 +169,17 @@ import { Reader } from '@csstools/css-tokenizer'; r.representation(), [ 1, - 15, + 14, ], ); assert.deepEqual( - r.slice(r.representation()[0], r.representation()[1]), + r.slice(r.representation()[0], r.representation()[1] + 1), + 'bc👨‍👨‍👧‍👦d', + ); + + assert.deepEqual( + r.representationString(), 'bc👨‍👨‍👧‍👦d', ); } diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index adb1b66b53..7034c409d9 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -57,3 +57,16 @@ world!" }`, ], ); } + +{ + const t = tokenizer({ + css: '/* a comment */', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['comment', '/* a comment */', 0, 14], + ], + ); +} From c2605a87c80cc92b0cd6bb43aac7d9c0a872882e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 09:51:08 +0200 Subject: [PATCH 08/59] wip --- packages/css-tokenizer/src/consume/number.ts | 68 +++++++++++++++++-- .../src/interfaces/code-point-reader.ts | 1 + packages/css-tokenizer/src/reader.ts | 11 +++ 3 files changed, 74 insertions(+), 6 deletions(-) diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 2003f8c6c0..5df906df51 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -1,3 +1,4 @@ +import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../codepoints/codepoints'; import { isDigitCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; @@ -7,24 +8,79 @@ export enum NumberType { } // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number -export function consumeNumber(reader: CodePointReader, initial: number): [number, NumberType] { - reader.representation(); +export function consumeNumber(reader: CodePointReader): [number, NumberType] { + // 1. Initially set type to "integer". + // Let repr be the empty string. + let type = NumberType.Integer; + const repr: Array = []; + + { + // 2. If the next input code point is U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-), consume it and append it to repr. + const peeked = reader.peekOneCodePoint(); + if (peeked === PLUS_SIGN || peeked === HYPHEN_MINUS) { + reader.readCodePoint(); + repr.push(peeked); + } + + // 3. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } + + { + // 4. If the next 2 input code points are U+002E FULL STOP (.) followed by a digit, then: + const peeked = reader.peekTwoCodePoints(); + if (peeked !== false && peeked[0] === FULL_STOP && isDigitCodePoint(peeked[1])) { + // 4.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + + // 4.2. Append them to repr. + repr.push(...peeked); + + // 4.3. Set type to "number". + type = NumberType.Number; + + // 4.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } + } + + { + // 5. If the next 2 or 3 input code points are U+0045 LATIN CAPITAL LETTER E (E) or U+0065 LATIN SMALL LETTER E (e), + // optionally followed by U+002D HYPHEN-MINUS (-) or U+002B PLUS SIGN (+), + // followed by a digit, then: + const peeked = reader.peekThreeCodePoints(); + if (peeked !== false && peeked[0] === FULL_STOP && isDigitCodePoint(peeked[1])) { + // 4.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + + // 4.2. Append them to repr. + repr.push(...peeked); + + // 4.3. Set type to "number". + type = NumberType.Number; + + // 4.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } + } return [0, NumberType.Integer]; } -function consumeDigits(reader: CodePointReader): string | false { - let value = ''; +function consumeDigits(reader: CodePointReader): Array { + const value: Array = []; // eslint-disable-next-line no-constant-condition while (true) { const peeked = reader.peekOneCodePoint(); if (peeked === false) { - return false; + return value; } if (isDigitCodePoint(peeked)) { - value += String.fromCharCode(peeked); + value.push(peeked); reader.readCodePoint(); } else { return value; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index 56a20af2cd..0e68e62e99 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -12,6 +12,7 @@ export type CodePointReader = { peekThreeCodePoints(): [number, number, number] | false readCodePoint(): number | false + unreadCodePoint(): boolean representation(): [number, number] representationString(): string diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 39d386f81e..493de454e6 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -76,6 +76,17 @@ export class Reader implements CodePointReader { return codePoint; } + unreadCodePoint(): boolean { + if (this.#cursor === 0) { + return false; + } + + this.#representationEnd = this.#cursor - 1; + this.#cursor -= 1; + + return true; + } + representation(): [number, number] { return [ this.#representationStart, From 183e592a9eb7d666c4af42f0a23448e75bd5a6bb Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 11:27:27 +0200 Subject: [PATCH 09/59] consume number --- .../src/codepoints/codepoints.ts | 4 +- packages/css-tokenizer/src/consume/number.ts | 170 +++++++++++++++--- packages/css-tokenizer/src/index.ts | 1 + .../css-tokenizer/test/consume/number.mjs | 125 +++++++++++++ packages/css-tokenizer/test/test.mjs | 1 + 5 files changed, 273 insertions(+), 28 deletions(-) create mode 100644 packages/css-tokenizer/test/consume/number.mjs diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/codepoints/codepoints.ts index ba3491024e..156f825dcf 100644 --- a/packages/css-tokenizer/src/codepoints/codepoints.ts +++ b/packages/css-tokenizer/src/codepoints/codepoints.ts @@ -7,8 +7,8 @@ export const FORM_FEED = '\u{c}'.charCodeAt(0); export const FULL_STOP = '\u{2e}'.charCodeAt(0); export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); -export const LATIN_CAPITAL_LETTER = '\u{45}'.charCodeAt(0); -export const LATIN_SMALL_LETTER = '\u{65}'.charCodeAt(0); +export const LATIN_CAPITAL_LETTER_E = '\u{45}'.charCodeAt(0); +export const LATIN_SMALL_LETTER_E = '\u{65}'.charCodeAt(0); export const LINE_FEED = '\u{a}'.charCodeAt(0); export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 5df906df51..7934163b56 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -1,16 +1,16 @@ -import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../codepoints/codepoints'; +import { FULL_STOP, HYPHEN_MINUS, LATIN_CAPITAL_LETTER_E, LATIN_SMALL_LETTER_E, PLUS_SIGN } from '../codepoints/codepoints'; import { isDigitCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; export enum NumberType { - Integer = 1, - Number = 2, + Integer = 0, + Number = 1, } // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number export function consumeNumber(reader: CodePointReader): [number, NumberType] { // 1. Initially set type to "integer". - // Let repr be the empty string. + // Let repr be the empty string. let type = NumberType.Integer; const repr: Array = []; @@ -49,24 +49,59 @@ export function consumeNumber(reader: CodePointReader): [number, NumberType] { // 5. If the next 2 or 3 input code points are U+0045 LATIN CAPITAL LETTER E (E) or U+0065 LATIN SMALL LETTER E (e), // optionally followed by U+002D HYPHEN-MINUS (-) or U+002B PLUS SIGN (+), // followed by a digit, then: - const peeked = reader.peekThreeCodePoints(); - if (peeked !== false && peeked[0] === FULL_STOP && isDigitCodePoint(peeked[1])) { - // 4.1. Consume them. - reader.readCodePoint(); - reader.readCodePoint(); - - // 4.2. Append them to repr. - repr.push(...peeked); - // 4.3. Set type to "number". - type = NumberType.Number; + { + const peeked = reader.peekTwoCodePoints(); + if ( + peeked !== false && + (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && + isDigitCodePoint(peeked[1]) + ) { + // 5.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + + // 5.2. Append them to repr. + repr.push(...peeked); + + // 5.3. Set type to "number". + type = NumberType.Number; + + // 5.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } + } - // 4.4. While the next input code point is a digit, consume it and append it to repr. - repr.push(...consumeDigits(reader)); + { + const peeked = reader.peekThreeCodePoints(); + if ( + peeked !== false && + (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && + (peeked[1] === HYPHEN_MINUS || peeked[1] === PLUS_SIGN) && + isDigitCodePoint(peeked[2]) + ) { + // 5.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + reader.readCodePoint(); + + // 5.2. Append them to repr. + repr.push(...peeked); + + // 5.3. Set type to "number". + type = NumberType.Number; + + // 5.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } } } - return [0, NumberType.Integer]; + // 6. Convert repr to a number, and set the value to the returned value. + const value = convertCodePointsToNumber(repr); + + // 7. Return value and type. + return [value, type]; } function consumeDigits(reader: CodePointReader): Array { @@ -88,20 +123,103 @@ function consumeDigits(reader: CodePointReader): Array { } } +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#convert-string-to-number +function convertCodePointsToNumber(codePoints: Array): number { + let s = 1; + const iCodePoints: Array = []; + let i = 0; -function parseNumber(value: string, isNumber: boolean): number|false { - if (isNumber) { - const floatValue = Number.parseFloat(value); - if (Number.isNaN(floatValue)) { - return false; - } + let d = 0; + const fCodePoints: Array = []; + let f = 0; + + let t = 1; + + const eCodePoints: Array = []; + let e = 0; + + let cursor = 0; + + // 1. A sign: a single U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-), or the empty string. + // Let s be the number -1 if the sign is U+002D HYPHEN-MINUS (-); + // otherwise, let s be the number 1. + if (codePoints[cursor] === HYPHEN_MINUS) { + cursor++; + s = -1; + } else if (codePoints[cursor] === PLUS_SIGN) { + cursor++; + } - return floatValue; + // 2. An integer part: zero or more digits. + // If there is at least one digit, + // let i be the number formed by interpreting the digits as a base-10 integer; + // otherwise, let i be the number 0. + while (cursor < codePoints.length && isDigitCodePoint(codePoints[cursor])) { + iCodePoints.push(codePoints[cursor]); + cursor++; } - const integerValue = Number.parseInt(value, 10); + i = digitCodePointsToInteger(iCodePoints); + + // 3. A decimal point: a single U+002E FULL STOP (.), or the empty string. + if (codePoints[cursor] === FULL_STOP) { + cursor++; + } + + // 4. A fractional part: zero or more digits. + // If there is at least one digit, + // let f be the number formed by interpreting the digits as a base-10 integer and d be the number of digits; + // otherwise, let f and d be the number 0. + while (cursor < codePoints.length && isDigitCodePoint(codePoints[cursor])) { + fCodePoints.push(codePoints[cursor]); + cursor++; + } + + d = fCodePoints.length; + f = (digitCodePointsToInteger(fCodePoints) / Math.pow(10, d)); + + // 5. An exponent indicator: a single U+0045 LATIN CAPITAL LETTER E (E) or U+0065 LATIN SMALL LETTER E (e), or the empty string. + if (codePoints[cursor] === LATIN_SMALL_LETTER_E || codePoints[cursor] === LATIN_CAPITAL_LETTER_E) { + cursor++; + } + + // 6. An exponent sign: a single U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-), or the empty string. + // Let t be the number -1 if the sign is U+002D HYPHEN-MINUS (-); + // otherwise, let t be the number 1. + if (codePoints[cursor] === HYPHEN_MINUS) { + cursor++; + t = -1; + } else if (codePoints[cursor] === PLUS_SIGN) { + cursor++; + } + + // 7. An exponent: zero or more digits. + // If there is at least one digit, + // let e be the number formed by interpreting the digits as a base-10 integer; + // otherwise, let e be the number 0. + while (cursor < codePoints.length && isDigitCodePoint(codePoints[cursor])) { + eCodePoints.push(codePoints[cursor]); + cursor++; + } + + e = digitCodePointsToInteger(eCodePoints); + + // Return the number s·(i + f·10-d)·10te. + return s * (i + f) * Math.pow(10, t * e); +} + +function digitCodePointsToInteger(codePoints: Array): number { + if (codePoints.length === 0) { + return 0; + } + + const stringValue = codePoints.map((x) => { + return String.fromCharCode(x); + }).join(''); + + const integerValue = Number.parseInt(stringValue, 10); if (Number.isNaN(integerValue)) { - return false; + throw new Error(`Unexpected "NaN" result when parsing a number from digit code points: "${stringValue}"`); } return integerValue; diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index a0f964caef..2be1d7b16a 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,3 +1,4 @@ export { Reader } from './reader'; export { consumeComment } from './consume/comment'; +export { consumeNumber } from './consume/number'; export * from './tokenize'; diff --git a/packages/css-tokenizer/test/consume/number.mjs b/packages/css-tokenizer/test/consume/number.mjs new file mode 100644 index 0000000000..04c0c14ee9 --- /dev/null +++ b/packages/css-tokenizer/test/consume/number.mjs @@ -0,0 +1,125 @@ +import assert from 'assert'; +import { Reader, consumeNumber } from '@csstools/css-tokenizer'; + +{ + const r = new Reader('12'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [12, 0], + ); +} + +{ + const r = new Reader('4.01'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [4.01, 1], + ); +} + +{ + const r = new Reader('-456.8'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [-456.8, 1], + ); +} + +{ + const r = new Reader('0.0'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [0, 1], + ); +} + +{ + const r = new Reader('+0.0'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [0, 1], + ); +} + +{ + const r = new Reader('-0.0'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [0, 1], + ); +} + +{ + const r = new Reader('.60'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [0.6, 1], + ); +} + +{ + const r = new Reader('10e3'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [10e3, 1], + ); +} + +{ + const r = new Reader('-3.4e-2'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [-0.034, 1], + ); +} + +// consumeNumber doesn't validate that inputs would form number tokens. +// Any validation has to be done externally. +// A result of this is that invalid inputs do return numbers when fed to this algorithm +{ + const r = new Reader('12.'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [12, 0], + ); +} + +{ + const r = new Reader('+-12.2'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [0, 0], + ); +} + +{ + const r = new Reader('12.1.1'); + const number = consumeNumber(r); + + assert.deepEqual( + number, + [12.1, 1], + ); +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 7034c409d9..f39f4ce787 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -2,6 +2,7 @@ import assert from 'assert'; import { tokenizer } from '@csstools/css-tokenizer'; import './test-reader.mjs'; import './consume/comment.mjs'; +import './consume/number.mjs'; function collectTokens(t) { const bag = []; From c8e40fdaa32d4a24c7bd5fea30a435602a82d30d Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 11:30:52 +0200 Subject: [PATCH 10/59] fix --- packages/css-tokenizer/src/consume/number.ts | 4 ++-- .../css-tokenizer/test/consume/number.mjs | 24 +++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 7934163b56..82905eb36b 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -3,8 +3,8 @@ import { isDigitCodePoint } from '../codepoints/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; export enum NumberType { - Integer = 0, - Number = 1, + Integer = 'integer', + Number = 'number', } // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number diff --git a/packages/css-tokenizer/test/consume/number.mjs b/packages/css-tokenizer/test/consume/number.mjs index 04c0c14ee9..07e17eaf34 100644 --- a/packages/css-tokenizer/test/consume/number.mjs +++ b/packages/css-tokenizer/test/consume/number.mjs @@ -7,7 +7,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [12, 0], + [12, 'integer'], ); } @@ -17,7 +17,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [4.01, 1], + [4.01, 'number'], ); } @@ -27,7 +27,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [-456.8, 1], + [-456.8, 'number'], ); } @@ -37,7 +37,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [0, 1], + [0, 'number'], ); } @@ -47,7 +47,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [0, 1], + [0, 'number'], ); } @@ -57,7 +57,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [0, 1], + [0, 'number'], ); } @@ -67,7 +67,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [0.6, 1], + [0.6, 'number'], ); } @@ -77,7 +77,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [10e3, 1], + [10e3, 'number'], ); } @@ -87,7 +87,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [-0.034, 1], + [-0.034, 'number'], ); } @@ -100,7 +100,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [12, 0], + [12, 'integer'], ); } @@ -110,7 +110,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [0, 0], + [0, 'integer'], ); } @@ -120,6 +120,6 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; assert.deepEqual( number, - [12.1, 1], + [12.1, 'number'], ); } From 4607b2689a159af0816b70e6ade2c586dfc07d01 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 12:29:50 +0200 Subject: [PATCH 11/59] fixes --- ...-code-points-would-start-ident-sequence.ts | 8 +- .../three-code-points-would-start-number.ts | 8 +- .../two-code-points-are-valid-escape.ts | 6 +- .../code-points.ts} | 3 + .../src/{codepoints => code-points}/ranges.ts | 14 +++- .../consume/{comment.ts => comment-token.ts} | 4 +- .../consume/consume-escaped-code-pooint.ts | 37 +++++++++ .../src/consume/consume-ident-sequence.ts | 29 +++++++ packages/css-tokenizer/src/consume/number.ts | 80 +++++++------------ .../src/consume/numeric-token.ts | 52 ++++++++++++ .../css-tokenizer/src/consume/whitespace.ts | 2 +- packages/css-tokenizer/src/index.ts | 3 +- .../src/interfaces/code-point-reader.ts | 4 +- .../css-tokenizer/src/interfaces/token.ts | 8 ++ packages/css-tokenizer/src/reader.ts | 14 ++-- .../{comment.mjs => comment-token.mjs} | 4 +- .../test/consume/numeric-token.mjs | 23 ++++++ packages/css-tokenizer/test/test.mjs | 3 +- 18 files changed, 217 insertions(+), 85 deletions(-) rename packages/css-tokenizer/src/{codepoints/codepoints.ts => code-points/code-points.ts} (84%) rename packages/css-tokenizer/src/{codepoints => code-points}/ranges.ts (92%) rename packages/css-tokenizer/src/consume/{comment.ts => comment-token.ts} (89%) create mode 100644 packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts create mode 100644 packages/css-tokenizer/src/consume/consume-ident-sequence.ts create mode 100644 packages/css-tokenizer/src/consume/numeric-token.ts rename packages/css-tokenizer/test/consume/{comment.mjs => comment-token.mjs} (74%) create mode 100644 packages/css-tokenizer/test/consume/numeric-token.mjs diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts index d00fc8305c..a718d7128e 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts @@ -1,15 +1,11 @@ -import { HYPHEN_MINUS, LINE_FEED, REVERSE_SOLIDUS } from '../codepoints/codepoints'; -import { isIdentStartCodePoint } from '../codepoints/ranges'; +import { HYPHEN_MINUS, LINE_FEED, REVERSE_SOLIDUS } from '../code-points/code-points'; +import { isIdentStartCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; import { checkIfTwoCodePointsAreAValidEscape } from './two-code-points-are-valid-escape'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#would-start-an-identifier export function checkIfThreeCodePointsWouldStartAnIdentSequence(reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); - if (peeked === false) { - return false; - } - const [first, second, third] = peeked; // // U+002D HYPHEN-MINUS diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts index 1d1f27744d..552d6c4aa1 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts @@ -1,14 +1,10 @@ -import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../codepoints/codepoints'; -import { isDigitCodePoint } from '../codepoints/ranges'; +import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../code-points/code-points'; +import { isDigitCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-number export function checkIfThreeCodePointsWouldStartANumber(reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); - if (peeked === false) { - return false; - } - const [first, second, third] = peeked; if (first === PLUS_SIGN || first === HYPHEN_MINUS) { // U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-) diff --git a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts index 8ca052bbc6..1c660ce837 100644 --- a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts +++ b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts @@ -1,13 +1,9 @@ -import { LINE_FEED, REVERSE_SOLIDUS } from '../codepoints/codepoints'; +import { LINE_FEED, REVERSE_SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-valid-escape export function checkIfTwoCodePointsAreAValidEscape(reader: CodePointReader): boolean { const peeked = reader.peekTwoCodePoints(); - if (peeked === false) { - return false; - } - // If the first code point is not U+005C REVERSE SOLIDUS (\), return false. if (peeked[0] !== REVERSE_SOLIDUS) { // "\" return false; diff --git a/packages/css-tokenizer/src/codepoints/codepoints.ts b/packages/css-tokenizer/src/code-points/code-points.ts similarity index 84% rename from packages/css-tokenizer/src/codepoints/codepoints.ts rename to packages/css-tokenizer/src/code-points/code-points.ts index 156f825dcf..f551bb7ec4 100644 --- a/packages/css-tokenizer/src/codepoints/codepoints.ts +++ b/packages/css-tokenizer/src/code-points/code-points.ts @@ -12,8 +12,11 @@ export const LATIN_SMALL_LETTER_E = '\u{65}'.charCodeAt(0); export const LINE_FEED = '\u{a}'.charCodeAt(0); export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); +export const MAXIMUM_ALLOWED_CODEPOINT = '\u{10FFFF}'.charCodeAt(0); export const NULL = '\u{0}'.charCodeAt(0); +export const PERCENTAGE_SIGN = '\u{25}'.charCodeAt(0); export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); +export const REPLACEMENT_CHARACTER = '\u{FFFD}'.charCodeAt(0); export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); export const SHIFT_OUT = '\u{e}'.charCodeAt(0); export const SOLIDUS = '\u{2f}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/codepoints/ranges.ts b/packages/css-tokenizer/src/code-points/ranges.ts similarity index 92% rename from packages/css-tokenizer/src/codepoints/ranges.ts rename to packages/css-tokenizer/src/code-points/ranges.ts index 3a3c9563dd..f1f6597025 100644 --- a/packages/css-tokenizer/src/codepoints/ranges.ts +++ b/packages/css-tokenizer/src/code-points/ranges.ts @@ -1,4 +1,4 @@ -import { BACKSPACE, DELETE, INFORMATION_SEPARATOR_ONE, LINE_TABULATION, LOW_LINE, HYPHEN_MINUS, NULL, SHIFT_OUT, LINE_FEED, CARRIAGE_RETURN, FORM_FEED, CHARACTER_TABULATION, SPACE } from './codepoints'; +import { BACKSPACE, DELETE, INFORMATION_SEPARATOR_ONE, LINE_TABULATION, LOW_LINE, HYPHEN_MINUS, NULL, SHIFT_OUT, LINE_FEED, CARRIAGE_RETURN, FORM_FEED, CHARACTER_TABULATION, SPACE } from './code-points'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokenizer-definitions const digitsLow = '\u{30}'.charCodeAt(0); @@ -140,3 +140,15 @@ export function isWhitespace(search: number): boolean { return false; } } + +const surrogateLow = '\u{d800}'.charCodeAt(0); +const surrogateHigh = '\u{dfff}'.charCodeAt(0); + +// https://infra.spec.whatwg.org/#surrogate +export function isSurrogate(search: number): boolean { + if (surrogateLow <= search && search <= surrogateHigh) { + return true; + } + + return false; +} diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment-token.ts similarity index 89% rename from packages/css-tokenizer/src/consume/comment.ts rename to packages/css-tokenizer/src/consume/comment-token.ts index 24559cd142..8a3844fc72 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment-token.ts @@ -1,9 +1,9 @@ -import { ASTERISK, SOLIDUS } from '../codepoints/codepoints'; +import { ASTERISK, SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment -export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { +export function consumeCommentToken(reader: CodePointReader): TokenComment|TokenError|undefined { const open = reader.peekOneCodePoint(); if (open === false) { return [ diff --git a/packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts b/packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts new file mode 100644 index 0000000000..60ded69d55 --- /dev/null +++ b/packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts @@ -0,0 +1,37 @@ +import { MAXIMUM_ALLOWED_CODEPOINT, REPLACEMENT_CHARACTER } from '../code-points/code-points'; +import { isHexDigitCodePoint, isSurrogate } from '../code-points/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-escaped-code-point +export function consumeEscapedCodePoint(reader: CodePointReader): number { + const codePoint = reader.readCodePoint(); + if (codePoint === false) { + return REPLACEMENT_CHARACTER; + } + + if (isHexDigitCodePoint(codePoint)) { + const hexSequence: Array = [codePoint]; + + let peeked = reader.peekOneCodePoint(); + while (peeked !== false && isHexDigitCodePoint(peeked) && hexSequence.length < 6) { + reader.readCodePoint(); + hexSequence.push(peeked); + peeked = reader.peekOneCodePoint(); + } + + const codePointLiteral = parseInt(hexSequence.map((x) => String.fromCharCode(x)).join(''), 16); + if (codePointLiteral === 0) { + return REPLACEMENT_CHARACTER; + } + if (isSurrogate(codePointLiteral)) { + return REPLACEMENT_CHARACTER; + } + if (codePointLiteral > MAXIMUM_ALLOWED_CODEPOINT) { + return REPLACEMENT_CHARACTER; + } + + return codePointLiteral; + } + + return codePoint; +} diff --git a/packages/css-tokenizer/src/consume/consume-ident-sequence.ts b/packages/css-tokenizer/src/consume/consume-ident-sequence.ts new file mode 100644 index 0000000000..9c89317185 --- /dev/null +++ b/packages/css-tokenizer/src/consume/consume-ident-sequence.ts @@ -0,0 +1,29 @@ +import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; +import { isIdentCodePoint } from '../code-points/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { consumeEscapedCodePoint } from './consume-escaped-code-pooint'; + +export function consumeIdentSequence(reader: CodePointReader): Array { + const result = []; + + // eslint-disable-next-line no-constant-condition + while (true) { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return result; + } + + if (isIdentCodePoint(peeked)) { + reader.readCodePoint(); + result.push(peeked); + continue; + } + + if (checkIfTwoCodePointsAreAValidEscape(reader)) { + result.push(consumeEscapedCodePoint(reader)); + continue; + } + + return result; + } +} diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 82905eb36b..0c8fb16ed2 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -1,11 +1,7 @@ -import { FULL_STOP, HYPHEN_MINUS, LATIN_CAPITAL_LETTER_E, LATIN_SMALL_LETTER_E, PLUS_SIGN } from '../codepoints/codepoints'; -import { isDigitCodePoint } from '../codepoints/ranges'; +import { FULL_STOP, HYPHEN_MINUS, LATIN_CAPITAL_LETTER_E, LATIN_SMALL_LETTER_E, PLUS_SIGN } from '../code-points/code-points'; +import { isDigitCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; - -export enum NumberType { - Integer = 'integer', - Number = 'number', -} +import { NumberType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number export function consumeNumber(reader: CodePointReader): [number, NumberType] { @@ -29,7 +25,7 @@ export function consumeNumber(reader: CodePointReader): [number, NumberType] { { // 4. If the next 2 input code points are U+002E FULL STOP (.) followed by a digit, then: const peeked = reader.peekTwoCodePoints(); - if (peeked !== false && peeked[0] === FULL_STOP && isDigitCodePoint(peeked[1])) { + if (peeked[0] === FULL_STOP && isDigitCodePoint(peeked[1])) { // 4.1. Consume them. reader.readCodePoint(); reader.readCodePoint(); @@ -49,51 +45,33 @@ export function consumeNumber(reader: CodePointReader): [number, NumberType] { // 5. If the next 2 or 3 input code points are U+0045 LATIN CAPITAL LETTER E (E) or U+0065 LATIN SMALL LETTER E (e), // optionally followed by U+002D HYPHEN-MINUS (-) or U+002B PLUS SIGN (+), // followed by a digit, then: + const peeked = reader.peekThreeCodePoints(); + if ( + (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && + ( + ( + isDigitCodePoint(peeked[1]) + ) + || + ( + (peeked[1] === HYPHEN_MINUS || peeked[1] === PLUS_SIGN) && + isDigitCodePoint(peeked[2]) + ) + ) + ) { + // 5.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + reader.readCodePoint(); - { - const peeked = reader.peekTwoCodePoints(); - if ( - peeked !== false && - (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && - isDigitCodePoint(peeked[1]) - ) { - // 5.1. Consume them. - reader.readCodePoint(); - reader.readCodePoint(); - - // 5.2. Append them to repr. - repr.push(...peeked); - - // 5.3. Set type to "number". - type = NumberType.Number; - - // 5.4. While the next input code point is a digit, consume it and append it to repr. - repr.push(...consumeDigits(reader)); - } - } + // 5.2. Append them to repr. + repr.push(...peeked); - { - const peeked = reader.peekThreeCodePoints(); - if ( - peeked !== false && - (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && - (peeked[1] === HYPHEN_MINUS || peeked[1] === PLUS_SIGN) && - isDigitCodePoint(peeked[2]) - ) { - // 5.1. Consume them. - reader.readCodePoint(); - reader.readCodePoint(); - reader.readCodePoint(); - - // 5.2. Append them to repr. - repr.push(...peeked); - - // 5.3. Set type to "number". - type = NumberType.Number; - - // 5.4. While the next input code point is a digit, consume it and append it to repr. - repr.push(...consumeDigits(reader)); - } + // 5.3. Set type to "number". + type = NumberType.Number; + + // 5.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); } } diff --git a/packages/css-tokenizer/src/consume/numeric-token.ts b/packages/css-tokenizer/src/consume/numeric-token.ts new file mode 100644 index 0000000000..3d7452a478 --- /dev/null +++ b/packages/css-tokenizer/src/consume/numeric-token.ts @@ -0,0 +1,52 @@ +import { checkIfThreeCodePointsWouldStartAnIdentSequence } from '../checks/three-code-points-would-start-ident-sequence'; +import { PERCENTAGE_SIGN } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenDimension, TokenNumber, TokenPercentage, TokenType } from '../interfaces/token'; +import { consumeIdentSequence } from './consume-ident-sequence'; +import { consumeNumber } from './number'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-numeric-token +export function consumeNumericToken(reader: CodePointReader): TokenPercentage|TokenNumber|TokenDimension { + const numberValue = consumeNumber(reader); + + if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + const unit = consumeIdentSequence(reader); + + return [ + TokenType.Dimension, + reader.representationString(), + ...reader.representation(), + { + value: numberValue[0], + type: numberValue[1], + unit: unit.map((x) => String.fromCharCode(x)).join(''), + }, + ]; + } + + { + const peeked = reader.peekOneCodePoint(); + if (peeked === PERCENTAGE_SIGN) { + reader.readCodePoint(); + + return [ + TokenType.Percentage, + reader.representationString(), + ...reader.representation(), + { + value: numberValue[0], + }, + ]; + } + } + + return [ + TokenType.Number, + reader.representationString(), + ...reader.representation(), + { + value: numberValue[0], + type: numberValue[1], + }, + ]; +} diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace.ts index 43b8bfc73f..632fed28f8 100644 --- a/packages/css-tokenizer/src/consume/whitespace.ts +++ b/packages/css-tokenizer/src/consume/whitespace.ts @@ -1,4 +1,4 @@ -import { isWhitespace } from '../codepoints/ranges'; +import { isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; import { TokenType, TokenWhitespace } from '../interfaces/token'; diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index 2be1d7b16a..f88c2c99a8 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,4 +1,5 @@ export { Reader } from './reader'; -export { consumeComment } from './consume/comment'; +export { consumeCommentToken } from './consume/comment-token'; +export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; export * from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index 0e68e62e99..9a782d9760 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -8,8 +8,8 @@ export type CodePointReader = { cursorPositionOfLastReadCodePoint(): number; peekOneCodePoint(): number | false - peekTwoCodePoints(): [number, number] | false - peekThreeCodePoints(): [number, number, number] | false + peekTwoCodePoints(): [number, number] | [number] | [] + peekThreeCodePoints(): [number, number, number] | [number, number] | [number] | [] readCodePoint(): number | false unreadCodePoint(): boolean diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index eabf0207b2..445c70e88c 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -7,8 +7,16 @@ export enum TokenType { Whitespace = 'space', } +export enum NumberType { + Integer = 'integer', + Number = 'number', +} + export type TokenComment = Token; +export type TokenDimension = Token; export type TokenError = Token>; +export type TokenNumber = Token; +export type TokenPercentage = Token; export type TokenWhitespace = Token; export type Token = [ diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 493de454e6..4a4bca836b 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -32,34 +32,34 @@ export class Reader implements CodePointReader { return first; } - peekTwoCodePoints(): [number, number] | false { + peekTwoCodePoints(): [number, number] | [number] | [] { const first = this.#codePointSource[this.#cursor]; if (typeof first === 'undefined') { - return false; + return []; } const second = this.#codePointSource[this.#cursor + 1]; if (typeof second === 'undefined') { - return false; + return [first]; } return [first, second]; } - peekThreeCodePoints(): [number, number, number] | false { + peekThreeCodePoints(): [number, number, number] | [number, number] | [number] | [] { const first = this.#codePointSource[this.#cursor]; if (typeof first === 'undefined') { - return false; + return []; } const second = this.#codePointSource[this.#cursor + 1]; if (typeof second === 'undefined') { - return false; + return [first]; } const third = this.#codePointSource[this.#cursor + 2]; if (typeof third === 'undefined') { - return false; + return [first, second]; } return [first, second, third]; diff --git a/packages/css-tokenizer/test/consume/comment.mjs b/packages/css-tokenizer/test/consume/comment-token.mjs similarity index 74% rename from packages/css-tokenizer/test/consume/comment.mjs rename to packages/css-tokenizer/test/consume/comment-token.mjs index 40cddf9f35..03c66f178a 100644 --- a/packages/css-tokenizer/test/consume/comment.mjs +++ b/packages/css-tokenizer/test/consume/comment-token.mjs @@ -1,11 +1,11 @@ import assert from 'assert'; -import { Reader, consumeComment } from '@csstools/css-tokenizer'; +import { Reader, consumeCommentToken } from '@csstools/css-tokenizer'; { const r = new Reader('/* a comment */'); r.readCodePoint(); - const token = consumeComment(r); + const token = consumeCommentToken(r); assert.deepEqual( token, diff --git a/packages/css-tokenizer/test/consume/numeric-token.mjs b/packages/css-tokenizer/test/consume/numeric-token.mjs new file mode 100644 index 0000000000..6a58a0f486 --- /dev/null +++ b/packages/css-tokenizer/test/consume/numeric-token.mjs @@ -0,0 +1,23 @@ +import assert from 'assert'; +import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; + +{ + const r = new Reader('10px'); + + const token = consumeNumericToken(r); + + assert.deepEqual( + token, + ['dimension', '10px', 0, 3, { value: 10, type: 'integer', unit: 'px' }], + ); + + assert.deepEqual( + r.slice(token[2], token[3] + 1), + '10px', + ); + + assert.deepEqual( + r.representationString(), + '10px', + ); +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index f39f4ce787..465cd8d190 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,7 +1,8 @@ import assert from 'assert'; import { tokenizer } from '@csstools/css-tokenizer'; import './test-reader.mjs'; -import './consume/comment.mjs'; +import './consume/comment-token.mjs'; +import './consume/numeric-token.mjs'; import './consume/number.mjs'; function collectTokens(t) { From 0ee101bc7728e1971ee2fa42eb34e5c95fd2b765 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 12:35:21 +0200 Subject: [PATCH 12/59] more tests --- .../test/consume/numeric-token.mjs | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/packages/css-tokenizer/test/consume/numeric-token.mjs b/packages/css-tokenizer/test/consume/numeric-token.mjs index 6a58a0f486..f76a172198 100644 --- a/packages/css-tokenizer/test/consume/numeric-token.mjs +++ b/packages/css-tokenizer/test/consume/numeric-token.mjs @@ -21,3 +21,87 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; '10px', ); } + +{ + const r = new Reader('10%'); + + const token = consumeNumericToken(r); + + assert.deepEqual( + token, + ['percentage', '10%', 0, 2, { value: 10 }], + ); + + assert.deepEqual( + r.slice(token[2], token[3] + 1), + '10%', + ); + + assert.deepEqual( + r.representationString(), + '10%', + ); +} + +{ + const r = new Reader('-3.4e-2'); + + const token = consumeNumericToken(r); + + assert.deepEqual( + token, + ['number', '-3.4e-2', 0, 6, { value: -0.034, type: 'number' }], + ); + + assert.deepEqual( + r.slice(token[2], token[3] + 1), + '-3.4e-2', + ); + + assert.deepEqual( + r.representationString(), + '-3.4e-2', + ); +} + +{ + const r = new Reader('-3.4e'); + + const token = consumeNumericToken(r); + + assert.deepEqual( + token, + ['dimension', '-3.4e', 0, 4, { value: -3.4, type: 'number', unit: 'e' }], + ); + + assert.deepEqual( + r.slice(token[2], token[3] + 1), + '-3.4e', + ); + + assert.deepEqual( + r.representationString(), + '-3.4e', + ); +} + +{ + const r = new Reader('20--foo'); + + const token = consumeNumericToken(r); + + assert.deepEqual( + token, + ['dimension', '20--foo', 0, 6, { value: 20, type: 'integer', unit: '--foo' }], + ); + + assert.deepEqual( + r.slice(token[2], token[3] + 1), + '20--foo', + ); + + assert.deepEqual( + r.representationString(), + '20--foo', + ); +} From 59b89aba2d85a87104e47ed3b74de35dd3d26c0e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 14:57:39 +0200 Subject: [PATCH 13/59] basic tokenizer --- packages/css-tokenizer/README.md | 2 +- .../src/code-points/code-points.ts | 11 ++++ .../css-tokenizer/src/consume/whitespace.ts | 6 +- packages/css-tokenizer/src/index.ts | 2 +- .../css-tokenizer/src/interfaces/token.ts | 41 +++++++++++- packages/css-tokenizer/src/reader.ts | 2 +- packages/css-tokenizer/src/tokenizer.ts | 63 +++++++++++++++++++ packages/css-tokenizer/test/test.mjs | 8 +-- 8 files changed, 124 insertions(+), 11 deletions(-) create mode 100644 packages/css-tokenizer/src/tokenizer.ts diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index 74fbabd56c..a24952f892 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -10,6 +10,6 @@ Goals : - must be transformable - must be able to serialize from a constructed AST - must be able to serialize from a parsed AST (without any mutation or data loss) -- must have the same interface as the PostCSS tokenizer. +- tokens must have the same interface as the PostCSS tokenizer. This does not mean that tokens will be equivalent or that the tokenizer will have the exact same interface. This will be a mashup of my previous work on a [CSS tokenizer in Go](https://github.com/romainmenke/css) and the API surface of the PostCSS tokenizer. diff --git a/packages/css-tokenizer/src/code-points/code-points.ts b/packages/css-tokenizer/src/code-points/code-points.ts index f551bb7ec4..6106c5776a 100644 --- a/packages/css-tokenizer/src/code-points/code-points.ts +++ b/packages/css-tokenizer/src/code-points/code-points.ts @@ -2,6 +2,9 @@ export const ASTERISK = '\u{2a}'.charCodeAt(0); export const BACKSPACE = '\u{8}'.charCodeAt(0); export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); export const CHARACTER_TABULATION = '\u{9}'.charCodeAt(0); +export const COLON = '\u{3a}'.charCodeAt(0); +export const COMMA = '\u{2c}'.charCodeAt(0); +export const COMMERCIAL_AT = '\u{40}'.charCodeAt(0); export const DELETE = '\u{7f}'.charCodeAt(0); export const FORM_FEED = '\u{c}'.charCodeAt(0); export const FULL_STOP = '\u{2e}'.charCodeAt(0); @@ -9,6 +12,10 @@ export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); export const LATIN_CAPITAL_LETTER_E = '\u{45}'.charCodeAt(0); export const LATIN_SMALL_LETTER_E = '\u{65}'.charCodeAt(0); +export const LEFT_CURLY_BRACKET = '\u{7b}'.charCodeAt(0); +export const LEFT_PARENTHESIS = '\u{28}'.charCodeAt(0); +export const LEFT_SQUARE_BRACKET = '\u{5b}'.charCodeAt(0); +export const LESS_THAN_SIGN = '\u{3c}'.charCodeAt(0); export const LINE_FEED = '\u{a}'.charCodeAt(0); export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); @@ -18,6 +25,10 @@ export const PERCENTAGE_SIGN = '\u{25}'.charCodeAt(0); export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); export const REPLACEMENT_CHARACTER = '\u{FFFD}'.charCodeAt(0); export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); +export const RIGHT_CURLY_BRACKET = '\u{7d}'.charCodeAt(0); +export const RIGHT_PARENTHESIS = '\u{29}'.charCodeAt(0); +export const RIGHT_SQUARE_BRACKET = '\u{5d}'.charCodeAt(0); +export const SEMICOLON = '\u{3b}'.charCodeAt(0); export const SHIFT_OUT = '\u{e}'.charCodeAt(0); export const SOLIDUS = '\u{2f}'.charCodeAt(0); export const SPACE = '\u{20}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace.ts index 632fed28f8..d9000543bb 100644 --- a/packages/css-tokenizer/src/consume/whitespace.ts +++ b/packages/css-tokenizer/src/consume/whitespace.ts @@ -10,7 +10,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite if (max !== -1 && current === max) { return [ TokenType.Whitespace, - ' ', + reader.representationString(), ...reader.representation(), ]; } @@ -20,7 +20,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite if (peeked === false) { return [ TokenType.Whitespace, - ' ', + reader.representationString(), ...reader.representation(), ]; } @@ -34,7 +34,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite return [ TokenType.Whitespace, - ' ', + reader.representationString(), ...reader.representation(), ]; } diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index f88c2c99a8..d6d89ecb22 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -2,4 +2,4 @@ export { Reader } from './reader'; export { consumeCommentToken } from './consume/comment-token'; export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; -export * from './tokenize'; +export * as postcssTokenizer from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 445c70e88c..9c8a7bc141 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -1,10 +1,21 @@ export enum TokenType { + Colon = 'colon-token', + Comma = 'comma-token', Comment = 'comment', Dimension = 'dimension', Error = 'error', Number = 'number', Percentage = 'percentage', - Whitespace = 'space', + Semicolon = 'semicolon-token', + Whitespace = 'whitespace-token', + EOF = 'EOF-token', + + OpenParen = '(-token', + CloseParen = ')-token', + OpenSquare = '[-token', + CloseSquare = ']-token', + OpenCurly = '{-token', + CloseCurly = '}-token', } export enum NumberType { @@ -12,13 +23,41 @@ export enum NumberType { Number = 'number', } +export type TokenColon = Token; +export type TokenComma = Token; export type TokenComment = Token; export type TokenDimension = Token; +export type TokenEOF = Token; export type TokenError = Token>; export type TokenNumber = Token; export type TokenPercentage = Token; +export type TokenSemicolon = Token; export type TokenWhitespace = Token; +export type TokenOpenParen = Token; +export type TokenCloseParen = Token; +export type TokenOpenSquare = Token; +export type TokenCloseSquare = Token; +export type TokenOpenCurly = Token; +export type TokenCloseCurly = Token; + +export type CSSToken = TokenColon | + TokenComma | + TokenComment | + TokenDimension | + TokenEOF | + TokenError | + TokenNumber | + TokenPercentage | + TokenSemicolon | + TokenWhitespace | + TokenOpenParen | + TokenCloseParen | + TokenOpenSquare | + TokenCloseSquare | + TokenOpenCurly | + TokenCloseCurly; + export type Token = [ // The type of token T, diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 4a4bca836b..6eca7f7f07 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -11,7 +11,7 @@ export class Reader implements CodePointReader { constructor(source: string) { this.#cursor = 0; - this.#stringSource = source.valueOf(); + this.#stringSource = source; this.#length = source.length; for (let i = 0; i < this.#length; i++) { diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts new file mode 100644 index 0000000000..17fd37eb2a --- /dev/null +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -0,0 +1,63 @@ +import { COLON, COMMA, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; +import { isWhitespace } from './code-points/ranges'; +import { consumeWhiteSpace } from './consume/whitespace'; +import { CSSToken, TokenType } from './interfaces/token'; +import { Reader } from './reader'; + +interface Stringer { + valueOf(): string +} + +export function tokenizer(input: { css: Stringer }) { + const css = input.css.valueOf(); + + const reader = new Reader(css); + + function nextToken(): CSSToken|undefined { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return [TokenType.EOF, '', -1, -1]; + } + + // Simple, one character tokens: + switch (peeked) { + case LEFT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; + case RIGHT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; + case COMMA: + reader.readCodePoint(); + return [TokenType.Comma, reader.representationString(), ...reader.representation()]; + case COLON: + reader.readCodePoint(); + return [TokenType.Colon, reader.representationString(), ...reader.representation()]; + case SEMICOLON: + reader.readCodePoint(); + return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; + case LEFT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; + case RIGHT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; + case LEFT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; + case RIGHT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; + default: + break; + } + + if (isWhitespace(peeked)) { + return consumeWhiteSpace(reader); + } + } + + return { + nextToken, + }; +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 465cd8d190..fa05bbb130 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,5 +1,5 @@ import assert from 'assert'; -import { tokenizer } from '@csstools/css-tokenizer'; +import { postcssTokenizer } from '@csstools/css-tokenizer'; import './test-reader.mjs'; import './consume/comment-token.mjs'; import './consume/numeric-token.mjs'; @@ -15,7 +15,7 @@ function collectTokens(t) { } { - const t = tokenizer({ + const t = postcssTokenizer.tokenizer({ css: '@media screen and (min-width: 200px) {}', }); @@ -37,7 +37,7 @@ function collectTokens(t) { } { - const t = tokenizer({ + const t = postcssTokenizer.tokenizer({ css: `.foo { content: "hello world!" }`, @@ -61,7 +61,7 @@ world!" }`, } { - const t = tokenizer({ + const t = postcssTokenizer.tokenizer({ css: '/* a comment */', }); From 31eacbeafe085eeaf5a55dc5f3fc23edc9919c15 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 16:47:33 +0200 Subject: [PATCH 14/59] fixes and docs --- packages/css-tokenizer/src/index.ts | 1 + .../css-tokenizer/src/interfaces/token.ts | 38 +++++++++++++------ packages/css-tokenizer/src/tokenizer.ts | 12 +++--- .../test/consume/numeric-token.mjs | 10 ++--- 4 files changed, 39 insertions(+), 22 deletions(-) diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index d6d89ecb22..7b1bb6d691 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -3,3 +3,4 @@ export { consumeCommentToken } from './consume/comment-token'; export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; export * as postcssTokenizer from './tokenize'; +export { TokenType } from './interfaces/token'; diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 9c8a7bc141..34e5e0ca9d 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -1,20 +1,36 @@ export enum TokenType { - Colon = 'colon-token', - Comma = 'comma-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#comment-diagram */ Comment = 'comment', - Dimension = 'dimension', Error = 'error', - Number = 'number', - Percentage = 'percentage', + + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-colon-token */ + Colon = 'colon-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-comma-token */ + Comma = 'comma-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-dimension-token */ + Dimension = 'dimension-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-eof-token */ + EOF = 'EOF-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ + Number = 'number-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ + Percentage = 'percentage-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-semicolon-token */ Semicolon = 'semicolon-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-whitespace-token */ Whitespace = 'whitespace-token', - EOF = 'EOF-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-open-paren */ OpenParen = '(-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-close-paren */ CloseParen = ')-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-open-square */ OpenSquare = '[-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-close-square */ CloseSquare = ']-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-open-curly */ OpenCurly = '{-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#tokendef-close-curly */ CloseCurly = '}-token', } @@ -59,14 +75,14 @@ export type CSSToken = TokenColon | TokenCloseCurly; export type Token = [ - // The type of token + /** The type of token */ T, - // The token value + /** The token value */ string, - // Start position of representation + /** Start position of representation */ number, - // End position of representation + /** End position of representation */ number, - // Extra data + /** Extra data */ U?, ] diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 17fd37eb2a..8328313617 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -21,12 +21,6 @@ export function tokenizer(input: { css: Stringer }) { // Simple, one character tokens: switch (peeked) { - case LEFT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; - case RIGHT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; case COMMA: reader.readCodePoint(); return [TokenType.Comma, reader.representationString(), ...reader.representation()]; @@ -36,6 +30,12 @@ export function tokenizer(input: { css: Stringer }) { case SEMICOLON: reader.readCodePoint(); return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; + case LEFT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; + case RIGHT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; case LEFT_SQUARE_BRACKET: reader.readCodePoint(); return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; diff --git a/packages/css-tokenizer/test/consume/numeric-token.mjs b/packages/css-tokenizer/test/consume/numeric-token.mjs index f76a172198..38b163fc29 100644 --- a/packages/css-tokenizer/test/consume/numeric-token.mjs +++ b/packages/css-tokenizer/test/consume/numeric-token.mjs @@ -8,7 +8,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['dimension', '10px', 0, 3, { value: 10, type: 'integer', unit: 'px' }], + ['dimension-token', '10px', 0, 3, { value: 10, type: 'integer', unit: 'px' }], ); assert.deepEqual( @@ -29,7 +29,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['percentage', '10%', 0, 2, { value: 10 }], + ['percentage-token', '10%', 0, 2, { value: 10 }], ); assert.deepEqual( @@ -50,7 +50,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['number', '-3.4e-2', 0, 6, { value: -0.034, type: 'number' }], + ['number-token', '-3.4e-2', 0, 6, { value: -0.034, type: 'number' }], ); assert.deepEqual( @@ -71,7 +71,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['dimension', '-3.4e', 0, 4, { value: -3.4, type: 'number', unit: 'e' }], + ['dimension-token', '-3.4e', 0, 4, { value: -3.4, type: 'number', unit: 'e' }], ); assert.deepEqual( @@ -92,7 +92,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['dimension', '20--foo', 0, 6, { value: 20, type: 'integer', unit: '--foo' }], + ['dimension-token', '20--foo', 0, 6, { value: 20, type: 'integer', unit: '--foo' }], ); assert.deepEqual( From 73e46639370a0654c85b412b194b5de753f81b6d Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 18:02:42 +0200 Subject: [PATCH 15/59] some more bits --- .../three-code-points-would-start-cdc.ts | 10 +++++ .../three-code-points-would-start-cdo.ts | 10 +++++ .../src/code-points/code-points.ts | 5 ++- .../consume/{comment-token.ts => comment.ts} | 0 ...d-code-pooint.ts => escaped-code-point.ts} | 0 .../css-tokenizer/src/consume/hash-token.ts | 43 +++++++++++++++++++ ...me-ident-sequence.ts => ident-sequence.ts} | 2 +- .../src/consume/numeric-token.ts | 2 +- packages/css-tokenizer/src/index.ts | 2 +- .../css-tokenizer/src/interfaces/token.ts | 23 +++++++++- packages/css-tokenizer/src/tokenizer.ts | 27 +++++++++++- 11 files changed, 118 insertions(+), 6 deletions(-) create mode 100644 packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts create mode 100644 packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts rename packages/css-tokenizer/src/consume/{comment-token.ts => comment.ts} (100%) rename packages/css-tokenizer/src/consume/{consume-escaped-code-pooint.ts => escaped-code-point.ts} (100%) create mode 100644 packages/css-tokenizer/src/consume/hash-token.ts rename packages/css-tokenizer/src/consume/{consume-ident-sequence.ts => ident-sequence.ts} (90%) diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts new file mode 100644 index 0000000000..243c47d14e --- /dev/null +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts @@ -0,0 +1,10 @@ +import { GREATER_THAN_SIGN, HYPHEN_MINUS } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token +export function checkIfTwoCodePointsWouldStartCDC(reader: CodePointReader): boolean { + const peeked = reader.peekThreeCodePoints(); + const [first, second] = peeked; + + return first === HYPHEN_MINUS && second === GREATER_THAN_SIGN; +} diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts new file mode 100644 index 0000000000..3f94cb7b50 --- /dev/null +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts @@ -0,0 +1,10 @@ +import { EXCLAMATION_MARK, HYPHEN_MINUS } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token +export function checkIfThreeCodePointsWouldStartCDO(reader: CodePointReader): boolean { + const peeked = reader.peekThreeCodePoints(); + const [first, second, third] = peeked; + + return first === EXCLAMATION_MARK && second === HYPHEN_MINUS && third === HYPHEN_MINUS; +} diff --git a/packages/css-tokenizer/src/code-points/code-points.ts b/packages/css-tokenizer/src/code-points/code-points.ts index 6106c5776a..216ddb5045 100644 --- a/packages/css-tokenizer/src/code-points/code-points.ts +++ b/packages/css-tokenizer/src/code-points/code-points.ts @@ -6,8 +6,10 @@ export const COLON = '\u{3a}'.charCodeAt(0); export const COMMA = '\u{2c}'.charCodeAt(0); export const COMMERCIAL_AT = '\u{40}'.charCodeAt(0); export const DELETE = '\u{7f}'.charCodeAt(0); +export const EXCLAMATION_MARK = '\u{21}'.charCodeAt(0); export const FORM_FEED = '\u{c}'.charCodeAt(0); export const FULL_STOP = '\u{2e}'.charCodeAt(0); +export const GREATER_THAN_SIGN = '\u{3e}'.charCodeAt(0); export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); export const LATIN_CAPITAL_LETTER_E = '\u{45}'.charCodeAt(0); @@ -21,9 +23,10 @@ export const LINE_TABULATION = '\u{b}'.charCodeAt(0); export const LOW_LINE = '\u{5f}'.charCodeAt(0); export const MAXIMUM_ALLOWED_CODEPOINT = '\u{10FFFF}'.charCodeAt(0); export const NULL = '\u{0}'.charCodeAt(0); +export const NUMBER_SIGN = '\u{23}'.charCodeAt(0); export const PERCENTAGE_SIGN = '\u{25}'.charCodeAt(0); export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); -export const REPLACEMENT_CHARACTER = '\u{FFFD}'.charCodeAt(0); +export const REPLACEMENT_CHARACTER = '\u{0FFFD}'.charCodeAt(0); export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); export const RIGHT_CURLY_BRACKET = '\u{7d}'.charCodeAt(0); export const RIGHT_PARENTHESIS = '\u{29}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/consume/comment-token.ts b/packages/css-tokenizer/src/consume/comment.ts similarity index 100% rename from packages/css-tokenizer/src/consume/comment-token.ts rename to packages/css-tokenizer/src/consume/comment.ts diff --git a/packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts b/packages/css-tokenizer/src/consume/escaped-code-point.ts similarity index 100% rename from packages/css-tokenizer/src/consume/consume-escaped-code-pooint.ts rename to packages/css-tokenizer/src/consume/escaped-code-point.ts diff --git a/packages/css-tokenizer/src/consume/hash-token.ts b/packages/css-tokenizer/src/consume/hash-token.ts new file mode 100644 index 0000000000..516d49b17a --- /dev/null +++ b/packages/css-tokenizer/src/consume/hash-token.ts @@ -0,0 +1,43 @@ +import { checkIfThreeCodePointsWouldStartAnIdentSequence } from '../checks/three-code-points-would-start-ident-sequence'; +import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; +import { isIdentCodePoint } from '../code-points/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { HashType, TokenDelim, TokenHash, TokenType } from '../interfaces/token'; +import { consumeIdentSequence } from './ident-sequence'; + +export function consumeHashToken(reader: CodePointReader): TokenDelim|TokenHash { + reader.readCodePoint(); + + const peeked = reader.peekOneCodePoint(); + if ( + peeked !== false && + isIdentCodePoint(peeked) || + checkIfTwoCodePointsAreAValidEscape(reader) + ) { + let hashType = HashType.Unrestricted; + + if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + hashType = HashType.ID; + } + + const identSequence = consumeIdentSequence(reader); + return [ + TokenType.Hash, + reader.representationString(), + ...reader.representation(), + { + value: identSequence.map((x) => String.fromCharCode(x)).join(''), + type: hashType, + }, + ]; + } + + return [ + TokenType.Delim, + reader.representationString(), + ...reader.representation(), + { + value: '#', + }, + ]; +} diff --git a/packages/css-tokenizer/src/consume/consume-ident-sequence.ts b/packages/css-tokenizer/src/consume/ident-sequence.ts similarity index 90% rename from packages/css-tokenizer/src/consume/consume-ident-sequence.ts rename to packages/css-tokenizer/src/consume/ident-sequence.ts index 9c89317185..c49ef15f32 100644 --- a/packages/css-tokenizer/src/consume/consume-ident-sequence.ts +++ b/packages/css-tokenizer/src/consume/ident-sequence.ts @@ -1,7 +1,7 @@ import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; import { isIdentCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; -import { consumeEscapedCodePoint } from './consume-escaped-code-pooint'; +import { consumeEscapedCodePoint } from './escaped-code-point'; export function consumeIdentSequence(reader: CodePointReader): Array { const result = []; diff --git a/packages/css-tokenizer/src/consume/numeric-token.ts b/packages/css-tokenizer/src/consume/numeric-token.ts index 3d7452a478..e0bfa45e1c 100644 --- a/packages/css-tokenizer/src/consume/numeric-token.ts +++ b/packages/css-tokenizer/src/consume/numeric-token.ts @@ -2,7 +2,7 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from '../checks/three import { PERCENTAGE_SIGN } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; import { TokenDimension, TokenNumber, TokenPercentage, TokenType } from '../interfaces/token'; -import { consumeIdentSequence } from './consume-ident-sequence'; +import { consumeIdentSequence } from './ident-sequence'; import { consumeNumber } from './number'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-numeric-token diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index 7b1bb6d691..c1121029c3 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,5 +1,5 @@ export { Reader } from './reader'; -export { consumeCommentToken } from './consume/comment-token'; +export { consumeCommentToken } from './consume/comment'; export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; export * as postcssTokenizer from './tokenize'; diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 34e5e0ca9d..e3aa05fc0a 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -3,14 +3,22 @@ export enum TokenType { Comment = 'comment', Error = 'error', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdc-token */ + CDC = 'CDC-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdo-token */ + CDO = 'CDO-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-colon-token */ Colon = 'colon-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-comma-token */ Comma = 'comma-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-delim-token */ + Delim = 'delim-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-dimension-token */ Dimension = 'dimension-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-eof-token */ EOF = 'EOF-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-hash-token */ + Hash = 'hash-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ Number = 'number-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ @@ -39,12 +47,21 @@ export enum NumberType { Number = 'number', } +export enum HashType { + Unrestricted = 'unrestricted', + ID = 'id', +} + +export type TokenCDC = Token; +export type TokenCDO = Token; export type TokenColon = Token; export type TokenComma = Token; export type TokenComment = Token; +export type TokenDelim = Token; export type TokenDimension = Token; export type TokenEOF = Token; export type TokenError = Token>; +export type TokenHash = Token; export type TokenNumber = Token; export type TokenPercentage = Token; export type TokenSemicolon = Token; @@ -57,12 +74,16 @@ export type TokenCloseSquare = Token; export type TokenOpenCurly = Token; export type TokenCloseCurly = Token; -export type CSSToken = TokenColon | +export type CSSToken = TokenCDC | + TokenCDO | + TokenColon | TokenComma | TokenComment | + TokenDelim | TokenDimension | TokenEOF | TokenError | + TokenHash | TokenNumber | TokenPercentage | TokenSemicolon | diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 8328313617..f7180c2029 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -1,5 +1,7 @@ -import { COLON, COMMA, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; +import { checkIfThreeCodePointsWouldStartCDO } from './checks/three-code-points-would-start-cdo'; +import { COLON, COMMA, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; import { isWhitespace } from './code-points/ranges'; +import { consumeHashToken } from './consume/hash-token'; import { consumeWhiteSpace } from './consume/whitespace'; import { CSSToken, TokenType } from './interfaces/token'; import { Reader } from './reader'; @@ -52,6 +54,29 @@ export function tokenizer(input: { css: Stringer }) { break; } + switch (peeked) { + case NUMBER_SIGN: + return consumeHashToken(reader); + + case LESS_THAN_SIGN: { + reader.readCodePoint(); + + if (checkIfThreeCodePointsWouldStartCDO(reader)) { + reader.readCodePoint(); + reader.readCodePoint(); + reader.readCodePoint(); + + return [TokenType.CDO, reader.representationString(), ...reader.representation()]; + } + + return [TokenType.Delim, reader.representationString(), ...reader.representation(), { + value: '<', + }]; + } + default: + break; + } + if (isWhitespace(peeked)) { return consumeWhiteSpace(reader); } From 35fd6f73b4250b2f6d8b29d31f435fb42c9f40fd Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 18:24:15 +0200 Subject: [PATCH 16/59] some more bits --- .../checks/two-code-points-start-comment.ts | 17 ++++ packages/css-tokenizer/src/consume/comment.ts | 2 +- packages/css-tokenizer/src/index.ts | 2 +- packages/css-tokenizer/src/tokenizer.ts | 96 ++++++++++++------- .../test/consume/comment-token.mjs | 4 +- 5 files changed, 84 insertions(+), 37 deletions(-) create mode 100644 packages/css-tokenizer/src/checks/two-code-points-start-comment.ts diff --git a/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts b/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts new file mode 100644 index 0000000000..487d6bdf46 --- /dev/null +++ b/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts @@ -0,0 +1,17 @@ +import { ASTERISK, SOLIDUS } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comments +export function checkIfTwoCodePointsStartAComment(reader: CodePointReader): boolean { + const peeked = reader.peekTwoCodePoints(); + if (peeked[0] !== SOLIDUS) { + return false; + } + + if (peeked[1] === ASTERISK) { + return false; + } + + // Otherwise, return true. + return true; +} diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index 8a3844fc72..b61508669f 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -3,7 +3,7 @@ import { CodePointReader } from '../interfaces/code-point-reader'; import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment -export function consumeCommentToken(reader: CodePointReader): TokenComment|TokenError|undefined { +export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { const open = reader.peekOneCodePoint(); if (open === false) { return [ diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index c1121029c3..f74562c108 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,5 +1,5 @@ export { Reader } from './reader'; -export { consumeCommentToken } from './consume/comment'; +export { consumeComment } from './consume/comment'; export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; export * as postcssTokenizer from './tokenize'; diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index f7180c2029..41a820ef7b 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -1,7 +1,11 @@ import { checkIfThreeCodePointsWouldStartCDO } from './checks/three-code-points-would-start-cdo'; -import { COLON, COMMA, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; +import { checkIfThreeCodePointsWouldStartANumber } from './checks/three-code-points-would-start-number'; +import { checkIfTwoCodePointsStartAComment } from './checks/two-code-points-start-comment'; +import { COLON, COMMA, FULL_STOP, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; import { isWhitespace } from './code-points/ranges'; +import { consumeComment } from './consume/comment'; import { consumeHashToken } from './consume/hash-token'; +import { consumeNumericToken } from './consume/numeric-token'; import { consumeWhiteSpace } from './consume/whitespace'; import { CSSToken, TokenType } from './interfaces/token'; import { Reader } from './reader'; @@ -10,54 +14,79 @@ interface Stringer { valueOf(): string } -export function tokenizer(input: { css: Stringer }) { +export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false }) { const css = input.css.valueOf(); const reader = new Reader(css); - function nextToken(): CSSToken|undefined { + function nextToken(): CSSToken | undefined { + reader.resetRepresentation(); + + if (checkIfTwoCodePointsStartAComment(reader)) { + if (options?.commentsAreTokens) { + return consumeComment(reader); + } else { + consumeComment(reader); + } + } + + reader.resetRepresentation(); + const peeked = reader.peekOneCodePoint(); if (peeked === false) { return [TokenType.EOF, '', -1, -1]; } // Simple, one character tokens: - switch (peeked) { - case COMMA: - reader.readCodePoint(); - return [TokenType.Comma, reader.representationString(), ...reader.representation()]; - case COLON: - reader.readCodePoint(); - return [TokenType.Colon, reader.representationString(), ...reader.representation()]; - case SEMICOLON: - reader.readCodePoint(); - return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; - case LEFT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; - case RIGHT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; - case LEFT_SQUARE_BRACKET: - reader.readCodePoint(); - return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; - case RIGHT_SQUARE_BRACKET: - reader.readCodePoint(); - return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; - case LEFT_CURLY_BRACKET: - reader.readCodePoint(); - return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; - case RIGHT_CURLY_BRACKET: - reader.readCodePoint(); - return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; - default: - break; + { + switch (peeked) { + case COMMA: + reader.readCodePoint(); + return [TokenType.Comma, reader.representationString(), ...reader.representation()]; + case COLON: + reader.readCodePoint(); + return [TokenType.Colon, reader.representationString(), ...reader.representation()]; + case SEMICOLON: + reader.readCodePoint(); + return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; + case LEFT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; + case RIGHT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; + case LEFT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; + case RIGHT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; + case LEFT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; + case RIGHT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; + default: + break; + } } switch (peeked) { case NUMBER_SIGN: return consumeHashToken(reader); + case PLUS_SIGN: + case FULL_STOP: { + if (checkIfThreeCodePointsWouldStartANumber(reader)) { + return consumeNumericToken(reader); + } + + return [TokenType.Delim, reader.representationString(), ...reader.representation(), { + value: String.fromCharCode(peeked), + }]; + } + case LESS_THAN_SIGN: { reader.readCodePoint(); @@ -73,6 +102,7 @@ export function tokenizer(input: { css: Stringer }) { value: '<', }]; } + default: break; } diff --git a/packages/css-tokenizer/test/consume/comment-token.mjs b/packages/css-tokenizer/test/consume/comment-token.mjs index 03c66f178a..40cddf9f35 100644 --- a/packages/css-tokenizer/test/consume/comment-token.mjs +++ b/packages/css-tokenizer/test/consume/comment-token.mjs @@ -1,11 +1,11 @@ import assert from 'assert'; -import { Reader, consumeCommentToken } from '@csstools/css-tokenizer'; +import { Reader, consumeComment } from '@csstools/css-tokenizer'; { const r = new Reader('/* a comment */'); r.readCodePoint(); - const token = consumeCommentToken(r); + const token = consumeComment(r); assert.deepEqual( token, From 4d6670d21fc9371e7631a449a9916eb0dbad2546 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 19:27:41 +0200 Subject: [PATCH 17/59] getting somewhere --- .../four-code-points-would-start-cdo.ts | 10 ++ .../three-code-points-would-start-cdc.ts | 6 +- .../three-code-points-would-start-cdo.ts | 10 -- .../css-tokenizer/src/consume/whitespace.ts | 2 +- packages/css-tokenizer/src/index.ts | 1 + .../src/interfaces/code-point-reader.ts | 1 + .../css-tokenizer/src/interfaces/token.ts | 6 +- packages/css-tokenizer/src/reader.ts | 24 ++++ packages/css-tokenizer/src/tokenizer.ts | 123 ++++++++++++------ packages/css-tokenizer/test/test.mjs | 1 + packages/css-tokenizer/test/token/basic.mjs | 69 ++++++++++ 11 files changed, 201 insertions(+), 52 deletions(-) create mode 100644 packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts delete mode 100644 packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts create mode 100644 packages/css-tokenizer/test/token/basic.mjs diff --git a/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts b/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts new file mode 100644 index 0000000000..c9a15c6f42 --- /dev/null +++ b/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts @@ -0,0 +1,10 @@ +import { EXCLAMATION_MARK, HYPHEN_MINUS, LESS_THAN_SIGN } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token +export function checkIfFourCodePointsWouldStartCDO(reader: CodePointReader): boolean { + const peeked = reader.peekFourCodePoints(); + const [first, second, third, fourth] = peeked; + + return first === LESS_THAN_SIGN && second === EXCLAMATION_MARK && third === HYPHEN_MINUS && fourth === HYPHEN_MINUS; +} diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts index 243c47d14e..7f1ccf54fb 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts @@ -2,9 +2,9 @@ import { GREATER_THAN_SIGN, HYPHEN_MINUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token -export function checkIfTwoCodePointsWouldStartCDC(reader: CodePointReader): boolean { +export function checkIfThreeCodePointsWouldStartCDC(reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); - const [first, second] = peeked; + const [first, second, third] = peeked; - return first === HYPHEN_MINUS && second === GREATER_THAN_SIGN; + return first === HYPHEN_MINUS && second === HYPHEN_MINUS && third === GREATER_THAN_SIGN; } diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts deleted file mode 100644 index 3f94cb7b50..0000000000 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdo.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { EXCLAMATION_MARK, HYPHEN_MINUS } from '../code-points/code-points'; -import { CodePointReader } from '../interfaces/code-point-reader'; - -// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token -export function checkIfThreeCodePointsWouldStartCDO(reader: CodePointReader): boolean { - const peeked = reader.peekThreeCodePoints(); - const [first, second, third] = peeked; - - return first === EXCLAMATION_MARK && second === HYPHEN_MINUS && third === HYPHEN_MINUS; -} diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace.ts index d9000543bb..be887340d5 100644 --- a/packages/css-tokenizer/src/consume/whitespace.ts +++ b/packages/css-tokenizer/src/consume/whitespace.ts @@ -25,7 +25,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite ]; } - if (isWhitespace(peeked)) { + if (!isWhitespace(peeked)) { break; } diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index f74562c108..991e7476fb 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -4,3 +4,4 @@ export { consumeNumericToken } from './consume/numeric-token'; export { consumeNumber } from './consume/number'; export * as postcssTokenizer from './tokenize'; export { TokenType } from './interfaces/token'; +export { tokenizer } from './tokenizer'; diff --git a/packages/css-tokenizer/src/interfaces/code-point-reader.ts b/packages/css-tokenizer/src/interfaces/code-point-reader.ts index 9a782d9760..6f1c8b2163 100644 --- a/packages/css-tokenizer/src/interfaces/code-point-reader.ts +++ b/packages/css-tokenizer/src/interfaces/code-point-reader.ts @@ -10,6 +10,7 @@ export type CodePointReader = { peekOneCodePoint(): number | false peekTwoCodePoints(): [number, number] | [number] | [] peekThreeCodePoints(): [number, number, number] | [number, number] | [number] | [] + peekFourCodePoints(): [number, number, number, number] | [number, number, number] | [number, number] | [number] | [] readCodePoint(): number | false unreadCodePoint(): boolean diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index e3aa05fc0a..2c9f014b40 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -3,6 +3,8 @@ export enum TokenType { Comment = 'comment', Error = 'error', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-at-keyword-token */ + AtKeyword = 'at-keyword-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdc-token */ CDC = 'CDC-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdo-token */ @@ -52,6 +54,7 @@ export enum HashType { ID = 'id', } +export type TokenAtKeyword = Token; export type TokenCDC = Token; export type TokenCDO = Token; export type TokenColon = Token; @@ -74,7 +77,8 @@ export type TokenCloseSquare = Token; export type TokenOpenCurly = Token; export type TokenCloseCurly = Token; -export type CSSToken = TokenCDC | +export type CSSToken = TokenAtKeyword | + TokenCDC | TokenCDO | TokenColon | TokenComma | diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 6eca7f7f07..6ff72ad582 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -65,6 +65,30 @@ export class Reader implements CodePointReader { return [first, second, third]; } + peekFourCodePoints(): [number, number, number, number] | [number, number, number] | [number, number] | [number] | [] { + const first = this.#codePointSource[this.#cursor]; + if (typeof first === 'undefined') { + return []; + } + + const second = this.#codePointSource[this.#cursor + 1]; + if (typeof second === 'undefined') { + return [first]; + } + + const third = this.#codePointSource[this.#cursor + 2]; + if (typeof third === 'undefined') { + return [first, second]; + } + + const fourth = this.#codePointSource[this.#cursor + 2]; + if (typeof fourth === 'undefined') { + return [first, second, third]; + } + + return [first, second, third, fourth]; + } + readCodePoint(): number | false { const codePoint = this.#codePointSource[this.#cursor]; if (typeof codePoint === 'undefined') { diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 41a820ef7b..6160170e82 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -1,10 +1,13 @@ -import { checkIfThreeCodePointsWouldStartCDO } from './checks/three-code-points-would-start-cdo'; +import { checkIfFourCodePointsWouldStartCDO } from './checks/four-code-points-would-start-cdo'; +import { checkIfThreeCodePointsWouldStartAnIdentSequence } from './checks/three-code-points-would-start-ident-sequence'; import { checkIfThreeCodePointsWouldStartANumber } from './checks/three-code-points-would-start-number'; import { checkIfTwoCodePointsStartAComment } from './checks/two-code-points-start-comment'; -import { COLON, COMMA, FULL_STOP, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; -import { isWhitespace } from './code-points/ranges'; +import { checkIfThreeCodePointsWouldStartCDC } from './checks/three-code-points-would-start-cdc'; +import { COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; +import { isDigitCodePoint, isWhitespace } from './code-points/ranges'; import { consumeComment } from './consume/comment'; import { consumeHashToken } from './consume/hash-token'; +import { consumeIdentSequence } from './consume/ident-sequence'; import { consumeNumericToken } from './consume/numeric-token'; import { consumeWhiteSpace } from './consume/whitespace'; import { CSSToken, TokenType } from './interfaces/token'; @@ -38,38 +41,36 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } // Simple, one character tokens: - { - switch (peeked) { - case COMMA: - reader.readCodePoint(); - return [TokenType.Comma, reader.representationString(), ...reader.representation()]; - case COLON: - reader.readCodePoint(); - return [TokenType.Colon, reader.representationString(), ...reader.representation()]; - case SEMICOLON: - reader.readCodePoint(); - return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; - case LEFT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; - case RIGHT_PARENTHESIS: - reader.readCodePoint(); - return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; - case LEFT_SQUARE_BRACKET: - reader.readCodePoint(); - return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; - case RIGHT_SQUARE_BRACKET: - reader.readCodePoint(); - return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; - case LEFT_CURLY_BRACKET: - reader.readCodePoint(); - return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; - case RIGHT_CURLY_BRACKET: - reader.readCodePoint(); - return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; - default: - break; - } + switch (peeked) { + case COMMA: + reader.readCodePoint(); + return [TokenType.Comma, reader.representationString(), ...reader.representation()]; + case COLON: + reader.readCodePoint(); + return [TokenType.Colon, reader.representationString(), ...reader.representation()]; + case SEMICOLON: + reader.readCodePoint(); + return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; + case LEFT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; + case RIGHT_PARENTHESIS: + reader.readCodePoint(); + return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; + case LEFT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; + case RIGHT_SQUARE_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; + case LEFT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; + case RIGHT_CURLY_BRACKET: + reader.readCodePoint(); + return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; + default: + break; } switch (peeked) { @@ -82,15 +83,38 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken return consumeNumericToken(reader); } + reader.readCodePoint(); return [TokenType.Delim, reader.representationString(), ...reader.representation(), { value: String.fromCharCode(peeked), }]; } - case LESS_THAN_SIGN: { + case HYPHEN_MINUS: { + if (checkIfThreeCodePointsWouldStartANumber(reader)) { + return consumeNumericToken(reader); + } + + if (checkIfThreeCodePointsWouldStartCDC(reader)) { + reader.readCodePoint(); + reader.readCodePoint(); + reader.readCodePoint(); + + return [TokenType.CDC, reader.representationString(), ...reader.representation()]; + } + + if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + // return consumeIdentLike... + } + reader.readCodePoint(); + return [TokenType.Delim, reader.representationString(), ...reader.representation(), { + value: '-', + }]; + } - if (checkIfThreeCodePointsWouldStartCDO(reader)) { + case LESS_THAN_SIGN: { + if (checkIfFourCodePointsWouldStartCDO(reader)) { + reader.readCodePoint(); reader.readCodePoint(); reader.readCodePoint(); reader.readCodePoint(); @@ -98,11 +122,27 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken return [TokenType.CDO, reader.representationString(), ...reader.representation()]; } + reader.readCodePoint(); return [TokenType.Delim, reader.representationString(), ...reader.representation(), { value: '<', }]; } + case COMMERCIAL_AT: { + reader.readCodePoint(); + if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + const identSequence = consumeIdentSequence(reader); + + return [TokenType.AtKeyword, reader.representationString(), ...reader.representation(), { + value: identSequence.map((x) => String.fromCharCode(x)).join(''), + }]; + } + + return [TokenType.Delim, reader.representationString(), ...reader.representation(), { + value: '@', + }]; + } + default: break; } @@ -110,6 +150,15 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken if (isWhitespace(peeked)) { return consumeWhiteSpace(reader); } + + if (isDigitCodePoint(peeked)) { + return consumeNumericToken(reader); + } + + reader.readCodePoint(); + return [TokenType.Delim, reader.representationString(), ...reader.representation(), { + value: String.fromCharCode(peeked), + }]; } return { diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index fa05bbb130..1e13201cdf 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -4,6 +4,7 @@ import './test-reader.mjs'; import './consume/comment-token.mjs'; import './consume/numeric-token.mjs'; import './consume/number.mjs'; +import './token/basic.mjs'; function collectTokens(t) { const bag = []; diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs new file mode 100644 index 0000000000..5b36c41b4d --- /dev/null +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -0,0 +1,69 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; + +function collectTokens(t) { + const bag = []; + // eslint-disable-next-line no-constant-condition + while (true) { + bag.push(t.nextToken()); + + if (!bag[bag.length - 1]) { + break; + } + + if (bag[bag.length - 1][0] === 'EOF-token') { + break; + } + } + + return bag; +} + +{ + const t = tokenizer({ + css: '@media screen and (min-width: 200px) {}', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['at-keyword-token', '@media', 0, 5, { value: 'media' }], + ['whitespace-token', ' ', 6, 6], + ['delim-token', 's', 7, 7, { value: 's' }], + ['delim-token', 'c', 8, 8, { value: 'c' }], + ['delim-token', 'r', 9, 9, { value: 'r' }], + ['delim-token', 'e', 10, 10, { value: 'e' }], + ['delim-token', 'e', 11, 11, { value: 'e' }], + ['delim-token', 'n', 12, 12, { value: 'n' }], + ['whitespace-token', ' ', 13, 13], + ['delim-token', 'a', 14, 14, { value: 'a' }], + ['delim-token', 'n', 15, 15, { value: 'n' }], + ['delim-token', 'd', 16, 16, { value: 'd' }], + ['whitespace-token', ' ', 17, 17], + ['(-token', '(', 18, 18], + ['delim-token', 'm', 19, 19, { value: 'm' }], + ['delim-token', 'i', 20, 20, { value: 'i' }], + ['delim-token', 'n', 21, 21, { value: 'n' }], + ['delim-token', '-', 22, 22, { value: '-' }], + ['delim-token', 'w', 23, 23, { value: 'w' }], + ['delim-token', 'i', 24, 24, { value: 'i' }], + ['delim-token', 'd', 25, 25, { value: 'd' }], + ['delim-token', 't', 26, 26, { value: 't' }], + ['delim-token', 'h', 27, 27, { value: 'h' }], + ['colon-token', ':', 28, 28], + ['whitespace-token', ' ', 29, 29], + [ + 'dimension-token', + '200px', + 30, + 34, + { value: 200, type: 'integer', unit: 'px' }, + ], + [')-token', ')', 35, 35], + ['whitespace-token', ' ', 36, 36], + ['{-token', '{', 37, 37], + ['}-token', '}', 38, 38], + ['EOF-token', '', -1, -1], + ], + ); +} From 42a9dd56f59afe4ae0536355108b3e872e96ea69 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 18 Sep 2022 22:32:46 +0200 Subject: [PATCH 18/59] string tokens --- .../src/code-points/code-points.ts | 2 + .../css-tokenizer/src/code-points/ranges.ts | 16 +++++ packages/css-tokenizer/src/consume/comment.ts | 3 +- .../css-tokenizer/src/consume/hash-token.ts | 1 + .../src/consume/ident-sequence.ts | 1 + packages/css-tokenizer/src/consume/string.ts | 50 +++++++++++++++ .../css-tokenizer/src/consume/whitespace.ts | 3 + .../css-tokenizer/src/interfaces/token.ts | 38 +++++++----- packages/css-tokenizer/src/reader.ts | 1 + packages/css-tokenizer/src/tokenizer.ts | 30 +++++---- .../test/consume/comment-token.mjs | 2 +- packages/css-tokenizer/test/token/basic.mjs | 61 ++++++++++++------- 12 files changed, 155 insertions(+), 53 deletions(-) create mode 100644 packages/css-tokenizer/src/consume/string.ts diff --git a/packages/css-tokenizer/src/code-points/code-points.ts b/packages/css-tokenizer/src/code-points/code-points.ts index 216ddb5045..bfe106bc9a 100644 --- a/packages/css-tokenizer/src/code-points/code-points.ts +++ b/packages/css-tokenizer/src/code-points/code-points.ts @@ -1,3 +1,4 @@ +export const APOSTROPHE = '\u{27}'.charCodeAt(0); export const ASTERISK = '\u{2a}'.charCodeAt(0); export const BACKSPACE = '\u{8}'.charCodeAt(0); export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); @@ -26,6 +27,7 @@ export const NULL = '\u{0}'.charCodeAt(0); export const NUMBER_SIGN = '\u{23}'.charCodeAt(0); export const PERCENTAGE_SIGN = '\u{25}'.charCodeAt(0); export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); +export const QUOTATION_MARK = '\u{22}'.charCodeAt(0); export const REPLACEMENT_CHARACTER = '\u{0FFFD}'.charCodeAt(0); export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); export const RIGHT_CURLY_BRACKET = '\u{7d}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/code-points/ranges.ts b/packages/css-tokenizer/src/code-points/ranges.ts index f1f6597025..9aa4628bd5 100644 --- a/packages/css-tokenizer/src/code-points/ranges.ts +++ b/packages/css-tokenizer/src/code-points/ranges.ts @@ -120,6 +120,22 @@ export function isNonPrintableCodePoint(search: number): boolean { return false; } +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#whitespace +export function isNewLine(search: number): boolean { + switch (search) { + case LINE_FEED: + case CARRIAGE_RETURN: + case FORM_FEED: + // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#input-preprocessing + // We can not follow the preprocessing rules because our output is text and must be minimally different from the input. + // Applying the preprocessing rules would make it impossible to match the input. + // A side effect of this is that our definition of whitespace is broader. + return true; + default: + return false; + } +} + // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#whitespace export function isWhitespace(search: number): boolean { switch (search) { diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index b61508669f..8827c20569 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -3,7 +3,7 @@ import { CodePointReader } from '../interfaces/code-point-reader'; import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment -export function consumeComment(reader: CodePointReader): TokenComment|TokenError|undefined { +export function consumeComment(reader: CodePointReader): TokenComment|TokenError { const open = reader.peekOneCodePoint(); if (open === false) { return [ @@ -59,6 +59,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError TokenType.Comment, reader.representationString(), ...reader.representation(), + undefined, ]; } } diff --git a/packages/css-tokenizer/src/consume/hash-token.ts b/packages/css-tokenizer/src/consume/hash-token.ts index 516d49b17a..fea0ab37cf 100644 --- a/packages/css-tokenizer/src/consume/hash-token.ts +++ b/packages/css-tokenizer/src/consume/hash-token.ts @@ -5,6 +5,7 @@ import { CodePointReader } from '../interfaces/code-point-reader'; import { HashType, TokenDelim, TokenHash, TokenType } from '../interfaces/token'; import { consumeIdentSequence } from './ident-sequence'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token export function consumeHashToken(reader: CodePointReader): TokenDelim|TokenHash { reader.readCodePoint(); diff --git a/packages/css-tokenizer/src/consume/ident-sequence.ts b/packages/css-tokenizer/src/consume/ident-sequence.ts index c49ef15f32..cf42f2e23b 100644 --- a/packages/css-tokenizer/src/consume/ident-sequence.ts +++ b/packages/css-tokenizer/src/consume/ident-sequence.ts @@ -3,6 +3,7 @@ import { isIdentCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; import { consumeEscapedCodePoint } from './escaped-code-point'; +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-name export function consumeIdentSequence(reader: CodePointReader): Array { const result = []; diff --git a/packages/css-tokenizer/src/consume/string.ts b/packages/css-tokenizer/src/consume/string.ts new file mode 100644 index 0000000000..184e69d986 --- /dev/null +++ b/packages/css-tokenizer/src/consume/string.ts @@ -0,0 +1,50 @@ +import { REVERSE_SOLIDUS } from '../code-points/code-points'; +import { isNewLine } from '../code-points/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenBadString, TokenString, TokenType } from '../interfaces/token'; +import { consumeEscapedCodePoint } from './escaped-code-point'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-string-token +export function consumeStringToken(reader: CodePointReader): TokenBadString|TokenString { + let result = ''; + + const first = reader.readCodePoint(); + if (first === false) { + throw new Error('Unexpected EOF'); + + } + + // eslint-disable-next-line no-constant-condition + while (true) { + const next = reader.readCodePoint(); + if (next === false) { + return [TokenType.String, reader.representationString(), ...reader.representation(), { value: result }]; + } + + if (isNewLine(next)) { + reader.unreadCodePoint(); + return [TokenType.BadString, reader.representationString(), ...reader.representation(), undefined]; + } + + if (next === first) { + return [TokenType.String, reader.representationString(), ...reader.representation(), { value: result }]; + } + + if (next === REVERSE_SOLIDUS) { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + continue; + } + + if (isNewLine(peeked)) { + reader.readCodePoint(); + continue; + } + + result += String.fromCharCode(consumeEscapedCodePoint(reader)); + continue; + } + + result += String.fromCharCode(next); + } +} diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace.ts index be887340d5..c421b647b3 100644 --- a/packages/css-tokenizer/src/consume/whitespace.ts +++ b/packages/css-tokenizer/src/consume/whitespace.ts @@ -12,6 +12,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite TokenType.Whitespace, reader.representationString(), ...reader.representation(), + undefined, ]; } @@ -22,6 +23,7 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite TokenType.Whitespace, reader.representationString(), ...reader.representation(), + undefined, ]; } @@ -36,5 +38,6 @@ export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhite TokenType.Whitespace, reader.representationString(), ...reader.representation(), + undefined, ]; } diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 2c9f014b40..e63c2d1fb8 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -5,6 +5,8 @@ export enum TokenType { /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-at-keyword-token */ AtKeyword = 'at-keyword-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-bad-string-token */ + BadString = 'bad-string-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdc-token */ CDC = 'CDC-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdo-token */ @@ -27,6 +29,8 @@ export enum TokenType { Percentage = 'percentage-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-semicolon-token */ Semicolon = 'semicolon-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-string-token */ + String = 'string-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-whitespace-token */ Whitespace = 'whitespace-token', @@ -55,29 +59,32 @@ export enum HashType { } export type TokenAtKeyword = Token; -export type TokenCDC = Token; -export type TokenCDO = Token; -export type TokenColon = Token; -export type TokenComma = Token; -export type TokenComment = Token; +export type TokenBadString = Token; +export type TokenCDC = Token; +export type TokenCDO = Token; +export type TokenColon = Token; +export type TokenComma = Token; +export type TokenComment = Token; export type TokenDelim = Token; export type TokenDimension = Token; -export type TokenEOF = Token; +export type TokenEOF = Token; export type TokenError = Token>; export type TokenHash = Token; export type TokenNumber = Token; export type TokenPercentage = Token; -export type TokenSemicolon = Token; -export type TokenWhitespace = Token; +export type TokenSemicolon = Token; +export type TokenString = Token; +export type TokenWhitespace = Token; -export type TokenOpenParen = Token; -export type TokenCloseParen = Token; -export type TokenOpenSquare = Token; -export type TokenCloseSquare = Token; -export type TokenOpenCurly = Token; -export type TokenCloseCurly = Token; +export type TokenOpenParen = Token; +export type TokenCloseParen = Token; +export type TokenOpenSquare = Token; +export type TokenCloseSquare = Token; +export type TokenOpenCurly = Token; +export type TokenCloseCurly = Token; export type CSSToken = TokenAtKeyword | + TokenBadString | TokenCDC | TokenCDO | TokenColon | @@ -91,6 +98,7 @@ export type CSSToken = TokenAtKeyword | TokenNumber | TokenPercentage | TokenSemicolon | + TokenString | TokenWhitespace | TokenOpenParen | TokenCloseParen | @@ -109,5 +117,5 @@ export type Token = [ /** End position of representation */ number, /** Extra data */ - U?, + U, ] diff --git a/packages/css-tokenizer/src/reader.ts b/packages/css-tokenizer/src/reader.ts index 6ff72ad582..287b5627d5 100644 --- a/packages/css-tokenizer/src/reader.ts +++ b/packages/css-tokenizer/src/reader.ts @@ -97,6 +97,7 @@ export class Reader implements CodePointReader { this.#representationEnd = this.#cursor; this.#cursor += 1; + return codePoint; } diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 6160170e82..d01931cb17 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -3,7 +3,7 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from './checks/three- import { checkIfThreeCodePointsWouldStartANumber } from './checks/three-code-points-would-start-number'; import { checkIfTwoCodePointsStartAComment } from './checks/two-code-points-start-comment'; import { checkIfThreeCodePointsWouldStartCDC } from './checks/three-code-points-would-start-cdc'; -import { COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; +import { APOSTROPHE, COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, QUOTATION_MARK, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; import { isDigitCodePoint, isWhitespace } from './code-points/ranges'; import { consumeComment } from './consume/comment'; import { consumeHashToken } from './consume/hash-token'; @@ -12,6 +12,7 @@ import { consumeNumericToken } from './consume/numeric-token'; import { consumeWhiteSpace } from './consume/whitespace'; import { CSSToken, TokenType } from './interfaces/token'; import { Reader } from './reader'; +import { consumeStringToken } from './consume/string'; interface Stringer { valueOf(): string @@ -37,43 +38,46 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken const peeked = reader.peekOneCodePoint(); if (peeked === false) { - return [TokenType.EOF, '', -1, -1]; + return [TokenType.EOF, '', -1, -1, undefined]; } // Simple, one character tokens: switch (peeked) { case COMMA: reader.readCodePoint(); - return [TokenType.Comma, reader.representationString(), ...reader.representation()]; + return [TokenType.Comma, reader.representationString(), ...reader.representation(), undefined]; case COLON: reader.readCodePoint(); - return [TokenType.Colon, reader.representationString(), ...reader.representation()]; + return [TokenType.Colon, reader.representationString(), ...reader.representation(), undefined]; case SEMICOLON: reader.readCodePoint(); - return [TokenType.Semicolon, reader.representationString(), ...reader.representation()]; + return [TokenType.Semicolon, reader.representationString(), ...reader.representation(), undefined]; case LEFT_PARENTHESIS: reader.readCodePoint(); - return [TokenType.OpenParen, reader.representationString(), ...reader.representation()]; + return [TokenType.OpenParen, reader.representationString(), ...reader.representation(), undefined]; case RIGHT_PARENTHESIS: reader.readCodePoint(); - return [TokenType.CloseParen, reader.representationString(), ...reader.representation()]; + return [TokenType.CloseParen, reader.representationString(), ...reader.representation(), undefined]; case LEFT_SQUARE_BRACKET: reader.readCodePoint(); - return [TokenType.OpenSquare, reader.representationString(), ...reader.representation()]; + return [TokenType.OpenSquare, reader.representationString(), ...reader.representation(), undefined]; case RIGHT_SQUARE_BRACKET: reader.readCodePoint(); - return [TokenType.CloseSquare, reader.representationString(), ...reader.representation()]; + return [TokenType.CloseSquare, reader.representationString(), ...reader.representation(), undefined]; case LEFT_CURLY_BRACKET: reader.readCodePoint(); - return [TokenType.OpenCurly, reader.representationString(), ...reader.representation()]; + return [TokenType.OpenCurly, reader.representationString(), ...reader.representation(), undefined]; case RIGHT_CURLY_BRACKET: reader.readCodePoint(); - return [TokenType.CloseCurly, reader.representationString(), ...reader.representation()]; + return [TokenType.CloseCurly, reader.representationString(), ...reader.representation(), undefined]; default: break; } switch (peeked) { + case APOSTROPHE: + case QUOTATION_MARK: + return consumeStringToken(reader); case NUMBER_SIGN: return consumeHashToken(reader); @@ -99,7 +103,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken reader.readCodePoint(); reader.readCodePoint(); - return [TokenType.CDC, reader.representationString(), ...reader.representation()]; + return [TokenType.CDC, reader.representationString(), ...reader.representation(), undefined]; } if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { @@ -119,7 +123,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken reader.readCodePoint(); reader.readCodePoint(); - return [TokenType.CDO, reader.representationString(), ...reader.representation()]; + return [TokenType.CDO, reader.representationString(), ...reader.representation(), undefined]; } reader.readCodePoint(); diff --git a/packages/css-tokenizer/test/consume/comment-token.mjs b/packages/css-tokenizer/test/consume/comment-token.mjs index 40cddf9f35..36286573de 100644 --- a/packages/css-tokenizer/test/consume/comment-token.mjs +++ b/packages/css-tokenizer/test/consume/comment-token.mjs @@ -9,7 +9,7 @@ import { Reader, consumeComment } from '@csstools/css-tokenizer'; assert.deepEqual( token, - ['comment', '/* a comment */', 0, 14], + ['comment', '/* a comment */', 0, 14, undefined], ); assert.deepEqual( diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index 5b36c41b4d..a453981a46 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -21,49 +21,64 @@ function collectTokens(t) { { const t = tokenizer({ - css: '@media screen and (min-width: 200px) {}', + css: '@media screen and ((min-width: 200px) and (foo: "\\A9\ + bar") {}', }); assert.deepEqual( collectTokens(t), [ ['at-keyword-token', '@media', 0, 5, { value: 'media' }], - ['whitespace-token', ' ', 6, 6], + ['whitespace-token', ' ', 6, 6, undefined], ['delim-token', 's', 7, 7, { value: 's' }], ['delim-token', 'c', 8, 8, { value: 'c' }], ['delim-token', 'r', 9, 9, { value: 'r' }], ['delim-token', 'e', 10, 10, { value: 'e' }], ['delim-token', 'e', 11, 11, { value: 'e' }], ['delim-token', 'n', 12, 12, { value: 'n' }], - ['whitespace-token', ' ', 13, 13], + ['whitespace-token', ' ', 13, 13, undefined], ['delim-token', 'a', 14, 14, { value: 'a' }], ['delim-token', 'n', 15, 15, { value: 'n' }], ['delim-token', 'd', 16, 16, { value: 'd' }], - ['whitespace-token', ' ', 17, 17], - ['(-token', '(', 18, 18], - ['delim-token', 'm', 19, 19, { value: 'm' }], - ['delim-token', 'i', 20, 20, { value: 'i' }], - ['delim-token', 'n', 21, 21, { value: 'n' }], - ['delim-token', '-', 22, 22, { value: '-' }], - ['delim-token', 'w', 23, 23, { value: 'w' }], - ['delim-token', 'i', 24, 24, { value: 'i' }], - ['delim-token', 'd', 25, 25, { value: 'd' }], - ['delim-token', 't', 26, 26, { value: 't' }], - ['delim-token', 'h', 27, 27, { value: 'h' }], - ['colon-token', ':', 28, 28], - ['whitespace-token', ' ', 29, 29], + ['whitespace-token', ' ', 17, 17, undefined], + ['(-token', '(', 18, 18, undefined], + ['(-token', '(', 19, 19, undefined], + ['delim-token', 'm', 20, 20, { value: 'm' }], + ['delim-token', 'i', 21, 21, { value: 'i' }], + ['delim-token', 'n', 22, 22, { value: 'n' }], + ['delim-token', '-', 23, 23, { value: '-' }], + ['delim-token', 'w', 24, 24, { value: 'w' }], + ['delim-token', 'i', 25, 25, { value: 'i' }], + ['delim-token', 'd', 26, 26, { value: 'd' }], + ['delim-token', 't', 27, 27, { value: 't' }], + ['delim-token', 'h', 28, 28, { value: 'h' }], + ['colon-token', ':', 29, 29, undefined], + ['whitespace-token', ' ', 30, 30, undefined], [ 'dimension-token', '200px', - 30, - 34, + 31, + 35, { value: 200, type: 'integer', unit: 'px' }, ], - [')-token', ')', 35, 35], - ['whitespace-token', ' ', 36, 36], - ['{-token', '{', 37, 37], - ['}-token', '}', 38, 38], - ['EOF-token', '', -1, -1], + [')-token', ')', 36, 36, undefined], + ['whitespace-token', ' ', 37, 37, undefined], + ['delim-token', 'a', 38, 38, { value: 'a' }], + ['delim-token', 'n', 39, 39, { value: 'n' }], + ['delim-token', 'd', 40, 40, { value: 'd' }], + ['whitespace-token', ' ', 41, 41, undefined], + ['(-token', '(', 42, 42, undefined], + ['delim-token', 'f', 43, 43, { value: 'f' }], + ['delim-token', 'o', 44, 44, { value: 'o' }], + ['delim-token', 'o', 45, 45, { value: 'o' }], + ['colon-token', ':', 46, 46, undefined], + ['whitespace-token', ' ', 47, 47, undefined], + ['string-token', '"\\A9 bar"', 48, 56, { value: '© bar' }], + [')-token', ')', 57, 57, undefined], + ['whitespace-token', ' ', 58, 58, undefined], + ['{-token', '{', 59, 59, undefined], + ['}-token', '}', 60, 60, undefined], + ['EOF-token', '', -1, -1, undefined], ], ); } From 2c9a55e6e3ca7881a944e6ee1a895bc8188a7e37 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Mon, 19 Sep 2022 19:14:01 +0200 Subject: [PATCH 19/59] almost there --- .../src/checks/matches-url-ident.ts | 26 +++++++ .../src/code-points/code-points.ts | 39 ++++++++++ packages/css-tokenizer/src/consume/bad-url.ts | 29 +++++++ .../src/consume/ident-like-token.ts | 76 +++++++++++++++++++ .../src/consume/ident-sequence.ts | 1 + .../consume/{string.ts => string-token.ts} | 1 - .../css-tokenizer/src/consume/url-token.ts | 7 ++ .../{whitespace.ts => whitespace-token.ts} | 0 .../css-tokenizer/src/interfaces/token.ts | 16 ++++ packages/css-tokenizer/src/tokenizer.ts | 13 +++- packages/css-tokenizer/test/token/basic.mjs | 44 +++++------ 11 files changed, 220 insertions(+), 32 deletions(-) create mode 100644 packages/css-tokenizer/src/checks/matches-url-ident.ts create mode 100644 packages/css-tokenizer/src/consume/bad-url.ts create mode 100644 packages/css-tokenizer/src/consume/ident-like-token.ts rename packages/css-tokenizer/src/consume/{string.ts => string-token.ts} (99%) create mode 100644 packages/css-tokenizer/src/consume/url-token.ts rename packages/css-tokenizer/src/consume/{whitespace.ts => whitespace-token.ts} (100%) diff --git a/packages/css-tokenizer/src/checks/matches-url-ident.ts b/packages/css-tokenizer/src/checks/matches-url-ident.ts new file mode 100644 index 0000000000..ceb326a8f2 --- /dev/null +++ b/packages/css-tokenizer/src/checks/matches-url-ident.ts @@ -0,0 +1,26 @@ +const u = 'u'.charCodeAt(0); +const U = 'U'.charCodeAt(0); +const r = 'r'.charCodeAt(0); +const R = 'R'.charCodeAt(0); +const l = 'l'.charCodeAt(0); +const L = 'L'.charCodeAt(0); + +export function checkIfCodePointsMatchURLIdent(codePoints: Array): boolean { + if (codePoints.length !== 3) { + return false; + } + + if (codePoints[0] !== u && codePoints[0] !== U) { + return false; + } + + if (codePoints[0] !== r && codePoints[0] !== R) { + return false; + } + + if (codePoints[0] !== l && codePoints[0] !== L) { + return false; + } + + return true; +} diff --git a/packages/css-tokenizer/src/code-points/code-points.ts b/packages/css-tokenizer/src/code-points/code-points.ts index bfe106bc9a..fca7ea3613 100644 --- a/packages/css-tokenizer/src/code-points/code-points.ts +++ b/packages/css-tokenizer/src/code-points/code-points.ts @@ -1,39 +1,78 @@ +/** ' */ export const APOSTROPHE = '\u{27}'.charCodeAt(0); +/** * */ export const ASTERISK = '\u{2a}'.charCodeAt(0); +/** \b */ export const BACKSPACE = '\u{8}'.charCodeAt(0); +/** \r */ export const CARRIAGE_RETURN = '\u{d}'.charCodeAt(0); +/** \t */ export const CHARACTER_TABULATION = '\u{9}'.charCodeAt(0); +/** : */ export const COLON = '\u{3a}'.charCodeAt(0); +/** , */ export const COMMA = '\u{2c}'.charCodeAt(0); +/** @ */ export const COMMERCIAL_AT = '\u{40}'.charCodeAt(0); +/** \x7F */ export const DELETE = '\u{7f}'.charCodeAt(0); +/** ! */ export const EXCLAMATION_MARK = '\u{21}'.charCodeAt(0); +/** \f */ export const FORM_FEED = '\u{c}'.charCodeAt(0); +/** . */ export const FULL_STOP = '\u{2e}'.charCodeAt(0); +/** > */ export const GREATER_THAN_SIGN = '\u{3e}'.charCodeAt(0); +/** - */ export const HYPHEN_MINUS = '\u{2d}'.charCodeAt(0); +/** \x1F */ export const INFORMATION_SEPARATOR_ONE = '\u{1f}'.charCodeAt(0); +/** E */ export const LATIN_CAPITAL_LETTER_E = '\u{45}'.charCodeAt(0); +/** e */ export const LATIN_SMALL_LETTER_E = '\u{65}'.charCodeAt(0); +/** { */ export const LEFT_CURLY_BRACKET = '\u{7b}'.charCodeAt(0); +/** ( */ export const LEFT_PARENTHESIS = '\u{28}'.charCodeAt(0); +/** [ */ export const LEFT_SQUARE_BRACKET = '\u{5b}'.charCodeAt(0); +/** < */ export const LESS_THAN_SIGN = '\u{3c}'.charCodeAt(0); +/** \n */ export const LINE_FEED = '\u{a}'.charCodeAt(0); +/** \v */ export const LINE_TABULATION = '\u{b}'.charCodeAt(0); +/** _ */ export const LOW_LINE = '\u{5f}'.charCodeAt(0); +/** \x10FFFF */ export const MAXIMUM_ALLOWED_CODEPOINT = '\u{10FFFF}'.charCodeAt(0); +/** \x00 */ export const NULL = '\u{0}'.charCodeAt(0); +/** # */ export const NUMBER_SIGN = '\u{23}'.charCodeAt(0); +/** % */ export const PERCENTAGE_SIGN = '\u{25}'.charCodeAt(0); +/** + */ export const PLUS_SIGN = '\u{2b}'.charCodeAt(0); +/** " */ export const QUOTATION_MARK = '\u{22}'.charCodeAt(0); +/** � */ export const REPLACEMENT_CHARACTER = '\u{0FFFD}'.charCodeAt(0); +/** \ */ export const REVERSE_SOLIDUS = '\u{5c}'.charCodeAt(0); +/** } */ export const RIGHT_CURLY_BRACKET = '\u{7d}'.charCodeAt(0); +/** ) */ export const RIGHT_PARENTHESIS = '\u{29}'.charCodeAt(0); +/** ] */ export const RIGHT_SQUARE_BRACKET = '\u{5d}'.charCodeAt(0); +/** ; */ export const SEMICOLON = '\u{3b}'.charCodeAt(0); +/** \u0E */ export const SHIFT_OUT = '\u{e}'.charCodeAt(0); +/** / */ export const SOLIDUS = '\u{2f}'.charCodeAt(0); +/** \u20 */ export const SPACE = '\u{20}'.charCodeAt(0); diff --git a/packages/css-tokenizer/src/consume/bad-url.ts b/packages/css-tokenizer/src/consume/bad-url.ts new file mode 100644 index 0000000000..54ebbb1f08 --- /dev/null +++ b/packages/css-tokenizer/src/consume/bad-url.ts @@ -0,0 +1,29 @@ +import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; +import { RIGHT_PARENTHESIS } from '../code-points/code-points'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { consumeEscapedCodePoint } from './escaped-code-point'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-remnants-of-bad-url +export function consumeBadURL(reader: CodePointReader) { + // eslint-disable-next-line no-constant-condition + while (true) { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return; + } + + if (peeked === RIGHT_PARENTHESIS) { + reader.readCodePoint(); + return; + } + + if (checkIfTwoCodePointsAreAValidEscape(reader)) { + reader.readCodePoint(); + consumeEscapedCodePoint(reader); + continue; + } + + reader.readCodePoint(); + continue; + } +} diff --git a/packages/css-tokenizer/src/consume/ident-like-token.ts b/packages/css-tokenizer/src/consume/ident-like-token.ts new file mode 100644 index 0000000000..069ba3fbc0 --- /dev/null +++ b/packages/css-tokenizer/src/consume/ident-like-token.ts @@ -0,0 +1,76 @@ +import { checkIfCodePointsMatchURLIdent } from '../checks/matches-url-ident'; +import { APOSTROPHE, LEFT_PARENTHESIS, QUOTATION_MARK } from '../code-points/code-points'; +import { isWhitespace } from '../code-points/ranges'; +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenBadURL, TokenFunction, TokenIdent, TokenType, TokenURL } from '../interfaces/token'; +import { consumeIdentSequence } from './ident-sequence'; +import { consumeUrlToken } from './url-token'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-ident-like-token +export function consumeIdentLikeToken(reader: CodePointReader): TokenIdent|TokenFunction|TokenURL|TokenBadURL { + const codePoints = consumeIdentSequence(reader); + if (checkIfCodePointsMatchURLIdent(codePoints)) { + const peeked = reader.peekOneCodePoint(); + if (peeked === LEFT_PARENTHESIS) { + reader.readCodePoint(); + + let read = 0; + // eslint-disable-next-line no-constant-condition + while (true) { + const peeked2 = reader.peekTwoCodePoints(); + if (isWhitespace(peeked2[0]) && isWhitespace(peeked2[1])) { + read += 2; + reader.readCodePoint(); + reader.readCodePoint(); + continue; + } + + const firstNonWhitespace = isWhitespace(peeked2[0]) ? peeked2[0] : peeked2[1]; + if (firstNonWhitespace === QUOTATION_MARK || firstNonWhitespace === APOSTROPHE) { + for (let i = 0; i < read; i++) { + reader.unreadCodePoint(); + } + + return [ + TokenType.Function, + reader.representationString(), + ...reader.representation(), + { + value: codePoints.map((x) => String.fromCharCode(x)).join(''), + }, + ]; + } + + break; + } + + for (let i = 0; i < read; i++) { + reader.unreadCodePoint(); + } + + return consumeUrlToken(reader); + } + } + + const peeked = reader.peekOneCodePoint(); + if (peeked === LEFT_PARENTHESIS) { + reader.readCodePoint(); + return [ + TokenType.Function, + reader.representationString(), + ...reader.representation(), + { + value: codePoints.map((x) => String.fromCharCode(x)).join(''), + }, + ]; + } + + return [ + TokenType.Ident, + reader.representationString(), + ...reader.representation(), + { + value: codePoints.map((x) => String.fromCharCode(x)).join(''), + }, + ]; +} diff --git a/packages/css-tokenizer/src/consume/ident-sequence.ts b/packages/css-tokenizer/src/consume/ident-sequence.ts index cf42f2e23b..b84c1ba50c 100644 --- a/packages/css-tokenizer/src/consume/ident-sequence.ts +++ b/packages/css-tokenizer/src/consume/ident-sequence.ts @@ -21,6 +21,7 @@ export function consumeIdentSequence(reader: CodePointReader): Array { } if (checkIfTwoCodePointsAreAValidEscape(reader)) { + reader.readCodePoint(); result.push(consumeEscapedCodePoint(reader)); continue; } diff --git a/packages/css-tokenizer/src/consume/string.ts b/packages/css-tokenizer/src/consume/string-token.ts similarity index 99% rename from packages/css-tokenizer/src/consume/string.ts rename to packages/css-tokenizer/src/consume/string-token.ts index 184e69d986..6487d4bee2 100644 --- a/packages/css-tokenizer/src/consume/string.ts +++ b/packages/css-tokenizer/src/consume/string-token.ts @@ -11,7 +11,6 @@ export function consumeStringToken(reader: CodePointReader): TokenBadString|Toke const first = reader.readCodePoint(); if (first === false) { throw new Error('Unexpected EOF'); - } // eslint-disable-next-line no-constant-condition diff --git a/packages/css-tokenizer/src/consume/url-token.ts b/packages/css-tokenizer/src/consume/url-token.ts new file mode 100644 index 0000000000..01dde552a1 --- /dev/null +++ b/packages/css-tokenizer/src/consume/url-token.ts @@ -0,0 +1,7 @@ +import { CodePointReader } from '../interfaces/code-point-reader'; +import { TokenBadURL, TokenURL } from '../interfaces/token'; + +// https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-url-token +export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { + throw new Error('unimplemented'); +} diff --git a/packages/css-tokenizer/src/consume/whitespace.ts b/packages/css-tokenizer/src/consume/whitespace-token.ts similarity index 100% rename from packages/css-tokenizer/src/consume/whitespace.ts rename to packages/css-tokenizer/src/consume/whitespace-token.ts diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index e63c2d1fb8..cec6f6d126 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -7,6 +7,8 @@ export enum TokenType { AtKeyword = 'at-keyword-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-bad-string-token */ BadString = 'bad-string-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-bad-url-token */ + BadURL = 'bad-url-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdc-token */ CDC = 'CDC-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-cdo-token */ @@ -21,8 +23,12 @@ export enum TokenType { Dimension = 'dimension-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-eof-token */ EOF = 'EOF-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-function-token */ + Function = 'function-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-hash-token */ Hash = 'hash-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-ident-token */ + Ident = 'ident-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ Number = 'number-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-percentage-token */ @@ -31,6 +37,8 @@ export enum TokenType { Semicolon = 'semicolon-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-string-token */ String = 'string-token', + /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-url-token */ + URL = 'url-token', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-whitespace-token */ Whitespace = 'whitespace-token', @@ -60,6 +68,7 @@ export enum HashType { export type TokenAtKeyword = Token; export type TokenBadString = Token; +export type TokenBadURL = Token; export type TokenCDC = Token; export type TokenCDO = Token; export type TokenColon = Token; @@ -69,11 +78,14 @@ export type TokenDelim = Token; export type TokenDimension = Token; export type TokenEOF = Token; export type TokenError = Token>; +export type TokenFunction = Token; export type TokenHash = Token; +export type TokenIdent = Token; export type TokenNumber = Token; export type TokenPercentage = Token; export type TokenSemicolon = Token; export type TokenString = Token; +export type TokenURL = Token; export type TokenWhitespace = Token; export type TokenOpenParen = Token; @@ -85,6 +97,7 @@ export type TokenCloseCurly = Token; export type CSSToken = TokenAtKeyword | TokenBadString | + TokenBadURL | TokenCDC | TokenCDO | TokenColon | @@ -94,11 +107,14 @@ export type CSSToken = TokenAtKeyword | TokenDimension | TokenEOF | TokenError | + TokenFunction | TokenHash | + TokenIdent | TokenNumber | TokenPercentage | TokenSemicolon | TokenString | + TokenURL | TokenWhitespace | TokenOpenParen | TokenCloseParen | diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index d01931cb17..db26b1b42c 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -3,16 +3,17 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from './checks/three- import { checkIfThreeCodePointsWouldStartANumber } from './checks/three-code-points-would-start-number'; import { checkIfTwoCodePointsStartAComment } from './checks/two-code-points-start-comment'; import { checkIfThreeCodePointsWouldStartCDC } from './checks/three-code-points-would-start-cdc'; -import { APOSTROPHE, COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, QUOTATION_MARK, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON, SOLIDUS } from './code-points/code-points'; -import { isDigitCodePoint, isWhitespace } from './code-points/ranges'; +import { APOSTROPHE, COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, QUOTATION_MARK, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; +import { isDigitCodePoint, isIdentStartCodePoint, isWhitespace } from './code-points/ranges'; import { consumeComment } from './consume/comment'; import { consumeHashToken } from './consume/hash-token'; import { consumeIdentSequence } from './consume/ident-sequence'; import { consumeNumericToken } from './consume/numeric-token'; -import { consumeWhiteSpace } from './consume/whitespace'; +import { consumeWhiteSpace } from './consume/whitespace-token'; import { CSSToken, TokenType } from './interfaces/token'; import { Reader } from './reader'; -import { consumeStringToken } from './consume/string'; +import { consumeStringToken } from './consume/string-token'; +import { consumeIdentLikeToken } from './consume/ident-like-token'; interface Stringer { valueOf(): string @@ -159,6 +160,10 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken return consumeNumericToken(reader); } + if (isIdentStartCodePoint(peeked)) { + return consumeIdentLikeToken(reader); + } + reader.readCodePoint(); return [TokenType.Delim, reader.representationString(), ...reader.representation(), { value: String.fromCharCode(peeked), diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index a453981a46..947b46882b 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -22,7 +22,7 @@ function collectTokens(t) { { const t = tokenizer({ css: '@media screen and ((min-width: 200px) and (foo: "\\A9\ - bar") {}', + bar") and (fancy(baz))) {}', }); assert.deepEqual( @@ -30,28 +30,13 @@ function collectTokens(t) { [ ['at-keyword-token', '@media', 0, 5, { value: 'media' }], ['whitespace-token', ' ', 6, 6, undefined], - ['delim-token', 's', 7, 7, { value: 's' }], - ['delim-token', 'c', 8, 8, { value: 'c' }], - ['delim-token', 'r', 9, 9, { value: 'r' }], - ['delim-token', 'e', 10, 10, { value: 'e' }], - ['delim-token', 'e', 11, 11, { value: 'e' }], - ['delim-token', 'n', 12, 12, { value: 'n' }], + ['ident-token', 'screen', 7, 12, { value: 'screen' }], ['whitespace-token', ' ', 13, 13, undefined], - ['delim-token', 'a', 14, 14, { value: 'a' }], - ['delim-token', 'n', 15, 15, { value: 'n' }], - ['delim-token', 'd', 16, 16, { value: 'd' }], + ['ident-token', 'and', 14, 16, { value: 'and' }], ['whitespace-token', ' ', 17, 17, undefined], ['(-token', '(', 18, 18, undefined], ['(-token', '(', 19, 19, undefined], - ['delim-token', 'm', 20, 20, { value: 'm' }], - ['delim-token', 'i', 21, 21, { value: 'i' }], - ['delim-token', 'n', 22, 22, { value: 'n' }], - ['delim-token', '-', 23, 23, { value: '-' }], - ['delim-token', 'w', 24, 24, { value: 'w' }], - ['delim-token', 'i', 25, 25, { value: 'i' }], - ['delim-token', 'd', 26, 26, { value: 'd' }], - ['delim-token', 't', 27, 27, { value: 't' }], - ['delim-token', 'h', 28, 28, { value: 'h' }], + ['ident-token', 'min-width', 20, 28, { value: 'min-width' }], ['colon-token', ':', 29, 29, undefined], ['whitespace-token', ' ', 30, 30, undefined], [ @@ -63,21 +48,26 @@ function collectTokens(t) { ], [')-token', ')', 36, 36, undefined], ['whitespace-token', ' ', 37, 37, undefined], - ['delim-token', 'a', 38, 38, { value: 'a' }], - ['delim-token', 'n', 39, 39, { value: 'n' }], - ['delim-token', 'd', 40, 40, { value: 'd' }], + ['ident-token', 'and', 38, 40, { value: 'and' }], ['whitespace-token', ' ', 41, 41, undefined], ['(-token', '(', 42, 42, undefined], - ['delim-token', 'f', 43, 43, { value: 'f' }], - ['delim-token', 'o', 44, 44, { value: 'o' }], - ['delim-token', 'o', 45, 45, { value: 'o' }], + ['ident-token', 'foo', 43, 45, { value: 'foo' }], ['colon-token', ':', 46, 46, undefined], ['whitespace-token', ' ', 47, 47, undefined], ['string-token', '"\\A9 bar"', 48, 56, { value: '© bar' }], [')-token', ')', 57, 57, undefined], ['whitespace-token', ' ', 58, 58, undefined], - ['{-token', '{', 59, 59, undefined], - ['}-token', '}', 60, 60, undefined], + ['ident-token', 'and', 59, 61, { value: 'and' }], + ['whitespace-token', ' ', 62, 62, undefined], + ['(-token', '(', 63, 63, undefined], + ['function-token', 'fancy(', 64, 69, { value: 'fancy' }], + ['ident-token', 'baz', 70, 72, { value: 'baz' }], + [')-token', ')', 73, 73, undefined], + [')-token', ')', 74, 74, undefined], + [')-token', ')', 75, 75, undefined], + ['whitespace-token', ' ', 76, 76, undefined], + ['{-token', '{', 77, 77, undefined], + ['}-token', '}', 78, 78, undefined], ['EOF-token', '', -1, -1, undefined], ], ); From d21afe5d07e82fad568d88a48ae03bffc651a9b8 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Mon, 19 Sep 2022 19:24:54 +0200 Subject: [PATCH 20/59] should be complete, text coverage up next --- .../css-tokenizer/src/consume/url-token.ts | 83 ++++++++++++++++++- 1 file changed, 81 insertions(+), 2 deletions(-) diff --git a/packages/css-tokenizer/src/consume/url-token.ts b/packages/css-tokenizer/src/consume/url-token.ts index 01dde552a1..5e90723cc0 100644 --- a/packages/css-tokenizer/src/consume/url-token.ts +++ b/packages/css-tokenizer/src/consume/url-token.ts @@ -1,7 +1,86 @@ +import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; +import { APOSTROPHE, LEFT_PARENTHESIS, QUOTATION_MARK, REVERSE_SOLIDUS, RIGHT_PARENTHESIS } from '../code-points/code-points'; +import { isNonPrintableCodePoint, isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; -import { TokenBadURL, TokenURL } from '../interfaces/token'; +import { TokenBadURL, TokenType, TokenURL } from '../interfaces/token'; +import { consumeBadURL } from './bad-url'; +import { consumeEscapedCodePoint } from './escaped-code-point'; +import { consumeWhiteSpace } from './whitespace-token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-url-token export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { - throw new Error('unimplemented'); + consumeWhiteSpace(reader); + let string = ''; + + // eslint-disable-next-line no-constant-condition + while (true) { + const peeked = reader.peekOneCodePoint(); + if (peeked === false) { + return [ + TokenType.URL, + reader.representationString(), + ...reader.representation(), + { + value: string, + }, + ]; + } + + if (peeked === RIGHT_PARENTHESIS) { + reader.readCodePoint(); + return [ + TokenType.URL, + reader.representationString(), + ...reader.representation(), + { + value: string, + }, + ]; + } + + if (isWhitespace(peeked)) { + consumeWhiteSpace(reader); + const peeked2 = reader.peekOneCodePoint(); + if (peeked2 === false || peeked2 === RIGHT_PARENTHESIS) { + // see above + continue; + } + + consumeBadURL(reader); + return [ + TokenType.BadURL, + reader.representationString(), + ...reader.representation(), + undefined, + ]; + } + + if (peeked === QUOTATION_MARK || peeked === APOSTROPHE || peeked === LEFT_PARENTHESIS || isNonPrintableCodePoint(peeked)) { + consumeBadURL(reader); + return [ + TokenType.BadURL, + reader.representationString(), + ...reader.representation(), + undefined, + ]; + } + + if (peeked === REVERSE_SOLIDUS) { + if (checkIfTwoCodePointsAreAValidEscape(reader)) { + string += String.fromCharCode(consumeEscapedCodePoint(reader)); + continue; + } + + consumeBadURL(reader); + return [ + TokenType.BadURL, + reader.representationString(), + ...reader.representation(), + undefined, + ]; + } + + reader.readCodePoint(); + string += String.fromCharCode(peeked); + } } From 695480032ee8226df1f25395ef579aa227e5d6a4 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Mon, 19 Sep 2022 20:19:10 +0200 Subject: [PATCH 21/59] add context --- .../four-code-points-would-start-cdo.ts | 3 +- .../src/checks/matches-url-ident.ts | 4 +- .../css-tokenizer/src/checks/next-is-eof.ts | 3 +- .../three-code-points-would-start-cdc.ts | 3 +- ...-code-points-would-start-ident-sequence.ts | 5 ++- .../three-code-points-would-start-number.ts | 3 +- .../two-code-points-are-valid-escape.ts | 3 +- .../checks/two-code-points-start-comment.ts | 3 +- packages/css-tokenizer/src/consume/bad-url.ts | 7 ++-- packages/css-tokenizer/src/consume/comment.ts | 9 +++-- .../src/consume/escaped-code-point.ts | 9 ++++- .../css-tokenizer/src/consume/hash-token.ts | 9 +++-- .../src/consume/ident-like-token.ts | 9 +++-- .../src/consume/ident-sequence.ts | 7 ++-- packages/css-tokenizer/src/consume/number.ts | 3 +- .../src/consume/numeric-token.ts | 9 +++-- .../css-tokenizer/src/consume/string-token.ts | 5 ++- .../css-tokenizer/src/consume/url-token.ts | 17 ++++---- .../src/consume/whitespace-token.ts | 3 +- .../css-tokenizer/src/interfaces/context.ts | 3 ++ .../css-tokenizer/src/interfaces/error.ts | 5 +++ .../css-tokenizer/src/interfaces/token.ts | 2 +- packages/css-tokenizer/src/tokenizer.ts | 40 ++++++++++--------- 23 files changed, 100 insertions(+), 64 deletions(-) create mode 100644 packages/css-tokenizer/src/interfaces/context.ts create mode 100644 packages/css-tokenizer/src/interfaces/error.ts diff --git a/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts b/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts index c9a15c6f42..722a0e6ece 100644 --- a/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts +++ b/packages/css-tokenizer/src/checks/four-code-points-would-start-cdo.ts @@ -1,8 +1,9 @@ import { EXCLAMATION_MARK, HYPHEN_MINUS, LESS_THAN_SIGN } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token -export function checkIfFourCodePointsWouldStartCDO(reader: CodePointReader): boolean { +export function checkIfFourCodePointsWouldStartCDO(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekFourCodePoints(); const [first, second, third, fourth] = peeked; diff --git a/packages/css-tokenizer/src/checks/matches-url-ident.ts b/packages/css-tokenizer/src/checks/matches-url-ident.ts index ceb326a8f2..4d9cb377fe 100644 --- a/packages/css-tokenizer/src/checks/matches-url-ident.ts +++ b/packages/css-tokenizer/src/checks/matches-url-ident.ts @@ -1,3 +1,5 @@ +import { Context } from '../interfaces/context'; + const u = 'u'.charCodeAt(0); const U = 'U'.charCodeAt(0); const r = 'r'.charCodeAt(0); @@ -5,7 +7,7 @@ const R = 'R'.charCodeAt(0); const l = 'l'.charCodeAt(0); const L = 'L'.charCodeAt(0); -export function checkIfCodePointsMatchURLIdent(codePoints: Array): boolean { +export function checkIfCodePointsMatchURLIdent(ctx: Context, codePoints: Array): boolean { if (codePoints.length !== 3) { return false; } diff --git a/packages/css-tokenizer/src/checks/next-is-eof.ts b/packages/css-tokenizer/src/checks/next-is-eof.ts index bcde1c7f67..18ee497a77 100644 --- a/packages/css-tokenizer/src/checks/next-is-eof.ts +++ b/packages/css-tokenizer/src/checks/next-is-eof.ts @@ -1,6 +1,7 @@ import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; -export function checkIfNextIsEOF(reader: CodePointReader): boolean { +export function checkIfNextIsEOF(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekOneCodePoint(); if (peeked === false) { return true; diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts index 7f1ccf54fb..38cdf70dc8 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-cdc.ts @@ -1,8 +1,9 @@ import { GREATER_THAN_SIGN, HYPHEN_MINUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token -export function checkIfThreeCodePointsWouldStartCDC(reader: CodePointReader): boolean { +export function checkIfThreeCodePointsWouldStartCDC(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); const [first, second, third] = peeked; diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts index a718d7128e..28ffc8fc6d 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-ident-sequence.ts @@ -1,10 +1,11 @@ import { HYPHEN_MINUS, LINE_FEED, REVERSE_SOLIDUS } from '../code-points/code-points'; import { isIdentStartCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { checkIfTwoCodePointsAreAValidEscape } from './two-code-points-are-valid-escape'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#would-start-an-identifier -export function checkIfThreeCodePointsWouldStartAnIdentSequence(reader: CodePointReader): boolean { +export function checkIfThreeCodePointsWouldStartAnIdentSequence(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); const [first, second, third] = peeked; @@ -38,7 +39,7 @@ export function checkIfThreeCodePointsWouldStartAnIdentSequence(reader: CodePoin if (first === REVERSE_SOLIDUS) { // If the first and second code points are a valid escape, return true. // Otherwise, return false. - return checkIfTwoCodePointsAreAValidEscape(reader); + return checkIfTwoCodePointsAreAValidEscape(ctx, reader); } // anything else diff --git a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts index 552d6c4aa1..e4b964e9cd 100644 --- a/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts +++ b/packages/css-tokenizer/src/checks/three-code-points-would-start-number.ts @@ -1,9 +1,10 @@ import { FULL_STOP, HYPHEN_MINUS, PLUS_SIGN } from '../code-points/code-points'; import { isDigitCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-number -export function checkIfThreeCodePointsWouldStartANumber(reader: CodePointReader): boolean { +export function checkIfThreeCodePointsWouldStartANumber(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekThreeCodePoints(); const [first, second, third] = peeked; diff --git a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts index 1c660ce837..4e30730fbd 100644 --- a/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts +++ b/packages/css-tokenizer/src/checks/two-code-points-are-valid-escape.ts @@ -1,8 +1,9 @@ import { LINE_FEED, REVERSE_SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#starts-with-a-valid-escape -export function checkIfTwoCodePointsAreAValidEscape(reader: CodePointReader): boolean { +export function checkIfTwoCodePointsAreAValidEscape(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekTwoCodePoints(); // If the first code point is not U+005C REVERSE SOLIDUS (\), return false. if (peeked[0] !== REVERSE_SOLIDUS) { // "\" diff --git a/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts b/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts index 487d6bdf46..a80a5513a0 100644 --- a/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts +++ b/packages/css-tokenizer/src/checks/two-code-points-start-comment.ts @@ -1,8 +1,9 @@ import { ASTERISK, SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comments -export function checkIfTwoCodePointsStartAComment(reader: CodePointReader): boolean { +export function checkIfTwoCodePointsStartAComment(ctx: Context, reader: CodePointReader): boolean { const peeked = reader.peekTwoCodePoints(); if (peeked[0] !== SOLIDUS) { return false; diff --git a/packages/css-tokenizer/src/consume/bad-url.ts b/packages/css-tokenizer/src/consume/bad-url.ts index 54ebbb1f08..40a44f9ab1 100644 --- a/packages/css-tokenizer/src/consume/bad-url.ts +++ b/packages/css-tokenizer/src/consume/bad-url.ts @@ -1,10 +1,11 @@ import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; import { RIGHT_PARENTHESIS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { consumeEscapedCodePoint } from './escaped-code-point'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-remnants-of-bad-url -export function consumeBadURL(reader: CodePointReader) { +export function consumeBadURL(ctx: Context, reader: CodePointReader) { // eslint-disable-next-line no-constant-condition while (true) { const peeked = reader.peekOneCodePoint(); @@ -17,9 +18,9 @@ export function consumeBadURL(reader: CodePointReader) { return; } - if (checkIfTwoCodePointsAreAValidEscape(reader)) { + if (checkIfTwoCodePointsAreAValidEscape(ctx, reader)) { reader.readCodePoint(); - consumeEscapedCodePoint(reader); + consumeEscapedCodePoint(ctx, reader); continue; } diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index 8827c20569..f5af33aec7 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -1,9 +1,10 @@ import { ASTERISK, SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenComment, TokenError, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment -export function consumeComment(reader: CodePointReader): TokenComment|TokenError { +export function consumeComment(ctx: Context, reader: CodePointReader): TokenComment|TokenError { const open = reader.peekOneCodePoint(); if (open === false) { return [ @@ -11,7 +12,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError '', ...reader.representation(), { - reason: 'parse error while consuming a comment, expected "*" after "/".', + message: 'parse error while consuming a comment, expected "*" after "/".', }, ]; } @@ -31,7 +32,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError '', ...reader.representation(), { - reason: 'parse error while consuming a comment, comment was unclosed before the end of the file.', + message: 'parse error while consuming a comment, comment was unclosed before the end of the file.', }, ]; } @@ -47,7 +48,7 @@ export function consumeComment(reader: CodePointReader): TokenComment|TokenError '', ...reader.representation(), { - reason: 'parse error while consuming a comment, comment was unclosed before the end of the file.', + message: 'parse error while consuming a comment, comment was unclosed before the end of the file.', }, ]; } diff --git a/packages/css-tokenizer/src/consume/escaped-code-point.ts b/packages/css-tokenizer/src/consume/escaped-code-point.ts index 60ded69d55..d9e7c0e9a1 100644 --- a/packages/css-tokenizer/src/consume/escaped-code-point.ts +++ b/packages/css-tokenizer/src/consume/escaped-code-point.ts @@ -1,9 +1,10 @@ import { MAXIMUM_ALLOWED_CODEPOINT, REPLACEMENT_CHARACTER } from '../code-points/code-points'; -import { isHexDigitCodePoint, isSurrogate } from '../code-points/ranges'; +import { isHexDigitCodePoint, isSurrogate, isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-escaped-code-point -export function consumeEscapedCodePoint(reader: CodePointReader): number { +export function consumeEscapedCodePoint(ctx: Context, reader: CodePointReader): number { const codePoint = reader.readCodePoint(); if (codePoint === false) { return REPLACEMENT_CHARACTER; @@ -19,6 +20,10 @@ export function consumeEscapedCodePoint(reader: CodePointReader): number { peeked = reader.peekOneCodePoint(); } + if (peeked !== false && isWhitespace(peeked)) { + reader.readCodePoint(); + } + const codePointLiteral = parseInt(hexSequence.map((x) => String.fromCharCode(x)).join(''), 16); if (codePointLiteral === 0) { return REPLACEMENT_CHARACTER; diff --git a/packages/css-tokenizer/src/consume/hash-token.ts b/packages/css-tokenizer/src/consume/hash-token.ts index fea0ab37cf..e9000903a6 100644 --- a/packages/css-tokenizer/src/consume/hash-token.ts +++ b/packages/css-tokenizer/src/consume/hash-token.ts @@ -2,26 +2,27 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from '../checks/three import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; import { isIdentCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { HashType, TokenDelim, TokenHash, TokenType } from '../interfaces/token'; import { consumeIdentSequence } from './ident-sequence'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-token -export function consumeHashToken(reader: CodePointReader): TokenDelim|TokenHash { +export function consumeHashToken(ctx: Context, reader: CodePointReader): TokenDelim|TokenHash { reader.readCodePoint(); const peeked = reader.peekOneCodePoint(); if ( peeked !== false && isIdentCodePoint(peeked) || - checkIfTwoCodePointsAreAValidEscape(reader) + checkIfTwoCodePointsAreAValidEscape(ctx, reader) ) { let hashType = HashType.Unrestricted; - if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + if (checkIfThreeCodePointsWouldStartAnIdentSequence(ctx, reader)) { hashType = HashType.ID; } - const identSequence = consumeIdentSequence(reader); + const identSequence = consumeIdentSequence(ctx, reader); return [ TokenType.Hash, reader.representationString(), diff --git a/packages/css-tokenizer/src/consume/ident-like-token.ts b/packages/css-tokenizer/src/consume/ident-like-token.ts index 069ba3fbc0..a901c722d9 100644 --- a/packages/css-tokenizer/src/consume/ident-like-token.ts +++ b/packages/css-tokenizer/src/consume/ident-like-token.ts @@ -2,14 +2,15 @@ import { checkIfCodePointsMatchURLIdent } from '../checks/matches-url-ident'; import { APOSTROPHE, LEFT_PARENTHESIS, QUOTATION_MARK } from '../code-points/code-points'; import { isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenBadURL, TokenFunction, TokenIdent, TokenType, TokenURL } from '../interfaces/token'; import { consumeIdentSequence } from './ident-sequence'; import { consumeUrlToken } from './url-token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-ident-like-token -export function consumeIdentLikeToken(reader: CodePointReader): TokenIdent|TokenFunction|TokenURL|TokenBadURL { - const codePoints = consumeIdentSequence(reader); - if (checkIfCodePointsMatchURLIdent(codePoints)) { +export function consumeIdentLikeToken(ctx: Context, reader: CodePointReader): TokenIdent|TokenFunction|TokenURL|TokenBadURL { + const codePoints = consumeIdentSequence(ctx, reader); + if (checkIfCodePointsMatchURLIdent(ctx, codePoints)) { const peeked = reader.peekOneCodePoint(); if (peeked === LEFT_PARENTHESIS) { reader.readCodePoint(); @@ -48,7 +49,7 @@ export function consumeIdentLikeToken(reader: CodePointReader): TokenIdent|Token reader.unreadCodePoint(); } - return consumeUrlToken(reader); + return consumeUrlToken(ctx, reader); } } diff --git a/packages/css-tokenizer/src/consume/ident-sequence.ts b/packages/css-tokenizer/src/consume/ident-sequence.ts index b84c1ba50c..a622437719 100644 --- a/packages/css-tokenizer/src/consume/ident-sequence.ts +++ b/packages/css-tokenizer/src/consume/ident-sequence.ts @@ -1,10 +1,11 @@ import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-are-valid-escape'; import { isIdentCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { consumeEscapedCodePoint } from './escaped-code-point'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-name -export function consumeIdentSequence(reader: CodePointReader): Array { +export function consumeIdentSequence(ctx: Context, reader: CodePointReader): Array { const result = []; // eslint-disable-next-line no-constant-condition @@ -20,9 +21,9 @@ export function consumeIdentSequence(reader: CodePointReader): Array { continue; } - if (checkIfTwoCodePointsAreAValidEscape(reader)) { + if (checkIfTwoCodePointsAreAValidEscape(ctx, reader)) { reader.readCodePoint(); - result.push(consumeEscapedCodePoint(reader)); + result.push(consumeEscapedCodePoint(ctx, reader)); continue; } diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index 0c8fb16ed2..cd485e64e9 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -1,10 +1,11 @@ import { FULL_STOP, HYPHEN_MINUS, LATIN_CAPITAL_LETTER_E, LATIN_SMALL_LETTER_E, PLUS_SIGN } from '../code-points/code-points'; import { isDigitCodePoint } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { NumberType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-number -export function consumeNumber(reader: CodePointReader): [number, NumberType] { +export function consumeNumber(ctx: Context, reader: CodePointReader): [number, NumberType] { // 1. Initially set type to "integer". // Let repr be the empty string. let type = NumberType.Integer; diff --git a/packages/css-tokenizer/src/consume/numeric-token.ts b/packages/css-tokenizer/src/consume/numeric-token.ts index e0bfa45e1c..3059005c57 100644 --- a/packages/css-tokenizer/src/consume/numeric-token.ts +++ b/packages/css-tokenizer/src/consume/numeric-token.ts @@ -1,16 +1,17 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from '../checks/three-code-points-would-start-ident-sequence'; import { PERCENTAGE_SIGN } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenDimension, TokenNumber, TokenPercentage, TokenType } from '../interfaces/token'; import { consumeIdentSequence } from './ident-sequence'; import { consumeNumber } from './number'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-numeric-token -export function consumeNumericToken(reader: CodePointReader): TokenPercentage|TokenNumber|TokenDimension { - const numberValue = consumeNumber(reader); +export function consumeNumericToken(ctx: Context, reader: CodePointReader): TokenPercentage|TokenNumber|TokenDimension { + const numberValue = consumeNumber(ctx, reader); - if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { - const unit = consumeIdentSequence(reader); + if (checkIfThreeCodePointsWouldStartAnIdentSequence(ctx, reader)) { + const unit = consumeIdentSequence(ctx, reader); return [ TokenType.Dimension, diff --git a/packages/css-tokenizer/src/consume/string-token.ts b/packages/css-tokenizer/src/consume/string-token.ts index 6487d4bee2..030ece1f54 100644 --- a/packages/css-tokenizer/src/consume/string-token.ts +++ b/packages/css-tokenizer/src/consume/string-token.ts @@ -1,11 +1,12 @@ import { REVERSE_SOLIDUS } from '../code-points/code-points'; import { isNewLine } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenBadString, TokenString, TokenType } from '../interfaces/token'; import { consumeEscapedCodePoint } from './escaped-code-point'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-string-token -export function consumeStringToken(reader: CodePointReader): TokenBadString|TokenString { +export function consumeStringToken(ctx: Context, reader: CodePointReader): TokenBadString|TokenString { let result = ''; const first = reader.readCodePoint(); @@ -40,7 +41,7 @@ export function consumeStringToken(reader: CodePointReader): TokenBadString|Toke continue; } - result += String.fromCharCode(consumeEscapedCodePoint(reader)); + result += String.fromCharCode(consumeEscapedCodePoint(ctx, reader)); continue; } diff --git a/packages/css-tokenizer/src/consume/url-token.ts b/packages/css-tokenizer/src/consume/url-token.ts index 5e90723cc0..518b1b2ccc 100644 --- a/packages/css-tokenizer/src/consume/url-token.ts +++ b/packages/css-tokenizer/src/consume/url-token.ts @@ -2,14 +2,15 @@ import { checkIfTwoCodePointsAreAValidEscape } from '../checks/two-code-points-a import { APOSTROPHE, LEFT_PARENTHESIS, QUOTATION_MARK, REVERSE_SOLIDUS, RIGHT_PARENTHESIS } from '../code-points/code-points'; import { isNonPrintableCodePoint, isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenBadURL, TokenType, TokenURL } from '../interfaces/token'; import { consumeBadURL } from './bad-url'; import { consumeEscapedCodePoint } from './escaped-code-point'; import { consumeWhiteSpace } from './whitespace-token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-url-token -export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { - consumeWhiteSpace(reader); +export function consumeUrlToken(ctx: Context, reader: CodePointReader): TokenURL|TokenBadURL { + consumeWhiteSpace(ctx, reader); let string = ''; // eslint-disable-next-line no-constant-condition @@ -39,14 +40,14 @@ export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { } if (isWhitespace(peeked)) { - consumeWhiteSpace(reader); + consumeWhiteSpace(ctx, reader); const peeked2 = reader.peekOneCodePoint(); if (peeked2 === false || peeked2 === RIGHT_PARENTHESIS) { // see above continue; } - consumeBadURL(reader); + consumeBadURL(ctx, reader); return [ TokenType.BadURL, reader.representationString(), @@ -56,7 +57,7 @@ export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { } if (peeked === QUOTATION_MARK || peeked === APOSTROPHE || peeked === LEFT_PARENTHESIS || isNonPrintableCodePoint(peeked)) { - consumeBadURL(reader); + consumeBadURL(ctx ,reader); return [ TokenType.BadURL, reader.representationString(), @@ -66,12 +67,12 @@ export function consumeUrlToken(reader: CodePointReader): TokenURL|TokenBadURL { } if (peeked === REVERSE_SOLIDUS) { - if (checkIfTwoCodePointsAreAValidEscape(reader)) { - string += String.fromCharCode(consumeEscapedCodePoint(reader)); + if (checkIfTwoCodePointsAreAValidEscape(ctx, reader)) { + string += String.fromCharCode(consumeEscapedCodePoint(ctx, reader)); continue; } - consumeBadURL(reader); + consumeBadURL(ctx, reader); return [ TokenType.BadURL, reader.representationString(), diff --git a/packages/css-tokenizer/src/consume/whitespace-token.ts b/packages/css-tokenizer/src/consume/whitespace-token.ts index c421b647b3..b23c3f285a 100644 --- a/packages/css-tokenizer/src/consume/whitespace-token.ts +++ b/packages/css-tokenizer/src/consume/whitespace-token.ts @@ -1,8 +1,9 @@ import { isWhitespace } from '../code-points/ranges'; import { CodePointReader } from '../interfaces/code-point-reader'; +import { Context } from '../interfaces/context'; import { TokenType, TokenWhitespace } from '../interfaces/token'; -export function consumeWhiteSpace(reader: CodePointReader, max = -1): TokenWhitespace { +export function consumeWhiteSpace(ctx: Context, reader: CodePointReader, max = -1): TokenWhitespace { let current = 0; // eslint-disable-next-line no-constant-condition diff --git a/packages/css-tokenizer/src/interfaces/context.ts b/packages/css-tokenizer/src/interfaces/context.ts new file mode 100644 index 0000000000..2cdbda5811 --- /dev/null +++ b/packages/css-tokenizer/src/interfaces/context.ts @@ -0,0 +1,3 @@ +export type Context = { + onParseError: (TokenizerError) => void +} diff --git a/packages/css-tokenizer/src/interfaces/error.ts b/packages/css-tokenizer/src/interfaces/error.ts new file mode 100644 index 0000000000..aea86777c7 --- /dev/null +++ b/packages/css-tokenizer/src/interfaces/error.ts @@ -0,0 +1,5 @@ +export type TokenizerError = { + message: string, + start: number, + end: number, +} diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index cec6f6d126..14c27a9156 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -77,7 +77,7 @@ export type TokenComment = Token; export type TokenDelim = Token; export type TokenDimension = Token; export type TokenEOF = Token; -export type TokenError = Token>; +export type TokenError = Token; export type TokenFunction = Token; export type TokenHash = Token; export type TokenIdent = Token; diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index db26b1b42c..ade6ac4f01 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -19,19 +19,23 @@ interface Stringer { valueOf(): string } -export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false }) { +export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false, onParseError?: (TokenizerError) => void }) { const css = input.css.valueOf(); const reader = new Reader(css); + const ctx = { + onParseError: options?.onParseError ?? (() => { /* noop */ }), + }; + function nextToken(): CSSToken | undefined { reader.resetRepresentation(); - if (checkIfTwoCodePointsStartAComment(reader)) { + if (checkIfTwoCodePointsStartAComment(ctx, reader)) { if (options?.commentsAreTokens) { - return consumeComment(reader); + return consumeComment(ctx, reader); } else { - consumeComment(reader); + consumeComment(ctx, reader); } } @@ -78,14 +82,14 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken switch (peeked) { case APOSTROPHE: case QUOTATION_MARK: - return consumeStringToken(reader); + return consumeStringToken(ctx, reader); case NUMBER_SIGN: - return consumeHashToken(reader); + return consumeHashToken(ctx, reader); case PLUS_SIGN: case FULL_STOP: { - if (checkIfThreeCodePointsWouldStartANumber(reader)) { - return consumeNumericToken(reader); + if (checkIfThreeCodePointsWouldStartANumber(ctx, reader)) { + return consumeNumericToken(ctx, reader); } reader.readCodePoint(); @@ -95,11 +99,11 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } case HYPHEN_MINUS: { - if (checkIfThreeCodePointsWouldStartANumber(reader)) { - return consumeNumericToken(reader); + if (checkIfThreeCodePointsWouldStartANumber(ctx, reader)) { + return consumeNumericToken(ctx, reader); } - if (checkIfThreeCodePointsWouldStartCDC(reader)) { + if (checkIfThreeCodePointsWouldStartCDC(ctx, reader)) { reader.readCodePoint(); reader.readCodePoint(); reader.readCodePoint(); @@ -107,7 +111,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken return [TokenType.CDC, reader.representationString(), ...reader.representation(), undefined]; } - if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { + if (checkIfThreeCodePointsWouldStartAnIdentSequence(ctx, reader)) { // return consumeIdentLike... } @@ -118,7 +122,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } case LESS_THAN_SIGN: { - if (checkIfFourCodePointsWouldStartCDO(reader)) { + if (checkIfFourCodePointsWouldStartCDO(ctx, reader)) { reader.readCodePoint(); reader.readCodePoint(); reader.readCodePoint(); @@ -135,8 +139,8 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken case COMMERCIAL_AT: { reader.readCodePoint(); - if (checkIfThreeCodePointsWouldStartAnIdentSequence(reader)) { - const identSequence = consumeIdentSequence(reader); + if (checkIfThreeCodePointsWouldStartAnIdentSequence(ctx, reader)) { + const identSequence = consumeIdentSequence(ctx, reader); return [TokenType.AtKeyword, reader.representationString(), ...reader.representation(), { value: identSequence.map((x) => String.fromCharCode(x)).join(''), @@ -153,15 +157,15 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } if (isWhitespace(peeked)) { - return consumeWhiteSpace(reader); + return consumeWhiteSpace(ctx, reader); } if (isDigitCodePoint(peeked)) { - return consumeNumericToken(reader); + return consumeNumericToken(ctx, reader); } if (isIdentStartCodePoint(peeked)) { - return consumeIdentLikeToken(reader); + return consumeIdentLikeToken(ctx, reader); } reader.readCodePoint(); From 138262fe3ce5c569c9199133e916962c3e0c6edb Mon Sep 17 00:00:00 2001 From: romainmenke Date: Mon, 19 Sep 2022 20:54:23 +0200 Subject: [PATCH 22/59] fix --- .../test/consume/comment-token.mjs | 2 +- .../css-tokenizer/test/consume/number.mjs | 24 +++++++++---------- .../test/consume/numeric-token.mjs | 10 ++++---- packages/css-tokenizer/test/token/basic.mjs | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/packages/css-tokenizer/test/consume/comment-token.mjs b/packages/css-tokenizer/test/consume/comment-token.mjs index 36286573de..7992b77b9f 100644 --- a/packages/css-tokenizer/test/consume/comment-token.mjs +++ b/packages/css-tokenizer/test/consume/comment-token.mjs @@ -5,7 +5,7 @@ import { Reader, consumeComment } from '@csstools/css-tokenizer'; const r = new Reader('/* a comment */'); r.readCodePoint(); - const token = consumeComment(r); + const token = consumeComment({}, r); assert.deepEqual( token, diff --git a/packages/css-tokenizer/test/consume/number.mjs b/packages/css-tokenizer/test/consume/number.mjs index 07e17eaf34..f472915342 100644 --- a/packages/css-tokenizer/test/consume/number.mjs +++ b/packages/css-tokenizer/test/consume/number.mjs @@ -3,7 +3,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('12'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -13,7 +13,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('4.01'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -23,7 +23,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('-456.8'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -33,7 +33,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('0.0'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -43,7 +43,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('+0.0'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -53,7 +53,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('-0.0'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -63,7 +63,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('.60'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -73,7 +73,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('10e3'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -83,7 +83,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('-3.4e-2'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -96,7 +96,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; // A result of this is that invalid inputs do return numbers when fed to this algorithm { const r = new Reader('12.'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -106,7 +106,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('+-12.2'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, @@ -116,7 +116,7 @@ import { Reader, consumeNumber } from '@csstools/css-tokenizer'; { const r = new Reader('12.1.1'); - const number = consumeNumber(r); + const number = consumeNumber({}, r); assert.deepEqual( number, diff --git a/packages/css-tokenizer/test/consume/numeric-token.mjs b/packages/css-tokenizer/test/consume/numeric-token.mjs index 38b163fc29..fc1fcfacf6 100644 --- a/packages/css-tokenizer/test/consume/numeric-token.mjs +++ b/packages/css-tokenizer/test/consume/numeric-token.mjs @@ -4,7 +4,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; { const r = new Reader('10px'); - const token = consumeNumericToken(r); + const token = consumeNumericToken({}, r); assert.deepEqual( token, @@ -25,7 +25,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; { const r = new Reader('10%'); - const token = consumeNumericToken(r); + const token = consumeNumericToken({}, r); assert.deepEqual( token, @@ -46,7 +46,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; { const r = new Reader('-3.4e-2'); - const token = consumeNumericToken(r); + const token = consumeNumericToken({}, r); assert.deepEqual( token, @@ -67,7 +67,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; { const r = new Reader('-3.4e'); - const token = consumeNumericToken(r); + const token = consumeNumericToken({}, r); assert.deepEqual( token, @@ -88,7 +88,7 @@ import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; { const r = new Reader('20--foo'); - const token = consumeNumericToken(r); + const token = consumeNumericToken({}, r); assert.deepEqual( token, diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index 947b46882b..4adde3300d 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -54,7 +54,7 @@ function collectTokens(t) { ['ident-token', 'foo', 43, 45, { value: 'foo' }], ['colon-token', ':', 46, 46, undefined], ['whitespace-token', ' ', 47, 47, undefined], - ['string-token', '"\\A9 bar"', 48, 56, { value: '© bar' }], + ['string-token', '"\\A9 bar"', 48, 56, { value: '©bar' }], [')-token', ')', 57, 57, undefined], ['whitespace-token', ' ', 58, 58, undefined], ['ident-token', 'and', 59, 61, { value: 'and' }], From acac677b37d5a5b52c46f8f56cfb1a8c8bd115bf Mon Sep 17 00:00:00 2001 From: romainmenke Date: Mon, 19 Sep 2022 22:55:42 +0200 Subject: [PATCH 23/59] add parser error reporting --- packages/css-tokenizer/src/consume/comment.ts | 65 ++++++--------- .../src/consume/escaped-code-point.ts | 11 +++ .../css-tokenizer/src/consume/string-token.ts | 26 +++++- .../css-tokenizer/src/consume/url-token.ts | 80 +++++++++++++++++-- .../css-tokenizer/src/interfaces/context.ts | 4 +- .../css-tokenizer/src/interfaces/error.ts | 3 +- .../css-tokenizer/src/interfaces/token.ts | 3 - packages/css-tokenizer/src/tokenizer.ts | 30 ++++++- 8 files changed, 166 insertions(+), 56 deletions(-) diff --git a/packages/css-tokenizer/src/consume/comment.ts b/packages/css-tokenizer/src/consume/comment.ts index f5af33aec7..6fc6d75c04 100644 --- a/packages/css-tokenizer/src/consume/comment.ts +++ b/packages/css-tokenizer/src/consume/comment.ts @@ -1,40 +1,29 @@ import { ASTERISK, SOLIDUS } from '../code-points/code-points'; import { CodePointReader } from '../interfaces/code-point-reader'; import { Context } from '../interfaces/context'; -import { TokenComment, TokenError, TokenType } from '../interfaces/token'; +import { TokenComment, TokenType } from '../interfaces/token'; // https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#consume-comment -export function consumeComment(ctx: Context, reader: CodePointReader): TokenComment|TokenError { - const open = reader.peekOneCodePoint(); - if (open === false) { - return [ - TokenType.Error, - '', - ...reader.representation(), - { - message: 'parse error while consuming a comment, expected "*" after "/".', - }, - ]; - } - - if (open !== ASTERISK) { - return; - } - +export function consumeComment(ctx: Context, reader: CodePointReader): TokenComment { + reader.readCodePoint(); reader.readCodePoint(); // eslint-disable-next-line no-constant-condition while (true) { const codePoint = reader.readCodePoint(); if (codePoint === false) { - return [ - TokenType.Error, - '', - ...reader.representation(), - { - message: 'parse error while consuming a comment, comment was unclosed before the end of the file.', - }, - ]; + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected EOF while consuming a comment.', + start: representation[0], + end: representation[1], + state: [ + '4.3.2. Consume comments', + 'Unexpected EOF', + ], + }); + + break; } if (codePoint !== ASTERISK) { @@ -43,25 +32,19 @@ export function consumeComment(ctx: Context, reader: CodePointReader): TokenComm const close = reader.peekOneCodePoint(); if (close === false) { - return [ - TokenType.Error, - '', - ...reader.representation(), - { - message: 'parse error while consuming a comment, comment was unclosed before the end of the file.', - }, - ]; + continue; } if (close === SOLIDUS) { reader.readCodePoint(); - - return [ - TokenType.Comment, - reader.representationString(), - ...reader.representation(), - undefined, - ]; + break; } } + + return [ + TokenType.Comment, + reader.representationString(), + ...reader.representation(), + undefined, + ]; } diff --git a/packages/css-tokenizer/src/consume/escaped-code-point.ts b/packages/css-tokenizer/src/consume/escaped-code-point.ts index d9e7c0e9a1..19caeaaab1 100644 --- a/packages/css-tokenizer/src/consume/escaped-code-point.ts +++ b/packages/css-tokenizer/src/consume/escaped-code-point.ts @@ -7,6 +7,17 @@ import { Context } from '../interfaces/context'; export function consumeEscapedCodePoint(ctx: Context, reader: CodePointReader): number { const codePoint = reader.readCodePoint(); if (codePoint === false) { + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected EOF while consuming an escaped code point.', + start: representation[0], + end: representation[1], + state: [ + '4.3.7. Consume an escaped code point', + 'Unexpected EOF', + ], + }); + return REPLACEMENT_CHARACTER; } diff --git a/packages/css-tokenizer/src/consume/string-token.ts b/packages/css-tokenizer/src/consume/string-token.ts index 030ece1f54..5bc5ff921f 100644 --- a/packages/css-tokenizer/src/consume/string-token.ts +++ b/packages/css-tokenizer/src/consume/string-token.ts @@ -18,10 +18,34 @@ export function consumeStringToken(ctx: Context, reader: CodePointReader): Token while (true) { const next = reader.readCodePoint(); if (next === false) { - return [TokenType.String, reader.representationString(), ...reader.representation(), { value: result }]; + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected EOF while consuming a string token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.5. Consume a string token', + 'Unexpected EOF', + ], + }); + + return [TokenType.String, reader.representationString(), ...representation, { value: result }]; } if (isNewLine(next)) { + { + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected newline while consuming a string token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.5. Consume a string token', + 'Unexpected newline', + ], + }); + } + reader.unreadCodePoint(); return [TokenType.BadString, reader.representationString(), ...reader.representation(), undefined]; } diff --git a/packages/css-tokenizer/src/consume/url-token.ts b/packages/css-tokenizer/src/consume/url-token.ts index 518b1b2ccc..bac0bd77ab 100644 --- a/packages/css-tokenizer/src/consume/url-token.ts +++ b/packages/css-tokenizer/src/consume/url-token.ts @@ -17,10 +17,21 @@ export function consumeUrlToken(ctx: Context, reader: CodePointReader): TokenURL while (true) { const peeked = reader.peekOneCodePoint(); if (peeked === false) { + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected EOF while consuming a url token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.6. Consume a url token', + 'Unexpected EOF', + ], + }); + return [ TokenType.URL, reader.representationString(), - ...reader.representation(), + ...representation, { value: string, }, @@ -42,9 +53,39 @@ export function consumeUrlToken(ctx: Context, reader: CodePointReader): TokenURL if (isWhitespace(peeked)) { consumeWhiteSpace(ctx, reader); const peeked2 = reader.peekOneCodePoint(); - if (peeked2 === false || peeked2 === RIGHT_PARENTHESIS) { - // see above - continue; + if (peeked2 === false) { + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected EOF while consuming a url token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.6. Consume a url token', + 'Consume as much whitespace as possible', + 'Unexpected EOF', + ], + }); + + return [ + TokenType.URL, + reader.representationString(), + ...representation, + { + value: string, + }, + ]; + } + + if (peeked2 === RIGHT_PARENTHESIS) { + reader.readCodePoint(); + return [ + TokenType.URL, + reader.representationString(), + ...reader.representation(), + { + value: string, + }, + ]; } consumeBadURL(ctx, reader); @@ -57,11 +98,23 @@ export function consumeUrlToken(ctx: Context, reader: CodePointReader): TokenURL } if (peeked === QUOTATION_MARK || peeked === APOSTROPHE || peeked === LEFT_PARENTHESIS || isNonPrintableCodePoint(peeked)) { - consumeBadURL(ctx ,reader); + consumeBadURL(ctx, reader); + + const representation = reader.representation(); + ctx.onParseError({ + message: 'Unexpected character while consuming a url token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.6. Consume a url token', + 'Unexpected U+0022 QUOTATION MARK ("), U+0027 APOSTROPHE (\'), U+0028 LEFT PARENTHESIS (() or non-printable code point', + ], + }); + return [ TokenType.BadURL, reader.representationString(), - ...reader.representation(), + ...representation, undefined, ]; } @@ -73,10 +126,23 @@ export function consumeUrlToken(ctx: Context, reader: CodePointReader): TokenURL } consumeBadURL(ctx, reader); + + const representation = reader.representation(); + ctx.onParseError({ + message: 'Invalid escape sequence while consuming a url token.', + start: representation[0], + end: representation[1], + state: [ + '4.3.6. Consume a url token', + 'U+005C REVERSE SOLIDUS (\\)', + 'The input stream does not start with a valid escape sequence', + ], + }); + return [ TokenType.BadURL, reader.representationString(), - ...reader.representation(), + ...representation, undefined, ]; } diff --git a/packages/css-tokenizer/src/interfaces/context.ts b/packages/css-tokenizer/src/interfaces/context.ts index 2cdbda5811..27eb77de68 100644 --- a/packages/css-tokenizer/src/interfaces/context.ts +++ b/packages/css-tokenizer/src/interfaces/context.ts @@ -1,3 +1,5 @@ +import { ParserError } from './error'; + export type Context = { - onParseError: (TokenizerError) => void + onParseError: (error: ParserError) => void } diff --git a/packages/css-tokenizer/src/interfaces/error.ts b/packages/css-tokenizer/src/interfaces/error.ts index aea86777c7..e8c6777458 100644 --- a/packages/css-tokenizer/src/interfaces/error.ts +++ b/packages/css-tokenizer/src/interfaces/error.ts @@ -1,5 +1,6 @@ -export type TokenizerError = { +export type ParserError = { message: string, start: number, end: number, + state: Array } diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 14c27a9156..5f08c6d70c 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -1,7 +1,6 @@ export enum TokenType { /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#comment-diagram */ Comment = 'comment', - Error = 'error', /** https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/#typedef-at-keyword-token */ AtKeyword = 'at-keyword-token', @@ -77,7 +76,6 @@ export type TokenComment = Token; export type TokenDelim = Token; export type TokenDimension = Token; export type TokenEOF = Token; -export type TokenError = Token; export type TokenFunction = Token; export type TokenHash = Token; export type TokenIdent = Token; @@ -106,7 +104,6 @@ export type CSSToken = TokenAtKeyword | TokenDelim | TokenDimension | TokenEOF | - TokenError | TokenFunction | TokenHash | TokenIdent | diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index ade6ac4f01..73c55974b4 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -3,7 +3,7 @@ import { checkIfThreeCodePointsWouldStartAnIdentSequence } from './checks/three- import { checkIfThreeCodePointsWouldStartANumber } from './checks/three-code-points-would-start-number'; import { checkIfTwoCodePointsStartAComment } from './checks/two-code-points-start-comment'; import { checkIfThreeCodePointsWouldStartCDC } from './checks/three-code-points-would-start-cdc'; -import { APOSTROPHE, COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, QUOTATION_MARK, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; +import { APOSTROPHE, COLON, COMMA, COMMERCIAL_AT, FULL_STOP, HYPHEN_MINUS, LEFT_CURLY_BRACKET, LEFT_PARENTHESIS, LEFT_SQUARE_BRACKET, LESS_THAN_SIGN, NUMBER_SIGN, PLUS_SIGN, QUOTATION_MARK, REVERSE_SOLIDUS, RIGHT_CURLY_BRACKET, RIGHT_PARENTHESIS, RIGHT_SQUARE_BRACKET, SEMICOLON } from './code-points/code-points'; import { isDigitCodePoint, isIdentStartCodePoint, isWhitespace } from './code-points/ranges'; import { consumeComment } from './consume/comment'; import { consumeHashToken } from './consume/hash-token'; @@ -14,12 +14,14 @@ import { CSSToken, TokenType } from './interfaces/token'; import { Reader } from './reader'; import { consumeStringToken } from './consume/string-token'; import { consumeIdentLikeToken } from './consume/ident-like-token'; +import { checkIfTwoCodePointsAreAValidEscape } from './checks/two-code-points-are-valid-escape'; +import { ParserError } from './interfaces/error'; interface Stringer { valueOf(): string } -export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false, onParseError?: (TokenizerError) => void }) { +export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false, onParseError?: (error: ParserError) => void }) { const css = input.css.valueOf(); const reader = new Reader(css); @@ -152,6 +154,30 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken }]; } + case REVERSE_SOLIDUS: { + if (checkIfTwoCodePointsAreAValidEscape(ctx, reader)) { + return consumeIdentLikeToken(ctx, reader); + } + + reader.readCodePoint(); + + const representation = reader.representation(); + ctx.onParseError({ + message: 'Invalid escape sequence after "\\"', + start: representation[0], + end: representation[1], + state: [ + '4.3.1. Consume a token', + 'U+005C REVERSE SOLIDUS (\\)', + 'The input stream does not start with a valid escape sequence', + ], + }); + + return [TokenType.Delim, reader.representationString(), ...representation, { + value: '\\', + }]; + } + default: break; } From bfae4bce179413b54d7e1848ff5857745bee83e4 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Tue, 20 Sep 2022 18:08:43 +0200 Subject: [PATCH 24/59] fixes and more tests --- .../src/checks/matches-url-ident.ts | 4 +- .../checks/two-code-points-start-comment.ts | 2 +- packages/css-tokenizer/src/tokenizer.ts | 5 - packages/css-tokenizer/test/token/basic.mjs | 171 ++++++++++++++++++ 4 files changed, 174 insertions(+), 8 deletions(-) diff --git a/packages/css-tokenizer/src/checks/matches-url-ident.ts b/packages/css-tokenizer/src/checks/matches-url-ident.ts index 4d9cb377fe..b8f7bd8291 100644 --- a/packages/css-tokenizer/src/checks/matches-url-ident.ts +++ b/packages/css-tokenizer/src/checks/matches-url-ident.ts @@ -16,11 +16,11 @@ export function checkIfCodePointsMatchURLIdent(ctx: Context, codePoints: Array Date: Tue, 20 Sep 2022 19:06:48 +0200 Subject: [PATCH 25/59] more tests --- packages/css-tokenizer/README.md | 26 + packages/css-tokenizer/test/test.mjs | 2 + .../css-tokenizer/test/token/benchmark.mjs | 818 + .../test/token/bootstrap-tokens.mjs | 373724 +++++++++++++++ .../css-tokenizer/test/token/bootstrap.mjs | 48 + 5 files changed, 374618 insertions(+) create mode 100644 packages/css-tokenizer/test/token/benchmark.mjs create mode 100644 packages/css-tokenizer/test/token/bootstrap-tokens.mjs create mode 100644 packages/css-tokenizer/test/token/bootstrap.mjs diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index a24952f892..9b85fffa31 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -13,3 +13,29 @@ Goals : - tokens must have the same interface as the PostCSS tokenizer. This does not mean that tokens will be equivalent or that the tokenizer will have the exact same interface. This will be a mashup of my previous work on a [CSS tokenizer in Go](https://github.com/romainmenke/css) and the API surface of the PostCSS tokenizer. + +Example : + +```js +import { tokenizer } from '@csstools/css-tokenizer'; + +const myCSS = `@media only screen and (min-width: 768rem) { + .foo { + content: 'Some content!' !important; + } +} +`; + +const t = tokenizer({ + css: myCSS, +}); + +while (true) { + const token = t.nextToken(); + if (token[0] === 'EOF-token') { + break; + } + + console.log(token); +} +``` diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 1e13201cdf..2c437e2053 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -5,6 +5,8 @@ import './consume/comment-token.mjs'; import './consume/numeric-token.mjs'; import './consume/number.mjs'; import './token/basic.mjs'; +// import './token/bootstrap.mjs'; +// import './token/benchmark.mjs'; function collectTokens(t) { const bag = []; diff --git a/packages/css-tokenizer/test/token/benchmark.mjs b/packages/css-tokenizer/test/token/benchmark.mjs new file mode 100644 index 0000000000..ca30048a8a --- /dev/null +++ b/packages/css-tokenizer/test/token/benchmark.mjs @@ -0,0 +1,818 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import { postcssTokenizer } from '@csstools/css-tokenizer'; + +function collectTokens(t) { + const bag = []; + // eslint-disable-next-line no-constant-condition + while (true) { + bag.push(t.nextToken()); + + if (!bag[bag.length - 1]) { + break; + } + + if (bag[bag.length - 1][0] === 'EOF-token') { + break; + } + } + + return bag; +} + +const a = []; +const b = []; + +for (let i = 0; i < 1000; i++) { + + { + const start = performance.now(); + const t = tokenizer({ + css: postcssPresetEnvSource(), + }); + + collectTokens(t); + a.push(performance.now() - start); + } + + { + const start = performance.now(); + const t = postcssTokenizer.tokenizer({ + css: postcssPresetEnvSource(), + }); + + collectTokens(t); + b.push(performance.now() - start); + } +} + +a.sort(function (a, b) { + return a - b; +}); +b.sort(function (a, b) { + return a - b; +}); + +console.log(` +[spec tokenizer]: + 1th : ${a[10]} + 50th : ${a[500]} + 95th : ${a[950]} + 99th : ${a[990]} + max : ${a[999]} + +tokens / ms + 50th : ${3771 / a[500]} + 95th : ${3771 / a[950]} + 99th : ${3771 / a[990]} + max : ${3771 / a[999]} + +[postcss tokenizer]: + 1th : ${b[10]} + 50th : ${b[500]} + 95th : ${b[950]} + 99th : ${b[990]} + max : ${b[999]} + +tokens / ms + 50th : ${3054 / b[500]} + 95th : ${3054 / b[950]} + 99th : ${3054 / b[990]} + max : ${3054 / b[999]} +`); + +function postcssPresetEnvSource() { + return `:root { + --color-black-alpha-40: rgba(0,0,0,.4); + --color-blue: #1f8dff; + --color-magenta: #ff2bf3; + --color-purple: #c566ff; + --color-gray: #f8f8f8; + --color-white: #fff; + --space-8: 8px; + --space-10: 10px; + --space-15: 15px; + --space-20: 20px; + --space-25: 25px; + --space-40: 40px; + --font-baseline: 400 100%/1.5; + --font-body: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif; + --font-code: monospace; + --font-size-18: 1.125rem; + --font-size-20: 1.25rem; + --font-size-26: 1.625rem; + --heading-size-from-medium: 5rem; + --heading-size: 2.5rem; + --t-slow: .3s; + --transition: cubic-bezier(0.250,0.460,0.450,0.940) +} + +@supports (color: color(display-p3 0 0 0)) { + :root { + --color-blue:color(display-p3 0.268 0.544 0.975); + --color-magenta: color(display-p3 0.96 0.264 0.926); + --color-purple: color(display-p3 0.723 0.419 0.985) + } +} + +.u-visually-hidden { + clip: rect(0 0 0 0)!important; + border: none!important; + height: 1px!important; + margin: -1px!important; + overflow: hidden!important; + padding: 0!important; + position: absolute!important; + white-space: nowrap!important; + width: 1px!important +} + +*,:after,:before { + box-sizing: inherit +} + +html { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: var(--font-baseline) var(--font-body); + font-size: 1rem; + scroll-behavior: auto; + text-rendering: optimizeLegibility +} + +@media screen and (prefers-reduced-motion:no-preference) { + html { + scroll-behavior: smooth + } +} + +body { + margin: 0 +} + +a { + color: inherit; + text-decoration: none +} + +nav ul { + list-style-type: none; + margin: 0; + padding: 0 +} + +pre { + box-sizing: border-box; + font: var(--font-baseline) var(--font-code); + max-width: 100%; + white-space: pre-wrap; + word-break: break-word +} + +[aria-current] { + font-weight: 500 +} + +.ppe-heading { + align-items: center; + background-image: linear-gradient(90deg,var(--color-purple),var(--color-blue)); + color: var(--color-white); + display: flex; + flex-wrap: wrap; + justify-content: space-between +} + +.ppe-heading-title-link { + font-size: var(--font-size-18); + font-weight: 400; + letter-spacing: -.02em; + margin: 0; + padding-left: var(--space-10); + white-space: nowrap +} + +@media (min-width: 370px) { + .ppe-heading-title-link { + font-size:var(--font-size-20) + } +} + +@media (min-width: 870px) { + .ppe-heading-title-link { + padding-left:var(--space-20) + } +} + +@media (min-width: 1024px) { + .ppe-heading-title-link { + font-size:var(--font-size-26); + padding: 0 var(--space-25) + } +} + +.ppe-heading-menu-list { + display: flex; + margin: 0; + padding: 0 +} + +.ppe-heading-menu-item { + display: inline-block +} + +.ppe-heading-menu-link { + align-items: center; + display: flex; + overflow: hidden; + padding: var(--space-8) var(--space-10); + transition: background-color var(--t-slow) var(--transition),color var(--t-slow) var(--transition) +} + +@media (min-width: 370px) { + .ppe-heading-menu-link { + padding:var(--space-8) var(--space-15) + } +} + +@media (min-width: 870px) { + .ppe-heading-menu-link { + padding:var(--space-20) var(--space-25) + } +} + +.ppe-heading-menu-link:hover { + background-color: #fff; + color: var(--color-magenta) +} + +@media (max-width: 639px) { + .ppe-heading-menu-link span { + display:none + } +} + +.ppe-heading-menu-link[aria-current=page] { + background-color: var(--color-black-alpha-40) +} + +.ppe-heading-menu-link svg { + fill: currentColor; + display: block; + height: 24px; + margin-right: 0; + width: 24px +} + +@media (min-width: 640px) { + .ppe-heading-menu-link svg { + margin-right:var(--space-20) + } +} + +@media (min-width: 870px) { + .ppe-heading-menu-link svg { + height:40px; + width: 40px + } +} + +.ppe-heading-menu-link:hover svg { + fill: url(#a) +} + +code[class*=language-],pre[class*=language-] { + word-wrap: normal; + background: #263238; + border-radius: 3px; + color: #c3cee3; + font-size: 1rem; + -webkit-hyphens: none; + hyphens: none; + line-height: 1.5; + -moz-tab-size: 2; + -o-tab-size: 2; + tab-size: 2; + text-align: left; + white-space: pre; + word-break: normal; + word-spacing: normal +} + +code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection { + background: #363636 +} + +code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection { + background: #363636 +} + +:not(pre)>code[class*=language-] { + border-radius: .2em; + padding: .1em; + white-space: normal +} + +pre[class*=language-] { + margin: 0; + overflow: auto; + padding: 1rem; + position: relative +} + +.language-css>code,.language-sass>code,.language-scss>code { + color: #fd9170 +} + +[class*=language-] .namespace { + opacity: .7 +} + +.token.atrule { + color: #c792ea +} + +.token.attr-name { + color: #ffcb6b +} + +.token.attr-value,.token.attribute { + color: #c3e88d +} + +.token.boolean { + color: #c792ea +} + +.token.builtin { + color: #ffcb6b +} + +.token.cdata,.token.char { + color: #80cbc4 +} + +.token.class { + color: #ffcb6b +} + +.token.class-name,.token.color { + color: #f2ff00 +} + +.token.comment { + color: #546e7a +} + +.token.constant { + color: #c792ea +} + +.token.deleted { + color: #f07178 +} + +.token.doctype { + color: #546e7a +} + +.token.entity { + color: #f07178 +} + +.token.function { + color: #c792ea +} + +.token.hexcode { + color: #f2ff00 +} + +.token.id,.token.important { + color: #c792ea; + font-weight: 700 +} + +.token.inserted { + color: #80cbc4 +} + +.token.keyword { + color: #c792ea; + font-style: italic +} + +.token.number { + color: #fd9170 +} + +.token.operator { + color: #89ddff +} + +.token.prolog { + color: #546e7a +} + +.token.property { + color: #80cbc4 +} + +.token.pseudo-class,.token.pseudo-element { + color: #c3e88d +} + +.token.punctuation { + color: #fff +} + +.token.regex { + color: #f2ff00 +} + +.token.selector { + color: #f07178 +} + +.token.string { + color: #c3e88d +} + +.token.symbol { + color: #c792ea +} + +.token.tag,.token.unit { + color: #f07178 +} + +.token.url { + color: #fd9170 +} + +.token.variable { + color: #f07178 +} + +.ppe-landing-hero { + background-image: linear-gradient(90deg,var(--color-purple),var(--color-blue)); + color: var(--color-white); + overflow: auto; + text-align: center +} + +.ppe-landing-container { + margin: 0 auto; + max-width: 65rem; + padding: 0 1rem +} + +.ppe-landing-title { + margin: 0 0 1.5rem +} + +.ppe-hero-cards { + grid-gap: 3rem; + display: grid; + gap: 3rem; + grid-template-columns: repeat(auto-fit,minmax(25rem,1fr)); + padding-bottom: 2rem +} + +.ppe-hero-card { + display: flex; + flex-direction: column; + max-height: 41.5rem; + text-align: left +} + +.ppe-hero-card-title { + font-weight: 500 +} + +.ppe-landing-getting-started { + background-color: var(--color-gray); + box-shadow: 0 -1px 3px 0 rgba(37,38,39,.03),0 1px 2px -5px rgba(37,38,39,.03),0 2px 5px -5px rgba(37,38,39,.05),0 4px 12px -5px rgba(37,38,39,.06),0 12px 15px -5px rgba(37,38,39,.08); + overflow: auto; + padding: 2rem 0 +} + +.ppe-landing-getting-started .ppe-getting-started-title { + text-align: center +} + +.ppe-landing-section { + overflow: auto; + padding: 2.5rem 0; + width: 100% +} + +@media (min-width: 870px) { + .ppe-landing-section { + padding:4rem 0 + } +} + +.ppe-landing-section .ppe-landing-container { + align-items: center; + display: flex; + flex-wrap: wrap +} + +@media (min-width: 870px) { + .ppe-landing-section .ppe-landing-container { + flex-wrap:nowrap + } +} + +.ppe-landing-section h2 { + margin-top: 0 +} + +.ppe-landing-section img { + height: auto; + max-width: 100%; + width: 300px +} + +.ppe-landing-section img.ppe-postcss-logo { + width: 250px +} + +.ppe-landing-section .ppe-section-decoration { + flex-shrink: 0; + margin-top: 2rem; + text-align: center; + width: 100% +} + +@media (min-width: 870px) { + .ppe-landing-section .ppe-section-decoration { + margin-top:0; + text-align: right; + width: 40% + } +} + +.ppe-landing-section:nth-child(odd) .ppe-landing-container { + flex-direction: row-reverse +} + +@media (min-width: 870px) { + .ppe-landing-section:nth-child(odd) .ppe-section-decoration { + text-align:left + } +} + +.ppe-word-rotate { + display: inline-block; + font-size: 1.125rem; + height: 1em; + list-style-type: none; + margin: 0; + padding: 0; + position: relative; + width: 12rem +} + +.ppe-word-rotate li { + bottom: 0; + height: 1em; + left: 0; + position: absolute; + transition: all .5s +} + +.ppe-latest-version { + margin-left: auto; + margin-right: auto +} + +.ppe-landing-content,.ppe-latest-version { + font-weight: 400; + max-width: 37em; + padding: 0 1em; + text-align: center +} + +.ppe-landing-content { + margin-bottom: 20px; + margin-top: 50px +} + +.ppe-latest-version { + font-size: 18px; + margin-bottom: 30px +} + +.ppe-landing-container a { + box-shadow: 0 1px 0 0 transparent; + color: #0078d6; + text-decoration: none +} + +.ppe-landing-container a:focus,.ppe-landing-container a:hover { + box-shadow: 0 1px 0 0 +} + +.ppe-deploys { + text-align: center +} + +.ppe-playground { + display: flex +} + +.ppe-codepen { + background-color: #1b2b34; + min-height: calc(100vh - var(--heading-size)); + width: 100% +} + +@media (min-width: 870px) { + .ppe-codepen { + min-height:calc(100vh - var(--heading-size-from-medium)) + } +} + +.ppe-features { + display: grid; + grid-template-areas: "aside" "list" +} + +@media (min-width: 870px) { + .ppe-features { + grid-template-areas:"aside list" + } +} + +.ppe-navigation { + background-color: #f7f7f7; + grid-area: aside; + padding: 0; + width: 300px +} + +@media (max-width: 1023px) { + .ppe-navigation { + width:200px + } +} + +@media (max-width: 869px) { + .ppe-navigation { + padding:25px 0; + width: auto + } +} + +@media (min-width: 870px) { + .ppe-navigation-sticky { + position:sticky; + top: 25px + } +} + +.ppe-navigation-sticky-overflow { + height: auto; + overflow-y: auto; + padding: 0 var(--space-10) +} + +@media (min-width: 870px) { + .ppe-navigation-sticky-overflow { + height:calc(100vh - var(--heading-size-from-medium)); + overflow-y: auto; + padding: var(--space-25) var(--space-20) + } +} + +@media (min-width: 1024px) { + .ppe-navigation-sticky-overflow { + padding:var(--space-25) + } +} + +.ppe-navigation-select { + display: block; + margin: 10px 0 20px; + width: 100px +} + +@media (min-width: 870px) { + .ppe-navigation-select { + width:100% + } +} + +.ppe-menu-link { + color: #2b2b2b; + display: block; + font-size: 14px; + font-style: normal; + line-height: 1.285; + margin: 2px 0; + padding: 7px 0 +} + +.ppe-menu-link:focus,.ppe-menu-link:hover,.ppe-menu-link[aria-current] { + color: #000; + text-decoration: underline +} + +.ppe-features-list { + grid-area: list; + padding: 0 75px 50px +} + +@media (max-width: 1023px) { + .ppe-features-list { + padding-left:20px; + padding-right: 20px + } +} + +.ppe-sidebar-menu { + box-shadow: 0 -1px 0 0 #ddd; + margin-top: 15px; + padding-top: 15px +} + +.ppe-feature { + margin: 0 +} + +.ppe-feature-heading { + padding: 50px 0 0; + word-break: break-word +} + +.ppe-feature-title { + color: #3c3c3c; + font-size: 32px; + font-weight: 400; + letter-spacing: -.02em; + line-height: 1.25; + margin: 0 auto 10px 0 +} + +.ppe-feature-heading-link-list { + display: flex; + flex-wrap: wrap +} + +.ppe-feature-heading-link { + border-radius: 2px; + flex-shrink: 0; + font-size: 10px; + font-weight: 600; + letter-spacing: .08em; + margin-bottom: 5px; + padding: 5px 10px; + text-transform: uppercase +} + +.ppe-feature-heading-link:not(:last-child) { + margin-right: 10px +} + +.ppe-feature-heading-stage { + color: #fff +} + +.ppe-feature-heading-stage[data-stage="0"] { + background-color: #414141 +} + +.ppe-feature-heading-stage[data-stage="1"] { + background-color: #ed782a; + color: #000 +} + +.ppe-feature-heading-stage[data-stage="2"] { + background-color: #899c1f; + color: #000 +} + +.ppe-feature-heading-stage[data-stage="3"] { + background-color: #3e7817 +} + +.ppe-feature-heading-stage[data-stage="4"] { + background-color: #005a9c +} + +.ppe-feature-heading-pluginLink,.ppe-feature-heading-specLink { + background-color: #eee; + color: #000 +} + +.ppe-feature-heading a:not(.ppe-feature-heading-stage):focus,.ppe-feature-heading a:not(.ppe-feature-heading-stage):hover,.ppe-feature-heading:target { + color: #3095ff +} + +.ppe-feature-description { + font-weight: 300 +} +`; +} diff --git a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs new file mode 100644 index 0000000000..dd55a71846 --- /dev/null +++ b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs @@ -0,0 +1,373724 @@ +/* eslint-disable */ +export const bootstrapTokens = [ + [ + "at-keyword-token", + "@charset", + 0, + 7, + { + "value": "charset" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "string-token", + "\"UTF-8\"", + 9, + 15, + { + "value": "UTF-8" + } + ], + [ + "semicolon-token", + ";", + 16, + 16, + null + ], + [ + "colon-token", + ":", + 231, + 231, + null + ], + [ + "ident-token", + "root", + 232, + 235, + { + "value": "root" + } + ], + [ + "{-token", + "{", + 236, + 236, + null + ], + [ + "delim-token", + "-", + 237, + 237, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 238, + 238, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-blue", + 239, + 245, + { + "value": "bs-blue" + } + ], + [ + "colon-token", + ":", + 246, + 246, + null + ], + [ + "hash-token", + "#0d6efd", + 247, + 253, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 254, + 254, + null + ], + [ + "delim-token", + "-", + 255, + 255, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 256, + 256, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-indigo", + 257, + 265, + { + "value": "bs-indigo" + } + ], + [ + "colon-token", + ":", + 266, + 266, + null + ], + [ + "hash-token", + "#6610f2", + 267, + 273, + { + "value": "6610f2", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 274, + 274, + null + ], + [ + "delim-token", + "-", + 275, + 275, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 276, + 276, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-purple", + 277, + 285, + { + "value": "bs-purple" + } + ], + [ + "colon-token", + ":", + 286, + 286, + null + ], + [ + "hash-token", + "#6f42c1", + 287, + 293, + { + "value": "6f42c1", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 294, + 294, + null + ], + [ + "delim-token", + "-", + 295, + 295, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 296, + 296, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pink", + 297, + 303, + { + "value": "bs-pink" + } + ], + [ + "colon-token", + ":", + 304, + 304, + null + ], + [ + "hash-token", + "#d63384", + 305, + 311, + { + "value": "d63384", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 312, + 312, + null + ], + [ + "delim-token", + "-", + 313, + 313, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 314, + 314, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-red", + 315, + 320, + { + "value": "bs-red" + } + ], + [ + "colon-token", + ":", + 321, + 321, + null + ], + [ + "hash-token", + "#dc3545", + 322, + 328, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 329, + 329, + null + ], + [ + "delim-token", + "-", + 330, + 330, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 331, + 331, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-orange", + 332, + 340, + { + "value": "bs-orange" + } + ], + [ + "colon-token", + ":", + 341, + 341, + null + ], + [ + "hash-token", + "#fd7e14", + 342, + 348, + { + "value": "fd7e14", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 349, + 349, + null + ], + [ + "delim-token", + "-", + 350, + 350, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 351, + 351, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-yellow", + 352, + 360, + { + "value": "bs-yellow" + } + ], + [ + "colon-token", + ":", + 361, + 361, + null + ], + [ + "hash-token", + "#ffc107", + 362, + 368, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 369, + 369, + null + ], + [ + "delim-token", + "-", + 370, + 370, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 371, + 371, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-green", + 372, + 379, + { + "value": "bs-green" + } + ], + [ + "colon-token", + ":", + 380, + 380, + null + ], + [ + "hash-token", + "#198754", + 381, + 387, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 388, + 388, + null + ], + [ + "delim-token", + "-", + 389, + 389, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 390, + 390, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-teal", + 391, + 397, + { + "value": "bs-teal" + } + ], + [ + "colon-token", + ":", + 398, + 398, + null + ], + [ + "hash-token", + "#20c997", + 399, + 405, + { + "value": "20c997", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 406, + 406, + null + ], + [ + "delim-token", + "-", + 407, + 407, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 408, + 408, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-cyan", + 409, + 415, + { + "value": "bs-cyan" + } + ], + [ + "colon-token", + ":", + 416, + 416, + null + ], + [ + "hash-token", + "#0dcaf0", + 417, + 423, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 424, + 424, + null + ], + [ + "delim-token", + "-", + 425, + 425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 426, + 426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-black", + 427, + 434, + { + "value": "bs-black" + } + ], + [ + "colon-token", + ":", + 435, + 435, + null + ], + [ + "hash-token", + "#000", + 436, + 439, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 440, + 440, + null + ], + [ + "delim-token", + "-", + 441, + 441, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 442, + 442, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-white", + 443, + 450, + { + "value": "bs-white" + } + ], + [ + "colon-token", + ":", + 451, + 451, + null + ], + [ + "hash-token", + "#fff", + 452, + 455, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 456, + 456, + null + ], + [ + "delim-token", + "-", + 457, + 457, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 458, + 458, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray", + 459, + 465, + { + "value": "bs-gray" + } + ], + [ + "colon-token", + ":", + 466, + 466, + null + ], + [ + "hash-token", + "#6c757d", + 467, + 473, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 474, + 474, + null + ], + [ + "delim-token", + "-", + 475, + 475, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 476, + 476, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-dark", + 477, + 488, + { + "value": "bs-gray-dark" + } + ], + [ + "colon-token", + ":", + 489, + 489, + null + ], + [ + "hash-token", + "#343a40", + 490, + 496, + { + "value": "343a40", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 497, + 497, + null + ], + [ + "delim-token", + "-", + 498, + 498, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 499, + 499, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-100", + 500, + 510, + { + "value": "bs-gray-100" + } + ], + [ + "colon-token", + ":", + 511, + 511, + null + ], + [ + "hash-token", + "#f8f9fa", + 512, + 518, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 519, + 519, + null + ], + [ + "delim-token", + "-", + 520, + 520, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 521, + 521, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-200", + 522, + 532, + { + "value": "bs-gray-200" + } + ], + [ + "colon-token", + ":", + 533, + 533, + null + ], + [ + "hash-token", + "#e9ecef", + 534, + 540, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 541, + 541, + null + ], + [ + "delim-token", + "-", + 542, + 542, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 543, + 543, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-300", + 544, + 554, + { + "value": "bs-gray-300" + } + ], + [ + "colon-token", + ":", + 555, + 555, + null + ], + [ + "hash-token", + "#dee2e6", + 556, + 562, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 563, + 563, + null + ], + [ + "delim-token", + "-", + 564, + 564, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 565, + 565, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-400", + 566, + 576, + { + "value": "bs-gray-400" + } + ], + [ + "colon-token", + ":", + 577, + 577, + null + ], + [ + "hash-token", + "#ced4da", + 578, + 584, + { + "value": "ced4da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 585, + 585, + null + ], + [ + "delim-token", + "-", + 586, + 586, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 587, + 587, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-500", + 588, + 598, + { + "value": "bs-gray-500" + } + ], + [ + "colon-token", + ":", + 599, + 599, + null + ], + [ + "hash-token", + "#adb5bd", + 600, + 606, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 607, + 607, + null + ], + [ + "delim-token", + "-", + 608, + 608, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 609, + 609, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-600", + 610, + 620, + { + "value": "bs-gray-600" + } + ], + [ + "colon-token", + ":", + 621, + 621, + null + ], + [ + "hash-token", + "#6c757d", + 622, + 628, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 629, + 629, + null + ], + [ + "delim-token", + "-", + 630, + 630, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 631, + 631, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-700", + 632, + 642, + { + "value": "bs-gray-700" + } + ], + [ + "colon-token", + ":", + 643, + 643, + null + ], + [ + "hash-token", + "#495057", + 644, + 650, + { + "value": "495057", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 651, + 651, + null + ], + [ + "delim-token", + "-", + 652, + 652, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 653, + 653, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-800", + 654, + 664, + { + "value": "bs-gray-800" + } + ], + [ + "colon-token", + ":", + 665, + 665, + null + ], + [ + "hash-token", + "#343a40", + 666, + 672, + { + "value": "343a40", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 673, + 673, + null + ], + [ + "delim-token", + "-", + 674, + 674, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 675, + 675, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gray-900", + 676, + 686, + { + "value": "bs-gray-900" + } + ], + [ + "colon-token", + ":", + 687, + 687, + null + ], + [ + "hash-token", + "#212529", + 688, + 694, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 695, + 695, + null + ], + [ + "delim-token", + "-", + 696, + 696, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 697, + 697, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-primary", + 698, + 707, + { + "value": "bs-primary" + } + ], + [ + "colon-token", + ":", + 708, + 708, + null + ], + [ + "hash-token", + "#0d6efd", + 709, + 715, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 716, + 716, + null + ], + [ + "delim-token", + "-", + 717, + 717, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 718, + 718, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-secondary", + 719, + 730, + { + "value": "bs-secondary" + } + ], + [ + "colon-token", + ":", + 731, + 731, + null + ], + [ + "hash-token", + "#6c757d", + 732, + 738, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 739, + 739, + null + ], + [ + "delim-token", + "-", + 740, + 740, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 741, + 741, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-success", + 742, + 751, + { + "value": "bs-success" + } + ], + [ + "colon-token", + ":", + 752, + 752, + null + ], + [ + "hash-token", + "#198754", + 753, + 759, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 760, + 760, + null + ], + [ + "delim-token", + "-", + 761, + 761, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 762, + 762, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-info", + 763, + 769, + { + "value": "bs-info" + } + ], + [ + "colon-token", + ":", + 770, + 770, + null + ], + [ + "hash-token", + "#0dcaf0", + 771, + 777, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 778, + 778, + null + ], + [ + "delim-token", + "-", + 779, + 779, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 780, + 780, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-warning", + 781, + 790, + { + "value": "bs-warning" + } + ], + [ + "colon-token", + ":", + 791, + 791, + null + ], + [ + "hash-token", + "#ffc107", + 792, + 798, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 799, + 799, + null + ], + [ + "delim-token", + "-", + 800, + 800, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 801, + 801, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-danger", + 802, + 810, + { + "value": "bs-danger" + } + ], + [ + "colon-token", + ":", + 811, + 811, + null + ], + [ + "hash-token", + "#dc3545", + 812, + 818, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 819, + 819, + null + ], + [ + "delim-token", + "-", + 820, + 820, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 821, + 821, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-light", + 822, + 829, + { + "value": "bs-light" + } + ], + [ + "colon-token", + ":", + 830, + 830, + null + ], + [ + "hash-token", + "#f8f9fa", + 831, + 837, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 838, + 838, + null + ], + [ + "delim-token", + "-", + 839, + 839, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 840, + 840, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dark", + 841, + 847, + { + "value": "bs-dark" + } + ], + [ + "colon-token", + ":", + 848, + 848, + null + ], + [ + "hash-token", + "#212529", + 849, + 855, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 856, + 856, + null + ], + [ + "delim-token", + "-", + 857, + 857, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 858, + 858, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-primary-rgb", + 859, + 872, + { + "value": "bs-primary-rgb" + } + ], + [ + "colon-token", + ":", + 873, + 873, + null + ], + [ + "number-token", + "13", + 874, + 875, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 876, + 876, + null + ], + [ + "number-token", + "110", + 877, + 879, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 880, + 880, + null + ], + [ + "number-token", + "253", + 881, + 883, + { + "value": 253, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 884, + 884, + null + ], + [ + "delim-token", + "-", + 885, + 885, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 886, + 886, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-secondary-rgb", + 887, + 902, + { + "value": "bs-secondary-rgb" + } + ], + [ + "colon-token", + ":", + 903, + 903, + null + ], + [ + "number-token", + "108", + 904, + 906, + { + "value": 108, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 907, + 907, + null + ], + [ + "number-token", + "117", + 908, + 910, + { + "value": 117, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 911, + 911, + null + ], + [ + "number-token", + "125", + 912, + 914, + { + "value": 125, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 915, + 915, + null + ], + [ + "delim-token", + "-", + 916, + 916, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 917, + 917, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-success-rgb", + 918, + 931, + { + "value": "bs-success-rgb" + } + ], + [ + "colon-token", + ":", + 932, + 932, + null + ], + [ + "number-token", + "25", + 933, + 934, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 935, + 935, + null + ], + [ + "number-token", + "135", + 936, + 938, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 939, + 939, + null + ], + [ + "number-token", + "84", + 940, + 941, + { + "value": 84, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 942, + 942, + null + ], + [ + "delim-token", + "-", + 943, + 943, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 944, + 944, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-info-rgb", + 945, + 955, + { + "value": "bs-info-rgb" + } + ], + [ + "colon-token", + ":", + 956, + 956, + null + ], + [ + "number-token", + "13", + 957, + 958, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 959, + 959, + null + ], + [ + "number-token", + "202", + 960, + 962, + { + "value": 202, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 963, + 963, + null + ], + [ + "number-token", + "240", + 964, + 966, + { + "value": 240, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 967, + 967, + null + ], + [ + "delim-token", + "-", + 968, + 968, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 969, + 969, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-warning-rgb", + 970, + 983, + { + "value": "bs-warning-rgb" + } + ], + [ + "colon-token", + ":", + 984, + 984, + null + ], + [ + "number-token", + "255", + 985, + 987, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 988, + 988, + null + ], + [ + "number-token", + "193", + 989, + 991, + { + "value": 193, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 992, + 992, + null + ], + [ + "number-token", + "7", + 993, + 993, + { + "value": 7, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 994, + 994, + null + ], + [ + "delim-token", + "-", + 995, + 995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 996, + 996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-danger-rgb", + 997, + 1009, + { + "value": "bs-danger-rgb" + } + ], + [ + "colon-token", + ":", + 1010, + 1010, + null + ], + [ + "number-token", + "220", + 1011, + 1013, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1014, + 1014, + null + ], + [ + "number-token", + "53", + 1015, + 1016, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1017, + 1017, + null + ], + [ + "number-token", + "69", + 1018, + 1019, + { + "value": 69, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1020, + 1020, + null + ], + [ + "delim-token", + "-", + 1021, + 1021, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1022, + 1022, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-light-rgb", + 1023, + 1034, + { + "value": "bs-light-rgb" + } + ], + [ + "colon-token", + ":", + 1035, + 1035, + null + ], + [ + "number-token", + "248", + 1036, + 1038, + { + "value": 248, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1039, + 1039, + null + ], + [ + "number-token", + "249", + 1040, + 1042, + { + "value": 249, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1043, + 1043, + null + ], + [ + "number-token", + "250", + 1044, + 1046, + { + "value": 250, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1047, + 1047, + null + ], + [ + "delim-token", + "-", + 1048, + 1048, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1049, + 1049, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dark-rgb", + 1050, + 1060, + { + "value": "bs-dark-rgb" + } + ], + [ + "colon-token", + ":", + 1061, + 1061, + null + ], + [ + "number-token", + "33", + 1062, + 1063, + { + "value": 33, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1064, + 1064, + null + ], + [ + "number-token", + "37", + 1065, + 1066, + { + "value": 37, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1067, + 1067, + null + ], + [ + "number-token", + "41", + 1068, + 1069, + { + "value": 41, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1070, + 1070, + null + ], + [ + "delim-token", + "-", + 1071, + 1071, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1072, + 1072, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-white-rgb", + 1073, + 1084, + { + "value": "bs-white-rgb" + } + ], + [ + "colon-token", + ":", + 1085, + 1085, + null + ], + [ + "number-token", + "255", + 1086, + 1088, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1089, + 1089, + null + ], + [ + "number-token", + "255", + 1090, + 1092, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1093, + 1093, + null + ], + [ + "number-token", + "255", + 1094, + 1096, + { + "value": 255, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1097, + 1097, + null + ], + [ + "delim-token", + "-", + 1098, + 1098, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1099, + 1099, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-black-rgb", + 1100, + 1111, + { + "value": "bs-black-rgb" + } + ], + [ + "colon-token", + ":", + 1112, + 1112, + null + ], + [ + "number-token", + "0", + 1113, + 1113, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1114, + 1114, + null + ], + [ + "number-token", + "0", + 1115, + 1115, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1116, + 1116, + null + ], + [ + "number-token", + "0", + 1117, + 1117, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1118, + 1118, + null + ], + [ + "delim-token", + "-", + 1119, + 1119, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1120, + 1120, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color-rgb", + 1121, + 1137, + { + "value": "bs-body-color-rgb" + } + ], + [ + "colon-token", + ":", + 1138, + 1138, + null + ], + [ + "number-token", + "33", + 1139, + 1140, + { + "value": 33, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1141, + 1141, + null + ], + [ + "number-token", + "37", + 1142, + 1143, + { + "value": 37, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1144, + 1144, + null + ], + [ + "number-token", + "41", + 1145, + 1146, + { + "value": 41, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1147, + 1147, + null + ], + [ + "delim-token", + "-", + 1148, + 1148, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1149, + 1149, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-bg-rgb", + 1150, + 1163, + { + "value": "bs-body-bg-rgb" + } + ], + [ + "colon-token", + ":", + 1164, + 1164, + null + ], + [ + "number-token", + "255", + 1165, + 1167, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1168, + 1168, + null + ], + [ + "number-token", + "255", + 1169, + 1171, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1172, + 1172, + null + ], + [ + "number-token", + "255", + 1173, + 1175, + { + "value": 255, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1176, + 1176, + null + ], + [ + "delim-token", + "-", + 1177, + 1177, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1178, + 1178, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-sans-serif", + 1179, + 1196, + { + "value": "bs-font-sans-serif" + } + ], + [ + "colon-token", + ":", + 1197, + 1197, + null + ], + [ + "ident-token", + "system-ui", + 1198, + 1206, + { + "value": "system-ui" + } + ], + [ + "comma-token", + ",", + 1207, + 1207, + null + ], + [ + "delim-token", + "-", + 1208, + 1208, + { + "value": "-" + } + ], + [ + "ident-token", + "apple-system", + 1209, + 1220, + { + "value": "apple-system" + } + ], + [ + "comma-token", + ",", + 1221, + 1221, + null + ], + [ + "string-token", + "\"Segoe UI\"", + 1222, + 1231, + { + "value": "Segoe UI" + } + ], + [ + "comma-token", + ",", + 1232, + 1232, + null + ], + [ + "ident-token", + "Roboto", + 1233, + 1238, + { + "value": "Roboto" + } + ], + [ + "comma-token", + ",", + 1239, + 1239, + null + ], + [ + "string-token", + "\"Helvetica Neue\"", + 1240, + 1255, + { + "value": "Helvetica Neue" + } + ], + [ + "comma-token", + ",", + 1256, + 1256, + null + ], + [ + "string-token", + "\"Noto Sans\"", + 1257, + 1267, + { + "value": "Noto Sans" + } + ], + [ + "comma-token", + ",", + 1268, + 1268, + null + ], + [ + "string-token", + "\"Liberation Sans\"", + 1269, + 1285, + { + "value": "Liberation Sans" + } + ], + [ + "comma-token", + ",", + 1286, + 1286, + null + ], + [ + "ident-token", + "Arial", + 1287, + 1291, + { + "value": "Arial" + } + ], + [ + "comma-token", + ",", + 1292, + 1292, + null + ], + [ + "ident-token", + "sans-serif", + 1293, + 1302, + { + "value": "sans-serif" + } + ], + [ + "comma-token", + ",", + 1303, + 1303, + null + ], + [ + "string-token", + "\"Apple Color Emoji\"", + 1304, + 1322, + { + "value": "Apple Color Emoji" + } + ], + [ + "comma-token", + ",", + 1323, + 1323, + null + ], + [ + "string-token", + "\"Segoe UI Emoji\"", + 1324, + 1339, + { + "value": "Segoe UI Emoji" + } + ], + [ + "comma-token", + ",", + 1340, + 1340, + null + ], + [ + "string-token", + "\"Segoe UI Symbol\"", + 1341, + 1357, + { + "value": "Segoe UI Symbol" + } + ], + [ + "comma-token", + ",", + 1358, + 1358, + null + ], + [ + "string-token", + "\"Noto Color Emoji\"", + 1359, + 1376, + { + "value": "Noto Color Emoji" + } + ], + [ + "semicolon-token", + ";", + 1377, + 1377, + null + ], + [ + "delim-token", + "-", + 1378, + 1378, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1379, + 1379, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-monospace", + 1380, + 1396, + { + "value": "bs-font-monospace" + } + ], + [ + "colon-token", + ":", + 1397, + 1397, + null + ], + [ + "ident-token", + "SFMono-Regular", + 1398, + 1411, + { + "value": "SFMono-Regular" + } + ], + [ + "comma-token", + ",", + 1412, + 1412, + null + ], + [ + "ident-token", + "Menlo", + 1413, + 1417, + { + "value": "Menlo" + } + ], + [ + "comma-token", + ",", + 1418, + 1418, + null + ], + [ + "ident-token", + "Monaco", + 1419, + 1424, + { + "value": "Monaco" + } + ], + [ + "comma-token", + ",", + 1425, + 1425, + null + ], + [ + "ident-token", + "Consolas", + 1426, + 1433, + { + "value": "Consolas" + } + ], + [ + "comma-token", + ",", + 1434, + 1434, + null + ], + [ + "string-token", + "\"Liberation Mono\"", + 1435, + 1451, + { + "value": "Liberation Mono" + } + ], + [ + "comma-token", + ",", + 1452, + 1452, + null + ], + [ + "string-token", + "\"Courier New\"", + 1453, + 1465, + { + "value": "Courier New" + } + ], + [ + "comma-token", + ",", + 1466, + 1466, + null + ], + [ + "ident-token", + "monospace", + 1467, + 1475, + { + "value": "monospace" + } + ], + [ + "semicolon-token", + ";", + 1476, + 1476, + null + ], + [ + "delim-token", + "-", + 1477, + 1477, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1478, + 1478, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 1479, + 1489, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 1490, + 1490, + null + ], + [ + "function-token", + "linear-gradient(", + 1491, + 1506, + { + "value": "linear-gradient" + } + ], + [ + "dimension-token", + "180deg", + 1507, + 1512, + { + "value": 180, + "type": "integer", + "unit": "deg" + } + ], + [ + "comma-token", + ",", + 1513, + 1513, + null + ], + [ + "whitespace-token", + " ", + 1514, + 1514, + null + ], + [ + "function-token", + "rgba(", + 1515, + 1519, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 1520, + 1522, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1523, + 1523, + null + ], + [ + "whitespace-token", + " ", + 1524, + 1524, + null + ], + [ + "number-token", + "255", + 1525, + 1527, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1528, + 1528, + null + ], + [ + "whitespace-token", + " ", + 1529, + 1529, + null + ], + [ + "number-token", + "255", + 1530, + 1532, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1533, + 1533, + null + ], + [ + "whitespace-token", + " ", + 1534, + 1534, + null + ], + [ + "number-token", + "0.15", + 1535, + 1538, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 1539, + 1539, + null + ], + [ + "comma-token", + ",", + 1540, + 1540, + null + ], + [ + "whitespace-token", + " ", + 1541, + 1541, + null + ], + [ + "function-token", + "rgba(", + 1542, + 1546, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 1547, + 1549, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1550, + 1550, + null + ], + [ + "whitespace-token", + " ", + 1551, + 1551, + null + ], + [ + "number-token", + "255", + 1552, + 1554, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1555, + 1555, + null + ], + [ + "whitespace-token", + " ", + 1556, + 1556, + null + ], + [ + "number-token", + "255", + 1557, + 1559, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1560, + 1560, + null + ], + [ + "whitespace-token", + " ", + 1561, + 1561, + null + ], + [ + "number-token", + "0", + 1562, + 1562, + { + "value": 0, + "type": "integer" + } + ], + [ + ")-token", + ")", + 1563, + 1563, + null + ], + [ + ")-token", + ")", + 1564, + 1564, + null + ], + [ + "semicolon-token", + ";", + 1565, + 1565, + null + ], + [ + "delim-token", + "-", + 1566, + 1566, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1567, + 1567, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-family", + 1568, + 1586, + { + "value": "bs-body-font-family" + } + ], + [ + "colon-token", + ":", + 1587, + 1587, + null + ], + [ + "function-token", + "var(", + 1588, + 1591, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 1592, + 1592, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1593, + 1593, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-sans-serif", + 1594, + 1611, + { + "value": "bs-font-sans-serif" + } + ], + [ + ")-token", + ")", + 1612, + 1612, + null + ], + [ + "semicolon-token", + ";", + 1613, + 1613, + null + ], + [ + "delim-token", + "-", + 1614, + 1614, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1615, + 1615, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-size", + 1616, + 1632, + { + "value": "bs-body-font-size" + } + ], + [ + "colon-token", + ":", + 1633, + 1633, + null + ], + [ + "dimension-token", + "1rem", + 1634, + 1637, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1638, + 1638, + null + ], + [ + "delim-token", + "-", + 1639, + 1639, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1640, + 1640, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-weight", + 1641, + 1659, + { + "value": "bs-body-font-weight" + } + ], + [ + "colon-token", + ":", + 1660, + 1660, + null + ], + [ + "number-token", + "400", + 1661, + 1663, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 1664, + 1664, + null + ], + [ + "delim-token", + "-", + 1665, + 1665, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1666, + 1666, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-line-height", + 1667, + 1685, + { + "value": "bs-body-line-height" + } + ], + [ + "colon-token", + ":", + 1686, + 1686, + null + ], + [ + "number-token", + "1.5", + 1687, + 1689, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 1690, + 1690, + null + ], + [ + "delim-token", + "-", + 1691, + 1691, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1692, + 1692, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 1693, + 1705, + { + "value": "bs-body-color" + } + ], + [ + "colon-token", + ":", + 1706, + 1706, + null + ], + [ + "hash-token", + "#212529", + 1707, + 1713, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 1714, + 1714, + null + ], + [ + "delim-token", + "-", + 1715, + 1715, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1716, + 1716, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-bg", + 1717, + 1726, + { + "value": "bs-body-bg" + } + ], + [ + "colon-token", + ":", + 1727, + 1727, + null + ], + [ + "hash-token", + "#fff", + 1728, + 1731, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 1732, + 1732, + null + ], + [ + "delim-token", + "-", + 1733, + 1733, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1734, + 1734, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 1735, + 1749, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 1750, + 1750, + null + ], + [ + "dimension-token", + "1px", + 1751, + 1753, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 1754, + 1754, + null + ], + [ + "delim-token", + "-", + 1755, + 1755, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1756, + 1756, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 1757, + 1771, + { + "value": "bs-border-style" + } + ], + [ + "colon-token", + ":", + 1772, + 1772, + null + ], + [ + "ident-token", + "solid", + 1773, + 1777, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 1778, + 1778, + null + ], + [ + "delim-token", + "-", + 1779, + 1779, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1780, + 1780, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 1781, + 1795, + { + "value": "bs-border-color" + } + ], + [ + "colon-token", + ":", + 1796, + 1796, + null + ], + [ + "hash-token", + "#dee2e6", + 1797, + 1803, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 1804, + 1804, + null + ], + [ + "delim-token", + "-", + 1805, + 1805, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1806, + 1806, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 1807, + 1833, + { + "value": "bs-border-color-translucent" + } + ], + [ + "colon-token", + ":", + 1834, + 1834, + null + ], + [ + "function-token", + "rgba(", + 1835, + 1839, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 1840, + 1840, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1841, + 1841, + null + ], + [ + "whitespace-token", + " ", + 1842, + 1842, + null + ], + [ + "number-token", + "0", + 1843, + 1843, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1844, + 1844, + null + ], + [ + "whitespace-token", + " ", + 1845, + 1845, + null + ], + [ + "number-token", + "0", + 1846, + 1846, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 1847, + 1847, + null + ], + [ + "whitespace-token", + " ", + 1848, + 1848, + null + ], + [ + "number-token", + "0.175", + 1849, + 1853, + { + "value": 0.175, + "type": "number" + } + ], + [ + ")-token", + ")", + 1854, + 1854, + null + ], + [ + "semicolon-token", + ";", + 1855, + 1855, + null + ], + [ + "delim-token", + "-", + 1856, + 1856, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1857, + 1857, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 1858, + 1873, + { + "value": "bs-border-radius" + } + ], + [ + "colon-token", + ":", + 1874, + 1874, + null + ], + [ + "dimension-token", + "0.375rem", + 1875, + 1882, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1883, + 1883, + null + ], + [ + "delim-token", + "-", + 1884, + 1884, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1885, + 1885, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-sm", + 1886, + 1904, + { + "value": "bs-border-radius-sm" + } + ], + [ + "colon-token", + ":", + 1905, + 1905, + null + ], + [ + "dimension-token", + "0.25rem", + 1906, + 1912, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1913, + 1913, + null + ], + [ + "delim-token", + "-", + 1914, + 1914, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1915, + 1915, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-lg", + 1916, + 1934, + { + "value": "bs-border-radius-lg" + } + ], + [ + "colon-token", + ":", + 1935, + 1935, + null + ], + [ + "dimension-token", + "0.5rem", + 1936, + 1941, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1942, + 1942, + null + ], + [ + "delim-token", + "-", + 1943, + 1943, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1944, + 1944, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-xl", + 1945, + 1963, + { + "value": "bs-border-radius-xl" + } + ], + [ + "colon-token", + ":", + 1964, + 1964, + null + ], + [ + "dimension-token", + "1rem", + 1965, + 1968, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1969, + 1969, + null + ], + [ + "delim-token", + "-", + 1970, + 1970, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1971, + 1971, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-2xl", + 1972, + 1991, + { + "value": "bs-border-radius-2xl" + } + ], + [ + "colon-token", + ":", + 1992, + 1992, + null + ], + [ + "dimension-token", + "2rem", + 1993, + 1996, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 1997, + 1997, + null + ], + [ + "delim-token", + "-", + 1998, + 1998, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 1999, + 1999, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-pill", + 2000, + 2020, + { + "value": "bs-border-radius-pill" + } + ], + [ + "colon-token", + ":", + 2021, + 2021, + null + ], + [ + "dimension-token", + "50rem", + 2022, + 2026, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 2027, + 2027, + null + ], + [ + "delim-token", + "-", + 2028, + 2028, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2029, + 2029, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-color", + 2030, + 2042, + { + "value": "bs-link-color" + } + ], + [ + "colon-token", + ":", + 2043, + 2043, + null + ], + [ + "hash-token", + "#0d6efd", + 2044, + 2050, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 2051, + 2051, + null + ], + [ + "delim-token", + "-", + 2052, + 2052, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2053, + 2053, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 2054, + 2072, + { + "value": "bs-link-hover-color" + } + ], + [ + "colon-token", + ":", + 2073, + 2073, + null + ], + [ + "hash-token", + "#0a58ca", + 2074, + 2080, + { + "value": "0a58ca", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 2081, + 2081, + null + ], + [ + "delim-token", + "-", + 2082, + 2082, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2083, + 2083, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-code-color", + 2084, + 2096, + { + "value": "bs-code-color" + } + ], + [ + "colon-token", + ":", + 2097, + 2097, + null + ], + [ + "hash-token", + "#d63384", + 2098, + 2104, + { + "value": "d63384", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 2105, + 2105, + null + ], + [ + "delim-token", + "-", + 2106, + 2106, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2107, + 2107, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-highlight-bg", + 2108, + 2122, + { + "value": "bs-highlight-bg" + } + ], + [ + "colon-token", + ":", + 2123, + 2123, + null + ], + [ + "hash-token", + "#fff3cd", + 2124, + 2130, + { + "value": "fff3cd", + "type": "id" + } + ], + [ + "}-token", + "}", + 2131, + 2131, + null + ], + [ + "delim-token", + "*", + 2132, + 2132, + { + "value": "*" + } + ], + [ + "comma-token", + ",", + 2133, + 2133, + null + ], + [ + "colon-token", + ":", + 2134, + 2134, + null + ], + [ + "colon-token", + ":", + 2135, + 2135, + null + ], + [ + "ident-token", + "after", + 2136, + 2140, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 2141, + 2141, + null + ], + [ + "colon-token", + ":", + 2142, + 2142, + null + ], + [ + "colon-token", + ":", + 2143, + 2143, + null + ], + [ + "ident-token", + "before", + 2144, + 2149, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 2150, + 2150, + null + ], + [ + "ident-token", + "box-sizing", + 2151, + 2160, + { + "value": "box-sizing" + } + ], + [ + "colon-token", + ":", + 2161, + 2161, + null + ], + [ + "ident-token", + "border-box", + 2162, + 2171, + { + "value": "border-box" + } + ], + [ + "}-token", + "}", + 2172, + 2172, + null + ], + [ + "at-keyword-token", + "@media", + 2173, + 2178, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 2179, + 2179, + null + ], + [ + "(-token", + "(", + 2180, + 2180, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 2181, + 2202, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 2203, + 2203, + null + ], + [ + "ident-token", + "no-preference", + 2204, + 2216, + { + "value": "no-preference" + } + ], + [ + ")-token", + ")", + 2217, + 2217, + null + ], + [ + "{-token", + "{", + 2218, + 2218, + null + ], + [ + "colon-token", + ":", + 2219, + 2219, + null + ], + [ + "ident-token", + "root", + 2220, + 2223, + { + "value": "root" + } + ], + [ + "{-token", + "{", + 2224, + 2224, + null + ], + [ + "ident-token", + "scroll-behavior", + 2225, + 2239, + { + "value": "scroll-behavior" + } + ], + [ + "colon-token", + ":", + 2240, + 2240, + null + ], + [ + "ident-token", + "smooth", + 2241, + 2246, + { + "value": "smooth" + } + ], + [ + "}-token", + "}", + 2247, + 2247, + null + ], + [ + "}-token", + "}", + 2248, + 2248, + null + ], + [ + "ident-token", + "body", + 2249, + 2252, + { + "value": "body" + } + ], + [ + "{-token", + "{", + 2253, + 2253, + null + ], + [ + "ident-token", + "margin", + 2254, + 2259, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 2260, + 2260, + null + ], + [ + "number-token", + "0", + 2261, + 2261, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 2262, + 2262, + null + ], + [ + "ident-token", + "font-family", + 2263, + 2273, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 2274, + 2274, + null + ], + [ + "function-token", + "var(", + 2275, + 2278, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2279, + 2279, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2280, + 2280, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-family", + 2281, + 2299, + { + "value": "bs-body-font-family" + } + ], + [ + ")-token", + ")", + 2300, + 2300, + null + ], + [ + "semicolon-token", + ";", + 2301, + 2301, + null + ], + [ + "ident-token", + "font-size", + 2302, + 2310, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2311, + 2311, + null + ], + [ + "function-token", + "var(", + 2312, + 2315, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2316, + 2316, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2317, + 2317, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-size", + 2318, + 2334, + { + "value": "bs-body-font-size" + } + ], + [ + ")-token", + ")", + 2335, + 2335, + null + ], + [ + "semicolon-token", + ";", + 2336, + 2336, + null + ], + [ + "ident-token", + "font-weight", + 2337, + 2347, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 2348, + 2348, + null + ], + [ + "function-token", + "var(", + 2349, + 2352, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2353, + 2353, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2354, + 2354, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-font-weight", + 2355, + 2373, + { + "value": "bs-body-font-weight" + } + ], + [ + ")-token", + ")", + 2374, + 2374, + null + ], + [ + "semicolon-token", + ";", + 2375, + 2375, + null + ], + [ + "ident-token", + "line-height", + 2376, + 2386, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 2387, + 2387, + null + ], + [ + "function-token", + "var(", + 2388, + 2391, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2392, + 2392, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2393, + 2393, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-line-height", + 2394, + 2412, + { + "value": "bs-body-line-height" + } + ], + [ + ")-token", + ")", + 2413, + 2413, + null + ], + [ + "semicolon-token", + ";", + 2414, + 2414, + null + ], + [ + "ident-token", + "color", + 2415, + 2419, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 2420, + 2420, + null + ], + [ + "function-token", + "var(", + 2421, + 2424, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2425, + 2425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2426, + 2426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 2427, + 2439, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 2440, + 2440, + null + ], + [ + "semicolon-token", + ";", + 2441, + 2441, + null + ], + [ + "ident-token", + "text-align", + 2442, + 2451, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 2452, + 2452, + null + ], + [ + "function-token", + "var(", + 2453, + 2456, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2457, + 2457, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2458, + 2458, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-text-align", + 2459, + 2476, + { + "value": "bs-body-text-align" + } + ], + [ + ")-token", + ")", + 2477, + 2477, + null + ], + [ + "semicolon-token", + ";", + 2478, + 2478, + null + ], + [ + "ident-token", + "background-color", + 2479, + 2494, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 2495, + 2495, + null + ], + [ + "function-token", + "var(", + 2496, + 2499, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 2500, + 2500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 2501, + 2501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-bg", + 2502, + 2511, + { + "value": "bs-body-bg" + } + ], + [ + ")-token", + ")", + 2512, + 2512, + null + ], + [ + "semicolon-token", + ";", + 2513, + 2513, + null + ], + [ + "delim-token", + "-", + 2514, + 2514, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-text-size-adjust", + 2515, + 2537, + { + "value": "webkit-text-size-adjust" + } + ], + [ + "colon-token", + ":", + 2538, + 2538, + null + ], + [ + "percentage-token", + "100%", + 2539, + 2542, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 2543, + 2543, + null + ], + [ + "delim-token", + "-", + 2544, + 2544, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-tap-highlight-color", + 2545, + 2570, + { + "value": "webkit-tap-highlight-color" + } + ], + [ + "colon-token", + ":", + 2571, + 2571, + null + ], + [ + "ident-token", + "transparent", + 2572, + 2582, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 2583, + 2583, + null + ], + [ + "ident-token", + "hr", + 2584, + 2585, + { + "value": "hr" + } + ], + [ + "{-token", + "{", + 2586, + 2586, + null + ], + [ + "ident-token", + "margin", + 2587, + 2592, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 2593, + 2593, + null + ], + [ + "dimension-token", + "1rem", + 2594, + 2597, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 2598, + 2598, + null + ], + [ + "number-token", + "0", + 2599, + 2599, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 2600, + 2600, + null + ], + [ + "ident-token", + "color", + 2601, + 2605, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 2606, + 2606, + null + ], + [ + "ident-token", + "inherit", + 2607, + 2613, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 2614, + 2614, + null + ], + [ + "ident-token", + "border", + 2615, + 2620, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 2621, + 2621, + null + ], + [ + "number-token", + "0", + 2622, + 2622, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 2623, + 2623, + null + ], + [ + "ident-token", + "border-top", + 2624, + 2633, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 2634, + 2634, + null + ], + [ + "dimension-token", + "1px", + 2635, + 2637, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 2638, + 2638, + null + ], + [ + "ident-token", + "solid", + 2639, + 2643, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 2644, + 2644, + null + ], + [ + "ident-token", + "opacity", + 2645, + 2651, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 2652, + 2652, + null + ], + [ + "number-token", + ".25", + 2653, + 2655, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 2656, + 2656, + null + ], + [ + "delim-token", + ".", + 2657, + 2657, + { + "value": "." + } + ], + [ + "ident-token", + "h1", + 2658, + 2659, + { + "value": "h1" + } + ], + [ + "comma-token", + ",", + 2660, + 2660, + null + ], + [ + "delim-token", + ".", + 2661, + 2661, + { + "value": "." + } + ], + [ + "ident-token", + "h2", + 2662, + 2663, + { + "value": "h2" + } + ], + [ + "comma-token", + ",", + 2664, + 2664, + null + ], + [ + "delim-token", + ".", + 2665, + 2665, + { + "value": "." + } + ], + [ + "ident-token", + "h3", + 2666, + 2667, + { + "value": "h3" + } + ], + [ + "comma-token", + ",", + 2668, + 2668, + null + ], + [ + "delim-token", + ".", + 2669, + 2669, + { + "value": "." + } + ], + [ + "ident-token", + "h4", + 2670, + 2671, + { + "value": "h4" + } + ], + [ + "comma-token", + ",", + 2672, + 2672, + null + ], + [ + "delim-token", + ".", + 2673, + 2673, + { + "value": "." + } + ], + [ + "ident-token", + "h5", + 2674, + 2675, + { + "value": "h5" + } + ], + [ + "comma-token", + ",", + 2676, + 2676, + null + ], + [ + "delim-token", + ".", + 2677, + 2677, + { + "value": "." + } + ], + [ + "ident-token", + "h6", + 2678, + 2679, + { + "value": "h6" + } + ], + [ + "comma-token", + ",", + 2680, + 2680, + null + ], + [ + "ident-token", + "h1", + 2681, + 2682, + { + "value": "h1" + } + ], + [ + "comma-token", + ",", + 2683, + 2683, + null + ], + [ + "ident-token", + "h2", + 2684, + 2685, + { + "value": "h2" + } + ], + [ + "comma-token", + ",", + 2686, + 2686, + null + ], + [ + "ident-token", + "h3", + 2687, + 2688, + { + "value": "h3" + } + ], + [ + "comma-token", + ",", + 2689, + 2689, + null + ], + [ + "ident-token", + "h4", + 2690, + 2691, + { + "value": "h4" + } + ], + [ + "comma-token", + ",", + 2692, + 2692, + null + ], + [ + "ident-token", + "h5", + 2693, + 2694, + { + "value": "h5" + } + ], + [ + "comma-token", + ",", + 2695, + 2695, + null + ], + [ + "ident-token", + "h6", + 2696, + 2697, + { + "value": "h6" + } + ], + [ + "{-token", + "{", + 2698, + 2698, + null + ], + [ + "ident-token", + "margin-top", + 2699, + 2708, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 2709, + 2709, + null + ], + [ + "number-token", + "0", + 2710, + 2710, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 2711, + 2711, + null + ], + [ + "ident-token", + "margin-bottom", + 2712, + 2724, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 2725, + 2725, + null + ], + [ + "dimension-token", + ".5rem", + 2726, + 2730, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 2731, + 2731, + null + ], + [ + "ident-token", + "font-weight", + 2732, + 2742, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 2743, + 2743, + null + ], + [ + "number-token", + "500", + 2744, + 2746, + { + "value": 500, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 2747, + 2747, + null + ], + [ + "ident-token", + "line-height", + 2748, + 2758, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 2759, + 2759, + null + ], + [ + "number-token", + "1.2", + 2760, + 2762, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 2763, + 2763, + null + ], + [ + "delim-token", + ".", + 2764, + 2764, + { + "value": "." + } + ], + [ + "ident-token", + "h1", + 2765, + 2766, + { + "value": "h1" + } + ], + [ + "comma-token", + ",", + 2767, + 2767, + null + ], + [ + "ident-token", + "h1", + 2768, + 2769, + { + "value": "h1" + } + ], + [ + "{-token", + "{", + 2770, + 2770, + null + ], + [ + "ident-token", + "font-size", + 2771, + 2779, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2780, + 2780, + null + ], + [ + "function-token", + "calc(", + 2781, + 2785, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.375rem", + 2786, + 2793, + { + "value": 1.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 2794, + 2794, + null + ], + [ + "delim-token", + "+", + 2795, + 2795, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 2796, + 2796, + null + ], + [ + "dimension-token", + "1.5vw", + 2797, + 2801, + { + "value": 1.5, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 2802, + 2802, + null + ], + [ + "}-token", + "}", + 2803, + 2803, + null + ], + [ + "at-keyword-token", + "@media", + 2804, + 2809, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 2810, + 2810, + null + ], + [ + "(-token", + "(", + 2811, + 2811, + null + ], + [ + "ident-token", + "min-width", + 2812, + 2820, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 2821, + 2821, + null + ], + [ + "dimension-token", + "1200px", + 2822, + 2827, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 2828, + 2828, + null + ], + [ + "{-token", + "{", + 2829, + 2829, + null + ], + [ + "delim-token", + ".", + 2830, + 2830, + { + "value": "." + } + ], + [ + "ident-token", + "h1", + 2831, + 2832, + { + "value": "h1" + } + ], + [ + "comma-token", + ",", + 2833, + 2833, + null + ], + [ + "ident-token", + "h1", + 2834, + 2835, + { + "value": "h1" + } + ], + [ + "{-token", + "{", + 2836, + 2836, + null + ], + [ + "ident-token", + "font-size", + 2837, + 2845, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2846, + 2846, + null + ], + [ + "dimension-token", + "2.5rem", + 2847, + 2852, + { + "value": 2.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 2853, + 2853, + null + ], + [ + "}-token", + "}", + 2854, + 2854, + null + ], + [ + "delim-token", + ".", + 2855, + 2855, + { + "value": "." + } + ], + [ + "ident-token", + "h2", + 2856, + 2857, + { + "value": "h2" + } + ], + [ + "comma-token", + ",", + 2858, + 2858, + null + ], + [ + "ident-token", + "h2", + 2859, + 2860, + { + "value": "h2" + } + ], + [ + "{-token", + "{", + 2861, + 2861, + null + ], + [ + "ident-token", + "font-size", + 2862, + 2870, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2871, + 2871, + null + ], + [ + "function-token", + "calc(", + 2872, + 2876, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.325rem", + 2877, + 2884, + { + "value": 1.325, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 2885, + 2885, + null + ], + [ + "delim-token", + "+", + 2886, + 2886, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 2887, + 2887, + null + ], + [ + "dimension-token", + ".9vw", + 2888, + 2891, + { + "value": 0.9, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 2892, + 2892, + null + ], + [ + "}-token", + "}", + 2893, + 2893, + null + ], + [ + "at-keyword-token", + "@media", + 2894, + 2899, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 2900, + 2900, + null + ], + [ + "(-token", + "(", + 2901, + 2901, + null + ], + [ + "ident-token", + "min-width", + 2902, + 2910, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 2911, + 2911, + null + ], + [ + "dimension-token", + "1200px", + 2912, + 2917, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 2918, + 2918, + null + ], + [ + "{-token", + "{", + 2919, + 2919, + null + ], + [ + "delim-token", + ".", + 2920, + 2920, + { + "value": "." + } + ], + [ + "ident-token", + "h2", + 2921, + 2922, + { + "value": "h2" + } + ], + [ + "comma-token", + ",", + 2923, + 2923, + null + ], + [ + "ident-token", + "h2", + 2924, + 2925, + { + "value": "h2" + } + ], + [ + "{-token", + "{", + 2926, + 2926, + null + ], + [ + "ident-token", + "font-size", + 2927, + 2935, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2936, + 2936, + null + ], + [ + "dimension-token", + "2rem", + 2937, + 2940, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 2941, + 2941, + null + ], + [ + "}-token", + "}", + 2942, + 2942, + null + ], + [ + "delim-token", + ".", + 2943, + 2943, + { + "value": "." + } + ], + [ + "ident-token", + "h3", + 2944, + 2945, + { + "value": "h3" + } + ], + [ + "comma-token", + ",", + 2946, + 2946, + null + ], + [ + "ident-token", + "h3", + 2947, + 2948, + { + "value": "h3" + } + ], + [ + "{-token", + "{", + 2949, + 2949, + null + ], + [ + "ident-token", + "font-size", + 2950, + 2958, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 2959, + 2959, + null + ], + [ + "function-token", + "calc(", + 2960, + 2964, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.3rem", + 2965, + 2970, + { + "value": 1.3, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 2971, + 2971, + null + ], + [ + "delim-token", + "+", + 2972, + 2972, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 2973, + 2973, + null + ], + [ + "dimension-token", + ".6vw", + 2974, + 2977, + { + "value": 0.6, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 2978, + 2978, + null + ], + [ + "}-token", + "}", + 2979, + 2979, + null + ], + [ + "at-keyword-token", + "@media", + 2980, + 2985, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 2986, + 2986, + null + ], + [ + "(-token", + "(", + 2987, + 2987, + null + ], + [ + "ident-token", + "min-width", + 2988, + 2996, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 2997, + 2997, + null + ], + [ + "dimension-token", + "1200px", + 2998, + 3003, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 3004, + 3004, + null + ], + [ + "{-token", + "{", + 3005, + 3005, + null + ], + [ + "delim-token", + ".", + 3006, + 3006, + { + "value": "." + } + ], + [ + "ident-token", + "h3", + 3007, + 3008, + { + "value": "h3" + } + ], + [ + "comma-token", + ",", + 3009, + 3009, + null + ], + [ + "ident-token", + "h3", + 3010, + 3011, + { + "value": "h3" + } + ], + [ + "{-token", + "{", + 3012, + 3012, + null + ], + [ + "ident-token", + "font-size", + 3013, + 3021, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3022, + 3022, + null + ], + [ + "dimension-token", + "1.75rem", + 3023, + 3029, + { + "value": 1.75, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3030, + 3030, + null + ], + [ + "}-token", + "}", + 3031, + 3031, + null + ], + [ + "delim-token", + ".", + 3032, + 3032, + { + "value": "." + } + ], + [ + "ident-token", + "h4", + 3033, + 3034, + { + "value": "h4" + } + ], + [ + "comma-token", + ",", + 3035, + 3035, + null + ], + [ + "ident-token", + "h4", + 3036, + 3037, + { + "value": "h4" + } + ], + [ + "{-token", + "{", + 3038, + 3038, + null + ], + [ + "ident-token", + "font-size", + 3039, + 3047, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3048, + 3048, + null + ], + [ + "function-token", + "calc(", + 3049, + 3053, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.275rem", + 3054, + 3061, + { + "value": 1.275, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 3062, + 3062, + null + ], + [ + "delim-token", + "+", + 3063, + 3063, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 3064, + 3064, + null + ], + [ + "dimension-token", + ".3vw", + 3065, + 3068, + { + "value": 0.3, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 3069, + 3069, + null + ], + [ + "}-token", + "}", + 3070, + 3070, + null + ], + [ + "at-keyword-token", + "@media", + 3071, + 3076, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 3077, + 3077, + null + ], + [ + "(-token", + "(", + 3078, + 3078, + null + ], + [ + "ident-token", + "min-width", + 3079, + 3087, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 3088, + 3088, + null + ], + [ + "dimension-token", + "1200px", + 3089, + 3094, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 3095, + 3095, + null + ], + [ + "{-token", + "{", + 3096, + 3096, + null + ], + [ + "delim-token", + ".", + 3097, + 3097, + { + "value": "." + } + ], + [ + "ident-token", + "h4", + 3098, + 3099, + { + "value": "h4" + } + ], + [ + "comma-token", + ",", + 3100, + 3100, + null + ], + [ + "ident-token", + "h4", + 3101, + 3102, + { + "value": "h4" + } + ], + [ + "{-token", + "{", + 3103, + 3103, + null + ], + [ + "ident-token", + "font-size", + 3104, + 3112, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3113, + 3113, + null + ], + [ + "dimension-token", + "1.5rem", + 3114, + 3119, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3120, + 3120, + null + ], + [ + "}-token", + "}", + 3121, + 3121, + null + ], + [ + "delim-token", + ".", + 3122, + 3122, + { + "value": "." + } + ], + [ + "ident-token", + "h5", + 3123, + 3124, + { + "value": "h5" + } + ], + [ + "comma-token", + ",", + 3125, + 3125, + null + ], + [ + "ident-token", + "h5", + 3126, + 3127, + { + "value": "h5" + } + ], + [ + "{-token", + "{", + 3128, + 3128, + null + ], + [ + "ident-token", + "font-size", + 3129, + 3137, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3138, + 3138, + null + ], + [ + "dimension-token", + "1.25rem", + 3139, + 3145, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3146, + 3146, + null + ], + [ + "delim-token", + ".", + 3147, + 3147, + { + "value": "." + } + ], + [ + "ident-token", + "h6", + 3148, + 3149, + { + "value": "h6" + } + ], + [ + "comma-token", + ",", + 3150, + 3150, + null + ], + [ + "ident-token", + "h6", + 3151, + 3152, + { + "value": "h6" + } + ], + [ + "{-token", + "{", + 3153, + 3153, + null + ], + [ + "ident-token", + "font-size", + 3154, + 3162, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3163, + 3163, + null + ], + [ + "dimension-token", + "1rem", + 3164, + 3167, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3168, + 3168, + null + ], + [ + "ident-token", + "p", + 3169, + 3169, + { + "value": "p" + } + ], + [ + "{-token", + "{", + 3170, + 3170, + null + ], + [ + "ident-token", + "margin-top", + 3171, + 3180, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 3181, + 3181, + null + ], + [ + "number-token", + "0", + 3182, + 3182, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 3183, + 3183, + null + ], + [ + "ident-token", + "margin-bottom", + 3184, + 3196, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 3197, + 3197, + null + ], + [ + "dimension-token", + "1rem", + 3198, + 3201, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3202, + 3202, + null + ], + [ + "ident-token", + "abbr", + 3203, + 3206, + { + "value": "abbr" + } + ], + [ + "[-token", + "[", + 3207, + 3207, + null + ], + [ + "ident-token", + "title", + 3208, + 3212, + { + "value": "title" + } + ], + [ + "]-token", + "]", + 3213, + 3213, + null + ], + [ + "{-token", + "{", + 3214, + 3214, + null + ], + [ + "delim-token", + "-", + 3215, + 3215, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-text-decoration", + 3216, + 3237, + { + "value": "webkit-text-decoration" + } + ], + [ + "colon-token", + ":", + 3238, + 3238, + null + ], + [ + "ident-token", + "underline", + 3239, + 3247, + { + "value": "underline" + } + ], + [ + "whitespace-token", + " ", + 3248, + 3248, + null + ], + [ + "ident-token", + "dotted", + 3249, + 3254, + { + "value": "dotted" + } + ], + [ + "semicolon-token", + ";", + 3255, + 3255, + null + ], + [ + "ident-token", + "text-decoration", + 3256, + 3270, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 3271, + 3271, + null + ], + [ + "ident-token", + "underline", + 3272, + 3280, + { + "value": "underline" + } + ], + [ + "whitespace-token", + " ", + 3281, + 3281, + null + ], + [ + "ident-token", + "dotted", + 3282, + 3287, + { + "value": "dotted" + } + ], + [ + "semicolon-token", + ";", + 3288, + 3288, + null + ], + [ + "ident-token", + "cursor", + 3289, + 3294, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 3295, + 3295, + null + ], + [ + "ident-token", + "help", + 3296, + 3299, + { + "value": "help" + } + ], + [ + "semicolon-token", + ";", + 3300, + 3300, + null + ], + [ + "delim-token", + "-", + 3301, + 3301, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-text-decoration-skip-ink", + 3302, + 3332, + { + "value": "webkit-text-decoration-skip-ink" + } + ], + [ + "colon-token", + ":", + 3333, + 3333, + null + ], + [ + "ident-token", + "none", + 3334, + 3337, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 3338, + 3338, + null + ], + [ + "ident-token", + "text-decoration-skip-ink", + 3339, + 3362, + { + "value": "text-decoration-skip-ink" + } + ], + [ + "colon-token", + ":", + 3363, + 3363, + null + ], + [ + "ident-token", + "none", + 3364, + 3367, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 3368, + 3368, + null + ], + [ + "ident-token", + "address", + 3369, + 3375, + { + "value": "address" + } + ], + [ + "{-token", + "{", + 3376, + 3376, + null + ], + [ + "ident-token", + "margin-bottom", + 3377, + 3389, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 3390, + 3390, + null + ], + [ + "dimension-token", + "1rem", + 3391, + 3394, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 3395, + 3395, + null + ], + [ + "ident-token", + "font-style", + 3396, + 3405, + { + "value": "font-style" + } + ], + [ + "colon-token", + ":", + 3406, + 3406, + null + ], + [ + "ident-token", + "normal", + 3407, + 3412, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 3413, + 3413, + null + ], + [ + "ident-token", + "line-height", + 3414, + 3424, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 3425, + 3425, + null + ], + [ + "ident-token", + "inherit", + 3426, + 3432, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 3433, + 3433, + null + ], + [ + "ident-token", + "ol", + 3434, + 3435, + { + "value": "ol" + } + ], + [ + "comma-token", + ",", + 3436, + 3436, + null + ], + [ + "ident-token", + "ul", + 3437, + 3438, + { + "value": "ul" + } + ], + [ + "{-token", + "{", + 3439, + 3439, + null + ], + [ + "ident-token", + "padding-left", + 3440, + 3451, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 3452, + 3452, + null + ], + [ + "dimension-token", + "2rem", + 3453, + 3456, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3457, + 3457, + null + ], + [ + "ident-token", + "dl", + 3458, + 3459, + { + "value": "dl" + } + ], + [ + "comma-token", + ",", + 3460, + 3460, + null + ], + [ + "ident-token", + "ol", + 3461, + 3462, + { + "value": "ol" + } + ], + [ + "comma-token", + ",", + 3463, + 3463, + null + ], + [ + "ident-token", + "ul", + 3464, + 3465, + { + "value": "ul" + } + ], + [ + "{-token", + "{", + 3466, + 3466, + null + ], + [ + "ident-token", + "margin-top", + 3467, + 3476, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 3477, + 3477, + null + ], + [ + "number-token", + "0", + 3478, + 3478, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 3479, + 3479, + null + ], + [ + "ident-token", + "margin-bottom", + 3480, + 3492, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 3493, + 3493, + null + ], + [ + "dimension-token", + "1rem", + 3494, + 3497, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3498, + 3498, + null + ], + [ + "ident-token", + "ol", + 3499, + 3500, + { + "value": "ol" + } + ], + [ + "whitespace-token", + " ", + 3501, + 3501, + null + ], + [ + "ident-token", + "ol", + 3502, + 3503, + { + "value": "ol" + } + ], + [ + "comma-token", + ",", + 3504, + 3504, + null + ], + [ + "ident-token", + "ol", + 3505, + 3506, + { + "value": "ol" + } + ], + [ + "whitespace-token", + " ", + 3507, + 3507, + null + ], + [ + "ident-token", + "ul", + 3508, + 3509, + { + "value": "ul" + } + ], + [ + "comma-token", + ",", + 3510, + 3510, + null + ], + [ + "ident-token", + "ul", + 3511, + 3512, + { + "value": "ul" + } + ], + [ + "whitespace-token", + " ", + 3513, + 3513, + null + ], + [ + "ident-token", + "ol", + 3514, + 3515, + { + "value": "ol" + } + ], + [ + "comma-token", + ",", + 3516, + 3516, + null + ], + [ + "ident-token", + "ul", + 3517, + 3518, + { + "value": "ul" + } + ], + [ + "whitespace-token", + " ", + 3519, + 3519, + null + ], + [ + "ident-token", + "ul", + 3520, + 3521, + { + "value": "ul" + } + ], + [ + "{-token", + "{", + 3522, + 3522, + null + ], + [ + "ident-token", + "margin-bottom", + 3523, + 3535, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 3536, + 3536, + null + ], + [ + "number-token", + "0", + 3537, + 3537, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 3538, + 3538, + null + ], + [ + "ident-token", + "dt", + 3539, + 3540, + { + "value": "dt" + } + ], + [ + "{-token", + "{", + 3541, + 3541, + null + ], + [ + "ident-token", + "font-weight", + 3542, + 3552, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 3553, + 3553, + null + ], + [ + "number-token", + "700", + 3554, + 3556, + { + "value": 700, + "type": "integer" + } + ], + [ + "}-token", + "}", + 3557, + 3557, + null + ], + [ + "ident-token", + "dd", + 3558, + 3559, + { + "value": "dd" + } + ], + [ + "{-token", + "{", + 3560, + 3560, + null + ], + [ + "ident-token", + "margin-bottom", + 3561, + 3573, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 3574, + 3574, + null + ], + [ + "dimension-token", + ".5rem", + 3575, + 3579, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 3580, + 3580, + null + ], + [ + "ident-token", + "margin-left", + 3581, + 3591, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 3592, + 3592, + null + ], + [ + "number-token", + "0", + 3593, + 3593, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 3594, + 3594, + null + ], + [ + "ident-token", + "blockquote", + 3595, + 3604, + { + "value": "blockquote" + } + ], + [ + "{-token", + "{", + 3605, + 3605, + null + ], + [ + "ident-token", + "margin", + 3606, + 3611, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 3612, + 3612, + null + ], + [ + "number-token", + "0", + 3613, + 3613, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 3614, + 3614, + null + ], + [ + "number-token", + "0", + 3615, + 3615, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 3616, + 3616, + null + ], + [ + "dimension-token", + "1rem", + 3617, + 3620, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 3621, + 3621, + null + ], + [ + "ident-token", + "b", + 3622, + 3622, + { + "value": "b" + } + ], + [ + "comma-token", + ",", + 3623, + 3623, + null + ], + [ + "ident-token", + "strong", + 3624, + 3629, + { + "value": "strong" + } + ], + [ + "{-token", + "{", + 3630, + 3630, + null + ], + [ + "ident-token", + "font-weight", + 3631, + 3641, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 3642, + 3642, + null + ], + [ + "ident-token", + "bolder", + 3643, + 3648, + { + "value": "bolder" + } + ], + [ + "}-token", + "}", + 3649, + 3649, + null + ], + [ + "delim-token", + ".", + 3650, + 3650, + { + "value": "." + } + ], + [ + "ident-token", + "small", + 3651, + 3655, + { + "value": "small" + } + ], + [ + "comma-token", + ",", + 3656, + 3656, + null + ], + [ + "ident-token", + "small", + 3657, + 3661, + { + "value": "small" + } + ], + [ + "{-token", + "{", + 3662, + 3662, + null + ], + [ + "ident-token", + "font-size", + 3663, + 3671, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3672, + 3672, + null + ], + [ + "dimension-token", + ".875em", + 3673, + 3678, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 3679, + 3679, + null + ], + [ + "delim-token", + ".", + 3680, + 3680, + { + "value": "." + } + ], + [ + "ident-token", + "mark", + 3681, + 3684, + { + "value": "mark" + } + ], + [ + "comma-token", + ",", + 3685, + 3685, + null + ], + [ + "ident-token", + "mark", + 3686, + 3689, + { + "value": "mark" + } + ], + [ + "{-token", + "{", + 3690, + 3690, + null + ], + [ + "ident-token", + "padding", + 3691, + 3697, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 3698, + 3698, + null + ], + [ + "dimension-token", + ".1875em", + 3699, + 3705, + { + "value": 0.1875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 3706, + 3706, + null + ], + [ + "ident-token", + "background-color", + 3707, + 3722, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 3723, + 3723, + null + ], + [ + "function-token", + "var(", + 3724, + 3727, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 3728, + 3728, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 3729, + 3729, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-highlight-bg", + 3730, + 3744, + { + "value": "bs-highlight-bg" + } + ], + [ + ")-token", + ")", + 3745, + 3745, + null + ], + [ + "}-token", + "}", + 3746, + 3746, + null + ], + [ + "ident-token", + "sub", + 3747, + 3749, + { + "value": "sub" + } + ], + [ + "comma-token", + ",", + 3750, + 3750, + null + ], + [ + "ident-token", + "sup", + 3751, + 3753, + { + "value": "sup" + } + ], + [ + "{-token", + "{", + 3754, + 3754, + null + ], + [ + "ident-token", + "position", + 3755, + 3762, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 3763, + 3763, + null + ], + [ + "ident-token", + "relative", + 3764, + 3771, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 3772, + 3772, + null + ], + [ + "ident-token", + "font-size", + 3773, + 3781, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 3782, + 3782, + null + ], + [ + "dimension-token", + ".75em", + 3783, + 3787, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 3788, + 3788, + null + ], + [ + "ident-token", + "line-height", + 3789, + 3799, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 3800, + 3800, + null + ], + [ + "number-token", + "0", + 3801, + 3801, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 3802, + 3802, + null + ], + [ + "ident-token", + "vertical-align", + 3803, + 3816, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 3817, + 3817, + null + ], + [ + "ident-token", + "baseline", + 3818, + 3825, + { + "value": "baseline" + } + ], + [ + "}-token", + "}", + 3826, + 3826, + null + ], + [ + "ident-token", + "sub", + 3827, + 3829, + { + "value": "sub" + } + ], + [ + "{-token", + "{", + 3830, + 3830, + null + ], + [ + "ident-token", + "bottom", + 3831, + 3836, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 3837, + 3837, + null + ], + [ + "dimension-token", + "-.25em", + 3838, + 3843, + { + "value": -0.25, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 3844, + 3844, + null + ], + [ + "ident-token", + "sup", + 3845, + 3847, + { + "value": "sup" + } + ], + [ + "{-token", + "{", + 3848, + 3848, + null + ], + [ + "ident-token", + "top", + 3849, + 3851, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 3852, + 3852, + null + ], + [ + "dimension-token", + "-.5em", + 3853, + 3857, + { + "value": -0.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 3858, + 3858, + null + ], + [ + "ident-token", + "a", + 3859, + 3859, + { + "value": "a" + } + ], + [ + "{-token", + "{", + 3860, + 3860, + null + ], + [ + "ident-token", + "color", + 3861, + 3865, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 3866, + 3866, + null + ], + [ + "function-token", + "var(", + 3867, + 3870, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 3871, + 3871, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 3872, + 3872, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-color", + 3873, + 3885, + { + "value": "bs-link-color" + } + ], + [ + ")-token", + ")", + 3886, + 3886, + null + ], + [ + "semicolon-token", + ";", + 3887, + 3887, + null + ], + [ + "ident-token", + "text-decoration", + 3888, + 3902, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 3903, + 3903, + null + ], + [ + "ident-token", + "underline", + 3904, + 3912, + { + "value": "underline" + } + ], + [ + "}-token", + "}", + 3913, + 3913, + null + ], + [ + "ident-token", + "a", + 3914, + 3914, + { + "value": "a" + } + ], + [ + "colon-token", + ":", + 3915, + 3915, + null + ], + [ + "ident-token", + "hover", + 3916, + 3920, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 3921, + 3921, + null + ], + [ + "ident-token", + "color", + 3922, + 3926, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 3927, + 3927, + null + ], + [ + "function-token", + "var(", + 3928, + 3931, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 3932, + 3932, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 3933, + 3933, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 3934, + 3952, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 3953, + 3953, + null + ], + [ + "}-token", + "}", + 3954, + 3954, + null + ], + [ + "ident-token", + "a", + 3955, + 3955, + { + "value": "a" + } + ], + [ + "colon-token", + ":", + 3956, + 3956, + null + ], + [ + "function-token", + "not(", + 3957, + 3960, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 3961, + 3961, + null + ], + [ + "ident-token", + "href", + 3962, + 3965, + { + "value": "href" + } + ], + [ + "]-token", + "]", + 3966, + 3966, + null + ], + [ + ")-token", + ")", + 3967, + 3967, + null + ], + [ + "colon-token", + ":", + 3968, + 3968, + null + ], + [ + "function-token", + "not(", + 3969, + 3972, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 3973, + 3973, + null + ], + [ + "ident-token", + "class", + 3974, + 3978, + { + "value": "class" + } + ], + [ + "]-token", + "]", + 3979, + 3979, + null + ], + [ + ")-token", + ")", + 3980, + 3980, + null + ], + [ + "comma-token", + ",", + 3981, + 3981, + null + ], + [ + "ident-token", + "a", + 3982, + 3982, + { + "value": "a" + } + ], + [ + "colon-token", + ":", + 3983, + 3983, + null + ], + [ + "function-token", + "not(", + 3984, + 3987, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 3988, + 3988, + null + ], + [ + "ident-token", + "href", + 3989, + 3992, + { + "value": "href" + } + ], + [ + "]-token", + "]", + 3993, + 3993, + null + ], + [ + ")-token", + ")", + 3994, + 3994, + null + ], + [ + "colon-token", + ":", + 3995, + 3995, + null + ], + [ + "function-token", + "not(", + 3996, + 3999, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 4000, + 4000, + null + ], + [ + "ident-token", + "class", + 4001, + 4005, + { + "value": "class" + } + ], + [ + "]-token", + "]", + 4006, + 4006, + null + ], + [ + ")-token", + ")", + 4007, + 4007, + null + ], + [ + "colon-token", + ":", + 4008, + 4008, + null + ], + [ + "ident-token", + "hover", + 4009, + 4013, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 4014, + 4014, + null + ], + [ + "ident-token", + "color", + 4015, + 4019, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4020, + 4020, + null + ], + [ + "ident-token", + "inherit", + 4021, + 4027, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4028, + 4028, + null + ], + [ + "ident-token", + "text-decoration", + 4029, + 4043, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 4044, + 4044, + null + ], + [ + "ident-token", + "none", + 4045, + 4048, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 4049, + 4049, + null + ], + [ + "ident-token", + "code", + 4050, + 4053, + { + "value": "code" + } + ], + [ + "comma-token", + ",", + 4054, + 4054, + null + ], + [ + "ident-token", + "kbd", + 4055, + 4057, + { + "value": "kbd" + } + ], + [ + "comma-token", + ",", + 4058, + 4058, + null + ], + [ + "ident-token", + "pre", + 4059, + 4061, + { + "value": "pre" + } + ], + [ + "comma-token", + ",", + 4062, + 4062, + null + ], + [ + "ident-token", + "samp", + 4063, + 4066, + { + "value": "samp" + } + ], + [ + "{-token", + "{", + 4067, + 4067, + null + ], + [ + "ident-token", + "font-family", + 4068, + 4078, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 4079, + 4079, + null + ], + [ + "function-token", + "var(", + 4080, + 4083, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 4084, + 4084, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 4085, + 4085, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-monospace", + 4086, + 4102, + { + "value": "bs-font-monospace" + } + ], + [ + ")-token", + ")", + 4103, + 4103, + null + ], + [ + "semicolon-token", + ";", + 4104, + 4104, + null + ], + [ + "ident-token", + "font-size", + 4105, + 4113, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4114, + 4114, + null + ], + [ + "dimension-token", + "1em", + 4115, + 4117, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "}-token", + "}", + 4118, + 4118, + null + ], + [ + "ident-token", + "pre", + 4119, + 4121, + { + "value": "pre" + } + ], + [ + "{-token", + "{", + 4122, + 4122, + null + ], + [ + "ident-token", + "display", + 4123, + 4129, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 4130, + 4130, + null + ], + [ + "ident-token", + "block", + 4131, + 4135, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 4136, + 4136, + null + ], + [ + "ident-token", + "margin-top", + 4137, + 4146, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 4147, + 4147, + null + ], + [ + "number-token", + "0", + 4148, + 4148, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 4149, + 4149, + null + ], + [ + "ident-token", + "margin-bottom", + 4150, + 4162, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 4163, + 4163, + null + ], + [ + "dimension-token", + "1rem", + 4164, + 4167, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 4168, + 4168, + null + ], + [ + "ident-token", + "overflow", + 4169, + 4176, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 4177, + 4177, + null + ], + [ + "ident-token", + "auto", + 4178, + 4181, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 4182, + 4182, + null + ], + [ + "ident-token", + "font-size", + 4183, + 4191, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4192, + 4192, + null + ], + [ + "dimension-token", + ".875em", + 4193, + 4198, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 4199, + 4199, + null + ], + [ + "ident-token", + "pre", + 4200, + 4202, + { + "value": "pre" + } + ], + [ + "whitespace-token", + " ", + 4203, + 4203, + null + ], + [ + "ident-token", + "code", + 4204, + 4207, + { + "value": "code" + } + ], + [ + "{-token", + "{", + 4208, + 4208, + null + ], + [ + "ident-token", + "font-size", + 4209, + 4217, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4218, + 4218, + null + ], + [ + "ident-token", + "inherit", + 4219, + 4225, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4226, + 4226, + null + ], + [ + "ident-token", + "color", + 4227, + 4231, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4232, + 4232, + null + ], + [ + "ident-token", + "inherit", + 4233, + 4239, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4240, + 4240, + null + ], + [ + "ident-token", + "word-break", + 4241, + 4250, + { + "value": "word-break" + } + ], + [ + "colon-token", + ":", + 4251, + 4251, + null + ], + [ + "ident-token", + "normal", + 4252, + 4257, + { + "value": "normal" + } + ], + [ + "}-token", + "}", + 4258, + 4258, + null + ], + [ + "ident-token", + "code", + 4259, + 4262, + { + "value": "code" + } + ], + [ + "{-token", + "{", + 4263, + 4263, + null + ], + [ + "ident-token", + "font-size", + 4264, + 4272, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4273, + 4273, + null + ], + [ + "dimension-token", + ".875em", + 4274, + 4279, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 4280, + 4280, + null + ], + [ + "ident-token", + "color", + 4281, + 4285, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4286, + 4286, + null + ], + [ + "function-token", + "var(", + 4287, + 4290, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 4291, + 4291, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 4292, + 4292, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-code-color", + 4293, + 4305, + { + "value": "bs-code-color" + } + ], + [ + ")-token", + ")", + 4306, + 4306, + null + ], + [ + "semicolon-token", + ";", + 4307, + 4307, + null + ], + [ + "ident-token", + "word-wrap", + 4308, + 4316, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 4317, + 4317, + null + ], + [ + "ident-token", + "break-word", + 4318, + 4327, + { + "value": "break-word" + } + ], + [ + "}-token", + "}", + 4328, + 4328, + null + ], + [ + "ident-token", + "a", + 4329, + 4329, + { + "value": "a" + } + ], + [ + "delim-token", + ">", + 4330, + 4330, + { + "value": ">" + } + ], + [ + "ident-token", + "code", + 4331, + 4334, + { + "value": "code" + } + ], + [ + "{-token", + "{", + 4335, + 4335, + null + ], + [ + "ident-token", + "color", + 4336, + 4340, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4341, + 4341, + null + ], + [ + "ident-token", + "inherit", + 4342, + 4348, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 4349, + 4349, + null + ], + [ + "ident-token", + "kbd", + 4350, + 4352, + { + "value": "kbd" + } + ], + [ + "{-token", + "{", + 4353, + 4353, + null + ], + [ + "ident-token", + "padding", + 4354, + 4360, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 4361, + 4361, + null + ], + [ + "dimension-token", + ".1875rem", + 4362, + 4369, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 4370, + 4370, + null + ], + [ + "dimension-token", + ".375rem", + 4371, + 4377, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 4378, + 4378, + null + ], + [ + "ident-token", + "font-size", + 4379, + 4387, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4388, + 4388, + null + ], + [ + "dimension-token", + ".875em", + 4389, + 4394, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 4395, + 4395, + null + ], + [ + "ident-token", + "color", + 4396, + 4400, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4401, + 4401, + null + ], + [ + "function-token", + "var(", + 4402, + 4405, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 4406, + 4406, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 4407, + 4407, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-bg", + 4408, + 4417, + { + "value": "bs-body-bg" + } + ], + [ + ")-token", + ")", + 4418, + 4418, + null + ], + [ + "semicolon-token", + ";", + 4419, + 4419, + null + ], + [ + "ident-token", + "background-color", + 4420, + 4435, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 4436, + 4436, + null + ], + [ + "function-token", + "var(", + 4437, + 4440, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 4441, + 4441, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 4442, + 4442, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 4443, + 4455, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 4456, + 4456, + null + ], + [ + "semicolon-token", + ";", + 4457, + 4457, + null + ], + [ + "ident-token", + "border-radius", + 4458, + 4470, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 4471, + 4471, + null + ], + [ + "dimension-token", + ".25rem", + 4472, + 4477, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 4478, + 4478, + null + ], + [ + "ident-token", + "kbd", + 4479, + 4481, + { + "value": "kbd" + } + ], + [ + "whitespace-token", + " ", + 4482, + 4482, + null + ], + [ + "ident-token", + "kbd", + 4483, + 4485, + { + "value": "kbd" + } + ], + [ + "{-token", + "{", + 4486, + 4486, + null + ], + [ + "ident-token", + "padding", + 4487, + 4493, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 4494, + 4494, + null + ], + [ + "number-token", + "0", + 4495, + 4495, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 4496, + 4496, + null + ], + [ + "ident-token", + "font-size", + 4497, + 4505, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4506, + 4506, + null + ], + [ + "dimension-token", + "1em", + 4507, + 4509, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "}-token", + "}", + 4510, + 4510, + null + ], + [ + "ident-token", + "figure", + 4511, + 4516, + { + "value": "figure" + } + ], + [ + "{-token", + "{", + 4517, + 4517, + null + ], + [ + "ident-token", + "margin", + 4518, + 4523, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 4524, + 4524, + null + ], + [ + "number-token", + "0", + 4525, + 4525, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 4526, + 4526, + null + ], + [ + "number-token", + "0", + 4527, + 4527, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 4528, + 4528, + null + ], + [ + "dimension-token", + "1rem", + 4529, + 4532, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 4533, + 4533, + null + ], + [ + "ident-token", + "img", + 4534, + 4536, + { + "value": "img" + } + ], + [ + "comma-token", + ",", + 4537, + 4537, + null + ], + [ + "ident-token", + "svg", + 4538, + 4540, + { + "value": "svg" + } + ], + [ + "{-token", + "{", + 4541, + 4541, + null + ], + [ + "ident-token", + "vertical-align", + 4542, + 4555, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 4556, + 4556, + null + ], + [ + "ident-token", + "middle", + 4557, + 4562, + { + "value": "middle" + } + ], + [ + "}-token", + "}", + 4563, + 4563, + null + ], + [ + "ident-token", + "table", + 4564, + 4568, + { + "value": "table" + } + ], + [ + "{-token", + "{", + 4569, + 4569, + null + ], + [ + "ident-token", + "caption-side", + 4570, + 4581, + { + "value": "caption-side" + } + ], + [ + "colon-token", + ":", + 4582, + 4582, + null + ], + [ + "ident-token", + "bottom", + 4583, + 4588, + { + "value": "bottom" + } + ], + [ + "semicolon-token", + ";", + 4589, + 4589, + null + ], + [ + "ident-token", + "border-collapse", + 4590, + 4604, + { + "value": "border-collapse" + } + ], + [ + "colon-token", + ":", + 4605, + 4605, + null + ], + [ + "ident-token", + "collapse", + 4606, + 4613, + { + "value": "collapse" + } + ], + [ + "}-token", + "}", + 4614, + 4614, + null + ], + [ + "ident-token", + "caption", + 4615, + 4621, + { + "value": "caption" + } + ], + [ + "{-token", + "{", + 4622, + 4622, + null + ], + [ + "ident-token", + "padding-top", + 4623, + 4633, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 4634, + 4634, + null + ], + [ + "dimension-token", + ".5rem", + 4635, + 4639, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 4640, + 4640, + null + ], + [ + "ident-token", + "padding-bottom", + 4641, + 4654, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 4655, + 4655, + null + ], + [ + "dimension-token", + ".5rem", + 4656, + 4660, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 4661, + 4661, + null + ], + [ + "ident-token", + "color", + 4662, + 4666, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 4667, + 4667, + null + ], + [ + "hash-token", + "#6c757d", + 4668, + 4674, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 4675, + 4675, + null + ], + [ + "ident-token", + "text-align", + 4676, + 4685, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 4686, + 4686, + null + ], + [ + "ident-token", + "left", + 4687, + 4690, + { + "value": "left" + } + ], + [ + "}-token", + "}", + 4691, + 4691, + null + ], + [ + "ident-token", + "th", + 4692, + 4693, + { + "value": "th" + } + ], + [ + "{-token", + "{", + 4694, + 4694, + null + ], + [ + "ident-token", + "text-align", + 4695, + 4704, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 4705, + 4705, + null + ], + [ + "ident-token", + "inherit", + 4706, + 4712, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4713, + 4713, + null + ], + [ + "ident-token", + "text-align", + 4714, + 4723, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 4724, + 4724, + null + ], + [ + "delim-token", + "-", + 4725, + 4725, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-match-parent", + 4726, + 4744, + { + "value": "webkit-match-parent" + } + ], + [ + "}-token", + "}", + 4745, + 4745, + null + ], + [ + "ident-token", + "tbody", + 4746, + 4750, + { + "value": "tbody" + } + ], + [ + "comma-token", + ",", + 4751, + 4751, + null + ], + [ + "ident-token", + "td", + 4752, + 4753, + { + "value": "td" + } + ], + [ + "comma-token", + ",", + 4754, + 4754, + null + ], + [ + "ident-token", + "tfoot", + 4755, + 4759, + { + "value": "tfoot" + } + ], + [ + "comma-token", + ",", + 4760, + 4760, + null + ], + [ + "ident-token", + "th", + 4761, + 4762, + { + "value": "th" + } + ], + [ + "comma-token", + ",", + 4763, + 4763, + null + ], + [ + "ident-token", + "thead", + 4764, + 4768, + { + "value": "thead" + } + ], + [ + "comma-token", + ",", + 4769, + 4769, + null + ], + [ + "ident-token", + "tr", + 4770, + 4771, + { + "value": "tr" + } + ], + [ + "{-token", + "{", + 4772, + 4772, + null + ], + [ + "ident-token", + "border-color", + 4773, + 4784, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 4785, + 4785, + null + ], + [ + "ident-token", + "inherit", + 4786, + 4792, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4793, + 4793, + null + ], + [ + "ident-token", + "border-style", + 4794, + 4805, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 4806, + 4806, + null + ], + [ + "ident-token", + "solid", + 4807, + 4811, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 4812, + 4812, + null + ], + [ + "ident-token", + "border-width", + 4813, + 4824, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 4825, + 4825, + null + ], + [ + "number-token", + "0", + 4826, + 4826, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 4827, + 4827, + null + ], + [ + "ident-token", + "label", + 4828, + 4832, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 4833, + 4833, + null + ], + [ + "ident-token", + "display", + 4834, + 4840, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 4841, + 4841, + null + ], + [ + "ident-token", + "inline-block", + 4842, + 4853, + { + "value": "inline-block" + } + ], + [ + "}-token", + "}", + 4854, + 4854, + null + ], + [ + "ident-token", + "button", + 4855, + 4860, + { + "value": "button" + } + ], + [ + "{-token", + "{", + 4861, + 4861, + null + ], + [ + "ident-token", + "border-radius", + 4862, + 4874, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 4875, + 4875, + null + ], + [ + "number-token", + "0", + 4876, + 4876, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 4877, + 4877, + null + ], + [ + "ident-token", + "button", + 4878, + 4883, + { + "value": "button" + } + ], + [ + "colon-token", + ":", + 4884, + 4884, + null + ], + [ + "ident-token", + "focus", + 4885, + 4889, + { + "value": "focus" + } + ], + [ + "colon-token", + ":", + 4890, + 4890, + null + ], + [ + "function-token", + "not(", + 4891, + 4894, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 4895, + 4895, + null + ], + [ + "ident-token", + "focus-visible", + 4896, + 4908, + { + "value": "focus-visible" + } + ], + [ + ")-token", + ")", + 4909, + 4909, + null + ], + [ + "{-token", + "{", + 4910, + 4910, + null + ], + [ + "ident-token", + "outline", + 4911, + 4917, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 4918, + 4918, + null + ], + [ + "number-token", + "0", + 4919, + 4919, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 4920, + 4920, + null + ], + [ + "ident-token", + "button", + 4921, + 4926, + { + "value": "button" + } + ], + [ + "comma-token", + ",", + 4927, + 4927, + null + ], + [ + "ident-token", + "input", + 4928, + 4932, + { + "value": "input" + } + ], + [ + "comma-token", + ",", + 4933, + 4933, + null + ], + [ + "ident-token", + "optgroup", + 4934, + 4941, + { + "value": "optgroup" + } + ], + [ + "comma-token", + ",", + 4942, + 4942, + null + ], + [ + "ident-token", + "select", + 4943, + 4948, + { + "value": "select" + } + ], + [ + "comma-token", + ",", + 4949, + 4949, + null + ], + [ + "ident-token", + "textarea", + 4950, + 4957, + { + "value": "textarea" + } + ], + [ + "{-token", + "{", + 4958, + 4958, + null + ], + [ + "ident-token", + "margin", + 4959, + 4964, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 4965, + 4965, + null + ], + [ + "number-token", + "0", + 4966, + 4966, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 4967, + 4967, + null + ], + [ + "ident-token", + "font-family", + 4968, + 4978, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 4979, + 4979, + null + ], + [ + "ident-token", + "inherit", + 4980, + 4986, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 4987, + 4987, + null + ], + [ + "ident-token", + "font-size", + 4988, + 4996, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 4997, + 4997, + null + ], + [ + "ident-token", + "inherit", + 4998, + 5004, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 5005, + 5005, + null + ], + [ + "ident-token", + "line-height", + 5006, + 5016, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 5017, + 5017, + null + ], + [ + "ident-token", + "inherit", + 5018, + 5024, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 5025, + 5025, + null + ], + [ + "ident-token", + "button", + 5026, + 5031, + { + "value": "button" + } + ], + [ + "comma-token", + ",", + 5032, + 5032, + null + ], + [ + "ident-token", + "select", + 5033, + 5038, + { + "value": "select" + } + ], + [ + "{-token", + "{", + 5039, + 5039, + null + ], + [ + "ident-token", + "text-transform", + 5040, + 5053, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 5054, + 5054, + null + ], + [ + "ident-token", + "none", + 5055, + 5058, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 5059, + 5059, + null + ], + [ + "[-token", + "[", + 5060, + 5060, + null + ], + [ + "ident-token", + "role", + 5061, + 5064, + { + "value": "role" + } + ], + [ + "delim-token", + "=", + 5065, + 5065, + { + "value": "=" + } + ], + [ + "ident-token", + "button", + 5066, + 5071, + { + "value": "button" + } + ], + [ + "]-token", + "]", + 5072, + 5072, + null + ], + [ + "{-token", + "{", + 5073, + 5073, + null + ], + [ + "ident-token", + "cursor", + 5074, + 5079, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 5080, + 5080, + null + ], + [ + "ident-token", + "pointer", + 5081, + 5087, + { + "value": "pointer" + } + ], + [ + "}-token", + "}", + 5088, + 5088, + null + ], + [ + "ident-token", + "select", + 5089, + 5094, + { + "value": "select" + } + ], + [ + "{-token", + "{", + 5095, + 5095, + null + ], + [ + "ident-token", + "word-wrap", + 5096, + 5104, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 5105, + 5105, + null + ], + [ + "ident-token", + "normal", + 5106, + 5111, + { + "value": "normal" + } + ], + [ + "}-token", + "}", + 5112, + 5112, + null + ], + [ + "ident-token", + "select", + 5113, + 5118, + { + "value": "select" + } + ], + [ + "colon-token", + ":", + 5119, + 5119, + null + ], + [ + "ident-token", + "disabled", + 5120, + 5127, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 5128, + 5128, + null + ], + [ + "ident-token", + "opacity", + 5129, + 5135, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 5136, + 5136, + null + ], + [ + "number-token", + "1", + 5137, + 5137, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 5138, + 5138, + null + ], + [ + "[-token", + "[", + 5139, + 5139, + null + ], + [ + "ident-token", + "list", + 5140, + 5143, + { + "value": "list" + } + ], + [ + "]-token", + "]", + 5144, + 5144, + null + ], + [ + "colon-token", + ":", + 5145, + 5145, + null + ], + [ + "function-token", + "not(", + 5146, + 5149, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 5150, + 5150, + null + ], + [ + "ident-token", + "type", + 5151, + 5154, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5155, + 5155, + { + "value": "=" + } + ], + [ + "ident-token", + "date", + 5156, + 5159, + { + "value": "date" + } + ], + [ + "]-token", + "]", + 5160, + 5160, + null + ], + [ + ")-token", + ")", + 5161, + 5161, + null + ], + [ + "colon-token", + ":", + 5162, + 5162, + null + ], + [ + "function-token", + "not(", + 5163, + 5166, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 5167, + 5167, + null + ], + [ + "ident-token", + "type", + 5168, + 5171, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5172, + 5172, + { + "value": "=" + } + ], + [ + "ident-token", + "datetime-local", + 5173, + 5186, + { + "value": "datetime-local" + } + ], + [ + "]-token", + "]", + 5187, + 5187, + null + ], + [ + ")-token", + ")", + 5188, + 5188, + null + ], + [ + "colon-token", + ":", + 5189, + 5189, + null + ], + [ + "function-token", + "not(", + 5190, + 5193, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 5194, + 5194, + null + ], + [ + "ident-token", + "type", + 5195, + 5198, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5199, + 5199, + { + "value": "=" + } + ], + [ + "ident-token", + "month", + 5200, + 5204, + { + "value": "month" + } + ], + [ + "]-token", + "]", + 5205, + 5205, + null + ], + [ + ")-token", + ")", + 5206, + 5206, + null + ], + [ + "colon-token", + ":", + 5207, + 5207, + null + ], + [ + "function-token", + "not(", + 5208, + 5211, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 5212, + 5212, + null + ], + [ + "ident-token", + "type", + 5213, + 5216, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5217, + 5217, + { + "value": "=" + } + ], + [ + "ident-token", + "week", + 5218, + 5221, + { + "value": "week" + } + ], + [ + "]-token", + "]", + 5222, + 5222, + null + ], + [ + ")-token", + ")", + 5223, + 5223, + null + ], + [ + "colon-token", + ":", + 5224, + 5224, + null + ], + [ + "function-token", + "not(", + 5225, + 5228, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 5229, + 5229, + null + ], + [ + "ident-token", + "type", + 5230, + 5233, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5234, + 5234, + { + "value": "=" + } + ], + [ + "ident-token", + "time", + 5235, + 5238, + { + "value": "time" + } + ], + [ + "]-token", + "]", + 5239, + 5239, + null + ], + [ + ")-token", + ")", + 5240, + 5240, + null + ], + [ + "colon-token", + ":", + 5241, + 5241, + null + ], + [ + "colon-token", + ":", + 5242, + 5242, + null + ], + [ + "delim-token", + "-", + 5243, + 5243, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-calendar-picker-indicator", + 5244, + 5275, + { + "value": "webkit-calendar-picker-indicator" + } + ], + [ + "{-token", + "{", + 5276, + 5276, + null + ], + [ + "ident-token", + "display", + 5277, + 5283, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 5284, + 5284, + null + ], + [ + "ident-token", + "none", + 5285, + 5288, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 5289, + 5289, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 5290, + 5298, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 5299, + 5299, + null + ], + [ + "[-token", + "[", + 5300, + 5300, + null + ], + [ + "ident-token", + "type", + 5301, + 5304, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5305, + 5305, + { + "value": "=" + } + ], + [ + "ident-token", + "button", + 5306, + 5311, + { + "value": "button" + } + ], + [ + "]-token", + "]", + 5312, + 5312, + null + ], + [ + "comma-token", + ",", + 5313, + 5313, + null + ], + [ + "[-token", + "[", + 5314, + 5314, + null + ], + [ + "ident-token", + "type", + 5315, + 5318, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5319, + 5319, + { + "value": "=" + } + ], + [ + "ident-token", + "reset", + 5320, + 5324, + { + "value": "reset" + } + ], + [ + "]-token", + "]", + 5325, + 5325, + null + ], + [ + "comma-token", + ",", + 5326, + 5326, + null + ], + [ + "[-token", + "[", + 5327, + 5327, + null + ], + [ + "ident-token", + "type", + 5328, + 5331, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5332, + 5332, + { + "value": "=" + } + ], + [ + "ident-token", + "submit", + 5333, + 5338, + { + "value": "submit" + } + ], + [ + "]-token", + "]", + 5339, + 5339, + null + ], + [ + "comma-token", + ",", + 5340, + 5340, + null + ], + [ + "ident-token", + "button", + 5341, + 5346, + { + "value": "button" + } + ], + [ + "{-token", + "{", + 5347, + 5347, + null + ], + [ + "delim-token", + "-", + 5348, + 5348, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 5349, + 5365, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 5366, + 5366, + null + ], + [ + "ident-token", + "button", + 5367, + 5372, + { + "value": "button" + } + ], + [ + "}-token", + "}", + 5373, + 5373, + null + ], + [ + "[-token", + "[", + 5374, + 5374, + null + ], + [ + "ident-token", + "type", + 5375, + 5378, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5379, + 5379, + { + "value": "=" + } + ], + [ + "ident-token", + "button", + 5380, + 5385, + { + "value": "button" + } + ], + [ + "]-token", + "]", + 5386, + 5386, + null + ], + [ + "colon-token", + ":", + 5387, + 5387, + null + ], + [ + "function-token", + "not(", + 5388, + 5391, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 5392, + 5392, + null + ], + [ + "ident-token", + "disabled", + 5393, + 5400, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 5401, + 5401, + null + ], + [ + "comma-token", + ",", + 5402, + 5402, + null + ], + [ + "[-token", + "[", + 5403, + 5403, + null + ], + [ + "ident-token", + "type", + 5404, + 5407, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5408, + 5408, + { + "value": "=" + } + ], + [ + "ident-token", + "reset", + 5409, + 5413, + { + "value": "reset" + } + ], + [ + "]-token", + "]", + 5414, + 5414, + null + ], + [ + "colon-token", + ":", + 5415, + 5415, + null + ], + [ + "function-token", + "not(", + 5416, + 5419, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 5420, + 5420, + null + ], + [ + "ident-token", + "disabled", + 5421, + 5428, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 5429, + 5429, + null + ], + [ + "comma-token", + ",", + 5430, + 5430, + null + ], + [ + "[-token", + "[", + 5431, + 5431, + null + ], + [ + "ident-token", + "type", + 5432, + 5435, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 5436, + 5436, + { + "value": "=" + } + ], + [ + "ident-token", + "submit", + 5437, + 5442, + { + "value": "submit" + } + ], + [ + "]-token", + "]", + 5443, + 5443, + null + ], + [ + "colon-token", + ":", + 5444, + 5444, + null + ], + [ + "function-token", + "not(", + 5445, + 5448, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 5449, + 5449, + null + ], + [ + "ident-token", + "disabled", + 5450, + 5457, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 5458, + 5458, + null + ], + [ + "comma-token", + ",", + 5459, + 5459, + null + ], + [ + "ident-token", + "button", + 5460, + 5465, + { + "value": "button" + } + ], + [ + "colon-token", + ":", + 5466, + 5466, + null + ], + [ + "function-token", + "not(", + 5467, + 5470, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 5471, + 5471, + null + ], + [ + "ident-token", + "disabled", + 5472, + 5479, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 5480, + 5480, + null + ], + [ + "{-token", + "{", + 5481, + 5481, + null + ], + [ + "ident-token", + "cursor", + 5482, + 5487, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 5488, + 5488, + null + ], + [ + "ident-token", + "pointer", + 5489, + 5495, + { + "value": "pointer" + } + ], + [ + "}-token", + "}", + 5496, + 5496, + null + ], + [ + "colon-token", + ":", + 5497, + 5497, + null + ], + [ + "colon-token", + ":", + 5498, + 5498, + null + ], + [ + "delim-token", + "-", + 5499, + 5499, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-focus-inner", + 5500, + 5514, + { + "value": "moz-focus-inner" + } + ], + [ + "{-token", + "{", + 5515, + 5515, + null + ], + [ + "ident-token", + "padding", + 5516, + 5522, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 5523, + 5523, + null + ], + [ + "number-token", + "0", + 5524, + 5524, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 5525, + 5525, + null + ], + [ + "ident-token", + "border-style", + 5526, + 5537, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 5538, + 5538, + null + ], + [ + "ident-token", + "none", + 5539, + 5542, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 5543, + 5543, + null + ], + [ + "ident-token", + "textarea", + 5544, + 5551, + { + "value": "textarea" + } + ], + [ + "{-token", + "{", + 5552, + 5552, + null + ], + [ + "ident-token", + "resize", + 5553, + 5558, + { + "value": "resize" + } + ], + [ + "colon-token", + ":", + 5559, + 5559, + null + ], + [ + "ident-token", + "vertical", + 5560, + 5567, + { + "value": "vertical" + } + ], + [ + "}-token", + "}", + 5568, + 5568, + null + ], + [ + "ident-token", + "fieldset", + 5569, + 5576, + { + "value": "fieldset" + } + ], + [ + "{-token", + "{", + 5577, + 5577, + null + ], + [ + "ident-token", + "min-width", + 5578, + 5586, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 5587, + 5587, + null + ], + [ + "number-token", + "0", + 5588, + 5588, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 5589, + 5589, + null + ], + [ + "ident-token", + "padding", + 5590, + 5596, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 5597, + 5597, + null + ], + [ + "number-token", + "0", + 5598, + 5598, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 5599, + 5599, + null + ], + [ + "ident-token", + "margin", + 5600, + 5605, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 5606, + 5606, + null + ], + [ + "number-token", + "0", + 5607, + 5607, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 5608, + 5608, + null + ], + [ + "ident-token", + "border", + 5609, + 5614, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 5615, + 5615, + null + ], + [ + "number-token", + "0", + 5616, + 5616, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 5617, + 5617, + null + ], + [ + "ident-token", + "legend", + 5618, + 5623, + { + "value": "legend" + } + ], + [ + "{-token", + "{", + 5624, + 5624, + null + ], + [ + "ident-token", + "float", + 5625, + 5629, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 5630, + 5630, + null + ], + [ + "ident-token", + "left", + 5631, + 5634, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 5635, + 5635, + null + ], + [ + "ident-token", + "width", + 5636, + 5640, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 5641, + 5641, + null + ], + [ + "percentage-token", + "100%", + 5642, + 5645, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 5646, + 5646, + null + ], + [ + "ident-token", + "padding", + 5647, + 5653, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 5654, + 5654, + null + ], + [ + "number-token", + "0", + 5655, + 5655, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 5656, + 5656, + null + ], + [ + "ident-token", + "margin-bottom", + 5657, + 5669, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 5670, + 5670, + null + ], + [ + "dimension-token", + ".5rem", + 5671, + 5675, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 5676, + 5676, + null + ], + [ + "ident-token", + "font-size", + 5677, + 5685, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 5686, + 5686, + null + ], + [ + "function-token", + "calc(", + 5687, + 5691, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.275rem", + 5692, + 5699, + { + "value": 1.275, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 5700, + 5700, + null + ], + [ + "delim-token", + "+", + 5701, + 5701, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 5702, + 5702, + null + ], + [ + "dimension-token", + ".3vw", + 5703, + 5706, + { + "value": 0.3, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 5707, + 5707, + null + ], + [ + "semicolon-token", + ";", + 5708, + 5708, + null + ], + [ + "ident-token", + "line-height", + 5709, + 5719, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 5720, + 5720, + null + ], + [ + "ident-token", + "inherit", + 5721, + 5727, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 5728, + 5728, + null + ], + [ + "at-keyword-token", + "@media", + 5729, + 5734, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 5735, + 5735, + null + ], + [ + "(-token", + "(", + 5736, + 5736, + null + ], + [ + "ident-token", + "min-width", + 5737, + 5745, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 5746, + 5746, + null + ], + [ + "dimension-token", + "1200px", + 5747, + 5752, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 5753, + 5753, + null + ], + [ + "{-token", + "{", + 5754, + 5754, + null + ], + [ + "ident-token", + "legend", + 5755, + 5760, + { + "value": "legend" + } + ], + [ + "{-token", + "{", + 5761, + 5761, + null + ], + [ + "ident-token", + "font-size", + 5762, + 5770, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 5771, + 5771, + null + ], + [ + "dimension-token", + "1.5rem", + 5772, + 5777, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 5778, + 5778, + null + ], + [ + "}-token", + "}", + 5779, + 5779, + null + ], + [ + "ident-token", + "legend", + 5780, + 5785, + { + "value": "legend" + } + ], + [ + "delim-token", + "+", + 5786, + 5786, + { + "value": "+" + } + ], + [ + "delim-token", + "*", + 5787, + 5787, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 5788, + 5788, + null + ], + [ + "ident-token", + "clear", + 5789, + 5793, + { + "value": "clear" + } + ], + [ + "colon-token", + ":", + 5794, + 5794, + null + ], + [ + "ident-token", + "left", + 5795, + 5798, + { + "value": "left" + } + ], + [ + "}-token", + "}", + 5799, + 5799, + null + ], + [ + "colon-token", + ":", + 5800, + 5800, + null + ], + [ + "colon-token", + ":", + 5801, + 5801, + null + ], + [ + "delim-token", + "-", + 5802, + 5802, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-day-field", + 5803, + 5832, + { + "value": "webkit-datetime-edit-day-field" + } + ], + [ + "comma-token", + ",", + 5833, + 5833, + null + ], + [ + "colon-token", + ":", + 5834, + 5834, + null + ], + [ + "colon-token", + ":", + 5835, + 5835, + null + ], + [ + "delim-token", + "-", + 5836, + 5836, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-fields-wrapper", + 5837, + 5871, + { + "value": "webkit-datetime-edit-fields-wrapper" + } + ], + [ + "comma-token", + ",", + 5872, + 5872, + null + ], + [ + "colon-token", + ":", + 5873, + 5873, + null + ], + [ + "colon-token", + ":", + 5874, + 5874, + null + ], + [ + "delim-token", + "-", + 5875, + 5875, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-hour-field", + 5876, + 5906, + { + "value": "webkit-datetime-edit-hour-field" + } + ], + [ + "comma-token", + ",", + 5907, + 5907, + null + ], + [ + "colon-token", + ":", + 5908, + 5908, + null + ], + [ + "colon-token", + ":", + 5909, + 5909, + null + ], + [ + "delim-token", + "-", + 5910, + 5910, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-minute", + 5911, + 5937, + { + "value": "webkit-datetime-edit-minute" + } + ], + [ + "comma-token", + ",", + 5938, + 5938, + null + ], + [ + "colon-token", + ":", + 5939, + 5939, + null + ], + [ + "colon-token", + ":", + 5940, + 5940, + null + ], + [ + "delim-token", + "-", + 5941, + 5941, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-month-field", + 5942, + 5973, + { + "value": "webkit-datetime-edit-month-field" + } + ], + [ + "comma-token", + ",", + 5974, + 5974, + null + ], + [ + "colon-token", + ":", + 5975, + 5975, + null + ], + [ + "colon-token", + ":", + 5976, + 5976, + null + ], + [ + "delim-token", + "-", + 5977, + 5977, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-text", + 5978, + 6002, + { + "value": "webkit-datetime-edit-text" + } + ], + [ + "comma-token", + ",", + 6003, + 6003, + null + ], + [ + "colon-token", + ":", + 6004, + 6004, + null + ], + [ + "colon-token", + ":", + 6005, + 6005, + null + ], + [ + "delim-token", + "-", + 6006, + 6006, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-datetime-edit-year-field", + 6007, + 6037, + { + "value": "webkit-datetime-edit-year-field" + } + ], + [ + "{-token", + "{", + 6038, + 6038, + null + ], + [ + "ident-token", + "padding", + 6039, + 6045, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 6046, + 6046, + null + ], + [ + "number-token", + "0", + 6047, + 6047, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 6048, + 6048, + null + ], + [ + "colon-token", + ":", + 6049, + 6049, + null + ], + [ + "colon-token", + ":", + 6050, + 6050, + null + ], + [ + "delim-token", + "-", + 6051, + 6051, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-inner-spin-button", + 6052, + 6075, + { + "value": "webkit-inner-spin-button" + } + ], + [ + "{-token", + "{", + 6076, + 6076, + null + ], + [ + "ident-token", + "height", + 6077, + 6082, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 6083, + 6083, + null + ], + [ + "ident-token", + "auto", + 6084, + 6087, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 6088, + 6088, + null + ], + [ + "[-token", + "[", + 6089, + 6089, + null + ], + [ + "ident-token", + "type", + 6090, + 6093, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 6094, + 6094, + { + "value": "=" + } + ], + [ + "ident-token", + "search", + 6095, + 6100, + { + "value": "search" + } + ], + [ + "]-token", + "]", + 6101, + 6101, + null + ], + [ + "{-token", + "{", + 6102, + 6102, + null + ], + [ + "ident-token", + "outline-offset", + 6103, + 6116, + { + "value": "outline-offset" + } + ], + [ + "colon-token", + ":", + 6117, + 6117, + null + ], + [ + "dimension-token", + "-2px", + 6118, + 6121, + { + "value": -2, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 6122, + 6122, + null + ], + [ + "delim-token", + "-", + 6123, + 6123, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 6124, + 6140, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 6141, + 6141, + null + ], + [ + "ident-token", + "textfield", + 6142, + 6150, + { + "value": "textfield" + } + ], + [ + "}-token", + "}", + 6151, + 6151, + null + ], + [ + "colon-token", + ":", + 6152, + 6152, + null + ], + [ + "colon-token", + ":", + 6153, + 6153, + null + ], + [ + "delim-token", + "-", + 6154, + 6154, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-search-decoration", + 6155, + 6178, + { + "value": "webkit-search-decoration" + } + ], + [ + "{-token", + "{", + 6179, + 6179, + null + ], + [ + "delim-token", + "-", + 6180, + 6180, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 6181, + 6197, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 6198, + 6198, + null + ], + [ + "ident-token", + "none", + 6199, + 6202, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 6203, + 6203, + null + ], + [ + "colon-token", + ":", + 6204, + 6204, + null + ], + [ + "colon-token", + ":", + 6205, + 6205, + null + ], + [ + "delim-token", + "-", + 6206, + 6206, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-color-swatch-wrapper", + 6207, + 6233, + { + "value": "webkit-color-swatch-wrapper" + } + ], + [ + "{-token", + "{", + 6234, + 6234, + null + ], + [ + "ident-token", + "padding", + 6235, + 6241, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 6242, + 6242, + null + ], + [ + "number-token", + "0", + 6243, + 6243, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 6244, + 6244, + null + ], + [ + "colon-token", + ":", + 6245, + 6245, + null + ], + [ + "colon-token", + ":", + 6246, + 6246, + null + ], + [ + "delim-token", + "-", + 6247, + 6247, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 6248, + 6272, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 6273, + 6273, + null + ], + [ + "ident-token", + "font", + 6274, + 6277, + { + "value": "font" + } + ], + [ + "colon-token", + ":", + 6278, + 6278, + null + ], + [ + "ident-token", + "inherit", + 6279, + 6285, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 6286, + 6286, + null + ], + [ + "delim-token", + "-", + 6287, + 6287, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 6288, + 6304, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 6305, + 6305, + null + ], + [ + "ident-token", + "button", + 6306, + 6311, + { + "value": "button" + } + ], + [ + "}-token", + "}", + 6312, + 6312, + null + ], + [ + "colon-token", + ":", + 6313, + 6313, + null + ], + [ + "colon-token", + ":", + 6314, + 6314, + null + ], + [ + "ident-token", + "file-selector-button", + 6315, + 6334, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 6335, + 6335, + null + ], + [ + "ident-token", + "font", + 6336, + 6339, + { + "value": "font" + } + ], + [ + "colon-token", + ":", + 6340, + 6340, + null + ], + [ + "ident-token", + "inherit", + 6341, + 6347, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 6348, + 6348, + null + ], + [ + "delim-token", + "-", + 6349, + 6349, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 6350, + 6366, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 6367, + 6367, + null + ], + [ + "ident-token", + "button", + 6368, + 6373, + { + "value": "button" + } + ], + [ + "}-token", + "}", + 6374, + 6374, + null + ], + [ + "ident-token", + "output", + 6375, + 6380, + { + "value": "output" + } + ], + [ + "{-token", + "{", + 6381, + 6381, + null + ], + [ + "ident-token", + "display", + 6382, + 6388, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 6389, + 6389, + null + ], + [ + "ident-token", + "inline-block", + 6390, + 6401, + { + "value": "inline-block" + } + ], + [ + "}-token", + "}", + 6402, + 6402, + null + ], + [ + "ident-token", + "iframe", + 6403, + 6408, + { + "value": "iframe" + } + ], + [ + "{-token", + "{", + 6409, + 6409, + null + ], + [ + "ident-token", + "border", + 6410, + 6415, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 6416, + 6416, + null + ], + [ + "number-token", + "0", + 6417, + 6417, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 6418, + 6418, + null + ], + [ + "ident-token", + "summary", + 6419, + 6425, + { + "value": "summary" + } + ], + [ + "{-token", + "{", + 6426, + 6426, + null + ], + [ + "ident-token", + "display", + 6427, + 6433, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 6434, + 6434, + null + ], + [ + "ident-token", + "list-item", + 6435, + 6443, + { + "value": "list-item" + } + ], + [ + "semicolon-token", + ";", + 6444, + 6444, + null + ], + [ + "ident-token", + "cursor", + 6445, + 6450, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 6451, + 6451, + null + ], + [ + "ident-token", + "pointer", + 6452, + 6458, + { + "value": "pointer" + } + ], + [ + "}-token", + "}", + 6459, + 6459, + null + ], + [ + "ident-token", + "progress", + 6460, + 6467, + { + "value": "progress" + } + ], + [ + "{-token", + "{", + 6468, + 6468, + null + ], + [ + "ident-token", + "vertical-align", + 6469, + 6482, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 6483, + 6483, + null + ], + [ + "ident-token", + "baseline", + 6484, + 6491, + { + "value": "baseline" + } + ], + [ + "}-token", + "}", + 6492, + 6492, + null + ], + [ + "[-token", + "[", + 6493, + 6493, + null + ], + [ + "ident-token", + "hidden", + 6494, + 6499, + { + "value": "hidden" + } + ], + [ + "]-token", + "]", + 6500, + 6500, + null + ], + [ + "{-token", + "{", + 6501, + 6501, + null + ], + [ + "ident-token", + "display", + 6502, + 6508, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 6509, + 6509, + null + ], + [ + "ident-token", + "none", + 6510, + 6513, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 6514, + 6514, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 6515, + 6523, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 6524, + 6524, + null + ], + [ + "delim-token", + ".", + 6525, + 6525, + { + "value": "." + } + ], + [ + "ident-token", + "lead", + 6526, + 6529, + { + "value": "lead" + } + ], + [ + "{-token", + "{", + 6530, + 6530, + null + ], + [ + "ident-token", + "font-size", + 6531, + 6539, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6540, + 6540, + null + ], + [ + "dimension-token", + "1.25rem", + 6541, + 6547, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 6548, + 6548, + null + ], + [ + "ident-token", + "font-weight", + 6549, + 6559, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 6560, + 6560, + null + ], + [ + "number-token", + "300", + 6561, + 6563, + { + "value": 300, + "type": "integer" + } + ], + [ + "}-token", + "}", + 6564, + 6564, + null + ], + [ + "delim-token", + ".", + 6565, + 6565, + { + "value": "." + } + ], + [ + "ident-token", + "display-1", + 6566, + 6574, + { + "value": "display-1" + } + ], + [ + "{-token", + "{", + 6575, + 6575, + null + ], + [ + "ident-token", + "font-size", + 6576, + 6584, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6585, + 6585, + null + ], + [ + "function-token", + "calc(", + 6586, + 6590, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.625rem", + 6591, + 6598, + { + "value": 1.625, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 6599, + 6599, + null + ], + [ + "delim-token", + "+", + 6600, + 6600, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 6601, + 6601, + null + ], + [ + "dimension-token", + "4.5vw", + 6602, + 6606, + { + "value": 4.5, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 6607, + 6607, + null + ], + [ + "semicolon-token", + ";", + 6608, + 6608, + null + ], + [ + "ident-token", + "font-weight", + 6609, + 6619, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 6620, + 6620, + null + ], + [ + "number-token", + "300", + 6621, + 6623, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 6624, + 6624, + null + ], + [ + "ident-token", + "line-height", + 6625, + 6635, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 6636, + 6636, + null + ], + [ + "number-token", + "1.2", + 6637, + 6639, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 6640, + 6640, + null + ], + [ + "at-keyword-token", + "@media", + 6641, + 6646, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 6647, + 6647, + null + ], + [ + "(-token", + "(", + 6648, + 6648, + null + ], + [ + "ident-token", + "min-width", + 6649, + 6657, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 6658, + 6658, + null + ], + [ + "dimension-token", + "1200px", + 6659, + 6664, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 6665, + 6665, + null + ], + [ + "{-token", + "{", + 6666, + 6666, + null + ], + [ + "delim-token", + ".", + 6667, + 6667, + { + "value": "." + } + ], + [ + "ident-token", + "display-1", + 6668, + 6676, + { + "value": "display-1" + } + ], + [ + "{-token", + "{", + 6677, + 6677, + null + ], + [ + "ident-token", + "font-size", + 6678, + 6686, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6687, + 6687, + null + ], + [ + "dimension-token", + "5rem", + 6688, + 6691, + { + "value": 5, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 6692, + 6692, + null + ], + [ + "}-token", + "}", + 6693, + 6693, + null + ], + [ + "delim-token", + ".", + 6694, + 6694, + { + "value": "." + } + ], + [ + "ident-token", + "display-2", + 6695, + 6703, + { + "value": "display-2" + } + ], + [ + "{-token", + "{", + 6704, + 6704, + null + ], + [ + "ident-token", + "font-size", + 6705, + 6713, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6714, + 6714, + null + ], + [ + "function-token", + "calc(", + 6715, + 6719, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.575rem", + 6720, + 6727, + { + "value": 1.575, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 6728, + 6728, + null + ], + [ + "delim-token", + "+", + 6729, + 6729, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 6730, + 6730, + null + ], + [ + "dimension-token", + "3.9vw", + 6731, + 6735, + { + "value": 3.9, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 6736, + 6736, + null + ], + [ + "semicolon-token", + ";", + 6737, + 6737, + null + ], + [ + "ident-token", + "font-weight", + 6738, + 6748, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 6749, + 6749, + null + ], + [ + "number-token", + "300", + 6750, + 6752, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 6753, + 6753, + null + ], + [ + "ident-token", + "line-height", + 6754, + 6764, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 6765, + 6765, + null + ], + [ + "number-token", + "1.2", + 6766, + 6768, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 6769, + 6769, + null + ], + [ + "at-keyword-token", + "@media", + 6770, + 6775, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 6776, + 6776, + null + ], + [ + "(-token", + "(", + 6777, + 6777, + null + ], + [ + "ident-token", + "min-width", + 6778, + 6786, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 6787, + 6787, + null + ], + [ + "dimension-token", + "1200px", + 6788, + 6793, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 6794, + 6794, + null + ], + [ + "{-token", + "{", + 6795, + 6795, + null + ], + [ + "delim-token", + ".", + 6796, + 6796, + { + "value": "." + } + ], + [ + "ident-token", + "display-2", + 6797, + 6805, + { + "value": "display-2" + } + ], + [ + "{-token", + "{", + 6806, + 6806, + null + ], + [ + "ident-token", + "font-size", + 6807, + 6815, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6816, + 6816, + null + ], + [ + "dimension-token", + "4.5rem", + 6817, + 6822, + { + "value": 4.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 6823, + 6823, + null + ], + [ + "}-token", + "}", + 6824, + 6824, + null + ], + [ + "delim-token", + ".", + 6825, + 6825, + { + "value": "." + } + ], + [ + "ident-token", + "display-3", + 6826, + 6834, + { + "value": "display-3" + } + ], + [ + "{-token", + "{", + 6835, + 6835, + null + ], + [ + "ident-token", + "font-size", + 6836, + 6844, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6845, + 6845, + null + ], + [ + "function-token", + "calc(", + 6846, + 6850, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.525rem", + 6851, + 6858, + { + "value": 1.525, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 6859, + 6859, + null + ], + [ + "delim-token", + "+", + 6860, + 6860, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 6861, + 6861, + null + ], + [ + "dimension-token", + "3.3vw", + 6862, + 6866, + { + "value": 3.3, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 6867, + 6867, + null + ], + [ + "semicolon-token", + ";", + 6868, + 6868, + null + ], + [ + "ident-token", + "font-weight", + 6869, + 6879, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 6880, + 6880, + null + ], + [ + "number-token", + "300", + 6881, + 6883, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 6884, + 6884, + null + ], + [ + "ident-token", + "line-height", + 6885, + 6895, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 6896, + 6896, + null + ], + [ + "number-token", + "1.2", + 6897, + 6899, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 6900, + 6900, + null + ], + [ + "at-keyword-token", + "@media", + 6901, + 6906, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 6907, + 6907, + null + ], + [ + "(-token", + "(", + 6908, + 6908, + null + ], + [ + "ident-token", + "min-width", + 6909, + 6917, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 6918, + 6918, + null + ], + [ + "dimension-token", + "1200px", + 6919, + 6924, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 6925, + 6925, + null + ], + [ + "{-token", + "{", + 6926, + 6926, + null + ], + [ + "delim-token", + ".", + 6927, + 6927, + { + "value": "." + } + ], + [ + "ident-token", + "display-3", + 6928, + 6936, + { + "value": "display-3" + } + ], + [ + "{-token", + "{", + 6937, + 6937, + null + ], + [ + "ident-token", + "font-size", + 6938, + 6946, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6947, + 6947, + null + ], + [ + "dimension-token", + "4rem", + 6948, + 6951, + { + "value": 4, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 6952, + 6952, + null + ], + [ + "}-token", + "}", + 6953, + 6953, + null + ], + [ + "delim-token", + ".", + 6954, + 6954, + { + "value": "." + } + ], + [ + "ident-token", + "display-4", + 6955, + 6963, + { + "value": "display-4" + } + ], + [ + "{-token", + "{", + 6964, + 6964, + null + ], + [ + "ident-token", + "font-size", + 6965, + 6973, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 6974, + 6974, + null + ], + [ + "function-token", + "calc(", + 6975, + 6979, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.475rem", + 6980, + 6987, + { + "value": 1.475, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 6988, + 6988, + null + ], + [ + "delim-token", + "+", + 6989, + 6989, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 6990, + 6990, + null + ], + [ + "dimension-token", + "2.7vw", + 6991, + 6995, + { + "value": 2.7, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 6996, + 6996, + null + ], + [ + "semicolon-token", + ";", + 6997, + 6997, + null + ], + [ + "ident-token", + "font-weight", + 6998, + 7008, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 7009, + 7009, + null + ], + [ + "number-token", + "300", + 7010, + 7012, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 7013, + 7013, + null + ], + [ + "ident-token", + "line-height", + 7014, + 7024, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 7025, + 7025, + null + ], + [ + "number-token", + "1.2", + 7026, + 7028, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 7029, + 7029, + null + ], + [ + "at-keyword-token", + "@media", + 7030, + 7035, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 7036, + 7036, + null + ], + [ + "(-token", + "(", + 7037, + 7037, + null + ], + [ + "ident-token", + "min-width", + 7038, + 7046, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 7047, + 7047, + null + ], + [ + "dimension-token", + "1200px", + 7048, + 7053, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 7054, + 7054, + null + ], + [ + "{-token", + "{", + 7055, + 7055, + null + ], + [ + "delim-token", + ".", + 7056, + 7056, + { + "value": "." + } + ], + [ + "ident-token", + "display-4", + 7057, + 7065, + { + "value": "display-4" + } + ], + [ + "{-token", + "{", + 7066, + 7066, + null + ], + [ + "ident-token", + "font-size", + 7067, + 7075, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7076, + 7076, + null + ], + [ + "dimension-token", + "3.5rem", + 7077, + 7082, + { + "value": 3.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 7083, + 7083, + null + ], + [ + "}-token", + "}", + 7084, + 7084, + null + ], + [ + "delim-token", + ".", + 7085, + 7085, + { + "value": "." + } + ], + [ + "ident-token", + "display-5", + 7086, + 7094, + { + "value": "display-5" + } + ], + [ + "{-token", + "{", + 7095, + 7095, + null + ], + [ + "ident-token", + "font-size", + 7096, + 7104, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7105, + 7105, + null + ], + [ + "function-token", + "calc(", + 7106, + 7110, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.425rem", + 7111, + 7118, + { + "value": 1.425, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 7119, + 7119, + null + ], + [ + "delim-token", + "+", + 7120, + 7120, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 7121, + 7121, + null + ], + [ + "dimension-token", + "2.1vw", + 7122, + 7126, + { + "value": 2.1, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 7127, + 7127, + null + ], + [ + "semicolon-token", + ";", + 7128, + 7128, + null + ], + [ + "ident-token", + "font-weight", + 7129, + 7139, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 7140, + 7140, + null + ], + [ + "number-token", + "300", + 7141, + 7143, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 7144, + 7144, + null + ], + [ + "ident-token", + "line-height", + 7145, + 7155, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 7156, + 7156, + null + ], + [ + "number-token", + "1.2", + 7157, + 7159, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 7160, + 7160, + null + ], + [ + "at-keyword-token", + "@media", + 7161, + 7166, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 7167, + 7167, + null + ], + [ + "(-token", + "(", + 7168, + 7168, + null + ], + [ + "ident-token", + "min-width", + 7169, + 7177, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 7178, + 7178, + null + ], + [ + "dimension-token", + "1200px", + 7179, + 7184, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 7185, + 7185, + null + ], + [ + "{-token", + "{", + 7186, + 7186, + null + ], + [ + "delim-token", + ".", + 7187, + 7187, + { + "value": "." + } + ], + [ + "ident-token", + "display-5", + 7188, + 7196, + { + "value": "display-5" + } + ], + [ + "{-token", + "{", + 7197, + 7197, + null + ], + [ + "ident-token", + "font-size", + 7198, + 7206, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7207, + 7207, + null + ], + [ + "dimension-token", + "3rem", + 7208, + 7211, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 7212, + 7212, + null + ], + [ + "}-token", + "}", + 7213, + 7213, + null + ], + [ + "delim-token", + ".", + 7214, + 7214, + { + "value": "." + } + ], + [ + "ident-token", + "display-6", + 7215, + 7223, + { + "value": "display-6" + } + ], + [ + "{-token", + "{", + 7224, + 7224, + null + ], + [ + "ident-token", + "font-size", + 7225, + 7233, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7234, + 7234, + null + ], + [ + "function-token", + "calc(", + 7235, + 7239, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.375rem", + 7240, + 7247, + { + "value": 1.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 7248, + 7248, + null + ], + [ + "delim-token", + "+", + 7249, + 7249, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 7250, + 7250, + null + ], + [ + "dimension-token", + "1.5vw", + 7251, + 7255, + { + "value": 1.5, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 7256, + 7256, + null + ], + [ + "semicolon-token", + ";", + 7257, + 7257, + null + ], + [ + "ident-token", + "font-weight", + 7258, + 7268, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 7269, + 7269, + null + ], + [ + "number-token", + "300", + 7270, + 7272, + { + "value": 300, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 7273, + 7273, + null + ], + [ + "ident-token", + "line-height", + 7274, + 7284, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 7285, + 7285, + null + ], + [ + "number-token", + "1.2", + 7286, + 7288, + { + "value": 1.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 7289, + 7289, + null + ], + [ + "at-keyword-token", + "@media", + 7290, + 7295, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 7296, + 7296, + null + ], + [ + "(-token", + "(", + 7297, + 7297, + null + ], + [ + "ident-token", + "min-width", + 7298, + 7306, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 7307, + 7307, + null + ], + [ + "dimension-token", + "1200px", + 7308, + 7313, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 7314, + 7314, + null + ], + [ + "{-token", + "{", + 7315, + 7315, + null + ], + [ + "delim-token", + ".", + 7316, + 7316, + { + "value": "." + } + ], + [ + "ident-token", + "display-6", + 7317, + 7325, + { + "value": "display-6" + } + ], + [ + "{-token", + "{", + 7326, + 7326, + null + ], + [ + "ident-token", + "font-size", + 7327, + 7335, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7336, + 7336, + null + ], + [ + "dimension-token", + "2.5rem", + 7337, + 7342, + { + "value": 2.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 7343, + 7343, + null + ], + [ + "}-token", + "}", + 7344, + 7344, + null + ], + [ + "delim-token", + ".", + 7345, + 7345, + { + "value": "." + } + ], + [ + "ident-token", + "list-unstyled", + 7346, + 7358, + { + "value": "list-unstyled" + } + ], + [ + "{-token", + "{", + 7359, + 7359, + null + ], + [ + "ident-token", + "padding-left", + 7360, + 7371, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 7372, + 7372, + null + ], + [ + "number-token", + "0", + 7373, + 7373, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 7374, + 7374, + null + ], + [ + "ident-token", + "list-style", + 7375, + 7384, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 7385, + 7385, + null + ], + [ + "ident-token", + "none", + 7386, + 7389, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 7390, + 7390, + null + ], + [ + "delim-token", + ".", + 7391, + 7391, + { + "value": "." + } + ], + [ + "ident-token", + "list-inline", + 7392, + 7402, + { + "value": "list-inline" + } + ], + [ + "{-token", + "{", + 7403, + 7403, + null + ], + [ + "ident-token", + "padding-left", + 7404, + 7415, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 7416, + 7416, + null + ], + [ + "number-token", + "0", + 7417, + 7417, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 7418, + 7418, + null + ], + [ + "ident-token", + "list-style", + 7419, + 7428, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 7429, + 7429, + null + ], + [ + "ident-token", + "none", + 7430, + 7433, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 7434, + 7434, + null + ], + [ + "delim-token", + ".", + 7435, + 7435, + { + "value": "." + } + ], + [ + "ident-token", + "list-inline-item", + 7436, + 7451, + { + "value": "list-inline-item" + } + ], + [ + "{-token", + "{", + 7452, + 7452, + null + ], + [ + "ident-token", + "display", + 7453, + 7459, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 7460, + 7460, + null + ], + [ + "ident-token", + "inline-block", + 7461, + 7472, + { + "value": "inline-block" + } + ], + [ + "}-token", + "}", + 7473, + 7473, + null + ], + [ + "delim-token", + ".", + 7474, + 7474, + { + "value": "." + } + ], + [ + "ident-token", + "list-inline-item", + 7475, + 7490, + { + "value": "list-inline-item" + } + ], + [ + "colon-token", + ":", + 7491, + 7491, + null + ], + [ + "function-token", + "not(", + 7492, + 7495, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 7496, + 7496, + null + ], + [ + "ident-token", + "last-child", + 7497, + 7506, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 7507, + 7507, + null + ], + [ + "{-token", + "{", + 7508, + 7508, + null + ], + [ + "ident-token", + "margin-right", + 7509, + 7520, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 7521, + 7521, + null + ], + [ + "dimension-token", + ".5rem", + 7522, + 7526, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 7527, + 7527, + null + ], + [ + "delim-token", + ".", + 7528, + 7528, + { + "value": "." + } + ], + [ + "ident-token", + "initialism", + 7529, + 7538, + { + "value": "initialism" + } + ], + [ + "{-token", + "{", + 7539, + 7539, + null + ], + [ + "ident-token", + "font-size", + 7540, + 7548, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7549, + 7549, + null + ], + [ + "dimension-token", + ".875em", + 7550, + 7555, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 7556, + 7556, + null + ], + [ + "ident-token", + "text-transform", + 7557, + 7570, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 7571, + 7571, + null + ], + [ + "ident-token", + "uppercase", + 7572, + 7580, + { + "value": "uppercase" + } + ], + [ + "}-token", + "}", + 7581, + 7581, + null + ], + [ + "delim-token", + ".", + 7582, + 7582, + { + "value": "." + } + ], + [ + "ident-token", + "blockquote", + 7583, + 7592, + { + "value": "blockquote" + } + ], + [ + "{-token", + "{", + 7593, + 7593, + null + ], + [ + "ident-token", + "margin-bottom", + 7594, + 7606, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 7607, + 7607, + null + ], + [ + "dimension-token", + "1rem", + 7608, + 7611, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 7612, + 7612, + null + ], + [ + "ident-token", + "font-size", + 7613, + 7621, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7622, + 7622, + null + ], + [ + "dimension-token", + "1.25rem", + 7623, + 7629, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 7630, + 7630, + null + ], + [ + "delim-token", + ".", + 7631, + 7631, + { + "value": "." + } + ], + [ + "ident-token", + "blockquote", + 7632, + 7641, + { + "value": "blockquote" + } + ], + [ + "delim-token", + ">", + 7642, + 7642, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 7643, + 7643, + null + ], + [ + "ident-token", + "last-child", + 7644, + 7653, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 7654, + 7654, + null + ], + [ + "ident-token", + "margin-bottom", + 7655, + 7667, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 7668, + 7668, + null + ], + [ + "number-token", + "0", + 7669, + 7669, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 7670, + 7670, + null + ], + [ + "delim-token", + ".", + 7671, + 7671, + { + "value": "." + } + ], + [ + "ident-token", + "blockquote-footer", + 7672, + 7688, + { + "value": "blockquote-footer" + } + ], + [ + "{-token", + "{", + 7689, + 7689, + null + ], + [ + "ident-token", + "margin-top", + 7690, + 7699, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 7700, + 7700, + null + ], + [ + "dimension-token", + "-1rem", + 7701, + 7705, + { + "value": -1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 7706, + 7706, + null + ], + [ + "ident-token", + "margin-bottom", + 7707, + 7719, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 7720, + 7720, + null + ], + [ + "dimension-token", + "1rem", + 7721, + 7724, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 7725, + 7725, + null + ], + [ + "ident-token", + "font-size", + 7726, + 7734, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 7735, + 7735, + null + ], + [ + "dimension-token", + ".875em", + 7736, + 7741, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 7742, + 7742, + null + ], + [ + "ident-token", + "color", + 7743, + 7747, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 7748, + 7748, + null + ], + [ + "hash-token", + "#6c757d", + 7749, + 7755, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 7756, + 7756, + null + ], + [ + "delim-token", + ".", + 7757, + 7757, + { + "value": "." + } + ], + [ + "ident-token", + "blockquote-footer", + 7758, + 7774, + { + "value": "blockquote-footer" + } + ], + [ + "colon-token", + ":", + 7775, + 7775, + null + ], + [ + "colon-token", + ":", + 7776, + 7776, + null + ], + [ + "ident-token", + "before", + 7777, + 7782, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 7783, + 7783, + null + ], + [ + "ident-token", + "content", + 7784, + 7790, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 7791, + 7791, + null + ], + [ + "string-token", + "\"— \"", + 7792, + 7795, + { + "value": "— " + } + ], + [ + "}-token", + "}", + 7796, + 7796, + null + ], + [ + "delim-token", + ".", + 7797, + 7797, + { + "value": "." + } + ], + [ + "ident-token", + "img-fluid", + 7798, + 7806, + { + "value": "img-fluid" + } + ], + [ + "{-token", + "{", + 7807, + 7807, + null + ], + [ + "ident-token", + "max-width", + 7808, + 7816, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 7817, + 7817, + null + ], + [ + "percentage-token", + "100%", + 7818, + 7821, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 7822, + 7822, + null + ], + [ + "ident-token", + "height", + 7823, + 7828, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 7829, + 7829, + null + ], + [ + "ident-token", + "auto", + 7830, + 7833, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 7834, + 7834, + null + ], + [ + "delim-token", + ".", + 7835, + 7835, + { + "value": "." + } + ], + [ + "ident-token", + "img-thumbnail", + 7836, + 7848, + { + "value": "img-thumbnail" + } + ], + [ + "{-token", + "{", + 7849, + 7849, + null + ], + [ + "ident-token", + "padding", + 7850, + 7856, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 7857, + 7857, + null + ], + [ + "dimension-token", + ".25rem", + 7858, + 7863, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 7864, + 7864, + null + ], + [ + "ident-token", + "background-color", + 7865, + 7880, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 7881, + 7881, + null + ], + [ + "hash-token", + "#fff", + 7882, + 7885, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 7886, + 7886, + null + ], + [ + "ident-token", + "border", + 7887, + 7892, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 7893, + 7893, + null + ], + [ + "dimension-token", + "1px", + 7894, + 7896, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7897, + 7897, + null + ], + [ + "ident-token", + "solid", + 7898, + 7902, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 7903, + 7903, + null + ], + [ + "function-token", + "var(", + 7904, + 7907, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 7908, + 7908, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 7909, + 7909, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 7910, + 7924, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 7925, + 7925, + null + ], + [ + "semicolon-token", + ";", + 7926, + 7926, + null + ], + [ + "ident-token", + "border-radius", + 7927, + 7939, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 7940, + 7940, + null + ], + [ + "dimension-token", + ".375rem", + 7941, + 7947, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 7948, + 7948, + null + ], + [ + "ident-token", + "max-width", + 7949, + 7957, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 7958, + 7958, + null + ], + [ + "percentage-token", + "100%", + 7959, + 7962, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 7963, + 7963, + null + ], + [ + "ident-token", + "height", + 7964, + 7969, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 7970, + 7970, + null + ], + [ + "ident-token", + "auto", + 7971, + 7974, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 7975, + 7975, + null + ], + [ + "delim-token", + ".", + 7976, + 7976, + { + "value": "." + } + ], + [ + "ident-token", + "figure", + 7977, + 7982, + { + "value": "figure" + } + ], + [ + "{-token", + "{", + 7983, + 7983, + null + ], + [ + "ident-token", + "display", + 7984, + 7990, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 7991, + 7991, + null + ], + [ + "ident-token", + "inline-block", + 7992, + 8003, + { + "value": "inline-block" + } + ], + [ + "}-token", + "}", + 8004, + 8004, + null + ], + [ + "delim-token", + ".", + 8005, + 8005, + { + "value": "." + } + ], + [ + "ident-token", + "figure-img", + 8006, + 8015, + { + "value": "figure-img" + } + ], + [ + "{-token", + "{", + 8016, + 8016, + null + ], + [ + "ident-token", + "margin-bottom", + 8017, + 8029, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 8030, + 8030, + null + ], + [ + "dimension-token", + ".5rem", + 8031, + 8035, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 8036, + 8036, + null + ], + [ + "ident-token", + "line-height", + 8037, + 8047, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 8048, + 8048, + null + ], + [ + "number-token", + "1", + 8049, + 8049, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 8050, + 8050, + null + ], + [ + "delim-token", + ".", + 8051, + 8051, + { + "value": "." + } + ], + [ + "ident-token", + "figure-caption", + 8052, + 8065, + { + "value": "figure-caption" + } + ], + [ + "{-token", + "{", + 8066, + 8066, + null + ], + [ + "ident-token", + "font-size", + 8067, + 8075, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 8076, + 8076, + null + ], + [ + "dimension-token", + ".875em", + 8077, + 8082, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 8083, + 8083, + null + ], + [ + "ident-token", + "color", + 8084, + 8088, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 8089, + 8089, + null + ], + [ + "hash-token", + "#6c757d", + 8090, + 8096, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 8097, + 8097, + null + ], + [ + "delim-token", + ".", + 8098, + 8098, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8099, + 8107, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8108, + 8108, + null + ], + [ + "delim-token", + ".", + 8109, + 8109, + { + "value": "." + } + ], + [ + "ident-token", + "container-fluid", + 8110, + 8124, + { + "value": "container-fluid" + } + ], + [ + "comma-token", + ",", + 8125, + 8125, + null + ], + [ + "delim-token", + ".", + 8126, + 8126, + { + "value": "." + } + ], + [ + "ident-token", + "container-lg", + 8127, + 8138, + { + "value": "container-lg" + } + ], + [ + "comma-token", + ",", + 8139, + 8139, + null + ], + [ + "delim-token", + ".", + 8140, + 8140, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 8141, + 8152, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 8153, + 8153, + null + ], + [ + "delim-token", + ".", + 8154, + 8154, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8155, + 8166, + { + "value": "container-sm" + } + ], + [ + "comma-token", + ",", + 8167, + 8167, + null + ], + [ + "delim-token", + ".", + 8168, + 8168, + { + "value": "." + } + ], + [ + "ident-token", + "container-xl", + 8169, + 8180, + { + "value": "container-xl" + } + ], + [ + "comma-token", + ",", + 8181, + 8181, + null + ], + [ + "delim-token", + ".", + 8182, + 8182, + { + "value": "." + } + ], + [ + "ident-token", + "container-xxl", + 8183, + 8195, + { + "value": "container-xxl" + } + ], + [ + "{-token", + "{", + 8196, + 8196, + null + ], + [ + "delim-token", + "-", + 8197, + 8197, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8198, + 8198, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 8199, + 8209, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 8210, + 8210, + null + ], + [ + "dimension-token", + "1.5rem", + 8211, + 8216, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 8217, + 8217, + null + ], + [ + "delim-token", + "-", + 8218, + 8218, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8219, + 8219, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 8220, + 8230, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 8231, + 8231, + null + ], + [ + "number-token", + "0", + 8232, + 8232, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 8233, + 8233, + null + ], + [ + "ident-token", + "width", + 8234, + 8238, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 8239, + 8239, + null + ], + [ + "percentage-token", + "100%", + 8240, + 8243, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 8244, + 8244, + null + ], + [ + "ident-token", + "padding-right", + 8245, + 8257, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 8258, + 8258, + null + ], + [ + "function-token", + "calc(", + 8259, + 8263, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 8264, + 8267, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 8268, + 8268, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8269, + 8269, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 8270, + 8280, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 8281, + 8281, + null + ], + [ + "whitespace-token", + " ", + 8282, + 8282, + null + ], + [ + "delim-token", + "*", + 8283, + 8283, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 8284, + 8284, + null + ], + [ + "number-token", + ".5", + 8285, + 8286, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 8287, + 8287, + null + ], + [ + "semicolon-token", + ";", + 8288, + 8288, + null + ], + [ + "ident-token", + "padding-left", + 8289, + 8300, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 8301, + 8301, + null + ], + [ + "function-token", + "calc(", + 8302, + 8306, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 8307, + 8310, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 8311, + 8311, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8312, + 8312, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 8313, + 8323, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 8324, + 8324, + null + ], + [ + "whitespace-token", + " ", + 8325, + 8325, + null + ], + [ + "delim-token", + "*", + 8326, + 8326, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 8327, + 8327, + null + ], + [ + "number-token", + ".5", + 8328, + 8329, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 8330, + 8330, + null + ], + [ + "semicolon-token", + ";", + 8331, + 8331, + null + ], + [ + "ident-token", + "margin-right", + 8332, + 8343, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 8344, + 8344, + null + ], + [ + "ident-token", + "auto", + 8345, + 8348, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 8349, + 8349, + null + ], + [ + "ident-token", + "margin-left", + 8350, + 8360, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 8361, + 8361, + null + ], + [ + "ident-token", + "auto", + 8362, + 8365, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 8366, + 8366, + null + ], + [ + "at-keyword-token", + "@media", + 8367, + 8372, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 8373, + 8373, + null + ], + [ + "(-token", + "(", + 8374, + 8374, + null + ], + [ + "ident-token", + "min-width", + 8375, + 8383, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 8384, + 8384, + null + ], + [ + "dimension-token", + "576px", + 8385, + 8389, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 8390, + 8390, + null + ], + [ + "{-token", + "{", + 8391, + 8391, + null + ], + [ + "delim-token", + ".", + 8392, + 8392, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8393, + 8401, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8402, + 8402, + null + ], + [ + "delim-token", + ".", + 8403, + 8403, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8404, + 8415, + { + "value": "container-sm" + } + ], + [ + "{-token", + "{", + 8416, + 8416, + null + ], + [ + "ident-token", + "max-width", + 8417, + 8425, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 8426, + 8426, + null + ], + [ + "dimension-token", + "540px", + 8427, + 8431, + { + "value": 540, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 8432, + 8432, + null + ], + [ + "}-token", + "}", + 8433, + 8433, + null + ], + [ + "at-keyword-token", + "@media", + 8434, + 8439, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 8440, + 8440, + null + ], + [ + "(-token", + "(", + 8441, + 8441, + null + ], + [ + "ident-token", + "min-width", + 8442, + 8450, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 8451, + 8451, + null + ], + [ + "dimension-token", + "768px", + 8452, + 8456, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 8457, + 8457, + null + ], + [ + "{-token", + "{", + 8458, + 8458, + null + ], + [ + "delim-token", + ".", + 8459, + 8459, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8460, + 8468, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8469, + 8469, + null + ], + [ + "delim-token", + ".", + 8470, + 8470, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 8471, + 8482, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 8483, + 8483, + null + ], + [ + "delim-token", + ".", + 8484, + 8484, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8485, + 8496, + { + "value": "container-sm" + } + ], + [ + "{-token", + "{", + 8497, + 8497, + null + ], + [ + "ident-token", + "max-width", + 8498, + 8506, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 8507, + 8507, + null + ], + [ + "dimension-token", + "720px", + 8508, + 8512, + { + "value": 720, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 8513, + 8513, + null + ], + [ + "}-token", + "}", + 8514, + 8514, + null + ], + [ + "at-keyword-token", + "@media", + 8515, + 8520, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 8521, + 8521, + null + ], + [ + "(-token", + "(", + 8522, + 8522, + null + ], + [ + "ident-token", + "min-width", + 8523, + 8531, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 8532, + 8532, + null + ], + [ + "dimension-token", + "992px", + 8533, + 8537, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 8538, + 8538, + null + ], + [ + "{-token", + "{", + 8539, + 8539, + null + ], + [ + "delim-token", + ".", + 8540, + 8540, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8541, + 8549, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8550, + 8550, + null + ], + [ + "delim-token", + ".", + 8551, + 8551, + { + "value": "." + } + ], + [ + "ident-token", + "container-lg", + 8552, + 8563, + { + "value": "container-lg" + } + ], + [ + "comma-token", + ",", + 8564, + 8564, + null + ], + [ + "delim-token", + ".", + 8565, + 8565, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 8566, + 8577, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 8578, + 8578, + null + ], + [ + "delim-token", + ".", + 8579, + 8579, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8580, + 8591, + { + "value": "container-sm" + } + ], + [ + "{-token", + "{", + 8592, + 8592, + null + ], + [ + "ident-token", + "max-width", + 8593, + 8601, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 8602, + 8602, + null + ], + [ + "dimension-token", + "960px", + 8603, + 8607, + { + "value": 960, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 8608, + 8608, + null + ], + [ + "}-token", + "}", + 8609, + 8609, + null + ], + [ + "at-keyword-token", + "@media", + 8610, + 8615, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 8616, + 8616, + null + ], + [ + "(-token", + "(", + 8617, + 8617, + null + ], + [ + "ident-token", + "min-width", + 8618, + 8626, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 8627, + 8627, + null + ], + [ + "dimension-token", + "1200px", + 8628, + 8633, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 8634, + 8634, + null + ], + [ + "{-token", + "{", + 8635, + 8635, + null + ], + [ + "delim-token", + ".", + 8636, + 8636, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8637, + 8645, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8646, + 8646, + null + ], + [ + "delim-token", + ".", + 8647, + 8647, + { + "value": "." + } + ], + [ + "ident-token", + "container-lg", + 8648, + 8659, + { + "value": "container-lg" + } + ], + [ + "comma-token", + ",", + 8660, + 8660, + null + ], + [ + "delim-token", + ".", + 8661, + 8661, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 8662, + 8673, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 8674, + 8674, + null + ], + [ + "delim-token", + ".", + 8675, + 8675, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8676, + 8687, + { + "value": "container-sm" + } + ], + [ + "comma-token", + ",", + 8688, + 8688, + null + ], + [ + "delim-token", + ".", + 8689, + 8689, + { + "value": "." + } + ], + [ + "ident-token", + "container-xl", + 8690, + 8701, + { + "value": "container-xl" + } + ], + [ + "{-token", + "{", + 8702, + 8702, + null + ], + [ + "ident-token", + "max-width", + 8703, + 8711, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 8712, + 8712, + null + ], + [ + "dimension-token", + "1140px", + 8713, + 8718, + { + "value": 1140, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 8719, + 8719, + null + ], + [ + "}-token", + "}", + 8720, + 8720, + null + ], + [ + "at-keyword-token", + "@media", + 8721, + 8726, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 8727, + 8727, + null + ], + [ + "(-token", + "(", + 8728, + 8728, + null + ], + [ + "ident-token", + "min-width", + 8729, + 8737, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 8738, + 8738, + null + ], + [ + "dimension-token", + "1400px", + 8739, + 8744, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 8745, + 8745, + null + ], + [ + "{-token", + "{", + 8746, + 8746, + null + ], + [ + "delim-token", + ".", + 8747, + 8747, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 8748, + 8756, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 8757, + 8757, + null + ], + [ + "delim-token", + ".", + 8758, + 8758, + { + "value": "." + } + ], + [ + "ident-token", + "container-lg", + 8759, + 8770, + { + "value": "container-lg" + } + ], + [ + "comma-token", + ",", + 8771, + 8771, + null + ], + [ + "delim-token", + ".", + 8772, + 8772, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 8773, + 8784, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 8785, + 8785, + null + ], + [ + "delim-token", + ".", + 8786, + 8786, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 8787, + 8798, + { + "value": "container-sm" + } + ], + [ + "comma-token", + ",", + 8799, + 8799, + null + ], + [ + "delim-token", + ".", + 8800, + 8800, + { + "value": "." + } + ], + [ + "ident-token", + "container-xl", + 8801, + 8812, + { + "value": "container-xl" + } + ], + [ + "comma-token", + ",", + 8813, + 8813, + null + ], + [ + "delim-token", + ".", + 8814, + 8814, + { + "value": "." + } + ], + [ + "ident-token", + "container-xxl", + 8815, + 8827, + { + "value": "container-xxl" + } + ], + [ + "{-token", + "{", + 8828, + 8828, + null + ], + [ + "ident-token", + "max-width", + 8829, + 8837, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 8838, + 8838, + null + ], + [ + "dimension-token", + "1320px", + 8839, + 8844, + { + "value": 1320, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 8845, + 8845, + null + ], + [ + "}-token", + "}", + 8846, + 8846, + null + ], + [ + "delim-token", + ".", + 8847, + 8847, + { + "value": "." + } + ], + [ + "ident-token", + "row", + 8848, + 8850, + { + "value": "row" + } + ], + [ + "{-token", + "{", + 8851, + 8851, + null + ], + [ + "delim-token", + "-", + 8852, + 8852, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8853, + 8853, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 8854, + 8864, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 8865, + 8865, + null + ], + [ + "dimension-token", + "1.5rem", + 8866, + 8871, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 8872, + 8872, + null + ], + [ + "delim-token", + "-", + 8873, + 8873, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8874, + 8874, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 8875, + 8885, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 8886, + 8886, + null + ], + [ + "number-token", + "0", + 8887, + 8887, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 8888, + 8888, + null + ], + [ + "ident-token", + "display", + 8889, + 8895, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 8896, + 8896, + null + ], + [ + "ident-token", + "flex", + 8897, + 8900, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 8901, + 8901, + null + ], + [ + "ident-token", + "flex-wrap", + 8902, + 8910, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 8911, + 8911, + null + ], + [ + "ident-token", + "wrap", + 8912, + 8915, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 8916, + 8916, + null + ], + [ + "ident-token", + "margin-top", + 8917, + 8926, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 8927, + 8927, + null + ], + [ + "function-token", + "calc(", + 8928, + 8932, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 8933, + 8934, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 8935, + 8935, + null + ], + [ + "delim-token", + "*", + 8936, + 8936, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 8937, + 8937, + null + ], + [ + "function-token", + "var(", + 8938, + 8941, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 8942, + 8942, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8943, + 8943, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 8944, + 8954, + { + "value": "bs-gutter-y" + } + ], + [ + ")-token", + ")", + 8955, + 8955, + null + ], + [ + ")-token", + ")", + 8956, + 8956, + null + ], + [ + "semicolon-token", + ";", + 8957, + 8957, + null + ], + [ + "ident-token", + "margin-right", + 8958, + 8969, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 8970, + 8970, + null + ], + [ + "function-token", + "calc(", + 8971, + 8975, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 8976, + 8978, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 8979, + 8979, + null + ], + [ + "delim-token", + "*", + 8980, + 8980, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 8981, + 8981, + null + ], + [ + "function-token", + "var(", + 8982, + 8985, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 8986, + 8986, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 8987, + 8987, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 8988, + 8998, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 8999, + 8999, + null + ], + [ + ")-token", + ")", + 9000, + 9000, + null + ], + [ + "semicolon-token", + ";", + 9001, + 9001, + null + ], + [ + "ident-token", + "margin-left", + 9002, + 9012, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 9013, + 9013, + null + ], + [ + "function-token", + "calc(", + 9014, + 9018, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 9019, + 9021, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 9022, + 9022, + null + ], + [ + "delim-token", + "*", + 9023, + 9023, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 9024, + 9024, + null + ], + [ + "function-token", + "var(", + 9025, + 9028, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 9029, + 9029, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 9030, + 9030, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 9031, + 9041, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 9042, + 9042, + null + ], + [ + ")-token", + ")", + 9043, + 9043, + null + ], + [ + "}-token", + "}", + 9044, + 9044, + null + ], + [ + "delim-token", + ".", + 9045, + 9045, + { + "value": "." + } + ], + [ + "ident-token", + "row", + 9046, + 9048, + { + "value": "row" + } + ], + [ + "delim-token", + ">", + 9049, + 9049, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9050, + 9050, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9051, + 9051, + null + ], + [ + "ident-token", + "flex-shrink", + 9052, + 9062, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 9063, + 9063, + null + ], + [ + "number-token", + "0", + 9064, + 9064, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 9065, + 9065, + null + ], + [ + "ident-token", + "width", + 9066, + 9070, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9071, + 9071, + null + ], + [ + "percentage-token", + "100%", + 9072, + 9075, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 9076, + 9076, + null + ], + [ + "ident-token", + "max-width", + 9077, + 9085, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 9086, + 9086, + null + ], + [ + "percentage-token", + "100%", + 9087, + 9090, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 9091, + 9091, + null + ], + [ + "ident-token", + "padding-right", + 9092, + 9104, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 9105, + 9105, + null + ], + [ + "function-token", + "calc(", + 9106, + 9110, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 9111, + 9114, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 9115, + 9115, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 9116, + 9116, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 9117, + 9127, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 9128, + 9128, + null + ], + [ + "whitespace-token", + " ", + 9129, + 9129, + null + ], + [ + "delim-token", + "*", + 9130, + 9130, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 9131, + 9131, + null + ], + [ + "number-token", + ".5", + 9132, + 9133, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 9134, + 9134, + null + ], + [ + "semicolon-token", + ";", + 9135, + 9135, + null + ], + [ + "ident-token", + "padding-left", + 9136, + 9147, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 9148, + 9148, + null + ], + [ + "function-token", + "calc(", + 9149, + 9153, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 9154, + 9157, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 9158, + 9158, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 9159, + 9159, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 9160, + 9170, + { + "value": "bs-gutter-x" + } + ], + [ + ")-token", + ")", + 9171, + 9171, + null + ], + [ + "whitespace-token", + " ", + 9172, + 9172, + null + ], + [ + "delim-token", + "*", + 9173, + 9173, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 9174, + 9174, + null + ], + [ + "number-token", + ".5", + 9175, + 9176, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 9177, + 9177, + null + ], + [ + "semicolon-token", + ";", + 9178, + 9178, + null + ], + [ + "ident-token", + "margin-top", + 9179, + 9188, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 9189, + 9189, + null + ], + [ + "function-token", + "var(", + 9190, + 9193, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 9194, + 9194, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 9195, + 9195, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 9196, + 9206, + { + "value": "bs-gutter-y" + } + ], + [ + ")-token", + ")", + 9207, + 9207, + null + ], + [ + "}-token", + "}", + 9208, + 9208, + null + ], + [ + "delim-token", + ".", + 9209, + 9209, + { + "value": "." + } + ], + [ + "ident-token", + "col", + 9210, + 9212, + { + "value": "col" + } + ], + [ + "{-token", + "{", + 9213, + 9213, + null + ], + [ + "ident-token", + "flex", + 9214, + 9217, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9218, + 9218, + null + ], + [ + "number-token", + "1", + 9219, + 9219, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9220, + 9220, + null + ], + [ + "number-token", + "0", + 9221, + 9221, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9222, + 9222, + null + ], + [ + "percentage-token", + "0%", + 9223, + 9224, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 9225, + 9225, + null + ], + [ + "delim-token", + ".", + 9226, + 9226, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-auto", + 9227, + 9239, + { + "value": "row-cols-auto" + } + ], + [ + "delim-token", + ">", + 9240, + 9240, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9241, + 9241, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9242, + 9242, + null + ], + [ + "ident-token", + "flex", + 9243, + 9246, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9247, + 9247, + null + ], + [ + "number-token", + "0", + 9248, + 9248, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9249, + 9249, + null + ], + [ + "number-token", + "0", + 9250, + 9250, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9251, + 9251, + null + ], + [ + "ident-token", + "auto", + 9252, + 9255, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9256, + 9256, + null + ], + [ + "ident-token", + "width", + 9257, + 9261, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9262, + 9262, + null + ], + [ + "ident-token", + "auto", + 9263, + 9266, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 9267, + 9267, + null + ], + [ + "delim-token", + ".", + 9268, + 9268, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-1", + 9269, + 9278, + { + "value": "row-cols-1" + } + ], + [ + "delim-token", + ">", + 9279, + 9279, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9280, + 9280, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9281, + 9281, + null + ], + [ + "ident-token", + "flex", + 9282, + 9285, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9286, + 9286, + null + ], + [ + "number-token", + "0", + 9287, + 9287, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9288, + 9288, + null + ], + [ + "number-token", + "0", + 9289, + 9289, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9290, + 9290, + null + ], + [ + "ident-token", + "auto", + 9291, + 9294, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9295, + 9295, + null + ], + [ + "ident-token", + "width", + 9296, + 9300, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9301, + 9301, + null + ], + [ + "percentage-token", + "100%", + 9302, + 9305, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 9306, + 9306, + null + ], + [ + "delim-token", + ".", + 9307, + 9307, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-2", + 9308, + 9317, + { + "value": "row-cols-2" + } + ], + [ + "delim-token", + ">", + 9318, + 9318, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9319, + 9319, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9320, + 9320, + null + ], + [ + "ident-token", + "flex", + 9321, + 9324, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9325, + 9325, + null + ], + [ + "number-token", + "0", + 9326, + 9326, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9327, + 9327, + null + ], + [ + "number-token", + "0", + 9328, + 9328, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9329, + 9329, + null + ], + [ + "ident-token", + "auto", + 9330, + 9333, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9334, + 9334, + null + ], + [ + "ident-token", + "width", + 9335, + 9339, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9340, + 9340, + null + ], + [ + "percentage-token", + "50%", + 9341, + 9343, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 9344, + 9344, + null + ], + [ + "delim-token", + ".", + 9345, + 9345, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-3", + 9346, + 9355, + { + "value": "row-cols-3" + } + ], + [ + "delim-token", + ">", + 9356, + 9356, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9357, + 9357, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9358, + 9358, + null + ], + [ + "ident-token", + "flex", + 9359, + 9362, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9363, + 9363, + null + ], + [ + "number-token", + "0", + 9364, + 9364, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9365, + 9365, + null + ], + [ + "number-token", + "0", + 9366, + 9366, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9367, + 9367, + null + ], + [ + "ident-token", + "auto", + 9368, + 9371, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9372, + 9372, + null + ], + [ + "ident-token", + "width", + 9373, + 9377, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9378, + 9378, + null + ], + [ + "percentage-token", + "33.3333333333%", + 9379, + 9392, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 9393, + 9393, + null + ], + [ + "delim-token", + ".", + 9394, + 9394, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-4", + 9395, + 9404, + { + "value": "row-cols-4" + } + ], + [ + "delim-token", + ">", + 9405, + 9405, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9406, + 9406, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9407, + 9407, + null + ], + [ + "ident-token", + "flex", + 9408, + 9411, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9412, + 9412, + null + ], + [ + "number-token", + "0", + 9413, + 9413, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9414, + 9414, + null + ], + [ + "number-token", + "0", + 9415, + 9415, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9416, + 9416, + null + ], + [ + "ident-token", + "auto", + 9417, + 9420, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9421, + 9421, + null + ], + [ + "ident-token", + "width", + 9422, + 9426, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9427, + 9427, + null + ], + [ + "percentage-token", + "25%", + 9428, + 9430, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 9431, + 9431, + null + ], + [ + "delim-token", + ".", + 9432, + 9432, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-5", + 9433, + 9442, + { + "value": "row-cols-5" + } + ], + [ + "delim-token", + ">", + 9443, + 9443, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9444, + 9444, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9445, + 9445, + null + ], + [ + "ident-token", + "flex", + 9446, + 9449, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9450, + 9450, + null + ], + [ + "number-token", + "0", + 9451, + 9451, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9452, + 9452, + null + ], + [ + "number-token", + "0", + 9453, + 9453, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9454, + 9454, + null + ], + [ + "ident-token", + "auto", + 9455, + 9458, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9459, + 9459, + null + ], + [ + "ident-token", + "width", + 9460, + 9464, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9465, + 9465, + null + ], + [ + "percentage-token", + "20%", + 9466, + 9468, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 9469, + 9469, + null + ], + [ + "delim-token", + ".", + 9470, + 9470, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-6", + 9471, + 9480, + { + "value": "row-cols-6" + } + ], + [ + "delim-token", + ">", + 9481, + 9481, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 9482, + 9482, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 9483, + 9483, + null + ], + [ + "ident-token", + "flex", + 9484, + 9487, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9488, + 9488, + null + ], + [ + "number-token", + "0", + 9489, + 9489, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9490, + 9490, + null + ], + [ + "number-token", + "0", + 9491, + 9491, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9492, + 9492, + null + ], + [ + "ident-token", + "auto", + 9493, + 9496, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9497, + 9497, + null + ], + [ + "ident-token", + "width", + 9498, + 9502, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9503, + 9503, + null + ], + [ + "percentage-token", + "16.6666666667%", + 9504, + 9517, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 9518, + 9518, + null + ], + [ + "delim-token", + ".", + 9519, + 9519, + { + "value": "." + } + ], + [ + "ident-token", + "col-auto", + 9520, + 9527, + { + "value": "col-auto" + } + ], + [ + "{-token", + "{", + 9528, + 9528, + null + ], + [ + "ident-token", + "flex", + 9529, + 9532, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9533, + 9533, + null + ], + [ + "number-token", + "0", + 9534, + 9534, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9535, + 9535, + null + ], + [ + "number-token", + "0", + 9536, + 9536, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9537, + 9537, + null + ], + [ + "ident-token", + "auto", + 9538, + 9541, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9542, + 9542, + null + ], + [ + "ident-token", + "width", + 9543, + 9547, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9548, + 9548, + null + ], + [ + "ident-token", + "auto", + 9549, + 9552, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 9553, + 9553, + null + ], + [ + "delim-token", + ".", + 9554, + 9554, + { + "value": "." + } + ], + [ + "ident-token", + "col-1", + 9555, + 9559, + { + "value": "col-1" + } + ], + [ + "{-token", + "{", + 9560, + 9560, + null + ], + [ + "ident-token", + "flex", + 9561, + 9564, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9565, + 9565, + null + ], + [ + "number-token", + "0", + 9566, + 9566, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9567, + 9567, + null + ], + [ + "number-token", + "0", + 9568, + 9568, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9569, + 9569, + null + ], + [ + "ident-token", + "auto", + 9570, + 9573, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9574, + 9574, + null + ], + [ + "ident-token", + "width", + 9575, + 9579, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9580, + 9580, + null + ], + [ + "percentage-token", + "8.33333333%", + 9581, + 9591, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 9592, + 9592, + null + ], + [ + "delim-token", + ".", + 9593, + 9593, + { + "value": "." + } + ], + [ + "ident-token", + "col-2", + 9594, + 9598, + { + "value": "col-2" + } + ], + [ + "{-token", + "{", + 9599, + 9599, + null + ], + [ + "ident-token", + "flex", + 9600, + 9603, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9604, + 9604, + null + ], + [ + "number-token", + "0", + 9605, + 9605, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9606, + 9606, + null + ], + [ + "number-token", + "0", + 9607, + 9607, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9608, + 9608, + null + ], + [ + "ident-token", + "auto", + 9609, + 9612, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9613, + 9613, + null + ], + [ + "ident-token", + "width", + 9614, + 9618, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9619, + 9619, + null + ], + [ + "percentage-token", + "16.66666667%", + 9620, + 9631, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 9632, + 9632, + null + ], + [ + "delim-token", + ".", + 9633, + 9633, + { + "value": "." + } + ], + [ + "ident-token", + "col-3", + 9634, + 9638, + { + "value": "col-3" + } + ], + [ + "{-token", + "{", + 9639, + 9639, + null + ], + [ + "ident-token", + "flex", + 9640, + 9643, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9644, + 9644, + null + ], + [ + "number-token", + "0", + 9645, + 9645, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9646, + 9646, + null + ], + [ + "number-token", + "0", + 9647, + 9647, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9648, + 9648, + null + ], + [ + "ident-token", + "auto", + 9649, + 9652, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9653, + 9653, + null + ], + [ + "ident-token", + "width", + 9654, + 9658, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9659, + 9659, + null + ], + [ + "percentage-token", + "25%", + 9660, + 9662, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 9663, + 9663, + null + ], + [ + "delim-token", + ".", + 9664, + 9664, + { + "value": "." + } + ], + [ + "ident-token", + "col-4", + 9665, + 9669, + { + "value": "col-4" + } + ], + [ + "{-token", + "{", + 9670, + 9670, + null + ], + [ + "ident-token", + "flex", + 9671, + 9674, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9675, + 9675, + null + ], + [ + "number-token", + "0", + 9676, + 9676, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9677, + 9677, + null + ], + [ + "number-token", + "0", + 9678, + 9678, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9679, + 9679, + null + ], + [ + "ident-token", + "auto", + 9680, + 9683, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9684, + 9684, + null + ], + [ + "ident-token", + "width", + 9685, + 9689, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9690, + 9690, + null + ], + [ + "percentage-token", + "33.33333333%", + 9691, + 9702, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 9703, + 9703, + null + ], + [ + "delim-token", + ".", + 9704, + 9704, + { + "value": "." + } + ], + [ + "ident-token", + "col-5", + 9705, + 9709, + { + "value": "col-5" + } + ], + [ + "{-token", + "{", + 9710, + 9710, + null + ], + [ + "ident-token", + "flex", + 9711, + 9714, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9715, + 9715, + null + ], + [ + "number-token", + "0", + 9716, + 9716, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9717, + 9717, + null + ], + [ + "number-token", + "0", + 9718, + 9718, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9719, + 9719, + null + ], + [ + "ident-token", + "auto", + 9720, + 9723, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9724, + 9724, + null + ], + [ + "ident-token", + "width", + 9725, + 9729, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9730, + 9730, + null + ], + [ + "percentage-token", + "41.66666667%", + 9731, + 9742, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 9743, + 9743, + null + ], + [ + "delim-token", + ".", + 9744, + 9744, + { + "value": "." + } + ], + [ + "ident-token", + "col-6", + 9745, + 9749, + { + "value": "col-6" + } + ], + [ + "{-token", + "{", + 9750, + 9750, + null + ], + [ + "ident-token", + "flex", + 9751, + 9754, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9755, + 9755, + null + ], + [ + "number-token", + "0", + 9756, + 9756, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9757, + 9757, + null + ], + [ + "number-token", + "0", + 9758, + 9758, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9759, + 9759, + null + ], + [ + "ident-token", + "auto", + 9760, + 9763, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9764, + 9764, + null + ], + [ + "ident-token", + "width", + 9765, + 9769, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9770, + 9770, + null + ], + [ + "percentage-token", + "50%", + 9771, + 9773, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 9774, + 9774, + null + ], + [ + "delim-token", + ".", + 9775, + 9775, + { + "value": "." + } + ], + [ + "ident-token", + "col-7", + 9776, + 9780, + { + "value": "col-7" + } + ], + [ + "{-token", + "{", + 9781, + 9781, + null + ], + [ + "ident-token", + "flex", + 9782, + 9785, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9786, + 9786, + null + ], + [ + "number-token", + "0", + 9787, + 9787, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9788, + 9788, + null + ], + [ + "number-token", + "0", + 9789, + 9789, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9790, + 9790, + null + ], + [ + "ident-token", + "auto", + 9791, + 9794, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9795, + 9795, + null + ], + [ + "ident-token", + "width", + 9796, + 9800, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9801, + 9801, + null + ], + [ + "percentage-token", + "58.33333333%", + 9802, + 9813, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 9814, + 9814, + null + ], + [ + "delim-token", + ".", + 9815, + 9815, + { + "value": "." + } + ], + [ + "ident-token", + "col-8", + 9816, + 9820, + { + "value": "col-8" + } + ], + [ + "{-token", + "{", + 9821, + 9821, + null + ], + [ + "ident-token", + "flex", + 9822, + 9825, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9826, + 9826, + null + ], + [ + "number-token", + "0", + 9827, + 9827, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9828, + 9828, + null + ], + [ + "number-token", + "0", + 9829, + 9829, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9830, + 9830, + null + ], + [ + "ident-token", + "auto", + 9831, + 9834, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9835, + 9835, + null + ], + [ + "ident-token", + "width", + 9836, + 9840, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9841, + 9841, + null + ], + [ + "percentage-token", + "66.66666667%", + 9842, + 9853, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 9854, + 9854, + null + ], + [ + "delim-token", + ".", + 9855, + 9855, + { + "value": "." + } + ], + [ + "ident-token", + "col-9", + 9856, + 9860, + { + "value": "col-9" + } + ], + [ + "{-token", + "{", + 9861, + 9861, + null + ], + [ + "ident-token", + "flex", + 9862, + 9865, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9866, + 9866, + null + ], + [ + "number-token", + "0", + 9867, + 9867, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9868, + 9868, + null + ], + [ + "number-token", + "0", + 9869, + 9869, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9870, + 9870, + null + ], + [ + "ident-token", + "auto", + 9871, + 9874, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9875, + 9875, + null + ], + [ + "ident-token", + "width", + 9876, + 9880, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9881, + 9881, + null + ], + [ + "percentage-token", + "75%", + 9882, + 9884, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 9885, + 9885, + null + ], + [ + "delim-token", + ".", + 9886, + 9886, + { + "value": "." + } + ], + [ + "ident-token", + "col-10", + 9887, + 9892, + { + "value": "col-10" + } + ], + [ + "{-token", + "{", + 9893, + 9893, + null + ], + [ + "ident-token", + "flex", + 9894, + 9897, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9898, + 9898, + null + ], + [ + "number-token", + "0", + 9899, + 9899, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9900, + 9900, + null + ], + [ + "number-token", + "0", + 9901, + 9901, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9902, + 9902, + null + ], + [ + "ident-token", + "auto", + 9903, + 9906, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9907, + 9907, + null + ], + [ + "ident-token", + "width", + 9908, + 9912, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9913, + 9913, + null + ], + [ + "percentage-token", + "83.33333333%", + 9914, + 9925, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 9926, + 9926, + null + ], + [ + "delim-token", + ".", + 9927, + 9927, + { + "value": "." + } + ], + [ + "ident-token", + "col-11", + 9928, + 9933, + { + "value": "col-11" + } + ], + [ + "{-token", + "{", + 9934, + 9934, + null + ], + [ + "ident-token", + "flex", + 9935, + 9938, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9939, + 9939, + null + ], + [ + "number-token", + "0", + 9940, + 9940, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9941, + 9941, + null + ], + [ + "number-token", + "0", + 9942, + 9942, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9943, + 9943, + null + ], + [ + "ident-token", + "auto", + 9944, + 9947, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9948, + 9948, + null + ], + [ + "ident-token", + "width", + 9949, + 9953, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9954, + 9954, + null + ], + [ + "percentage-token", + "91.66666667%", + 9955, + 9966, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 9967, + 9967, + null + ], + [ + "delim-token", + ".", + 9968, + 9968, + { + "value": "." + } + ], + [ + "ident-token", + "col-12", + 9969, + 9974, + { + "value": "col-12" + } + ], + [ + "{-token", + "{", + 9975, + 9975, + null + ], + [ + "ident-token", + "flex", + 9976, + 9979, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 9980, + 9980, + null + ], + [ + "number-token", + "0", + 9981, + 9981, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9982, + 9982, + null + ], + [ + "number-token", + "0", + 9983, + 9983, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 9984, + 9984, + null + ], + [ + "ident-token", + "auto", + 9985, + 9988, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 9989, + 9989, + null + ], + [ + "ident-token", + "width", + 9990, + 9994, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 9995, + 9995, + null + ], + [ + "percentage-token", + "100%", + 9996, + 9999, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 10000, + 10000, + null + ], + [ + "delim-token", + ".", + 10001, + 10001, + { + "value": "." + } + ], + [ + "ident-token", + "offset-1", + 10002, + 10009, + { + "value": "offset-1" + } + ], + [ + "{-token", + "{", + 10010, + 10010, + null + ], + [ + "ident-token", + "margin-left", + 10011, + 10021, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10022, + 10022, + null + ], + [ + "percentage-token", + "8.33333333%", + 10023, + 10033, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 10034, + 10034, + null + ], + [ + "delim-token", + ".", + 10035, + 10035, + { + "value": "." + } + ], + [ + "ident-token", + "offset-2", + 10036, + 10043, + { + "value": "offset-2" + } + ], + [ + "{-token", + "{", + 10044, + 10044, + null + ], + [ + "ident-token", + "margin-left", + 10045, + 10055, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10056, + 10056, + null + ], + [ + "percentage-token", + "16.66666667%", + 10057, + 10068, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 10069, + 10069, + null + ], + [ + "delim-token", + ".", + 10070, + 10070, + { + "value": "." + } + ], + [ + "ident-token", + "offset-3", + 10071, + 10078, + { + "value": "offset-3" + } + ], + [ + "{-token", + "{", + 10079, + 10079, + null + ], + [ + "ident-token", + "margin-left", + 10080, + 10090, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10091, + 10091, + null + ], + [ + "percentage-token", + "25%", + 10092, + 10094, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 10095, + 10095, + null + ], + [ + "delim-token", + ".", + 10096, + 10096, + { + "value": "." + } + ], + [ + "ident-token", + "offset-4", + 10097, + 10104, + { + "value": "offset-4" + } + ], + [ + "{-token", + "{", + 10105, + 10105, + null + ], + [ + "ident-token", + "margin-left", + 10106, + 10116, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10117, + 10117, + null + ], + [ + "percentage-token", + "33.33333333%", + 10118, + 10129, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 10130, + 10130, + null + ], + [ + "delim-token", + ".", + 10131, + 10131, + { + "value": "." + } + ], + [ + "ident-token", + "offset-5", + 10132, + 10139, + { + "value": "offset-5" + } + ], + [ + "{-token", + "{", + 10140, + 10140, + null + ], + [ + "ident-token", + "margin-left", + 10141, + 10151, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10152, + 10152, + null + ], + [ + "percentage-token", + "41.66666667%", + 10153, + 10164, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 10165, + 10165, + null + ], + [ + "delim-token", + ".", + 10166, + 10166, + { + "value": "." + } + ], + [ + "ident-token", + "offset-6", + 10167, + 10174, + { + "value": "offset-6" + } + ], + [ + "{-token", + "{", + 10175, + 10175, + null + ], + [ + "ident-token", + "margin-left", + 10176, + 10186, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10187, + 10187, + null + ], + [ + "percentage-token", + "50%", + 10188, + 10190, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 10191, + 10191, + null + ], + [ + "delim-token", + ".", + 10192, + 10192, + { + "value": "." + } + ], + [ + "ident-token", + "offset-7", + 10193, + 10200, + { + "value": "offset-7" + } + ], + [ + "{-token", + "{", + 10201, + 10201, + null + ], + [ + "ident-token", + "margin-left", + 10202, + 10212, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10213, + 10213, + null + ], + [ + "percentage-token", + "58.33333333%", + 10214, + 10225, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 10226, + 10226, + null + ], + [ + "delim-token", + ".", + 10227, + 10227, + { + "value": "." + } + ], + [ + "ident-token", + "offset-8", + 10228, + 10235, + { + "value": "offset-8" + } + ], + [ + "{-token", + "{", + 10236, + 10236, + null + ], + [ + "ident-token", + "margin-left", + 10237, + 10247, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10248, + 10248, + null + ], + [ + "percentage-token", + "66.66666667%", + 10249, + 10260, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 10261, + 10261, + null + ], + [ + "delim-token", + ".", + 10262, + 10262, + { + "value": "." + } + ], + [ + "ident-token", + "offset-9", + 10263, + 10270, + { + "value": "offset-9" + } + ], + [ + "{-token", + "{", + 10271, + 10271, + null + ], + [ + "ident-token", + "margin-left", + 10272, + 10282, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10283, + 10283, + null + ], + [ + "percentage-token", + "75%", + 10284, + 10286, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 10287, + 10287, + null + ], + [ + "delim-token", + ".", + 10288, + 10288, + { + "value": "." + } + ], + [ + "ident-token", + "offset-10", + 10289, + 10297, + { + "value": "offset-10" + } + ], + [ + "{-token", + "{", + 10298, + 10298, + null + ], + [ + "ident-token", + "margin-left", + 10299, + 10309, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10310, + 10310, + null + ], + [ + "percentage-token", + "83.33333333%", + 10311, + 10322, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 10323, + 10323, + null + ], + [ + "delim-token", + ".", + 10324, + 10324, + { + "value": "." + } + ], + [ + "ident-token", + "offset-11", + 10325, + 10333, + { + "value": "offset-11" + } + ], + [ + "{-token", + "{", + 10334, + 10334, + null + ], + [ + "ident-token", + "margin-left", + 10335, + 10345, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 10346, + 10346, + null + ], + [ + "percentage-token", + "91.66666667%", + 10347, + 10358, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 10359, + 10359, + null + ], + [ + "delim-token", + ".", + 10360, + 10360, + { + "value": "." + } + ], + [ + "ident-token", + "g-0", + 10361, + 10363, + { + "value": "g-0" + } + ], + [ + "comma-token", + ",", + 10364, + 10364, + null + ], + [ + "delim-token", + ".", + 10365, + 10365, + { + "value": "." + } + ], + [ + "ident-token", + "gx-0", + 10366, + 10369, + { + "value": "gx-0" + } + ], + [ + "{-token", + "{", + 10370, + 10370, + null + ], + [ + "delim-token", + "-", + 10371, + 10371, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10372, + 10372, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10373, + 10383, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10384, + 10384, + null + ], + [ + "number-token", + "0", + 10385, + 10385, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 10386, + 10386, + null + ], + [ + "delim-token", + ".", + 10387, + 10387, + { + "value": "." + } + ], + [ + "ident-token", + "g-0", + 10388, + 10390, + { + "value": "g-0" + } + ], + [ + "comma-token", + ",", + 10391, + 10391, + null + ], + [ + "delim-token", + ".", + 10392, + 10392, + { + "value": "." + } + ], + [ + "ident-token", + "gy-0", + 10393, + 10396, + { + "value": "gy-0" + } + ], + [ + "{-token", + "{", + 10397, + 10397, + null + ], + [ + "delim-token", + "-", + 10398, + 10398, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10399, + 10399, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10400, + 10410, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10411, + 10411, + null + ], + [ + "number-token", + "0", + 10412, + 10412, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 10413, + 10413, + null + ], + [ + "delim-token", + ".", + 10414, + 10414, + { + "value": "." + } + ], + [ + "ident-token", + "g-1", + 10415, + 10417, + { + "value": "g-1" + } + ], + [ + "comma-token", + ",", + 10418, + 10418, + null + ], + [ + "delim-token", + ".", + 10419, + 10419, + { + "value": "." + } + ], + [ + "ident-token", + "gx-1", + 10420, + 10423, + { + "value": "gx-1" + } + ], + [ + "{-token", + "{", + 10424, + 10424, + null + ], + [ + "delim-token", + "-", + 10425, + 10425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10426, + 10426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10427, + 10437, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10438, + 10438, + null + ], + [ + "dimension-token", + "0.25rem", + 10439, + 10445, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10446, + 10446, + null + ], + [ + "delim-token", + ".", + 10447, + 10447, + { + "value": "." + } + ], + [ + "ident-token", + "g-1", + 10448, + 10450, + { + "value": "g-1" + } + ], + [ + "comma-token", + ",", + 10451, + 10451, + null + ], + [ + "delim-token", + ".", + 10452, + 10452, + { + "value": "." + } + ], + [ + "ident-token", + "gy-1", + 10453, + 10456, + { + "value": "gy-1" + } + ], + [ + "{-token", + "{", + 10457, + 10457, + null + ], + [ + "delim-token", + "-", + 10458, + 10458, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10459, + 10459, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10460, + 10470, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10471, + 10471, + null + ], + [ + "dimension-token", + "0.25rem", + 10472, + 10478, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10479, + 10479, + null + ], + [ + "delim-token", + ".", + 10480, + 10480, + { + "value": "." + } + ], + [ + "ident-token", + "g-2", + 10481, + 10483, + { + "value": "g-2" + } + ], + [ + "comma-token", + ",", + 10484, + 10484, + null + ], + [ + "delim-token", + ".", + 10485, + 10485, + { + "value": "." + } + ], + [ + "ident-token", + "gx-2", + 10486, + 10489, + { + "value": "gx-2" + } + ], + [ + "{-token", + "{", + 10490, + 10490, + null + ], + [ + "delim-token", + "-", + 10491, + 10491, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10492, + 10492, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10493, + 10503, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10504, + 10504, + null + ], + [ + "dimension-token", + "0.5rem", + 10505, + 10510, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10511, + 10511, + null + ], + [ + "delim-token", + ".", + 10512, + 10512, + { + "value": "." + } + ], + [ + "ident-token", + "g-2", + 10513, + 10515, + { + "value": "g-2" + } + ], + [ + "comma-token", + ",", + 10516, + 10516, + null + ], + [ + "delim-token", + ".", + 10517, + 10517, + { + "value": "." + } + ], + [ + "ident-token", + "gy-2", + 10518, + 10521, + { + "value": "gy-2" + } + ], + [ + "{-token", + "{", + 10522, + 10522, + null + ], + [ + "delim-token", + "-", + 10523, + 10523, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10524, + 10524, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10525, + 10535, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10536, + 10536, + null + ], + [ + "dimension-token", + "0.5rem", + 10537, + 10542, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10543, + 10543, + null + ], + [ + "delim-token", + ".", + 10544, + 10544, + { + "value": "." + } + ], + [ + "ident-token", + "g-3", + 10545, + 10547, + { + "value": "g-3" + } + ], + [ + "comma-token", + ",", + 10548, + 10548, + null + ], + [ + "delim-token", + ".", + 10549, + 10549, + { + "value": "." + } + ], + [ + "ident-token", + "gx-3", + 10550, + 10553, + { + "value": "gx-3" + } + ], + [ + "{-token", + "{", + 10554, + 10554, + null + ], + [ + "delim-token", + "-", + 10555, + 10555, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10556, + 10556, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10557, + 10567, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10568, + 10568, + null + ], + [ + "dimension-token", + "1rem", + 10569, + 10572, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10573, + 10573, + null + ], + [ + "delim-token", + ".", + 10574, + 10574, + { + "value": "." + } + ], + [ + "ident-token", + "g-3", + 10575, + 10577, + { + "value": "g-3" + } + ], + [ + "comma-token", + ",", + 10578, + 10578, + null + ], + [ + "delim-token", + ".", + 10579, + 10579, + { + "value": "." + } + ], + [ + "ident-token", + "gy-3", + 10580, + 10583, + { + "value": "gy-3" + } + ], + [ + "{-token", + "{", + 10584, + 10584, + null + ], + [ + "delim-token", + "-", + 10585, + 10585, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10586, + 10586, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10587, + 10597, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10598, + 10598, + null + ], + [ + "dimension-token", + "1rem", + 10599, + 10602, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10603, + 10603, + null + ], + [ + "delim-token", + ".", + 10604, + 10604, + { + "value": "." + } + ], + [ + "ident-token", + "g-4", + 10605, + 10607, + { + "value": "g-4" + } + ], + [ + "comma-token", + ",", + 10608, + 10608, + null + ], + [ + "delim-token", + ".", + 10609, + 10609, + { + "value": "." + } + ], + [ + "ident-token", + "gx-4", + 10610, + 10613, + { + "value": "gx-4" + } + ], + [ + "{-token", + "{", + 10614, + 10614, + null + ], + [ + "delim-token", + "-", + 10615, + 10615, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10616, + 10616, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10617, + 10627, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10628, + 10628, + null + ], + [ + "dimension-token", + "1.5rem", + 10629, + 10634, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10635, + 10635, + null + ], + [ + "delim-token", + ".", + 10636, + 10636, + { + "value": "." + } + ], + [ + "ident-token", + "g-4", + 10637, + 10639, + { + "value": "g-4" + } + ], + [ + "comma-token", + ",", + 10640, + 10640, + null + ], + [ + "delim-token", + ".", + 10641, + 10641, + { + "value": "." + } + ], + [ + "ident-token", + "gy-4", + 10642, + 10645, + { + "value": "gy-4" + } + ], + [ + "{-token", + "{", + 10646, + 10646, + null + ], + [ + "delim-token", + "-", + 10647, + 10647, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10648, + 10648, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10649, + 10659, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10660, + 10660, + null + ], + [ + "dimension-token", + "1.5rem", + 10661, + 10666, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10667, + 10667, + null + ], + [ + "delim-token", + ".", + 10668, + 10668, + { + "value": "." + } + ], + [ + "ident-token", + "g-5", + 10669, + 10671, + { + "value": "g-5" + } + ], + [ + "comma-token", + ",", + 10672, + 10672, + null + ], + [ + "delim-token", + ".", + 10673, + 10673, + { + "value": "." + } + ], + [ + "ident-token", + "gx-5", + 10674, + 10677, + { + "value": "gx-5" + } + ], + [ + "{-token", + "{", + 10678, + 10678, + null + ], + [ + "delim-token", + "-", + 10679, + 10679, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10680, + 10680, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 10681, + 10691, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 10692, + 10692, + null + ], + [ + "dimension-token", + "3rem", + 10693, + 10696, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10697, + 10697, + null + ], + [ + "delim-token", + ".", + 10698, + 10698, + { + "value": "." + } + ], + [ + "ident-token", + "g-5", + 10699, + 10701, + { + "value": "g-5" + } + ], + [ + "comma-token", + ",", + 10702, + 10702, + null + ], + [ + "delim-token", + ".", + 10703, + 10703, + { + "value": "." + } + ], + [ + "ident-token", + "gy-5", + 10704, + 10707, + { + "value": "gy-5" + } + ], + [ + "{-token", + "{", + 10708, + 10708, + null + ], + [ + "delim-token", + "-", + 10709, + 10709, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 10710, + 10710, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 10711, + 10721, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 10722, + 10722, + null + ], + [ + "dimension-token", + "3rem", + 10723, + 10726, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 10727, + 10727, + null + ], + [ + "at-keyword-token", + "@media", + 10728, + 10733, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 10734, + 10734, + null + ], + [ + "(-token", + "(", + 10735, + 10735, + null + ], + [ + "ident-token", + "min-width", + 10736, + 10744, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 10745, + 10745, + null + ], + [ + "dimension-token", + "576px", + 10746, + 10750, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10751, + 10751, + null + ], + [ + "{-token", + "{", + 10752, + 10752, + null + ], + [ + "delim-token", + ".", + 10753, + 10753, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm", + 10754, + 10759, + { + "value": "col-sm" + } + ], + [ + "{-token", + "{", + 10760, + 10760, + null + ], + [ + "ident-token", + "flex", + 10761, + 10764, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10765, + 10765, + null + ], + [ + "number-token", + "1", + 10766, + 10766, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10767, + 10767, + null + ], + [ + "number-token", + "0", + 10768, + 10768, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10769, + 10769, + null + ], + [ + "percentage-token", + "0%", + 10770, + 10771, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 10772, + 10772, + null + ], + [ + "delim-token", + ".", + 10773, + 10773, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-auto", + 10774, + 10789, + { + "value": "row-cols-sm-auto" + } + ], + [ + "delim-token", + ">", + 10790, + 10790, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 10791, + 10791, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 10792, + 10792, + null + ], + [ + "ident-token", + "flex", + 10793, + 10796, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10797, + 10797, + null + ], + [ + "number-token", + "0", + 10798, + 10798, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10799, + 10799, + null + ], + [ + "number-token", + "0", + 10800, + 10800, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10801, + 10801, + null + ], + [ + "ident-token", + "auto", + 10802, + 10805, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 10806, + 10806, + null + ], + [ + "ident-token", + "width", + 10807, + 10811, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 10812, + 10812, + null + ], + [ + "ident-token", + "auto", + 10813, + 10816, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 10817, + 10817, + null + ], + [ + "delim-token", + ".", + 10818, + 10818, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-1", + 10819, + 10831, + { + "value": "row-cols-sm-1" + } + ], + [ + "delim-token", + ">", + 10832, + 10832, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 10833, + 10833, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 10834, + 10834, + null + ], + [ + "ident-token", + "flex", + 10835, + 10838, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10839, + 10839, + null + ], + [ + "number-token", + "0", + 10840, + 10840, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10841, + 10841, + null + ], + [ + "number-token", + "0", + 10842, + 10842, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10843, + 10843, + null + ], + [ + "ident-token", + "auto", + 10844, + 10847, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 10848, + 10848, + null + ], + [ + "ident-token", + "width", + 10849, + 10853, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 10854, + 10854, + null + ], + [ + "percentage-token", + "100%", + 10855, + 10858, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 10859, + 10859, + null + ], + [ + "delim-token", + ".", + 10860, + 10860, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-2", + 10861, + 10873, + { + "value": "row-cols-sm-2" + } + ], + [ + "delim-token", + ">", + 10874, + 10874, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 10875, + 10875, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 10876, + 10876, + null + ], + [ + "ident-token", + "flex", + 10877, + 10880, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10881, + 10881, + null + ], + [ + "number-token", + "0", + 10882, + 10882, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10883, + 10883, + null + ], + [ + "number-token", + "0", + 10884, + 10884, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10885, + 10885, + null + ], + [ + "ident-token", + "auto", + 10886, + 10889, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 10890, + 10890, + null + ], + [ + "ident-token", + "width", + 10891, + 10895, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 10896, + 10896, + null + ], + [ + "percentage-token", + "50%", + 10897, + 10899, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 10900, + 10900, + null + ], + [ + "delim-token", + ".", + 10901, + 10901, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-3", + 10902, + 10914, + { + "value": "row-cols-sm-3" + } + ], + [ + "delim-token", + ">", + 10915, + 10915, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 10916, + 10916, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 10917, + 10917, + null + ], + [ + "ident-token", + "flex", + 10918, + 10921, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10922, + 10922, + null + ], + [ + "number-token", + "0", + 10923, + 10923, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10924, + 10924, + null + ], + [ + "number-token", + "0", + 10925, + 10925, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10926, + 10926, + null + ], + [ + "ident-token", + "auto", + 10927, + 10930, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 10931, + 10931, + null + ], + [ + "ident-token", + "width", + 10932, + 10936, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 10937, + 10937, + null + ], + [ + "percentage-token", + "33.3333333333%", + 10938, + 10951, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 10952, + 10952, + null + ], + [ + "delim-token", + ".", + 10953, + 10953, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-4", + 10954, + 10966, + { + "value": "row-cols-sm-4" + } + ], + [ + "delim-token", + ">", + 10967, + 10967, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 10968, + 10968, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 10969, + 10969, + null + ], + [ + "ident-token", + "flex", + 10970, + 10973, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 10974, + 10974, + null + ], + [ + "number-token", + "0", + 10975, + 10975, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10976, + 10976, + null + ], + [ + "number-token", + "0", + 10977, + 10977, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 10978, + 10978, + null + ], + [ + "ident-token", + "auto", + 10979, + 10982, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 10983, + 10983, + null + ], + [ + "ident-token", + "width", + 10984, + 10988, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 10989, + 10989, + null + ], + [ + "percentage-token", + "25%", + 10990, + 10992, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 10993, + 10993, + null + ], + [ + "delim-token", + ".", + 10994, + 10994, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-5", + 10995, + 11007, + { + "value": "row-cols-sm-5" + } + ], + [ + "delim-token", + ">", + 11008, + 11008, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 11009, + 11009, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 11010, + 11010, + null + ], + [ + "ident-token", + "flex", + 11011, + 11014, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11015, + 11015, + null + ], + [ + "number-token", + "0", + 11016, + 11016, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11017, + 11017, + null + ], + [ + "number-token", + "0", + 11018, + 11018, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11019, + 11019, + null + ], + [ + "ident-token", + "auto", + 11020, + 11023, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11024, + 11024, + null + ], + [ + "ident-token", + "width", + 11025, + 11029, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11030, + 11030, + null + ], + [ + "percentage-token", + "20%", + 11031, + 11033, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 11034, + 11034, + null + ], + [ + "delim-token", + ".", + 11035, + 11035, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-sm-6", + 11036, + 11048, + { + "value": "row-cols-sm-6" + } + ], + [ + "delim-token", + ">", + 11049, + 11049, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 11050, + 11050, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 11051, + 11051, + null + ], + [ + "ident-token", + "flex", + 11052, + 11055, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11056, + 11056, + null + ], + [ + "number-token", + "0", + 11057, + 11057, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11058, + 11058, + null + ], + [ + "number-token", + "0", + 11059, + 11059, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11060, + 11060, + null + ], + [ + "ident-token", + "auto", + 11061, + 11064, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11065, + 11065, + null + ], + [ + "ident-token", + "width", + 11066, + 11070, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11071, + 11071, + null + ], + [ + "percentage-token", + "16.6666666667%", + 11072, + 11085, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 11086, + 11086, + null + ], + [ + "delim-token", + ".", + 11087, + 11087, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-auto", + 11088, + 11098, + { + "value": "col-sm-auto" + } + ], + [ + "{-token", + "{", + 11099, + 11099, + null + ], + [ + "ident-token", + "flex", + 11100, + 11103, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11104, + 11104, + null + ], + [ + "number-token", + "0", + 11105, + 11105, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11106, + 11106, + null + ], + [ + "number-token", + "0", + 11107, + 11107, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11108, + 11108, + null + ], + [ + "ident-token", + "auto", + 11109, + 11112, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11113, + 11113, + null + ], + [ + "ident-token", + "width", + 11114, + 11118, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11119, + 11119, + null + ], + [ + "ident-token", + "auto", + 11120, + 11123, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 11124, + 11124, + null + ], + [ + "delim-token", + ".", + 11125, + 11125, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-1", + 11126, + 11133, + { + "value": "col-sm-1" + } + ], + [ + "{-token", + "{", + 11134, + 11134, + null + ], + [ + "ident-token", + "flex", + 11135, + 11138, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11139, + 11139, + null + ], + [ + "number-token", + "0", + 11140, + 11140, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11141, + 11141, + null + ], + [ + "number-token", + "0", + 11142, + 11142, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11143, + 11143, + null + ], + [ + "ident-token", + "auto", + 11144, + 11147, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11148, + 11148, + null + ], + [ + "ident-token", + "width", + 11149, + 11153, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11154, + 11154, + null + ], + [ + "percentage-token", + "8.33333333%", + 11155, + 11165, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 11166, + 11166, + null + ], + [ + "delim-token", + ".", + 11167, + 11167, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-2", + 11168, + 11175, + { + "value": "col-sm-2" + } + ], + [ + "{-token", + "{", + 11176, + 11176, + null + ], + [ + "ident-token", + "flex", + 11177, + 11180, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11181, + 11181, + null + ], + [ + "number-token", + "0", + 11182, + 11182, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11183, + 11183, + null + ], + [ + "number-token", + "0", + 11184, + 11184, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11185, + 11185, + null + ], + [ + "ident-token", + "auto", + 11186, + 11189, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11190, + 11190, + null + ], + [ + "ident-token", + "width", + 11191, + 11195, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11196, + 11196, + null + ], + [ + "percentage-token", + "16.66666667%", + 11197, + 11208, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 11209, + 11209, + null + ], + [ + "delim-token", + ".", + 11210, + 11210, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-3", + 11211, + 11218, + { + "value": "col-sm-3" + } + ], + [ + "{-token", + "{", + 11219, + 11219, + null + ], + [ + "ident-token", + "flex", + 11220, + 11223, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11224, + 11224, + null + ], + [ + "number-token", + "0", + 11225, + 11225, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11226, + 11226, + null + ], + [ + "number-token", + "0", + 11227, + 11227, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11228, + 11228, + null + ], + [ + "ident-token", + "auto", + 11229, + 11232, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11233, + 11233, + null + ], + [ + "ident-token", + "width", + 11234, + 11238, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11239, + 11239, + null + ], + [ + "percentage-token", + "25%", + 11240, + 11242, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 11243, + 11243, + null + ], + [ + "delim-token", + ".", + 11244, + 11244, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-4", + 11245, + 11252, + { + "value": "col-sm-4" + } + ], + [ + "{-token", + "{", + 11253, + 11253, + null + ], + [ + "ident-token", + "flex", + 11254, + 11257, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11258, + 11258, + null + ], + [ + "number-token", + "0", + 11259, + 11259, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11260, + 11260, + null + ], + [ + "number-token", + "0", + 11261, + 11261, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11262, + 11262, + null + ], + [ + "ident-token", + "auto", + 11263, + 11266, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11267, + 11267, + null + ], + [ + "ident-token", + "width", + 11268, + 11272, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11273, + 11273, + null + ], + [ + "percentage-token", + "33.33333333%", + 11274, + 11285, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 11286, + 11286, + null + ], + [ + "delim-token", + ".", + 11287, + 11287, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-5", + 11288, + 11295, + { + "value": "col-sm-5" + } + ], + [ + "{-token", + "{", + 11296, + 11296, + null + ], + [ + "ident-token", + "flex", + 11297, + 11300, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11301, + 11301, + null + ], + [ + "number-token", + "0", + 11302, + 11302, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11303, + 11303, + null + ], + [ + "number-token", + "0", + 11304, + 11304, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11305, + 11305, + null + ], + [ + "ident-token", + "auto", + 11306, + 11309, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11310, + 11310, + null + ], + [ + "ident-token", + "width", + 11311, + 11315, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11316, + 11316, + null + ], + [ + "percentage-token", + "41.66666667%", + 11317, + 11328, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 11329, + 11329, + null + ], + [ + "delim-token", + ".", + 11330, + 11330, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-6", + 11331, + 11338, + { + "value": "col-sm-6" + } + ], + [ + "{-token", + "{", + 11339, + 11339, + null + ], + [ + "ident-token", + "flex", + 11340, + 11343, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11344, + 11344, + null + ], + [ + "number-token", + "0", + 11345, + 11345, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11346, + 11346, + null + ], + [ + "number-token", + "0", + 11347, + 11347, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11348, + 11348, + null + ], + [ + "ident-token", + "auto", + 11349, + 11352, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11353, + 11353, + null + ], + [ + "ident-token", + "width", + 11354, + 11358, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11359, + 11359, + null + ], + [ + "percentage-token", + "50%", + 11360, + 11362, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 11363, + 11363, + null + ], + [ + "delim-token", + ".", + 11364, + 11364, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-7", + 11365, + 11372, + { + "value": "col-sm-7" + } + ], + [ + "{-token", + "{", + 11373, + 11373, + null + ], + [ + "ident-token", + "flex", + 11374, + 11377, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11378, + 11378, + null + ], + [ + "number-token", + "0", + 11379, + 11379, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11380, + 11380, + null + ], + [ + "number-token", + "0", + 11381, + 11381, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11382, + 11382, + null + ], + [ + "ident-token", + "auto", + 11383, + 11386, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11387, + 11387, + null + ], + [ + "ident-token", + "width", + 11388, + 11392, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11393, + 11393, + null + ], + [ + "percentage-token", + "58.33333333%", + 11394, + 11405, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 11406, + 11406, + null + ], + [ + "delim-token", + ".", + 11407, + 11407, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-8", + 11408, + 11415, + { + "value": "col-sm-8" + } + ], + [ + "{-token", + "{", + 11416, + 11416, + null + ], + [ + "ident-token", + "flex", + 11417, + 11420, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11421, + 11421, + null + ], + [ + "number-token", + "0", + 11422, + 11422, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11423, + 11423, + null + ], + [ + "number-token", + "0", + 11424, + 11424, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11425, + 11425, + null + ], + [ + "ident-token", + "auto", + 11426, + 11429, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11430, + 11430, + null + ], + [ + "ident-token", + "width", + 11431, + 11435, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11436, + 11436, + null + ], + [ + "percentage-token", + "66.66666667%", + 11437, + 11448, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 11449, + 11449, + null + ], + [ + "delim-token", + ".", + 11450, + 11450, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-9", + 11451, + 11458, + { + "value": "col-sm-9" + } + ], + [ + "{-token", + "{", + 11459, + 11459, + null + ], + [ + "ident-token", + "flex", + 11460, + 11463, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11464, + 11464, + null + ], + [ + "number-token", + "0", + 11465, + 11465, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11466, + 11466, + null + ], + [ + "number-token", + "0", + 11467, + 11467, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11468, + 11468, + null + ], + [ + "ident-token", + "auto", + 11469, + 11472, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11473, + 11473, + null + ], + [ + "ident-token", + "width", + 11474, + 11478, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11479, + 11479, + null + ], + [ + "percentage-token", + "75%", + 11480, + 11482, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 11483, + 11483, + null + ], + [ + "delim-token", + ".", + 11484, + 11484, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-10", + 11485, + 11493, + { + "value": "col-sm-10" + } + ], + [ + "{-token", + "{", + 11494, + 11494, + null + ], + [ + "ident-token", + "flex", + 11495, + 11498, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11499, + 11499, + null + ], + [ + "number-token", + "0", + 11500, + 11500, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11501, + 11501, + null + ], + [ + "number-token", + "0", + 11502, + 11502, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11503, + 11503, + null + ], + [ + "ident-token", + "auto", + 11504, + 11507, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11508, + 11508, + null + ], + [ + "ident-token", + "width", + 11509, + 11513, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11514, + 11514, + null + ], + [ + "percentage-token", + "83.33333333%", + 11515, + 11526, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 11527, + 11527, + null + ], + [ + "delim-token", + ".", + 11528, + 11528, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-11", + 11529, + 11537, + { + "value": "col-sm-11" + } + ], + [ + "{-token", + "{", + 11538, + 11538, + null + ], + [ + "ident-token", + "flex", + 11539, + 11542, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11543, + 11543, + null + ], + [ + "number-token", + "0", + 11544, + 11544, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11545, + 11545, + null + ], + [ + "number-token", + "0", + 11546, + 11546, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11547, + 11547, + null + ], + [ + "ident-token", + "auto", + 11548, + 11551, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11552, + 11552, + null + ], + [ + "ident-token", + "width", + 11553, + 11557, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11558, + 11558, + null + ], + [ + "percentage-token", + "91.66666667%", + 11559, + 11570, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 11571, + 11571, + null + ], + [ + "delim-token", + ".", + 11572, + 11572, + { + "value": "." + } + ], + [ + "ident-token", + "col-sm-12", + 11573, + 11581, + { + "value": "col-sm-12" + } + ], + [ + "{-token", + "{", + 11582, + 11582, + null + ], + [ + "ident-token", + "flex", + 11583, + 11586, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 11587, + 11587, + null + ], + [ + "number-token", + "0", + 11588, + 11588, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11589, + 11589, + null + ], + [ + "number-token", + "0", + 11590, + 11590, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 11591, + 11591, + null + ], + [ + "ident-token", + "auto", + 11592, + 11595, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 11596, + 11596, + null + ], + [ + "ident-token", + "width", + 11597, + 11601, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 11602, + 11602, + null + ], + [ + "percentage-token", + "100%", + 11603, + 11606, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 11607, + 11607, + null + ], + [ + "delim-token", + ".", + 11608, + 11608, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-0", + 11609, + 11619, + { + "value": "offset-sm-0" + } + ], + [ + "{-token", + "{", + 11620, + 11620, + null + ], + [ + "ident-token", + "margin-left", + 11621, + 11631, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11632, + 11632, + null + ], + [ + "number-token", + "0", + 11633, + 11633, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 11634, + 11634, + null + ], + [ + "delim-token", + ".", + 11635, + 11635, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-1", + 11636, + 11646, + { + "value": "offset-sm-1" + } + ], + [ + "{-token", + "{", + 11647, + 11647, + null + ], + [ + "ident-token", + "margin-left", + 11648, + 11658, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11659, + 11659, + null + ], + [ + "percentage-token", + "8.33333333%", + 11660, + 11670, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 11671, + 11671, + null + ], + [ + "delim-token", + ".", + 11672, + 11672, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-2", + 11673, + 11683, + { + "value": "offset-sm-2" + } + ], + [ + "{-token", + "{", + 11684, + 11684, + null + ], + [ + "ident-token", + "margin-left", + 11685, + 11695, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11696, + 11696, + null + ], + [ + "percentage-token", + "16.66666667%", + 11697, + 11708, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 11709, + 11709, + null + ], + [ + "delim-token", + ".", + 11710, + 11710, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-3", + 11711, + 11721, + { + "value": "offset-sm-3" + } + ], + [ + "{-token", + "{", + 11722, + 11722, + null + ], + [ + "ident-token", + "margin-left", + 11723, + 11733, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11734, + 11734, + null + ], + [ + "percentage-token", + "25%", + 11735, + 11737, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 11738, + 11738, + null + ], + [ + "delim-token", + ".", + 11739, + 11739, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-4", + 11740, + 11750, + { + "value": "offset-sm-4" + } + ], + [ + "{-token", + "{", + 11751, + 11751, + null + ], + [ + "ident-token", + "margin-left", + 11752, + 11762, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11763, + 11763, + null + ], + [ + "percentage-token", + "33.33333333%", + 11764, + 11775, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 11776, + 11776, + null + ], + [ + "delim-token", + ".", + 11777, + 11777, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-5", + 11778, + 11788, + { + "value": "offset-sm-5" + } + ], + [ + "{-token", + "{", + 11789, + 11789, + null + ], + [ + "ident-token", + "margin-left", + 11790, + 11800, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11801, + 11801, + null + ], + [ + "percentage-token", + "41.66666667%", + 11802, + 11813, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 11814, + 11814, + null + ], + [ + "delim-token", + ".", + 11815, + 11815, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-6", + 11816, + 11826, + { + "value": "offset-sm-6" + } + ], + [ + "{-token", + "{", + 11827, + 11827, + null + ], + [ + "ident-token", + "margin-left", + 11828, + 11838, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11839, + 11839, + null + ], + [ + "percentage-token", + "50%", + 11840, + 11842, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 11843, + 11843, + null + ], + [ + "delim-token", + ".", + 11844, + 11844, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-7", + 11845, + 11855, + { + "value": "offset-sm-7" + } + ], + [ + "{-token", + "{", + 11856, + 11856, + null + ], + [ + "ident-token", + "margin-left", + 11857, + 11867, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11868, + 11868, + null + ], + [ + "percentage-token", + "58.33333333%", + 11869, + 11880, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 11881, + 11881, + null + ], + [ + "delim-token", + ".", + 11882, + 11882, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-8", + 11883, + 11893, + { + "value": "offset-sm-8" + } + ], + [ + "{-token", + "{", + 11894, + 11894, + null + ], + [ + "ident-token", + "margin-left", + 11895, + 11905, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11906, + 11906, + null + ], + [ + "percentage-token", + "66.66666667%", + 11907, + 11918, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 11919, + 11919, + null + ], + [ + "delim-token", + ".", + 11920, + 11920, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-9", + 11921, + 11931, + { + "value": "offset-sm-9" + } + ], + [ + "{-token", + "{", + 11932, + 11932, + null + ], + [ + "ident-token", + "margin-left", + 11933, + 11943, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11944, + 11944, + null + ], + [ + "percentage-token", + "75%", + 11945, + 11947, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 11948, + 11948, + null + ], + [ + "delim-token", + ".", + 11949, + 11949, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-10", + 11950, + 11961, + { + "value": "offset-sm-10" + } + ], + [ + "{-token", + "{", + 11962, + 11962, + null + ], + [ + "ident-token", + "margin-left", + 11963, + 11973, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 11974, + 11974, + null + ], + [ + "percentage-token", + "83.33333333%", + 11975, + 11986, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 11987, + 11987, + null + ], + [ + "delim-token", + ".", + 11988, + 11988, + { + "value": "." + } + ], + [ + "ident-token", + "offset-sm-11", + 11989, + 12000, + { + "value": "offset-sm-11" + } + ], + [ + "{-token", + "{", + 12001, + 12001, + null + ], + [ + "ident-token", + "margin-left", + 12002, + 12012, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 12013, + 12013, + null + ], + [ + "percentage-token", + "91.66666667%", + 12014, + 12025, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 12026, + 12026, + null + ], + [ + "delim-token", + ".", + 12027, + 12027, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-0", + 12028, + 12033, + { + "value": "g-sm-0" + } + ], + [ + "comma-token", + ",", + 12034, + 12034, + null + ], + [ + "delim-token", + ".", + 12035, + 12035, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-0", + 12036, + 12042, + { + "value": "gx-sm-0" + } + ], + [ + "{-token", + "{", + 12043, + 12043, + null + ], + [ + "delim-token", + "-", + 12044, + 12044, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12045, + 12045, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12046, + 12056, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12057, + 12057, + null + ], + [ + "number-token", + "0", + 12058, + 12058, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 12059, + 12059, + null + ], + [ + "delim-token", + ".", + 12060, + 12060, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-0", + 12061, + 12066, + { + "value": "g-sm-0" + } + ], + [ + "comma-token", + ",", + 12067, + 12067, + null + ], + [ + "delim-token", + ".", + 12068, + 12068, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-0", + 12069, + 12075, + { + "value": "gy-sm-0" + } + ], + [ + "{-token", + "{", + 12076, + 12076, + null + ], + [ + "delim-token", + "-", + 12077, + 12077, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12078, + 12078, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12079, + 12089, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12090, + 12090, + null + ], + [ + "number-token", + "0", + 12091, + 12091, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 12092, + 12092, + null + ], + [ + "delim-token", + ".", + 12093, + 12093, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-1", + 12094, + 12099, + { + "value": "g-sm-1" + } + ], + [ + "comma-token", + ",", + 12100, + 12100, + null + ], + [ + "delim-token", + ".", + 12101, + 12101, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-1", + 12102, + 12108, + { + "value": "gx-sm-1" + } + ], + [ + "{-token", + "{", + 12109, + 12109, + null + ], + [ + "delim-token", + "-", + 12110, + 12110, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12111, + 12111, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12112, + 12122, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12123, + 12123, + null + ], + [ + "dimension-token", + "0.25rem", + 12124, + 12130, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12131, + 12131, + null + ], + [ + "delim-token", + ".", + 12132, + 12132, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-1", + 12133, + 12138, + { + "value": "g-sm-1" + } + ], + [ + "comma-token", + ",", + 12139, + 12139, + null + ], + [ + "delim-token", + ".", + 12140, + 12140, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-1", + 12141, + 12147, + { + "value": "gy-sm-1" + } + ], + [ + "{-token", + "{", + 12148, + 12148, + null + ], + [ + "delim-token", + "-", + 12149, + 12149, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12150, + 12150, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12151, + 12161, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12162, + 12162, + null + ], + [ + "dimension-token", + "0.25rem", + 12163, + 12169, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12170, + 12170, + null + ], + [ + "delim-token", + ".", + 12171, + 12171, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-2", + 12172, + 12177, + { + "value": "g-sm-2" + } + ], + [ + "comma-token", + ",", + 12178, + 12178, + null + ], + [ + "delim-token", + ".", + 12179, + 12179, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-2", + 12180, + 12186, + { + "value": "gx-sm-2" + } + ], + [ + "{-token", + "{", + 12187, + 12187, + null + ], + [ + "delim-token", + "-", + 12188, + 12188, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12189, + 12189, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12190, + 12200, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12201, + 12201, + null + ], + [ + "dimension-token", + "0.5rem", + 12202, + 12207, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12208, + 12208, + null + ], + [ + "delim-token", + ".", + 12209, + 12209, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-2", + 12210, + 12215, + { + "value": "g-sm-2" + } + ], + [ + "comma-token", + ",", + 12216, + 12216, + null + ], + [ + "delim-token", + ".", + 12217, + 12217, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-2", + 12218, + 12224, + { + "value": "gy-sm-2" + } + ], + [ + "{-token", + "{", + 12225, + 12225, + null + ], + [ + "delim-token", + "-", + 12226, + 12226, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12227, + 12227, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12228, + 12238, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12239, + 12239, + null + ], + [ + "dimension-token", + "0.5rem", + 12240, + 12245, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12246, + 12246, + null + ], + [ + "delim-token", + ".", + 12247, + 12247, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-3", + 12248, + 12253, + { + "value": "g-sm-3" + } + ], + [ + "comma-token", + ",", + 12254, + 12254, + null + ], + [ + "delim-token", + ".", + 12255, + 12255, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-3", + 12256, + 12262, + { + "value": "gx-sm-3" + } + ], + [ + "{-token", + "{", + 12263, + 12263, + null + ], + [ + "delim-token", + "-", + 12264, + 12264, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12265, + 12265, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12266, + 12276, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12277, + 12277, + null + ], + [ + "dimension-token", + "1rem", + 12278, + 12281, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12282, + 12282, + null + ], + [ + "delim-token", + ".", + 12283, + 12283, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-3", + 12284, + 12289, + { + "value": "g-sm-3" + } + ], + [ + "comma-token", + ",", + 12290, + 12290, + null + ], + [ + "delim-token", + ".", + 12291, + 12291, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-3", + 12292, + 12298, + { + "value": "gy-sm-3" + } + ], + [ + "{-token", + "{", + 12299, + 12299, + null + ], + [ + "delim-token", + "-", + 12300, + 12300, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12301, + 12301, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12302, + 12312, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12313, + 12313, + null + ], + [ + "dimension-token", + "1rem", + 12314, + 12317, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12318, + 12318, + null + ], + [ + "delim-token", + ".", + 12319, + 12319, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-4", + 12320, + 12325, + { + "value": "g-sm-4" + } + ], + [ + "comma-token", + ",", + 12326, + 12326, + null + ], + [ + "delim-token", + ".", + 12327, + 12327, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-4", + 12328, + 12334, + { + "value": "gx-sm-4" + } + ], + [ + "{-token", + "{", + 12335, + 12335, + null + ], + [ + "delim-token", + "-", + 12336, + 12336, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12337, + 12337, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12338, + 12348, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12349, + 12349, + null + ], + [ + "dimension-token", + "1.5rem", + 12350, + 12355, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12356, + 12356, + null + ], + [ + "delim-token", + ".", + 12357, + 12357, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-4", + 12358, + 12363, + { + "value": "g-sm-4" + } + ], + [ + "comma-token", + ",", + 12364, + 12364, + null + ], + [ + "delim-token", + ".", + 12365, + 12365, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-4", + 12366, + 12372, + { + "value": "gy-sm-4" + } + ], + [ + "{-token", + "{", + 12373, + 12373, + null + ], + [ + "delim-token", + "-", + 12374, + 12374, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12375, + 12375, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12376, + 12386, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12387, + 12387, + null + ], + [ + "dimension-token", + "1.5rem", + 12388, + 12393, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12394, + 12394, + null + ], + [ + "delim-token", + ".", + 12395, + 12395, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-5", + 12396, + 12401, + { + "value": "g-sm-5" + } + ], + [ + "comma-token", + ",", + 12402, + 12402, + null + ], + [ + "delim-token", + ".", + 12403, + 12403, + { + "value": "." + } + ], + [ + "ident-token", + "gx-sm-5", + 12404, + 12410, + { + "value": "gx-sm-5" + } + ], + [ + "{-token", + "{", + 12411, + 12411, + null + ], + [ + "delim-token", + "-", + 12412, + 12412, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12413, + 12413, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 12414, + 12424, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 12425, + 12425, + null + ], + [ + "dimension-token", + "3rem", + 12426, + 12429, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12430, + 12430, + null + ], + [ + "delim-token", + ".", + 12431, + 12431, + { + "value": "." + } + ], + [ + "ident-token", + "g-sm-5", + 12432, + 12437, + { + "value": "g-sm-5" + } + ], + [ + "comma-token", + ",", + 12438, + 12438, + null + ], + [ + "delim-token", + ".", + 12439, + 12439, + { + "value": "." + } + ], + [ + "ident-token", + "gy-sm-5", + 12440, + 12446, + { + "value": "gy-sm-5" + } + ], + [ + "{-token", + "{", + 12447, + 12447, + null + ], + [ + "delim-token", + "-", + 12448, + 12448, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 12449, + 12449, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 12450, + 12460, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 12461, + 12461, + null + ], + [ + "dimension-token", + "3rem", + 12462, + 12465, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 12466, + 12466, + null + ], + [ + "}-token", + "}", + 12467, + 12467, + null + ], + [ + "at-keyword-token", + "@media", + 12468, + 12473, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 12474, + 12474, + null + ], + [ + "(-token", + "(", + 12475, + 12475, + null + ], + [ + "ident-token", + "min-width", + 12476, + 12484, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 12485, + 12485, + null + ], + [ + "dimension-token", + "768px", + 12486, + 12490, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 12491, + 12491, + null + ], + [ + "{-token", + "{", + 12492, + 12492, + null + ], + [ + "delim-token", + ".", + 12493, + 12493, + { + "value": "." + } + ], + [ + "ident-token", + "col-md", + 12494, + 12499, + { + "value": "col-md" + } + ], + [ + "{-token", + "{", + 12500, + 12500, + null + ], + [ + "ident-token", + "flex", + 12501, + 12504, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12505, + 12505, + null + ], + [ + "number-token", + "1", + 12506, + 12506, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12507, + 12507, + null + ], + [ + "number-token", + "0", + 12508, + 12508, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12509, + 12509, + null + ], + [ + "percentage-token", + "0%", + 12510, + 12511, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 12512, + 12512, + null + ], + [ + "delim-token", + ".", + 12513, + 12513, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-auto", + 12514, + 12529, + { + "value": "row-cols-md-auto" + } + ], + [ + "delim-token", + ">", + 12530, + 12530, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12531, + 12531, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12532, + 12532, + null + ], + [ + "ident-token", + "flex", + 12533, + 12536, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12537, + 12537, + null + ], + [ + "number-token", + "0", + 12538, + 12538, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12539, + 12539, + null + ], + [ + "number-token", + "0", + 12540, + 12540, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12541, + 12541, + null + ], + [ + "ident-token", + "auto", + 12542, + 12545, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12546, + 12546, + null + ], + [ + "ident-token", + "width", + 12547, + 12551, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12552, + 12552, + null + ], + [ + "ident-token", + "auto", + 12553, + 12556, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 12557, + 12557, + null + ], + [ + "delim-token", + ".", + 12558, + 12558, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-1", + 12559, + 12571, + { + "value": "row-cols-md-1" + } + ], + [ + "delim-token", + ">", + 12572, + 12572, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12573, + 12573, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12574, + 12574, + null + ], + [ + "ident-token", + "flex", + 12575, + 12578, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12579, + 12579, + null + ], + [ + "number-token", + "0", + 12580, + 12580, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12581, + 12581, + null + ], + [ + "number-token", + "0", + 12582, + 12582, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12583, + 12583, + null + ], + [ + "ident-token", + "auto", + 12584, + 12587, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12588, + 12588, + null + ], + [ + "ident-token", + "width", + 12589, + 12593, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12594, + 12594, + null + ], + [ + "percentage-token", + "100%", + 12595, + 12598, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 12599, + 12599, + null + ], + [ + "delim-token", + ".", + 12600, + 12600, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-2", + 12601, + 12613, + { + "value": "row-cols-md-2" + } + ], + [ + "delim-token", + ">", + 12614, + 12614, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12615, + 12615, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12616, + 12616, + null + ], + [ + "ident-token", + "flex", + 12617, + 12620, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12621, + 12621, + null + ], + [ + "number-token", + "0", + 12622, + 12622, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12623, + 12623, + null + ], + [ + "number-token", + "0", + 12624, + 12624, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12625, + 12625, + null + ], + [ + "ident-token", + "auto", + 12626, + 12629, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12630, + 12630, + null + ], + [ + "ident-token", + "width", + 12631, + 12635, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12636, + 12636, + null + ], + [ + "percentage-token", + "50%", + 12637, + 12639, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 12640, + 12640, + null + ], + [ + "delim-token", + ".", + 12641, + 12641, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-3", + 12642, + 12654, + { + "value": "row-cols-md-3" + } + ], + [ + "delim-token", + ">", + 12655, + 12655, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12656, + 12656, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12657, + 12657, + null + ], + [ + "ident-token", + "flex", + 12658, + 12661, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12662, + 12662, + null + ], + [ + "number-token", + "0", + 12663, + 12663, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12664, + 12664, + null + ], + [ + "number-token", + "0", + 12665, + 12665, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12666, + 12666, + null + ], + [ + "ident-token", + "auto", + 12667, + 12670, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12671, + 12671, + null + ], + [ + "ident-token", + "width", + 12672, + 12676, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12677, + 12677, + null + ], + [ + "percentage-token", + "33.3333333333%", + 12678, + 12691, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 12692, + 12692, + null + ], + [ + "delim-token", + ".", + 12693, + 12693, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-4", + 12694, + 12706, + { + "value": "row-cols-md-4" + } + ], + [ + "delim-token", + ">", + 12707, + 12707, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12708, + 12708, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12709, + 12709, + null + ], + [ + "ident-token", + "flex", + 12710, + 12713, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12714, + 12714, + null + ], + [ + "number-token", + "0", + 12715, + 12715, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12716, + 12716, + null + ], + [ + "number-token", + "0", + 12717, + 12717, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12718, + 12718, + null + ], + [ + "ident-token", + "auto", + 12719, + 12722, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12723, + 12723, + null + ], + [ + "ident-token", + "width", + 12724, + 12728, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12729, + 12729, + null + ], + [ + "percentage-token", + "25%", + 12730, + 12732, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 12733, + 12733, + null + ], + [ + "delim-token", + ".", + 12734, + 12734, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-5", + 12735, + 12747, + { + "value": "row-cols-md-5" + } + ], + [ + "delim-token", + ">", + 12748, + 12748, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12749, + 12749, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12750, + 12750, + null + ], + [ + "ident-token", + "flex", + 12751, + 12754, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12755, + 12755, + null + ], + [ + "number-token", + "0", + 12756, + 12756, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12757, + 12757, + null + ], + [ + "number-token", + "0", + 12758, + 12758, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12759, + 12759, + null + ], + [ + "ident-token", + "auto", + 12760, + 12763, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12764, + 12764, + null + ], + [ + "ident-token", + "width", + 12765, + 12769, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12770, + 12770, + null + ], + [ + "percentage-token", + "20%", + 12771, + 12773, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 12774, + 12774, + null + ], + [ + "delim-token", + ".", + 12775, + 12775, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-md-6", + 12776, + 12788, + { + "value": "row-cols-md-6" + } + ], + [ + "delim-token", + ">", + 12789, + 12789, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 12790, + 12790, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 12791, + 12791, + null + ], + [ + "ident-token", + "flex", + 12792, + 12795, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12796, + 12796, + null + ], + [ + "number-token", + "0", + 12797, + 12797, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12798, + 12798, + null + ], + [ + "number-token", + "0", + 12799, + 12799, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12800, + 12800, + null + ], + [ + "ident-token", + "auto", + 12801, + 12804, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12805, + 12805, + null + ], + [ + "ident-token", + "width", + 12806, + 12810, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12811, + 12811, + null + ], + [ + "percentage-token", + "16.6666666667%", + 12812, + 12825, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 12826, + 12826, + null + ], + [ + "delim-token", + ".", + 12827, + 12827, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-auto", + 12828, + 12838, + { + "value": "col-md-auto" + } + ], + [ + "{-token", + "{", + 12839, + 12839, + null + ], + [ + "ident-token", + "flex", + 12840, + 12843, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12844, + 12844, + null + ], + [ + "number-token", + "0", + 12845, + 12845, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12846, + 12846, + null + ], + [ + "number-token", + "0", + 12847, + 12847, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12848, + 12848, + null + ], + [ + "ident-token", + "auto", + 12849, + 12852, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12853, + 12853, + null + ], + [ + "ident-token", + "width", + 12854, + 12858, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12859, + 12859, + null + ], + [ + "ident-token", + "auto", + 12860, + 12863, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 12864, + 12864, + null + ], + [ + "delim-token", + ".", + 12865, + 12865, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-1", + 12866, + 12873, + { + "value": "col-md-1" + } + ], + [ + "{-token", + "{", + 12874, + 12874, + null + ], + [ + "ident-token", + "flex", + 12875, + 12878, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12879, + 12879, + null + ], + [ + "number-token", + "0", + 12880, + 12880, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12881, + 12881, + null + ], + [ + "number-token", + "0", + 12882, + 12882, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12883, + 12883, + null + ], + [ + "ident-token", + "auto", + 12884, + 12887, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12888, + 12888, + null + ], + [ + "ident-token", + "width", + 12889, + 12893, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12894, + 12894, + null + ], + [ + "percentage-token", + "8.33333333%", + 12895, + 12905, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 12906, + 12906, + null + ], + [ + "delim-token", + ".", + 12907, + 12907, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-2", + 12908, + 12915, + { + "value": "col-md-2" + } + ], + [ + "{-token", + "{", + 12916, + 12916, + null + ], + [ + "ident-token", + "flex", + 12917, + 12920, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12921, + 12921, + null + ], + [ + "number-token", + "0", + 12922, + 12922, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12923, + 12923, + null + ], + [ + "number-token", + "0", + 12924, + 12924, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12925, + 12925, + null + ], + [ + "ident-token", + "auto", + 12926, + 12929, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12930, + 12930, + null + ], + [ + "ident-token", + "width", + 12931, + 12935, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12936, + 12936, + null + ], + [ + "percentage-token", + "16.66666667%", + 12937, + 12948, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 12949, + 12949, + null + ], + [ + "delim-token", + ".", + 12950, + 12950, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-3", + 12951, + 12958, + { + "value": "col-md-3" + } + ], + [ + "{-token", + "{", + 12959, + 12959, + null + ], + [ + "ident-token", + "flex", + 12960, + 12963, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12964, + 12964, + null + ], + [ + "number-token", + "0", + 12965, + 12965, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12966, + 12966, + null + ], + [ + "number-token", + "0", + 12967, + 12967, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 12968, + 12968, + null + ], + [ + "ident-token", + "auto", + 12969, + 12972, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 12973, + 12973, + null + ], + [ + "ident-token", + "width", + 12974, + 12978, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 12979, + 12979, + null + ], + [ + "percentage-token", + "25%", + 12980, + 12982, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 12983, + 12983, + null + ], + [ + "delim-token", + ".", + 12984, + 12984, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-4", + 12985, + 12992, + { + "value": "col-md-4" + } + ], + [ + "{-token", + "{", + 12993, + 12993, + null + ], + [ + "ident-token", + "flex", + 12994, + 12997, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 12998, + 12998, + null + ], + [ + "number-token", + "0", + 12999, + 12999, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13000, + 13000, + null + ], + [ + "number-token", + "0", + 13001, + 13001, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13002, + 13002, + null + ], + [ + "ident-token", + "auto", + 13003, + 13006, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13007, + 13007, + null + ], + [ + "ident-token", + "width", + 13008, + 13012, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13013, + 13013, + null + ], + [ + "percentage-token", + "33.33333333%", + 13014, + 13025, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 13026, + 13026, + null + ], + [ + "delim-token", + ".", + 13027, + 13027, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-5", + 13028, + 13035, + { + "value": "col-md-5" + } + ], + [ + "{-token", + "{", + 13036, + 13036, + null + ], + [ + "ident-token", + "flex", + 13037, + 13040, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13041, + 13041, + null + ], + [ + "number-token", + "0", + 13042, + 13042, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13043, + 13043, + null + ], + [ + "number-token", + "0", + 13044, + 13044, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13045, + 13045, + null + ], + [ + "ident-token", + "auto", + 13046, + 13049, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13050, + 13050, + null + ], + [ + "ident-token", + "width", + 13051, + 13055, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13056, + 13056, + null + ], + [ + "percentage-token", + "41.66666667%", + 13057, + 13068, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 13069, + 13069, + null + ], + [ + "delim-token", + ".", + 13070, + 13070, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-6", + 13071, + 13078, + { + "value": "col-md-6" + } + ], + [ + "{-token", + "{", + 13079, + 13079, + null + ], + [ + "ident-token", + "flex", + 13080, + 13083, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13084, + 13084, + null + ], + [ + "number-token", + "0", + 13085, + 13085, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13086, + 13086, + null + ], + [ + "number-token", + "0", + 13087, + 13087, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13088, + 13088, + null + ], + [ + "ident-token", + "auto", + 13089, + 13092, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13093, + 13093, + null + ], + [ + "ident-token", + "width", + 13094, + 13098, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13099, + 13099, + null + ], + [ + "percentage-token", + "50%", + 13100, + 13102, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 13103, + 13103, + null + ], + [ + "delim-token", + ".", + 13104, + 13104, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-7", + 13105, + 13112, + { + "value": "col-md-7" + } + ], + [ + "{-token", + "{", + 13113, + 13113, + null + ], + [ + "ident-token", + "flex", + 13114, + 13117, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13118, + 13118, + null + ], + [ + "number-token", + "0", + 13119, + 13119, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13120, + 13120, + null + ], + [ + "number-token", + "0", + 13121, + 13121, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13122, + 13122, + null + ], + [ + "ident-token", + "auto", + 13123, + 13126, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13127, + 13127, + null + ], + [ + "ident-token", + "width", + 13128, + 13132, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13133, + 13133, + null + ], + [ + "percentage-token", + "58.33333333%", + 13134, + 13145, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 13146, + 13146, + null + ], + [ + "delim-token", + ".", + 13147, + 13147, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-8", + 13148, + 13155, + { + "value": "col-md-8" + } + ], + [ + "{-token", + "{", + 13156, + 13156, + null + ], + [ + "ident-token", + "flex", + 13157, + 13160, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13161, + 13161, + null + ], + [ + "number-token", + "0", + 13162, + 13162, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13163, + 13163, + null + ], + [ + "number-token", + "0", + 13164, + 13164, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13165, + 13165, + null + ], + [ + "ident-token", + "auto", + 13166, + 13169, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13170, + 13170, + null + ], + [ + "ident-token", + "width", + 13171, + 13175, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13176, + 13176, + null + ], + [ + "percentage-token", + "66.66666667%", + 13177, + 13188, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 13189, + 13189, + null + ], + [ + "delim-token", + ".", + 13190, + 13190, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-9", + 13191, + 13198, + { + "value": "col-md-9" + } + ], + [ + "{-token", + "{", + 13199, + 13199, + null + ], + [ + "ident-token", + "flex", + 13200, + 13203, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13204, + 13204, + null + ], + [ + "number-token", + "0", + 13205, + 13205, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13206, + 13206, + null + ], + [ + "number-token", + "0", + 13207, + 13207, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13208, + 13208, + null + ], + [ + "ident-token", + "auto", + 13209, + 13212, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13213, + 13213, + null + ], + [ + "ident-token", + "width", + 13214, + 13218, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13219, + 13219, + null + ], + [ + "percentage-token", + "75%", + 13220, + 13222, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 13223, + 13223, + null + ], + [ + "delim-token", + ".", + 13224, + 13224, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-10", + 13225, + 13233, + { + "value": "col-md-10" + } + ], + [ + "{-token", + "{", + 13234, + 13234, + null + ], + [ + "ident-token", + "flex", + 13235, + 13238, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13239, + 13239, + null + ], + [ + "number-token", + "0", + 13240, + 13240, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13241, + 13241, + null + ], + [ + "number-token", + "0", + 13242, + 13242, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13243, + 13243, + null + ], + [ + "ident-token", + "auto", + 13244, + 13247, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13248, + 13248, + null + ], + [ + "ident-token", + "width", + 13249, + 13253, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13254, + 13254, + null + ], + [ + "percentage-token", + "83.33333333%", + 13255, + 13266, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 13267, + 13267, + null + ], + [ + "delim-token", + ".", + 13268, + 13268, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-11", + 13269, + 13277, + { + "value": "col-md-11" + } + ], + [ + "{-token", + "{", + 13278, + 13278, + null + ], + [ + "ident-token", + "flex", + 13279, + 13282, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13283, + 13283, + null + ], + [ + "number-token", + "0", + 13284, + 13284, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13285, + 13285, + null + ], + [ + "number-token", + "0", + 13286, + 13286, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13287, + 13287, + null + ], + [ + "ident-token", + "auto", + 13288, + 13291, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13292, + 13292, + null + ], + [ + "ident-token", + "width", + 13293, + 13297, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13298, + 13298, + null + ], + [ + "percentage-token", + "91.66666667%", + 13299, + 13310, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 13311, + 13311, + null + ], + [ + "delim-token", + ".", + 13312, + 13312, + { + "value": "." + } + ], + [ + "ident-token", + "col-md-12", + 13313, + 13321, + { + "value": "col-md-12" + } + ], + [ + "{-token", + "{", + 13322, + 13322, + null + ], + [ + "ident-token", + "flex", + 13323, + 13326, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 13327, + 13327, + null + ], + [ + "number-token", + "0", + 13328, + 13328, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13329, + 13329, + null + ], + [ + "number-token", + "0", + 13330, + 13330, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 13331, + 13331, + null + ], + [ + "ident-token", + "auto", + 13332, + 13335, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 13336, + 13336, + null + ], + [ + "ident-token", + "width", + 13337, + 13341, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 13342, + 13342, + null + ], + [ + "percentage-token", + "100%", + 13343, + 13346, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 13347, + 13347, + null + ], + [ + "delim-token", + ".", + 13348, + 13348, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-0", + 13349, + 13359, + { + "value": "offset-md-0" + } + ], + [ + "{-token", + "{", + 13360, + 13360, + null + ], + [ + "ident-token", + "margin-left", + 13361, + 13371, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13372, + 13372, + null + ], + [ + "number-token", + "0", + 13373, + 13373, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 13374, + 13374, + null + ], + [ + "delim-token", + ".", + 13375, + 13375, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-1", + 13376, + 13386, + { + "value": "offset-md-1" + } + ], + [ + "{-token", + "{", + 13387, + 13387, + null + ], + [ + "ident-token", + "margin-left", + 13388, + 13398, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13399, + 13399, + null + ], + [ + "percentage-token", + "8.33333333%", + 13400, + 13410, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 13411, + 13411, + null + ], + [ + "delim-token", + ".", + 13412, + 13412, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-2", + 13413, + 13423, + { + "value": "offset-md-2" + } + ], + [ + "{-token", + "{", + 13424, + 13424, + null + ], + [ + "ident-token", + "margin-left", + 13425, + 13435, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13436, + 13436, + null + ], + [ + "percentage-token", + "16.66666667%", + 13437, + 13448, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 13449, + 13449, + null + ], + [ + "delim-token", + ".", + 13450, + 13450, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-3", + 13451, + 13461, + { + "value": "offset-md-3" + } + ], + [ + "{-token", + "{", + 13462, + 13462, + null + ], + [ + "ident-token", + "margin-left", + 13463, + 13473, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13474, + 13474, + null + ], + [ + "percentage-token", + "25%", + 13475, + 13477, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 13478, + 13478, + null + ], + [ + "delim-token", + ".", + 13479, + 13479, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-4", + 13480, + 13490, + { + "value": "offset-md-4" + } + ], + [ + "{-token", + "{", + 13491, + 13491, + null + ], + [ + "ident-token", + "margin-left", + 13492, + 13502, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13503, + 13503, + null + ], + [ + "percentage-token", + "33.33333333%", + 13504, + 13515, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 13516, + 13516, + null + ], + [ + "delim-token", + ".", + 13517, + 13517, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-5", + 13518, + 13528, + { + "value": "offset-md-5" + } + ], + [ + "{-token", + "{", + 13529, + 13529, + null + ], + [ + "ident-token", + "margin-left", + 13530, + 13540, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13541, + 13541, + null + ], + [ + "percentage-token", + "41.66666667%", + 13542, + 13553, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 13554, + 13554, + null + ], + [ + "delim-token", + ".", + 13555, + 13555, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-6", + 13556, + 13566, + { + "value": "offset-md-6" + } + ], + [ + "{-token", + "{", + 13567, + 13567, + null + ], + [ + "ident-token", + "margin-left", + 13568, + 13578, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13579, + 13579, + null + ], + [ + "percentage-token", + "50%", + 13580, + 13582, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 13583, + 13583, + null + ], + [ + "delim-token", + ".", + 13584, + 13584, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-7", + 13585, + 13595, + { + "value": "offset-md-7" + } + ], + [ + "{-token", + "{", + 13596, + 13596, + null + ], + [ + "ident-token", + "margin-left", + 13597, + 13607, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13608, + 13608, + null + ], + [ + "percentage-token", + "58.33333333%", + 13609, + 13620, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 13621, + 13621, + null + ], + [ + "delim-token", + ".", + 13622, + 13622, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-8", + 13623, + 13633, + { + "value": "offset-md-8" + } + ], + [ + "{-token", + "{", + 13634, + 13634, + null + ], + [ + "ident-token", + "margin-left", + 13635, + 13645, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13646, + 13646, + null + ], + [ + "percentage-token", + "66.66666667%", + 13647, + 13658, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 13659, + 13659, + null + ], + [ + "delim-token", + ".", + 13660, + 13660, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-9", + 13661, + 13671, + { + "value": "offset-md-9" + } + ], + [ + "{-token", + "{", + 13672, + 13672, + null + ], + [ + "ident-token", + "margin-left", + 13673, + 13683, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13684, + 13684, + null + ], + [ + "percentage-token", + "75%", + 13685, + 13687, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 13688, + 13688, + null + ], + [ + "delim-token", + ".", + 13689, + 13689, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-10", + 13690, + 13701, + { + "value": "offset-md-10" + } + ], + [ + "{-token", + "{", + 13702, + 13702, + null + ], + [ + "ident-token", + "margin-left", + 13703, + 13713, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13714, + 13714, + null + ], + [ + "percentage-token", + "83.33333333%", + 13715, + 13726, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 13727, + 13727, + null + ], + [ + "delim-token", + ".", + 13728, + 13728, + { + "value": "." + } + ], + [ + "ident-token", + "offset-md-11", + 13729, + 13740, + { + "value": "offset-md-11" + } + ], + [ + "{-token", + "{", + 13741, + 13741, + null + ], + [ + "ident-token", + "margin-left", + 13742, + 13752, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 13753, + 13753, + null + ], + [ + "percentage-token", + "91.66666667%", + 13754, + 13765, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 13766, + 13766, + null + ], + [ + "delim-token", + ".", + 13767, + 13767, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-0", + 13768, + 13773, + { + "value": "g-md-0" + } + ], + [ + "comma-token", + ",", + 13774, + 13774, + null + ], + [ + "delim-token", + ".", + 13775, + 13775, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-0", + 13776, + 13782, + { + "value": "gx-md-0" + } + ], + [ + "{-token", + "{", + 13783, + 13783, + null + ], + [ + "delim-token", + "-", + 13784, + 13784, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13785, + 13785, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 13786, + 13796, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 13797, + 13797, + null + ], + [ + "number-token", + "0", + 13798, + 13798, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 13799, + 13799, + null + ], + [ + "delim-token", + ".", + 13800, + 13800, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-0", + 13801, + 13806, + { + "value": "g-md-0" + } + ], + [ + "comma-token", + ",", + 13807, + 13807, + null + ], + [ + "delim-token", + ".", + 13808, + 13808, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-0", + 13809, + 13815, + { + "value": "gy-md-0" + } + ], + [ + "{-token", + "{", + 13816, + 13816, + null + ], + [ + "delim-token", + "-", + 13817, + 13817, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13818, + 13818, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 13819, + 13829, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 13830, + 13830, + null + ], + [ + "number-token", + "0", + 13831, + 13831, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 13832, + 13832, + null + ], + [ + "delim-token", + ".", + 13833, + 13833, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-1", + 13834, + 13839, + { + "value": "g-md-1" + } + ], + [ + "comma-token", + ",", + 13840, + 13840, + null + ], + [ + "delim-token", + ".", + 13841, + 13841, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-1", + 13842, + 13848, + { + "value": "gx-md-1" + } + ], + [ + "{-token", + "{", + 13849, + 13849, + null + ], + [ + "delim-token", + "-", + 13850, + 13850, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13851, + 13851, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 13852, + 13862, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 13863, + 13863, + null + ], + [ + "dimension-token", + "0.25rem", + 13864, + 13870, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 13871, + 13871, + null + ], + [ + "delim-token", + ".", + 13872, + 13872, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-1", + 13873, + 13878, + { + "value": "g-md-1" + } + ], + [ + "comma-token", + ",", + 13879, + 13879, + null + ], + [ + "delim-token", + ".", + 13880, + 13880, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-1", + 13881, + 13887, + { + "value": "gy-md-1" + } + ], + [ + "{-token", + "{", + 13888, + 13888, + null + ], + [ + "delim-token", + "-", + 13889, + 13889, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13890, + 13890, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 13891, + 13901, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 13902, + 13902, + null + ], + [ + "dimension-token", + "0.25rem", + 13903, + 13909, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 13910, + 13910, + null + ], + [ + "delim-token", + ".", + 13911, + 13911, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-2", + 13912, + 13917, + { + "value": "g-md-2" + } + ], + [ + "comma-token", + ",", + 13918, + 13918, + null + ], + [ + "delim-token", + ".", + 13919, + 13919, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-2", + 13920, + 13926, + { + "value": "gx-md-2" + } + ], + [ + "{-token", + "{", + 13927, + 13927, + null + ], + [ + "delim-token", + "-", + 13928, + 13928, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13929, + 13929, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 13930, + 13940, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 13941, + 13941, + null + ], + [ + "dimension-token", + "0.5rem", + 13942, + 13947, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 13948, + 13948, + null + ], + [ + "delim-token", + ".", + 13949, + 13949, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-2", + 13950, + 13955, + { + "value": "g-md-2" + } + ], + [ + "comma-token", + ",", + 13956, + 13956, + null + ], + [ + "delim-token", + ".", + 13957, + 13957, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-2", + 13958, + 13964, + { + "value": "gy-md-2" + } + ], + [ + "{-token", + "{", + 13965, + 13965, + null + ], + [ + "delim-token", + "-", + 13966, + 13966, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 13967, + 13967, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 13968, + 13978, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 13979, + 13979, + null + ], + [ + "dimension-token", + "0.5rem", + 13980, + 13985, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 13986, + 13986, + null + ], + [ + "delim-token", + ".", + 13987, + 13987, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-3", + 13988, + 13993, + { + "value": "g-md-3" + } + ], + [ + "comma-token", + ",", + 13994, + 13994, + null + ], + [ + "delim-token", + ".", + 13995, + 13995, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-3", + 13996, + 14002, + { + "value": "gx-md-3" + } + ], + [ + "{-token", + "{", + 14003, + 14003, + null + ], + [ + "delim-token", + "-", + 14004, + 14004, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14005, + 14005, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 14006, + 14016, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 14017, + 14017, + null + ], + [ + "dimension-token", + "1rem", + 14018, + 14021, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14022, + 14022, + null + ], + [ + "delim-token", + ".", + 14023, + 14023, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-3", + 14024, + 14029, + { + "value": "g-md-3" + } + ], + [ + "comma-token", + ",", + 14030, + 14030, + null + ], + [ + "delim-token", + ".", + 14031, + 14031, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-3", + 14032, + 14038, + { + "value": "gy-md-3" + } + ], + [ + "{-token", + "{", + 14039, + 14039, + null + ], + [ + "delim-token", + "-", + 14040, + 14040, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14041, + 14041, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 14042, + 14052, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 14053, + 14053, + null + ], + [ + "dimension-token", + "1rem", + 14054, + 14057, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14058, + 14058, + null + ], + [ + "delim-token", + ".", + 14059, + 14059, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-4", + 14060, + 14065, + { + "value": "g-md-4" + } + ], + [ + "comma-token", + ",", + 14066, + 14066, + null + ], + [ + "delim-token", + ".", + 14067, + 14067, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-4", + 14068, + 14074, + { + "value": "gx-md-4" + } + ], + [ + "{-token", + "{", + 14075, + 14075, + null + ], + [ + "delim-token", + "-", + 14076, + 14076, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14077, + 14077, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 14078, + 14088, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 14089, + 14089, + null + ], + [ + "dimension-token", + "1.5rem", + 14090, + 14095, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14096, + 14096, + null + ], + [ + "delim-token", + ".", + 14097, + 14097, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-4", + 14098, + 14103, + { + "value": "g-md-4" + } + ], + [ + "comma-token", + ",", + 14104, + 14104, + null + ], + [ + "delim-token", + ".", + 14105, + 14105, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-4", + 14106, + 14112, + { + "value": "gy-md-4" + } + ], + [ + "{-token", + "{", + 14113, + 14113, + null + ], + [ + "delim-token", + "-", + 14114, + 14114, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14115, + 14115, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 14116, + 14126, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 14127, + 14127, + null + ], + [ + "dimension-token", + "1.5rem", + 14128, + 14133, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14134, + 14134, + null + ], + [ + "delim-token", + ".", + 14135, + 14135, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-5", + 14136, + 14141, + { + "value": "g-md-5" + } + ], + [ + "comma-token", + ",", + 14142, + 14142, + null + ], + [ + "delim-token", + ".", + 14143, + 14143, + { + "value": "." + } + ], + [ + "ident-token", + "gx-md-5", + 14144, + 14150, + { + "value": "gx-md-5" + } + ], + [ + "{-token", + "{", + 14151, + 14151, + null + ], + [ + "delim-token", + "-", + 14152, + 14152, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14153, + 14153, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 14154, + 14164, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 14165, + 14165, + null + ], + [ + "dimension-token", + "3rem", + 14166, + 14169, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14170, + 14170, + null + ], + [ + "delim-token", + ".", + 14171, + 14171, + { + "value": "." + } + ], + [ + "ident-token", + "g-md-5", + 14172, + 14177, + { + "value": "g-md-5" + } + ], + [ + "comma-token", + ",", + 14178, + 14178, + null + ], + [ + "delim-token", + ".", + 14179, + 14179, + { + "value": "." + } + ], + [ + "ident-token", + "gy-md-5", + 14180, + 14186, + { + "value": "gy-md-5" + } + ], + [ + "{-token", + "{", + 14187, + 14187, + null + ], + [ + "delim-token", + "-", + 14188, + 14188, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 14189, + 14189, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 14190, + 14200, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 14201, + 14201, + null + ], + [ + "dimension-token", + "3rem", + 14202, + 14205, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 14206, + 14206, + null + ], + [ + "}-token", + "}", + 14207, + 14207, + null + ], + [ + "at-keyword-token", + "@media", + 14208, + 14213, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 14214, + 14214, + null + ], + [ + "(-token", + "(", + 14215, + 14215, + null + ], + [ + "ident-token", + "min-width", + 14216, + 14224, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 14225, + 14225, + null + ], + [ + "dimension-token", + "992px", + 14226, + 14230, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 14231, + 14231, + null + ], + [ + "{-token", + "{", + 14232, + 14232, + null + ], + [ + "delim-token", + ".", + 14233, + 14233, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg", + 14234, + 14239, + { + "value": "col-lg" + } + ], + [ + "{-token", + "{", + 14240, + 14240, + null + ], + [ + "ident-token", + "flex", + 14241, + 14244, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14245, + 14245, + null + ], + [ + "number-token", + "1", + 14246, + 14246, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14247, + 14247, + null + ], + [ + "number-token", + "0", + 14248, + 14248, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14249, + 14249, + null + ], + [ + "percentage-token", + "0%", + 14250, + 14251, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 14252, + 14252, + null + ], + [ + "delim-token", + ".", + 14253, + 14253, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-auto", + 14254, + 14269, + { + "value": "row-cols-lg-auto" + } + ], + [ + "delim-token", + ">", + 14270, + 14270, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14271, + 14271, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14272, + 14272, + null + ], + [ + "ident-token", + "flex", + 14273, + 14276, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14277, + 14277, + null + ], + [ + "number-token", + "0", + 14278, + 14278, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14279, + 14279, + null + ], + [ + "number-token", + "0", + 14280, + 14280, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14281, + 14281, + null + ], + [ + "ident-token", + "auto", + 14282, + 14285, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14286, + 14286, + null + ], + [ + "ident-token", + "width", + 14287, + 14291, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14292, + 14292, + null + ], + [ + "ident-token", + "auto", + 14293, + 14296, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 14297, + 14297, + null + ], + [ + "delim-token", + ".", + 14298, + 14298, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-1", + 14299, + 14311, + { + "value": "row-cols-lg-1" + } + ], + [ + "delim-token", + ">", + 14312, + 14312, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14313, + 14313, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14314, + 14314, + null + ], + [ + "ident-token", + "flex", + 14315, + 14318, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14319, + 14319, + null + ], + [ + "number-token", + "0", + 14320, + 14320, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14321, + 14321, + null + ], + [ + "number-token", + "0", + 14322, + 14322, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14323, + 14323, + null + ], + [ + "ident-token", + "auto", + 14324, + 14327, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14328, + 14328, + null + ], + [ + "ident-token", + "width", + 14329, + 14333, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14334, + 14334, + null + ], + [ + "percentage-token", + "100%", + 14335, + 14338, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 14339, + 14339, + null + ], + [ + "delim-token", + ".", + 14340, + 14340, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-2", + 14341, + 14353, + { + "value": "row-cols-lg-2" + } + ], + [ + "delim-token", + ">", + 14354, + 14354, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14355, + 14355, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14356, + 14356, + null + ], + [ + "ident-token", + "flex", + 14357, + 14360, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14361, + 14361, + null + ], + [ + "number-token", + "0", + 14362, + 14362, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14363, + 14363, + null + ], + [ + "number-token", + "0", + 14364, + 14364, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14365, + 14365, + null + ], + [ + "ident-token", + "auto", + 14366, + 14369, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14370, + 14370, + null + ], + [ + "ident-token", + "width", + 14371, + 14375, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14376, + 14376, + null + ], + [ + "percentage-token", + "50%", + 14377, + 14379, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 14380, + 14380, + null + ], + [ + "delim-token", + ".", + 14381, + 14381, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-3", + 14382, + 14394, + { + "value": "row-cols-lg-3" + } + ], + [ + "delim-token", + ">", + 14395, + 14395, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14396, + 14396, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14397, + 14397, + null + ], + [ + "ident-token", + "flex", + 14398, + 14401, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14402, + 14402, + null + ], + [ + "number-token", + "0", + 14403, + 14403, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14404, + 14404, + null + ], + [ + "number-token", + "0", + 14405, + 14405, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14406, + 14406, + null + ], + [ + "ident-token", + "auto", + 14407, + 14410, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14411, + 14411, + null + ], + [ + "ident-token", + "width", + 14412, + 14416, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14417, + 14417, + null + ], + [ + "percentage-token", + "33.3333333333%", + 14418, + 14431, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 14432, + 14432, + null + ], + [ + "delim-token", + ".", + 14433, + 14433, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-4", + 14434, + 14446, + { + "value": "row-cols-lg-4" + } + ], + [ + "delim-token", + ">", + 14447, + 14447, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14448, + 14448, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14449, + 14449, + null + ], + [ + "ident-token", + "flex", + 14450, + 14453, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14454, + 14454, + null + ], + [ + "number-token", + "0", + 14455, + 14455, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14456, + 14456, + null + ], + [ + "number-token", + "0", + 14457, + 14457, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14458, + 14458, + null + ], + [ + "ident-token", + "auto", + 14459, + 14462, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14463, + 14463, + null + ], + [ + "ident-token", + "width", + 14464, + 14468, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14469, + 14469, + null + ], + [ + "percentage-token", + "25%", + 14470, + 14472, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 14473, + 14473, + null + ], + [ + "delim-token", + ".", + 14474, + 14474, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-5", + 14475, + 14487, + { + "value": "row-cols-lg-5" + } + ], + [ + "delim-token", + ">", + 14488, + 14488, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14489, + 14489, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14490, + 14490, + null + ], + [ + "ident-token", + "flex", + 14491, + 14494, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14495, + 14495, + null + ], + [ + "number-token", + "0", + 14496, + 14496, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14497, + 14497, + null + ], + [ + "number-token", + "0", + 14498, + 14498, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14499, + 14499, + null + ], + [ + "ident-token", + "auto", + 14500, + 14503, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14504, + 14504, + null + ], + [ + "ident-token", + "width", + 14505, + 14509, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14510, + 14510, + null + ], + [ + "percentage-token", + "20%", + 14511, + 14513, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 14514, + 14514, + null + ], + [ + "delim-token", + ".", + 14515, + 14515, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-lg-6", + 14516, + 14528, + { + "value": "row-cols-lg-6" + } + ], + [ + "delim-token", + ">", + 14529, + 14529, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 14530, + 14530, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 14531, + 14531, + null + ], + [ + "ident-token", + "flex", + 14532, + 14535, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14536, + 14536, + null + ], + [ + "number-token", + "0", + 14537, + 14537, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14538, + 14538, + null + ], + [ + "number-token", + "0", + 14539, + 14539, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14540, + 14540, + null + ], + [ + "ident-token", + "auto", + 14541, + 14544, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14545, + 14545, + null + ], + [ + "ident-token", + "width", + 14546, + 14550, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14551, + 14551, + null + ], + [ + "percentage-token", + "16.6666666667%", + 14552, + 14565, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 14566, + 14566, + null + ], + [ + "delim-token", + ".", + 14567, + 14567, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-auto", + 14568, + 14578, + { + "value": "col-lg-auto" + } + ], + [ + "{-token", + "{", + 14579, + 14579, + null + ], + [ + "ident-token", + "flex", + 14580, + 14583, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14584, + 14584, + null + ], + [ + "number-token", + "0", + 14585, + 14585, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14586, + 14586, + null + ], + [ + "number-token", + "0", + 14587, + 14587, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14588, + 14588, + null + ], + [ + "ident-token", + "auto", + 14589, + 14592, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14593, + 14593, + null + ], + [ + "ident-token", + "width", + 14594, + 14598, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14599, + 14599, + null + ], + [ + "ident-token", + "auto", + 14600, + 14603, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 14604, + 14604, + null + ], + [ + "delim-token", + ".", + 14605, + 14605, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-1", + 14606, + 14613, + { + "value": "col-lg-1" + } + ], + [ + "{-token", + "{", + 14614, + 14614, + null + ], + [ + "ident-token", + "flex", + 14615, + 14618, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14619, + 14619, + null + ], + [ + "number-token", + "0", + 14620, + 14620, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14621, + 14621, + null + ], + [ + "number-token", + "0", + 14622, + 14622, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14623, + 14623, + null + ], + [ + "ident-token", + "auto", + 14624, + 14627, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14628, + 14628, + null + ], + [ + "ident-token", + "width", + 14629, + 14633, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14634, + 14634, + null + ], + [ + "percentage-token", + "8.33333333%", + 14635, + 14645, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 14646, + 14646, + null + ], + [ + "delim-token", + ".", + 14647, + 14647, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-2", + 14648, + 14655, + { + "value": "col-lg-2" + } + ], + [ + "{-token", + "{", + 14656, + 14656, + null + ], + [ + "ident-token", + "flex", + 14657, + 14660, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14661, + 14661, + null + ], + [ + "number-token", + "0", + 14662, + 14662, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14663, + 14663, + null + ], + [ + "number-token", + "0", + 14664, + 14664, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14665, + 14665, + null + ], + [ + "ident-token", + "auto", + 14666, + 14669, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14670, + 14670, + null + ], + [ + "ident-token", + "width", + 14671, + 14675, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14676, + 14676, + null + ], + [ + "percentage-token", + "16.66666667%", + 14677, + 14688, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 14689, + 14689, + null + ], + [ + "delim-token", + ".", + 14690, + 14690, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-3", + 14691, + 14698, + { + "value": "col-lg-3" + } + ], + [ + "{-token", + "{", + 14699, + 14699, + null + ], + [ + "ident-token", + "flex", + 14700, + 14703, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14704, + 14704, + null + ], + [ + "number-token", + "0", + 14705, + 14705, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14706, + 14706, + null + ], + [ + "number-token", + "0", + 14707, + 14707, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14708, + 14708, + null + ], + [ + "ident-token", + "auto", + 14709, + 14712, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14713, + 14713, + null + ], + [ + "ident-token", + "width", + 14714, + 14718, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14719, + 14719, + null + ], + [ + "percentage-token", + "25%", + 14720, + 14722, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 14723, + 14723, + null + ], + [ + "delim-token", + ".", + 14724, + 14724, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-4", + 14725, + 14732, + { + "value": "col-lg-4" + } + ], + [ + "{-token", + "{", + 14733, + 14733, + null + ], + [ + "ident-token", + "flex", + 14734, + 14737, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14738, + 14738, + null + ], + [ + "number-token", + "0", + 14739, + 14739, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14740, + 14740, + null + ], + [ + "number-token", + "0", + 14741, + 14741, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14742, + 14742, + null + ], + [ + "ident-token", + "auto", + 14743, + 14746, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14747, + 14747, + null + ], + [ + "ident-token", + "width", + 14748, + 14752, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14753, + 14753, + null + ], + [ + "percentage-token", + "33.33333333%", + 14754, + 14765, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 14766, + 14766, + null + ], + [ + "delim-token", + ".", + 14767, + 14767, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-5", + 14768, + 14775, + { + "value": "col-lg-5" + } + ], + [ + "{-token", + "{", + 14776, + 14776, + null + ], + [ + "ident-token", + "flex", + 14777, + 14780, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14781, + 14781, + null + ], + [ + "number-token", + "0", + 14782, + 14782, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14783, + 14783, + null + ], + [ + "number-token", + "0", + 14784, + 14784, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14785, + 14785, + null + ], + [ + "ident-token", + "auto", + 14786, + 14789, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14790, + 14790, + null + ], + [ + "ident-token", + "width", + 14791, + 14795, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14796, + 14796, + null + ], + [ + "percentage-token", + "41.66666667%", + 14797, + 14808, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 14809, + 14809, + null + ], + [ + "delim-token", + ".", + 14810, + 14810, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-6", + 14811, + 14818, + { + "value": "col-lg-6" + } + ], + [ + "{-token", + "{", + 14819, + 14819, + null + ], + [ + "ident-token", + "flex", + 14820, + 14823, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14824, + 14824, + null + ], + [ + "number-token", + "0", + 14825, + 14825, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14826, + 14826, + null + ], + [ + "number-token", + "0", + 14827, + 14827, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14828, + 14828, + null + ], + [ + "ident-token", + "auto", + 14829, + 14832, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14833, + 14833, + null + ], + [ + "ident-token", + "width", + 14834, + 14838, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14839, + 14839, + null + ], + [ + "percentage-token", + "50%", + 14840, + 14842, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 14843, + 14843, + null + ], + [ + "delim-token", + ".", + 14844, + 14844, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-7", + 14845, + 14852, + { + "value": "col-lg-7" + } + ], + [ + "{-token", + "{", + 14853, + 14853, + null + ], + [ + "ident-token", + "flex", + 14854, + 14857, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14858, + 14858, + null + ], + [ + "number-token", + "0", + 14859, + 14859, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14860, + 14860, + null + ], + [ + "number-token", + "0", + 14861, + 14861, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14862, + 14862, + null + ], + [ + "ident-token", + "auto", + 14863, + 14866, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14867, + 14867, + null + ], + [ + "ident-token", + "width", + 14868, + 14872, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14873, + 14873, + null + ], + [ + "percentage-token", + "58.33333333%", + 14874, + 14885, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 14886, + 14886, + null + ], + [ + "delim-token", + ".", + 14887, + 14887, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-8", + 14888, + 14895, + { + "value": "col-lg-8" + } + ], + [ + "{-token", + "{", + 14896, + 14896, + null + ], + [ + "ident-token", + "flex", + 14897, + 14900, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14901, + 14901, + null + ], + [ + "number-token", + "0", + 14902, + 14902, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14903, + 14903, + null + ], + [ + "number-token", + "0", + 14904, + 14904, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14905, + 14905, + null + ], + [ + "ident-token", + "auto", + 14906, + 14909, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14910, + 14910, + null + ], + [ + "ident-token", + "width", + 14911, + 14915, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14916, + 14916, + null + ], + [ + "percentage-token", + "66.66666667%", + 14917, + 14928, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 14929, + 14929, + null + ], + [ + "delim-token", + ".", + 14930, + 14930, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-9", + 14931, + 14938, + { + "value": "col-lg-9" + } + ], + [ + "{-token", + "{", + 14939, + 14939, + null + ], + [ + "ident-token", + "flex", + 14940, + 14943, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14944, + 14944, + null + ], + [ + "number-token", + "0", + 14945, + 14945, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14946, + 14946, + null + ], + [ + "number-token", + "0", + 14947, + 14947, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14948, + 14948, + null + ], + [ + "ident-token", + "auto", + 14949, + 14952, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14953, + 14953, + null + ], + [ + "ident-token", + "width", + 14954, + 14958, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14959, + 14959, + null + ], + [ + "percentage-token", + "75%", + 14960, + 14962, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 14963, + 14963, + null + ], + [ + "delim-token", + ".", + 14964, + 14964, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-10", + 14965, + 14973, + { + "value": "col-lg-10" + } + ], + [ + "{-token", + "{", + 14974, + 14974, + null + ], + [ + "ident-token", + "flex", + 14975, + 14978, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 14979, + 14979, + null + ], + [ + "number-token", + "0", + 14980, + 14980, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14981, + 14981, + null + ], + [ + "number-token", + "0", + 14982, + 14982, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 14983, + 14983, + null + ], + [ + "ident-token", + "auto", + 14984, + 14987, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 14988, + 14988, + null + ], + [ + "ident-token", + "width", + 14989, + 14993, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 14994, + 14994, + null + ], + [ + "percentage-token", + "83.33333333%", + 14995, + 15006, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 15007, + 15007, + null + ], + [ + "delim-token", + ".", + 15008, + 15008, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-11", + 15009, + 15017, + { + "value": "col-lg-11" + } + ], + [ + "{-token", + "{", + 15018, + 15018, + null + ], + [ + "ident-token", + "flex", + 15019, + 15022, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 15023, + 15023, + null + ], + [ + "number-token", + "0", + 15024, + 15024, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15025, + 15025, + null + ], + [ + "number-token", + "0", + 15026, + 15026, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15027, + 15027, + null + ], + [ + "ident-token", + "auto", + 15028, + 15031, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 15032, + 15032, + null + ], + [ + "ident-token", + "width", + 15033, + 15037, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 15038, + 15038, + null + ], + [ + "percentage-token", + "91.66666667%", + 15039, + 15050, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 15051, + 15051, + null + ], + [ + "delim-token", + ".", + 15052, + 15052, + { + "value": "." + } + ], + [ + "ident-token", + "col-lg-12", + 15053, + 15061, + { + "value": "col-lg-12" + } + ], + [ + "{-token", + "{", + 15062, + 15062, + null + ], + [ + "ident-token", + "flex", + 15063, + 15066, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 15067, + 15067, + null + ], + [ + "number-token", + "0", + 15068, + 15068, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15069, + 15069, + null + ], + [ + "number-token", + "0", + 15070, + 15070, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15071, + 15071, + null + ], + [ + "ident-token", + "auto", + 15072, + 15075, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 15076, + 15076, + null + ], + [ + "ident-token", + "width", + 15077, + 15081, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 15082, + 15082, + null + ], + [ + "percentage-token", + "100%", + 15083, + 15086, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 15087, + 15087, + null + ], + [ + "delim-token", + ".", + 15088, + 15088, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-0", + 15089, + 15099, + { + "value": "offset-lg-0" + } + ], + [ + "{-token", + "{", + 15100, + 15100, + null + ], + [ + "ident-token", + "margin-left", + 15101, + 15111, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15112, + 15112, + null + ], + [ + "number-token", + "0", + 15113, + 15113, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 15114, + 15114, + null + ], + [ + "delim-token", + ".", + 15115, + 15115, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-1", + 15116, + 15126, + { + "value": "offset-lg-1" + } + ], + [ + "{-token", + "{", + 15127, + 15127, + null + ], + [ + "ident-token", + "margin-left", + 15128, + 15138, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15139, + 15139, + null + ], + [ + "percentage-token", + "8.33333333%", + 15140, + 15150, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 15151, + 15151, + null + ], + [ + "delim-token", + ".", + 15152, + 15152, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-2", + 15153, + 15163, + { + "value": "offset-lg-2" + } + ], + [ + "{-token", + "{", + 15164, + 15164, + null + ], + [ + "ident-token", + "margin-left", + 15165, + 15175, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15176, + 15176, + null + ], + [ + "percentage-token", + "16.66666667%", + 15177, + 15188, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 15189, + 15189, + null + ], + [ + "delim-token", + ".", + 15190, + 15190, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-3", + 15191, + 15201, + { + "value": "offset-lg-3" + } + ], + [ + "{-token", + "{", + 15202, + 15202, + null + ], + [ + "ident-token", + "margin-left", + 15203, + 15213, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15214, + 15214, + null + ], + [ + "percentage-token", + "25%", + 15215, + 15217, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 15218, + 15218, + null + ], + [ + "delim-token", + ".", + 15219, + 15219, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-4", + 15220, + 15230, + { + "value": "offset-lg-4" + } + ], + [ + "{-token", + "{", + 15231, + 15231, + null + ], + [ + "ident-token", + "margin-left", + 15232, + 15242, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15243, + 15243, + null + ], + [ + "percentage-token", + "33.33333333%", + 15244, + 15255, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 15256, + 15256, + null + ], + [ + "delim-token", + ".", + 15257, + 15257, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-5", + 15258, + 15268, + { + "value": "offset-lg-5" + } + ], + [ + "{-token", + "{", + 15269, + 15269, + null + ], + [ + "ident-token", + "margin-left", + 15270, + 15280, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15281, + 15281, + null + ], + [ + "percentage-token", + "41.66666667%", + 15282, + 15293, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 15294, + 15294, + null + ], + [ + "delim-token", + ".", + 15295, + 15295, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-6", + 15296, + 15306, + { + "value": "offset-lg-6" + } + ], + [ + "{-token", + "{", + 15307, + 15307, + null + ], + [ + "ident-token", + "margin-left", + 15308, + 15318, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15319, + 15319, + null + ], + [ + "percentage-token", + "50%", + 15320, + 15322, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 15323, + 15323, + null + ], + [ + "delim-token", + ".", + 15324, + 15324, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-7", + 15325, + 15335, + { + "value": "offset-lg-7" + } + ], + [ + "{-token", + "{", + 15336, + 15336, + null + ], + [ + "ident-token", + "margin-left", + 15337, + 15347, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15348, + 15348, + null + ], + [ + "percentage-token", + "58.33333333%", + 15349, + 15360, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 15361, + 15361, + null + ], + [ + "delim-token", + ".", + 15362, + 15362, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-8", + 15363, + 15373, + { + "value": "offset-lg-8" + } + ], + [ + "{-token", + "{", + 15374, + 15374, + null + ], + [ + "ident-token", + "margin-left", + 15375, + 15385, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15386, + 15386, + null + ], + [ + "percentage-token", + "66.66666667%", + 15387, + 15398, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 15399, + 15399, + null + ], + [ + "delim-token", + ".", + 15400, + 15400, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-9", + 15401, + 15411, + { + "value": "offset-lg-9" + } + ], + [ + "{-token", + "{", + 15412, + 15412, + null + ], + [ + "ident-token", + "margin-left", + 15413, + 15423, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15424, + 15424, + null + ], + [ + "percentage-token", + "75%", + 15425, + 15427, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 15428, + 15428, + null + ], + [ + "delim-token", + ".", + 15429, + 15429, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-10", + 15430, + 15441, + { + "value": "offset-lg-10" + } + ], + [ + "{-token", + "{", + 15442, + 15442, + null + ], + [ + "ident-token", + "margin-left", + 15443, + 15453, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15454, + 15454, + null + ], + [ + "percentage-token", + "83.33333333%", + 15455, + 15466, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 15467, + 15467, + null + ], + [ + "delim-token", + ".", + 15468, + 15468, + { + "value": "." + } + ], + [ + "ident-token", + "offset-lg-11", + 15469, + 15480, + { + "value": "offset-lg-11" + } + ], + [ + "{-token", + "{", + 15481, + 15481, + null + ], + [ + "ident-token", + "margin-left", + 15482, + 15492, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 15493, + 15493, + null + ], + [ + "percentage-token", + "91.66666667%", + 15494, + 15505, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 15506, + 15506, + null + ], + [ + "delim-token", + ".", + 15507, + 15507, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-0", + 15508, + 15513, + { + "value": "g-lg-0" + } + ], + [ + "comma-token", + ",", + 15514, + 15514, + null + ], + [ + "delim-token", + ".", + 15515, + 15515, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-0", + 15516, + 15522, + { + "value": "gx-lg-0" + } + ], + [ + "{-token", + "{", + 15523, + 15523, + null + ], + [ + "delim-token", + "-", + 15524, + 15524, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15525, + 15525, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15526, + 15536, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15537, + 15537, + null + ], + [ + "number-token", + "0", + 15538, + 15538, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 15539, + 15539, + null + ], + [ + "delim-token", + ".", + 15540, + 15540, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-0", + 15541, + 15546, + { + "value": "g-lg-0" + } + ], + [ + "comma-token", + ",", + 15547, + 15547, + null + ], + [ + "delim-token", + ".", + 15548, + 15548, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-0", + 15549, + 15555, + { + "value": "gy-lg-0" + } + ], + [ + "{-token", + "{", + 15556, + 15556, + null + ], + [ + "delim-token", + "-", + 15557, + 15557, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15558, + 15558, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15559, + 15569, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15570, + 15570, + null + ], + [ + "number-token", + "0", + 15571, + 15571, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 15572, + 15572, + null + ], + [ + "delim-token", + ".", + 15573, + 15573, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-1", + 15574, + 15579, + { + "value": "g-lg-1" + } + ], + [ + "comma-token", + ",", + 15580, + 15580, + null + ], + [ + "delim-token", + ".", + 15581, + 15581, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-1", + 15582, + 15588, + { + "value": "gx-lg-1" + } + ], + [ + "{-token", + "{", + 15589, + 15589, + null + ], + [ + "delim-token", + "-", + 15590, + 15590, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15591, + 15591, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15592, + 15602, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15603, + 15603, + null + ], + [ + "dimension-token", + "0.25rem", + 15604, + 15610, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15611, + 15611, + null + ], + [ + "delim-token", + ".", + 15612, + 15612, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-1", + 15613, + 15618, + { + "value": "g-lg-1" + } + ], + [ + "comma-token", + ",", + 15619, + 15619, + null + ], + [ + "delim-token", + ".", + 15620, + 15620, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-1", + 15621, + 15627, + { + "value": "gy-lg-1" + } + ], + [ + "{-token", + "{", + 15628, + 15628, + null + ], + [ + "delim-token", + "-", + 15629, + 15629, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15630, + 15630, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15631, + 15641, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15642, + 15642, + null + ], + [ + "dimension-token", + "0.25rem", + 15643, + 15649, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15650, + 15650, + null + ], + [ + "delim-token", + ".", + 15651, + 15651, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-2", + 15652, + 15657, + { + "value": "g-lg-2" + } + ], + [ + "comma-token", + ",", + 15658, + 15658, + null + ], + [ + "delim-token", + ".", + 15659, + 15659, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-2", + 15660, + 15666, + { + "value": "gx-lg-2" + } + ], + [ + "{-token", + "{", + 15667, + 15667, + null + ], + [ + "delim-token", + "-", + 15668, + 15668, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15669, + 15669, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15670, + 15680, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15681, + 15681, + null + ], + [ + "dimension-token", + "0.5rem", + 15682, + 15687, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15688, + 15688, + null + ], + [ + "delim-token", + ".", + 15689, + 15689, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-2", + 15690, + 15695, + { + "value": "g-lg-2" + } + ], + [ + "comma-token", + ",", + 15696, + 15696, + null + ], + [ + "delim-token", + ".", + 15697, + 15697, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-2", + 15698, + 15704, + { + "value": "gy-lg-2" + } + ], + [ + "{-token", + "{", + 15705, + 15705, + null + ], + [ + "delim-token", + "-", + 15706, + 15706, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15707, + 15707, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15708, + 15718, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15719, + 15719, + null + ], + [ + "dimension-token", + "0.5rem", + 15720, + 15725, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15726, + 15726, + null + ], + [ + "delim-token", + ".", + 15727, + 15727, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-3", + 15728, + 15733, + { + "value": "g-lg-3" + } + ], + [ + "comma-token", + ",", + 15734, + 15734, + null + ], + [ + "delim-token", + ".", + 15735, + 15735, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-3", + 15736, + 15742, + { + "value": "gx-lg-3" + } + ], + [ + "{-token", + "{", + 15743, + 15743, + null + ], + [ + "delim-token", + "-", + 15744, + 15744, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15745, + 15745, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15746, + 15756, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15757, + 15757, + null + ], + [ + "dimension-token", + "1rem", + 15758, + 15761, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15762, + 15762, + null + ], + [ + "delim-token", + ".", + 15763, + 15763, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-3", + 15764, + 15769, + { + "value": "g-lg-3" + } + ], + [ + "comma-token", + ",", + 15770, + 15770, + null + ], + [ + "delim-token", + ".", + 15771, + 15771, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-3", + 15772, + 15778, + { + "value": "gy-lg-3" + } + ], + [ + "{-token", + "{", + 15779, + 15779, + null + ], + [ + "delim-token", + "-", + 15780, + 15780, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15781, + 15781, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15782, + 15792, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15793, + 15793, + null + ], + [ + "dimension-token", + "1rem", + 15794, + 15797, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15798, + 15798, + null + ], + [ + "delim-token", + ".", + 15799, + 15799, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-4", + 15800, + 15805, + { + "value": "g-lg-4" + } + ], + [ + "comma-token", + ",", + 15806, + 15806, + null + ], + [ + "delim-token", + ".", + 15807, + 15807, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-4", + 15808, + 15814, + { + "value": "gx-lg-4" + } + ], + [ + "{-token", + "{", + 15815, + 15815, + null + ], + [ + "delim-token", + "-", + 15816, + 15816, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15817, + 15817, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15818, + 15828, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15829, + 15829, + null + ], + [ + "dimension-token", + "1.5rem", + 15830, + 15835, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15836, + 15836, + null + ], + [ + "delim-token", + ".", + 15837, + 15837, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-4", + 15838, + 15843, + { + "value": "g-lg-4" + } + ], + [ + "comma-token", + ",", + 15844, + 15844, + null + ], + [ + "delim-token", + ".", + 15845, + 15845, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-4", + 15846, + 15852, + { + "value": "gy-lg-4" + } + ], + [ + "{-token", + "{", + 15853, + 15853, + null + ], + [ + "delim-token", + "-", + 15854, + 15854, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15855, + 15855, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15856, + 15866, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15867, + 15867, + null + ], + [ + "dimension-token", + "1.5rem", + 15868, + 15873, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15874, + 15874, + null + ], + [ + "delim-token", + ".", + 15875, + 15875, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-5", + 15876, + 15881, + { + "value": "g-lg-5" + } + ], + [ + "comma-token", + ",", + 15882, + 15882, + null + ], + [ + "delim-token", + ".", + 15883, + 15883, + { + "value": "." + } + ], + [ + "ident-token", + "gx-lg-5", + 15884, + 15890, + { + "value": "gx-lg-5" + } + ], + [ + "{-token", + "{", + 15891, + 15891, + null + ], + [ + "delim-token", + "-", + 15892, + 15892, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15893, + 15893, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 15894, + 15904, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 15905, + 15905, + null + ], + [ + "dimension-token", + "3rem", + 15906, + 15909, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15910, + 15910, + null + ], + [ + "delim-token", + ".", + 15911, + 15911, + { + "value": "." + } + ], + [ + "ident-token", + "g-lg-5", + 15912, + 15917, + { + "value": "g-lg-5" + } + ], + [ + "comma-token", + ",", + 15918, + 15918, + null + ], + [ + "delim-token", + ".", + 15919, + 15919, + { + "value": "." + } + ], + [ + "ident-token", + "gy-lg-5", + 15920, + 15926, + { + "value": "gy-lg-5" + } + ], + [ + "{-token", + "{", + 15927, + 15927, + null + ], + [ + "delim-token", + "-", + 15928, + 15928, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 15929, + 15929, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 15930, + 15940, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 15941, + 15941, + null + ], + [ + "dimension-token", + "3rem", + 15942, + 15945, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 15946, + 15946, + null + ], + [ + "}-token", + "}", + 15947, + 15947, + null + ], + [ + "at-keyword-token", + "@media", + 15948, + 15953, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 15954, + 15954, + null + ], + [ + "(-token", + "(", + 15955, + 15955, + null + ], + [ + "ident-token", + "min-width", + 15956, + 15964, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 15965, + 15965, + null + ], + [ + "dimension-token", + "1200px", + 15966, + 15971, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 15972, + 15972, + null + ], + [ + "{-token", + "{", + 15973, + 15973, + null + ], + [ + "delim-token", + ".", + 15974, + 15974, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl", + 15975, + 15980, + { + "value": "col-xl" + } + ], + [ + "{-token", + "{", + 15981, + 15981, + null + ], + [ + "ident-token", + "flex", + 15982, + 15985, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 15986, + 15986, + null + ], + [ + "number-token", + "1", + 15987, + 15987, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15988, + 15988, + null + ], + [ + "number-token", + "0", + 15989, + 15989, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 15990, + 15990, + null + ], + [ + "percentage-token", + "0%", + 15991, + 15992, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 15993, + 15993, + null + ], + [ + "delim-token", + ".", + 15994, + 15994, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-auto", + 15995, + 16010, + { + "value": "row-cols-xl-auto" + } + ], + [ + "delim-token", + ">", + 16011, + 16011, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16012, + 16012, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16013, + 16013, + null + ], + [ + "ident-token", + "flex", + 16014, + 16017, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16018, + 16018, + null + ], + [ + "number-token", + "0", + 16019, + 16019, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16020, + 16020, + null + ], + [ + "number-token", + "0", + 16021, + 16021, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16022, + 16022, + null + ], + [ + "ident-token", + "auto", + 16023, + 16026, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16027, + 16027, + null + ], + [ + "ident-token", + "width", + 16028, + 16032, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16033, + 16033, + null + ], + [ + "ident-token", + "auto", + 16034, + 16037, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 16038, + 16038, + null + ], + [ + "delim-token", + ".", + 16039, + 16039, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-1", + 16040, + 16052, + { + "value": "row-cols-xl-1" + } + ], + [ + "delim-token", + ">", + 16053, + 16053, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16054, + 16054, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16055, + 16055, + null + ], + [ + "ident-token", + "flex", + 16056, + 16059, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16060, + 16060, + null + ], + [ + "number-token", + "0", + 16061, + 16061, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16062, + 16062, + null + ], + [ + "number-token", + "0", + 16063, + 16063, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16064, + 16064, + null + ], + [ + "ident-token", + "auto", + 16065, + 16068, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16069, + 16069, + null + ], + [ + "ident-token", + "width", + 16070, + 16074, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16075, + 16075, + null + ], + [ + "percentage-token", + "100%", + 16076, + 16079, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 16080, + 16080, + null + ], + [ + "delim-token", + ".", + 16081, + 16081, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-2", + 16082, + 16094, + { + "value": "row-cols-xl-2" + } + ], + [ + "delim-token", + ">", + 16095, + 16095, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16096, + 16096, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16097, + 16097, + null + ], + [ + "ident-token", + "flex", + 16098, + 16101, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16102, + 16102, + null + ], + [ + "number-token", + "0", + 16103, + 16103, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16104, + 16104, + null + ], + [ + "number-token", + "0", + 16105, + 16105, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16106, + 16106, + null + ], + [ + "ident-token", + "auto", + 16107, + 16110, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16111, + 16111, + null + ], + [ + "ident-token", + "width", + 16112, + 16116, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16117, + 16117, + null + ], + [ + "percentage-token", + "50%", + 16118, + 16120, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 16121, + 16121, + null + ], + [ + "delim-token", + ".", + 16122, + 16122, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-3", + 16123, + 16135, + { + "value": "row-cols-xl-3" + } + ], + [ + "delim-token", + ">", + 16136, + 16136, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16137, + 16137, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16138, + 16138, + null + ], + [ + "ident-token", + "flex", + 16139, + 16142, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16143, + 16143, + null + ], + [ + "number-token", + "0", + 16144, + 16144, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16145, + 16145, + null + ], + [ + "number-token", + "0", + 16146, + 16146, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16147, + 16147, + null + ], + [ + "ident-token", + "auto", + 16148, + 16151, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16152, + 16152, + null + ], + [ + "ident-token", + "width", + 16153, + 16157, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16158, + 16158, + null + ], + [ + "percentage-token", + "33.3333333333%", + 16159, + 16172, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 16173, + 16173, + null + ], + [ + "delim-token", + ".", + 16174, + 16174, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-4", + 16175, + 16187, + { + "value": "row-cols-xl-4" + } + ], + [ + "delim-token", + ">", + 16188, + 16188, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16189, + 16189, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16190, + 16190, + null + ], + [ + "ident-token", + "flex", + 16191, + 16194, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16195, + 16195, + null + ], + [ + "number-token", + "0", + 16196, + 16196, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16197, + 16197, + null + ], + [ + "number-token", + "0", + 16198, + 16198, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16199, + 16199, + null + ], + [ + "ident-token", + "auto", + 16200, + 16203, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16204, + 16204, + null + ], + [ + "ident-token", + "width", + 16205, + 16209, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16210, + 16210, + null + ], + [ + "percentage-token", + "25%", + 16211, + 16213, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 16214, + 16214, + null + ], + [ + "delim-token", + ".", + 16215, + 16215, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-5", + 16216, + 16228, + { + "value": "row-cols-xl-5" + } + ], + [ + "delim-token", + ">", + 16229, + 16229, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16230, + 16230, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16231, + 16231, + null + ], + [ + "ident-token", + "flex", + 16232, + 16235, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16236, + 16236, + null + ], + [ + "number-token", + "0", + 16237, + 16237, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16238, + 16238, + null + ], + [ + "number-token", + "0", + 16239, + 16239, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16240, + 16240, + null + ], + [ + "ident-token", + "auto", + 16241, + 16244, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16245, + 16245, + null + ], + [ + "ident-token", + "width", + 16246, + 16250, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16251, + 16251, + null + ], + [ + "percentage-token", + "20%", + 16252, + 16254, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 16255, + 16255, + null + ], + [ + "delim-token", + ".", + 16256, + 16256, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xl-6", + 16257, + 16269, + { + "value": "row-cols-xl-6" + } + ], + [ + "delim-token", + ">", + 16270, + 16270, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 16271, + 16271, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 16272, + 16272, + null + ], + [ + "ident-token", + "flex", + 16273, + 16276, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16277, + 16277, + null + ], + [ + "number-token", + "0", + 16278, + 16278, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16279, + 16279, + null + ], + [ + "number-token", + "0", + 16280, + 16280, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16281, + 16281, + null + ], + [ + "ident-token", + "auto", + 16282, + 16285, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16286, + 16286, + null + ], + [ + "ident-token", + "width", + 16287, + 16291, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16292, + 16292, + null + ], + [ + "percentage-token", + "16.6666666667%", + 16293, + 16306, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 16307, + 16307, + null + ], + [ + "delim-token", + ".", + 16308, + 16308, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-auto", + 16309, + 16319, + { + "value": "col-xl-auto" + } + ], + [ + "{-token", + "{", + 16320, + 16320, + null + ], + [ + "ident-token", + "flex", + 16321, + 16324, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16325, + 16325, + null + ], + [ + "number-token", + "0", + 16326, + 16326, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16327, + 16327, + null + ], + [ + "number-token", + "0", + 16328, + 16328, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16329, + 16329, + null + ], + [ + "ident-token", + "auto", + 16330, + 16333, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16334, + 16334, + null + ], + [ + "ident-token", + "width", + 16335, + 16339, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16340, + 16340, + null + ], + [ + "ident-token", + "auto", + 16341, + 16344, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 16345, + 16345, + null + ], + [ + "delim-token", + ".", + 16346, + 16346, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-1", + 16347, + 16354, + { + "value": "col-xl-1" + } + ], + [ + "{-token", + "{", + 16355, + 16355, + null + ], + [ + "ident-token", + "flex", + 16356, + 16359, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16360, + 16360, + null + ], + [ + "number-token", + "0", + 16361, + 16361, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16362, + 16362, + null + ], + [ + "number-token", + "0", + 16363, + 16363, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16364, + 16364, + null + ], + [ + "ident-token", + "auto", + 16365, + 16368, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16369, + 16369, + null + ], + [ + "ident-token", + "width", + 16370, + 16374, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16375, + 16375, + null + ], + [ + "percentage-token", + "8.33333333%", + 16376, + 16386, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 16387, + 16387, + null + ], + [ + "delim-token", + ".", + 16388, + 16388, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-2", + 16389, + 16396, + { + "value": "col-xl-2" + } + ], + [ + "{-token", + "{", + 16397, + 16397, + null + ], + [ + "ident-token", + "flex", + 16398, + 16401, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16402, + 16402, + null + ], + [ + "number-token", + "0", + 16403, + 16403, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16404, + 16404, + null + ], + [ + "number-token", + "0", + 16405, + 16405, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16406, + 16406, + null + ], + [ + "ident-token", + "auto", + 16407, + 16410, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16411, + 16411, + null + ], + [ + "ident-token", + "width", + 16412, + 16416, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16417, + 16417, + null + ], + [ + "percentage-token", + "16.66666667%", + 16418, + 16429, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 16430, + 16430, + null + ], + [ + "delim-token", + ".", + 16431, + 16431, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-3", + 16432, + 16439, + { + "value": "col-xl-3" + } + ], + [ + "{-token", + "{", + 16440, + 16440, + null + ], + [ + "ident-token", + "flex", + 16441, + 16444, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16445, + 16445, + null + ], + [ + "number-token", + "0", + 16446, + 16446, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16447, + 16447, + null + ], + [ + "number-token", + "0", + 16448, + 16448, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16449, + 16449, + null + ], + [ + "ident-token", + "auto", + 16450, + 16453, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16454, + 16454, + null + ], + [ + "ident-token", + "width", + 16455, + 16459, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16460, + 16460, + null + ], + [ + "percentage-token", + "25%", + 16461, + 16463, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 16464, + 16464, + null + ], + [ + "delim-token", + ".", + 16465, + 16465, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-4", + 16466, + 16473, + { + "value": "col-xl-4" + } + ], + [ + "{-token", + "{", + 16474, + 16474, + null + ], + [ + "ident-token", + "flex", + 16475, + 16478, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16479, + 16479, + null + ], + [ + "number-token", + "0", + 16480, + 16480, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16481, + 16481, + null + ], + [ + "number-token", + "0", + 16482, + 16482, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16483, + 16483, + null + ], + [ + "ident-token", + "auto", + 16484, + 16487, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16488, + 16488, + null + ], + [ + "ident-token", + "width", + 16489, + 16493, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16494, + 16494, + null + ], + [ + "percentage-token", + "33.33333333%", + 16495, + 16506, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 16507, + 16507, + null + ], + [ + "delim-token", + ".", + 16508, + 16508, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-5", + 16509, + 16516, + { + "value": "col-xl-5" + } + ], + [ + "{-token", + "{", + 16517, + 16517, + null + ], + [ + "ident-token", + "flex", + 16518, + 16521, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16522, + 16522, + null + ], + [ + "number-token", + "0", + 16523, + 16523, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16524, + 16524, + null + ], + [ + "number-token", + "0", + 16525, + 16525, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16526, + 16526, + null + ], + [ + "ident-token", + "auto", + 16527, + 16530, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16531, + 16531, + null + ], + [ + "ident-token", + "width", + 16532, + 16536, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16537, + 16537, + null + ], + [ + "percentage-token", + "41.66666667%", + 16538, + 16549, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 16550, + 16550, + null + ], + [ + "delim-token", + ".", + 16551, + 16551, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-6", + 16552, + 16559, + { + "value": "col-xl-6" + } + ], + [ + "{-token", + "{", + 16560, + 16560, + null + ], + [ + "ident-token", + "flex", + 16561, + 16564, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16565, + 16565, + null + ], + [ + "number-token", + "0", + 16566, + 16566, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16567, + 16567, + null + ], + [ + "number-token", + "0", + 16568, + 16568, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16569, + 16569, + null + ], + [ + "ident-token", + "auto", + 16570, + 16573, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16574, + 16574, + null + ], + [ + "ident-token", + "width", + 16575, + 16579, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16580, + 16580, + null + ], + [ + "percentage-token", + "50%", + 16581, + 16583, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 16584, + 16584, + null + ], + [ + "delim-token", + ".", + 16585, + 16585, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-7", + 16586, + 16593, + { + "value": "col-xl-7" + } + ], + [ + "{-token", + "{", + 16594, + 16594, + null + ], + [ + "ident-token", + "flex", + 16595, + 16598, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16599, + 16599, + null + ], + [ + "number-token", + "0", + 16600, + 16600, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16601, + 16601, + null + ], + [ + "number-token", + "0", + 16602, + 16602, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16603, + 16603, + null + ], + [ + "ident-token", + "auto", + 16604, + 16607, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16608, + 16608, + null + ], + [ + "ident-token", + "width", + 16609, + 16613, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16614, + 16614, + null + ], + [ + "percentage-token", + "58.33333333%", + 16615, + 16626, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 16627, + 16627, + null + ], + [ + "delim-token", + ".", + 16628, + 16628, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-8", + 16629, + 16636, + { + "value": "col-xl-8" + } + ], + [ + "{-token", + "{", + 16637, + 16637, + null + ], + [ + "ident-token", + "flex", + 16638, + 16641, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16642, + 16642, + null + ], + [ + "number-token", + "0", + 16643, + 16643, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16644, + 16644, + null + ], + [ + "number-token", + "0", + 16645, + 16645, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16646, + 16646, + null + ], + [ + "ident-token", + "auto", + 16647, + 16650, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16651, + 16651, + null + ], + [ + "ident-token", + "width", + 16652, + 16656, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16657, + 16657, + null + ], + [ + "percentage-token", + "66.66666667%", + 16658, + 16669, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 16670, + 16670, + null + ], + [ + "delim-token", + ".", + 16671, + 16671, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-9", + 16672, + 16679, + { + "value": "col-xl-9" + } + ], + [ + "{-token", + "{", + 16680, + 16680, + null + ], + [ + "ident-token", + "flex", + 16681, + 16684, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16685, + 16685, + null + ], + [ + "number-token", + "0", + 16686, + 16686, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16687, + 16687, + null + ], + [ + "number-token", + "0", + 16688, + 16688, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16689, + 16689, + null + ], + [ + "ident-token", + "auto", + 16690, + 16693, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16694, + 16694, + null + ], + [ + "ident-token", + "width", + 16695, + 16699, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16700, + 16700, + null + ], + [ + "percentage-token", + "75%", + 16701, + 16703, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 16704, + 16704, + null + ], + [ + "delim-token", + ".", + 16705, + 16705, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-10", + 16706, + 16714, + { + "value": "col-xl-10" + } + ], + [ + "{-token", + "{", + 16715, + 16715, + null + ], + [ + "ident-token", + "flex", + 16716, + 16719, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16720, + 16720, + null + ], + [ + "number-token", + "0", + 16721, + 16721, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16722, + 16722, + null + ], + [ + "number-token", + "0", + 16723, + 16723, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16724, + 16724, + null + ], + [ + "ident-token", + "auto", + 16725, + 16728, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16729, + 16729, + null + ], + [ + "ident-token", + "width", + 16730, + 16734, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16735, + 16735, + null + ], + [ + "percentage-token", + "83.33333333%", + 16736, + 16747, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 16748, + 16748, + null + ], + [ + "delim-token", + ".", + 16749, + 16749, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-11", + 16750, + 16758, + { + "value": "col-xl-11" + } + ], + [ + "{-token", + "{", + 16759, + 16759, + null + ], + [ + "ident-token", + "flex", + 16760, + 16763, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16764, + 16764, + null + ], + [ + "number-token", + "0", + 16765, + 16765, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16766, + 16766, + null + ], + [ + "number-token", + "0", + 16767, + 16767, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16768, + 16768, + null + ], + [ + "ident-token", + "auto", + 16769, + 16772, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16773, + 16773, + null + ], + [ + "ident-token", + "width", + 16774, + 16778, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16779, + 16779, + null + ], + [ + "percentage-token", + "91.66666667%", + 16780, + 16791, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 16792, + 16792, + null + ], + [ + "delim-token", + ".", + 16793, + 16793, + { + "value": "." + } + ], + [ + "ident-token", + "col-xl-12", + 16794, + 16802, + { + "value": "col-xl-12" + } + ], + [ + "{-token", + "{", + 16803, + 16803, + null + ], + [ + "ident-token", + "flex", + 16804, + 16807, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 16808, + 16808, + null + ], + [ + "number-token", + "0", + 16809, + 16809, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16810, + 16810, + null + ], + [ + "number-token", + "0", + 16811, + 16811, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 16812, + 16812, + null + ], + [ + "ident-token", + "auto", + 16813, + 16816, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 16817, + 16817, + null + ], + [ + "ident-token", + "width", + 16818, + 16822, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 16823, + 16823, + null + ], + [ + "percentage-token", + "100%", + 16824, + 16827, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 16828, + 16828, + null + ], + [ + "delim-token", + ".", + 16829, + 16829, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-0", + 16830, + 16840, + { + "value": "offset-xl-0" + } + ], + [ + "{-token", + "{", + 16841, + 16841, + null + ], + [ + "ident-token", + "margin-left", + 16842, + 16852, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 16853, + 16853, + null + ], + [ + "number-token", + "0", + 16854, + 16854, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 16855, + 16855, + null + ], + [ + "delim-token", + ".", + 16856, + 16856, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-1", + 16857, + 16867, + { + "value": "offset-xl-1" + } + ], + [ + "{-token", + "{", + 16868, + 16868, + null + ], + [ + "ident-token", + "margin-left", + 16869, + 16879, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 16880, + 16880, + null + ], + [ + "percentage-token", + "8.33333333%", + 16881, + 16891, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 16892, + 16892, + null + ], + [ + "delim-token", + ".", + 16893, + 16893, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-2", + 16894, + 16904, + { + "value": "offset-xl-2" + } + ], + [ + "{-token", + "{", + 16905, + 16905, + null + ], + [ + "ident-token", + "margin-left", + 16906, + 16916, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 16917, + 16917, + null + ], + [ + "percentage-token", + "16.66666667%", + 16918, + 16929, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 16930, + 16930, + null + ], + [ + "delim-token", + ".", + 16931, + 16931, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-3", + 16932, + 16942, + { + "value": "offset-xl-3" + } + ], + [ + "{-token", + "{", + 16943, + 16943, + null + ], + [ + "ident-token", + "margin-left", + 16944, + 16954, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 16955, + 16955, + null + ], + [ + "percentage-token", + "25%", + 16956, + 16958, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 16959, + 16959, + null + ], + [ + "delim-token", + ".", + 16960, + 16960, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-4", + 16961, + 16971, + { + "value": "offset-xl-4" + } + ], + [ + "{-token", + "{", + 16972, + 16972, + null + ], + [ + "ident-token", + "margin-left", + 16973, + 16983, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 16984, + 16984, + null + ], + [ + "percentage-token", + "33.33333333%", + 16985, + 16996, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 16997, + 16997, + null + ], + [ + "delim-token", + ".", + 16998, + 16998, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-5", + 16999, + 17009, + { + "value": "offset-xl-5" + } + ], + [ + "{-token", + "{", + 17010, + 17010, + null + ], + [ + "ident-token", + "margin-left", + 17011, + 17021, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17022, + 17022, + null + ], + [ + "percentage-token", + "41.66666667%", + 17023, + 17034, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 17035, + 17035, + null + ], + [ + "delim-token", + ".", + 17036, + 17036, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-6", + 17037, + 17047, + { + "value": "offset-xl-6" + } + ], + [ + "{-token", + "{", + 17048, + 17048, + null + ], + [ + "ident-token", + "margin-left", + 17049, + 17059, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17060, + 17060, + null + ], + [ + "percentage-token", + "50%", + 17061, + 17063, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 17064, + 17064, + null + ], + [ + "delim-token", + ".", + 17065, + 17065, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-7", + 17066, + 17076, + { + "value": "offset-xl-7" + } + ], + [ + "{-token", + "{", + 17077, + 17077, + null + ], + [ + "ident-token", + "margin-left", + 17078, + 17088, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17089, + 17089, + null + ], + [ + "percentage-token", + "58.33333333%", + 17090, + 17101, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 17102, + 17102, + null + ], + [ + "delim-token", + ".", + 17103, + 17103, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-8", + 17104, + 17114, + { + "value": "offset-xl-8" + } + ], + [ + "{-token", + "{", + 17115, + 17115, + null + ], + [ + "ident-token", + "margin-left", + 17116, + 17126, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17127, + 17127, + null + ], + [ + "percentage-token", + "66.66666667%", + 17128, + 17139, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 17140, + 17140, + null + ], + [ + "delim-token", + ".", + 17141, + 17141, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-9", + 17142, + 17152, + { + "value": "offset-xl-9" + } + ], + [ + "{-token", + "{", + 17153, + 17153, + null + ], + [ + "ident-token", + "margin-left", + 17154, + 17164, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17165, + 17165, + null + ], + [ + "percentage-token", + "75%", + 17166, + 17168, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 17169, + 17169, + null + ], + [ + "delim-token", + ".", + 17170, + 17170, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-10", + 17171, + 17182, + { + "value": "offset-xl-10" + } + ], + [ + "{-token", + "{", + 17183, + 17183, + null + ], + [ + "ident-token", + "margin-left", + 17184, + 17194, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17195, + 17195, + null + ], + [ + "percentage-token", + "83.33333333%", + 17196, + 17207, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 17208, + 17208, + null + ], + [ + "delim-token", + ".", + 17209, + 17209, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xl-11", + 17210, + 17221, + { + "value": "offset-xl-11" + } + ], + [ + "{-token", + "{", + 17222, + 17222, + null + ], + [ + "ident-token", + "margin-left", + 17223, + 17233, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 17234, + 17234, + null + ], + [ + "percentage-token", + "91.66666667%", + 17235, + 17246, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 17247, + 17247, + null + ], + [ + "delim-token", + ".", + 17248, + 17248, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-0", + 17249, + 17254, + { + "value": "g-xl-0" + } + ], + [ + "comma-token", + ",", + 17255, + 17255, + null + ], + [ + "delim-token", + ".", + 17256, + 17256, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-0", + 17257, + 17263, + { + "value": "gx-xl-0" + } + ], + [ + "{-token", + "{", + 17264, + 17264, + null + ], + [ + "delim-token", + "-", + 17265, + 17265, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17266, + 17266, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17267, + 17277, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17278, + 17278, + null + ], + [ + "number-token", + "0", + 17279, + 17279, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 17280, + 17280, + null + ], + [ + "delim-token", + ".", + 17281, + 17281, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-0", + 17282, + 17287, + { + "value": "g-xl-0" + } + ], + [ + "comma-token", + ",", + 17288, + 17288, + null + ], + [ + "delim-token", + ".", + 17289, + 17289, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-0", + 17290, + 17296, + { + "value": "gy-xl-0" + } + ], + [ + "{-token", + "{", + 17297, + 17297, + null + ], + [ + "delim-token", + "-", + 17298, + 17298, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17299, + 17299, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17300, + 17310, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17311, + 17311, + null + ], + [ + "number-token", + "0", + 17312, + 17312, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 17313, + 17313, + null + ], + [ + "delim-token", + ".", + 17314, + 17314, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-1", + 17315, + 17320, + { + "value": "g-xl-1" + } + ], + [ + "comma-token", + ",", + 17321, + 17321, + null + ], + [ + "delim-token", + ".", + 17322, + 17322, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-1", + 17323, + 17329, + { + "value": "gx-xl-1" + } + ], + [ + "{-token", + "{", + 17330, + 17330, + null + ], + [ + "delim-token", + "-", + 17331, + 17331, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17332, + 17332, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17333, + 17343, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17344, + 17344, + null + ], + [ + "dimension-token", + "0.25rem", + 17345, + 17351, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17352, + 17352, + null + ], + [ + "delim-token", + ".", + 17353, + 17353, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-1", + 17354, + 17359, + { + "value": "g-xl-1" + } + ], + [ + "comma-token", + ",", + 17360, + 17360, + null + ], + [ + "delim-token", + ".", + 17361, + 17361, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-1", + 17362, + 17368, + { + "value": "gy-xl-1" + } + ], + [ + "{-token", + "{", + 17369, + 17369, + null + ], + [ + "delim-token", + "-", + 17370, + 17370, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17371, + 17371, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17372, + 17382, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17383, + 17383, + null + ], + [ + "dimension-token", + "0.25rem", + 17384, + 17390, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17391, + 17391, + null + ], + [ + "delim-token", + ".", + 17392, + 17392, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-2", + 17393, + 17398, + { + "value": "g-xl-2" + } + ], + [ + "comma-token", + ",", + 17399, + 17399, + null + ], + [ + "delim-token", + ".", + 17400, + 17400, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-2", + 17401, + 17407, + { + "value": "gx-xl-2" + } + ], + [ + "{-token", + "{", + 17408, + 17408, + null + ], + [ + "delim-token", + "-", + 17409, + 17409, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17410, + 17410, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17411, + 17421, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17422, + 17422, + null + ], + [ + "dimension-token", + "0.5rem", + 17423, + 17428, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17429, + 17429, + null + ], + [ + "delim-token", + ".", + 17430, + 17430, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-2", + 17431, + 17436, + { + "value": "g-xl-2" + } + ], + [ + "comma-token", + ",", + 17437, + 17437, + null + ], + [ + "delim-token", + ".", + 17438, + 17438, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-2", + 17439, + 17445, + { + "value": "gy-xl-2" + } + ], + [ + "{-token", + "{", + 17446, + 17446, + null + ], + [ + "delim-token", + "-", + 17447, + 17447, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17448, + 17448, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17449, + 17459, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17460, + 17460, + null + ], + [ + "dimension-token", + "0.5rem", + 17461, + 17466, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17467, + 17467, + null + ], + [ + "delim-token", + ".", + 17468, + 17468, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-3", + 17469, + 17474, + { + "value": "g-xl-3" + } + ], + [ + "comma-token", + ",", + 17475, + 17475, + null + ], + [ + "delim-token", + ".", + 17476, + 17476, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-3", + 17477, + 17483, + { + "value": "gx-xl-3" + } + ], + [ + "{-token", + "{", + 17484, + 17484, + null + ], + [ + "delim-token", + "-", + 17485, + 17485, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17486, + 17486, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17487, + 17497, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17498, + 17498, + null + ], + [ + "dimension-token", + "1rem", + 17499, + 17502, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17503, + 17503, + null + ], + [ + "delim-token", + ".", + 17504, + 17504, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-3", + 17505, + 17510, + { + "value": "g-xl-3" + } + ], + [ + "comma-token", + ",", + 17511, + 17511, + null + ], + [ + "delim-token", + ".", + 17512, + 17512, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-3", + 17513, + 17519, + { + "value": "gy-xl-3" + } + ], + [ + "{-token", + "{", + 17520, + 17520, + null + ], + [ + "delim-token", + "-", + 17521, + 17521, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17522, + 17522, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17523, + 17533, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17534, + 17534, + null + ], + [ + "dimension-token", + "1rem", + 17535, + 17538, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17539, + 17539, + null + ], + [ + "delim-token", + ".", + 17540, + 17540, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-4", + 17541, + 17546, + { + "value": "g-xl-4" + } + ], + [ + "comma-token", + ",", + 17547, + 17547, + null + ], + [ + "delim-token", + ".", + 17548, + 17548, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-4", + 17549, + 17555, + { + "value": "gx-xl-4" + } + ], + [ + "{-token", + "{", + 17556, + 17556, + null + ], + [ + "delim-token", + "-", + 17557, + 17557, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17558, + 17558, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17559, + 17569, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17570, + 17570, + null + ], + [ + "dimension-token", + "1.5rem", + 17571, + 17576, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17577, + 17577, + null + ], + [ + "delim-token", + ".", + 17578, + 17578, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-4", + 17579, + 17584, + { + "value": "g-xl-4" + } + ], + [ + "comma-token", + ",", + 17585, + 17585, + null + ], + [ + "delim-token", + ".", + 17586, + 17586, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-4", + 17587, + 17593, + { + "value": "gy-xl-4" + } + ], + [ + "{-token", + "{", + 17594, + 17594, + null + ], + [ + "delim-token", + "-", + 17595, + 17595, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17596, + 17596, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17597, + 17607, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17608, + 17608, + null + ], + [ + "dimension-token", + "1.5rem", + 17609, + 17614, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17615, + 17615, + null + ], + [ + "delim-token", + ".", + 17616, + 17616, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-5", + 17617, + 17622, + { + "value": "g-xl-5" + } + ], + [ + "comma-token", + ",", + 17623, + 17623, + null + ], + [ + "delim-token", + ".", + 17624, + 17624, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xl-5", + 17625, + 17631, + { + "value": "gx-xl-5" + } + ], + [ + "{-token", + "{", + 17632, + 17632, + null + ], + [ + "delim-token", + "-", + 17633, + 17633, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17634, + 17634, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 17635, + 17645, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 17646, + 17646, + null + ], + [ + "dimension-token", + "3rem", + 17647, + 17650, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17651, + 17651, + null + ], + [ + "delim-token", + ".", + 17652, + 17652, + { + "value": "." + } + ], + [ + "ident-token", + "g-xl-5", + 17653, + 17658, + { + "value": "g-xl-5" + } + ], + [ + "comma-token", + ",", + 17659, + 17659, + null + ], + [ + "delim-token", + ".", + 17660, + 17660, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xl-5", + 17661, + 17667, + { + "value": "gy-xl-5" + } + ], + [ + "{-token", + "{", + 17668, + 17668, + null + ], + [ + "delim-token", + "-", + 17669, + 17669, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 17670, + 17670, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 17671, + 17681, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 17682, + 17682, + null + ], + [ + "dimension-token", + "3rem", + 17683, + 17686, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 17687, + 17687, + null + ], + [ + "}-token", + "}", + 17688, + 17688, + null + ], + [ + "at-keyword-token", + "@media", + 17689, + 17694, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 17695, + 17695, + null + ], + [ + "(-token", + "(", + 17696, + 17696, + null + ], + [ + "ident-token", + "min-width", + 17697, + 17705, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 17706, + 17706, + null + ], + [ + "dimension-token", + "1400px", + 17707, + 17712, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17713, + 17713, + null + ], + [ + "{-token", + "{", + 17714, + 17714, + null + ], + [ + "delim-token", + ".", + 17715, + 17715, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl", + 17716, + 17722, + { + "value": "col-xxl" + } + ], + [ + "{-token", + "{", + 17723, + 17723, + null + ], + [ + "ident-token", + "flex", + 17724, + 17727, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17728, + 17728, + null + ], + [ + "number-token", + "1", + 17729, + 17729, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17730, + 17730, + null + ], + [ + "number-token", + "0", + 17731, + 17731, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17732, + 17732, + null + ], + [ + "percentage-token", + "0%", + 17733, + 17734, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 17735, + 17735, + null + ], + [ + "delim-token", + ".", + 17736, + 17736, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-auto", + 17737, + 17753, + { + "value": "row-cols-xxl-auto" + } + ], + [ + "delim-token", + ">", + 17754, + 17754, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17755, + 17755, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17756, + 17756, + null + ], + [ + "ident-token", + "flex", + 17757, + 17760, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17761, + 17761, + null + ], + [ + "number-token", + "0", + 17762, + 17762, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17763, + 17763, + null + ], + [ + "number-token", + "0", + 17764, + 17764, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17765, + 17765, + null + ], + [ + "ident-token", + "auto", + 17766, + 17769, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17770, + 17770, + null + ], + [ + "ident-token", + "width", + 17771, + 17775, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17776, + 17776, + null + ], + [ + "ident-token", + "auto", + 17777, + 17780, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 17781, + 17781, + null + ], + [ + "delim-token", + ".", + 17782, + 17782, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-1", + 17783, + 17796, + { + "value": "row-cols-xxl-1" + } + ], + [ + "delim-token", + ">", + 17797, + 17797, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17798, + 17798, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17799, + 17799, + null + ], + [ + "ident-token", + "flex", + 17800, + 17803, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17804, + 17804, + null + ], + [ + "number-token", + "0", + 17805, + 17805, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17806, + 17806, + null + ], + [ + "number-token", + "0", + 17807, + 17807, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17808, + 17808, + null + ], + [ + "ident-token", + "auto", + 17809, + 17812, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17813, + 17813, + null + ], + [ + "ident-token", + "width", + 17814, + 17818, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17819, + 17819, + null + ], + [ + "percentage-token", + "100%", + 17820, + 17823, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 17824, + 17824, + null + ], + [ + "delim-token", + ".", + 17825, + 17825, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-2", + 17826, + 17839, + { + "value": "row-cols-xxl-2" + } + ], + [ + "delim-token", + ">", + 17840, + 17840, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17841, + 17841, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17842, + 17842, + null + ], + [ + "ident-token", + "flex", + 17843, + 17846, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17847, + 17847, + null + ], + [ + "number-token", + "0", + 17848, + 17848, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17849, + 17849, + null + ], + [ + "number-token", + "0", + 17850, + 17850, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17851, + 17851, + null + ], + [ + "ident-token", + "auto", + 17852, + 17855, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17856, + 17856, + null + ], + [ + "ident-token", + "width", + 17857, + 17861, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17862, + 17862, + null + ], + [ + "percentage-token", + "50%", + 17863, + 17865, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 17866, + 17866, + null + ], + [ + "delim-token", + ".", + 17867, + 17867, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-3", + 17868, + 17881, + { + "value": "row-cols-xxl-3" + } + ], + [ + "delim-token", + ">", + 17882, + 17882, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17883, + 17883, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17884, + 17884, + null + ], + [ + "ident-token", + "flex", + 17885, + 17888, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17889, + 17889, + null + ], + [ + "number-token", + "0", + 17890, + 17890, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17891, + 17891, + null + ], + [ + "number-token", + "0", + 17892, + 17892, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17893, + 17893, + null + ], + [ + "ident-token", + "auto", + 17894, + 17897, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17898, + 17898, + null + ], + [ + "ident-token", + "width", + 17899, + 17903, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17904, + 17904, + null + ], + [ + "percentage-token", + "33.3333333333%", + 17905, + 17918, + { + "value": 33.3333333333 + } + ], + [ + "}-token", + "}", + 17919, + 17919, + null + ], + [ + "delim-token", + ".", + 17920, + 17920, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-4", + 17921, + 17934, + { + "value": "row-cols-xxl-4" + } + ], + [ + "delim-token", + ">", + 17935, + 17935, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17936, + 17936, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17937, + 17937, + null + ], + [ + "ident-token", + "flex", + 17938, + 17941, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17942, + 17942, + null + ], + [ + "number-token", + "0", + 17943, + 17943, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17944, + 17944, + null + ], + [ + "number-token", + "0", + 17945, + 17945, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17946, + 17946, + null + ], + [ + "ident-token", + "auto", + 17947, + 17950, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17951, + 17951, + null + ], + [ + "ident-token", + "width", + 17952, + 17956, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17957, + 17957, + null + ], + [ + "percentage-token", + "25%", + 17958, + 17960, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 17961, + 17961, + null + ], + [ + "delim-token", + ".", + 17962, + 17962, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-5", + 17963, + 17976, + { + "value": "row-cols-xxl-5" + } + ], + [ + "delim-token", + ">", + 17977, + 17977, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 17978, + 17978, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 17979, + 17979, + null + ], + [ + "ident-token", + "flex", + 17980, + 17983, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 17984, + 17984, + null + ], + [ + "number-token", + "0", + 17985, + 17985, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17986, + 17986, + null + ], + [ + "number-token", + "0", + 17987, + 17987, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 17988, + 17988, + null + ], + [ + "ident-token", + "auto", + 17989, + 17992, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 17993, + 17993, + null + ], + [ + "ident-token", + "width", + 17994, + 17998, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 17999, + 17999, + null + ], + [ + "percentage-token", + "20%", + 18000, + 18002, + { + "value": 20 + } + ], + [ + "}-token", + "}", + 18003, + 18003, + null + ], + [ + "delim-token", + ".", + 18004, + 18004, + { + "value": "." + } + ], + [ + "ident-token", + "row-cols-xxl-6", + 18005, + 18018, + { + "value": "row-cols-xxl-6" + } + ], + [ + "delim-token", + ">", + 18019, + 18019, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 18020, + 18020, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 18021, + 18021, + null + ], + [ + "ident-token", + "flex", + 18022, + 18025, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18026, + 18026, + null + ], + [ + "number-token", + "0", + 18027, + 18027, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18028, + 18028, + null + ], + [ + "number-token", + "0", + 18029, + 18029, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18030, + 18030, + null + ], + [ + "ident-token", + "auto", + 18031, + 18034, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18035, + 18035, + null + ], + [ + "ident-token", + "width", + 18036, + 18040, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18041, + 18041, + null + ], + [ + "percentage-token", + "16.6666666667%", + 18042, + 18055, + { + "value": 16.6666666667 + } + ], + [ + "}-token", + "}", + 18056, + 18056, + null + ], + [ + "delim-token", + ".", + 18057, + 18057, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-auto", + 18058, + 18069, + { + "value": "col-xxl-auto" + } + ], + [ + "{-token", + "{", + 18070, + 18070, + null + ], + [ + "ident-token", + "flex", + 18071, + 18074, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18075, + 18075, + null + ], + [ + "number-token", + "0", + 18076, + 18076, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18077, + 18077, + null + ], + [ + "number-token", + "0", + 18078, + 18078, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18079, + 18079, + null + ], + [ + "ident-token", + "auto", + 18080, + 18083, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18084, + 18084, + null + ], + [ + "ident-token", + "width", + 18085, + 18089, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18090, + 18090, + null + ], + [ + "ident-token", + "auto", + 18091, + 18094, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 18095, + 18095, + null + ], + [ + "delim-token", + ".", + 18096, + 18096, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-1", + 18097, + 18105, + { + "value": "col-xxl-1" + } + ], + [ + "{-token", + "{", + 18106, + 18106, + null + ], + [ + "ident-token", + "flex", + 18107, + 18110, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18111, + 18111, + null + ], + [ + "number-token", + "0", + 18112, + 18112, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18113, + 18113, + null + ], + [ + "number-token", + "0", + 18114, + 18114, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18115, + 18115, + null + ], + [ + "ident-token", + "auto", + 18116, + 18119, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18120, + 18120, + null + ], + [ + "ident-token", + "width", + 18121, + 18125, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18126, + 18126, + null + ], + [ + "percentage-token", + "8.33333333%", + 18127, + 18137, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 18138, + 18138, + null + ], + [ + "delim-token", + ".", + 18139, + 18139, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-2", + 18140, + 18148, + { + "value": "col-xxl-2" + } + ], + [ + "{-token", + "{", + 18149, + 18149, + null + ], + [ + "ident-token", + "flex", + 18150, + 18153, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18154, + 18154, + null + ], + [ + "number-token", + "0", + 18155, + 18155, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18156, + 18156, + null + ], + [ + "number-token", + "0", + 18157, + 18157, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18158, + 18158, + null + ], + [ + "ident-token", + "auto", + 18159, + 18162, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18163, + 18163, + null + ], + [ + "ident-token", + "width", + 18164, + 18168, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18169, + 18169, + null + ], + [ + "percentage-token", + "16.66666667%", + 18170, + 18181, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 18182, + 18182, + null + ], + [ + "delim-token", + ".", + 18183, + 18183, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-3", + 18184, + 18192, + { + "value": "col-xxl-3" + } + ], + [ + "{-token", + "{", + 18193, + 18193, + null + ], + [ + "ident-token", + "flex", + 18194, + 18197, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18198, + 18198, + null + ], + [ + "number-token", + "0", + 18199, + 18199, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18200, + 18200, + null + ], + [ + "number-token", + "0", + 18201, + 18201, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18202, + 18202, + null + ], + [ + "ident-token", + "auto", + 18203, + 18206, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18207, + 18207, + null + ], + [ + "ident-token", + "width", + 18208, + 18212, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18213, + 18213, + null + ], + [ + "percentage-token", + "25%", + 18214, + 18216, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 18217, + 18217, + null + ], + [ + "delim-token", + ".", + 18218, + 18218, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-4", + 18219, + 18227, + { + "value": "col-xxl-4" + } + ], + [ + "{-token", + "{", + 18228, + 18228, + null + ], + [ + "ident-token", + "flex", + 18229, + 18232, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18233, + 18233, + null + ], + [ + "number-token", + "0", + 18234, + 18234, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18235, + 18235, + null + ], + [ + "number-token", + "0", + 18236, + 18236, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18237, + 18237, + null + ], + [ + "ident-token", + "auto", + 18238, + 18241, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18242, + 18242, + null + ], + [ + "ident-token", + "width", + 18243, + 18247, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18248, + 18248, + null + ], + [ + "percentage-token", + "33.33333333%", + 18249, + 18260, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 18261, + 18261, + null + ], + [ + "delim-token", + ".", + 18262, + 18262, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-5", + 18263, + 18271, + { + "value": "col-xxl-5" + } + ], + [ + "{-token", + "{", + 18272, + 18272, + null + ], + [ + "ident-token", + "flex", + 18273, + 18276, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18277, + 18277, + null + ], + [ + "number-token", + "0", + 18278, + 18278, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18279, + 18279, + null + ], + [ + "number-token", + "0", + 18280, + 18280, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18281, + 18281, + null + ], + [ + "ident-token", + "auto", + 18282, + 18285, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18286, + 18286, + null + ], + [ + "ident-token", + "width", + 18287, + 18291, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18292, + 18292, + null + ], + [ + "percentage-token", + "41.66666667%", + 18293, + 18304, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 18305, + 18305, + null + ], + [ + "delim-token", + ".", + 18306, + 18306, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-6", + 18307, + 18315, + { + "value": "col-xxl-6" + } + ], + [ + "{-token", + "{", + 18316, + 18316, + null + ], + [ + "ident-token", + "flex", + 18317, + 18320, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18321, + 18321, + null + ], + [ + "number-token", + "0", + 18322, + 18322, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18323, + 18323, + null + ], + [ + "number-token", + "0", + 18324, + 18324, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18325, + 18325, + null + ], + [ + "ident-token", + "auto", + 18326, + 18329, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18330, + 18330, + null + ], + [ + "ident-token", + "width", + 18331, + 18335, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18336, + 18336, + null + ], + [ + "percentage-token", + "50%", + 18337, + 18339, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 18340, + 18340, + null + ], + [ + "delim-token", + ".", + 18341, + 18341, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-7", + 18342, + 18350, + { + "value": "col-xxl-7" + } + ], + [ + "{-token", + "{", + 18351, + 18351, + null + ], + [ + "ident-token", + "flex", + 18352, + 18355, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18356, + 18356, + null + ], + [ + "number-token", + "0", + 18357, + 18357, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18358, + 18358, + null + ], + [ + "number-token", + "0", + 18359, + 18359, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18360, + 18360, + null + ], + [ + "ident-token", + "auto", + 18361, + 18364, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18365, + 18365, + null + ], + [ + "ident-token", + "width", + 18366, + 18370, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18371, + 18371, + null + ], + [ + "percentage-token", + "58.33333333%", + 18372, + 18383, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 18384, + 18384, + null + ], + [ + "delim-token", + ".", + 18385, + 18385, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-8", + 18386, + 18394, + { + "value": "col-xxl-8" + } + ], + [ + "{-token", + "{", + 18395, + 18395, + null + ], + [ + "ident-token", + "flex", + 18396, + 18399, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18400, + 18400, + null + ], + [ + "number-token", + "0", + 18401, + 18401, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18402, + 18402, + null + ], + [ + "number-token", + "0", + 18403, + 18403, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18404, + 18404, + null + ], + [ + "ident-token", + "auto", + 18405, + 18408, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18409, + 18409, + null + ], + [ + "ident-token", + "width", + 18410, + 18414, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18415, + 18415, + null + ], + [ + "percentage-token", + "66.66666667%", + 18416, + 18427, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 18428, + 18428, + null + ], + [ + "delim-token", + ".", + 18429, + 18429, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-9", + 18430, + 18438, + { + "value": "col-xxl-9" + } + ], + [ + "{-token", + "{", + 18439, + 18439, + null + ], + [ + "ident-token", + "flex", + 18440, + 18443, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18444, + 18444, + null + ], + [ + "number-token", + "0", + 18445, + 18445, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18446, + 18446, + null + ], + [ + "number-token", + "0", + 18447, + 18447, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18448, + 18448, + null + ], + [ + "ident-token", + "auto", + 18449, + 18452, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18453, + 18453, + null + ], + [ + "ident-token", + "width", + 18454, + 18458, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18459, + 18459, + null + ], + [ + "percentage-token", + "75%", + 18460, + 18462, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 18463, + 18463, + null + ], + [ + "delim-token", + ".", + 18464, + 18464, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-10", + 18465, + 18474, + { + "value": "col-xxl-10" + } + ], + [ + "{-token", + "{", + 18475, + 18475, + null + ], + [ + "ident-token", + "flex", + 18476, + 18479, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18480, + 18480, + null + ], + [ + "number-token", + "0", + 18481, + 18481, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18482, + 18482, + null + ], + [ + "number-token", + "0", + 18483, + 18483, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18484, + 18484, + null + ], + [ + "ident-token", + "auto", + 18485, + 18488, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18489, + 18489, + null + ], + [ + "ident-token", + "width", + 18490, + 18494, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18495, + 18495, + null + ], + [ + "percentage-token", + "83.33333333%", + 18496, + 18507, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 18508, + 18508, + null + ], + [ + "delim-token", + ".", + 18509, + 18509, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-11", + 18510, + 18519, + { + "value": "col-xxl-11" + } + ], + [ + "{-token", + "{", + 18520, + 18520, + null + ], + [ + "ident-token", + "flex", + 18521, + 18524, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18525, + 18525, + null + ], + [ + "number-token", + "0", + 18526, + 18526, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18527, + 18527, + null + ], + [ + "number-token", + "0", + 18528, + 18528, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18529, + 18529, + null + ], + [ + "ident-token", + "auto", + 18530, + 18533, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18534, + 18534, + null + ], + [ + "ident-token", + "width", + 18535, + 18539, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18540, + 18540, + null + ], + [ + "percentage-token", + "91.66666667%", + 18541, + 18552, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 18553, + 18553, + null + ], + [ + "delim-token", + ".", + 18554, + 18554, + { + "value": "." + } + ], + [ + "ident-token", + "col-xxl-12", + 18555, + 18564, + { + "value": "col-xxl-12" + } + ], + [ + "{-token", + "{", + 18565, + 18565, + null + ], + [ + "ident-token", + "flex", + 18566, + 18569, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 18570, + 18570, + null + ], + [ + "number-token", + "0", + 18571, + 18571, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18572, + 18572, + null + ], + [ + "number-token", + "0", + 18573, + 18573, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 18574, + 18574, + null + ], + [ + "ident-token", + "auto", + 18575, + 18578, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 18579, + 18579, + null + ], + [ + "ident-token", + "width", + 18580, + 18584, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 18585, + 18585, + null + ], + [ + "percentage-token", + "100%", + 18586, + 18589, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 18590, + 18590, + null + ], + [ + "delim-token", + ".", + 18591, + 18591, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-0", + 18592, + 18603, + { + "value": "offset-xxl-0" + } + ], + [ + "{-token", + "{", + 18604, + 18604, + null + ], + [ + "ident-token", + "margin-left", + 18605, + 18615, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18616, + 18616, + null + ], + [ + "number-token", + "0", + 18617, + 18617, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 18618, + 18618, + null + ], + [ + "delim-token", + ".", + 18619, + 18619, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-1", + 18620, + 18631, + { + "value": "offset-xxl-1" + } + ], + [ + "{-token", + "{", + 18632, + 18632, + null + ], + [ + "ident-token", + "margin-left", + 18633, + 18643, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18644, + 18644, + null + ], + [ + "percentage-token", + "8.33333333%", + 18645, + 18655, + { + "value": 8.33333333 + } + ], + [ + "}-token", + "}", + 18656, + 18656, + null + ], + [ + "delim-token", + ".", + 18657, + 18657, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-2", + 18658, + 18669, + { + "value": "offset-xxl-2" + } + ], + [ + "{-token", + "{", + 18670, + 18670, + null + ], + [ + "ident-token", + "margin-left", + 18671, + 18681, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18682, + 18682, + null + ], + [ + "percentage-token", + "16.66666667%", + 18683, + 18694, + { + "value": 16.66666667 + } + ], + [ + "}-token", + "}", + 18695, + 18695, + null + ], + [ + "delim-token", + ".", + 18696, + 18696, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-3", + 18697, + 18708, + { + "value": "offset-xxl-3" + } + ], + [ + "{-token", + "{", + 18709, + 18709, + null + ], + [ + "ident-token", + "margin-left", + 18710, + 18720, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18721, + 18721, + null + ], + [ + "percentage-token", + "25%", + 18722, + 18724, + { + "value": 25 + } + ], + [ + "}-token", + "}", + 18725, + 18725, + null + ], + [ + "delim-token", + ".", + 18726, + 18726, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-4", + 18727, + 18738, + { + "value": "offset-xxl-4" + } + ], + [ + "{-token", + "{", + 18739, + 18739, + null + ], + [ + "ident-token", + "margin-left", + 18740, + 18750, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18751, + 18751, + null + ], + [ + "percentage-token", + "33.33333333%", + 18752, + 18763, + { + "value": 33.33333333 + } + ], + [ + "}-token", + "}", + 18764, + 18764, + null + ], + [ + "delim-token", + ".", + 18765, + 18765, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-5", + 18766, + 18777, + { + "value": "offset-xxl-5" + } + ], + [ + "{-token", + "{", + 18778, + 18778, + null + ], + [ + "ident-token", + "margin-left", + 18779, + 18789, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18790, + 18790, + null + ], + [ + "percentage-token", + "41.66666667%", + 18791, + 18802, + { + "value": 41.66666667 + } + ], + [ + "}-token", + "}", + 18803, + 18803, + null + ], + [ + "delim-token", + ".", + 18804, + 18804, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-6", + 18805, + 18816, + { + "value": "offset-xxl-6" + } + ], + [ + "{-token", + "{", + 18817, + 18817, + null + ], + [ + "ident-token", + "margin-left", + 18818, + 18828, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18829, + 18829, + null + ], + [ + "percentage-token", + "50%", + 18830, + 18832, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 18833, + 18833, + null + ], + [ + "delim-token", + ".", + 18834, + 18834, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-7", + 18835, + 18846, + { + "value": "offset-xxl-7" + } + ], + [ + "{-token", + "{", + 18847, + 18847, + null + ], + [ + "ident-token", + "margin-left", + 18848, + 18858, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18859, + 18859, + null + ], + [ + "percentage-token", + "58.33333333%", + 18860, + 18871, + { + "value": 58.33333333 + } + ], + [ + "}-token", + "}", + 18872, + 18872, + null + ], + [ + "delim-token", + ".", + 18873, + 18873, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-8", + 18874, + 18885, + { + "value": "offset-xxl-8" + } + ], + [ + "{-token", + "{", + 18886, + 18886, + null + ], + [ + "ident-token", + "margin-left", + 18887, + 18897, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18898, + 18898, + null + ], + [ + "percentage-token", + "66.66666667%", + 18899, + 18910, + { + "value": 66.66666667 + } + ], + [ + "}-token", + "}", + 18911, + 18911, + null + ], + [ + "delim-token", + ".", + 18912, + 18912, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-9", + 18913, + 18924, + { + "value": "offset-xxl-9" + } + ], + [ + "{-token", + "{", + 18925, + 18925, + null + ], + [ + "ident-token", + "margin-left", + 18926, + 18936, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18937, + 18937, + null + ], + [ + "percentage-token", + "75%", + 18938, + 18940, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 18941, + 18941, + null + ], + [ + "delim-token", + ".", + 18942, + 18942, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-10", + 18943, + 18955, + { + "value": "offset-xxl-10" + } + ], + [ + "{-token", + "{", + 18956, + 18956, + null + ], + [ + "ident-token", + "margin-left", + 18957, + 18967, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 18968, + 18968, + null + ], + [ + "percentage-token", + "83.33333333%", + 18969, + 18980, + { + "value": 83.33333333 + } + ], + [ + "}-token", + "}", + 18981, + 18981, + null + ], + [ + "delim-token", + ".", + 18982, + 18982, + { + "value": "." + } + ], + [ + "ident-token", + "offset-xxl-11", + 18983, + 18995, + { + "value": "offset-xxl-11" + } + ], + [ + "{-token", + "{", + 18996, + 18996, + null + ], + [ + "ident-token", + "margin-left", + 18997, + 19007, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 19008, + 19008, + null + ], + [ + "percentage-token", + "91.66666667%", + 19009, + 19020, + { + "value": 91.66666667 + } + ], + [ + "}-token", + "}", + 19021, + 19021, + null + ], + [ + "delim-token", + ".", + 19022, + 19022, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-0", + 19023, + 19029, + { + "value": "g-xxl-0" + } + ], + [ + "comma-token", + ",", + 19030, + 19030, + null + ], + [ + "delim-token", + ".", + 19031, + 19031, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-0", + 19032, + 19039, + { + "value": "gx-xxl-0" + } + ], + [ + "{-token", + "{", + 19040, + 19040, + null + ], + [ + "delim-token", + "-", + 19041, + 19041, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19042, + 19042, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19043, + 19053, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19054, + 19054, + null + ], + [ + "number-token", + "0", + 19055, + 19055, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 19056, + 19056, + null + ], + [ + "delim-token", + ".", + 19057, + 19057, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-0", + 19058, + 19064, + { + "value": "g-xxl-0" + } + ], + [ + "comma-token", + ",", + 19065, + 19065, + null + ], + [ + "delim-token", + ".", + 19066, + 19066, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-0", + 19067, + 19074, + { + "value": "gy-xxl-0" + } + ], + [ + "{-token", + "{", + 19075, + 19075, + null + ], + [ + "delim-token", + "-", + 19076, + 19076, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19077, + 19077, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19078, + 19088, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19089, + 19089, + null + ], + [ + "number-token", + "0", + 19090, + 19090, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 19091, + 19091, + null + ], + [ + "delim-token", + ".", + 19092, + 19092, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-1", + 19093, + 19099, + { + "value": "g-xxl-1" + } + ], + [ + "comma-token", + ",", + 19100, + 19100, + null + ], + [ + "delim-token", + ".", + 19101, + 19101, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-1", + 19102, + 19109, + { + "value": "gx-xxl-1" + } + ], + [ + "{-token", + "{", + 19110, + 19110, + null + ], + [ + "delim-token", + "-", + 19111, + 19111, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19112, + 19112, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19113, + 19123, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19124, + 19124, + null + ], + [ + "dimension-token", + "0.25rem", + 19125, + 19131, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19132, + 19132, + null + ], + [ + "delim-token", + ".", + 19133, + 19133, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-1", + 19134, + 19140, + { + "value": "g-xxl-1" + } + ], + [ + "comma-token", + ",", + 19141, + 19141, + null + ], + [ + "delim-token", + ".", + 19142, + 19142, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-1", + 19143, + 19150, + { + "value": "gy-xxl-1" + } + ], + [ + "{-token", + "{", + 19151, + 19151, + null + ], + [ + "delim-token", + "-", + 19152, + 19152, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19153, + 19153, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19154, + 19164, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19165, + 19165, + null + ], + [ + "dimension-token", + "0.25rem", + 19166, + 19172, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19173, + 19173, + null + ], + [ + "delim-token", + ".", + 19174, + 19174, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-2", + 19175, + 19181, + { + "value": "g-xxl-2" + } + ], + [ + "comma-token", + ",", + 19182, + 19182, + null + ], + [ + "delim-token", + ".", + 19183, + 19183, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-2", + 19184, + 19191, + { + "value": "gx-xxl-2" + } + ], + [ + "{-token", + "{", + 19192, + 19192, + null + ], + [ + "delim-token", + "-", + 19193, + 19193, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19194, + 19194, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19195, + 19205, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19206, + 19206, + null + ], + [ + "dimension-token", + "0.5rem", + 19207, + 19212, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19213, + 19213, + null + ], + [ + "delim-token", + ".", + 19214, + 19214, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-2", + 19215, + 19221, + { + "value": "g-xxl-2" + } + ], + [ + "comma-token", + ",", + 19222, + 19222, + null + ], + [ + "delim-token", + ".", + 19223, + 19223, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-2", + 19224, + 19231, + { + "value": "gy-xxl-2" + } + ], + [ + "{-token", + "{", + 19232, + 19232, + null + ], + [ + "delim-token", + "-", + 19233, + 19233, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19234, + 19234, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19235, + 19245, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19246, + 19246, + null + ], + [ + "dimension-token", + "0.5rem", + 19247, + 19252, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19253, + 19253, + null + ], + [ + "delim-token", + ".", + 19254, + 19254, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-3", + 19255, + 19261, + { + "value": "g-xxl-3" + } + ], + [ + "comma-token", + ",", + 19262, + 19262, + null + ], + [ + "delim-token", + ".", + 19263, + 19263, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-3", + 19264, + 19271, + { + "value": "gx-xxl-3" + } + ], + [ + "{-token", + "{", + 19272, + 19272, + null + ], + [ + "delim-token", + "-", + 19273, + 19273, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19274, + 19274, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19275, + 19285, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19286, + 19286, + null + ], + [ + "dimension-token", + "1rem", + 19287, + 19290, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19291, + 19291, + null + ], + [ + "delim-token", + ".", + 19292, + 19292, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-3", + 19293, + 19299, + { + "value": "g-xxl-3" + } + ], + [ + "comma-token", + ",", + 19300, + 19300, + null + ], + [ + "delim-token", + ".", + 19301, + 19301, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-3", + 19302, + 19309, + { + "value": "gy-xxl-3" + } + ], + [ + "{-token", + "{", + 19310, + 19310, + null + ], + [ + "delim-token", + "-", + 19311, + 19311, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19312, + 19312, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19313, + 19323, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19324, + 19324, + null + ], + [ + "dimension-token", + "1rem", + 19325, + 19328, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19329, + 19329, + null + ], + [ + "delim-token", + ".", + 19330, + 19330, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-4", + 19331, + 19337, + { + "value": "g-xxl-4" + } + ], + [ + "comma-token", + ",", + 19338, + 19338, + null + ], + [ + "delim-token", + ".", + 19339, + 19339, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-4", + 19340, + 19347, + { + "value": "gx-xxl-4" + } + ], + [ + "{-token", + "{", + 19348, + 19348, + null + ], + [ + "delim-token", + "-", + 19349, + 19349, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19350, + 19350, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19351, + 19361, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19362, + 19362, + null + ], + [ + "dimension-token", + "1.5rem", + 19363, + 19368, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19369, + 19369, + null + ], + [ + "delim-token", + ".", + 19370, + 19370, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-4", + 19371, + 19377, + { + "value": "g-xxl-4" + } + ], + [ + "comma-token", + ",", + 19378, + 19378, + null + ], + [ + "delim-token", + ".", + 19379, + 19379, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-4", + 19380, + 19387, + { + "value": "gy-xxl-4" + } + ], + [ + "{-token", + "{", + 19388, + 19388, + null + ], + [ + "delim-token", + "-", + 19389, + 19389, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19390, + 19390, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19391, + 19401, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19402, + 19402, + null + ], + [ + "dimension-token", + "1.5rem", + 19403, + 19408, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19409, + 19409, + null + ], + [ + "delim-token", + ".", + 19410, + 19410, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-5", + 19411, + 19417, + { + "value": "g-xxl-5" + } + ], + [ + "comma-token", + ",", + 19418, + 19418, + null + ], + [ + "delim-token", + ".", + 19419, + 19419, + { + "value": "." + } + ], + [ + "ident-token", + "gx-xxl-5", + 19420, + 19427, + { + "value": "gx-xxl-5" + } + ], + [ + "{-token", + "{", + 19428, + 19428, + null + ], + [ + "delim-token", + "-", + 19429, + 19429, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19430, + 19430, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-x", + 19431, + 19441, + { + "value": "bs-gutter-x" + } + ], + [ + "colon-token", + ":", + 19442, + 19442, + null + ], + [ + "dimension-token", + "3rem", + 19443, + 19446, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19447, + 19447, + null + ], + [ + "delim-token", + ".", + 19448, + 19448, + { + "value": "." + } + ], + [ + "ident-token", + "g-xxl-5", + 19449, + 19455, + { + "value": "g-xxl-5" + } + ], + [ + "comma-token", + ",", + 19456, + 19456, + null + ], + [ + "delim-token", + ".", + 19457, + 19457, + { + "value": "." + } + ], + [ + "ident-token", + "gy-xxl-5", + 19458, + 19465, + { + "value": "gy-xxl-5" + } + ], + [ + "{-token", + "{", + 19466, + 19466, + null + ], + [ + "delim-token", + "-", + 19467, + 19467, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19468, + 19468, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gutter-y", + 19469, + 19479, + { + "value": "bs-gutter-y" + } + ], + [ + "colon-token", + ":", + 19480, + 19480, + null + ], + [ + "dimension-token", + "3rem", + 19481, + 19484, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 19485, + 19485, + null + ], + [ + "}-token", + "}", + 19486, + 19486, + null + ], + [ + "delim-token", + ".", + 19487, + 19487, + { + "value": "." + } + ], + [ + "ident-token", + "table", + 19488, + 19492, + { + "value": "table" + } + ], + [ + "{-token", + "{", + 19493, + 19493, + null + ], + [ + "delim-token", + "-", + 19494, + 19494, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19495, + 19495, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 19496, + 19509, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 19510, + 19510, + null + ], + [ + "function-token", + "var(", + 19511, + 19514, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19515, + 19515, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19516, + 19516, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 19517, + 19529, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 19530, + 19530, + null + ], + [ + "semicolon-token", + ";", + 19531, + 19531, + null + ], + [ + "delim-token", + "-", + 19532, + 19532, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19533, + 19533, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 19534, + 19544, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 19545, + 19545, + null + ], + [ + "ident-token", + "transparent", + 19546, + 19556, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 19557, + 19557, + null + ], + [ + "delim-token", + "-", + 19558, + 19558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19559, + 19559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 19560, + 19580, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 19581, + 19581, + null + ], + [ + "function-token", + "var(", + 19582, + 19585, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19586, + 19586, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19587, + 19587, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 19588, + 19602, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 19603, + 19603, + null + ], + [ + "semicolon-token", + ";", + 19604, + 19604, + null + ], + [ + "delim-token", + "-", + 19605, + 19605, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19606, + 19606, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 19607, + 19624, + { + "value": "bs-table-accent-bg" + } + ], + [ + "colon-token", + ":", + 19625, + 19625, + null + ], + [ + "ident-token", + "transparent", + 19626, + 19636, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 19637, + 19637, + null + ], + [ + "delim-token", + "-", + 19638, + 19638, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19639, + 19639, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 19640, + 19661, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 19662, + 19662, + null + ], + [ + "function-token", + "var(", + 19663, + 19666, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19667, + 19667, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19668, + 19668, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 19669, + 19681, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 19682, + 19682, + null + ], + [ + "semicolon-token", + ";", + 19683, + 19683, + null + ], + [ + "delim-token", + "-", + 19684, + 19684, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19685, + 19685, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 19686, + 19704, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 19705, + 19705, + null + ], + [ + "function-token", + "rgba(", + 19706, + 19710, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 19711, + 19711, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19712, + 19712, + null + ], + [ + "whitespace-token", + " ", + 19713, + 19713, + null + ], + [ + "number-token", + "0", + 19714, + 19714, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19715, + 19715, + null + ], + [ + "whitespace-token", + " ", + 19716, + 19716, + null + ], + [ + "number-token", + "0", + 19717, + 19717, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19718, + 19718, + null + ], + [ + "whitespace-token", + " ", + 19719, + 19719, + null + ], + [ + "number-token", + "0.05", + 19720, + 19723, + { + "value": 0.05, + "type": "number" + } + ], + [ + ")-token", + ")", + 19724, + 19724, + null + ], + [ + "semicolon-token", + ";", + 19725, + 19725, + null + ], + [ + "delim-token", + "-", + 19726, + 19726, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19727, + 19727, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 19728, + 19748, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 19749, + 19749, + null + ], + [ + "function-token", + "var(", + 19750, + 19753, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19754, + 19754, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19755, + 19755, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 19756, + 19768, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 19769, + 19769, + null + ], + [ + "semicolon-token", + ";", + 19770, + 19770, + null + ], + [ + "delim-token", + "-", + 19771, + 19771, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19772, + 19772, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 19773, + 19790, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 19791, + 19791, + null + ], + [ + "function-token", + "rgba(", + 19792, + 19796, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 19797, + 19797, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19798, + 19798, + null + ], + [ + "whitespace-token", + " ", + 19799, + 19799, + null + ], + [ + "number-token", + "0", + 19800, + 19800, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19801, + 19801, + null + ], + [ + "whitespace-token", + " ", + 19802, + 19802, + null + ], + [ + "number-token", + "0", + 19803, + 19803, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19804, + 19804, + null + ], + [ + "whitespace-token", + " ", + 19805, + 19805, + null + ], + [ + "number-token", + "0.1", + 19806, + 19808, + { + "value": 0.1, + "type": "number" + } + ], + [ + ")-token", + ")", + 19809, + 19809, + null + ], + [ + "semicolon-token", + ";", + 19810, + 19810, + null + ], + [ + "delim-token", + "-", + 19811, + 19811, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19812, + 19812, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 19813, + 19832, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 19833, + 19833, + null + ], + [ + "function-token", + "var(", + 19834, + 19837, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19838, + 19838, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19839, + 19839, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 19840, + 19852, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 19853, + 19853, + null + ], + [ + "semicolon-token", + ";", + 19854, + 19854, + null + ], + [ + "delim-token", + "-", + 19855, + 19855, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19856, + 19856, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 19857, + 19873, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 19874, + 19874, + null + ], + [ + "function-token", + "rgba(", + 19875, + 19879, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 19880, + 19880, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19881, + 19881, + null + ], + [ + "whitespace-token", + " ", + 19882, + 19882, + null + ], + [ + "number-token", + "0", + 19883, + 19883, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19884, + 19884, + null + ], + [ + "whitespace-token", + " ", + 19885, + 19885, + null + ], + [ + "number-token", + "0", + 19886, + 19886, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 19887, + 19887, + null + ], + [ + "whitespace-token", + " ", + 19888, + 19888, + null + ], + [ + "number-token", + "0.075", + 19889, + 19893, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 19894, + 19894, + null + ], + [ + "semicolon-token", + ";", + 19895, + 19895, + null + ], + [ + "ident-token", + "width", + 19896, + 19900, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 19901, + 19901, + null + ], + [ + "percentage-token", + "100%", + 19902, + 19905, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 19906, + 19906, + null + ], + [ + "ident-token", + "margin-bottom", + 19907, + 19919, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 19920, + 19920, + null + ], + [ + "dimension-token", + "1rem", + 19921, + 19924, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 19925, + 19925, + null + ], + [ + "ident-token", + "color", + 19926, + 19930, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 19931, + 19931, + null + ], + [ + "function-token", + "var(", + 19932, + 19935, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19936, + 19936, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19937, + 19937, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 19938, + 19951, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 19952, + 19952, + null + ], + [ + "semicolon-token", + ";", + 19953, + 19953, + null + ], + [ + "ident-token", + "vertical-align", + 19954, + 19967, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 19968, + 19968, + null + ], + [ + "ident-token", + "top", + 19969, + 19971, + { + "value": "top" + } + ], + [ + "semicolon-token", + ";", + 19972, + 19972, + null + ], + [ + "ident-token", + "border-color", + 19973, + 19984, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 19985, + 19985, + null + ], + [ + "function-token", + "var(", + 19986, + 19989, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 19990, + 19990, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 19991, + 19991, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 19992, + 20012, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 20013, + 20013, + null + ], + [ + "}-token", + "}", + 20014, + 20014, + null + ], + [ + "delim-token", + ".", + 20015, + 20015, + { + "value": "." + } + ], + [ + "ident-token", + "table", + 20016, + 20020, + { + "value": "table" + } + ], + [ + "delim-token", + ">", + 20021, + 20021, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20022, + 20022, + null + ], + [ + "function-token", + "not(", + 20023, + 20026, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20027, + 20033, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20034, + 20034, + null + ], + [ + "delim-token", + ">", + 20035, + 20035, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20036, + 20036, + { + "value": "*" + } + ], + [ + "delim-token", + ">", + 20037, + 20037, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20038, + 20038, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20039, + 20039, + null + ], + [ + "ident-token", + "padding", + 20040, + 20046, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 20047, + 20047, + null + ], + [ + "dimension-token", + ".5rem", + 20048, + 20052, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 20053, + 20053, + null + ], + [ + "dimension-token", + ".5rem", + 20054, + 20058, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 20059, + 20059, + null + ], + [ + "ident-token", + "background-color", + 20060, + 20075, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 20076, + 20076, + null + ], + [ + "function-token", + "var(", + 20077, + 20080, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20081, + 20081, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20082, + 20082, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 20083, + 20093, + { + "value": "bs-table-bg" + } + ], + [ + ")-token", + ")", + 20094, + 20094, + null + ], + [ + "semicolon-token", + ";", + 20095, + 20095, + null + ], + [ + "ident-token", + "border-bottom-width", + 20096, + 20114, + { + "value": "border-bottom-width" + } + ], + [ + "colon-token", + ":", + 20115, + 20115, + null + ], + [ + "dimension-token", + "1px", + 20116, + 20118, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 20119, + 20119, + null + ], + [ + "ident-token", + "box-shadow", + 20120, + 20129, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 20130, + 20130, + null + ], + [ + "ident-token", + "inset", + 20131, + 20135, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 20136, + 20136, + null + ], + [ + "number-token", + "0", + 20137, + 20137, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 20138, + 20138, + null + ], + [ + "number-token", + "0", + 20139, + 20139, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 20140, + 20140, + null + ], + [ + "number-token", + "0", + 20141, + 20141, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 20142, + 20142, + null + ], + [ + "dimension-token", + "9999px", + 20143, + 20148, + { + "value": 9999, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 20149, + 20149, + null + ], + [ + "function-token", + "var(", + 20150, + 20153, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20154, + 20154, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20155, + 20155, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 20156, + 20173, + { + "value": "bs-table-accent-bg" + } + ], + [ + ")-token", + ")", + 20174, + 20174, + null + ], + [ + "}-token", + "}", + 20175, + 20175, + null + ], + [ + "delim-token", + ".", + 20176, + 20176, + { + "value": "." + } + ], + [ + "ident-token", + "table", + 20177, + 20181, + { + "value": "table" + } + ], + [ + "delim-token", + ">", + 20182, + 20182, + { + "value": ">" + } + ], + [ + "ident-token", + "tbody", + 20183, + 20187, + { + "value": "tbody" + } + ], + [ + "{-token", + "{", + 20188, + 20188, + null + ], + [ + "ident-token", + "vertical-align", + 20189, + 20202, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 20203, + 20203, + null + ], + [ + "ident-token", + "inherit", + 20204, + 20210, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 20211, + 20211, + null + ], + [ + "delim-token", + ".", + 20212, + 20212, + { + "value": "." + } + ], + [ + "ident-token", + "table", + 20213, + 20217, + { + "value": "table" + } + ], + [ + "delim-token", + ">", + 20218, + 20218, + { + "value": ">" + } + ], + [ + "ident-token", + "thead", + 20219, + 20223, + { + "value": "thead" + } + ], + [ + "{-token", + "{", + 20224, + 20224, + null + ], + [ + "ident-token", + "vertical-align", + 20225, + 20238, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 20239, + 20239, + null + ], + [ + "ident-token", + "bottom", + 20240, + 20245, + { + "value": "bottom" + } + ], + [ + "}-token", + "}", + 20246, + 20246, + null + ], + [ + "delim-token", + ".", + 20247, + 20247, + { + "value": "." + } + ], + [ + "ident-token", + "table-group-divider", + 20248, + 20266, + { + "value": "table-group-divider" + } + ], + [ + "{-token", + "{", + 20267, + 20267, + null + ], + [ + "ident-token", + "border-top", + 20268, + 20277, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 20278, + 20278, + null + ], + [ + "dimension-token", + "2px", + 20279, + 20281, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 20282, + 20282, + null + ], + [ + "ident-token", + "solid", + 20283, + 20287, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 20288, + 20288, + null + ], + [ + "ident-token", + "currentcolor", + 20289, + 20300, + { + "value": "currentcolor" + } + ], + [ + "}-token", + "}", + 20301, + 20301, + null + ], + [ + "delim-token", + ".", + 20302, + 20302, + { + "value": "." + } + ], + [ + "ident-token", + "caption-top", + 20303, + 20313, + { + "value": "caption-top" + } + ], + [ + "{-token", + "{", + 20314, + 20314, + null + ], + [ + "ident-token", + "caption-side", + 20315, + 20326, + { + "value": "caption-side" + } + ], + [ + "colon-token", + ":", + 20327, + 20327, + null + ], + [ + "ident-token", + "top", + 20328, + 20330, + { + "value": "top" + } + ], + [ + "}-token", + "}", + 20331, + 20331, + null + ], + [ + "delim-token", + ".", + 20332, + 20332, + { + "value": "." + } + ], + [ + "ident-token", + "table-sm", + 20333, + 20340, + { + "value": "table-sm" + } + ], + [ + "delim-token", + ">", + 20341, + 20341, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20342, + 20342, + null + ], + [ + "function-token", + "not(", + 20343, + 20346, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20347, + 20353, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20354, + 20354, + null + ], + [ + "delim-token", + ">", + 20355, + 20355, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20356, + 20356, + { + "value": "*" + } + ], + [ + "delim-token", + ">", + 20357, + 20357, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20358, + 20358, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20359, + 20359, + null + ], + [ + "ident-token", + "padding", + 20360, + 20366, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 20367, + 20367, + null + ], + [ + "dimension-token", + ".25rem", + 20368, + 20373, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 20374, + 20374, + null + ], + [ + "dimension-token", + ".25rem", + 20375, + 20380, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 20381, + 20381, + null + ], + [ + "delim-token", + ".", + 20382, + 20382, + { + "value": "." + } + ], + [ + "ident-token", + "table-bordered", + 20383, + 20396, + { + "value": "table-bordered" + } + ], + [ + "delim-token", + ">", + 20397, + 20397, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20398, + 20398, + null + ], + [ + "function-token", + "not(", + 20399, + 20402, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20403, + 20409, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20410, + 20410, + null + ], + [ + "delim-token", + ">", + 20411, + 20411, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20412, + 20412, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20413, + 20413, + null + ], + [ + "ident-token", + "border-width", + 20414, + 20425, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 20426, + 20426, + null + ], + [ + "dimension-token", + "1px", + 20427, + 20429, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 20430, + 20430, + null + ], + [ + "number-token", + "0", + 20431, + 20431, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 20432, + 20432, + null + ], + [ + "delim-token", + ".", + 20433, + 20433, + { + "value": "." + } + ], + [ + "ident-token", + "table-bordered", + 20434, + 20447, + { + "value": "table-bordered" + } + ], + [ + "delim-token", + ">", + 20448, + 20448, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20449, + 20449, + null + ], + [ + "function-token", + "not(", + 20450, + 20453, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20454, + 20460, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20461, + 20461, + null + ], + [ + "delim-token", + ">", + 20462, + 20462, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20463, + 20463, + { + "value": "*" + } + ], + [ + "delim-token", + ">", + 20464, + 20464, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20465, + 20465, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20466, + 20466, + null + ], + [ + "ident-token", + "border-width", + 20467, + 20478, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 20479, + 20479, + null + ], + [ + "number-token", + "0", + 20480, + 20480, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 20481, + 20481, + null + ], + [ + "dimension-token", + "1px", + 20482, + 20484, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 20485, + 20485, + null + ], + [ + "delim-token", + ".", + 20486, + 20486, + { + "value": "." + } + ], + [ + "ident-token", + "table-borderless", + 20487, + 20502, + { + "value": "table-borderless" + } + ], + [ + "delim-token", + ">", + 20503, + 20503, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20504, + 20504, + null + ], + [ + "function-token", + "not(", + 20505, + 20508, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20509, + 20515, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20516, + 20516, + null + ], + [ + "delim-token", + ">", + 20517, + 20517, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20518, + 20518, + { + "value": "*" + } + ], + [ + "delim-token", + ">", + 20519, + 20519, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20520, + 20520, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20521, + 20521, + null + ], + [ + "ident-token", + "border-bottom-width", + 20522, + 20540, + { + "value": "border-bottom-width" + } + ], + [ + "colon-token", + ":", + 20541, + 20541, + null + ], + [ + "number-token", + "0", + 20542, + 20542, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 20543, + 20543, + null + ], + [ + "delim-token", + ".", + 20544, + 20544, + { + "value": "." + } + ], + [ + "ident-token", + "table-borderless", + 20545, + 20560, + { + "value": "table-borderless" + } + ], + [ + "delim-token", + ">", + 20561, + 20561, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20562, + 20562, + null + ], + [ + "function-token", + "not(", + 20563, + 20566, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 20567, + 20567, + null + ], + [ + "ident-token", + "first-child", + 20568, + 20578, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 20579, + 20579, + null + ], + [ + "{-token", + "{", + 20580, + 20580, + null + ], + [ + "ident-token", + "border-top-width", + 20581, + 20596, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 20597, + 20597, + null + ], + [ + "number-token", + "0", + 20598, + 20598, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 20599, + 20599, + null + ], + [ + "delim-token", + ".", + 20600, + 20600, + { + "value": "." + } + ], + [ + "ident-token", + "table-striped", + 20601, + 20613, + { + "value": "table-striped" + } + ], + [ + "delim-token", + ">", + 20614, + 20614, + { + "value": ">" + } + ], + [ + "ident-token", + "tbody", + 20615, + 20619, + { + "value": "tbody" + } + ], + [ + "delim-token", + ">", + 20620, + 20620, + { + "value": ">" + } + ], + [ + "ident-token", + "tr", + 20621, + 20622, + { + "value": "tr" + } + ], + [ + "colon-token", + ":", + 20623, + 20623, + null + ], + [ + "function-token", + "nth-of-type(", + 20624, + 20635, + { + "value": "nth-of-type" + } + ], + [ + "ident-token", + "odd", + 20636, + 20638, + { + "value": "odd" + } + ], + [ + ")-token", + ")", + 20639, + 20639, + null + ], + [ + "delim-token", + ">", + 20640, + 20640, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20641, + 20641, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20642, + 20642, + null + ], + [ + "delim-token", + "-", + 20643, + 20643, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20644, + 20644, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 20645, + 20662, + { + "value": "bs-table-accent-bg" + } + ], + [ + "colon-token", + ":", + 20663, + 20663, + null + ], + [ + "function-token", + "var(", + 20664, + 20667, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20668, + 20668, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20669, + 20669, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 20670, + 20688, + { + "value": "bs-table-striped-bg" + } + ], + [ + ")-token", + ")", + 20689, + 20689, + null + ], + [ + "semicolon-token", + ";", + 20690, + 20690, + null + ], + [ + "ident-token", + "color", + 20691, + 20695, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 20696, + 20696, + null + ], + [ + "function-token", + "var(", + 20697, + 20700, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20701, + 20701, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20702, + 20702, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 20703, + 20724, + { + "value": "bs-table-striped-color" + } + ], + [ + ")-token", + ")", + 20725, + 20725, + null + ], + [ + "}-token", + "}", + 20726, + 20726, + null + ], + [ + "delim-token", + ".", + 20727, + 20727, + { + "value": "." + } + ], + [ + "ident-token", + "table-striped-columns", + 20728, + 20748, + { + "value": "table-striped-columns" + } + ], + [ + "delim-token", + ">", + 20749, + 20749, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20750, + 20750, + null + ], + [ + "function-token", + "not(", + 20751, + 20754, + { + "value": "not" + } + ], + [ + "ident-token", + "caption", + 20755, + 20761, + { + "value": "caption" + } + ], + [ + ")-token", + ")", + 20762, + 20762, + null + ], + [ + "delim-token", + ">", + 20763, + 20763, + { + "value": ">" + } + ], + [ + "ident-token", + "tr", + 20764, + 20765, + { + "value": "tr" + } + ], + [ + "delim-token", + ">", + 20766, + 20766, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 20767, + 20767, + null + ], + [ + "function-token", + "nth-child(", + 20768, + 20777, + { + "value": "nth-child" + } + ], + [ + "dimension-token", + "2n", + 20778, + 20779, + { + "value": 2, + "type": "integer", + "unit": "n" + } + ], + [ + ")-token", + ")", + 20780, + 20780, + null + ], + [ + "{-token", + "{", + 20781, + 20781, + null + ], + [ + "delim-token", + "-", + 20782, + 20782, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20783, + 20783, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 20784, + 20801, + { + "value": "bs-table-accent-bg" + } + ], + [ + "colon-token", + ":", + 20802, + 20802, + null + ], + [ + "function-token", + "var(", + 20803, + 20806, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20807, + 20807, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20808, + 20808, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 20809, + 20827, + { + "value": "bs-table-striped-bg" + } + ], + [ + ")-token", + ")", + 20828, + 20828, + null + ], + [ + "semicolon-token", + ";", + 20829, + 20829, + null + ], + [ + "ident-token", + "color", + 20830, + 20834, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 20835, + 20835, + null + ], + [ + "function-token", + "var(", + 20836, + 20839, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20840, + 20840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20841, + 20841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 20842, + 20863, + { + "value": "bs-table-striped-color" + } + ], + [ + ")-token", + ")", + 20864, + 20864, + null + ], + [ + "}-token", + "}", + 20865, + 20865, + null + ], + [ + "delim-token", + ".", + 20866, + 20866, + { + "value": "." + } + ], + [ + "ident-token", + "table-active", + 20867, + 20878, + { + "value": "table-active" + } + ], + [ + "{-token", + "{", + 20879, + 20879, + null + ], + [ + "delim-token", + "-", + 20880, + 20880, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20881, + 20881, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 20882, + 20899, + { + "value": "bs-table-accent-bg" + } + ], + [ + "colon-token", + ":", + 20900, + 20900, + null + ], + [ + "function-token", + "var(", + 20901, + 20904, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20905, + 20905, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20906, + 20906, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 20907, + 20924, + { + "value": "bs-table-active-bg" + } + ], + [ + ")-token", + ")", + 20925, + 20925, + null + ], + [ + "semicolon-token", + ";", + 20926, + 20926, + null + ], + [ + "ident-token", + "color", + 20927, + 20931, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 20932, + 20932, + null + ], + [ + "function-token", + "var(", + 20933, + 20936, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 20937, + 20937, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20938, + 20938, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 20939, + 20959, + { + "value": "bs-table-active-color" + } + ], + [ + ")-token", + ")", + 20960, + 20960, + null + ], + [ + "}-token", + "}", + 20961, + 20961, + null + ], + [ + "delim-token", + ".", + 20962, + 20962, + { + "value": "." + } + ], + [ + "ident-token", + "table-hover", + 20963, + 20973, + { + "value": "table-hover" + } + ], + [ + "delim-token", + ">", + 20974, + 20974, + { + "value": ">" + } + ], + [ + "ident-token", + "tbody", + 20975, + 20979, + { + "value": "tbody" + } + ], + [ + "delim-token", + ">", + 20980, + 20980, + { + "value": ">" + } + ], + [ + "ident-token", + "tr", + 20981, + 20982, + { + "value": "tr" + } + ], + [ + "colon-token", + ":", + 20983, + 20983, + null + ], + [ + "ident-token", + "hover", + 20984, + 20988, + { + "value": "hover" + } + ], + [ + "delim-token", + ">", + 20989, + 20989, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 20990, + 20990, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 20991, + 20991, + null + ], + [ + "delim-token", + "-", + 20992, + 20992, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 20993, + 20993, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-accent-bg", + 20994, + 21011, + { + "value": "bs-table-accent-bg" + } + ], + [ + "colon-token", + ":", + 21012, + 21012, + null + ], + [ + "function-token", + "var(", + 21013, + 21016, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21017, + 21017, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21018, + 21018, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 21019, + 21035, + { + "value": "bs-table-hover-bg" + } + ], + [ + ")-token", + ")", + 21036, + 21036, + null + ], + [ + "semicolon-token", + ";", + 21037, + 21037, + null + ], + [ + "ident-token", + "color", + 21038, + 21042, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 21043, + 21043, + null + ], + [ + "function-token", + "var(", + 21044, + 21047, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21048, + 21048, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21049, + 21049, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 21050, + 21069, + { + "value": "bs-table-hover-color" + } + ], + [ + ")-token", + ")", + 21070, + 21070, + null + ], + [ + "}-token", + "}", + 21071, + 21071, + null + ], + [ + "delim-token", + ".", + 21072, + 21072, + { + "value": "." + } + ], + [ + "ident-token", + "table-primary", + 21073, + 21085, + { + "value": "table-primary" + } + ], + [ + "{-token", + "{", + 21086, + 21086, + null + ], + [ + "delim-token", + "-", + 21087, + 21087, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21088, + 21088, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 21089, + 21102, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 21103, + 21103, + null + ], + [ + "hash-token", + "#000", + 21104, + 21107, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21108, + 21108, + null + ], + [ + "delim-token", + "-", + 21109, + 21109, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21110, + 21110, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 21111, + 21121, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 21122, + 21122, + null + ], + [ + "hash-token", + "#cfe2ff", + 21123, + 21129, + { + "value": "cfe2ff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21130, + 21130, + null + ], + [ + "delim-token", + "-", + 21131, + 21131, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21132, + 21132, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 21133, + 21153, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 21154, + 21154, + null + ], + [ + "hash-token", + "#bacbe6", + 21155, + 21161, + { + "value": "bacbe6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21162, + 21162, + null + ], + [ + "delim-token", + "-", + 21163, + 21163, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21164, + 21164, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 21165, + 21183, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 21184, + 21184, + null + ], + [ + "hash-token", + "#c5d7f2", + 21185, + 21191, + { + "value": "c5d7f2", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21192, + 21192, + null + ], + [ + "delim-token", + "-", + 21193, + 21193, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21194, + 21194, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 21195, + 21216, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 21217, + 21217, + null + ], + [ + "hash-token", + "#000", + 21218, + 21221, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21222, + 21222, + null + ], + [ + "delim-token", + "-", + 21223, + 21223, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21224, + 21224, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 21225, + 21242, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 21243, + 21243, + null + ], + [ + "hash-token", + "#bacbe6", + 21244, + 21250, + { + "value": "bacbe6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21251, + 21251, + null + ], + [ + "delim-token", + "-", + 21252, + 21252, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21253, + 21253, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 21254, + 21274, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 21275, + 21275, + null + ], + [ + "hash-token", + "#000", + 21276, + 21279, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21280, + 21280, + null + ], + [ + "delim-token", + "-", + 21281, + 21281, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21282, + 21282, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 21283, + 21299, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 21300, + 21300, + null + ], + [ + "hash-token", + "#bfd1ec", + 21301, + 21307, + { + "value": "bfd1ec", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21308, + 21308, + null + ], + [ + "delim-token", + "-", + 21309, + 21309, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21310, + 21310, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 21311, + 21330, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 21331, + 21331, + null + ], + [ + "hash-token", + "#000", + 21332, + 21335, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21336, + 21336, + null + ], + [ + "ident-token", + "color", + 21337, + 21341, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 21342, + 21342, + null + ], + [ + "function-token", + "var(", + 21343, + 21346, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21347, + 21347, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21348, + 21348, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 21349, + 21362, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 21363, + 21363, + null + ], + [ + "semicolon-token", + ";", + 21364, + 21364, + null + ], + [ + "ident-token", + "border-color", + 21365, + 21376, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 21377, + 21377, + null + ], + [ + "function-token", + "var(", + 21378, + 21381, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21382, + 21382, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21383, + 21383, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 21384, + 21404, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 21405, + 21405, + null + ], + [ + "}-token", + "}", + 21406, + 21406, + null + ], + [ + "delim-token", + ".", + 21407, + 21407, + { + "value": "." + } + ], + [ + "ident-token", + "table-secondary", + 21408, + 21422, + { + "value": "table-secondary" + } + ], + [ + "{-token", + "{", + 21423, + 21423, + null + ], + [ + "delim-token", + "-", + 21424, + 21424, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21425, + 21425, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 21426, + 21439, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 21440, + 21440, + null + ], + [ + "hash-token", + "#000", + 21441, + 21444, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21445, + 21445, + null + ], + [ + "delim-token", + "-", + 21446, + 21446, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21447, + 21447, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 21448, + 21458, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 21459, + 21459, + null + ], + [ + "hash-token", + "#e2e3e5", + 21460, + 21466, + { + "value": "e2e3e5", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21467, + 21467, + null + ], + [ + "delim-token", + "-", + 21468, + 21468, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21469, + 21469, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 21470, + 21490, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 21491, + 21491, + null + ], + [ + "hash-token", + "#cbccce", + 21492, + 21498, + { + "value": "cbccce", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21499, + 21499, + null + ], + [ + "delim-token", + "-", + 21500, + 21500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21501, + 21501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 21502, + 21520, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 21521, + 21521, + null + ], + [ + "hash-token", + "#d7d8da", + 21522, + 21528, + { + "value": "d7d8da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21529, + 21529, + null + ], + [ + "delim-token", + "-", + 21530, + 21530, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21531, + 21531, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 21532, + 21553, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 21554, + 21554, + null + ], + [ + "hash-token", + "#000", + 21555, + 21558, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21559, + 21559, + null + ], + [ + "delim-token", + "-", + 21560, + 21560, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21561, + 21561, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 21562, + 21579, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 21580, + 21580, + null + ], + [ + "hash-token", + "#cbccce", + 21581, + 21587, + { + "value": "cbccce", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21588, + 21588, + null + ], + [ + "delim-token", + "-", + 21589, + 21589, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21590, + 21590, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 21591, + 21611, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 21612, + 21612, + null + ], + [ + "hash-token", + "#000", + 21613, + 21616, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21617, + 21617, + null + ], + [ + "delim-token", + "-", + 21618, + 21618, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21619, + 21619, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 21620, + 21636, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 21637, + 21637, + null + ], + [ + "hash-token", + "#d1d2d4", + 21638, + 21644, + { + "value": "d1d2d4", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21645, + 21645, + null + ], + [ + "delim-token", + "-", + 21646, + 21646, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21647, + 21647, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 21648, + 21667, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 21668, + 21668, + null + ], + [ + "hash-token", + "#000", + 21669, + 21672, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21673, + 21673, + null + ], + [ + "ident-token", + "color", + 21674, + 21678, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 21679, + 21679, + null + ], + [ + "function-token", + "var(", + 21680, + 21683, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21684, + 21684, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21685, + 21685, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 21686, + 21699, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 21700, + 21700, + null + ], + [ + "semicolon-token", + ";", + 21701, + 21701, + null + ], + [ + "ident-token", + "border-color", + 21702, + 21713, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 21714, + 21714, + null + ], + [ + "function-token", + "var(", + 21715, + 21718, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 21719, + 21719, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21720, + 21720, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 21721, + 21741, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 21742, + 21742, + null + ], + [ + "}-token", + "}", + 21743, + 21743, + null + ], + [ + "delim-token", + ".", + 21744, + 21744, + { + "value": "." + } + ], + [ + "ident-token", + "table-success", + 21745, + 21757, + { + "value": "table-success" + } + ], + [ + "{-token", + "{", + 21758, + 21758, + null + ], + [ + "delim-token", + "-", + 21759, + 21759, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21760, + 21760, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 21761, + 21774, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 21775, + 21775, + null + ], + [ + "hash-token", + "#000", + 21776, + 21779, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21780, + 21780, + null + ], + [ + "delim-token", + "-", + 21781, + 21781, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21782, + 21782, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 21783, + 21793, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 21794, + 21794, + null + ], + [ + "hash-token", + "#d1e7dd", + 21795, + 21801, + { + "value": "d1e7dd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21802, + 21802, + null + ], + [ + "delim-token", + "-", + 21803, + 21803, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21804, + 21804, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 21805, + 21825, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 21826, + 21826, + null + ], + [ + "hash-token", + "#bcd0c7", + 21827, + 21833, + { + "value": "bcd0c7", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21834, + 21834, + null + ], + [ + "delim-token", + "-", + 21835, + 21835, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21836, + 21836, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 21837, + 21855, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 21856, + 21856, + null + ], + [ + "hash-token", + "#c7dbd2", + 21857, + 21863, + { + "value": "c7dbd2", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21864, + 21864, + null + ], + [ + "delim-token", + "-", + 21865, + 21865, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21866, + 21866, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 21867, + 21888, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 21889, + 21889, + null + ], + [ + "hash-token", + "#000", + 21890, + 21893, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21894, + 21894, + null + ], + [ + "delim-token", + "-", + 21895, + 21895, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21896, + 21896, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 21897, + 21914, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 21915, + 21915, + null + ], + [ + "hash-token", + "#bcd0c7", + 21916, + 21922, + { + "value": "bcd0c7", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21923, + 21923, + null + ], + [ + "delim-token", + "-", + 21924, + 21924, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21925, + 21925, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 21926, + 21946, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 21947, + 21947, + null + ], + [ + "hash-token", + "#000", + 21948, + 21951, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 21952, + 21952, + null + ], + [ + "delim-token", + "-", + 21953, + 21953, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21954, + 21954, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 21955, + 21971, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 21972, + 21972, + null + ], + [ + "hash-token", + "#c1d6cc", + 21973, + 21979, + { + "value": "c1d6cc", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 21980, + 21980, + null + ], + [ + "delim-token", + "-", + 21981, + 21981, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 21982, + 21982, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 21983, + 22002, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 22003, + 22003, + null + ], + [ + "hash-token", + "#000", + 22004, + 22007, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22008, + 22008, + null + ], + [ + "ident-token", + "color", + 22009, + 22013, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 22014, + 22014, + null + ], + [ + "function-token", + "var(", + 22015, + 22018, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22019, + 22019, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22020, + 22020, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22021, + 22034, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 22035, + 22035, + null + ], + [ + "semicolon-token", + ";", + 22036, + 22036, + null + ], + [ + "ident-token", + "border-color", + 22037, + 22048, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 22049, + 22049, + null + ], + [ + "function-token", + "var(", + 22050, + 22053, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22054, + 22054, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22055, + 22055, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22056, + 22076, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 22077, + 22077, + null + ], + [ + "}-token", + "}", + 22078, + 22078, + null + ], + [ + "delim-token", + ".", + 22079, + 22079, + { + "value": "." + } + ], + [ + "ident-token", + "table-info", + 22080, + 22089, + { + "value": "table-info" + } + ], + [ + "{-token", + "{", + 22090, + 22090, + null + ], + [ + "delim-token", + "-", + 22091, + 22091, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22092, + 22092, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22093, + 22106, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 22107, + 22107, + null + ], + [ + "hash-token", + "#000", + 22108, + 22111, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22112, + 22112, + null + ], + [ + "delim-token", + "-", + 22113, + 22113, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22114, + 22114, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 22115, + 22125, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 22126, + 22126, + null + ], + [ + "hash-token", + "#cff4fc", + 22127, + 22133, + { + "value": "cff4fc", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22134, + 22134, + null + ], + [ + "delim-token", + "-", + 22135, + 22135, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22136, + 22136, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22137, + 22157, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 22158, + 22158, + null + ], + [ + "hash-token", + "#badce3", + 22159, + 22165, + { + "value": "badce3", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22166, + 22166, + null + ], + [ + "delim-token", + "-", + 22167, + 22167, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22168, + 22168, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 22169, + 22187, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 22188, + 22188, + null + ], + [ + "hash-token", + "#c5e8ef", + 22189, + 22195, + { + "value": "c5e8ef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22196, + 22196, + null + ], + [ + "delim-token", + "-", + 22197, + 22197, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22198, + 22198, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 22199, + 22220, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 22221, + 22221, + null + ], + [ + "hash-token", + "#000", + 22222, + 22225, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22226, + 22226, + null + ], + [ + "delim-token", + "-", + 22227, + 22227, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22228, + 22228, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 22229, + 22246, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 22247, + 22247, + null + ], + [ + "hash-token", + "#badce3", + 22248, + 22254, + { + "value": "badce3", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22255, + 22255, + null + ], + [ + "delim-token", + "-", + 22256, + 22256, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22257, + 22257, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 22258, + 22278, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 22279, + 22279, + null + ], + [ + "hash-token", + "#000", + 22280, + 22283, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22284, + 22284, + null + ], + [ + "delim-token", + "-", + 22285, + 22285, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22286, + 22286, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 22287, + 22303, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 22304, + 22304, + null + ], + [ + "hash-token", + "#bfe2e9", + 22305, + 22311, + { + "value": "bfe2e9", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22312, + 22312, + null + ], + [ + "delim-token", + "-", + 22313, + 22313, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22314, + 22314, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 22315, + 22334, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 22335, + 22335, + null + ], + [ + "hash-token", + "#000", + 22336, + 22339, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22340, + 22340, + null + ], + [ + "ident-token", + "color", + 22341, + 22345, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 22346, + 22346, + null + ], + [ + "function-token", + "var(", + 22347, + 22350, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22351, + 22351, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22352, + 22352, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22353, + 22366, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 22367, + 22367, + null + ], + [ + "semicolon-token", + ";", + 22368, + 22368, + null + ], + [ + "ident-token", + "border-color", + 22369, + 22380, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 22381, + 22381, + null + ], + [ + "function-token", + "var(", + 22382, + 22385, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22386, + 22386, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22387, + 22387, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22388, + 22408, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 22409, + 22409, + null + ], + [ + "}-token", + "}", + 22410, + 22410, + null + ], + [ + "delim-token", + ".", + 22411, + 22411, + { + "value": "." + } + ], + [ + "ident-token", + "table-warning", + 22412, + 22424, + { + "value": "table-warning" + } + ], + [ + "{-token", + "{", + 22425, + 22425, + null + ], + [ + "delim-token", + "-", + 22426, + 22426, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22427, + 22427, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22428, + 22441, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 22442, + 22442, + null + ], + [ + "hash-token", + "#000", + 22443, + 22446, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22447, + 22447, + null + ], + [ + "delim-token", + "-", + 22448, + 22448, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22449, + 22449, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 22450, + 22460, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 22461, + 22461, + null + ], + [ + "hash-token", + "#fff3cd", + 22462, + 22468, + { + "value": "fff3cd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22469, + 22469, + null + ], + [ + "delim-token", + "-", + 22470, + 22470, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22471, + 22471, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22472, + 22492, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 22493, + 22493, + null + ], + [ + "hash-token", + "#e6dbb9", + 22494, + 22500, + { + "value": "e6dbb9", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22501, + 22501, + null + ], + [ + "delim-token", + "-", + 22502, + 22502, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22503, + 22503, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 22504, + 22522, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 22523, + 22523, + null + ], + [ + "hash-token", + "#f2e7c3", + 22524, + 22530, + { + "value": "f2e7c3", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22531, + 22531, + null + ], + [ + "delim-token", + "-", + 22532, + 22532, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22533, + 22533, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 22534, + 22555, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 22556, + 22556, + null + ], + [ + "hash-token", + "#000", + 22557, + 22560, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22561, + 22561, + null + ], + [ + "delim-token", + "-", + 22562, + 22562, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22563, + 22563, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 22564, + 22581, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 22582, + 22582, + null + ], + [ + "hash-token", + "#e6dbb9", + 22583, + 22589, + { + "value": "e6dbb9", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22590, + 22590, + null + ], + [ + "delim-token", + "-", + 22591, + 22591, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22592, + 22592, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 22593, + 22613, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 22614, + 22614, + null + ], + [ + "hash-token", + "#000", + 22615, + 22618, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22619, + 22619, + null + ], + [ + "delim-token", + "-", + 22620, + 22620, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22621, + 22621, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 22622, + 22638, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 22639, + 22639, + null + ], + [ + "hash-token", + "#ece1be", + 22640, + 22646, + { + "value": "ece1be", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22647, + 22647, + null + ], + [ + "delim-token", + "-", + 22648, + 22648, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22649, + 22649, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 22650, + 22669, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 22670, + 22670, + null + ], + [ + "hash-token", + "#000", + 22671, + 22674, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22675, + 22675, + null + ], + [ + "ident-token", + "color", + 22676, + 22680, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 22681, + 22681, + null + ], + [ + "function-token", + "var(", + 22682, + 22685, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22686, + 22686, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22687, + 22687, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22688, + 22701, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 22702, + 22702, + null + ], + [ + "semicolon-token", + ";", + 22703, + 22703, + null + ], + [ + "ident-token", + "border-color", + 22704, + 22715, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 22716, + 22716, + null + ], + [ + "function-token", + "var(", + 22717, + 22720, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 22721, + 22721, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22722, + 22722, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22723, + 22743, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 22744, + 22744, + null + ], + [ + "}-token", + "}", + 22745, + 22745, + null + ], + [ + "delim-token", + ".", + 22746, + 22746, + { + "value": "." + } + ], + [ + "ident-token", + "table-danger", + 22747, + 22758, + { + "value": "table-danger" + } + ], + [ + "{-token", + "{", + 22759, + 22759, + null + ], + [ + "delim-token", + "-", + 22760, + 22760, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22761, + 22761, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 22762, + 22775, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 22776, + 22776, + null + ], + [ + "hash-token", + "#000", + 22777, + 22780, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22781, + 22781, + null + ], + [ + "delim-token", + "-", + 22782, + 22782, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22783, + 22783, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 22784, + 22794, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 22795, + 22795, + null + ], + [ + "hash-token", + "#f8d7da", + 22796, + 22802, + { + "value": "f8d7da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22803, + 22803, + null + ], + [ + "delim-token", + "-", + 22804, + 22804, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22805, + 22805, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 22806, + 22826, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 22827, + 22827, + null + ], + [ + "hash-token", + "#dfc2c4", + 22828, + 22834, + { + "value": "dfc2c4", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22835, + 22835, + null + ], + [ + "delim-token", + "-", + 22836, + 22836, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22837, + 22837, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 22838, + 22856, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 22857, + 22857, + null + ], + [ + "hash-token", + "#eccccf", + 22858, + 22864, + { + "value": "eccccf", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22865, + 22865, + null + ], + [ + "delim-token", + "-", + 22866, + 22866, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22867, + 22867, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 22868, + 22889, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 22890, + 22890, + null + ], + [ + "hash-token", + "#000", + 22891, + 22894, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22895, + 22895, + null + ], + [ + "delim-token", + "-", + 22896, + 22896, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22897, + 22897, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 22898, + 22915, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 22916, + 22916, + null + ], + [ + "hash-token", + "#dfc2c4", + 22917, + 22923, + { + "value": "dfc2c4", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22924, + 22924, + null + ], + [ + "delim-token", + "-", + 22925, + 22925, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22926, + 22926, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 22927, + 22947, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 22948, + 22948, + null + ], + [ + "hash-token", + "#000", + 22949, + 22952, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 22953, + 22953, + null + ], + [ + "delim-token", + "-", + 22954, + 22954, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22955, + 22955, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 22956, + 22972, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 22973, + 22973, + null + ], + [ + "hash-token", + "#e5c7ca", + 22974, + 22980, + { + "value": "e5c7ca", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 22981, + 22981, + null + ], + [ + "delim-token", + "-", + 22982, + 22982, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 22983, + 22983, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 22984, + 23003, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 23004, + 23004, + null + ], + [ + "hash-token", + "#000", + 23005, + 23008, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23009, + 23009, + null + ], + [ + "ident-token", + "color", + 23010, + 23014, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 23015, + 23015, + null + ], + [ + "function-token", + "var(", + 23016, + 23019, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23020, + 23020, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23021, + 23021, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 23022, + 23035, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 23036, + 23036, + null + ], + [ + "semicolon-token", + ";", + 23037, + 23037, + null + ], + [ + "ident-token", + "border-color", + 23038, + 23049, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 23050, + 23050, + null + ], + [ + "function-token", + "var(", + 23051, + 23054, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23055, + 23055, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23056, + 23056, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 23057, + 23077, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 23078, + 23078, + null + ], + [ + "}-token", + "}", + 23079, + 23079, + null + ], + [ + "delim-token", + ".", + 23080, + 23080, + { + "value": "." + } + ], + [ + "ident-token", + "table-light", + 23081, + 23091, + { + "value": "table-light" + } + ], + [ + "{-token", + "{", + 23092, + 23092, + null + ], + [ + "delim-token", + "-", + 23093, + 23093, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23094, + 23094, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 23095, + 23108, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 23109, + 23109, + null + ], + [ + "hash-token", + "#000", + 23110, + 23113, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23114, + 23114, + null + ], + [ + "delim-token", + "-", + 23115, + 23115, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23116, + 23116, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 23117, + 23127, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 23128, + 23128, + null + ], + [ + "hash-token", + "#f8f9fa", + 23129, + 23135, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23136, + 23136, + null + ], + [ + "delim-token", + "-", + 23137, + 23137, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23138, + 23138, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 23139, + 23159, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 23160, + 23160, + null + ], + [ + "hash-token", + "#dfe0e1", + 23161, + 23167, + { + "value": "dfe0e1", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23168, + 23168, + null + ], + [ + "delim-token", + "-", + 23169, + 23169, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23170, + 23170, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 23171, + 23189, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 23190, + 23190, + null + ], + [ + "hash-token", + "#ecedee", + 23191, + 23197, + { + "value": "ecedee", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23198, + 23198, + null + ], + [ + "delim-token", + "-", + 23199, + 23199, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23200, + 23200, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 23201, + 23222, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 23223, + 23223, + null + ], + [ + "hash-token", + "#000", + 23224, + 23227, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23228, + 23228, + null + ], + [ + "delim-token", + "-", + 23229, + 23229, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23230, + 23230, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 23231, + 23248, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 23249, + 23249, + null + ], + [ + "hash-token", + "#dfe0e1", + 23250, + 23256, + { + "value": "dfe0e1", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23257, + 23257, + null + ], + [ + "delim-token", + "-", + 23258, + 23258, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23259, + 23259, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 23260, + 23280, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 23281, + 23281, + null + ], + [ + "hash-token", + "#000", + 23282, + 23285, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23286, + 23286, + null + ], + [ + "delim-token", + "-", + 23287, + 23287, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23288, + 23288, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 23289, + 23305, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 23306, + 23306, + null + ], + [ + "hash-token", + "#e5e6e7", + 23307, + 23313, + { + "value": "e5e6e7", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23314, + 23314, + null + ], + [ + "delim-token", + "-", + 23315, + 23315, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23316, + 23316, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 23317, + 23336, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 23337, + 23337, + null + ], + [ + "hash-token", + "#000", + 23338, + 23341, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23342, + 23342, + null + ], + [ + "ident-token", + "color", + 23343, + 23347, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 23348, + 23348, + null + ], + [ + "function-token", + "var(", + 23349, + 23352, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23353, + 23353, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23354, + 23354, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 23355, + 23368, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 23369, + 23369, + null + ], + [ + "semicolon-token", + ";", + 23370, + 23370, + null + ], + [ + "ident-token", + "border-color", + 23371, + 23382, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 23383, + 23383, + null + ], + [ + "function-token", + "var(", + 23384, + 23387, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23388, + 23388, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23389, + 23389, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 23390, + 23410, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 23411, + 23411, + null + ], + [ + "}-token", + "}", + 23412, + 23412, + null + ], + [ + "delim-token", + ".", + 23413, + 23413, + { + "value": "." + } + ], + [ + "ident-token", + "table-dark", + 23414, + 23423, + { + "value": "table-dark" + } + ], + [ + "{-token", + "{", + 23424, + 23424, + null + ], + [ + "delim-token", + "-", + 23425, + 23425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23426, + 23426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 23427, + 23440, + { + "value": "bs-table-color" + } + ], + [ + "colon-token", + ":", + 23441, + 23441, + null + ], + [ + "hash-token", + "#fff", + 23442, + 23445, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23446, + 23446, + null + ], + [ + "delim-token", + "-", + 23447, + 23447, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23448, + 23448, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-bg", + 23449, + 23459, + { + "value": "bs-table-bg" + } + ], + [ + "colon-token", + ":", + 23460, + 23460, + null + ], + [ + "hash-token", + "#212529", + 23461, + 23467, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23468, + 23468, + null + ], + [ + "delim-token", + "-", + 23469, + 23469, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23470, + 23470, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 23471, + 23491, + { + "value": "bs-table-border-color" + } + ], + [ + "colon-token", + ":", + 23492, + 23492, + null + ], + [ + "hash-token", + "#373b3e", + 23493, + 23499, + { + "value": "373b3e", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23500, + 23500, + null + ], + [ + "delim-token", + "-", + 23501, + 23501, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23502, + 23502, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-bg", + 23503, + 23521, + { + "value": "bs-table-striped-bg" + } + ], + [ + "colon-token", + ":", + 23522, + 23522, + null + ], + [ + "hash-token", + "#2c3034", + 23523, + 23529, + { + "value": "2c3034", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23530, + 23530, + null + ], + [ + "delim-token", + "-", + 23531, + 23531, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23532, + 23532, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-striped-color", + 23533, + 23554, + { + "value": "bs-table-striped-color" + } + ], + [ + "colon-token", + ":", + 23555, + 23555, + null + ], + [ + "hash-token", + "#fff", + 23556, + 23559, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23560, + 23560, + null + ], + [ + "delim-token", + "-", + 23561, + 23561, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23562, + 23562, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-bg", + 23563, + 23580, + { + "value": "bs-table-active-bg" + } + ], + [ + "colon-token", + ":", + 23581, + 23581, + null + ], + [ + "hash-token", + "#373b3e", + 23582, + 23588, + { + "value": "373b3e", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23589, + 23589, + null + ], + [ + "delim-token", + "-", + 23590, + 23590, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23591, + 23591, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-active-color", + 23592, + 23612, + { + "value": "bs-table-active-color" + } + ], + [ + "colon-token", + ":", + 23613, + 23613, + null + ], + [ + "hash-token", + "#fff", + 23614, + 23617, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23618, + 23618, + null + ], + [ + "delim-token", + "-", + 23619, + 23619, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23620, + 23620, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-bg", + 23621, + 23637, + { + "value": "bs-table-hover-bg" + } + ], + [ + "colon-token", + ":", + 23638, + 23638, + null + ], + [ + "hash-token", + "#323539", + 23639, + 23645, + { + "value": "323539", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 23646, + 23646, + null + ], + [ + "delim-token", + "-", + 23647, + 23647, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23648, + 23648, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-hover-color", + 23649, + 23668, + { + "value": "bs-table-hover-color" + } + ], + [ + "colon-token", + ":", + 23669, + 23669, + null + ], + [ + "hash-token", + "#fff", + 23670, + 23673, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 23674, + 23674, + null + ], + [ + "ident-token", + "color", + 23675, + 23679, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 23680, + 23680, + null + ], + [ + "function-token", + "var(", + 23681, + 23684, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23685, + 23685, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23686, + 23686, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-color", + 23687, + 23700, + { + "value": "bs-table-color" + } + ], + [ + ")-token", + ")", + 23701, + 23701, + null + ], + [ + "semicolon-token", + ";", + 23702, + 23702, + null + ], + [ + "ident-token", + "border-color", + 23703, + 23714, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 23715, + 23715, + null + ], + [ + "function-token", + "var(", + 23716, + 23719, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 23720, + 23720, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 23721, + 23721, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-table-border-color", + 23722, + 23742, + { + "value": "bs-table-border-color" + } + ], + [ + ")-token", + ")", + 23743, + 23743, + null + ], + [ + "}-token", + "}", + 23744, + 23744, + null + ], + [ + "delim-token", + ".", + 23745, + 23745, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive", + 23746, + 23761, + { + "value": "table-responsive" + } + ], + [ + "{-token", + "{", + 23762, + 23762, + null + ], + [ + "ident-token", + "overflow-x", + 23763, + 23772, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 23773, + 23773, + null + ], + [ + "ident-token", + "auto", + 23774, + 23777, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 23778, + 23778, + null + ], + [ + "delim-token", + "-", + 23779, + 23779, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 23780, + 23804, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 23805, + 23805, + null + ], + [ + "ident-token", + "touch", + 23806, + 23810, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 23811, + 23811, + null + ], + [ + "at-keyword-token", + "@media", + 23812, + 23817, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 23818, + 23818, + null + ], + [ + "(-token", + "(", + 23819, + 23819, + null + ], + [ + "ident-token", + "max-width", + 23820, + 23828, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 23829, + 23829, + null + ], + [ + "dimension-token", + "575.98px", + 23830, + 23837, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 23838, + 23838, + null + ], + [ + "{-token", + "{", + 23839, + 23839, + null + ], + [ + "delim-token", + ".", + 23840, + 23840, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive-sm", + 23841, + 23859, + { + "value": "table-responsive-sm" + } + ], + [ + "{-token", + "{", + 23860, + 23860, + null + ], + [ + "ident-token", + "overflow-x", + 23861, + 23870, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 23871, + 23871, + null + ], + [ + "ident-token", + "auto", + 23872, + 23875, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 23876, + 23876, + null + ], + [ + "delim-token", + "-", + 23877, + 23877, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 23878, + 23902, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 23903, + 23903, + null + ], + [ + "ident-token", + "touch", + 23904, + 23908, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 23909, + 23909, + null + ], + [ + "}-token", + "}", + 23910, + 23910, + null + ], + [ + "at-keyword-token", + "@media", + 23911, + 23916, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 23917, + 23917, + null + ], + [ + "(-token", + "(", + 23918, + 23918, + null + ], + [ + "ident-token", + "max-width", + 23919, + 23927, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 23928, + 23928, + null + ], + [ + "dimension-token", + "767.98px", + 23929, + 23936, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 23937, + 23937, + null + ], + [ + "{-token", + "{", + 23938, + 23938, + null + ], + [ + "delim-token", + ".", + 23939, + 23939, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive-md", + 23940, + 23958, + { + "value": "table-responsive-md" + } + ], + [ + "{-token", + "{", + 23959, + 23959, + null + ], + [ + "ident-token", + "overflow-x", + 23960, + 23969, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 23970, + 23970, + null + ], + [ + "ident-token", + "auto", + 23971, + 23974, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 23975, + 23975, + null + ], + [ + "delim-token", + "-", + 23976, + 23976, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 23977, + 24001, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 24002, + 24002, + null + ], + [ + "ident-token", + "touch", + 24003, + 24007, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 24008, + 24008, + null + ], + [ + "}-token", + "}", + 24009, + 24009, + null + ], + [ + "at-keyword-token", + "@media", + 24010, + 24015, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 24016, + 24016, + null + ], + [ + "(-token", + "(", + 24017, + 24017, + null + ], + [ + "ident-token", + "max-width", + 24018, + 24026, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 24027, + 24027, + null + ], + [ + "dimension-token", + "991.98px", + 24028, + 24035, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24036, + 24036, + null + ], + [ + "{-token", + "{", + 24037, + 24037, + null + ], + [ + "delim-token", + ".", + 24038, + 24038, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive-lg", + 24039, + 24057, + { + "value": "table-responsive-lg" + } + ], + [ + "{-token", + "{", + 24058, + 24058, + null + ], + [ + "ident-token", + "overflow-x", + 24059, + 24068, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 24069, + 24069, + null + ], + [ + "ident-token", + "auto", + 24070, + 24073, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 24074, + 24074, + null + ], + [ + "delim-token", + "-", + 24075, + 24075, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 24076, + 24100, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 24101, + 24101, + null + ], + [ + "ident-token", + "touch", + 24102, + 24106, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 24107, + 24107, + null + ], + [ + "}-token", + "}", + 24108, + 24108, + null + ], + [ + "at-keyword-token", + "@media", + 24109, + 24114, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 24115, + 24115, + null + ], + [ + "(-token", + "(", + 24116, + 24116, + null + ], + [ + "ident-token", + "max-width", + 24117, + 24125, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 24126, + 24126, + null + ], + [ + "dimension-token", + "1199.98px", + 24127, + 24135, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24136, + 24136, + null + ], + [ + "{-token", + "{", + 24137, + 24137, + null + ], + [ + "delim-token", + ".", + 24138, + 24138, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive-xl", + 24139, + 24157, + { + "value": "table-responsive-xl" + } + ], + [ + "{-token", + "{", + 24158, + 24158, + null + ], + [ + "ident-token", + "overflow-x", + 24159, + 24168, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 24169, + 24169, + null + ], + [ + "ident-token", + "auto", + 24170, + 24173, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 24174, + 24174, + null + ], + [ + "delim-token", + "-", + 24175, + 24175, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 24176, + 24200, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 24201, + 24201, + null + ], + [ + "ident-token", + "touch", + 24202, + 24206, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 24207, + 24207, + null + ], + [ + "}-token", + "}", + 24208, + 24208, + null + ], + [ + "at-keyword-token", + "@media", + 24209, + 24214, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 24215, + 24215, + null + ], + [ + "(-token", + "(", + 24216, + 24216, + null + ], + [ + "ident-token", + "max-width", + 24217, + 24225, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 24226, + 24226, + null + ], + [ + "dimension-token", + "1399.98px", + 24227, + 24235, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24236, + 24236, + null + ], + [ + "{-token", + "{", + 24237, + 24237, + null + ], + [ + "delim-token", + ".", + 24238, + 24238, + { + "value": "." + } + ], + [ + "ident-token", + "table-responsive-xxl", + 24239, + 24258, + { + "value": "table-responsive-xxl" + } + ], + [ + "{-token", + "{", + 24259, + 24259, + null + ], + [ + "ident-token", + "overflow-x", + 24260, + 24269, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 24270, + 24270, + null + ], + [ + "ident-token", + "auto", + 24271, + 24274, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 24275, + 24275, + null + ], + [ + "delim-token", + "-", + 24276, + 24276, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-overflow-scrolling", + 24277, + 24301, + { + "value": "webkit-overflow-scrolling" + } + ], + [ + "colon-token", + ":", + 24302, + 24302, + null + ], + [ + "ident-token", + "touch", + 24303, + 24307, + { + "value": "touch" + } + ], + [ + "}-token", + "}", + 24308, + 24308, + null + ], + [ + "}-token", + "}", + 24309, + 24309, + null + ], + [ + "delim-token", + ".", + 24310, + 24310, + { + "value": "." + } + ], + [ + "ident-token", + "form-label", + 24311, + 24320, + { + "value": "form-label" + } + ], + [ + "{-token", + "{", + 24321, + 24321, + null + ], + [ + "ident-token", + "margin-bottom", + 24322, + 24334, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 24335, + 24335, + null + ], + [ + "dimension-token", + ".5rem", + 24336, + 24340, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 24341, + 24341, + null + ], + [ + "delim-token", + ".", + 24342, + 24342, + { + "value": "." + } + ], + [ + "ident-token", + "col-form-label", + 24343, + 24356, + { + "value": "col-form-label" + } + ], + [ + "{-token", + "{", + 24357, + 24357, + null + ], + [ + "ident-token", + "padding-top", + 24358, + 24368, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 24369, + 24369, + null + ], + [ + "function-token", + "calc(", + 24370, + 24374, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375rem", + 24375, + 24381, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24382, + 24382, + null + ], + [ + "delim-token", + "+", + 24383, + 24383, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24384, + 24384, + null + ], + [ + "dimension-token", + "1px", + 24385, + 24387, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24388, + 24388, + null + ], + [ + "semicolon-token", + ";", + 24389, + 24389, + null + ], + [ + "ident-token", + "padding-bottom", + 24390, + 24403, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 24404, + 24404, + null + ], + [ + "function-token", + "calc(", + 24405, + 24409, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375rem", + 24410, + 24416, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24417, + 24417, + null + ], + [ + "delim-token", + "+", + 24418, + 24418, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24419, + 24419, + null + ], + [ + "dimension-token", + "1px", + 24420, + 24422, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24423, + 24423, + null + ], + [ + "semicolon-token", + ";", + 24424, + 24424, + null + ], + [ + "ident-token", + "margin-bottom", + 24425, + 24437, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 24438, + 24438, + null + ], + [ + "number-token", + "0", + 24439, + 24439, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 24440, + 24440, + null + ], + [ + "ident-token", + "font-size", + 24441, + 24449, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 24450, + 24450, + null + ], + [ + "ident-token", + "inherit", + 24451, + 24457, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 24458, + 24458, + null + ], + [ + "ident-token", + "line-height", + 24459, + 24469, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 24470, + 24470, + null + ], + [ + "number-token", + "1.5", + 24471, + 24473, + { + "value": 1.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 24474, + 24474, + null + ], + [ + "delim-token", + ".", + 24475, + 24475, + { + "value": "." + } + ], + [ + "ident-token", + "col-form-label-lg", + 24476, + 24492, + { + "value": "col-form-label-lg" + } + ], + [ + "{-token", + "{", + 24493, + 24493, + null + ], + [ + "ident-token", + "padding-top", + 24494, + 24504, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 24505, + 24505, + null + ], + [ + "function-token", + "calc(", + 24506, + 24510, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".5rem", + 24511, + 24515, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24516, + 24516, + null + ], + [ + "delim-token", + "+", + 24517, + 24517, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24518, + 24518, + null + ], + [ + "dimension-token", + "1px", + 24519, + 24521, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24522, + 24522, + null + ], + [ + "semicolon-token", + ";", + 24523, + 24523, + null + ], + [ + "ident-token", + "padding-bottom", + 24524, + 24537, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 24538, + 24538, + null + ], + [ + "function-token", + "calc(", + 24539, + 24543, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".5rem", + 24544, + 24548, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24549, + 24549, + null + ], + [ + "delim-token", + "+", + 24550, + 24550, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24551, + 24551, + null + ], + [ + "dimension-token", + "1px", + 24552, + 24554, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24555, + 24555, + null + ], + [ + "semicolon-token", + ";", + 24556, + 24556, + null + ], + [ + "ident-token", + "font-size", + 24557, + 24565, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 24566, + 24566, + null + ], + [ + "dimension-token", + "1.25rem", + 24567, + 24573, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 24574, + 24574, + null + ], + [ + "delim-token", + ".", + 24575, + 24575, + { + "value": "." + } + ], + [ + "ident-token", + "col-form-label-sm", + 24576, + 24592, + { + "value": "col-form-label-sm" + } + ], + [ + "{-token", + "{", + 24593, + 24593, + null + ], + [ + "ident-token", + "padding-top", + 24594, + 24604, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 24605, + 24605, + null + ], + [ + "function-token", + "calc(", + 24606, + 24610, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".25rem", + 24611, + 24616, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24617, + 24617, + null + ], + [ + "delim-token", + "+", + 24618, + 24618, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24619, + 24619, + null + ], + [ + "dimension-token", + "1px", + 24620, + 24622, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24623, + 24623, + null + ], + [ + "semicolon-token", + ";", + 24624, + 24624, + null + ], + [ + "ident-token", + "padding-bottom", + 24625, + 24638, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 24639, + 24639, + null + ], + [ + "function-token", + "calc(", + 24640, + 24644, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".25rem", + 24645, + 24650, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24651, + 24651, + null + ], + [ + "delim-token", + "+", + 24652, + 24652, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 24653, + 24653, + null + ], + [ + "dimension-token", + "1px", + 24654, + 24656, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24657, + 24657, + null + ], + [ + "semicolon-token", + ";", + 24658, + 24658, + null + ], + [ + "ident-token", + "font-size", + 24659, + 24667, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 24668, + 24668, + null + ], + [ + "dimension-token", + ".875rem", + 24669, + 24675, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 24676, + 24676, + null + ], + [ + "delim-token", + ".", + 24677, + 24677, + { + "value": "." + } + ], + [ + "ident-token", + "form-text", + 24678, + 24686, + { + "value": "form-text" + } + ], + [ + "{-token", + "{", + 24687, + 24687, + null + ], + [ + "ident-token", + "margin-top", + 24688, + 24697, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 24698, + 24698, + null + ], + [ + "dimension-token", + ".25rem", + 24699, + 24704, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 24705, + 24705, + null + ], + [ + "ident-token", + "font-size", + 24706, + 24714, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 24715, + 24715, + null + ], + [ + "dimension-token", + ".875em", + 24716, + 24721, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 24722, + 24722, + null + ], + [ + "ident-token", + "color", + 24723, + 24727, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 24728, + 24728, + null + ], + [ + "hash-token", + "#6c757d", + 24729, + 24735, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 24736, + 24736, + null + ], + [ + "delim-token", + ".", + 24737, + 24737, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 24738, + 24749, + { + "value": "form-control" + } + ], + [ + "{-token", + "{", + 24750, + 24750, + null + ], + [ + "ident-token", + "display", + 24751, + 24757, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 24758, + 24758, + null + ], + [ + "ident-token", + "block", + 24759, + 24763, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 24764, + 24764, + null + ], + [ + "ident-token", + "width", + 24765, + 24769, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 24770, + 24770, + null + ], + [ + "percentage-token", + "100%", + 24771, + 24774, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 24775, + 24775, + null + ], + [ + "ident-token", + "padding", + 24776, + 24782, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 24783, + 24783, + null + ], + [ + "dimension-token", + ".375rem", + 24784, + 24790, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 24791, + 24791, + null + ], + [ + "dimension-token", + ".75rem", + 24792, + 24797, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 24798, + 24798, + null + ], + [ + "ident-token", + "font-size", + 24799, + 24807, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 24808, + 24808, + null + ], + [ + "dimension-token", + "1rem", + 24809, + 24812, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 24813, + 24813, + null + ], + [ + "ident-token", + "font-weight", + 24814, + 24824, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 24825, + 24825, + null + ], + [ + "number-token", + "400", + 24826, + 24828, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 24829, + 24829, + null + ], + [ + "ident-token", + "line-height", + 24830, + 24840, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 24841, + 24841, + null + ], + [ + "number-token", + "1.5", + 24842, + 24844, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 24845, + 24845, + null + ], + [ + "ident-token", + "color", + 24846, + 24850, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 24851, + 24851, + null + ], + [ + "hash-token", + "#212529", + 24852, + 24858, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 24859, + 24859, + null + ], + [ + "ident-token", + "background-color", + 24860, + 24875, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 24876, + 24876, + null + ], + [ + "hash-token", + "#fff", + 24877, + 24880, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 24881, + 24881, + null + ], + [ + "ident-token", + "background-clip", + 24882, + 24896, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 24897, + 24897, + null + ], + [ + "ident-token", + "padding-box", + 24898, + 24908, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 24909, + 24909, + null + ], + [ + "ident-token", + "border", + 24910, + 24915, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 24916, + 24916, + null + ], + [ + "dimension-token", + "1px", + 24917, + 24919, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 24920, + 24920, + null + ], + [ + "ident-token", + "solid", + 24921, + 24925, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 24926, + 24926, + null + ], + [ + "hash-token", + "#ced4da", + 24927, + 24933, + { + "value": "ced4da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 24934, + 24934, + null + ], + [ + "delim-token", + "-", + 24935, + 24935, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 24936, + 24952, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 24953, + 24953, + null + ], + [ + "ident-token", + "none", + 24954, + 24957, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 24958, + 24958, + null + ], + [ + "delim-token", + "-", + 24959, + 24959, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-appearance", + 24960, + 24973, + { + "value": "moz-appearance" + } + ], + [ + "colon-token", + ":", + 24974, + 24974, + null + ], + [ + "ident-token", + "none", + 24975, + 24978, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 24979, + 24979, + null + ], + [ + "ident-token", + "appearance", + 24980, + 24989, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 24990, + 24990, + null + ], + [ + "ident-token", + "none", + 24991, + 24994, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 24995, + 24995, + null + ], + [ + "ident-token", + "border-radius", + 24996, + 25008, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 25009, + 25009, + null + ], + [ + "dimension-token", + ".375rem", + 25010, + 25016, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 25017, + 25017, + null + ], + [ + "ident-token", + "transition", + 25018, + 25027, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 25028, + 25028, + null + ], + [ + "ident-token", + "border-color", + 25029, + 25040, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 25041, + 25041, + null + ], + [ + "dimension-token", + ".15s", + 25042, + 25045, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 25046, + 25046, + null + ], + [ + "ident-token", + "ease-in-out", + 25047, + 25057, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 25058, + 25058, + null + ], + [ + "ident-token", + "box-shadow", + 25059, + 25068, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 25069, + 25069, + null + ], + [ + "dimension-token", + ".15s", + 25070, + 25073, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 25074, + 25074, + null + ], + [ + "ident-token", + "ease-in-out", + 25075, + 25085, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 25086, + 25086, + null + ], + [ + "at-keyword-token", + "@media", + 25087, + 25092, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 25093, + 25093, + null + ], + [ + "(-token", + "(", + 25094, + 25094, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 25095, + 25116, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 25117, + 25117, + null + ], + [ + "ident-token", + "reduce", + 25118, + 25123, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 25124, + 25124, + null + ], + [ + "{-token", + "{", + 25125, + 25125, + null + ], + [ + "delim-token", + ".", + 25126, + 25126, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25127, + 25138, + { + "value": "form-control" + } + ], + [ + "{-token", + "{", + 25139, + 25139, + null + ], + [ + "ident-token", + "transition", + 25140, + 25149, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 25150, + 25150, + null + ], + [ + "ident-token", + "none", + 25151, + 25154, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 25155, + 25155, + null + ], + [ + "}-token", + "}", + 25156, + 25156, + null + ], + [ + "delim-token", + ".", + 25157, + 25157, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25158, + 25169, + { + "value": "form-control" + } + ], + [ + "[-token", + "[", + 25170, + 25170, + null + ], + [ + "ident-token", + "type", + 25171, + 25174, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 25175, + 25175, + { + "value": "=" + } + ], + [ + "ident-token", + "file", + 25176, + 25179, + { + "value": "file" + } + ], + [ + "]-token", + "]", + 25180, + 25180, + null + ], + [ + "{-token", + "{", + 25181, + 25181, + null + ], + [ + "ident-token", + "overflow", + 25182, + 25189, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 25190, + 25190, + null + ], + [ + "ident-token", + "hidden", + 25191, + 25196, + { + "value": "hidden" + } + ], + [ + "}-token", + "}", + 25197, + 25197, + null + ], + [ + "delim-token", + ".", + 25198, + 25198, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25199, + 25210, + { + "value": "form-control" + } + ], + [ + "[-token", + "[", + 25211, + 25211, + null + ], + [ + "ident-token", + "type", + 25212, + 25215, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 25216, + 25216, + { + "value": "=" + } + ], + [ + "ident-token", + "file", + 25217, + 25220, + { + "value": "file" + } + ], + [ + "]-token", + "]", + 25221, + 25221, + null + ], + [ + "colon-token", + ":", + 25222, + 25222, + null + ], + [ + "function-token", + "not(", + 25223, + 25226, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 25227, + 25227, + null + ], + [ + "ident-token", + "disabled", + 25228, + 25235, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 25236, + 25236, + null + ], + [ + "colon-token", + ":", + 25237, + 25237, + null + ], + [ + "function-token", + "not(", + 25238, + 25241, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 25242, + 25242, + null + ], + [ + "ident-token", + "readonly", + 25243, + 25250, + { + "value": "readonly" + } + ], + [ + "]-token", + "]", + 25251, + 25251, + null + ], + [ + ")-token", + ")", + 25252, + 25252, + null + ], + [ + "{-token", + "{", + 25253, + 25253, + null + ], + [ + "ident-token", + "cursor", + 25254, + 25259, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 25260, + 25260, + null + ], + [ + "ident-token", + "pointer", + 25261, + 25267, + { + "value": "pointer" + } + ], + [ + "}-token", + "}", + 25268, + 25268, + null + ], + [ + "delim-token", + ".", + 25269, + 25269, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25270, + 25281, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25282, + 25282, + null + ], + [ + "ident-token", + "focus", + 25283, + 25287, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 25288, + 25288, + null + ], + [ + "ident-token", + "color", + 25289, + 25293, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 25294, + 25294, + null + ], + [ + "hash-token", + "#212529", + 25295, + 25301, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 25302, + 25302, + null + ], + [ + "ident-token", + "background-color", + 25303, + 25318, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 25319, + 25319, + null + ], + [ + "hash-token", + "#fff", + 25320, + 25323, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 25324, + 25324, + null + ], + [ + "ident-token", + "border-color", + 25325, + 25336, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 25337, + 25337, + null + ], + [ + "hash-token", + "#86b7fe", + 25338, + 25344, + { + "value": "86b7fe", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 25345, + 25345, + null + ], + [ + "ident-token", + "outline", + 25346, + 25352, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 25353, + 25353, + null + ], + [ + "number-token", + "0", + 25354, + 25354, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 25355, + 25355, + null + ], + [ + "ident-token", + "box-shadow", + 25356, + 25365, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 25366, + 25366, + null + ], + [ + "number-token", + "0", + 25367, + 25367, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 25368, + 25368, + null + ], + [ + "number-token", + "0", + 25369, + 25369, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 25370, + 25370, + null + ], + [ + "number-token", + "0", + 25371, + 25371, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 25372, + 25372, + null + ], + [ + "dimension-token", + ".25rem", + 25373, + 25378, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 25379, + 25379, + null + ], + [ + "function-token", + "rgba(", + 25380, + 25384, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 25385, + 25386, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 25387, + 25387, + null + ], + [ + "number-token", + "110", + 25388, + 25390, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 25391, + 25391, + null + ], + [ + "number-token", + "253", + 25392, + 25394, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 25395, + 25395, + null + ], + [ + "number-token", + ".25", + 25396, + 25398, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 25399, + 25399, + null + ], + [ + "}-token", + "}", + 25400, + 25400, + null + ], + [ + "delim-token", + ".", + 25401, + 25401, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25402, + 25413, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25414, + 25414, + null + ], + [ + "colon-token", + ":", + 25415, + 25415, + null + ], + [ + "delim-token", + "-", + 25416, + 25416, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-date-and-time-value", + 25417, + 25442, + { + "value": "webkit-date-and-time-value" + } + ], + [ + "{-token", + "{", + 25443, + 25443, + null + ], + [ + "ident-token", + "height", + 25444, + 25449, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 25450, + 25450, + null + ], + [ + "dimension-token", + "1.5em", + 25451, + 25455, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 25456, + 25456, + null + ], + [ + "delim-token", + ".", + 25457, + 25457, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25458, + 25469, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25470, + 25470, + null + ], + [ + "colon-token", + ":", + 25471, + 25471, + null + ], + [ + "delim-token", + "-", + 25472, + 25472, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder", + 25473, + 25487, + { + "value": "moz-placeholder" + } + ], + [ + "{-token", + "{", + 25488, + 25488, + null + ], + [ + "ident-token", + "color", + 25489, + 25493, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 25494, + 25494, + null + ], + [ + "hash-token", + "#6c757d", + 25495, + 25501, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 25502, + 25502, + null + ], + [ + "ident-token", + "opacity", + 25503, + 25509, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 25510, + 25510, + null + ], + [ + "number-token", + "1", + 25511, + 25511, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 25512, + 25512, + null + ], + [ + "delim-token", + ".", + 25513, + 25513, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25514, + 25525, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25526, + 25526, + null + ], + [ + "colon-token", + ":", + 25527, + 25527, + null + ], + [ + "ident-token", + "placeholder", + 25528, + 25538, + { + "value": "placeholder" + } + ], + [ + "{-token", + "{", + 25539, + 25539, + null + ], + [ + "ident-token", + "color", + 25540, + 25544, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 25545, + 25545, + null + ], + [ + "hash-token", + "#6c757d", + 25546, + 25552, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 25553, + 25553, + null + ], + [ + "ident-token", + "opacity", + 25554, + 25560, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 25561, + 25561, + null + ], + [ + "number-token", + "1", + 25562, + 25562, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 25563, + 25563, + null + ], + [ + "delim-token", + ".", + 25564, + 25564, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25565, + 25576, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25577, + 25577, + null + ], + [ + "ident-token", + "disabled", + 25578, + 25585, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 25586, + 25586, + null + ], + [ + "ident-token", + "background-color", + 25587, + 25602, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 25603, + 25603, + null + ], + [ + "hash-token", + "#e9ecef", + 25604, + 25610, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 25611, + 25611, + null + ], + [ + "ident-token", + "opacity", + 25612, + 25618, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 25619, + 25619, + null + ], + [ + "number-token", + "1", + 25620, + 25620, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 25621, + 25621, + null + ], + [ + "delim-token", + ".", + 25622, + 25622, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 25623, + 25634, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 25635, + 25635, + null + ], + [ + "colon-token", + ":", + 25636, + 25636, + null + ], + [ + "delim-token", + "-", + 25637, + 25637, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 25638, + 25662, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 25663, + 25663, + null + ], + [ + "ident-token", + "padding", + 25664, + 25670, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 25671, + 25671, + null + ], + [ + "dimension-token", + ".375rem", + 25672, + 25678, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 25679, + 25679, + null + ], + [ + "dimension-token", + ".75rem", + 25680, + 25685, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 25686, + 25686, + null + ], + [ + "ident-token", + "margin", + 25687, + 25692, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 25693, + 25693, + null + ], + [ + "dimension-token", + "-.375rem", + 25694, + 25701, + { + "value": -0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 25702, + 25702, + null + ], + [ + "dimension-token", + "-.75rem", + 25703, + 25709, + { + "value": -0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 25710, + 25710, + null + ], + [ + "delim-token", + "-", + 25711, + 25711, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 25712, + 25728, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 25729, + 25729, + null + ], + [ + "dimension-token", + ".75rem", + 25730, + 25735, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 25736, + 25736, + null + ], + [ + "ident-token", + "margin-inline-end", + 25737, + 25753, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 25754, + 25754, + null + ], + [ + "dimension-token", + ".75rem", + 25755, + 25760, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 25761, + 25761, + null + ], + [ + "ident-token", + "color", + 25762, + 25766, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 25767, + 25767, + null + ], + [ + "hash-token", + "#212529", + 25768, + 25774, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 25775, + 25775, + null + ], + [ + "ident-token", + "background-color", + 25776, + 25791, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 25792, + 25792, + null + ], + [ + "hash-token", + "#e9ecef", + 25793, + 25799, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 25800, + 25800, + null + ], + [ + "ident-token", + "pointer-events", + 25801, + 25814, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 25815, + 25815, + null + ], + [ + "ident-token", + "none", + 25816, + 25819, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 25820, + 25820, + null + ], + [ + "ident-token", + "border-color", + 25821, + 25832, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 25833, + 25833, + null + ], + [ + "ident-token", + "inherit", + 25834, + 25840, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 25841, + 25841, + null + ], + [ + "ident-token", + "border-style", + 25842, + 25853, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 25854, + 25854, + null + ], + [ + "ident-token", + "solid", + 25855, + 25859, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 25860, + 25860, + null + ], + [ + "ident-token", + "border-width", + 25861, + 25872, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 25873, + 25873, + null + ], + [ + "number-token", + "0", + 25874, + 25874, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 25875, + 25875, + null + ], + [ + "ident-token", + "border-inline-end-width", + 25876, + 25898, + { + "value": "border-inline-end-width" + } + ], + [ + "colon-token", + ":", + 25899, + 25899, + null + ], + [ + "dimension-token", + "1px", + 25900, + 25902, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 25903, + 25903, + null + ], + [ + "ident-token", + "border-radius", + 25904, + 25916, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 25917, + 25917, + null + ], + [ + "number-token", + "0", + 25918, + 25918, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 25919, + 25919, + null + ], + [ + "delim-token", + "-", + 25920, + 25920, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-transition", + 25921, + 25937, + { + "value": "webkit-transition" + } + ], + [ + "colon-token", + ":", + 25938, + 25938, + null + ], + [ + "ident-token", + "color", + 25939, + 25943, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 25944, + 25944, + null + ], + [ + "dimension-token", + ".15s", + 25945, + 25948, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 25949, + 25949, + null + ], + [ + "ident-token", + "ease-in-out", + 25950, + 25960, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 25961, + 25961, + null + ], + [ + "ident-token", + "background-color", + 25962, + 25977, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 25978, + 25978, + null + ], + [ + "dimension-token", + ".15s", + 25979, + 25982, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 25983, + 25983, + null + ], + [ + "ident-token", + "ease-in-out", + 25984, + 25994, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 25995, + 25995, + null + ], + [ + "ident-token", + "border-color", + 25996, + 26007, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 26008, + 26008, + null + ], + [ + "dimension-token", + ".15s", + 26009, + 26012, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26013, + 26013, + null + ], + [ + "ident-token", + "ease-in-out", + 26014, + 26024, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26025, + 26025, + null + ], + [ + "ident-token", + "box-shadow", + 26026, + 26035, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 26036, + 26036, + null + ], + [ + "dimension-token", + ".15s", + 26037, + 26040, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26041, + 26041, + null + ], + [ + "ident-token", + "ease-in-out", + 26042, + 26052, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 26053, + 26053, + null + ], + [ + "ident-token", + "transition", + 26054, + 26063, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 26064, + 26064, + null + ], + [ + "ident-token", + "color", + 26065, + 26069, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 26070, + 26070, + null + ], + [ + "dimension-token", + ".15s", + 26071, + 26074, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26075, + 26075, + null + ], + [ + "ident-token", + "ease-in-out", + 26076, + 26086, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26087, + 26087, + null + ], + [ + "ident-token", + "background-color", + 26088, + 26103, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 26104, + 26104, + null + ], + [ + "dimension-token", + ".15s", + 26105, + 26108, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26109, + 26109, + null + ], + [ + "ident-token", + "ease-in-out", + 26110, + 26120, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26121, + 26121, + null + ], + [ + "ident-token", + "border-color", + 26122, + 26133, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 26134, + 26134, + null + ], + [ + "dimension-token", + ".15s", + 26135, + 26138, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26139, + 26139, + null + ], + [ + "ident-token", + "ease-in-out", + 26140, + 26150, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26151, + 26151, + null + ], + [ + "ident-token", + "box-shadow", + 26152, + 26161, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 26162, + 26162, + null + ], + [ + "dimension-token", + ".15s", + 26163, + 26166, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26167, + 26167, + null + ], + [ + "ident-token", + "ease-in-out", + 26168, + 26178, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 26179, + 26179, + null + ], + [ + "delim-token", + ".", + 26180, + 26180, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 26181, + 26192, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 26193, + 26193, + null + ], + [ + "colon-token", + ":", + 26194, + 26194, + null + ], + [ + "ident-token", + "file-selector-button", + 26195, + 26214, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 26215, + 26215, + null + ], + [ + "ident-token", + "padding", + 26216, + 26222, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 26223, + 26223, + null + ], + [ + "dimension-token", + ".375rem", + 26224, + 26230, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 26231, + 26231, + null + ], + [ + "dimension-token", + ".75rem", + 26232, + 26237, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 26238, + 26238, + null + ], + [ + "ident-token", + "margin", + 26239, + 26244, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 26245, + 26245, + null + ], + [ + "dimension-token", + "-.375rem", + 26246, + 26253, + { + "value": -0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 26254, + 26254, + null + ], + [ + "dimension-token", + "-.75rem", + 26255, + 26261, + { + "value": -0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 26262, + 26262, + null + ], + [ + "delim-token", + "-", + 26263, + 26263, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 26264, + 26280, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 26281, + 26281, + null + ], + [ + "dimension-token", + ".75rem", + 26282, + 26287, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 26288, + 26288, + null + ], + [ + "ident-token", + "margin-inline-end", + 26289, + 26305, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 26306, + 26306, + null + ], + [ + "dimension-token", + ".75rem", + 26307, + 26312, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 26313, + 26313, + null + ], + [ + "ident-token", + "color", + 26314, + 26318, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 26319, + 26319, + null + ], + [ + "hash-token", + "#212529", + 26320, + 26326, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 26327, + 26327, + null + ], + [ + "ident-token", + "background-color", + 26328, + 26343, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 26344, + 26344, + null + ], + [ + "hash-token", + "#e9ecef", + 26345, + 26351, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 26352, + 26352, + null + ], + [ + "ident-token", + "pointer-events", + 26353, + 26366, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 26367, + 26367, + null + ], + [ + "ident-token", + "none", + 26368, + 26371, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 26372, + 26372, + null + ], + [ + "ident-token", + "border-color", + 26373, + 26384, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 26385, + 26385, + null + ], + [ + "ident-token", + "inherit", + 26386, + 26392, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 26393, + 26393, + null + ], + [ + "ident-token", + "border-style", + 26394, + 26405, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 26406, + 26406, + null + ], + [ + "ident-token", + "solid", + 26407, + 26411, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 26412, + 26412, + null + ], + [ + "ident-token", + "border-width", + 26413, + 26424, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 26425, + 26425, + null + ], + [ + "number-token", + "0", + 26426, + 26426, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 26427, + 26427, + null + ], + [ + "ident-token", + "border-inline-end-width", + 26428, + 26450, + { + "value": "border-inline-end-width" + } + ], + [ + "colon-token", + ":", + 26451, + 26451, + null + ], + [ + "dimension-token", + "1px", + 26452, + 26454, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 26455, + 26455, + null + ], + [ + "ident-token", + "border-radius", + 26456, + 26468, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 26469, + 26469, + null + ], + [ + "number-token", + "0", + 26470, + 26470, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 26471, + 26471, + null + ], + [ + "ident-token", + "transition", + 26472, + 26481, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 26482, + 26482, + null + ], + [ + "ident-token", + "color", + 26483, + 26487, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 26488, + 26488, + null + ], + [ + "dimension-token", + ".15s", + 26489, + 26492, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26493, + 26493, + null + ], + [ + "ident-token", + "ease-in-out", + 26494, + 26504, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26505, + 26505, + null + ], + [ + "ident-token", + "background-color", + 26506, + 26521, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 26522, + 26522, + null + ], + [ + "dimension-token", + ".15s", + 26523, + 26526, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26527, + 26527, + null + ], + [ + "ident-token", + "ease-in-out", + 26528, + 26538, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26539, + 26539, + null + ], + [ + "ident-token", + "border-color", + 26540, + 26551, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 26552, + 26552, + null + ], + [ + "dimension-token", + ".15s", + 26553, + 26556, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26557, + 26557, + null + ], + [ + "ident-token", + "ease-in-out", + 26558, + 26568, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 26569, + 26569, + null + ], + [ + "ident-token", + "box-shadow", + 26570, + 26579, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 26580, + 26580, + null + ], + [ + "dimension-token", + ".15s", + 26581, + 26584, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 26585, + 26585, + null + ], + [ + "ident-token", + "ease-in-out", + 26586, + 26596, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 26597, + 26597, + null + ], + [ + "at-keyword-token", + "@media", + 26598, + 26603, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 26604, + 26604, + null + ], + [ + "(-token", + "(", + 26605, + 26605, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 26606, + 26627, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 26628, + 26628, + null + ], + [ + "ident-token", + "reduce", + 26629, + 26634, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 26635, + 26635, + null + ], + [ + "{-token", + "{", + 26636, + 26636, + null + ], + [ + "delim-token", + ".", + 26637, + 26637, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 26638, + 26649, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 26650, + 26650, + null + ], + [ + "colon-token", + ":", + 26651, + 26651, + null + ], + [ + "delim-token", + "-", + 26652, + 26652, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 26653, + 26677, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 26678, + 26678, + null + ], + [ + "delim-token", + "-", + 26679, + 26679, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-transition", + 26680, + 26696, + { + "value": "webkit-transition" + } + ], + [ + "colon-token", + ":", + 26697, + 26697, + null + ], + [ + "ident-token", + "none", + 26698, + 26701, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 26702, + 26702, + null + ], + [ + "ident-token", + "transition", + 26703, + 26712, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 26713, + 26713, + null + ], + [ + "ident-token", + "none", + 26714, + 26717, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 26718, + 26718, + null + ], + [ + "delim-token", + ".", + 26719, + 26719, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 26720, + 26731, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 26732, + 26732, + null + ], + [ + "colon-token", + ":", + 26733, + 26733, + null + ], + [ + "ident-token", + "file-selector-button", + 26734, + 26753, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 26754, + 26754, + null + ], + [ + "ident-token", + "transition", + 26755, + 26764, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 26765, + 26765, + null + ], + [ + "ident-token", + "none", + 26766, + 26769, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 26770, + 26770, + null + ], + [ + "}-token", + "}", + 26771, + 26771, + null + ], + [ + "delim-token", + ".", + 26772, + 26772, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 26773, + 26784, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 26785, + 26785, + null + ], + [ + "ident-token", + "hover", + 26786, + 26790, + { + "value": "hover" + } + ], + [ + "colon-token", + ":", + 26791, + 26791, + null + ], + [ + "function-token", + "not(", + 26792, + 26795, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 26796, + 26796, + null + ], + [ + "ident-token", + "disabled", + 26797, + 26804, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 26805, + 26805, + null + ], + [ + "colon-token", + ":", + 26806, + 26806, + null + ], + [ + "function-token", + "not(", + 26807, + 26810, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 26811, + 26811, + null + ], + [ + "ident-token", + "readonly", + 26812, + 26819, + { + "value": "readonly" + } + ], + [ + "]-token", + "]", + 26820, + 26820, + null + ], + [ + ")-token", + ")", + 26821, + 26821, + null + ], + [ + "colon-token", + ":", + 26822, + 26822, + null + ], + [ + "colon-token", + ":", + 26823, + 26823, + null + ], + [ + "delim-token", + "-", + 26824, + 26824, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 26825, + 26849, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 26850, + 26850, + null + ], + [ + "ident-token", + "background-color", + 26851, + 26866, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 26867, + 26867, + null + ], + [ + "hash-token", + "#dde0e3", + 26868, + 26874, + { + "value": "dde0e3", + "type": "id" + } + ], + [ + "}-token", + "}", + 26875, + 26875, + null + ], + [ + "delim-token", + ".", + 26876, + 26876, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 26877, + 26888, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 26889, + 26889, + null + ], + [ + "ident-token", + "hover", + 26890, + 26894, + { + "value": "hover" + } + ], + [ + "colon-token", + ":", + 26895, + 26895, + null + ], + [ + "function-token", + "not(", + 26896, + 26899, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 26900, + 26900, + null + ], + [ + "ident-token", + "disabled", + 26901, + 26908, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 26909, + 26909, + null + ], + [ + "colon-token", + ":", + 26910, + 26910, + null + ], + [ + "function-token", + "not(", + 26911, + 26914, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 26915, + 26915, + null + ], + [ + "ident-token", + "readonly", + 26916, + 26923, + { + "value": "readonly" + } + ], + [ + "]-token", + "]", + 26924, + 26924, + null + ], + [ + ")-token", + ")", + 26925, + 26925, + null + ], + [ + "colon-token", + ":", + 26926, + 26926, + null + ], + [ + "colon-token", + ":", + 26927, + 26927, + null + ], + [ + "ident-token", + "file-selector-button", + 26928, + 26947, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 26948, + 26948, + null + ], + [ + "ident-token", + "background-color", + 26949, + 26964, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 26965, + 26965, + null + ], + [ + "hash-token", + "#dde0e3", + 26966, + 26972, + { + "value": "dde0e3", + "type": "id" + } + ], + [ + "}-token", + "}", + 26973, + 26973, + null + ], + [ + "delim-token", + ".", + 26974, + 26974, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 26975, + 26996, + { + "value": "form-control-plaintext" + } + ], + [ + "{-token", + "{", + 26997, + 26997, + null + ], + [ + "ident-token", + "display", + 26998, + 27004, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 27005, + 27005, + null + ], + [ + "ident-token", + "block", + 27006, + 27010, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 27011, + 27011, + null + ], + [ + "ident-token", + "width", + 27012, + 27016, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 27017, + 27017, + null + ], + [ + "percentage-token", + "100%", + 27018, + 27021, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 27022, + 27022, + null + ], + [ + "ident-token", + "padding", + 27023, + 27029, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27030, + 27030, + null + ], + [ + "dimension-token", + ".375rem", + 27031, + 27037, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27038, + 27038, + null + ], + [ + "number-token", + "0", + 27039, + 27039, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 27040, + 27040, + null + ], + [ + "ident-token", + "margin-bottom", + 27041, + 27053, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 27054, + 27054, + null + ], + [ + "number-token", + "0", + 27055, + 27055, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 27056, + 27056, + null + ], + [ + "ident-token", + "line-height", + 27057, + 27067, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 27068, + 27068, + null + ], + [ + "number-token", + "1.5", + 27069, + 27071, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 27072, + 27072, + null + ], + [ + "ident-token", + "color", + 27073, + 27077, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 27078, + 27078, + null + ], + [ + "hash-token", + "#212529", + 27079, + 27085, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 27086, + 27086, + null + ], + [ + "ident-token", + "background-color", + 27087, + 27102, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 27103, + 27103, + null + ], + [ + "ident-token", + "transparent", + 27104, + 27114, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 27115, + 27115, + null + ], + [ + "ident-token", + "border", + 27116, + 27121, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 27122, + 27122, + null + ], + [ + "ident-token", + "solid", + 27123, + 27127, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 27128, + 27128, + null + ], + [ + "ident-token", + "transparent", + 27129, + 27139, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 27140, + 27140, + null + ], + [ + "ident-token", + "border-width", + 27141, + 27152, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 27153, + 27153, + null + ], + [ + "dimension-token", + "1px", + 27154, + 27156, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 27157, + 27157, + null + ], + [ + "number-token", + "0", + 27158, + 27158, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 27159, + 27159, + null + ], + [ + "delim-token", + ".", + 27160, + 27160, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 27161, + 27182, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 27183, + 27183, + null + ], + [ + "ident-token", + "focus", + 27184, + 27188, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 27189, + 27189, + null + ], + [ + "ident-token", + "outline", + 27190, + 27196, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 27197, + 27197, + null + ], + [ + "number-token", + "0", + 27198, + 27198, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 27199, + 27199, + null + ], + [ + "delim-token", + ".", + 27200, + 27200, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 27201, + 27222, + { + "value": "form-control-plaintext" + } + ], + [ + "delim-token", + ".", + 27223, + 27223, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 27224, + 27238, + { + "value": "form-control-lg" + } + ], + [ + "comma-token", + ",", + 27239, + 27239, + null + ], + [ + "delim-token", + ".", + 27240, + 27240, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 27241, + 27262, + { + "value": "form-control-plaintext" + } + ], + [ + "delim-token", + ".", + 27263, + 27263, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 27264, + 27278, + { + "value": "form-control-sm" + } + ], + [ + "{-token", + "{", + 27279, + 27279, + null + ], + [ + "ident-token", + "padding-right", + 27280, + 27292, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 27293, + 27293, + null + ], + [ + "number-token", + "0", + 27294, + 27294, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 27295, + 27295, + null + ], + [ + "ident-token", + "padding-left", + 27296, + 27307, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 27308, + 27308, + null + ], + [ + "number-token", + "0", + 27309, + 27309, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 27310, + 27310, + null + ], + [ + "delim-token", + ".", + 27311, + 27311, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 27312, + 27326, + { + "value": "form-control-sm" + } + ], + [ + "{-token", + "{", + 27327, + 27327, + null + ], + [ + "ident-token", + "min-height", + 27328, + 27337, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 27338, + 27338, + null + ], + [ + "function-token", + "calc(", + 27339, + 27343, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 27344, + 27348, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 27349, + 27349, + null + ], + [ + "delim-token", + "+", + 27350, + 27350, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 27351, + 27351, + null + ], + [ + "dimension-token", + ".5rem", + 27352, + 27356, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27357, + 27357, + null + ], + [ + "delim-token", + "+", + 27358, + 27358, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 27359, + 27359, + null + ], + [ + "dimension-token", + "2px", + 27360, + 27362, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 27363, + 27363, + null + ], + [ + "semicolon-token", + ";", + 27364, + 27364, + null + ], + [ + "ident-token", + "padding", + 27365, + 27371, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27372, + 27372, + null + ], + [ + "dimension-token", + ".25rem", + 27373, + 27378, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27379, + 27379, + null + ], + [ + "dimension-token", + ".5rem", + 27380, + 27384, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27385, + 27385, + null + ], + [ + "ident-token", + "font-size", + 27386, + 27394, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 27395, + 27395, + null + ], + [ + "dimension-token", + ".875rem", + 27396, + 27402, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27403, + 27403, + null + ], + [ + "ident-token", + "border-radius", + 27404, + 27416, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 27417, + 27417, + null + ], + [ + "dimension-token", + ".25rem", + 27418, + 27423, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 27424, + 27424, + null + ], + [ + "delim-token", + ".", + 27425, + 27425, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 27426, + 27440, + { + "value": "form-control-sm" + } + ], + [ + "colon-token", + ":", + 27441, + 27441, + null + ], + [ + "colon-token", + ":", + 27442, + 27442, + null + ], + [ + "delim-token", + "-", + 27443, + 27443, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 27444, + 27468, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 27469, + 27469, + null + ], + [ + "ident-token", + "padding", + 27470, + 27476, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27477, + 27477, + null + ], + [ + "dimension-token", + ".25rem", + 27478, + 27483, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27484, + 27484, + null + ], + [ + "dimension-token", + ".5rem", + 27485, + 27489, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27490, + 27490, + null + ], + [ + "ident-token", + "margin", + 27491, + 27496, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 27497, + 27497, + null + ], + [ + "dimension-token", + "-.25rem", + 27498, + 27504, + { + "value": -0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27505, + 27505, + null + ], + [ + "dimension-token", + "-.5rem", + 27506, + 27511, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27512, + 27512, + null + ], + [ + "delim-token", + "-", + 27513, + 27513, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 27514, + 27530, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 27531, + 27531, + null + ], + [ + "dimension-token", + ".5rem", + 27532, + 27536, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27537, + 27537, + null + ], + [ + "ident-token", + "margin-inline-end", + 27538, + 27554, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 27555, + 27555, + null + ], + [ + "dimension-token", + ".5rem", + 27556, + 27560, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 27561, + 27561, + null + ], + [ + "delim-token", + ".", + 27562, + 27562, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 27563, + 27577, + { + "value": "form-control-sm" + } + ], + [ + "colon-token", + ":", + 27578, + 27578, + null + ], + [ + "colon-token", + ":", + 27579, + 27579, + null + ], + [ + "ident-token", + "file-selector-button", + 27580, + 27599, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 27600, + 27600, + null + ], + [ + "ident-token", + "padding", + 27601, + 27607, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27608, + 27608, + null + ], + [ + "dimension-token", + ".25rem", + 27609, + 27614, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27615, + 27615, + null + ], + [ + "dimension-token", + ".5rem", + 27616, + 27620, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27621, + 27621, + null + ], + [ + "ident-token", + "margin", + 27622, + 27627, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 27628, + 27628, + null + ], + [ + "dimension-token", + "-.25rem", + 27629, + 27635, + { + "value": -0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27636, + 27636, + null + ], + [ + "dimension-token", + "-.5rem", + 27637, + 27642, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27643, + 27643, + null + ], + [ + "delim-token", + "-", + 27644, + 27644, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 27645, + 27661, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 27662, + 27662, + null + ], + [ + "dimension-token", + ".5rem", + 27663, + 27667, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27668, + 27668, + null + ], + [ + "ident-token", + "margin-inline-end", + 27669, + 27685, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 27686, + 27686, + null + ], + [ + "dimension-token", + ".5rem", + 27687, + 27691, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 27692, + 27692, + null + ], + [ + "delim-token", + ".", + 27693, + 27693, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 27694, + 27708, + { + "value": "form-control-lg" + } + ], + [ + "{-token", + "{", + 27709, + 27709, + null + ], + [ + "ident-token", + "min-height", + 27710, + 27719, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 27720, + 27720, + null + ], + [ + "function-token", + "calc(", + 27721, + 27725, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 27726, + 27730, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 27731, + 27731, + null + ], + [ + "delim-token", + "+", + 27732, + 27732, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 27733, + 27733, + null + ], + [ + "dimension-token", + "1rem", + 27734, + 27737, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27738, + 27738, + null + ], + [ + "delim-token", + "+", + 27739, + 27739, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 27740, + 27740, + null + ], + [ + "dimension-token", + "2px", + 27741, + 27743, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 27744, + 27744, + null + ], + [ + "semicolon-token", + ";", + 27745, + 27745, + null + ], + [ + "ident-token", + "padding", + 27746, + 27752, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27753, + 27753, + null + ], + [ + "dimension-token", + ".5rem", + 27754, + 27758, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27759, + 27759, + null + ], + [ + "dimension-token", + "1rem", + 27760, + 27763, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27764, + 27764, + null + ], + [ + "ident-token", + "font-size", + 27765, + 27773, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 27774, + 27774, + null + ], + [ + "dimension-token", + "1.25rem", + 27775, + 27781, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27782, + 27782, + null + ], + [ + "ident-token", + "border-radius", + 27783, + 27795, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 27796, + 27796, + null + ], + [ + "dimension-token", + ".5rem", + 27797, + 27801, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 27802, + 27802, + null + ], + [ + "delim-token", + ".", + 27803, + 27803, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 27804, + 27818, + { + "value": "form-control-lg" + } + ], + [ + "colon-token", + ":", + 27819, + 27819, + null + ], + [ + "colon-token", + ":", + 27820, + 27820, + null + ], + [ + "delim-token", + "-", + 27821, + 27821, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-file-upload-button", + 27822, + 27846, + { + "value": "webkit-file-upload-button" + } + ], + [ + "{-token", + "{", + 27847, + 27847, + null + ], + [ + "ident-token", + "padding", + 27848, + 27854, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27855, + 27855, + null + ], + [ + "dimension-token", + ".5rem", + 27856, + 27860, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27861, + 27861, + null + ], + [ + "dimension-token", + "1rem", + 27862, + 27865, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27866, + 27866, + null + ], + [ + "ident-token", + "margin", + 27867, + 27872, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 27873, + 27873, + null + ], + [ + "dimension-token", + "-.5rem", + 27874, + 27879, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27880, + 27880, + null + ], + [ + "dimension-token", + "-1rem", + 27881, + 27885, + { + "value": -1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27886, + 27886, + null + ], + [ + "delim-token", + "-", + 27887, + 27887, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 27888, + 27904, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 27905, + 27905, + null + ], + [ + "dimension-token", + "1rem", + 27906, + 27909, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27910, + 27910, + null + ], + [ + "ident-token", + "margin-inline-end", + 27911, + 27927, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 27928, + 27928, + null + ], + [ + "dimension-token", + "1rem", + 27929, + 27932, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 27933, + 27933, + null + ], + [ + "delim-token", + ".", + 27934, + 27934, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 27935, + 27949, + { + "value": "form-control-lg" + } + ], + [ + "colon-token", + ":", + 27950, + 27950, + null + ], + [ + "colon-token", + ":", + 27951, + 27951, + null + ], + [ + "ident-token", + "file-selector-button", + 27952, + 27971, + { + "value": "file-selector-button" + } + ], + [ + "{-token", + "{", + 27972, + 27972, + null + ], + [ + "ident-token", + "padding", + 27973, + 27979, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 27980, + 27980, + null + ], + [ + "dimension-token", + ".5rem", + 27981, + 27985, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 27986, + 27986, + null + ], + [ + "dimension-token", + "1rem", + 27987, + 27990, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 27991, + 27991, + null + ], + [ + "ident-token", + "margin", + 27992, + 27997, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 27998, + 27998, + null + ], + [ + "dimension-token", + "-.5rem", + 27999, + 28004, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28005, + 28005, + null + ], + [ + "dimension-token", + "-1rem", + 28006, + 28010, + { + "value": -1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 28011, + 28011, + null + ], + [ + "delim-token", + "-", + 28012, + 28012, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-margin-end", + 28013, + 28029, + { + "value": "webkit-margin-end" + } + ], + [ + "colon-token", + ":", + 28030, + 28030, + null + ], + [ + "dimension-token", + "1rem", + 28031, + 28034, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 28035, + 28035, + null + ], + [ + "ident-token", + "margin-inline-end", + 28036, + 28052, + { + "value": "margin-inline-end" + } + ], + [ + "colon-token", + ":", + 28053, + 28053, + null + ], + [ + "dimension-token", + "1rem", + 28054, + 28057, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 28058, + 28058, + null + ], + [ + "ident-token", + "textarea", + 28059, + 28066, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 28067, + 28067, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 28068, + 28079, + { + "value": "form-control" + } + ], + [ + "{-token", + "{", + 28080, + 28080, + null + ], + [ + "ident-token", + "min-height", + 28081, + 28090, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 28091, + 28091, + null + ], + [ + "function-token", + "calc(", + 28092, + 28096, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28097, + 28101, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28102, + 28102, + null + ], + [ + "delim-token", + "+", + 28103, + 28103, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28104, + 28104, + null + ], + [ + "dimension-token", + ".75rem", + 28105, + 28110, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28111, + 28111, + null + ], + [ + "delim-token", + "+", + 28112, + 28112, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28113, + 28113, + null + ], + [ + "dimension-token", + "2px", + 28114, + 28116, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28117, + 28117, + null + ], + [ + "}-token", + "}", + 28118, + 28118, + null + ], + [ + "ident-token", + "textarea", + 28119, + 28126, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 28127, + 28127, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 28128, + 28142, + { + "value": "form-control-sm" + } + ], + [ + "{-token", + "{", + 28143, + 28143, + null + ], + [ + "ident-token", + "min-height", + 28144, + 28153, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 28154, + 28154, + null + ], + [ + "function-token", + "calc(", + 28155, + 28159, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28160, + 28164, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28165, + 28165, + null + ], + [ + "delim-token", + "+", + 28166, + 28166, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28167, + 28167, + null + ], + [ + "dimension-token", + ".5rem", + 28168, + 28172, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28173, + 28173, + null + ], + [ + "delim-token", + "+", + 28174, + 28174, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28175, + 28175, + null + ], + [ + "dimension-token", + "2px", + 28176, + 28178, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28179, + 28179, + null + ], + [ + "}-token", + "}", + 28180, + 28180, + null + ], + [ + "ident-token", + "textarea", + 28181, + 28188, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 28189, + 28189, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 28190, + 28204, + { + "value": "form-control-lg" + } + ], + [ + "{-token", + "{", + 28205, + 28205, + null + ], + [ + "ident-token", + "min-height", + 28206, + 28215, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 28216, + 28216, + null + ], + [ + "function-token", + "calc(", + 28217, + 28221, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28222, + 28226, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28227, + 28227, + null + ], + [ + "delim-token", + "+", + 28228, + 28228, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28229, + 28229, + null + ], + [ + "dimension-token", + "1rem", + 28230, + 28233, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28234, + 28234, + null + ], + [ + "delim-token", + "+", + 28235, + 28235, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28236, + 28236, + null + ], + [ + "dimension-token", + "2px", + 28237, + 28239, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28240, + 28240, + null + ], + [ + "}-token", + "}", + 28241, + 28241, + null + ], + [ + "delim-token", + ".", + 28242, + 28242, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28243, + 28260, + { + "value": "form-control-color" + } + ], + [ + "{-token", + "{", + 28261, + 28261, + null + ], + [ + "ident-token", + "width", + 28262, + 28266, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 28267, + 28267, + null + ], + [ + "dimension-token", + "3rem", + 28268, + 28271, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 28272, + 28272, + null + ], + [ + "ident-token", + "height", + 28273, + 28278, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 28279, + 28279, + null + ], + [ + "function-token", + "calc(", + 28280, + 28284, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28285, + 28289, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28290, + 28290, + null + ], + [ + "delim-token", + "+", + 28291, + 28291, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28292, + 28292, + null + ], + [ + "dimension-token", + ".75rem", + 28293, + 28298, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28299, + 28299, + null + ], + [ + "delim-token", + "+", + 28300, + 28300, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28301, + 28301, + null + ], + [ + "dimension-token", + "2px", + 28302, + 28304, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28305, + 28305, + null + ], + [ + "semicolon-token", + ";", + 28306, + 28306, + null + ], + [ + "ident-token", + "padding", + 28307, + 28313, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 28314, + 28314, + null + ], + [ + "dimension-token", + ".375rem", + 28315, + 28321, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 28322, + 28322, + null + ], + [ + "delim-token", + ".", + 28323, + 28323, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28324, + 28341, + { + "value": "form-control-color" + } + ], + [ + "colon-token", + ":", + 28342, + 28342, + null + ], + [ + "function-token", + "not(", + 28343, + 28346, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 28347, + 28347, + null + ], + [ + "ident-token", + "disabled", + 28348, + 28355, + { + "value": "disabled" + } + ], + [ + ")-token", + ")", + 28356, + 28356, + null + ], + [ + "colon-token", + ":", + 28357, + 28357, + null + ], + [ + "function-token", + "not(", + 28358, + 28361, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 28362, + 28362, + null + ], + [ + "ident-token", + "readonly", + 28363, + 28370, + { + "value": "readonly" + } + ], + [ + "]-token", + "]", + 28371, + 28371, + null + ], + [ + ")-token", + ")", + 28372, + 28372, + null + ], + [ + "{-token", + "{", + 28373, + 28373, + null + ], + [ + "ident-token", + "cursor", + 28374, + 28379, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 28380, + 28380, + null + ], + [ + "ident-token", + "pointer", + 28381, + 28387, + { + "value": "pointer" + } + ], + [ + "}-token", + "}", + 28388, + 28388, + null + ], + [ + "delim-token", + ".", + 28389, + 28389, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28390, + 28407, + { + "value": "form-control-color" + } + ], + [ + "colon-token", + ":", + 28408, + 28408, + null + ], + [ + "colon-token", + ":", + 28409, + 28409, + null + ], + [ + "delim-token", + "-", + 28410, + 28410, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-color-swatch", + 28411, + 28426, + { + "value": "moz-color-swatch" + } + ], + [ + "{-token", + "{", + 28427, + 28427, + null + ], + [ + "ident-token", + "border", + 28428, + 28433, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 28434, + 28434, + null + ], + [ + "number-token", + "0", + 28435, + 28435, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 28436, + 28436, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 28437, + 28445, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 28446, + 28446, + null + ], + [ + "ident-token", + "border-radius", + 28447, + 28459, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 28460, + 28460, + null + ], + [ + "dimension-token", + ".375rem", + 28461, + 28467, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 28468, + 28468, + null + ], + [ + "delim-token", + ".", + 28469, + 28469, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28470, + 28487, + { + "value": "form-control-color" + } + ], + [ + "colon-token", + ":", + 28488, + 28488, + null + ], + [ + "colon-token", + ":", + 28489, + 28489, + null + ], + [ + "delim-token", + "-", + 28490, + 28490, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-color-swatch", + 28491, + 28509, + { + "value": "webkit-color-swatch" + } + ], + [ + "{-token", + "{", + 28510, + 28510, + null + ], + [ + "ident-token", + "border-radius", + 28511, + 28523, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 28524, + 28524, + null + ], + [ + "dimension-token", + ".375rem", + 28525, + 28531, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 28532, + 28532, + null + ], + [ + "delim-token", + ".", + 28533, + 28533, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28534, + 28551, + { + "value": "form-control-color" + } + ], + [ + "delim-token", + ".", + 28552, + 28552, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-sm", + 28553, + 28567, + { + "value": "form-control-sm" + } + ], + [ + "{-token", + "{", + 28568, + 28568, + null + ], + [ + "ident-token", + "height", + 28569, + 28574, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 28575, + 28575, + null + ], + [ + "function-token", + "calc(", + 28576, + 28580, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28581, + 28585, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28586, + 28586, + null + ], + [ + "delim-token", + "+", + 28587, + 28587, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28588, + 28588, + null + ], + [ + "dimension-token", + ".5rem", + 28589, + 28593, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28594, + 28594, + null + ], + [ + "delim-token", + "+", + 28595, + 28595, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28596, + 28596, + null + ], + [ + "dimension-token", + "2px", + 28597, + 28599, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28600, + 28600, + null + ], + [ + "}-token", + "}", + 28601, + 28601, + null + ], + [ + "delim-token", + ".", + 28602, + 28602, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 28603, + 28620, + { + "value": "form-control-color" + } + ], + [ + "delim-token", + ".", + 28621, + 28621, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-lg", + 28622, + 28636, + { + "value": "form-control-lg" + } + ], + [ + "{-token", + "{", + 28637, + 28637, + null + ], + [ + "ident-token", + "height", + 28638, + 28643, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 28644, + 28644, + null + ], + [ + "function-token", + "calc(", + 28645, + 28649, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 28650, + 28654, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 28655, + 28655, + null + ], + [ + "delim-token", + "+", + 28656, + 28656, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28657, + 28657, + null + ], + [ + "dimension-token", + "1rem", + 28658, + 28661, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28662, + 28662, + null + ], + [ + "delim-token", + "+", + 28663, + 28663, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 28664, + 28664, + null + ], + [ + "dimension-token", + "2px", + 28665, + 28667, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28668, + 28668, + null + ], + [ + "}-token", + "}", + 28669, + 28669, + null + ], + [ + "delim-token", + ".", + 28670, + 28670, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 28671, + 28681, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 28682, + 28682, + null + ], + [ + "ident-token", + "display", + 28683, + 28689, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 28690, + 28690, + null + ], + [ + "ident-token", + "block", + 28691, + 28695, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 28696, + 28696, + null + ], + [ + "ident-token", + "width", + 28697, + 28701, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 28702, + 28702, + null + ], + [ + "percentage-token", + "100%", + 28703, + 28706, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 28707, + 28707, + null + ], + [ + "ident-token", + "padding", + 28708, + 28714, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 28715, + 28715, + null + ], + [ + "dimension-token", + ".375rem", + 28716, + 28722, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28723, + 28723, + null + ], + [ + "dimension-token", + "2.25rem", + 28724, + 28730, + { + "value": 2.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28731, + 28731, + null + ], + [ + "dimension-token", + ".375rem", + 28732, + 28738, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28739, + 28739, + null + ], + [ + "dimension-token", + ".75rem", + 28740, + 28745, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 28746, + 28746, + null + ], + [ + "delim-token", + "-", + 28747, + 28747, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-padding-start", + 28748, + 28764, + { + "value": "moz-padding-start" + } + ], + [ + "colon-token", + ":", + 28765, + 28765, + null + ], + [ + "function-token", + "calc(", + 28766, + 28770, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.75rem", + 28771, + 28777, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 28778, + 28778, + null + ], + [ + "delim-token", + "-", + 28779, + 28779, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 28780, + 28780, + null + ], + [ + "dimension-token", + "3px", + 28781, + 28783, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 28784, + 28784, + null + ], + [ + "semicolon-token", + ";", + 28785, + 28785, + null + ], + [ + "ident-token", + "font-size", + 28786, + 28794, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 28795, + 28795, + null + ], + [ + "dimension-token", + "1rem", + 28796, + 28799, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 28800, + 28800, + null + ], + [ + "ident-token", + "font-weight", + 28801, + 28811, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 28812, + 28812, + null + ], + [ + "number-token", + "400", + 28813, + 28815, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 28816, + 28816, + null + ], + [ + "ident-token", + "line-height", + 28817, + 28827, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 28828, + 28828, + null + ], + [ + "number-token", + "1.5", + 28829, + 28831, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 28832, + 28832, + null + ], + [ + "ident-token", + "color", + 28833, + 28837, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 28838, + 28838, + null + ], + [ + "hash-token", + "#212529", + 28839, + 28845, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 28846, + 28846, + null + ], + [ + "ident-token", + "background-color", + 28847, + 28862, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 28863, + 28863, + null + ], + [ + "hash-token", + "#fff", + 28864, + 28867, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 28868, + 28868, + null + ], + [ + "ident-token", + "background-image", + 28869, + 28884, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 28885, + 28885, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + 28886, + 29108, + null + ], + [ + "semicolon-token", + ";", + 29109, + 29109, + null + ], + [ + "ident-token", + "background-repeat", + 29110, + 29126, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 29127, + 29127, + null + ], + [ + "ident-token", + "no-repeat", + 29128, + 29136, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 29137, + 29137, + null + ], + [ + "ident-token", + "background-position", + 29138, + 29156, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 29157, + 29157, + null + ], + [ + "ident-token", + "right", + 29158, + 29162, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 29163, + 29163, + null + ], + [ + "dimension-token", + ".75rem", + 29164, + 29169, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 29170, + 29170, + null + ], + [ + "ident-token", + "center", + 29171, + 29176, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 29177, + 29177, + null + ], + [ + "ident-token", + "background-size", + 29178, + 29192, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 29193, + 29193, + null + ], + [ + "dimension-token", + "16px", + 29194, + 29197, + { + "value": 16, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 29198, + 29198, + null + ], + [ + "dimension-token", + "12px", + 29199, + 29202, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 29203, + 29203, + null + ], + [ + "ident-token", + "border", + 29204, + 29209, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 29210, + 29210, + null + ], + [ + "dimension-token", + "1px", + 29211, + 29213, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 29214, + 29214, + null + ], + [ + "ident-token", + "solid", + 29215, + 29219, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 29220, + 29220, + null + ], + [ + "hash-token", + "#ced4da", + 29221, + 29227, + { + "value": "ced4da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 29228, + 29228, + null + ], + [ + "ident-token", + "border-radius", + 29229, + 29241, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 29242, + 29242, + null + ], + [ + "dimension-token", + ".375rem", + 29243, + 29249, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29250, + 29250, + null + ], + [ + "ident-token", + "transition", + 29251, + 29260, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 29261, + 29261, + null + ], + [ + "ident-token", + "border-color", + 29262, + 29273, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 29274, + 29274, + null + ], + [ + "dimension-token", + ".15s", + 29275, + 29278, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 29279, + 29279, + null + ], + [ + "ident-token", + "ease-in-out", + 29280, + 29290, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 29291, + 29291, + null + ], + [ + "ident-token", + "box-shadow", + 29292, + 29301, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 29302, + 29302, + null + ], + [ + "dimension-token", + ".15s", + 29303, + 29306, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 29307, + 29307, + null + ], + [ + "ident-token", + "ease-in-out", + 29308, + 29318, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 29319, + 29319, + null + ], + [ + "delim-token", + "-", + 29320, + 29320, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 29321, + 29337, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 29338, + 29338, + null + ], + [ + "ident-token", + "none", + 29339, + 29342, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 29343, + 29343, + null + ], + [ + "delim-token", + "-", + 29344, + 29344, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-appearance", + 29345, + 29358, + { + "value": "moz-appearance" + } + ], + [ + "colon-token", + ":", + 29359, + 29359, + null + ], + [ + "ident-token", + "none", + 29360, + 29363, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 29364, + 29364, + null + ], + [ + "ident-token", + "appearance", + 29365, + 29374, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 29375, + 29375, + null + ], + [ + "ident-token", + "none", + 29376, + 29379, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 29380, + 29380, + null + ], + [ + "at-keyword-token", + "@media", + 29381, + 29386, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 29387, + 29387, + null + ], + [ + "(-token", + "(", + 29388, + 29388, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 29389, + 29410, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 29411, + 29411, + null + ], + [ + "ident-token", + "reduce", + 29412, + 29417, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 29418, + 29418, + null + ], + [ + "{-token", + "{", + 29419, + 29419, + null + ], + [ + "delim-token", + ".", + 29420, + 29420, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29421, + 29431, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 29432, + 29432, + null + ], + [ + "ident-token", + "transition", + 29433, + 29442, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 29443, + 29443, + null + ], + [ + "ident-token", + "none", + 29444, + 29447, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 29448, + 29448, + null + ], + [ + "}-token", + "}", + 29449, + 29449, + null + ], + [ + "delim-token", + ".", + 29450, + 29450, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29451, + 29461, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 29462, + 29462, + null + ], + [ + "ident-token", + "focus", + 29463, + 29467, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 29468, + 29468, + null + ], + [ + "ident-token", + "border-color", + 29469, + 29480, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 29481, + 29481, + null + ], + [ + "hash-token", + "#86b7fe", + 29482, + 29488, + { + "value": "86b7fe", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 29489, + 29489, + null + ], + [ + "ident-token", + "outline", + 29490, + 29496, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 29497, + 29497, + null + ], + [ + "number-token", + "0", + 29498, + 29498, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 29499, + 29499, + null + ], + [ + "ident-token", + "box-shadow", + 29500, + 29509, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 29510, + 29510, + null + ], + [ + "number-token", + "0", + 29511, + 29511, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29512, + 29512, + null + ], + [ + "number-token", + "0", + 29513, + 29513, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29514, + 29514, + null + ], + [ + "number-token", + "0", + 29515, + 29515, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29516, + 29516, + null + ], + [ + "dimension-token", + ".25rem", + 29517, + 29522, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 29523, + 29523, + null + ], + [ + "function-token", + "rgba(", + 29524, + 29528, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 29529, + 29530, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 29531, + 29531, + null + ], + [ + "number-token", + "110", + 29532, + 29534, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 29535, + 29535, + null + ], + [ + "number-token", + "253", + 29536, + 29538, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 29539, + 29539, + null + ], + [ + "number-token", + ".25", + 29540, + 29542, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 29543, + 29543, + null + ], + [ + "}-token", + "}", + 29544, + 29544, + null + ], + [ + "delim-token", + ".", + 29545, + 29545, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29546, + 29556, + { + "value": "form-select" + } + ], + [ + "[-token", + "[", + 29557, + 29557, + null + ], + [ + "ident-token", + "multiple", + 29558, + 29565, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 29566, + 29566, + null + ], + [ + "comma-token", + ",", + 29567, + 29567, + null + ], + [ + "delim-token", + ".", + 29568, + 29568, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29569, + 29579, + { + "value": "form-select" + } + ], + [ + "[-token", + "[", + 29580, + 29580, + null + ], + [ + "ident-token", + "size", + 29581, + 29584, + { + "value": "size" + } + ], + [ + "]-token", + "]", + 29585, + 29585, + null + ], + [ + "colon-token", + ":", + 29586, + 29586, + null + ], + [ + "function-token", + "not(", + 29587, + 29590, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 29591, + 29591, + null + ], + [ + "ident-token", + "size", + 29592, + 29595, + { + "value": "size" + } + ], + [ + "delim-token", + "=", + 29596, + 29596, + { + "value": "=" + } + ], + [ + "string-token", + "\"1\"", + 29597, + 29599, + { + "value": "1" + } + ], + [ + "]-token", + "]", + 29600, + 29600, + null + ], + [ + ")-token", + ")", + 29601, + 29601, + null + ], + [ + "{-token", + "{", + 29602, + 29602, + null + ], + [ + "ident-token", + "padding-right", + 29603, + 29615, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 29616, + 29616, + null + ], + [ + "dimension-token", + ".75rem", + 29617, + 29622, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29623, + 29623, + null + ], + [ + "ident-token", + "background-image", + 29624, + 29639, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 29640, + 29640, + null + ], + [ + "ident-token", + "none", + 29641, + 29644, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 29645, + 29645, + null + ], + [ + "delim-token", + ".", + 29646, + 29646, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29647, + 29657, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 29658, + 29658, + null + ], + [ + "ident-token", + "disabled", + 29659, + 29666, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 29667, + 29667, + null + ], + [ + "ident-token", + "background-color", + 29668, + 29683, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 29684, + 29684, + null + ], + [ + "hash-token", + "#e9ecef", + 29685, + 29691, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "}-token", + "}", + 29692, + 29692, + null + ], + [ + "delim-token", + ".", + 29693, + 29693, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 29694, + 29704, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 29705, + 29705, + null + ], + [ + "delim-token", + "-", + 29706, + 29706, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-focusring", + 29707, + 29719, + { + "value": "moz-focusring" + } + ], + [ + "{-token", + "{", + 29720, + 29720, + null + ], + [ + "ident-token", + "color", + 29721, + 29725, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 29726, + 29726, + null + ], + [ + "ident-token", + "transparent", + 29727, + 29737, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 29738, + 29738, + null + ], + [ + "ident-token", + "text-shadow", + 29739, + 29749, + { + "value": "text-shadow" + } + ], + [ + "colon-token", + ":", + 29750, + 29750, + null + ], + [ + "number-token", + "0", + 29751, + 29751, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29752, + 29752, + null + ], + [ + "number-token", + "0", + 29753, + 29753, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29754, + 29754, + null + ], + [ + "number-token", + "0", + 29755, + 29755, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 29756, + 29756, + null + ], + [ + "hash-token", + "#212529", + 29757, + 29763, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 29764, + 29764, + null + ], + [ + "delim-token", + ".", + 29765, + 29765, + { + "value": "." + } + ], + [ + "ident-token", + "form-select-sm", + 29766, + 29779, + { + "value": "form-select-sm" + } + ], + [ + "{-token", + "{", + 29780, + 29780, + null + ], + [ + "ident-token", + "padding-top", + 29781, + 29791, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 29792, + 29792, + null + ], + [ + "dimension-token", + ".25rem", + 29793, + 29798, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29799, + 29799, + null + ], + [ + "ident-token", + "padding-bottom", + 29800, + 29813, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 29814, + 29814, + null + ], + [ + "dimension-token", + ".25rem", + 29815, + 29820, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29821, + 29821, + null + ], + [ + "ident-token", + "padding-left", + 29822, + 29833, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 29834, + 29834, + null + ], + [ + "dimension-token", + ".5rem", + 29835, + 29839, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29840, + 29840, + null + ], + [ + "ident-token", + "font-size", + 29841, + 29849, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 29850, + 29850, + null + ], + [ + "dimension-token", + ".875rem", + 29851, + 29857, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29858, + 29858, + null + ], + [ + "ident-token", + "border-radius", + 29859, + 29871, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 29872, + 29872, + null + ], + [ + "dimension-token", + ".25rem", + 29873, + 29878, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 29879, + 29879, + null + ], + [ + "delim-token", + ".", + 29880, + 29880, + { + "value": "." + } + ], + [ + "ident-token", + "form-select-lg", + 29881, + 29894, + { + "value": "form-select-lg" + } + ], + [ + "{-token", + "{", + 29895, + 29895, + null + ], + [ + "ident-token", + "padding-top", + 29896, + 29906, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 29907, + 29907, + null + ], + [ + "dimension-token", + ".5rem", + 29908, + 29912, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29913, + 29913, + null + ], + [ + "ident-token", + "padding-bottom", + 29914, + 29927, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 29928, + 29928, + null + ], + [ + "dimension-token", + ".5rem", + 29929, + 29933, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29934, + 29934, + null + ], + [ + "ident-token", + "padding-left", + 29935, + 29946, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 29947, + 29947, + null + ], + [ + "dimension-token", + "1rem", + 29948, + 29951, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29952, + 29952, + null + ], + [ + "ident-token", + "font-size", + 29953, + 29961, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 29962, + 29962, + null + ], + [ + "dimension-token", + "1.25rem", + 29963, + 29969, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 29970, + 29970, + null + ], + [ + "ident-token", + "border-radius", + 29971, + 29983, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 29984, + 29984, + null + ], + [ + "dimension-token", + ".5rem", + 29985, + 29989, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 29990, + 29990, + null + ], + [ + "delim-token", + ".", + 29991, + 29991, + { + "value": "." + } + ], + [ + "ident-token", + "form-check", + 29992, + 30001, + { + "value": "form-check" + } + ], + [ + "{-token", + "{", + 30002, + 30002, + null + ], + [ + "ident-token", + "display", + 30003, + 30009, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 30010, + 30010, + null + ], + [ + "ident-token", + "block", + 30011, + 30015, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 30016, + 30016, + null + ], + [ + "ident-token", + "min-height", + 30017, + 30026, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 30027, + 30027, + null + ], + [ + "dimension-token", + "1.5rem", + 30028, + 30033, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 30034, + 30034, + null + ], + [ + "ident-token", + "padding-left", + 30035, + 30046, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 30047, + 30047, + null + ], + [ + "dimension-token", + "1.5em", + 30048, + 30052, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30053, + 30053, + null + ], + [ + "ident-token", + "margin-bottom", + 30054, + 30066, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 30067, + 30067, + null + ], + [ + "dimension-token", + ".125rem", + 30068, + 30074, + { + "value": 0.125, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 30075, + 30075, + null + ], + [ + "delim-token", + ".", + 30076, + 30076, + { + "value": "." + } + ], + [ + "ident-token", + "form-check", + 30077, + 30086, + { + "value": "form-check" + } + ], + [ + "whitespace-token", + " ", + 30087, + 30087, + null + ], + [ + "delim-token", + ".", + 30088, + 30088, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30089, + 30104, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 30105, + 30105, + null + ], + [ + "ident-token", + "float", + 30106, + 30110, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 30111, + 30111, + null + ], + [ + "ident-token", + "left", + 30112, + 30115, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 30116, + 30116, + null + ], + [ + "ident-token", + "margin-left", + 30117, + 30127, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 30128, + 30128, + null + ], + [ + "dimension-token", + "-1.5em", + 30129, + 30134, + { + "value": -1.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 30135, + 30135, + null + ], + [ + "delim-token", + ".", + 30136, + 30136, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-reverse", + 30137, + 30154, + { + "value": "form-check-reverse" + } + ], + [ + "{-token", + "{", + 30155, + 30155, + null + ], + [ + "ident-token", + "padding-right", + 30156, + 30168, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 30169, + 30169, + null + ], + [ + "dimension-token", + "1.5em", + 30170, + 30174, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30175, + 30175, + null + ], + [ + "ident-token", + "padding-left", + 30176, + 30187, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 30188, + 30188, + null + ], + [ + "number-token", + "0", + 30189, + 30189, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 30190, + 30190, + null + ], + [ + "ident-token", + "text-align", + 30191, + 30200, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 30201, + 30201, + null + ], + [ + "ident-token", + "right", + 30202, + 30206, + { + "value": "right" + } + ], + [ + "}-token", + "}", + 30207, + 30207, + null + ], + [ + "delim-token", + ".", + 30208, + 30208, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-reverse", + 30209, + 30226, + { + "value": "form-check-reverse" + } + ], + [ + "whitespace-token", + " ", + 30227, + 30227, + null + ], + [ + "delim-token", + ".", + 30228, + 30228, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30229, + 30244, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 30245, + 30245, + null + ], + [ + "ident-token", + "float", + 30246, + 30250, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 30251, + 30251, + null + ], + [ + "ident-token", + "right", + 30252, + 30256, + { + "value": "right" + } + ], + [ + "semicolon-token", + ";", + 30257, + 30257, + null + ], + [ + "ident-token", + "margin-right", + 30258, + 30269, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 30270, + 30270, + null + ], + [ + "dimension-token", + "-1.5em", + 30271, + 30276, + { + "value": -1.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30277, + 30277, + null + ], + [ + "ident-token", + "margin-left", + 30278, + 30288, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 30289, + 30289, + null + ], + [ + "number-token", + "0", + 30290, + 30290, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 30291, + 30291, + null + ], + [ + "delim-token", + ".", + 30292, + 30292, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30293, + 30308, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 30309, + 30309, + null + ], + [ + "ident-token", + "width", + 30310, + 30314, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 30315, + 30315, + null + ], + [ + "dimension-token", + "1em", + 30316, + 30318, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30319, + 30319, + null + ], + [ + "ident-token", + "height", + 30320, + 30325, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 30326, + 30326, + null + ], + [ + "dimension-token", + "1em", + 30327, + 30329, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30330, + 30330, + null + ], + [ + "ident-token", + "margin-top", + 30331, + 30340, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 30341, + 30341, + null + ], + [ + "dimension-token", + ".25em", + 30342, + 30346, + { + "value": 0.25, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 30347, + 30347, + null + ], + [ + "ident-token", + "vertical-align", + 30348, + 30361, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 30362, + 30362, + null + ], + [ + "ident-token", + "top", + 30363, + 30365, + { + "value": "top" + } + ], + [ + "semicolon-token", + ";", + 30366, + 30366, + null + ], + [ + "ident-token", + "background-color", + 30367, + 30382, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 30383, + 30383, + null + ], + [ + "hash-token", + "#fff", + 30384, + 30387, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 30388, + 30388, + null + ], + [ + "ident-token", + "background-repeat", + 30389, + 30405, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 30406, + 30406, + null + ], + [ + "ident-token", + "no-repeat", + 30407, + 30415, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 30416, + 30416, + null + ], + [ + "ident-token", + "background-position", + 30417, + 30435, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 30436, + 30436, + null + ], + [ + "ident-token", + "center", + 30437, + 30442, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 30443, + 30443, + null + ], + [ + "ident-token", + "background-size", + 30444, + 30458, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 30459, + 30459, + null + ], + [ + "ident-token", + "contain", + 30460, + 30466, + { + "value": "contain" + } + ], + [ + "semicolon-token", + ";", + 30467, + 30467, + null + ], + [ + "ident-token", + "border", + 30468, + 30473, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 30474, + 30474, + null + ], + [ + "dimension-token", + "1px", + 30475, + 30477, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 30478, + 30478, + null + ], + [ + "ident-token", + "solid", + 30479, + 30483, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 30484, + 30484, + null + ], + [ + "function-token", + "rgba(", + 30485, + 30489, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 30490, + 30490, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30491, + 30491, + null + ], + [ + "number-token", + "0", + 30492, + 30492, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30493, + 30493, + null + ], + [ + "number-token", + "0", + 30494, + 30494, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30495, + 30495, + null + ], + [ + "number-token", + ".25", + 30496, + 30498, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 30499, + 30499, + null + ], + [ + "semicolon-token", + ";", + 30500, + 30500, + null + ], + [ + "delim-token", + "-", + 30501, + 30501, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 30502, + 30518, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 30519, + 30519, + null + ], + [ + "ident-token", + "none", + 30520, + 30523, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 30524, + 30524, + null + ], + [ + "delim-token", + "-", + 30525, + 30525, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-appearance", + 30526, + 30539, + { + "value": "moz-appearance" + } + ], + [ + "colon-token", + ":", + 30540, + 30540, + null + ], + [ + "ident-token", + "none", + 30541, + 30544, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 30545, + 30545, + null + ], + [ + "ident-token", + "appearance", + 30546, + 30555, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 30556, + 30556, + null + ], + [ + "ident-token", + "none", + 30557, + 30560, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 30561, + 30561, + null + ], + [ + "delim-token", + "-", + 30562, + 30562, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-print-color-adjust", + 30563, + 30587, + { + "value": "webkit-print-color-adjust" + } + ], + [ + "colon-token", + ":", + 30588, + 30588, + null + ], + [ + "ident-token", + "exact", + 30589, + 30593, + { + "value": "exact" + } + ], + [ + "semicolon-token", + ";", + 30594, + 30594, + null + ], + [ + "ident-token", + "color-adjust", + 30595, + 30606, + { + "value": "color-adjust" + } + ], + [ + "colon-token", + ":", + 30607, + 30607, + null + ], + [ + "ident-token", + "exact", + 30608, + 30612, + { + "value": "exact" + } + ], + [ + "semicolon-token", + ";", + 30613, + 30613, + null + ], + [ + "ident-token", + "print-color-adjust", + 30614, + 30631, + { + "value": "print-color-adjust" + } + ], + [ + "colon-token", + ":", + 30632, + 30632, + null + ], + [ + "ident-token", + "exact", + 30633, + 30637, + { + "value": "exact" + } + ], + [ + "}-token", + "}", + 30638, + 30638, + null + ], + [ + "delim-token", + ".", + 30639, + 30639, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30640, + 30655, + { + "value": "form-check-input" + } + ], + [ + "[-token", + "[", + 30656, + 30656, + null + ], + [ + "ident-token", + "type", + 30657, + 30660, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 30661, + 30661, + { + "value": "=" + } + ], + [ + "ident-token", + "checkbox", + 30662, + 30669, + { + "value": "checkbox" + } + ], + [ + "]-token", + "]", + 30670, + 30670, + null + ], + [ + "{-token", + "{", + 30671, + 30671, + null + ], + [ + "ident-token", + "border-radius", + 30672, + 30684, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 30685, + 30685, + null + ], + [ + "dimension-token", + ".25em", + 30686, + 30690, + { + "value": 0.25, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 30691, + 30691, + null + ], + [ + "delim-token", + ".", + 30692, + 30692, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30693, + 30708, + { + "value": "form-check-input" + } + ], + [ + "[-token", + "[", + 30709, + 30709, + null + ], + [ + "ident-token", + "type", + 30710, + 30713, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 30714, + 30714, + { + "value": "=" + } + ], + [ + "ident-token", + "radio", + 30715, + 30719, + { + "value": "radio" + } + ], + [ + "]-token", + "]", + 30720, + 30720, + null + ], + [ + "{-token", + "{", + 30721, + 30721, + null + ], + [ + "ident-token", + "border-radius", + 30722, + 30734, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 30735, + 30735, + null + ], + [ + "percentage-token", + "50%", + 30736, + 30738, + { + "value": 50 + } + ], + [ + "}-token", + "}", + 30739, + 30739, + null + ], + [ + "delim-token", + ".", + 30740, + 30740, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30741, + 30756, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 30757, + 30757, + null + ], + [ + "ident-token", + "active", + 30758, + 30763, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 30764, + 30764, + null + ], + [ + "ident-token", + "filter", + 30765, + 30770, + { + "value": "filter" + } + ], + [ + "colon-token", + ":", + 30771, + 30771, + null + ], + [ + "function-token", + "brightness(", + 30772, + 30782, + { + "value": "brightness" + } + ], + [ + "percentage-token", + "90%", + 30783, + 30785, + { + "value": 90 + } + ], + [ + ")-token", + ")", + 30786, + 30786, + null + ], + [ + "}-token", + "}", + 30787, + 30787, + null + ], + [ + "delim-token", + ".", + 30788, + 30788, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30789, + 30804, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 30805, + 30805, + null + ], + [ + "ident-token", + "focus", + 30806, + 30810, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 30811, + 30811, + null + ], + [ + "ident-token", + "border-color", + 30812, + 30823, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 30824, + 30824, + null + ], + [ + "hash-token", + "#86b7fe", + 30825, + 30831, + { + "value": "86b7fe", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 30832, + 30832, + null + ], + [ + "ident-token", + "outline", + 30833, + 30839, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 30840, + 30840, + null + ], + [ + "number-token", + "0", + 30841, + 30841, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 30842, + 30842, + null + ], + [ + "ident-token", + "box-shadow", + 30843, + 30852, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 30853, + 30853, + null + ], + [ + "number-token", + "0", + 30854, + 30854, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 30855, + 30855, + null + ], + [ + "number-token", + "0", + 30856, + 30856, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 30857, + 30857, + null + ], + [ + "number-token", + "0", + 30858, + 30858, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 30859, + 30859, + null + ], + [ + "dimension-token", + ".25rem", + 30860, + 30865, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 30866, + 30866, + null + ], + [ + "function-token", + "rgba(", + 30867, + 30871, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 30872, + 30873, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30874, + 30874, + null + ], + [ + "number-token", + "110", + 30875, + 30877, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30878, + 30878, + null + ], + [ + "number-token", + "253", + 30879, + 30881, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 30882, + 30882, + null + ], + [ + "number-token", + ".25", + 30883, + 30885, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 30886, + 30886, + null + ], + [ + "}-token", + "}", + 30887, + 30887, + null + ], + [ + "delim-token", + ".", + 30888, + 30888, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30889, + 30904, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 30905, + 30905, + null + ], + [ + "ident-token", + "checked", + 30906, + 30912, + { + "value": "checked" + } + ], + [ + "{-token", + "{", + 30913, + 30913, + null + ], + [ + "ident-token", + "background-color", + 30914, + 30929, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 30930, + 30930, + null + ], + [ + "hash-token", + "#0d6efd", + 30931, + 30937, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 30938, + 30938, + null + ], + [ + "ident-token", + "border-color", + 30939, + 30950, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 30951, + 30951, + null + ], + [ + "hash-token", + "#0d6efd", + 30952, + 30958, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 30959, + 30959, + null + ], + [ + "delim-token", + ".", + 30960, + 30960, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 30961, + 30976, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 30977, + 30977, + null + ], + [ + "ident-token", + "checked", + 30978, + 30984, + { + "value": "checked" + } + ], + [ + "[-token", + "[", + 30985, + 30985, + null + ], + [ + "ident-token", + "type", + 30986, + 30989, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 30990, + 30990, + { + "value": "=" + } + ], + [ + "ident-token", + "checkbox", + 30991, + 30998, + { + "value": "checkbox" + } + ], + [ + "]-token", + "]", + 30999, + 30999, + null + ], + [ + "{-token", + "{", + 31000, + 31000, + null + ], + [ + "ident-token", + "background-image", + 31001, + 31016, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 31017, + 31017, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e\")", + 31018, + 31238, + null + ], + [ + "}-token", + "}", + 31239, + 31239, + null + ], + [ + "delim-token", + ".", + 31240, + 31240, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31241, + 31256, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 31257, + 31257, + null + ], + [ + "ident-token", + "checked", + 31258, + 31264, + { + "value": "checked" + } + ], + [ + "[-token", + "[", + 31265, + 31265, + null + ], + [ + "ident-token", + "type", + 31266, + 31269, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 31270, + 31270, + { + "value": "=" + } + ], + [ + "ident-token", + "radio", + 31271, + 31275, + { + "value": "radio" + } + ], + [ + "]-token", + "]", + 31276, + 31276, + null + ], + [ + "{-token", + "{", + 31277, + 31277, + null + ], + [ + "ident-token", + "background-image", + 31278, + 31293, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 31294, + 31294, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")", + 31295, + 31427, + null + ], + [ + "}-token", + "}", + 31428, + 31428, + null + ], + [ + "delim-token", + ".", + 31429, + 31429, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31430, + 31445, + { + "value": "form-check-input" + } + ], + [ + "[-token", + "[", + 31446, + 31446, + null + ], + [ + "ident-token", + "type", + 31447, + 31450, + { + "value": "type" + } + ], + [ + "delim-token", + "=", + 31451, + 31451, + { + "value": "=" + } + ], + [ + "ident-token", + "checkbox", + 31452, + 31459, + { + "value": "checkbox" + } + ], + [ + "]-token", + "]", + 31460, + 31460, + null + ], + [ + "colon-token", + ":", + 31461, + 31461, + null + ], + [ + "ident-token", + "indeterminate", + 31462, + 31474, + { + "value": "indeterminate" + } + ], + [ + "{-token", + "{", + 31475, + 31475, + null + ], + [ + "ident-token", + "background-color", + 31476, + 31491, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 31492, + 31492, + null + ], + [ + "hash-token", + "#0d6efd", + 31493, + 31499, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 31500, + 31500, + null + ], + [ + "ident-token", + "border-color", + 31501, + 31512, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 31513, + 31513, + null + ], + [ + "hash-token", + "#0d6efd", + 31514, + 31520, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 31521, + 31521, + null + ], + [ + "ident-token", + "background-image", + 31522, + 31537, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 31538, + 31538, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")", + 31539, + 31753, + null + ], + [ + "}-token", + "}", + 31754, + 31754, + null + ], + [ + "delim-token", + ".", + 31755, + 31755, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31756, + 31771, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 31772, + 31772, + null + ], + [ + "ident-token", + "disabled", + 31773, + 31780, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 31781, + 31781, + null + ], + [ + "ident-token", + "pointer-events", + 31782, + 31795, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 31796, + 31796, + null + ], + [ + "ident-token", + "none", + 31797, + 31800, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 31801, + 31801, + null + ], + [ + "ident-token", + "filter", + 31802, + 31807, + { + "value": "filter" + } + ], + [ + "colon-token", + ":", + 31808, + 31808, + null + ], + [ + "ident-token", + "none", + 31809, + 31812, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 31813, + 31813, + null + ], + [ + "ident-token", + "opacity", + 31814, + 31820, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 31821, + 31821, + null + ], + [ + "number-token", + ".5", + 31822, + 31823, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 31824, + 31824, + null + ], + [ + "delim-token", + ".", + 31825, + 31825, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31826, + 31841, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 31842, + 31842, + null + ], + [ + "ident-token", + "disabled", + 31843, + 31850, + { + "value": "disabled" + } + ], + [ + "delim-token", + "~", + 31851, + 31851, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 31852, + 31852, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 31853, + 31868, + { + "value": "form-check-label" + } + ], + [ + "comma-token", + ",", + 31869, + 31869, + null + ], + [ + "delim-token", + ".", + 31870, + 31870, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31871, + 31886, + { + "value": "form-check-input" + } + ], + [ + "[-token", + "[", + 31887, + 31887, + null + ], + [ + "ident-token", + "disabled", + 31888, + 31895, + { + "value": "disabled" + } + ], + [ + "]-token", + "]", + 31896, + 31896, + null + ], + [ + "delim-token", + "~", + 31897, + 31897, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 31898, + 31898, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 31899, + 31914, + { + "value": "form-check-label" + } + ], + [ + "{-token", + "{", + 31915, + 31915, + null + ], + [ + "ident-token", + "cursor", + 31916, + 31921, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 31922, + 31922, + null + ], + [ + "ident-token", + "default", + 31923, + 31929, + { + "value": "default" + } + ], + [ + "semicolon-token", + ";", + 31930, + 31930, + null + ], + [ + "ident-token", + "opacity", + 31931, + 31937, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 31938, + 31938, + null + ], + [ + "number-token", + ".5", + 31939, + 31940, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 31941, + 31941, + null + ], + [ + "delim-token", + ".", + 31942, + 31942, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 31943, + 31953, + { + "value": "form-switch" + } + ], + [ + "{-token", + "{", + 31954, + 31954, + null + ], + [ + "ident-token", + "padding-left", + 31955, + 31966, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 31967, + 31967, + null + ], + [ + "dimension-token", + "2.5em", + 31968, + 31972, + { + "value": 2.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 31973, + 31973, + null + ], + [ + "delim-token", + ".", + 31974, + 31974, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 31975, + 31985, + { + "value": "form-switch" + } + ], + [ + "whitespace-token", + " ", + 31986, + 31986, + null + ], + [ + "delim-token", + ".", + 31987, + 31987, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 31988, + 32003, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 32004, + 32004, + null + ], + [ + "ident-token", + "width", + 32005, + 32009, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 32010, + 32010, + null + ], + [ + "dimension-token", + "2em", + 32011, + 32013, + { + "value": 2, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 32014, + 32014, + null + ], + [ + "ident-token", + "margin-left", + 32015, + 32025, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 32026, + 32026, + null + ], + [ + "dimension-token", + "-2.5em", + 32027, + 32032, + { + "value": -2.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 32033, + 32033, + null + ], + [ + "ident-token", + "background-image", + 32034, + 32049, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 32050, + 32050, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\")", + 32051, + 32200, + null + ], + [ + "semicolon-token", + ";", + 32201, + 32201, + null + ], + [ + "ident-token", + "background-position", + 32202, + 32220, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 32221, + 32221, + null + ], + [ + "ident-token", + "left", + 32222, + 32225, + { + "value": "left" + } + ], + [ + "whitespace-token", + " ", + 32226, + 32226, + null + ], + [ + "ident-token", + "center", + 32227, + 32232, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 32233, + 32233, + null + ], + [ + "ident-token", + "border-radius", + 32234, + 32246, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 32247, + 32247, + null + ], + [ + "dimension-token", + "2em", + 32248, + 32250, + { + "value": 2, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 32251, + 32251, + null + ], + [ + "ident-token", + "transition", + 32252, + 32261, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 32262, + 32262, + null + ], + [ + "ident-token", + "background-position", + 32263, + 32281, + { + "value": "background-position" + } + ], + [ + "whitespace-token", + " ", + 32282, + 32282, + null + ], + [ + "dimension-token", + ".15s", + 32283, + 32286, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 32287, + 32287, + null + ], + [ + "ident-token", + "ease-in-out", + 32288, + 32298, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 32299, + 32299, + null + ], + [ + "at-keyword-token", + "@media", + 32300, + 32305, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 32306, + 32306, + null + ], + [ + "(-token", + "(", + 32307, + 32307, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 32308, + 32329, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 32330, + 32330, + null + ], + [ + "ident-token", + "reduce", + 32331, + 32336, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 32337, + 32337, + null + ], + [ + "{-token", + "{", + 32338, + 32338, + null + ], + [ + "delim-token", + ".", + 32339, + 32339, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 32340, + 32350, + { + "value": "form-switch" + } + ], + [ + "whitespace-token", + " ", + 32351, + 32351, + null + ], + [ + "delim-token", + ".", + 32352, + 32352, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 32353, + 32368, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 32369, + 32369, + null + ], + [ + "ident-token", + "transition", + 32370, + 32379, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 32380, + 32380, + null + ], + [ + "ident-token", + "none", + 32381, + 32384, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 32385, + 32385, + null + ], + [ + "}-token", + "}", + 32386, + 32386, + null + ], + [ + "delim-token", + ".", + 32387, + 32387, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 32388, + 32398, + { + "value": "form-switch" + } + ], + [ + "whitespace-token", + " ", + 32399, + 32399, + null + ], + [ + "delim-token", + ".", + 32400, + 32400, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 32401, + 32416, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 32417, + 32417, + null + ], + [ + "ident-token", + "focus", + 32418, + 32422, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 32423, + 32423, + null + ], + [ + "ident-token", + "background-image", + 32424, + 32439, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 32440, + 32440, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\")", + 32441, + 32576, + null + ], + [ + "}-token", + "}", + 32577, + 32577, + null + ], + [ + "delim-token", + ".", + 32578, + 32578, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 32579, + 32589, + { + "value": "form-switch" + } + ], + [ + "whitespace-token", + " ", + 32590, + 32590, + null + ], + [ + "delim-token", + ".", + 32591, + 32591, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 32592, + 32607, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 32608, + 32608, + null + ], + [ + "ident-token", + "checked", + 32609, + 32615, + { + "value": "checked" + } + ], + [ + "{-token", + "{", + 32616, + 32616, + null + ], + [ + "ident-token", + "background-position", + 32617, + 32635, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 32636, + 32636, + null + ], + [ + "ident-token", + "right", + 32637, + 32641, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 32642, + 32642, + null + ], + [ + "ident-token", + "center", + 32643, + 32648, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 32649, + 32649, + null + ], + [ + "ident-token", + "background-image", + 32650, + 32665, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 32666, + 32666, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")", + 32667, + 32799, + null + ], + [ + "}-token", + "}", + 32800, + 32800, + null + ], + [ + "delim-token", + ".", + 32801, + 32801, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 32802, + 32812, + { + "value": "form-switch" + } + ], + [ + "delim-token", + ".", + 32813, + 32813, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-reverse", + 32814, + 32831, + { + "value": "form-check-reverse" + } + ], + [ + "{-token", + "{", + 32832, + 32832, + null + ], + [ + "ident-token", + "padding-right", + 32833, + 32845, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 32846, + 32846, + null + ], + [ + "dimension-token", + "2.5em", + 32847, + 32851, + { + "value": 2.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 32852, + 32852, + null + ], + [ + "ident-token", + "padding-left", + 32853, + 32864, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 32865, + 32865, + null + ], + [ + "number-token", + "0", + 32866, + 32866, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 32867, + 32867, + null + ], + [ + "delim-token", + ".", + 32868, + 32868, + { + "value": "." + } + ], + [ + "ident-token", + "form-switch", + 32869, + 32879, + { + "value": "form-switch" + } + ], + [ + "delim-token", + ".", + 32880, + 32880, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-reverse", + 32881, + 32898, + { + "value": "form-check-reverse" + } + ], + [ + "whitespace-token", + " ", + 32899, + 32899, + null + ], + [ + "delim-token", + ".", + 32900, + 32900, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 32901, + 32916, + { + "value": "form-check-input" + } + ], + [ + "{-token", + "{", + 32917, + 32917, + null + ], + [ + "ident-token", + "margin-right", + 32918, + 32929, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 32930, + 32930, + null + ], + [ + "dimension-token", + "-2.5em", + 32931, + 32936, + { + "value": -2.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 32937, + 32937, + null + ], + [ + "ident-token", + "margin-left", + 32938, + 32948, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 32949, + 32949, + null + ], + [ + "number-token", + "0", + 32950, + 32950, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 32951, + 32951, + null + ], + [ + "delim-token", + ".", + 32952, + 32952, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-inline", + 32953, + 32969, + { + "value": "form-check-inline" + } + ], + [ + "{-token", + "{", + 32970, + 32970, + null + ], + [ + "ident-token", + "display", + 32971, + 32977, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 32978, + 32978, + null + ], + [ + "ident-token", + "inline-block", + 32979, + 32990, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 32991, + 32991, + null + ], + [ + "ident-token", + "margin-right", + 32992, + 33003, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 33004, + 33004, + null + ], + [ + "dimension-token", + "1rem", + 33005, + 33008, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 33009, + 33009, + null + ], + [ + "delim-token", + ".", + 33010, + 33010, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 33011, + 33019, + { + "value": "btn-check" + } + ], + [ + "{-token", + "{", + 33020, + 33020, + null + ], + [ + "ident-token", + "position", + 33021, + 33028, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 33029, + 33029, + null + ], + [ + "ident-token", + "absolute", + 33030, + 33037, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 33038, + 33038, + null + ], + [ + "ident-token", + "clip", + 33039, + 33042, + { + "value": "clip" + } + ], + [ + "colon-token", + ":", + 33043, + 33043, + null + ], + [ + "function-token", + "rect(", + 33044, + 33048, + { + "value": "rect" + } + ], + [ + "number-token", + "0", + 33049, + 33049, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33050, + 33050, + null + ], + [ + "number-token", + "0", + 33051, + 33051, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33052, + 33052, + null + ], + [ + "number-token", + "0", + 33053, + 33053, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33054, + 33054, + null + ], + [ + "number-token", + "0", + 33055, + 33055, + { + "value": 0, + "type": "integer" + } + ], + [ + ")-token", + ")", + 33056, + 33056, + null + ], + [ + "semicolon-token", + ";", + 33057, + 33057, + null + ], + [ + "ident-token", + "pointer-events", + 33058, + 33071, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 33072, + 33072, + null + ], + [ + "ident-token", + "none", + 33073, + 33076, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 33077, + 33077, + null + ], + [ + "delim-token", + ".", + 33078, + 33078, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 33079, + 33087, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 33088, + 33088, + null + ], + [ + "ident-token", + "disabled", + 33089, + 33096, + { + "value": "disabled" + } + ], + [ + "delim-token", + "+", + 33097, + 33097, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 33098, + 33098, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 33099, + 33101, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 33102, + 33102, + null + ], + [ + "delim-token", + ".", + 33103, + 33103, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 33104, + 33112, + { + "value": "btn-check" + } + ], + [ + "[-token", + "[", + 33113, + 33113, + null + ], + [ + "ident-token", + "disabled", + 33114, + 33121, + { + "value": "disabled" + } + ], + [ + "]-token", + "]", + 33122, + 33122, + null + ], + [ + "delim-token", + "+", + 33123, + 33123, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 33124, + 33124, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 33125, + 33127, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 33128, + 33128, + null + ], + [ + "ident-token", + "pointer-events", + 33129, + 33142, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 33143, + 33143, + null + ], + [ + "ident-token", + "none", + 33144, + 33147, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 33148, + 33148, + null + ], + [ + "ident-token", + "filter", + 33149, + 33154, + { + "value": "filter" + } + ], + [ + "colon-token", + ":", + 33155, + 33155, + null + ], + [ + "ident-token", + "none", + 33156, + 33159, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 33160, + 33160, + null + ], + [ + "ident-token", + "opacity", + 33161, + 33167, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 33168, + 33168, + null + ], + [ + "number-token", + ".65", + 33169, + 33171, + { + "value": 0.65, + "type": "number" + } + ], + [ + "}-token", + "}", + 33172, + 33172, + null + ], + [ + "delim-token", + ".", + 33173, + 33173, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33174, + 33183, + { + "value": "form-range" + } + ], + [ + "{-token", + "{", + 33184, + 33184, + null + ], + [ + "ident-token", + "width", + 33185, + 33189, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 33190, + 33190, + null + ], + [ + "percentage-token", + "100%", + 33191, + 33194, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 33195, + 33195, + null + ], + [ + "ident-token", + "height", + 33196, + 33201, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 33202, + 33202, + null + ], + [ + "dimension-token", + "1.5rem", + 33203, + 33208, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 33209, + 33209, + null + ], + [ + "ident-token", + "padding", + 33210, + 33216, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 33217, + 33217, + null + ], + [ + "number-token", + "0", + 33218, + 33218, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 33219, + 33219, + null + ], + [ + "ident-token", + "background-color", + 33220, + 33235, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 33236, + 33236, + null + ], + [ + "ident-token", + "transparent", + 33237, + 33247, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 33248, + 33248, + null + ], + [ + "delim-token", + "-", + 33249, + 33249, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 33250, + 33266, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 33267, + 33267, + null + ], + [ + "ident-token", + "none", + 33268, + 33271, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 33272, + 33272, + null + ], + [ + "delim-token", + "-", + 33273, + 33273, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-appearance", + 33274, + 33287, + { + "value": "moz-appearance" + } + ], + [ + "colon-token", + ":", + 33288, + 33288, + null + ], + [ + "ident-token", + "none", + 33289, + 33292, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 33293, + 33293, + null + ], + [ + "ident-token", + "appearance", + 33294, + 33303, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 33304, + 33304, + null + ], + [ + "ident-token", + "none", + 33305, + 33308, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 33309, + 33309, + null + ], + [ + "delim-token", + ".", + 33310, + 33310, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33311, + 33320, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 33321, + 33321, + null + ], + [ + "ident-token", + "focus", + 33322, + 33326, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 33327, + 33327, + null + ], + [ + "ident-token", + "outline", + 33328, + 33334, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 33335, + 33335, + null + ], + [ + "number-token", + "0", + 33336, + 33336, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 33337, + 33337, + null + ], + [ + "delim-token", + ".", + 33338, + 33338, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33339, + 33348, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 33349, + 33349, + null + ], + [ + "ident-token", + "focus", + 33350, + 33354, + { + "value": "focus" + } + ], + [ + "colon-token", + ":", + 33355, + 33355, + null + ], + [ + "colon-token", + ":", + 33356, + 33356, + null + ], + [ + "delim-token", + "-", + 33357, + 33357, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-thumb", + 33358, + 33376, + { + "value": "webkit-slider-thumb" + } + ], + [ + "{-token", + "{", + 33377, + 33377, + null + ], + [ + "ident-token", + "box-shadow", + 33378, + 33387, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 33388, + 33388, + null + ], + [ + "number-token", + "0", + 33389, + 33389, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33390, + 33390, + null + ], + [ + "number-token", + "0", + 33391, + 33391, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33392, + 33392, + null + ], + [ + "number-token", + "0", + 33393, + 33393, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33394, + 33394, + null + ], + [ + "dimension-token", + "1px", + 33395, + 33397, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 33398, + 33398, + null + ], + [ + "hash-token", + "#fff", + 33399, + 33402, + { + "value": "fff", + "type": "id" + } + ], + [ + "comma-token", + ",", + 33403, + 33403, + null + ], + [ + "number-token", + "0", + 33404, + 33404, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33405, + 33405, + null + ], + [ + "number-token", + "0", + 33406, + 33406, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33407, + 33407, + null + ], + [ + "number-token", + "0", + 33408, + 33408, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33409, + 33409, + null + ], + [ + "dimension-token", + ".25rem", + 33410, + 33415, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 33416, + 33416, + null + ], + [ + "function-token", + "rgba(", + 33417, + 33421, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 33422, + 33423, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33424, + 33424, + null + ], + [ + "number-token", + "110", + 33425, + 33427, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33428, + 33428, + null + ], + [ + "number-token", + "253", + 33429, + 33431, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33432, + 33432, + null + ], + [ + "number-token", + ".25", + 33433, + 33435, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 33436, + 33436, + null + ], + [ + "}-token", + "}", + 33437, + 33437, + null + ], + [ + "delim-token", + ".", + 33438, + 33438, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33439, + 33448, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 33449, + 33449, + null + ], + [ + "ident-token", + "focus", + 33450, + 33454, + { + "value": "focus" + } + ], + [ + "colon-token", + ":", + 33455, + 33455, + null + ], + [ + "colon-token", + ":", + 33456, + 33456, + null + ], + [ + "delim-token", + "-", + 33457, + 33457, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-thumb", + 33458, + 33472, + { + "value": "moz-range-thumb" + } + ], + [ + "{-token", + "{", + 33473, + 33473, + null + ], + [ + "ident-token", + "box-shadow", + 33474, + 33483, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 33484, + 33484, + null + ], + [ + "number-token", + "0", + 33485, + 33485, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33486, + 33486, + null + ], + [ + "number-token", + "0", + 33487, + 33487, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33488, + 33488, + null + ], + [ + "number-token", + "0", + 33489, + 33489, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33490, + 33490, + null + ], + [ + "dimension-token", + "1px", + 33491, + 33493, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 33494, + 33494, + null + ], + [ + "hash-token", + "#fff", + 33495, + 33498, + { + "value": "fff", + "type": "id" + } + ], + [ + "comma-token", + ",", + 33499, + 33499, + null + ], + [ + "number-token", + "0", + 33500, + 33500, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33501, + 33501, + null + ], + [ + "number-token", + "0", + 33502, + 33502, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33503, + 33503, + null + ], + [ + "number-token", + "0", + 33504, + 33504, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 33505, + 33505, + null + ], + [ + "dimension-token", + ".25rem", + 33506, + 33511, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 33512, + 33512, + null + ], + [ + "function-token", + "rgba(", + 33513, + 33517, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 33518, + 33519, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33520, + 33520, + null + ], + [ + "number-token", + "110", + 33521, + 33523, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33524, + 33524, + null + ], + [ + "number-token", + "253", + 33525, + 33527, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 33528, + 33528, + null + ], + [ + "number-token", + ".25", + 33529, + 33531, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 33532, + 33532, + null + ], + [ + "}-token", + "}", + 33533, + 33533, + null + ], + [ + "delim-token", + ".", + 33534, + 33534, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33535, + 33544, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 33545, + 33545, + null + ], + [ + "colon-token", + ":", + 33546, + 33546, + null + ], + [ + "delim-token", + "-", + 33547, + 33547, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-focus-outer", + 33548, + 33562, + { + "value": "moz-focus-outer" + } + ], + [ + "{-token", + "{", + 33563, + 33563, + null + ], + [ + "ident-token", + "border", + 33564, + 33569, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 33570, + 33570, + null + ], + [ + "number-token", + "0", + 33571, + 33571, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 33572, + 33572, + null + ], + [ + "delim-token", + ".", + 33573, + 33573, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33574, + 33583, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 33584, + 33584, + null + ], + [ + "colon-token", + ":", + 33585, + 33585, + null + ], + [ + "delim-token", + "-", + 33586, + 33586, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-thumb", + 33587, + 33605, + { + "value": "webkit-slider-thumb" + } + ], + [ + "{-token", + "{", + 33606, + 33606, + null + ], + [ + "ident-token", + "width", + 33607, + 33611, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 33612, + 33612, + null + ], + [ + "dimension-token", + "1rem", + 33613, + 33616, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 33617, + 33617, + null + ], + [ + "ident-token", + "height", + 33618, + 33623, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 33624, + 33624, + null + ], + [ + "dimension-token", + "1rem", + 33625, + 33628, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 33629, + 33629, + null + ], + [ + "ident-token", + "margin-top", + 33630, + 33639, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 33640, + 33640, + null + ], + [ + "dimension-token", + "-.25rem", + 33641, + 33647, + { + "value": -0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 33648, + 33648, + null + ], + [ + "ident-token", + "background-color", + 33649, + 33664, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 33665, + 33665, + null + ], + [ + "hash-token", + "#0d6efd", + 33666, + 33672, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 33673, + 33673, + null + ], + [ + "ident-token", + "border", + 33674, + 33679, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 33680, + 33680, + null + ], + [ + "number-token", + "0", + 33681, + 33681, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 33682, + 33682, + null + ], + [ + "ident-token", + "border-radius", + 33683, + 33695, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 33696, + 33696, + null + ], + [ + "dimension-token", + "1rem", + 33697, + 33700, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 33701, + 33701, + null + ], + [ + "delim-token", + "-", + 33702, + 33702, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-transition", + 33703, + 33719, + { + "value": "webkit-transition" + } + ], + [ + "colon-token", + ":", + 33720, + 33720, + null + ], + [ + "ident-token", + "background-color", + 33721, + 33736, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 33737, + 33737, + null + ], + [ + "dimension-token", + ".15s", + 33738, + 33741, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33742, + 33742, + null + ], + [ + "ident-token", + "ease-in-out", + 33743, + 33753, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 33754, + 33754, + null + ], + [ + "ident-token", + "border-color", + 33755, + 33766, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 33767, + 33767, + null + ], + [ + "dimension-token", + ".15s", + 33768, + 33771, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33772, + 33772, + null + ], + [ + "ident-token", + "ease-in-out", + 33773, + 33783, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 33784, + 33784, + null + ], + [ + "ident-token", + "box-shadow", + 33785, + 33794, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 33795, + 33795, + null + ], + [ + "dimension-token", + ".15s", + 33796, + 33799, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33800, + 33800, + null + ], + [ + "ident-token", + "ease-in-out", + 33801, + 33811, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 33812, + 33812, + null + ], + [ + "ident-token", + "transition", + 33813, + 33822, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 33823, + 33823, + null + ], + [ + "ident-token", + "background-color", + 33824, + 33839, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 33840, + 33840, + null + ], + [ + "dimension-token", + ".15s", + 33841, + 33844, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33845, + 33845, + null + ], + [ + "ident-token", + "ease-in-out", + 33846, + 33856, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 33857, + 33857, + null + ], + [ + "ident-token", + "border-color", + 33858, + 33869, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 33870, + 33870, + null + ], + [ + "dimension-token", + ".15s", + 33871, + 33874, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33875, + 33875, + null + ], + [ + "ident-token", + "ease-in-out", + 33876, + 33886, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 33887, + 33887, + null + ], + [ + "ident-token", + "box-shadow", + 33888, + 33897, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 33898, + 33898, + null + ], + [ + "dimension-token", + ".15s", + 33899, + 33902, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 33903, + 33903, + null + ], + [ + "ident-token", + "ease-in-out", + 33904, + 33914, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 33915, + 33915, + null + ], + [ + "delim-token", + "-", + 33916, + 33916, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-appearance", + 33917, + 33933, + { + "value": "webkit-appearance" + } + ], + [ + "colon-token", + ":", + 33934, + 33934, + null + ], + [ + "ident-token", + "none", + 33935, + 33938, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 33939, + 33939, + null + ], + [ + "ident-token", + "appearance", + 33940, + 33949, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 33950, + 33950, + null + ], + [ + "ident-token", + "none", + 33951, + 33954, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 33955, + 33955, + null + ], + [ + "at-keyword-token", + "@media", + 33956, + 33961, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 33962, + 33962, + null + ], + [ + "(-token", + "(", + 33963, + 33963, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 33964, + 33985, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 33986, + 33986, + null + ], + [ + "ident-token", + "reduce", + 33987, + 33992, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 33993, + 33993, + null + ], + [ + "{-token", + "{", + 33994, + 33994, + null + ], + [ + "delim-token", + ".", + 33995, + 33995, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 33996, + 34005, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34006, + 34006, + null + ], + [ + "colon-token", + ":", + 34007, + 34007, + null + ], + [ + "delim-token", + "-", + 34008, + 34008, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-thumb", + 34009, + 34027, + { + "value": "webkit-slider-thumb" + } + ], + [ + "{-token", + "{", + 34028, + 34028, + null + ], + [ + "delim-token", + "-", + 34029, + 34029, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-transition", + 34030, + 34046, + { + "value": "webkit-transition" + } + ], + [ + "colon-token", + ":", + 34047, + 34047, + null + ], + [ + "ident-token", + "none", + 34048, + 34051, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 34052, + 34052, + null + ], + [ + "ident-token", + "transition", + 34053, + 34062, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 34063, + 34063, + null + ], + [ + "ident-token", + "none", + 34064, + 34067, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 34068, + 34068, + null + ], + [ + "}-token", + "}", + 34069, + 34069, + null + ], + [ + "delim-token", + ".", + 34070, + 34070, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34071, + 34080, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34081, + 34081, + null + ], + [ + "colon-token", + ":", + 34082, + 34082, + null + ], + [ + "delim-token", + "-", + 34083, + 34083, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-thumb", + 34084, + 34102, + { + "value": "webkit-slider-thumb" + } + ], + [ + "colon-token", + ":", + 34103, + 34103, + null + ], + [ + "ident-token", + "active", + 34104, + 34109, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 34110, + 34110, + null + ], + [ + "ident-token", + "background-color", + 34111, + 34126, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 34127, + 34127, + null + ], + [ + "hash-token", + "#b6d4fe", + 34128, + 34134, + { + "value": "b6d4fe", + "type": "id" + } + ], + [ + "}-token", + "}", + 34135, + 34135, + null + ], + [ + "delim-token", + ".", + 34136, + 34136, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34137, + 34146, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34147, + 34147, + null + ], + [ + "colon-token", + ":", + 34148, + 34148, + null + ], + [ + "delim-token", + "-", + 34149, + 34149, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-runnable-track", + 34150, + 34177, + { + "value": "webkit-slider-runnable-track" + } + ], + [ + "{-token", + "{", + 34178, + 34178, + null + ], + [ + "ident-token", + "width", + 34179, + 34183, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 34184, + 34184, + null + ], + [ + "percentage-token", + "100%", + 34185, + 34188, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 34189, + 34189, + null + ], + [ + "ident-token", + "height", + 34190, + 34195, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 34196, + 34196, + null + ], + [ + "dimension-token", + ".5rem", + 34197, + 34201, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 34202, + 34202, + null + ], + [ + "ident-token", + "color", + 34203, + 34207, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 34208, + 34208, + null + ], + [ + "ident-token", + "transparent", + 34209, + 34219, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 34220, + 34220, + null + ], + [ + "ident-token", + "cursor", + 34221, + 34226, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 34227, + 34227, + null + ], + [ + "ident-token", + "pointer", + 34228, + 34234, + { + "value": "pointer" + } + ], + [ + "semicolon-token", + ";", + 34235, + 34235, + null + ], + [ + "ident-token", + "background-color", + 34236, + 34251, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 34252, + 34252, + null + ], + [ + "hash-token", + "#dee2e6", + 34253, + 34259, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 34260, + 34260, + null + ], + [ + "ident-token", + "border-color", + 34261, + 34272, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 34273, + 34273, + null + ], + [ + "ident-token", + "transparent", + 34274, + 34284, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 34285, + 34285, + null + ], + [ + "ident-token", + "border-radius", + 34286, + 34298, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 34299, + 34299, + null + ], + [ + "dimension-token", + "1rem", + 34300, + 34303, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 34304, + 34304, + null + ], + [ + "delim-token", + ".", + 34305, + 34305, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34306, + 34315, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34316, + 34316, + null + ], + [ + "colon-token", + ":", + 34317, + 34317, + null + ], + [ + "delim-token", + "-", + 34318, + 34318, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-thumb", + 34319, + 34333, + { + "value": "moz-range-thumb" + } + ], + [ + "{-token", + "{", + 34334, + 34334, + null + ], + [ + "ident-token", + "width", + 34335, + 34339, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 34340, + 34340, + null + ], + [ + "dimension-token", + "1rem", + 34341, + 34344, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 34345, + 34345, + null + ], + [ + "ident-token", + "height", + 34346, + 34351, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 34352, + 34352, + null + ], + [ + "dimension-token", + "1rem", + 34353, + 34356, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 34357, + 34357, + null + ], + [ + "ident-token", + "background-color", + 34358, + 34373, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 34374, + 34374, + null + ], + [ + "hash-token", + "#0d6efd", + 34375, + 34381, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 34382, + 34382, + null + ], + [ + "ident-token", + "border", + 34383, + 34388, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 34389, + 34389, + null + ], + [ + "number-token", + "0", + 34390, + 34390, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 34391, + 34391, + null + ], + [ + "ident-token", + "border-radius", + 34392, + 34404, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 34405, + 34405, + null + ], + [ + "dimension-token", + "1rem", + 34406, + 34409, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 34410, + 34410, + null + ], + [ + "delim-token", + "-", + 34411, + 34411, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-transition", + 34412, + 34425, + { + "value": "moz-transition" + } + ], + [ + "colon-token", + ":", + 34426, + 34426, + null + ], + [ + "ident-token", + "background-color", + 34427, + 34442, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 34443, + 34443, + null + ], + [ + "dimension-token", + ".15s", + 34444, + 34447, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34448, + 34448, + null + ], + [ + "ident-token", + "ease-in-out", + 34449, + 34459, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 34460, + 34460, + null + ], + [ + "ident-token", + "border-color", + 34461, + 34472, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 34473, + 34473, + null + ], + [ + "dimension-token", + ".15s", + 34474, + 34477, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34478, + 34478, + null + ], + [ + "ident-token", + "ease-in-out", + 34479, + 34489, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 34490, + 34490, + null + ], + [ + "ident-token", + "box-shadow", + 34491, + 34500, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 34501, + 34501, + null + ], + [ + "dimension-token", + ".15s", + 34502, + 34505, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34506, + 34506, + null + ], + [ + "ident-token", + "ease-in-out", + 34507, + 34517, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 34518, + 34518, + null + ], + [ + "ident-token", + "transition", + 34519, + 34528, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 34529, + 34529, + null + ], + [ + "ident-token", + "background-color", + 34530, + 34545, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 34546, + 34546, + null + ], + [ + "dimension-token", + ".15s", + 34547, + 34550, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34551, + 34551, + null + ], + [ + "ident-token", + "ease-in-out", + 34552, + 34562, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 34563, + 34563, + null + ], + [ + "ident-token", + "border-color", + 34564, + 34575, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 34576, + 34576, + null + ], + [ + "dimension-token", + ".15s", + 34577, + 34580, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34581, + 34581, + null + ], + [ + "ident-token", + "ease-in-out", + 34582, + 34592, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 34593, + 34593, + null + ], + [ + "ident-token", + "box-shadow", + 34594, + 34603, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 34604, + 34604, + null + ], + [ + "dimension-token", + ".15s", + 34605, + 34608, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 34609, + 34609, + null + ], + [ + "ident-token", + "ease-in-out", + 34610, + 34620, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 34621, + 34621, + null + ], + [ + "delim-token", + "-", + 34622, + 34622, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-appearance", + 34623, + 34636, + { + "value": "moz-appearance" + } + ], + [ + "colon-token", + ":", + 34637, + 34637, + null + ], + [ + "ident-token", + "none", + 34638, + 34641, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 34642, + 34642, + null + ], + [ + "ident-token", + "appearance", + 34643, + 34652, + { + "value": "appearance" + } + ], + [ + "colon-token", + ":", + 34653, + 34653, + null + ], + [ + "ident-token", + "none", + 34654, + 34657, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 34658, + 34658, + null + ], + [ + "at-keyword-token", + "@media", + 34659, + 34664, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 34665, + 34665, + null + ], + [ + "(-token", + "(", + 34666, + 34666, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 34667, + 34688, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 34689, + 34689, + null + ], + [ + "ident-token", + "reduce", + 34690, + 34695, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 34696, + 34696, + null + ], + [ + "{-token", + "{", + 34697, + 34697, + null + ], + [ + "delim-token", + ".", + 34698, + 34698, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34699, + 34708, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34709, + 34709, + null + ], + [ + "colon-token", + ":", + 34710, + 34710, + null + ], + [ + "delim-token", + "-", + 34711, + 34711, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-thumb", + 34712, + 34726, + { + "value": "moz-range-thumb" + } + ], + [ + "{-token", + "{", + 34727, + 34727, + null + ], + [ + "delim-token", + "-", + 34728, + 34728, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-transition", + 34729, + 34742, + { + "value": "moz-transition" + } + ], + [ + "colon-token", + ":", + 34743, + 34743, + null + ], + [ + "ident-token", + "none", + 34744, + 34747, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 34748, + 34748, + null + ], + [ + "ident-token", + "transition", + 34749, + 34758, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 34759, + 34759, + null + ], + [ + "ident-token", + "none", + 34760, + 34763, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 34764, + 34764, + null + ], + [ + "}-token", + "}", + 34765, + 34765, + null + ], + [ + "delim-token", + ".", + 34766, + 34766, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34767, + 34776, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34777, + 34777, + null + ], + [ + "colon-token", + ":", + 34778, + 34778, + null + ], + [ + "delim-token", + "-", + 34779, + 34779, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-thumb", + 34780, + 34794, + { + "value": "moz-range-thumb" + } + ], + [ + "colon-token", + ":", + 34795, + 34795, + null + ], + [ + "ident-token", + "active", + 34796, + 34801, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 34802, + 34802, + null + ], + [ + "ident-token", + "background-color", + 34803, + 34818, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 34819, + 34819, + null + ], + [ + "hash-token", + "#b6d4fe", + 34820, + 34826, + { + "value": "b6d4fe", + "type": "id" + } + ], + [ + "}-token", + "}", + 34827, + 34827, + null + ], + [ + "delim-token", + ".", + 34828, + 34828, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34829, + 34838, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34839, + 34839, + null + ], + [ + "colon-token", + ":", + 34840, + 34840, + null + ], + [ + "delim-token", + "-", + 34841, + 34841, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-track", + 34842, + 34856, + { + "value": "moz-range-track" + } + ], + [ + "{-token", + "{", + 34857, + 34857, + null + ], + [ + "ident-token", + "width", + 34858, + 34862, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 34863, + 34863, + null + ], + [ + "percentage-token", + "100%", + 34864, + 34867, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 34868, + 34868, + null + ], + [ + "ident-token", + "height", + 34869, + 34874, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 34875, + 34875, + null + ], + [ + "dimension-token", + ".5rem", + 34876, + 34880, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 34881, + 34881, + null + ], + [ + "ident-token", + "color", + 34882, + 34886, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 34887, + 34887, + null + ], + [ + "ident-token", + "transparent", + 34888, + 34898, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 34899, + 34899, + null + ], + [ + "ident-token", + "cursor", + 34900, + 34905, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 34906, + 34906, + null + ], + [ + "ident-token", + "pointer", + 34907, + 34913, + { + "value": "pointer" + } + ], + [ + "semicolon-token", + ";", + 34914, + 34914, + null + ], + [ + "ident-token", + "background-color", + 34915, + 34930, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 34931, + 34931, + null + ], + [ + "hash-token", + "#dee2e6", + 34932, + 34938, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 34939, + 34939, + null + ], + [ + "ident-token", + "border-color", + 34940, + 34951, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 34952, + 34952, + null + ], + [ + "ident-token", + "transparent", + 34953, + 34963, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 34964, + 34964, + null + ], + [ + "ident-token", + "border-radius", + 34965, + 34977, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 34978, + 34978, + null + ], + [ + "dimension-token", + "1rem", + 34979, + 34982, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 34983, + 34983, + null + ], + [ + "delim-token", + ".", + 34984, + 34984, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 34985, + 34994, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 34995, + 34995, + null + ], + [ + "ident-token", + "disabled", + 34996, + 35003, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 35004, + 35004, + null + ], + [ + "ident-token", + "pointer-events", + 35005, + 35018, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 35019, + 35019, + null + ], + [ + "ident-token", + "none", + 35020, + 35023, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 35024, + 35024, + null + ], + [ + "delim-token", + ".", + 35025, + 35025, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 35026, + 35035, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 35036, + 35036, + null + ], + [ + "ident-token", + "disabled", + 35037, + 35044, + { + "value": "disabled" + } + ], + [ + "colon-token", + ":", + 35045, + 35045, + null + ], + [ + "colon-token", + ":", + 35046, + 35046, + null + ], + [ + "delim-token", + "-", + 35047, + 35047, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-slider-thumb", + 35048, + 35066, + { + "value": "webkit-slider-thumb" + } + ], + [ + "{-token", + "{", + 35067, + 35067, + null + ], + [ + "ident-token", + "background-color", + 35068, + 35083, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 35084, + 35084, + null + ], + [ + "hash-token", + "#adb5bd", + 35085, + 35091, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "}-token", + "}", + 35092, + 35092, + null + ], + [ + "delim-token", + ".", + 35093, + 35093, + { + "value": "." + } + ], + [ + "ident-token", + "form-range", + 35094, + 35103, + { + "value": "form-range" + } + ], + [ + "colon-token", + ":", + 35104, + 35104, + null + ], + [ + "ident-token", + "disabled", + 35105, + 35112, + { + "value": "disabled" + } + ], + [ + "colon-token", + ":", + 35113, + 35113, + null + ], + [ + "colon-token", + ":", + 35114, + 35114, + null + ], + [ + "delim-token", + "-", + 35115, + 35115, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-range-thumb", + 35116, + 35130, + { + "value": "moz-range-thumb" + } + ], + [ + "{-token", + "{", + 35131, + 35131, + null + ], + [ + "ident-token", + "background-color", + 35132, + 35147, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 35148, + 35148, + null + ], + [ + "hash-token", + "#adb5bd", + 35149, + 35155, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "}-token", + "}", + 35156, + 35156, + null + ], + [ + "delim-token", + ".", + 35157, + 35157, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35158, + 35170, + { + "value": "form-floating" + } + ], + [ + "{-token", + "{", + 35171, + 35171, + null + ], + [ + "ident-token", + "position", + 35172, + 35179, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 35180, + 35180, + null + ], + [ + "ident-token", + "relative", + 35181, + 35188, + { + "value": "relative" + } + ], + [ + "}-token", + "}", + 35189, + 35189, + null + ], + [ + "delim-token", + ".", + 35190, + 35190, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35191, + 35203, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35204, + 35204, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35205, + 35205, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 35206, + 35217, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 35218, + 35218, + null + ], + [ + "delim-token", + ".", + 35219, + 35219, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35220, + 35232, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35233, + 35233, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35234, + 35234, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 35235, + 35256, + { + "value": "form-control-plaintext" + } + ], + [ + "comma-token", + ",", + 35257, + 35257, + null + ], + [ + "delim-token", + ".", + 35258, + 35258, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35259, + 35271, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35272, + 35272, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35273, + 35273, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 35274, + 35284, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 35285, + 35285, + null + ], + [ + "ident-token", + "height", + 35286, + 35291, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 35292, + 35292, + null + ], + [ + "function-token", + "calc(", + 35293, + 35297, + { + "value": "calc" + } + ], + [ + "dimension-token", + "3.5rem", + 35298, + 35303, + { + "value": 3.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 35304, + 35304, + null + ], + [ + "delim-token", + "+", + 35305, + 35305, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 35306, + 35306, + null + ], + [ + "dimension-token", + "2px", + 35307, + 35309, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 35310, + 35310, + null + ], + [ + "semicolon-token", + ";", + 35311, + 35311, + null + ], + [ + "ident-token", + "line-height", + 35312, + 35322, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 35323, + 35323, + null + ], + [ + "number-token", + "1.25", + 35324, + 35327, + { + "value": 1.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 35328, + 35328, + null + ], + [ + "delim-token", + ".", + 35329, + 35329, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35330, + 35342, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35343, + 35343, + { + "value": ">" + } + ], + [ + "ident-token", + "label", + 35344, + 35348, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 35349, + 35349, + null + ], + [ + "ident-token", + "position", + 35350, + 35357, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 35358, + 35358, + null + ], + [ + "ident-token", + "absolute", + 35359, + 35366, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 35367, + 35367, + null + ], + [ + "ident-token", + "top", + 35368, + 35370, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 35371, + 35371, + null + ], + [ + "number-token", + "0", + 35372, + 35372, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 35373, + 35373, + null + ], + [ + "ident-token", + "left", + 35374, + 35377, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 35378, + 35378, + null + ], + [ + "number-token", + "0", + 35379, + 35379, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 35380, + 35380, + null + ], + [ + "ident-token", + "width", + 35381, + 35385, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 35386, + 35386, + null + ], + [ + "percentage-token", + "100%", + 35387, + 35390, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 35391, + 35391, + null + ], + [ + "ident-token", + "height", + 35392, + 35397, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 35398, + 35398, + null + ], + [ + "percentage-token", + "100%", + 35399, + 35402, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 35403, + 35403, + null + ], + [ + "ident-token", + "padding", + 35404, + 35410, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 35411, + 35411, + null + ], + [ + "dimension-token", + "1rem", + 35412, + 35415, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 35416, + 35416, + null + ], + [ + "dimension-token", + ".75rem", + 35417, + 35422, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 35423, + 35423, + null + ], + [ + "ident-token", + "overflow", + 35424, + 35431, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 35432, + 35432, + null + ], + [ + "ident-token", + "hidden", + 35433, + 35438, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 35439, + 35439, + null + ], + [ + "ident-token", + "text-align", + 35440, + 35449, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 35450, + 35450, + null + ], + [ + "ident-token", + "start", + 35451, + 35455, + { + "value": "start" + } + ], + [ + "semicolon-token", + ";", + 35456, + 35456, + null + ], + [ + "ident-token", + "text-overflow", + 35457, + 35469, + { + "value": "text-overflow" + } + ], + [ + "colon-token", + ":", + 35470, + 35470, + null + ], + [ + "ident-token", + "ellipsis", + 35471, + 35478, + { + "value": "ellipsis" + } + ], + [ + "semicolon-token", + ";", + 35479, + 35479, + null + ], + [ + "ident-token", + "white-space", + 35480, + 35490, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 35491, + 35491, + null + ], + [ + "ident-token", + "nowrap", + 35492, + 35497, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 35498, + 35498, + null + ], + [ + "ident-token", + "pointer-events", + 35499, + 35512, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 35513, + 35513, + null + ], + [ + "ident-token", + "none", + 35514, + 35517, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 35518, + 35518, + null + ], + [ + "ident-token", + "border", + 35519, + 35524, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 35525, + 35525, + null + ], + [ + "dimension-token", + "1px", + 35526, + 35528, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 35529, + 35529, + null + ], + [ + "ident-token", + "solid", + 35530, + 35534, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 35535, + 35535, + null + ], + [ + "ident-token", + "transparent", + 35536, + 35546, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 35547, + 35547, + null + ], + [ + "ident-token", + "transform-origin", + 35548, + 35563, + { + "value": "transform-origin" + } + ], + [ + "colon-token", + ":", + 35564, + 35564, + null + ], + [ + "number-token", + "0", + 35565, + 35565, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 35566, + 35566, + null + ], + [ + "number-token", + "0", + 35567, + 35567, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 35568, + 35568, + null + ], + [ + "ident-token", + "transition", + 35569, + 35578, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 35579, + 35579, + null + ], + [ + "ident-token", + "opacity", + 35580, + 35586, + { + "value": "opacity" + } + ], + [ + "whitespace-token", + " ", + 35587, + 35587, + null + ], + [ + "dimension-token", + ".1s", + 35588, + 35590, + { + "value": 0.1, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 35591, + 35591, + null + ], + [ + "ident-token", + "ease-in-out", + 35592, + 35602, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 35603, + 35603, + null + ], + [ + "ident-token", + "transform", + 35604, + 35612, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 35613, + 35613, + null + ], + [ + "dimension-token", + ".1s", + 35614, + 35616, + { + "value": 0.1, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 35617, + 35617, + null + ], + [ + "ident-token", + "ease-in-out", + 35618, + 35628, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 35629, + 35629, + null + ], + [ + "at-keyword-token", + "@media", + 35630, + 35635, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 35636, + 35636, + null + ], + [ + "(-token", + "(", + 35637, + 35637, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 35638, + 35659, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 35660, + 35660, + null + ], + [ + "ident-token", + "reduce", + 35661, + 35666, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 35667, + 35667, + null + ], + [ + "{-token", + "{", + 35668, + 35668, + null + ], + [ + "delim-token", + ".", + 35669, + 35669, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35670, + 35682, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35683, + 35683, + { + "value": ">" + } + ], + [ + "ident-token", + "label", + 35684, + 35688, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 35689, + 35689, + null + ], + [ + "ident-token", + "transition", + 35690, + 35699, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 35700, + 35700, + null + ], + [ + "ident-token", + "none", + 35701, + 35704, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 35705, + 35705, + null + ], + [ + "}-token", + "}", + 35706, + 35706, + null + ], + [ + "delim-token", + ".", + 35707, + 35707, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35708, + 35720, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35721, + 35721, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35722, + 35722, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 35723, + 35734, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 35735, + 35735, + null + ], + [ + "delim-token", + ".", + 35736, + 35736, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35737, + 35749, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35750, + 35750, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35751, + 35751, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 35752, + 35773, + { + "value": "form-control-plaintext" + } + ], + [ + "{-token", + "{", + 35774, + 35774, + null + ], + [ + "ident-token", + "padding", + 35775, + 35781, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 35782, + 35782, + null + ], + [ + "dimension-token", + "1rem", + 35783, + 35786, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 35787, + 35787, + null + ], + [ + "dimension-token", + ".75rem", + 35788, + 35793, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 35794, + 35794, + null + ], + [ + "delim-token", + ".", + 35795, + 35795, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35796, + 35808, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35809, + 35809, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35810, + 35810, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 35811, + 35832, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 35833, + 35833, + null + ], + [ + "colon-token", + ":", + 35834, + 35834, + null + ], + [ + "delim-token", + "-", + 35835, + 35835, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder", + 35836, + 35850, + { + "value": "moz-placeholder" + } + ], + [ + "comma-token", + ",", + 35851, + 35851, + null + ], + [ + "delim-token", + ".", + 35852, + 35852, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35853, + 35865, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35866, + 35866, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35867, + 35867, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 35868, + 35879, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 35880, + 35880, + null + ], + [ + "colon-token", + ":", + 35881, + 35881, + null + ], + [ + "delim-token", + "-", + 35882, + 35882, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder", + 35883, + 35897, + { + "value": "moz-placeholder" + } + ], + [ + "{-token", + "{", + 35898, + 35898, + null + ], + [ + "ident-token", + "color", + 35899, + 35903, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 35904, + 35904, + null + ], + [ + "ident-token", + "transparent", + 35905, + 35915, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 35916, + 35916, + null + ], + [ + "delim-token", + ".", + 35917, + 35917, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35918, + 35930, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35931, + 35931, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35932, + 35932, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 35933, + 35954, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 35955, + 35955, + null + ], + [ + "colon-token", + ":", + 35956, + 35956, + null + ], + [ + "ident-token", + "placeholder", + 35957, + 35967, + { + "value": "placeholder" + } + ], + [ + "comma-token", + ",", + 35968, + 35968, + null + ], + [ + "delim-token", + ".", + 35969, + 35969, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 35970, + 35982, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 35983, + 35983, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 35984, + 35984, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 35985, + 35996, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 35997, + 35997, + null + ], + [ + "colon-token", + ":", + 35998, + 35998, + null + ], + [ + "ident-token", + "placeholder", + 35999, + 36009, + { + "value": "placeholder" + } + ], + [ + "{-token", + "{", + 36010, + 36010, + null + ], + [ + "ident-token", + "color", + 36011, + 36015, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 36016, + 36016, + null + ], + [ + "ident-token", + "transparent", + 36017, + 36027, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 36028, + 36028, + null + ], + [ + "delim-token", + ".", + 36029, + 36029, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36030, + 36042, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36043, + 36043, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36044, + 36044, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 36045, + 36066, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 36067, + 36067, + null + ], + [ + "function-token", + "not(", + 36068, + 36071, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36072, + 36072, + null + ], + [ + "delim-token", + "-", + 36073, + 36073, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder-shown", + 36074, + 36094, + { + "value": "moz-placeholder-shown" + } + ], + [ + ")-token", + ")", + 36095, + 36095, + null + ], + [ + "comma-token", + ",", + 36096, + 36096, + null + ], + [ + "delim-token", + ".", + 36097, + 36097, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36098, + 36110, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36111, + 36111, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36112, + 36112, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36113, + 36124, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36125, + 36125, + null + ], + [ + "function-token", + "not(", + 36126, + 36129, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36130, + 36130, + null + ], + [ + "delim-token", + "-", + 36131, + 36131, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder-shown", + 36132, + 36152, + { + "value": "moz-placeholder-shown" + } + ], + [ + ")-token", + ")", + 36153, + 36153, + null + ], + [ + "{-token", + "{", + 36154, + 36154, + null + ], + [ + "ident-token", + "padding-top", + 36155, + 36165, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 36166, + 36166, + null + ], + [ + "dimension-token", + "1.625rem", + 36167, + 36174, + { + "value": 1.625, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 36175, + 36175, + null + ], + [ + "ident-token", + "padding-bottom", + 36176, + 36189, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 36190, + 36190, + null + ], + [ + "dimension-token", + ".625rem", + 36191, + 36197, + { + "value": 0.625, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 36198, + 36198, + null + ], + [ + "delim-token", + ".", + 36199, + 36199, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36200, + 36212, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36213, + 36213, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36214, + 36214, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 36215, + 36236, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 36237, + 36237, + null + ], + [ + "ident-token", + "focus", + 36238, + 36242, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 36243, + 36243, + null + ], + [ + "delim-token", + ".", + 36244, + 36244, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36245, + 36257, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36258, + 36258, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36259, + 36259, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 36260, + 36281, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 36282, + 36282, + null + ], + [ + "function-token", + "not(", + 36283, + 36286, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36287, + 36287, + null + ], + [ + "ident-token", + "placeholder-shown", + 36288, + 36304, + { + "value": "placeholder-shown" + } + ], + [ + ")-token", + ")", + 36305, + 36305, + null + ], + [ + "comma-token", + ",", + 36306, + 36306, + null + ], + [ + "delim-token", + ".", + 36307, + 36307, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36308, + 36320, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36321, + 36321, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36322, + 36322, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36323, + 36334, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36335, + 36335, + null + ], + [ + "ident-token", + "focus", + 36336, + 36340, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 36341, + 36341, + null + ], + [ + "delim-token", + ".", + 36342, + 36342, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36343, + 36355, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36356, + 36356, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36357, + 36357, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36358, + 36369, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36370, + 36370, + null + ], + [ + "function-token", + "not(", + 36371, + 36374, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36375, + 36375, + null + ], + [ + "ident-token", + "placeholder-shown", + 36376, + 36392, + { + "value": "placeholder-shown" + } + ], + [ + ")-token", + ")", + 36393, + 36393, + null + ], + [ + "{-token", + "{", + 36394, + 36394, + null + ], + [ + "ident-token", + "padding-top", + 36395, + 36405, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 36406, + 36406, + null + ], + [ + "dimension-token", + "1.625rem", + 36407, + 36414, + { + "value": 1.625, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 36415, + 36415, + null + ], + [ + "ident-token", + "padding-bottom", + 36416, + 36429, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 36430, + 36430, + null + ], + [ + "dimension-token", + ".625rem", + 36431, + 36437, + { + "value": 0.625, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 36438, + 36438, + null + ], + [ + "delim-token", + ".", + 36439, + 36439, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36440, + 36452, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36453, + 36453, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36454, + 36454, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 36455, + 36476, + { + "value": "form-control-plaintext" + } + ], + [ + "colon-token", + ":", + 36477, + 36477, + null + ], + [ + "delim-token", + "-", + 36478, + 36478, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-autofill", + 36479, + 36493, + { + "value": "webkit-autofill" + } + ], + [ + "comma-token", + ",", + 36494, + 36494, + null + ], + [ + "delim-token", + ".", + 36495, + 36495, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36496, + 36508, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36509, + 36509, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36510, + 36510, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36511, + 36522, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36523, + 36523, + null + ], + [ + "delim-token", + "-", + 36524, + 36524, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-autofill", + 36525, + 36539, + { + "value": "webkit-autofill" + } + ], + [ + "{-token", + "{", + 36540, + 36540, + null + ], + [ + "ident-token", + "padding-top", + 36541, + 36551, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 36552, + 36552, + null + ], + [ + "dimension-token", + "1.625rem", + 36553, + 36560, + { + "value": 1.625, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 36561, + 36561, + null + ], + [ + "ident-token", + "padding-bottom", + 36562, + 36575, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 36576, + 36576, + null + ], + [ + "dimension-token", + ".625rem", + 36577, + 36583, + { + "value": 0.625, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 36584, + 36584, + null + ], + [ + "delim-token", + ".", + 36585, + 36585, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36586, + 36598, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36599, + 36599, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36600, + 36600, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 36601, + 36611, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 36612, + 36612, + null + ], + [ + "ident-token", + "padding-top", + 36613, + 36623, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 36624, + 36624, + null + ], + [ + "dimension-token", + "1.625rem", + 36625, + 36632, + { + "value": 1.625, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 36633, + 36633, + null + ], + [ + "ident-token", + "padding-bottom", + 36634, + 36647, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 36648, + 36648, + null + ], + [ + "dimension-token", + ".625rem", + 36649, + 36655, + { + "value": 0.625, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 36656, + 36656, + null + ], + [ + "delim-token", + ".", + 36657, + 36657, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36658, + 36670, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36671, + 36671, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36672, + 36672, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36673, + 36684, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36685, + 36685, + null + ], + [ + "function-token", + "not(", + 36686, + 36689, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36690, + 36690, + null + ], + [ + "delim-token", + "-", + 36691, + 36691, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-placeholder-shown", + 36692, + 36712, + { + "value": "moz-placeholder-shown" + } + ], + [ + ")-token", + ")", + 36713, + 36713, + null + ], + [ + "delim-token", + "~", + 36714, + 36714, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 36715, + 36719, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 36720, + 36720, + null + ], + [ + "ident-token", + "opacity", + 36721, + 36727, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 36728, + 36728, + null + ], + [ + "number-token", + ".65", + 36729, + 36731, + { + "value": 0.65, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 36732, + 36732, + null + ], + [ + "ident-token", + "transform", + 36733, + 36741, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 36742, + 36742, + null + ], + [ + "function-token", + "scale(", + 36743, + 36748, + { + "value": "scale" + } + ], + [ + "number-token", + ".85", + 36749, + 36751, + { + "value": 0.85, + "type": "number" + } + ], + [ + ")-token", + ")", + 36752, + 36752, + null + ], + [ + "whitespace-token", + " ", + 36753, + 36753, + null + ], + [ + "function-token", + "translateY(", + 36754, + 36764, + { + "value": "translateY" + } + ], + [ + "dimension-token", + "-.5rem", + 36765, + 36770, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 36771, + 36771, + null + ], + [ + "whitespace-token", + " ", + 36772, + 36772, + null + ], + [ + "function-token", + "translateX(", + 36773, + 36783, + { + "value": "translateX" + } + ], + [ + "dimension-token", + ".15rem", + 36784, + 36789, + { + "value": 0.15, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 36790, + 36790, + null + ], + [ + "}-token", + "}", + 36791, + 36791, + null + ], + [ + "delim-token", + ".", + 36792, + 36792, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36793, + 36805, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36806, + 36806, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36807, + 36807, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 36808, + 36829, + { + "value": "form-control-plaintext" + } + ], + [ + "delim-token", + "~", + 36830, + 36830, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 36831, + 36835, + { + "value": "label" + } + ], + [ + "comma-token", + ",", + 36836, + 36836, + null + ], + [ + "delim-token", + ".", + 36837, + 36837, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36838, + 36850, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36851, + 36851, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36852, + 36852, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36853, + 36864, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36865, + 36865, + null + ], + [ + "ident-token", + "focus", + 36866, + 36870, + { + "value": "focus" + } + ], + [ + "delim-token", + "~", + 36871, + 36871, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 36872, + 36876, + { + "value": "label" + } + ], + [ + "comma-token", + ",", + 36877, + 36877, + null + ], + [ + "delim-token", + ".", + 36878, + 36878, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36879, + 36891, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36892, + 36892, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36893, + 36893, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 36894, + 36905, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 36906, + 36906, + null + ], + [ + "function-token", + "not(", + 36907, + 36910, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 36911, + 36911, + null + ], + [ + "ident-token", + "placeholder-shown", + 36912, + 36928, + { + "value": "placeholder-shown" + } + ], + [ + ")-token", + ")", + 36929, + 36929, + null + ], + [ + "delim-token", + "~", + 36930, + 36930, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 36931, + 36935, + { + "value": "label" + } + ], + [ + "comma-token", + ",", + 36936, + 36936, + null + ], + [ + "delim-token", + ".", + 36937, + 36937, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 36938, + 36950, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 36951, + 36951, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 36952, + 36952, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 36953, + 36963, + { + "value": "form-select" + } + ], + [ + "delim-token", + "~", + 36964, + 36964, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 36965, + 36969, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 36970, + 36970, + null + ], + [ + "ident-token", + "opacity", + 36971, + 36977, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 36978, + 36978, + null + ], + [ + "number-token", + ".65", + 36979, + 36981, + { + "value": 0.65, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 36982, + 36982, + null + ], + [ + "ident-token", + "transform", + 36983, + 36991, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 36992, + 36992, + null + ], + [ + "function-token", + "scale(", + 36993, + 36998, + { + "value": "scale" + } + ], + [ + "number-token", + ".85", + 36999, + 37001, + { + "value": 0.85, + "type": "number" + } + ], + [ + ")-token", + ")", + 37002, + 37002, + null + ], + [ + "whitespace-token", + " ", + 37003, + 37003, + null + ], + [ + "function-token", + "translateY(", + 37004, + 37014, + { + "value": "translateY" + } + ], + [ + "dimension-token", + "-.5rem", + 37015, + 37020, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 37021, + 37021, + null + ], + [ + "whitespace-token", + " ", + 37022, + 37022, + null + ], + [ + "function-token", + "translateX(", + 37023, + 37033, + { + "value": "translateX" + } + ], + [ + "dimension-token", + ".15rem", + 37034, + 37039, + { + "value": 0.15, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 37040, + 37040, + null + ], + [ + "}-token", + "}", + 37041, + 37041, + null + ], + [ + "delim-token", + ".", + 37042, + 37042, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 37043, + 37055, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 37056, + 37056, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37057, + 37057, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 37058, + 37069, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 37070, + 37070, + null + ], + [ + "delim-token", + "-", + 37071, + 37071, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-autofill", + 37072, + 37086, + { + "value": "webkit-autofill" + } + ], + [ + "delim-token", + "~", + 37087, + 37087, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 37088, + 37092, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 37093, + 37093, + null + ], + [ + "ident-token", + "opacity", + 37094, + 37100, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 37101, + 37101, + null + ], + [ + "number-token", + ".65", + 37102, + 37104, + { + "value": 0.65, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 37105, + 37105, + null + ], + [ + "ident-token", + "transform", + 37106, + 37114, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 37115, + 37115, + null + ], + [ + "function-token", + "scale(", + 37116, + 37121, + { + "value": "scale" + } + ], + [ + "number-token", + ".85", + 37122, + 37124, + { + "value": 0.85, + "type": "number" + } + ], + [ + ")-token", + ")", + 37125, + 37125, + null + ], + [ + "whitespace-token", + " ", + 37126, + 37126, + null + ], + [ + "function-token", + "translateY(", + 37127, + 37137, + { + "value": "translateY" + } + ], + [ + "dimension-token", + "-.5rem", + 37138, + 37143, + { + "value": -0.5, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 37144, + 37144, + null + ], + [ + "whitespace-token", + " ", + 37145, + 37145, + null + ], + [ + "function-token", + "translateX(", + 37146, + 37156, + { + "value": "translateX" + } + ], + [ + "dimension-token", + ".15rem", + 37157, + 37162, + { + "value": 0.15, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 37163, + 37163, + null + ], + [ + "}-token", + "}", + 37164, + 37164, + null + ], + [ + "delim-token", + ".", + 37165, + 37165, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 37166, + 37178, + { + "value": "form-floating" + } + ], + [ + "delim-token", + ">", + 37179, + 37179, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37180, + 37180, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-plaintext", + 37181, + 37202, + { + "value": "form-control-plaintext" + } + ], + [ + "delim-token", + "~", + 37203, + 37203, + { + "value": "~" + } + ], + [ + "ident-token", + "label", + 37204, + 37208, + { + "value": "label" + } + ], + [ + "{-token", + "{", + 37209, + 37209, + null + ], + [ + "ident-token", + "border-width", + 37210, + 37221, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 37222, + 37222, + null + ], + [ + "dimension-token", + "1px", + 37223, + 37225, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 37226, + 37226, + null + ], + [ + "number-token", + "0", + 37227, + 37227, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 37228, + 37228, + null + ], + [ + "delim-token", + ".", + 37229, + 37229, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37230, + 37240, + { + "value": "input-group" + } + ], + [ + "{-token", + "{", + 37241, + 37241, + null + ], + [ + "ident-token", + "position", + 37242, + 37249, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 37250, + 37250, + null + ], + [ + "ident-token", + "relative", + 37251, + 37258, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 37259, + 37259, + null + ], + [ + "ident-token", + "display", + 37260, + 37266, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 37267, + 37267, + null + ], + [ + "ident-token", + "flex", + 37268, + 37271, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 37272, + 37272, + null + ], + [ + "ident-token", + "flex-wrap", + 37273, + 37281, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 37282, + 37282, + null + ], + [ + "ident-token", + "wrap", + 37283, + 37286, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 37287, + 37287, + null + ], + [ + "ident-token", + "align-items", + 37288, + 37298, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 37299, + 37299, + null + ], + [ + "ident-token", + "stretch", + 37300, + 37306, + { + "value": "stretch" + } + ], + [ + "semicolon-token", + ";", + 37307, + 37307, + null + ], + [ + "ident-token", + "width", + 37308, + 37312, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 37313, + 37313, + null + ], + [ + "percentage-token", + "100%", + 37314, + 37317, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 37318, + 37318, + null + ], + [ + "delim-token", + ".", + 37319, + 37319, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37320, + 37330, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37331, + 37331, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37332, + 37332, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 37333, + 37344, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 37345, + 37345, + null + ], + [ + "delim-token", + ".", + 37346, + 37346, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37347, + 37357, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37358, + 37358, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37359, + 37359, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 37360, + 37372, + { + "value": "form-floating" + } + ], + [ + "comma-token", + ",", + 37373, + 37373, + null + ], + [ + "delim-token", + ".", + 37374, + 37374, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37375, + 37385, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37386, + 37386, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37387, + 37387, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 37388, + 37398, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 37399, + 37399, + null + ], + [ + "ident-token", + "position", + 37400, + 37407, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 37408, + 37408, + null + ], + [ + "ident-token", + "relative", + 37409, + 37416, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 37417, + 37417, + null + ], + [ + "ident-token", + "flex", + 37418, + 37421, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 37422, + 37422, + null + ], + [ + "number-token", + "1", + 37423, + 37423, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 37424, + 37424, + null + ], + [ + "number-token", + "1", + 37425, + 37425, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 37426, + 37426, + null + ], + [ + "ident-token", + "auto", + 37427, + 37430, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 37431, + 37431, + null + ], + [ + "ident-token", + "width", + 37432, + 37436, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 37437, + 37437, + null + ], + [ + "percentage-token", + "1%", + 37438, + 37439, + { + "value": 1 + } + ], + [ + "semicolon-token", + ";", + 37440, + 37440, + null + ], + [ + "ident-token", + "min-width", + 37441, + 37449, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 37450, + 37450, + null + ], + [ + "number-token", + "0", + 37451, + 37451, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 37452, + 37452, + null + ], + [ + "delim-token", + ".", + 37453, + 37453, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37454, + 37464, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37465, + 37465, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37466, + 37466, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 37467, + 37478, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 37479, + 37479, + null + ], + [ + "ident-token", + "focus", + 37480, + 37484, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 37485, + 37485, + null + ], + [ + "delim-token", + ".", + 37486, + 37486, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37487, + 37497, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37498, + 37498, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37499, + 37499, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 37500, + 37512, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 37513, + 37513, + null + ], + [ + "ident-token", + "focus-within", + 37514, + 37525, + { + "value": "focus-within" + } + ], + [ + "comma-token", + ",", + 37526, + 37526, + null + ], + [ + "delim-token", + ".", + 37527, + 37527, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37528, + 37538, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 37539, + 37539, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37540, + 37540, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 37541, + 37551, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 37552, + 37552, + null + ], + [ + "ident-token", + "focus", + 37553, + 37557, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 37558, + 37558, + null + ], + [ + "ident-token", + "z-index", + 37559, + 37565, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 37566, + 37566, + null + ], + [ + "number-token", + "5", + 37567, + 37567, + { + "value": 5, + "type": "integer" + } + ], + [ + "}-token", + "}", + 37568, + 37568, + null + ], + [ + "delim-token", + ".", + 37569, + 37569, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37570, + 37580, + { + "value": "input-group" + } + ], + [ + "whitespace-token", + " ", + 37581, + 37581, + null + ], + [ + "delim-token", + ".", + 37582, + 37582, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 37583, + 37585, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 37586, + 37586, + null + ], + [ + "ident-token", + "position", + 37587, + 37594, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 37595, + 37595, + null + ], + [ + "ident-token", + "relative", + 37596, + 37603, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 37604, + 37604, + null + ], + [ + "ident-token", + "z-index", + 37605, + 37611, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 37612, + 37612, + null + ], + [ + "number-token", + "2", + 37613, + 37613, + { + "value": 2, + "type": "integer" + } + ], + [ + "}-token", + "}", + 37614, + 37614, + null + ], + [ + "delim-token", + ".", + 37615, + 37615, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 37616, + 37626, + { + "value": "input-group" + } + ], + [ + "whitespace-token", + " ", + 37627, + 37627, + null + ], + [ + "delim-token", + ".", + 37628, + 37628, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 37629, + 37631, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 37632, + 37632, + null + ], + [ + "ident-token", + "focus", + 37633, + 37637, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 37638, + 37638, + null + ], + [ + "ident-token", + "z-index", + 37639, + 37645, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 37646, + 37646, + null + ], + [ + "number-token", + "5", + 37647, + 37647, + { + "value": 5, + "type": "integer" + } + ], + [ + "}-token", + "}", + 37648, + 37648, + null + ], + [ + "delim-token", + ".", + 37649, + 37649, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-text", + 37650, + 37665, + { + "value": "input-group-text" + } + ], + [ + "{-token", + "{", + 37666, + 37666, + null + ], + [ + "ident-token", + "display", + 37667, + 37673, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 37674, + 37674, + null + ], + [ + "ident-token", + "flex", + 37675, + 37678, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 37679, + 37679, + null + ], + [ + "ident-token", + "align-items", + 37680, + 37690, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 37691, + 37691, + null + ], + [ + "ident-token", + "center", + 37692, + 37697, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 37698, + 37698, + null + ], + [ + "ident-token", + "padding", + 37699, + 37705, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 37706, + 37706, + null + ], + [ + "dimension-token", + ".375rem", + 37707, + 37713, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 37714, + 37714, + null + ], + [ + "dimension-token", + ".75rem", + 37715, + 37720, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 37721, + 37721, + null + ], + [ + "ident-token", + "font-size", + 37722, + 37730, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 37731, + 37731, + null + ], + [ + "dimension-token", + "1rem", + 37732, + 37735, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 37736, + 37736, + null + ], + [ + "ident-token", + "font-weight", + 37737, + 37747, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 37748, + 37748, + null + ], + [ + "number-token", + "400", + 37749, + 37751, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 37752, + 37752, + null + ], + [ + "ident-token", + "line-height", + 37753, + 37763, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 37764, + 37764, + null + ], + [ + "number-token", + "1.5", + 37765, + 37767, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 37768, + 37768, + null + ], + [ + "ident-token", + "color", + 37769, + 37773, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 37774, + 37774, + null + ], + [ + "hash-token", + "#212529", + 37775, + 37781, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 37782, + 37782, + null + ], + [ + "ident-token", + "text-align", + 37783, + 37792, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 37793, + 37793, + null + ], + [ + "ident-token", + "center", + 37794, + 37799, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 37800, + 37800, + null + ], + [ + "ident-token", + "white-space", + 37801, + 37811, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 37812, + 37812, + null + ], + [ + "ident-token", + "nowrap", + 37813, + 37818, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 37819, + 37819, + null + ], + [ + "ident-token", + "background-color", + 37820, + 37835, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 37836, + 37836, + null + ], + [ + "hash-token", + "#e9ecef", + 37837, + 37843, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 37844, + 37844, + null + ], + [ + "ident-token", + "border", + 37845, + 37850, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 37851, + 37851, + null + ], + [ + "dimension-token", + "1px", + 37852, + 37854, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 37855, + 37855, + null + ], + [ + "ident-token", + "solid", + 37856, + 37860, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 37861, + 37861, + null + ], + [ + "hash-token", + "#ced4da", + 37862, + 37868, + { + "value": "ced4da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 37869, + 37869, + null + ], + [ + "ident-token", + "border-radius", + 37870, + 37882, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 37883, + 37883, + null + ], + [ + "dimension-token", + ".375rem", + 37884, + 37890, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 37891, + 37891, + null + ], + [ + "delim-token", + ".", + 37892, + 37892, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-lg", + 37893, + 37906, + { + "value": "input-group-lg" + } + ], + [ + "delim-token", + ">", + 37907, + 37907, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37908, + 37908, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 37909, + 37911, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 37912, + 37912, + null + ], + [ + "delim-token", + ".", + 37913, + 37913, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-lg", + 37914, + 37927, + { + "value": "input-group-lg" + } + ], + [ + "delim-token", + ">", + 37928, + 37928, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37929, + 37929, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 37930, + 37941, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 37942, + 37942, + null + ], + [ + "delim-token", + ".", + 37943, + 37943, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-lg", + 37944, + 37957, + { + "value": "input-group-lg" + } + ], + [ + "delim-token", + ">", + 37958, + 37958, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37959, + 37959, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 37960, + 37970, + { + "value": "form-select" + } + ], + [ + "comma-token", + ",", + 37971, + 37971, + null + ], + [ + "delim-token", + ".", + 37972, + 37972, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-lg", + 37973, + 37986, + { + "value": "input-group-lg" + } + ], + [ + "delim-token", + ">", + 37987, + 37987, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 37988, + 37988, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-text", + 37989, + 38004, + { + "value": "input-group-text" + } + ], + [ + "{-token", + "{", + 38005, + 38005, + null + ], + [ + "ident-token", + "padding", + 38006, + 38012, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 38013, + 38013, + null + ], + [ + "dimension-token", + ".5rem", + 38014, + 38018, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 38019, + 38019, + null + ], + [ + "dimension-token", + "1rem", + 38020, + 38023, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 38024, + 38024, + null + ], + [ + "ident-token", + "font-size", + 38025, + 38033, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 38034, + 38034, + null + ], + [ + "dimension-token", + "1.25rem", + 38035, + 38041, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 38042, + 38042, + null + ], + [ + "ident-token", + "border-radius", + 38043, + 38055, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 38056, + 38056, + null + ], + [ + "dimension-token", + ".5rem", + 38057, + 38061, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 38062, + 38062, + null + ], + [ + "delim-token", + ".", + 38063, + 38063, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-sm", + 38064, + 38077, + { + "value": "input-group-sm" + } + ], + [ + "delim-token", + ">", + 38078, + 38078, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38079, + 38079, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 38080, + 38082, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 38083, + 38083, + null + ], + [ + "delim-token", + ".", + 38084, + 38084, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-sm", + 38085, + 38098, + { + "value": "input-group-sm" + } + ], + [ + "delim-token", + ">", + 38099, + 38099, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38100, + 38100, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 38101, + 38112, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 38113, + 38113, + null + ], + [ + "delim-token", + ".", + 38114, + 38114, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-sm", + 38115, + 38128, + { + "value": "input-group-sm" + } + ], + [ + "delim-token", + ">", + 38129, + 38129, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38130, + 38130, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 38131, + 38141, + { + "value": "form-select" + } + ], + [ + "comma-token", + ",", + 38142, + 38142, + null + ], + [ + "delim-token", + ".", + 38143, + 38143, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-sm", + 38144, + 38157, + { + "value": "input-group-sm" + } + ], + [ + "delim-token", + ">", + 38158, + 38158, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38159, + 38159, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-text", + 38160, + 38175, + { + "value": "input-group-text" + } + ], + [ + "{-token", + "{", + 38176, + 38176, + null + ], + [ + "ident-token", + "padding", + 38177, + 38183, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 38184, + 38184, + null + ], + [ + "dimension-token", + ".25rem", + 38185, + 38190, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 38191, + 38191, + null + ], + [ + "dimension-token", + ".5rem", + 38192, + 38196, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 38197, + 38197, + null + ], + [ + "ident-token", + "font-size", + 38198, + 38206, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 38207, + 38207, + null + ], + [ + "dimension-token", + ".875rem", + 38208, + 38214, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 38215, + 38215, + null + ], + [ + "ident-token", + "border-radius", + 38216, + 38228, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 38229, + 38229, + null + ], + [ + "dimension-token", + ".25rem", + 38230, + 38235, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 38236, + 38236, + null + ], + [ + "delim-token", + ".", + 38237, + 38237, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-lg", + 38238, + 38251, + { + "value": "input-group-lg" + } + ], + [ + "delim-token", + ">", + 38252, + 38252, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38253, + 38253, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 38254, + 38264, + { + "value": "form-select" + } + ], + [ + "comma-token", + ",", + 38265, + 38265, + null + ], + [ + "delim-token", + ".", + 38266, + 38266, + { + "value": "." + } + ], + [ + "ident-token", + "input-group-sm", + 38267, + 38280, + { + "value": "input-group-sm" + } + ], + [ + "delim-token", + ">", + 38281, + 38281, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38282, + 38282, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 38283, + 38293, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 38294, + 38294, + null + ], + [ + "ident-token", + "padding-right", + 38295, + 38307, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 38308, + 38308, + null + ], + [ + "dimension-token", + "3rem", + 38309, + 38312, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 38313, + 38313, + null + ], + [ + "delim-token", + ".", + 38314, + 38314, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38315, + 38325, + { + "value": "input-group" + } + ], + [ + "colon-token", + ":", + 38326, + 38326, + null + ], + [ + "function-token", + "not(", + 38327, + 38330, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38331, + 38331, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38332, + 38345, + { + "value": "has-validation" + } + ], + [ + ")-token", + ")", + 38346, + 38346, + null + ], + [ + "delim-token", + ">", + 38347, + 38347, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38348, + 38348, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 38349, + 38363, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 38364, + 38364, + null + ], + [ + "function-token", + "nth-last-child(", + 38365, + 38379, + { + "value": "nth-last-child" + } + ], + [ + "ident-token", + "n", + 38380, + 38380, + { + "value": "n" + } + ], + [ + "number-token", + "+3", + 38381, + 38382, + { + "value": 3, + "type": "integer" + } + ], + [ + ")-token", + ")", + 38383, + 38383, + null + ], + [ + "comma-token", + ",", + 38384, + 38384, + null + ], + [ + "delim-token", + ".", + 38385, + 38385, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38386, + 38396, + { + "value": "input-group" + } + ], + [ + "colon-token", + ":", + 38397, + 38397, + null + ], + [ + "function-token", + "not(", + 38398, + 38401, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38402, + 38402, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38403, + 38416, + { + "value": "has-validation" + } + ], + [ + ")-token", + ")", + 38417, + 38417, + null + ], + [ + "delim-token", + ">", + 38418, + 38418, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38419, + 38419, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 38420, + 38432, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 38433, + 38433, + null + ], + [ + "function-token", + "not(", + 38434, + 38437, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 38438, + 38438, + null + ], + [ + "ident-token", + "last-child", + 38439, + 38448, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 38449, + 38449, + null + ], + [ + "delim-token", + ">", + 38450, + 38450, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38451, + 38451, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 38452, + 38463, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 38464, + 38464, + null + ], + [ + "delim-token", + ".", + 38465, + 38465, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38466, + 38476, + { + "value": "input-group" + } + ], + [ + "colon-token", + ":", + 38477, + 38477, + null + ], + [ + "function-token", + "not(", + 38478, + 38481, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38482, + 38482, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38483, + 38496, + { + "value": "has-validation" + } + ], + [ + ")-token", + ")", + 38497, + 38497, + null + ], + [ + "delim-token", + ">", + 38498, + 38498, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38499, + 38499, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 38500, + 38512, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 38513, + 38513, + null + ], + [ + "function-token", + "not(", + 38514, + 38517, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 38518, + 38518, + null + ], + [ + "ident-token", + "last-child", + 38519, + 38528, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 38529, + 38529, + null + ], + [ + "delim-token", + ">", + 38530, + 38530, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38531, + 38531, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 38532, + 38542, + { + "value": "form-select" + } + ], + [ + "comma-token", + ",", + 38543, + 38543, + null + ], + [ + "delim-token", + ".", + 38544, + 38544, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38545, + 38555, + { + "value": "input-group" + } + ], + [ + "colon-token", + ":", + 38556, + 38556, + null + ], + [ + "function-token", + "not(", + 38557, + 38560, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38561, + 38561, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38562, + 38575, + { + "value": "has-validation" + } + ], + [ + ")-token", + ")", + 38576, + 38576, + null + ], + [ + "delim-token", + ">", + 38577, + 38577, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 38578, + 38578, + null + ], + [ + "function-token", + "not(", + 38579, + 38582, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 38583, + 38583, + null + ], + [ + "ident-token", + "last-child", + 38584, + 38593, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 38594, + 38594, + null + ], + [ + "colon-token", + ":", + 38595, + 38595, + null + ], + [ + "function-token", + "not(", + 38596, + 38599, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38600, + 38600, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 38601, + 38615, + { + "value": "dropdown-toggle" + } + ], + [ + ")-token", + ")", + 38616, + 38616, + null + ], + [ + "colon-token", + ":", + 38617, + 38617, + null + ], + [ + "function-token", + "not(", + 38618, + 38621, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38622, + 38622, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 38623, + 38635, + { + "value": "dropdown-menu" + } + ], + [ + ")-token", + ")", + 38636, + 38636, + null + ], + [ + "colon-token", + ":", + 38637, + 38637, + null + ], + [ + "function-token", + "not(", + 38638, + 38641, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38642, + 38642, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 38643, + 38655, + { + "value": "form-floating" + } + ], + [ + ")-token", + ")", + 38656, + 38656, + null + ], + [ + "{-token", + "{", + 38657, + 38657, + null + ], + [ + "ident-token", + "border-top-right-radius", + 38658, + 38680, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 38681, + 38681, + null + ], + [ + "number-token", + "0", + 38682, + 38682, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 38683, + 38683, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 38684, + 38709, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 38710, + 38710, + null + ], + [ + "number-token", + "0", + 38711, + 38711, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 38712, + 38712, + null + ], + [ + "delim-token", + ".", + 38713, + 38713, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38714, + 38724, + { + "value": "input-group" + } + ], + [ + "delim-token", + ".", + 38725, + 38725, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38726, + 38739, + { + "value": "has-validation" + } + ], + [ + "delim-token", + ">", + 38740, + 38740, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38741, + 38741, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 38742, + 38756, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 38757, + 38757, + null + ], + [ + "function-token", + "nth-last-child(", + 38758, + 38772, + { + "value": "nth-last-child" + } + ], + [ + "ident-token", + "n", + 38773, + 38773, + { + "value": "n" + } + ], + [ + "number-token", + "+4", + 38774, + 38775, + { + "value": 4, + "type": "integer" + } + ], + [ + ")-token", + ")", + 38776, + 38776, + null + ], + [ + "comma-token", + ",", + 38777, + 38777, + null + ], + [ + "delim-token", + ".", + 38778, + 38778, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38779, + 38789, + { + "value": "input-group" + } + ], + [ + "delim-token", + ".", + 38790, + 38790, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38791, + 38804, + { + "value": "has-validation" + } + ], + [ + "delim-token", + ">", + 38805, + 38805, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38806, + 38806, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 38807, + 38819, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 38820, + 38820, + null + ], + [ + "function-token", + "nth-last-child(", + 38821, + 38835, + { + "value": "nth-last-child" + } + ], + [ + "ident-token", + "n", + 38836, + 38836, + { + "value": "n" + } + ], + [ + "number-token", + "+3", + 38837, + 38838, + { + "value": 3, + "type": "integer" + } + ], + [ + ")-token", + ")", + 38839, + 38839, + null + ], + [ + "delim-token", + ">", + 38840, + 38840, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38841, + 38841, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 38842, + 38853, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 38854, + 38854, + null + ], + [ + "delim-token", + ".", + 38855, + 38855, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38856, + 38866, + { + "value": "input-group" + } + ], + [ + "delim-token", + ".", + 38867, + 38867, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38868, + 38881, + { + "value": "has-validation" + } + ], + [ + "delim-token", + ">", + 38882, + 38882, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38883, + 38883, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 38884, + 38896, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 38897, + 38897, + null + ], + [ + "function-token", + "nth-last-child(", + 38898, + 38912, + { + "value": "nth-last-child" + } + ], + [ + "ident-token", + "n", + 38913, + 38913, + { + "value": "n" + } + ], + [ + "number-token", + "+3", + 38914, + 38915, + { + "value": 3, + "type": "integer" + } + ], + [ + ")-token", + ")", + 38916, + 38916, + null + ], + [ + "delim-token", + ">", + 38917, + 38917, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 38918, + 38918, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 38919, + 38929, + { + "value": "form-select" + } + ], + [ + "comma-token", + ",", + 38930, + 38930, + null + ], + [ + "delim-token", + ".", + 38931, + 38931, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 38932, + 38942, + { + "value": "input-group" + } + ], + [ + "delim-token", + ".", + 38943, + 38943, + { + "value": "." + } + ], + [ + "ident-token", + "has-validation", + 38944, + 38957, + { + "value": "has-validation" + } + ], + [ + "delim-token", + ">", + 38958, + 38958, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 38959, + 38959, + null + ], + [ + "function-token", + "nth-last-child(", + 38960, + 38974, + { + "value": "nth-last-child" + } + ], + [ + "ident-token", + "n", + 38975, + 38975, + { + "value": "n" + } + ], + [ + "number-token", + "+3", + 38976, + 38977, + { + "value": 3, + "type": "integer" + } + ], + [ + ")-token", + ")", + 38978, + 38978, + null + ], + [ + "colon-token", + ":", + 38979, + 38979, + null + ], + [ + "function-token", + "not(", + 38980, + 38983, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 38984, + 38984, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 38985, + 38999, + { + "value": "dropdown-toggle" + } + ], + [ + ")-token", + ")", + 39000, + 39000, + null + ], + [ + "colon-token", + ":", + 39001, + 39001, + null + ], + [ + "function-token", + "not(", + 39002, + 39005, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39006, + 39006, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 39007, + 39019, + { + "value": "dropdown-menu" + } + ], + [ + ")-token", + ")", + 39020, + 39020, + null + ], + [ + "colon-token", + ":", + 39021, + 39021, + null + ], + [ + "function-token", + "not(", + 39022, + 39025, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39026, + 39026, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 39027, + 39039, + { + "value": "form-floating" + } + ], + [ + ")-token", + ")", + 39040, + 39040, + null + ], + [ + "{-token", + "{", + 39041, + 39041, + null + ], + [ + "ident-token", + "border-top-right-radius", + 39042, + 39064, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 39065, + 39065, + null + ], + [ + "number-token", + "0", + 39066, + 39066, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 39067, + 39067, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 39068, + 39093, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 39094, + 39094, + null + ], + [ + "number-token", + "0", + 39095, + 39095, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 39096, + 39096, + null + ], + [ + "delim-token", + ".", + 39097, + 39097, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 39098, + 39108, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 39109, + 39109, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 39110, + 39110, + null + ], + [ + "function-token", + "not(", + 39111, + 39114, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 39115, + 39115, + null + ], + [ + "ident-token", + "first-child", + 39116, + 39126, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 39127, + 39127, + null + ], + [ + "colon-token", + ":", + 39128, + 39128, + null + ], + [ + "function-token", + "not(", + 39129, + 39132, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39133, + 39133, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 39134, + 39146, + { + "value": "dropdown-menu" + } + ], + [ + ")-token", + ")", + 39147, + 39147, + null + ], + [ + "colon-token", + ":", + 39148, + 39148, + null + ], + [ + "function-token", + "not(", + 39149, + 39152, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39153, + 39153, + { + "value": "." + } + ], + [ + "ident-token", + "valid-tooltip", + 39154, + 39166, + { + "value": "valid-tooltip" + } + ], + [ + ")-token", + ")", + 39167, + 39167, + null + ], + [ + "colon-token", + ":", + 39168, + 39168, + null + ], + [ + "function-token", + "not(", + 39169, + 39172, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39173, + 39173, + { + "value": "." + } + ], + [ + "ident-token", + "valid-feedback", + 39174, + 39187, + { + "value": "valid-feedback" + } + ], + [ + ")-token", + ")", + 39188, + 39188, + null + ], + [ + "colon-token", + ":", + 39189, + 39189, + null + ], + [ + "function-token", + "not(", + 39190, + 39193, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39194, + 39194, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-tooltip", + 39195, + 39209, + { + "value": "invalid-tooltip" + } + ], + [ + ")-token", + ")", + 39210, + 39210, + null + ], + [ + "colon-token", + ":", + 39211, + 39211, + null + ], + [ + "function-token", + "not(", + 39212, + 39215, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 39216, + 39216, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-feedback", + 39217, + 39232, + { + "value": "invalid-feedback" + } + ], + [ + ")-token", + ")", + 39233, + 39233, + null + ], + [ + "{-token", + "{", + 39234, + 39234, + null + ], + [ + "ident-token", + "margin-left", + 39235, + 39245, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 39246, + 39246, + null + ], + [ + "dimension-token", + "-1px", + 39247, + 39250, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 39251, + 39251, + null + ], + [ + "ident-token", + "border-top-left-radius", + 39252, + 39273, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 39274, + 39274, + null + ], + [ + "number-token", + "0", + 39275, + 39275, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 39276, + 39276, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 39277, + 39301, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 39302, + 39302, + null + ], + [ + "number-token", + "0", + 39303, + 39303, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 39304, + 39304, + null + ], + [ + "delim-token", + ".", + 39305, + 39305, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 39306, + 39316, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 39317, + 39317, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 39318, + 39318, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 39319, + 39331, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 39332, + 39332, + null + ], + [ + "function-token", + "not(", + 39333, + 39336, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 39337, + 39337, + null + ], + [ + "ident-token", + "first-child", + 39338, + 39348, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 39349, + 39349, + null + ], + [ + "delim-token", + ">", + 39350, + 39350, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 39351, + 39351, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 39352, + 39363, + { + "value": "form-control" + } + ], + [ + "comma-token", + ",", + 39364, + 39364, + null + ], + [ + "delim-token", + ".", + 39365, + 39365, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 39366, + 39376, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 39377, + 39377, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 39378, + 39378, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 39379, + 39391, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 39392, + 39392, + null + ], + [ + "function-token", + "not(", + 39393, + 39396, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 39397, + 39397, + null + ], + [ + "ident-token", + "first-child", + 39398, + 39408, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 39409, + 39409, + null + ], + [ + "delim-token", + ">", + 39410, + 39410, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 39411, + 39411, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 39412, + 39422, + { + "value": "form-select" + } + ], + [ + "{-token", + "{", + 39423, + 39423, + null + ], + [ + "ident-token", + "border-top-left-radius", + 39424, + 39445, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 39446, + 39446, + null + ], + [ + "number-token", + "0", + 39447, + 39447, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 39448, + 39448, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 39449, + 39473, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 39474, + 39474, + null + ], + [ + "number-token", + "0", + 39475, + 39475, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 39476, + 39476, + null + ], + [ + "delim-token", + ".", + 39477, + 39477, + { + "value": "." + } + ], + [ + "ident-token", + "valid-feedback", + 39478, + 39491, + { + "value": "valid-feedback" + } + ], + [ + "{-token", + "{", + 39492, + 39492, + null + ], + [ + "ident-token", + "display", + 39493, + 39499, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 39500, + 39500, + null + ], + [ + "ident-token", + "none", + 39501, + 39504, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 39505, + 39505, + null + ], + [ + "ident-token", + "width", + 39506, + 39510, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 39511, + 39511, + null + ], + [ + "percentage-token", + "100%", + 39512, + 39515, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 39516, + 39516, + null + ], + [ + "ident-token", + "margin-top", + 39517, + 39526, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 39527, + 39527, + null + ], + [ + "dimension-token", + ".25rem", + 39528, + 39533, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 39534, + 39534, + null + ], + [ + "ident-token", + "font-size", + 39535, + 39543, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 39544, + 39544, + null + ], + [ + "dimension-token", + ".875em", + 39545, + 39550, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 39551, + 39551, + null + ], + [ + "ident-token", + "color", + 39552, + 39556, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 39557, + 39557, + null + ], + [ + "hash-token", + "#198754", + 39558, + 39564, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 39565, + 39565, + null + ], + [ + "delim-token", + ".", + 39566, + 39566, + { + "value": "." + } + ], + [ + "ident-token", + "valid-tooltip", + 39567, + 39579, + { + "value": "valid-tooltip" + } + ], + [ + "{-token", + "{", + 39580, + 39580, + null + ], + [ + "ident-token", + "position", + 39581, + 39588, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 39589, + 39589, + null + ], + [ + "ident-token", + "absolute", + 39590, + 39597, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 39598, + 39598, + null + ], + [ + "ident-token", + "top", + 39599, + 39601, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 39602, + 39602, + null + ], + [ + "percentage-token", + "100%", + 39603, + 39606, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 39607, + 39607, + null + ], + [ + "ident-token", + "z-index", + 39608, + 39614, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 39615, + 39615, + null + ], + [ + "number-token", + "5", + 39616, + 39616, + { + "value": 5, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 39617, + 39617, + null + ], + [ + "ident-token", + "display", + 39618, + 39624, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 39625, + 39625, + null + ], + [ + "ident-token", + "none", + 39626, + 39629, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 39630, + 39630, + null + ], + [ + "ident-token", + "max-width", + 39631, + 39639, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 39640, + 39640, + null + ], + [ + "percentage-token", + "100%", + 39641, + 39644, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 39645, + 39645, + null + ], + [ + "ident-token", + "padding", + 39646, + 39652, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 39653, + 39653, + null + ], + [ + "dimension-token", + ".25rem", + 39654, + 39659, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 39660, + 39660, + null + ], + [ + "dimension-token", + ".5rem", + 39661, + 39665, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 39666, + 39666, + null + ], + [ + "ident-token", + "margin-top", + 39667, + 39676, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 39677, + 39677, + null + ], + [ + "dimension-token", + ".1rem", + 39678, + 39682, + { + "value": 0.1, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 39683, + 39683, + null + ], + [ + "ident-token", + "font-size", + 39684, + 39692, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 39693, + 39693, + null + ], + [ + "dimension-token", + ".875rem", + 39694, + 39700, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 39701, + 39701, + null + ], + [ + "ident-token", + "color", + 39702, + 39706, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 39707, + 39707, + null + ], + [ + "hash-token", + "#fff", + 39708, + 39711, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 39712, + 39712, + null + ], + [ + "ident-token", + "background-color", + 39713, + 39728, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 39729, + 39729, + null + ], + [ + "function-token", + "rgba(", + 39730, + 39734, + { + "value": "rgba" + } + ], + [ + "number-token", + "25", + 39735, + 39736, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 39737, + 39737, + null + ], + [ + "number-token", + "135", + 39738, + 39740, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 39741, + 39741, + null + ], + [ + "number-token", + "84", + 39742, + 39743, + { + "value": 84, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 39744, + 39744, + null + ], + [ + "number-token", + ".9", + 39745, + 39746, + { + "value": 0.9, + "type": "number" + } + ], + [ + ")-token", + ")", + 39747, + 39747, + null + ], + [ + "semicolon-token", + ";", + 39748, + 39748, + null + ], + [ + "ident-token", + "border-radius", + 39749, + 39761, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 39762, + 39762, + null + ], + [ + "dimension-token", + ".375rem", + 39763, + 39769, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 39770, + 39770, + null + ], + [ + "delim-token", + ".", + 39771, + 39771, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 39772, + 39779, + { + "value": "is-valid" + } + ], + [ + "delim-token", + "~", + 39780, + 39780, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 39781, + 39781, + { + "value": "." + } + ], + [ + "ident-token", + "valid-feedback", + 39782, + 39795, + { + "value": "valid-feedback" + } + ], + [ + "comma-token", + ",", + 39796, + 39796, + null + ], + [ + "delim-token", + ".", + 39797, + 39797, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 39798, + 39805, + { + "value": "is-valid" + } + ], + [ + "delim-token", + "~", + 39806, + 39806, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 39807, + 39807, + { + "value": "." + } + ], + [ + "ident-token", + "valid-tooltip", + 39808, + 39820, + { + "value": "valid-tooltip" + } + ], + [ + "comma-token", + ",", + 39821, + 39821, + null + ], + [ + "delim-token", + ".", + 39822, + 39822, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 39823, + 39835, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 39836, + 39836, + null + ], + [ + "colon-token", + ":", + 39837, + 39837, + null + ], + [ + "ident-token", + "valid", + 39838, + 39842, + { + "value": "valid" + } + ], + [ + "delim-token", + "~", + 39843, + 39843, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 39844, + 39844, + { + "value": "." + } + ], + [ + "ident-token", + "valid-feedback", + 39845, + 39858, + { + "value": "valid-feedback" + } + ], + [ + "comma-token", + ",", + 39859, + 39859, + null + ], + [ + "delim-token", + ".", + 39860, + 39860, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 39861, + 39873, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 39874, + 39874, + null + ], + [ + "colon-token", + ":", + 39875, + 39875, + null + ], + [ + "ident-token", + "valid", + 39876, + 39880, + { + "value": "valid" + } + ], + [ + "delim-token", + "~", + 39881, + 39881, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 39882, + 39882, + { + "value": "." + } + ], + [ + "ident-token", + "valid-tooltip", + 39883, + 39895, + { + "value": "valid-tooltip" + } + ], + [ + "{-token", + "{", + 39896, + 39896, + null + ], + [ + "ident-token", + "display", + 39897, + 39903, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 39904, + 39904, + null + ], + [ + "ident-token", + "block", + 39905, + 39909, + { + "value": "block" + } + ], + [ + "}-token", + "}", + 39910, + 39910, + null + ], + [ + "delim-token", + ".", + 39911, + 39911, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 39912, + 39923, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 39924, + 39924, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 39925, + 39932, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 39933, + 39933, + null + ], + [ + "delim-token", + ".", + 39934, + 39934, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 39935, + 39947, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 39948, + 39948, + null + ], + [ + "delim-token", + ".", + 39949, + 39949, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 39950, + 39961, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 39962, + 39962, + null + ], + [ + "ident-token", + "valid", + 39963, + 39967, + { + "value": "valid" + } + ], + [ + "{-token", + "{", + 39968, + 39968, + null + ], + [ + "ident-token", + "border-color", + 39969, + 39980, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 39981, + 39981, + null + ], + [ + "hash-token", + "#198754", + 39982, + 39988, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 39989, + 39989, + null + ], + [ + "ident-token", + "padding-right", + 39990, + 40002, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 40003, + 40003, + null + ], + [ + "function-token", + "calc(", + 40004, + 40008, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 40009, + 40013, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40014, + 40014, + null + ], + [ + "delim-token", + "+", + 40015, + 40015, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40016, + 40016, + null + ], + [ + "dimension-token", + ".75rem", + 40017, + 40022, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40023, + 40023, + null + ], + [ + "semicolon-token", + ";", + 40024, + 40024, + null + ], + [ + "ident-token", + "background-image", + 40025, + 40040, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 40041, + 40041, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\")", + 40042, + 40274, + null + ], + [ + "semicolon-token", + ";", + 40275, + 40275, + null + ], + [ + "ident-token", + "background-repeat", + 40276, + 40292, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 40293, + 40293, + null + ], + [ + "ident-token", + "no-repeat", + 40294, + 40302, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 40303, + 40303, + null + ], + [ + "ident-token", + "background-position", + 40304, + 40322, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 40323, + 40323, + null + ], + [ + "ident-token", + "right", + 40324, + 40328, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 40329, + 40329, + null + ], + [ + "function-token", + "calc(", + 40330, + 40334, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 40335, + 40340, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40341, + 40341, + null + ], + [ + "delim-token", + "+", + 40342, + 40342, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40343, + 40343, + null + ], + [ + "dimension-token", + ".1875rem", + 40344, + 40351, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40352, + 40352, + null + ], + [ + "whitespace-token", + " ", + 40353, + 40353, + null + ], + [ + "ident-token", + "center", + 40354, + 40359, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 40360, + 40360, + null + ], + [ + "ident-token", + "background-size", + 40361, + 40375, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 40376, + 40376, + null + ], + [ + "function-token", + "calc(", + 40377, + 40381, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 40382, + 40386, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40387, + 40387, + null + ], + [ + "delim-token", + "+", + 40388, + 40388, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40389, + 40389, + null + ], + [ + "dimension-token", + ".375rem", + 40390, + 40396, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40397, + 40397, + null + ], + [ + "whitespace-token", + " ", + 40398, + 40398, + null + ], + [ + "function-token", + "calc(", + 40399, + 40403, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 40404, + 40408, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40409, + 40409, + null + ], + [ + "delim-token", + "+", + 40410, + 40410, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40411, + 40411, + null + ], + [ + "dimension-token", + ".375rem", + 40412, + 40418, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40419, + 40419, + null + ], + [ + "}-token", + "}", + 40420, + 40420, + null + ], + [ + "delim-token", + ".", + 40421, + 40421, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 40422, + 40433, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 40434, + 40434, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 40435, + 40442, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 40443, + 40443, + null + ], + [ + "ident-token", + "focus", + 40444, + 40448, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 40449, + 40449, + null + ], + [ + "delim-token", + ".", + 40450, + 40450, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 40451, + 40463, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 40464, + 40464, + null + ], + [ + "delim-token", + ".", + 40465, + 40465, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 40466, + 40477, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 40478, + 40478, + null + ], + [ + "ident-token", + "valid", + 40479, + 40483, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 40484, + 40484, + null + ], + [ + "ident-token", + "focus", + 40485, + 40489, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 40490, + 40490, + null + ], + [ + "ident-token", + "border-color", + 40491, + 40502, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 40503, + 40503, + null + ], + [ + "hash-token", + "#198754", + 40504, + 40510, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 40511, + 40511, + null + ], + [ + "ident-token", + "box-shadow", + 40512, + 40521, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 40522, + 40522, + null + ], + [ + "number-token", + "0", + 40523, + 40523, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 40524, + 40524, + null + ], + [ + "number-token", + "0", + 40525, + 40525, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 40526, + 40526, + null + ], + [ + "number-token", + "0", + 40527, + 40527, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 40528, + 40528, + null + ], + [ + "dimension-token", + ".25rem", + 40529, + 40534, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 40535, + 40535, + null + ], + [ + "function-token", + "rgba(", + 40536, + 40540, + { + "value": "rgba" + } + ], + [ + "number-token", + "25", + 40541, + 40542, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 40543, + 40543, + null + ], + [ + "number-token", + "135", + 40544, + 40546, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 40547, + 40547, + null + ], + [ + "number-token", + "84", + 40548, + 40549, + { + "value": 84, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 40550, + 40550, + null + ], + [ + "number-token", + ".25", + 40551, + 40553, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 40554, + 40554, + null + ], + [ + "}-token", + "}", + 40555, + 40555, + null + ], + [ + "delim-token", + ".", + 40556, + 40556, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 40557, + 40569, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 40570, + 40570, + null + ], + [ + "ident-token", + "textarea", + 40571, + 40578, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 40579, + 40579, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 40580, + 40591, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 40592, + 40592, + null + ], + [ + "ident-token", + "valid", + 40593, + 40597, + { + "value": "valid" + } + ], + [ + "comma-token", + ",", + 40598, + 40598, + null + ], + [ + "ident-token", + "textarea", + 40599, + 40606, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 40607, + 40607, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 40608, + 40619, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 40620, + 40620, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 40621, + 40628, + { + "value": "is-valid" + } + ], + [ + "{-token", + "{", + 40629, + 40629, + null + ], + [ + "ident-token", + "padding-right", + 40630, + 40642, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 40643, + 40643, + null + ], + [ + "function-token", + "calc(", + 40644, + 40648, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 40649, + 40653, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40654, + 40654, + null + ], + [ + "delim-token", + "+", + 40655, + 40655, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40656, + 40656, + null + ], + [ + "dimension-token", + ".75rem", + 40657, + 40662, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40663, + 40663, + null + ], + [ + "semicolon-token", + ";", + 40664, + 40664, + null + ], + [ + "ident-token", + "background-position", + 40665, + 40683, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 40684, + 40684, + null + ], + [ + "ident-token", + "top", + 40685, + 40687, + { + "value": "top" + } + ], + [ + "whitespace-token", + " ", + 40688, + 40688, + null + ], + [ + "function-token", + "calc(", + 40689, + 40693, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 40694, + 40699, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40700, + 40700, + null + ], + [ + "delim-token", + "+", + 40701, + 40701, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40702, + 40702, + null + ], + [ + "dimension-token", + ".1875rem", + 40703, + 40710, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40711, + 40711, + null + ], + [ + "whitespace-token", + " ", + 40712, + 40712, + null + ], + [ + "ident-token", + "right", + 40713, + 40717, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 40718, + 40718, + null + ], + [ + "function-token", + "calc(", + 40719, + 40723, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 40724, + 40729, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 40730, + 40730, + null + ], + [ + "delim-token", + "+", + 40731, + 40731, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 40732, + 40732, + null + ], + [ + "dimension-token", + ".1875rem", + 40733, + 40740, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 40741, + 40741, + null + ], + [ + "}-token", + "}", + 40742, + 40742, + null + ], + [ + "delim-token", + ".", + 40743, + 40743, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40744, + 40754, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 40755, + 40755, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 40756, + 40763, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 40764, + 40764, + null + ], + [ + "delim-token", + ".", + 40765, + 40765, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 40766, + 40778, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 40779, + 40779, + null + ], + [ + "delim-token", + ".", + 40780, + 40780, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40781, + 40791, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 40792, + 40792, + null + ], + [ + "ident-token", + "valid", + 40793, + 40797, + { + "value": "valid" + } + ], + [ + "{-token", + "{", + 40798, + 40798, + null + ], + [ + "ident-token", + "border-color", + 40799, + 40810, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 40811, + 40811, + null + ], + [ + "hash-token", + "#198754", + 40812, + 40818, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 40819, + 40819, + null + ], + [ + "delim-token", + ".", + 40820, + 40820, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40821, + 40831, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 40832, + 40832, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 40833, + 40840, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 40841, + 40841, + null + ], + [ + "function-token", + "not(", + 40842, + 40845, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 40846, + 40846, + null + ], + [ + "ident-token", + "multiple", + 40847, + 40854, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 40855, + 40855, + null + ], + [ + ")-token", + ")", + 40856, + 40856, + null + ], + [ + "colon-token", + ":", + 40857, + 40857, + null + ], + [ + "function-token", + "not(", + 40858, + 40861, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 40862, + 40862, + null + ], + [ + "ident-token", + "size", + 40863, + 40866, + { + "value": "size" + } + ], + [ + "]-token", + "]", + 40867, + 40867, + null + ], + [ + ")-token", + ")", + 40868, + 40868, + null + ], + [ + "comma-token", + ",", + 40869, + 40869, + null + ], + [ + "delim-token", + ".", + 40870, + 40870, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40871, + 40881, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 40882, + 40882, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 40883, + 40890, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 40891, + 40891, + null + ], + [ + "function-token", + "not(", + 40892, + 40895, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 40896, + 40896, + null + ], + [ + "ident-token", + "multiple", + 40897, + 40904, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 40905, + 40905, + null + ], + [ + ")-token", + ")", + 40906, + 40906, + null + ], + [ + "[-token", + "[", + 40907, + 40907, + null + ], + [ + "ident-token", + "size", + 40908, + 40911, + { + "value": "size" + } + ], + [ + "delim-token", + "=", + 40912, + 40912, + { + "value": "=" + } + ], + [ + "string-token", + "\"1\"", + 40913, + 40915, + { + "value": "1" + } + ], + [ + "]-token", + "]", + 40916, + 40916, + null + ], + [ + "comma-token", + ",", + 40917, + 40917, + null + ], + [ + "delim-token", + ".", + 40918, + 40918, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 40919, + 40931, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 40932, + 40932, + null + ], + [ + "delim-token", + ".", + 40933, + 40933, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40934, + 40944, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 40945, + 40945, + null + ], + [ + "ident-token", + "valid", + 40946, + 40950, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 40951, + 40951, + null + ], + [ + "function-token", + "not(", + 40952, + 40955, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 40956, + 40956, + null + ], + [ + "ident-token", + "multiple", + 40957, + 40964, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 40965, + 40965, + null + ], + [ + ")-token", + ")", + 40966, + 40966, + null + ], + [ + "colon-token", + ":", + 40967, + 40967, + null + ], + [ + "function-token", + "not(", + 40968, + 40971, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 40972, + 40972, + null + ], + [ + "ident-token", + "size", + 40973, + 40976, + { + "value": "size" + } + ], + [ + "]-token", + "]", + 40977, + 40977, + null + ], + [ + ")-token", + ")", + 40978, + 40978, + null + ], + [ + "comma-token", + ",", + 40979, + 40979, + null + ], + [ + "delim-token", + ".", + 40980, + 40980, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 40981, + 40993, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 40994, + 40994, + null + ], + [ + "delim-token", + ".", + 40995, + 40995, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 40996, + 41006, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 41007, + 41007, + null + ], + [ + "ident-token", + "valid", + 41008, + 41012, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 41013, + 41013, + null + ], + [ + "function-token", + "not(", + 41014, + 41017, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 41018, + 41018, + null + ], + [ + "ident-token", + "multiple", + 41019, + 41026, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 41027, + 41027, + null + ], + [ + ")-token", + ")", + 41028, + 41028, + null + ], + [ + "[-token", + "[", + 41029, + 41029, + null + ], + [ + "ident-token", + "size", + 41030, + 41033, + { + "value": "size" + } + ], + [ + "delim-token", + "=", + 41034, + 41034, + { + "value": "=" + } + ], + [ + "string-token", + "\"1\"", + 41035, + 41037, + { + "value": "1" + } + ], + [ + "]-token", + "]", + 41038, + 41038, + null + ], + [ + "{-token", + "{", + 41039, + 41039, + null + ], + [ + "ident-token", + "padding-right", + 41040, + 41052, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 41053, + 41053, + null + ], + [ + "dimension-token", + "4.125rem", + 41054, + 41061, + { + "value": 4.125, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 41062, + 41062, + null + ], + [ + "ident-token", + "background-image", + 41063, + 41078, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 41079, + 41079, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + 41080, + 41302, + null + ], + [ + "comma-token", + ",", + 41303, + 41303, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\")", + 41304, + 41536, + null + ], + [ + "semicolon-token", + ";", + 41537, + 41537, + null + ], + [ + "ident-token", + "background-position", + 41538, + 41556, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 41557, + 41557, + null + ], + [ + "ident-token", + "right", + 41558, + 41562, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 41563, + 41563, + null + ], + [ + "dimension-token", + ".75rem", + 41564, + 41569, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 41570, + 41570, + null + ], + [ + "ident-token", + "center", + 41571, + 41576, + { + "value": "center" + } + ], + [ + "comma-token", + ",", + 41577, + 41577, + null + ], + [ + "ident-token", + "center", + 41578, + 41583, + { + "value": "center" + } + ], + [ + "whitespace-token", + " ", + 41584, + 41584, + null + ], + [ + "ident-token", + "right", + 41585, + 41589, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 41590, + 41590, + null + ], + [ + "dimension-token", + "2.25rem", + 41591, + 41597, + { + "value": 2.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 41598, + 41598, + null + ], + [ + "ident-token", + "background-size", + 41599, + 41613, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 41614, + 41614, + null + ], + [ + "dimension-token", + "16px", + 41615, + 41618, + { + "value": 16, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 41619, + 41619, + null + ], + [ + "dimension-token", + "12px", + 41620, + 41623, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 41624, + 41624, + null + ], + [ + "function-token", + "calc(", + 41625, + 41629, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 41630, + 41634, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 41635, + 41635, + null + ], + [ + "delim-token", + "+", + 41636, + 41636, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 41637, + 41637, + null + ], + [ + "dimension-token", + ".375rem", + 41638, + 41644, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 41645, + 41645, + null + ], + [ + "whitespace-token", + " ", + 41646, + 41646, + null + ], + [ + "function-token", + "calc(", + 41647, + 41651, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 41652, + 41656, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 41657, + 41657, + null + ], + [ + "delim-token", + "+", + 41658, + 41658, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 41659, + 41659, + null + ], + [ + "dimension-token", + ".375rem", + 41660, + 41666, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 41667, + 41667, + null + ], + [ + "}-token", + "}", + 41668, + 41668, + null + ], + [ + "delim-token", + ".", + 41669, + 41669, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 41670, + 41680, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 41681, + 41681, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 41682, + 41689, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 41690, + 41690, + null + ], + [ + "ident-token", + "focus", + 41691, + 41695, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 41696, + 41696, + null + ], + [ + "delim-token", + ".", + 41697, + 41697, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 41698, + 41710, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 41711, + 41711, + null + ], + [ + "delim-token", + ".", + 41712, + 41712, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 41713, + 41723, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 41724, + 41724, + null + ], + [ + "ident-token", + "valid", + 41725, + 41729, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 41730, + 41730, + null + ], + [ + "ident-token", + "focus", + 41731, + 41735, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 41736, + 41736, + null + ], + [ + "ident-token", + "border-color", + 41737, + 41748, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 41749, + 41749, + null + ], + [ + "hash-token", + "#198754", + 41750, + 41756, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 41757, + 41757, + null + ], + [ + "ident-token", + "box-shadow", + 41758, + 41767, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 41768, + 41768, + null + ], + [ + "number-token", + "0", + 41769, + 41769, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 41770, + 41770, + null + ], + [ + "number-token", + "0", + 41771, + 41771, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 41772, + 41772, + null + ], + [ + "number-token", + "0", + 41773, + 41773, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 41774, + 41774, + null + ], + [ + "dimension-token", + ".25rem", + 41775, + 41780, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 41781, + 41781, + null + ], + [ + "function-token", + "rgba(", + 41782, + 41786, + { + "value": "rgba" + } + ], + [ + "number-token", + "25", + 41787, + 41788, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 41789, + 41789, + null + ], + [ + "number-token", + "135", + 41790, + 41792, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 41793, + 41793, + null + ], + [ + "number-token", + "84", + 41794, + 41795, + { + "value": 84, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 41796, + 41796, + null + ], + [ + "number-token", + ".25", + 41797, + 41799, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 41800, + 41800, + null + ], + [ + "}-token", + "}", + 41801, + 41801, + null + ], + [ + "delim-token", + ".", + 41802, + 41802, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 41803, + 41820, + { + "value": "form-control-color" + } + ], + [ + "delim-token", + ".", + 41821, + 41821, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 41822, + 41829, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 41830, + 41830, + null + ], + [ + "delim-token", + ".", + 41831, + 41831, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 41832, + 41844, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 41845, + 41845, + null + ], + [ + "delim-token", + ".", + 41846, + 41846, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 41847, + 41864, + { + "value": "form-control-color" + } + ], + [ + "colon-token", + ":", + 41865, + 41865, + null + ], + [ + "ident-token", + "valid", + 41866, + 41870, + { + "value": "valid" + } + ], + [ + "{-token", + "{", + 41871, + 41871, + null + ], + [ + "ident-token", + "width", + 41872, + 41876, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 41877, + 41877, + null + ], + [ + "function-token", + "calc(", + 41878, + 41882, + { + "value": "calc" + } + ], + [ + "dimension-token", + "3rem", + 41883, + 41886, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 41887, + 41887, + null + ], + [ + "delim-token", + "+", + 41888, + 41888, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 41889, + 41889, + null + ], + [ + "function-token", + "calc(", + 41890, + 41894, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 41895, + 41899, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 41900, + 41900, + null + ], + [ + "delim-token", + "+", + 41901, + 41901, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 41902, + 41902, + null + ], + [ + "dimension-token", + ".75rem", + 41903, + 41908, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 41909, + 41909, + null + ], + [ + ")-token", + ")", + 41910, + 41910, + null + ], + [ + "}-token", + "}", + 41911, + 41911, + null + ], + [ + "delim-token", + ".", + 41912, + 41912, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 41913, + 41928, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 41929, + 41929, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 41930, + 41937, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 41938, + 41938, + null + ], + [ + "delim-token", + ".", + 41939, + 41939, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 41940, + 41952, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 41953, + 41953, + null + ], + [ + "delim-token", + ".", + 41954, + 41954, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 41955, + 41970, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 41971, + 41971, + null + ], + [ + "ident-token", + "valid", + 41972, + 41976, + { + "value": "valid" + } + ], + [ + "{-token", + "{", + 41977, + 41977, + null + ], + [ + "ident-token", + "border-color", + 41978, + 41989, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 41990, + 41990, + null + ], + [ + "hash-token", + "#198754", + 41991, + 41997, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 41998, + 41998, + null + ], + [ + "delim-token", + ".", + 41999, + 41999, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42000, + 42015, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 42016, + 42016, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42017, + 42024, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 42025, + 42025, + null + ], + [ + "ident-token", + "checked", + 42026, + 42032, + { + "value": "checked" + } + ], + [ + "comma-token", + ",", + 42033, + 42033, + null + ], + [ + "delim-token", + ".", + 42034, + 42034, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42035, + 42047, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42048, + 42048, + null + ], + [ + "delim-token", + ".", + 42049, + 42049, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42050, + 42065, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 42066, + 42066, + null + ], + [ + "ident-token", + "valid", + 42067, + 42071, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 42072, + 42072, + null + ], + [ + "ident-token", + "checked", + 42073, + 42079, + { + "value": "checked" + } + ], + [ + "{-token", + "{", + 42080, + 42080, + null + ], + [ + "ident-token", + "background-color", + 42081, + 42096, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 42097, + 42097, + null + ], + [ + "hash-token", + "#198754", + 42098, + 42104, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 42105, + 42105, + null + ], + [ + "delim-token", + ".", + 42106, + 42106, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42107, + 42122, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 42123, + 42123, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42124, + 42131, + { + "value": "is-valid" + } + ], + [ + "colon-token", + ":", + 42132, + 42132, + null + ], + [ + "ident-token", + "focus", + 42133, + 42137, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 42138, + 42138, + null + ], + [ + "delim-token", + ".", + 42139, + 42139, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42140, + 42152, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42153, + 42153, + null + ], + [ + "delim-token", + ".", + 42154, + 42154, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42155, + 42170, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 42171, + 42171, + null + ], + [ + "ident-token", + "valid", + 42172, + 42176, + { + "value": "valid" + } + ], + [ + "colon-token", + ":", + 42177, + 42177, + null + ], + [ + "ident-token", + "focus", + 42178, + 42182, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 42183, + 42183, + null + ], + [ + "ident-token", + "box-shadow", + 42184, + 42193, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 42194, + 42194, + null + ], + [ + "number-token", + "0", + 42195, + 42195, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 42196, + 42196, + null + ], + [ + "number-token", + "0", + 42197, + 42197, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 42198, + 42198, + null + ], + [ + "number-token", + "0", + 42199, + 42199, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 42200, + 42200, + null + ], + [ + "dimension-token", + ".25rem", + 42201, + 42206, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 42207, + 42207, + null + ], + [ + "function-token", + "rgba(", + 42208, + 42212, + { + "value": "rgba" + } + ], + [ + "number-token", + "25", + 42213, + 42214, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 42215, + 42215, + null + ], + [ + "number-token", + "135", + 42216, + 42218, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 42219, + 42219, + null + ], + [ + "number-token", + "84", + 42220, + 42221, + { + "value": 84, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 42222, + 42222, + null + ], + [ + "number-token", + ".25", + 42223, + 42225, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 42226, + 42226, + null + ], + [ + "}-token", + "}", + 42227, + 42227, + null + ], + [ + "delim-token", + ".", + 42228, + 42228, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42229, + 42244, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 42245, + 42245, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42246, + 42253, + { + "value": "is-valid" + } + ], + [ + "delim-token", + "~", + 42254, + 42254, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 42255, + 42255, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 42256, + 42271, + { + "value": "form-check-label" + } + ], + [ + "comma-token", + ",", + 42272, + 42272, + null + ], + [ + "delim-token", + ".", + 42273, + 42273, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42274, + 42286, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42287, + 42287, + null + ], + [ + "delim-token", + ".", + 42288, + 42288, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42289, + 42304, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 42305, + 42305, + null + ], + [ + "ident-token", + "valid", + 42306, + 42310, + { + "value": "valid" + } + ], + [ + "delim-token", + "~", + 42311, + 42311, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 42312, + 42312, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 42313, + 42328, + { + "value": "form-check-label" + } + ], + [ + "{-token", + "{", + 42329, + 42329, + null + ], + [ + "ident-token", + "color", + 42330, + 42334, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 42335, + 42335, + null + ], + [ + "hash-token", + "#198754", + 42336, + 42342, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 42343, + 42343, + null + ], + [ + "delim-token", + ".", + 42344, + 42344, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-inline", + 42345, + 42361, + { + "value": "form-check-inline" + } + ], + [ + "whitespace-token", + " ", + 42362, + 42362, + null + ], + [ + "delim-token", + ".", + 42363, + 42363, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 42364, + 42379, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + "~", + 42380, + 42380, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 42381, + 42381, + { + "value": "." + } + ], + [ + "ident-token", + "valid-feedback", + 42382, + 42395, + { + "value": "valid-feedback" + } + ], + [ + "{-token", + "{", + 42396, + 42396, + null + ], + [ + "ident-token", + "margin-left", + 42397, + 42407, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 42408, + 42408, + null + ], + [ + "dimension-token", + ".5em", + 42409, + 42412, + { + "value": 0.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 42413, + 42413, + null + ], + [ + "delim-token", + ".", + 42414, + 42414, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42415, + 42425, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42426, + 42426, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42427, + 42427, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 42428, + 42439, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 42440, + 42440, + null + ], + [ + "function-token", + "not(", + 42441, + 42444, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42445, + 42445, + null + ], + [ + "ident-token", + "focus", + 42446, + 42450, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 42451, + 42451, + null + ], + [ + "delim-token", + ".", + 42452, + 42452, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42453, + 42460, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 42461, + 42461, + null + ], + [ + "delim-token", + ".", + 42462, + 42462, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42463, + 42473, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42474, + 42474, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42475, + 42475, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 42476, + 42488, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 42489, + 42489, + null + ], + [ + "function-token", + "not(", + 42490, + 42493, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42494, + 42494, + null + ], + [ + "ident-token", + "focus-within", + 42495, + 42506, + { + "value": "focus-within" + } + ], + [ + ")-token", + ")", + 42507, + 42507, + null + ], + [ + "delim-token", + ".", + 42508, + 42508, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42509, + 42516, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 42517, + 42517, + null + ], + [ + "delim-token", + ".", + 42518, + 42518, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42519, + 42529, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42530, + 42530, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42531, + 42531, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 42532, + 42542, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 42543, + 42543, + null + ], + [ + "function-token", + "not(", + 42544, + 42547, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42548, + 42548, + null + ], + [ + "ident-token", + "focus", + 42549, + 42553, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 42554, + 42554, + null + ], + [ + "delim-token", + ".", + 42555, + 42555, + { + "value": "." + } + ], + [ + "ident-token", + "is-valid", + 42556, + 42563, + { + "value": "is-valid" + } + ], + [ + "comma-token", + ",", + 42564, + 42564, + null + ], + [ + "delim-token", + ".", + 42565, + 42565, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42566, + 42578, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42579, + 42579, + null + ], + [ + "delim-token", + ".", + 42580, + 42580, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42581, + 42591, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42592, + 42592, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42593, + 42593, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 42594, + 42605, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 42606, + 42606, + null + ], + [ + "function-token", + "not(", + 42607, + 42610, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42611, + 42611, + null + ], + [ + "ident-token", + "focus", + 42612, + 42616, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 42617, + 42617, + null + ], + [ + "colon-token", + ":", + 42618, + 42618, + null + ], + [ + "ident-token", + "valid", + 42619, + 42623, + { + "value": "valid" + } + ], + [ + "comma-token", + ",", + 42624, + 42624, + null + ], + [ + "delim-token", + ".", + 42625, + 42625, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42626, + 42638, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42639, + 42639, + null + ], + [ + "delim-token", + ".", + 42640, + 42640, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42641, + 42651, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42652, + 42652, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42653, + 42653, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 42654, + 42666, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 42667, + 42667, + null + ], + [ + "function-token", + "not(", + 42668, + 42671, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42672, + 42672, + null + ], + [ + "ident-token", + "focus-within", + 42673, + 42684, + { + "value": "focus-within" + } + ], + [ + ")-token", + ")", + 42685, + 42685, + null + ], + [ + "colon-token", + ":", + 42686, + 42686, + null + ], + [ + "ident-token", + "valid", + 42687, + 42691, + { + "value": "valid" + } + ], + [ + "comma-token", + ",", + 42692, + 42692, + null + ], + [ + "delim-token", + ".", + 42693, + 42693, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 42694, + 42706, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 42707, + 42707, + null + ], + [ + "delim-token", + ".", + 42708, + 42708, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 42709, + 42719, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 42720, + 42720, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 42721, + 42721, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 42722, + 42732, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 42733, + 42733, + null + ], + [ + "function-token", + "not(", + 42734, + 42737, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 42738, + 42738, + null + ], + [ + "ident-token", + "focus", + 42739, + 42743, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 42744, + 42744, + null + ], + [ + "colon-token", + ":", + 42745, + 42745, + null + ], + [ + "ident-token", + "valid", + 42746, + 42750, + { + "value": "valid" + } + ], + [ + "{-token", + "{", + 42751, + 42751, + null + ], + [ + "ident-token", + "z-index", + 42752, + 42758, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 42759, + 42759, + null + ], + [ + "number-token", + "3", + 42760, + 42760, + { + "value": 3, + "type": "integer" + } + ], + [ + "}-token", + "}", + 42761, + 42761, + null + ], + [ + "delim-token", + ".", + 42762, + 42762, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-feedback", + 42763, + 42778, + { + "value": "invalid-feedback" + } + ], + [ + "{-token", + "{", + 42779, + 42779, + null + ], + [ + "ident-token", + "display", + 42780, + 42786, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 42787, + 42787, + null + ], + [ + "ident-token", + "none", + 42788, + 42791, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 42792, + 42792, + null + ], + [ + "ident-token", + "width", + 42793, + 42797, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 42798, + 42798, + null + ], + [ + "percentage-token", + "100%", + 42799, + 42802, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 42803, + 42803, + null + ], + [ + "ident-token", + "margin-top", + 42804, + 42813, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 42814, + 42814, + null + ], + [ + "dimension-token", + ".25rem", + 42815, + 42820, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 42821, + 42821, + null + ], + [ + "ident-token", + "font-size", + 42822, + 42830, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 42831, + 42831, + null + ], + [ + "dimension-token", + ".875em", + 42832, + 42837, + { + "value": 0.875, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 42838, + 42838, + null + ], + [ + "ident-token", + "color", + 42839, + 42843, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 42844, + 42844, + null + ], + [ + "hash-token", + "#dc3545", + 42845, + 42851, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 42852, + 42852, + null + ], + [ + "delim-token", + ".", + 42853, + 42853, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-tooltip", + 42854, + 42868, + { + "value": "invalid-tooltip" + } + ], + [ + "{-token", + "{", + 42869, + 42869, + null + ], + [ + "ident-token", + "position", + 42870, + 42877, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 42878, + 42878, + null + ], + [ + "ident-token", + "absolute", + 42879, + 42886, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 42887, + 42887, + null + ], + [ + "ident-token", + "top", + 42888, + 42890, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 42891, + 42891, + null + ], + [ + "percentage-token", + "100%", + 42892, + 42895, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 42896, + 42896, + null + ], + [ + "ident-token", + "z-index", + 42897, + 42903, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 42904, + 42904, + null + ], + [ + "number-token", + "5", + 42905, + 42905, + { + "value": 5, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 42906, + 42906, + null + ], + [ + "ident-token", + "display", + 42907, + 42913, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 42914, + 42914, + null + ], + [ + "ident-token", + "none", + 42915, + 42918, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 42919, + 42919, + null + ], + [ + "ident-token", + "max-width", + 42920, + 42928, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 42929, + 42929, + null + ], + [ + "percentage-token", + "100%", + 42930, + 42933, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 42934, + 42934, + null + ], + [ + "ident-token", + "padding", + 42935, + 42941, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 42942, + 42942, + null + ], + [ + "dimension-token", + ".25rem", + 42943, + 42948, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 42949, + 42949, + null + ], + [ + "dimension-token", + ".5rem", + 42950, + 42954, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 42955, + 42955, + null + ], + [ + "ident-token", + "margin-top", + 42956, + 42965, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 42966, + 42966, + null + ], + [ + "dimension-token", + ".1rem", + 42967, + 42971, + { + "value": 0.1, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 42972, + 42972, + null + ], + [ + "ident-token", + "font-size", + 42973, + 42981, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 42982, + 42982, + null + ], + [ + "dimension-token", + ".875rem", + 42983, + 42989, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 42990, + 42990, + null + ], + [ + "ident-token", + "color", + 42991, + 42995, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 42996, + 42996, + null + ], + [ + "hash-token", + "#fff", + 42997, + 43000, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 43001, + 43001, + null + ], + [ + "ident-token", + "background-color", + 43002, + 43017, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 43018, + 43018, + null + ], + [ + "function-token", + "rgba(", + 43019, + 43023, + { + "value": "rgba" + } + ], + [ + "number-token", + "220", + 43024, + 43026, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43027, + 43027, + null + ], + [ + "number-token", + "53", + 43028, + 43029, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43030, + 43030, + null + ], + [ + "number-token", + "69", + 43031, + 43032, + { + "value": 69, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43033, + 43033, + null + ], + [ + "number-token", + ".9", + 43034, + 43035, + { + "value": 0.9, + "type": "number" + } + ], + [ + ")-token", + ")", + 43036, + 43036, + null + ], + [ + "semicolon-token", + ";", + 43037, + 43037, + null + ], + [ + "ident-token", + "border-radius", + 43038, + 43050, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 43051, + 43051, + null + ], + [ + "dimension-token", + ".375rem", + 43052, + 43058, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 43059, + 43059, + null + ], + [ + "delim-token", + ".", + 43060, + 43060, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 43061, + 43070, + { + "value": "is-invalid" + } + ], + [ + "delim-token", + "~", + 43071, + 43071, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 43072, + 43072, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-feedback", + 43073, + 43088, + { + "value": "invalid-feedback" + } + ], + [ + "comma-token", + ",", + 43089, + 43089, + null + ], + [ + "delim-token", + ".", + 43090, + 43090, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 43091, + 43100, + { + "value": "is-invalid" + } + ], + [ + "delim-token", + "~", + 43101, + 43101, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 43102, + 43102, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-tooltip", + 43103, + 43117, + { + "value": "invalid-tooltip" + } + ], + [ + "comma-token", + ",", + 43118, + 43118, + null + ], + [ + "delim-token", + ".", + 43119, + 43119, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 43120, + 43132, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 43133, + 43133, + null + ], + [ + "colon-token", + ":", + 43134, + 43134, + null + ], + [ + "ident-token", + "invalid", + 43135, + 43141, + { + "value": "invalid" + } + ], + [ + "delim-token", + "~", + 43142, + 43142, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 43143, + 43143, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-feedback", + 43144, + 43159, + { + "value": "invalid-feedback" + } + ], + [ + "comma-token", + ",", + 43160, + 43160, + null + ], + [ + "delim-token", + ".", + 43161, + 43161, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 43162, + 43174, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 43175, + 43175, + null + ], + [ + "colon-token", + ":", + 43176, + 43176, + null + ], + [ + "ident-token", + "invalid", + 43177, + 43183, + { + "value": "invalid" + } + ], + [ + "delim-token", + "~", + 43184, + 43184, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 43185, + 43185, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-tooltip", + 43186, + 43200, + { + "value": "invalid-tooltip" + } + ], + [ + "{-token", + "{", + 43201, + 43201, + null + ], + [ + "ident-token", + "display", + 43202, + 43208, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 43209, + 43209, + null + ], + [ + "ident-token", + "block", + 43210, + 43214, + { + "value": "block" + } + ], + [ + "}-token", + "}", + 43215, + 43215, + null + ], + [ + "delim-token", + ".", + 43216, + 43216, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 43217, + 43228, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 43229, + 43229, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 43230, + 43239, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 43240, + 43240, + null + ], + [ + "delim-token", + ".", + 43241, + 43241, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 43242, + 43254, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 43255, + 43255, + null + ], + [ + "delim-token", + ".", + 43256, + 43256, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 43257, + 43268, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 43269, + 43269, + null + ], + [ + "ident-token", + "invalid", + 43270, + 43276, + { + "value": "invalid" + } + ], + [ + "{-token", + "{", + 43277, + 43277, + null + ], + [ + "ident-token", + "border-color", + 43278, + 43289, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 43290, + 43290, + null + ], + [ + "hash-token", + "#dc3545", + 43291, + 43297, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 43298, + 43298, + null + ], + [ + "ident-token", + "padding-right", + 43299, + 43311, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 43312, + 43312, + null + ], + [ + "function-token", + "calc(", + 43313, + 43317, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 43318, + 43322, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 43323, + 43323, + null + ], + [ + "delim-token", + "+", + 43324, + 43324, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 43325, + 43325, + null + ], + [ + "dimension-token", + ".75rem", + 43326, + 43331, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 43332, + 43332, + null + ], + [ + "semicolon-token", + ";", + 43333, + 43333, + null + ], + [ + "ident-token", + "background-image", + 43334, + 43349, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 43350, + 43350, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\")", + 43351, + 43664, + null + ], + [ + "semicolon-token", + ";", + 43665, + 43665, + null + ], + [ + "ident-token", + "background-repeat", + 43666, + 43682, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 43683, + 43683, + null + ], + [ + "ident-token", + "no-repeat", + 43684, + 43692, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 43693, + 43693, + null + ], + [ + "ident-token", + "background-position", + 43694, + 43712, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 43713, + 43713, + null + ], + [ + "ident-token", + "right", + 43714, + 43718, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 43719, + 43719, + null + ], + [ + "function-token", + "calc(", + 43720, + 43724, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 43725, + 43730, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 43731, + 43731, + null + ], + [ + "delim-token", + "+", + 43732, + 43732, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 43733, + 43733, + null + ], + [ + "dimension-token", + ".1875rem", + 43734, + 43741, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 43742, + 43742, + null + ], + [ + "whitespace-token", + " ", + 43743, + 43743, + null + ], + [ + "ident-token", + "center", + 43744, + 43749, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 43750, + 43750, + null + ], + [ + "ident-token", + "background-size", + 43751, + 43765, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 43766, + 43766, + null + ], + [ + "function-token", + "calc(", + 43767, + 43771, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 43772, + 43776, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 43777, + 43777, + null + ], + [ + "delim-token", + "+", + 43778, + 43778, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 43779, + 43779, + null + ], + [ + "dimension-token", + ".375rem", + 43780, + 43786, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 43787, + 43787, + null + ], + [ + "whitespace-token", + " ", + 43788, + 43788, + null + ], + [ + "function-token", + "calc(", + 43789, + 43793, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 43794, + 43798, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 43799, + 43799, + null + ], + [ + "delim-token", + "+", + 43800, + 43800, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 43801, + 43801, + null + ], + [ + "dimension-token", + ".375rem", + 43802, + 43808, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 43809, + 43809, + null + ], + [ + "}-token", + "}", + 43810, + 43810, + null + ], + [ + "delim-token", + ".", + 43811, + 43811, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 43812, + 43823, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 43824, + 43824, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 43825, + 43834, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 43835, + 43835, + null + ], + [ + "ident-token", + "focus", + 43836, + 43840, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 43841, + 43841, + null + ], + [ + "delim-token", + ".", + 43842, + 43842, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 43843, + 43855, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 43856, + 43856, + null + ], + [ + "delim-token", + ".", + 43857, + 43857, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 43858, + 43869, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 43870, + 43870, + null + ], + [ + "ident-token", + "invalid", + 43871, + 43877, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 43878, + 43878, + null + ], + [ + "ident-token", + "focus", + 43879, + 43883, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 43884, + 43884, + null + ], + [ + "ident-token", + "border-color", + 43885, + 43896, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 43897, + 43897, + null + ], + [ + "hash-token", + "#dc3545", + 43898, + 43904, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 43905, + 43905, + null + ], + [ + "ident-token", + "box-shadow", + 43906, + 43915, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 43916, + 43916, + null + ], + [ + "number-token", + "0", + 43917, + 43917, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 43918, + 43918, + null + ], + [ + "number-token", + "0", + 43919, + 43919, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 43920, + 43920, + null + ], + [ + "number-token", + "0", + 43921, + 43921, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 43922, + 43922, + null + ], + [ + "dimension-token", + ".25rem", + 43923, + 43928, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 43929, + 43929, + null + ], + [ + "function-token", + "rgba(", + 43930, + 43934, + { + "value": "rgba" + } + ], + [ + "number-token", + "220", + 43935, + 43937, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43938, + 43938, + null + ], + [ + "number-token", + "53", + 43939, + 43940, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43941, + 43941, + null + ], + [ + "number-token", + "69", + 43942, + 43943, + { + "value": 69, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 43944, + 43944, + null + ], + [ + "number-token", + ".25", + 43945, + 43947, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 43948, + 43948, + null + ], + [ + "}-token", + "}", + 43949, + 43949, + null + ], + [ + "delim-token", + ".", + 43950, + 43950, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 43951, + 43963, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 43964, + 43964, + null + ], + [ + "ident-token", + "textarea", + 43965, + 43972, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 43973, + 43973, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 43974, + 43985, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 43986, + 43986, + null + ], + [ + "ident-token", + "invalid", + 43987, + 43993, + { + "value": "invalid" + } + ], + [ + "comma-token", + ",", + 43994, + 43994, + null + ], + [ + "ident-token", + "textarea", + 43995, + 44002, + { + "value": "textarea" + } + ], + [ + "delim-token", + ".", + 44003, + 44003, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 44004, + 44015, + { + "value": "form-control" + } + ], + [ + "delim-token", + ".", + 44016, + 44016, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 44017, + 44026, + { + "value": "is-invalid" + } + ], + [ + "{-token", + "{", + 44027, + 44027, + null + ], + [ + "ident-token", + "padding-right", + 44028, + 44040, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 44041, + 44041, + null + ], + [ + "function-token", + "calc(", + 44042, + 44046, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 44047, + 44051, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 44052, + 44052, + null + ], + [ + "delim-token", + "+", + 44053, + 44053, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 44054, + 44054, + null + ], + [ + "dimension-token", + ".75rem", + 44055, + 44060, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 44061, + 44061, + null + ], + [ + "semicolon-token", + ";", + 44062, + 44062, + null + ], + [ + "ident-token", + "background-position", + 44063, + 44081, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 44082, + 44082, + null + ], + [ + "ident-token", + "top", + 44083, + 44085, + { + "value": "top" + } + ], + [ + "whitespace-token", + " ", + 44086, + 44086, + null + ], + [ + "function-token", + "calc(", + 44087, + 44091, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 44092, + 44097, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 44098, + 44098, + null + ], + [ + "delim-token", + "+", + 44099, + 44099, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 44100, + 44100, + null + ], + [ + "dimension-token", + ".1875rem", + 44101, + 44108, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 44109, + 44109, + null + ], + [ + "whitespace-token", + " ", + 44110, + 44110, + null + ], + [ + "ident-token", + "right", + 44111, + 44115, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 44116, + 44116, + null + ], + [ + "function-token", + "calc(", + 44117, + 44121, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".375em", + 44122, + 44127, + { + "value": 0.375, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 44128, + 44128, + null + ], + [ + "delim-token", + "+", + 44129, + 44129, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 44130, + 44130, + null + ], + [ + "dimension-token", + ".1875rem", + 44131, + 44138, + { + "value": 0.1875, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 44139, + 44139, + null + ], + [ + "}-token", + "}", + 44140, + 44140, + null + ], + [ + "delim-token", + ".", + 44141, + 44141, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44142, + 44152, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 44153, + 44153, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 44154, + 44163, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 44164, + 44164, + null + ], + [ + "delim-token", + ".", + 44165, + 44165, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 44166, + 44178, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 44179, + 44179, + null + ], + [ + "delim-token", + ".", + 44180, + 44180, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44181, + 44191, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 44192, + 44192, + null + ], + [ + "ident-token", + "invalid", + 44193, + 44199, + { + "value": "invalid" + } + ], + [ + "{-token", + "{", + 44200, + 44200, + null + ], + [ + "ident-token", + "border-color", + 44201, + 44212, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 44213, + 44213, + null + ], + [ + "hash-token", + "#dc3545", + 44214, + 44220, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 44221, + 44221, + null + ], + [ + "delim-token", + ".", + 44222, + 44222, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44223, + 44233, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 44234, + 44234, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 44235, + 44244, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 44245, + 44245, + null + ], + [ + "function-token", + "not(", + 44246, + 44249, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44250, + 44250, + null + ], + [ + "ident-token", + "multiple", + 44251, + 44258, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 44259, + 44259, + null + ], + [ + ")-token", + ")", + 44260, + 44260, + null + ], + [ + "colon-token", + ":", + 44261, + 44261, + null + ], + [ + "function-token", + "not(", + 44262, + 44265, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44266, + 44266, + null + ], + [ + "ident-token", + "size", + 44267, + 44270, + { + "value": "size" + } + ], + [ + "]-token", + "]", + 44271, + 44271, + null + ], + [ + ")-token", + ")", + 44272, + 44272, + null + ], + [ + "comma-token", + ",", + 44273, + 44273, + null + ], + [ + "delim-token", + ".", + 44274, + 44274, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44275, + 44285, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 44286, + 44286, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 44287, + 44296, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 44297, + 44297, + null + ], + [ + "function-token", + "not(", + 44298, + 44301, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44302, + 44302, + null + ], + [ + "ident-token", + "multiple", + 44303, + 44310, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 44311, + 44311, + null + ], + [ + ")-token", + ")", + 44312, + 44312, + null + ], + [ + "[-token", + "[", + 44313, + 44313, + null + ], + [ + "ident-token", + "size", + 44314, + 44317, + { + "value": "size" + } + ], + [ + "delim-token", + "=", + 44318, + 44318, + { + "value": "=" + } + ], + [ + "string-token", + "\"1\"", + 44319, + 44321, + { + "value": "1" + } + ], + [ + "]-token", + "]", + 44322, + 44322, + null + ], + [ + "comma-token", + ",", + 44323, + 44323, + null + ], + [ + "delim-token", + ".", + 44324, + 44324, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 44325, + 44337, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 44338, + 44338, + null + ], + [ + "delim-token", + ".", + 44339, + 44339, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44340, + 44350, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 44351, + 44351, + null + ], + [ + "ident-token", + "invalid", + 44352, + 44358, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 44359, + 44359, + null + ], + [ + "function-token", + "not(", + 44360, + 44363, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44364, + 44364, + null + ], + [ + "ident-token", + "multiple", + 44365, + 44372, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 44373, + 44373, + null + ], + [ + ")-token", + ")", + 44374, + 44374, + null + ], + [ + "colon-token", + ":", + 44375, + 44375, + null + ], + [ + "function-token", + "not(", + 44376, + 44379, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44380, + 44380, + null + ], + [ + "ident-token", + "size", + 44381, + 44384, + { + "value": "size" + } + ], + [ + "]-token", + "]", + 44385, + 44385, + null + ], + [ + ")-token", + ")", + 44386, + 44386, + null + ], + [ + "comma-token", + ",", + 44387, + 44387, + null + ], + [ + "delim-token", + ".", + 44388, + 44388, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 44389, + 44401, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 44402, + 44402, + null + ], + [ + "delim-token", + ".", + 44403, + 44403, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 44404, + 44414, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 44415, + 44415, + null + ], + [ + "ident-token", + "invalid", + 44416, + 44422, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 44423, + 44423, + null + ], + [ + "function-token", + "not(", + 44424, + 44427, + { + "value": "not" + } + ], + [ + "[-token", + "[", + 44428, + 44428, + null + ], + [ + "ident-token", + "multiple", + 44429, + 44436, + { + "value": "multiple" + } + ], + [ + "]-token", + "]", + 44437, + 44437, + null + ], + [ + ")-token", + ")", + 44438, + 44438, + null + ], + [ + "[-token", + "[", + 44439, + 44439, + null + ], + [ + "ident-token", + "size", + 44440, + 44443, + { + "value": "size" + } + ], + [ + "delim-token", + "=", + 44444, + 44444, + { + "value": "=" + } + ], + [ + "string-token", + "\"1\"", + 44445, + 44447, + { + "value": "1" + } + ], + [ + "]-token", + "]", + 44448, + 44448, + null + ], + [ + "{-token", + "{", + 44449, + 44449, + null + ], + [ + "ident-token", + "padding-right", + 44450, + 44462, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 44463, + 44463, + null + ], + [ + "dimension-token", + "4.125rem", + 44464, + 44471, + { + "value": 4.125, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 44472, + 44472, + null + ], + [ + "ident-token", + "background-image", + 44473, + 44488, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 44489, + 44489, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + 44490, + 44712, + null + ], + [ + "comma-token", + ",", + 44713, + 44713, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\")", + 44714, + 45027, + null + ], + [ + "semicolon-token", + ";", + 45028, + 45028, + null + ], + [ + "ident-token", + "background-position", + 45029, + 45047, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 45048, + 45048, + null + ], + [ + "ident-token", + "right", + 45049, + 45053, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 45054, + 45054, + null + ], + [ + "dimension-token", + ".75rem", + 45055, + 45060, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 45061, + 45061, + null + ], + [ + "ident-token", + "center", + 45062, + 45067, + { + "value": "center" + } + ], + [ + "comma-token", + ",", + 45068, + 45068, + null + ], + [ + "ident-token", + "center", + 45069, + 45074, + { + "value": "center" + } + ], + [ + "whitespace-token", + " ", + 45075, + 45075, + null + ], + [ + "ident-token", + "right", + 45076, + 45080, + { + "value": "right" + } + ], + [ + "whitespace-token", + " ", + 45081, + 45081, + null + ], + [ + "dimension-token", + "2.25rem", + 45082, + 45088, + { + "value": 2.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 45089, + 45089, + null + ], + [ + "ident-token", + "background-size", + 45090, + 45104, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 45105, + 45105, + null + ], + [ + "dimension-token", + "16px", + 45106, + 45109, + { + "value": 16, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 45110, + 45110, + null + ], + [ + "dimension-token", + "12px", + 45111, + 45114, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 45115, + 45115, + null + ], + [ + "function-token", + "calc(", + 45116, + 45120, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 45121, + 45125, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 45126, + 45126, + null + ], + [ + "delim-token", + "+", + 45127, + 45127, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 45128, + 45128, + null + ], + [ + "dimension-token", + ".375rem", + 45129, + 45135, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 45136, + 45136, + null + ], + [ + "whitespace-token", + " ", + 45137, + 45137, + null + ], + [ + "function-token", + "calc(", + 45138, + 45142, + { + "value": "calc" + } + ], + [ + "dimension-token", + ".75em", + 45143, + 45147, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 45148, + 45148, + null + ], + [ + "delim-token", + "+", + 45149, + 45149, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 45150, + 45150, + null + ], + [ + "dimension-token", + ".375rem", + 45151, + 45157, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 45158, + 45158, + null + ], + [ + "}-token", + "}", + 45159, + 45159, + null + ], + [ + "delim-token", + ".", + 45160, + 45160, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 45161, + 45171, + { + "value": "form-select" + } + ], + [ + "delim-token", + ".", + 45172, + 45172, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45173, + 45182, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 45183, + 45183, + null + ], + [ + "ident-token", + "focus", + 45184, + 45188, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 45189, + 45189, + null + ], + [ + "delim-token", + ".", + 45190, + 45190, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45191, + 45203, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45204, + 45204, + null + ], + [ + "delim-token", + ".", + 45205, + 45205, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 45206, + 45216, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 45217, + 45217, + null + ], + [ + "ident-token", + "invalid", + 45218, + 45224, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 45225, + 45225, + null + ], + [ + "ident-token", + "focus", + 45226, + 45230, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 45231, + 45231, + null + ], + [ + "ident-token", + "border-color", + 45232, + 45243, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 45244, + 45244, + null + ], + [ + "hash-token", + "#dc3545", + 45245, + 45251, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 45252, + 45252, + null + ], + [ + "ident-token", + "box-shadow", + 45253, + 45262, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 45263, + 45263, + null + ], + [ + "number-token", + "0", + 45264, + 45264, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45265, + 45265, + null + ], + [ + "number-token", + "0", + 45266, + 45266, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45267, + 45267, + null + ], + [ + "number-token", + "0", + 45268, + 45268, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45269, + 45269, + null + ], + [ + "dimension-token", + ".25rem", + 45270, + 45275, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 45276, + 45276, + null + ], + [ + "function-token", + "rgba(", + 45277, + 45281, + { + "value": "rgba" + } + ], + [ + "number-token", + "220", + 45282, + 45284, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45285, + 45285, + null + ], + [ + "number-token", + "53", + 45286, + 45287, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45288, + 45288, + null + ], + [ + "number-token", + "69", + 45289, + 45290, + { + "value": 69, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45291, + 45291, + null + ], + [ + "number-token", + ".25", + 45292, + 45294, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 45295, + 45295, + null + ], + [ + "}-token", + "}", + 45296, + 45296, + null + ], + [ + "delim-token", + ".", + 45297, + 45297, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 45298, + 45315, + { + "value": "form-control-color" + } + ], + [ + "delim-token", + ".", + 45316, + 45316, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45317, + 45326, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 45327, + 45327, + null + ], + [ + "delim-token", + ".", + 45328, + 45328, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45329, + 45341, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45342, + 45342, + null + ], + [ + "delim-token", + ".", + 45343, + 45343, + { + "value": "." + } + ], + [ + "ident-token", + "form-control-color", + 45344, + 45361, + { + "value": "form-control-color" + } + ], + [ + "colon-token", + ":", + 45362, + 45362, + null + ], + [ + "ident-token", + "invalid", + 45363, + 45369, + { + "value": "invalid" + } + ], + [ + "{-token", + "{", + 45370, + 45370, + null + ], + [ + "ident-token", + "width", + 45371, + 45375, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 45376, + 45376, + null + ], + [ + "function-token", + "calc(", + 45377, + 45381, + { + "value": "calc" + } + ], + [ + "dimension-token", + "3rem", + 45382, + 45385, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 45386, + 45386, + null + ], + [ + "delim-token", + "+", + 45387, + 45387, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 45388, + 45388, + null + ], + [ + "function-token", + "calc(", + 45389, + 45393, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.5em", + 45394, + 45398, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 45399, + 45399, + null + ], + [ + "delim-token", + "+", + 45400, + 45400, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 45401, + 45401, + null + ], + [ + "dimension-token", + ".75rem", + 45402, + 45407, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 45408, + 45408, + null + ], + [ + ")-token", + ")", + 45409, + 45409, + null + ], + [ + "}-token", + "}", + 45410, + 45410, + null + ], + [ + "delim-token", + ".", + 45411, + 45411, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45412, + 45427, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 45428, + 45428, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45429, + 45438, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 45439, + 45439, + null + ], + [ + "delim-token", + ".", + 45440, + 45440, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45441, + 45453, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45454, + 45454, + null + ], + [ + "delim-token", + ".", + 45455, + 45455, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45456, + 45471, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 45472, + 45472, + null + ], + [ + "ident-token", + "invalid", + 45473, + 45479, + { + "value": "invalid" + } + ], + [ + "{-token", + "{", + 45480, + 45480, + null + ], + [ + "ident-token", + "border-color", + 45481, + 45492, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 45493, + 45493, + null + ], + [ + "hash-token", + "#dc3545", + 45494, + 45500, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 45501, + 45501, + null + ], + [ + "delim-token", + ".", + 45502, + 45502, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45503, + 45518, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 45519, + 45519, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45520, + 45529, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 45530, + 45530, + null + ], + [ + "ident-token", + "checked", + 45531, + 45537, + { + "value": "checked" + } + ], + [ + "comma-token", + ",", + 45538, + 45538, + null + ], + [ + "delim-token", + ".", + 45539, + 45539, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45540, + 45552, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45553, + 45553, + null + ], + [ + "delim-token", + ".", + 45554, + 45554, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45555, + 45570, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 45571, + 45571, + null + ], + [ + "ident-token", + "invalid", + 45572, + 45578, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 45579, + 45579, + null + ], + [ + "ident-token", + "checked", + 45580, + 45586, + { + "value": "checked" + } + ], + [ + "{-token", + "{", + 45587, + 45587, + null + ], + [ + "ident-token", + "background-color", + 45588, + 45603, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 45604, + 45604, + null + ], + [ + "hash-token", + "#dc3545", + 45605, + 45611, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 45612, + 45612, + null + ], + [ + "delim-token", + ".", + 45613, + 45613, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45614, + 45629, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 45630, + 45630, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45631, + 45640, + { + "value": "is-invalid" + } + ], + [ + "colon-token", + ":", + 45641, + 45641, + null + ], + [ + "ident-token", + "focus", + 45642, + 45646, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 45647, + 45647, + null + ], + [ + "delim-token", + ".", + 45648, + 45648, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45649, + 45661, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45662, + 45662, + null + ], + [ + "delim-token", + ".", + 45663, + 45663, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45664, + 45679, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 45680, + 45680, + null + ], + [ + "ident-token", + "invalid", + 45681, + 45687, + { + "value": "invalid" + } + ], + [ + "colon-token", + ":", + 45688, + 45688, + null + ], + [ + "ident-token", + "focus", + 45689, + 45693, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 45694, + 45694, + null + ], + [ + "ident-token", + "box-shadow", + 45695, + 45704, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 45705, + 45705, + null + ], + [ + "number-token", + "0", + 45706, + 45706, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45707, + 45707, + null + ], + [ + "number-token", + "0", + 45708, + 45708, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45709, + 45709, + null + ], + [ + "number-token", + "0", + 45710, + 45710, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 45711, + 45711, + null + ], + [ + "dimension-token", + ".25rem", + 45712, + 45717, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 45718, + 45718, + null + ], + [ + "function-token", + "rgba(", + 45719, + 45723, + { + "value": "rgba" + } + ], + [ + "number-token", + "220", + 45724, + 45726, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45727, + 45727, + null + ], + [ + "number-token", + "53", + 45728, + 45729, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45730, + 45730, + null + ], + [ + "number-token", + "69", + 45731, + 45732, + { + "value": 69, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 45733, + 45733, + null + ], + [ + "number-token", + ".25", + 45734, + 45736, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 45737, + 45737, + null + ], + [ + "}-token", + "}", + 45738, + 45738, + null + ], + [ + "delim-token", + ".", + 45739, + 45739, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45740, + 45755, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + ".", + 45756, + 45756, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45757, + 45766, + { + "value": "is-invalid" + } + ], + [ + "delim-token", + "~", + 45767, + 45767, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 45768, + 45768, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 45769, + 45784, + { + "value": "form-check-label" + } + ], + [ + "comma-token", + ",", + 45785, + 45785, + null + ], + [ + "delim-token", + ".", + 45786, + 45786, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 45787, + 45799, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 45800, + 45800, + null + ], + [ + "delim-token", + ".", + 45801, + 45801, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45802, + 45817, + { + "value": "form-check-input" + } + ], + [ + "colon-token", + ":", + 45818, + 45818, + null + ], + [ + "ident-token", + "invalid", + 45819, + 45825, + { + "value": "invalid" + } + ], + [ + "delim-token", + "~", + 45826, + 45826, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 45827, + 45827, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-label", + 45828, + 45843, + { + "value": "form-check-label" + } + ], + [ + "{-token", + "{", + 45844, + 45844, + null + ], + [ + "ident-token", + "color", + 45845, + 45849, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 45850, + 45850, + null + ], + [ + "hash-token", + "#dc3545", + 45851, + 45857, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 45858, + 45858, + null + ], + [ + "delim-token", + ".", + 45859, + 45859, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-inline", + 45860, + 45876, + { + "value": "form-check-inline" + } + ], + [ + "whitespace-token", + " ", + 45877, + 45877, + null + ], + [ + "delim-token", + ".", + 45878, + 45878, + { + "value": "." + } + ], + [ + "ident-token", + "form-check-input", + 45879, + 45894, + { + "value": "form-check-input" + } + ], + [ + "delim-token", + "~", + 45895, + 45895, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 45896, + 45896, + { + "value": "." + } + ], + [ + "ident-token", + "invalid-feedback", + 45897, + 45912, + { + "value": "invalid-feedback" + } + ], + [ + "{-token", + "{", + 45913, + 45913, + null + ], + [ + "ident-token", + "margin-left", + 45914, + 45924, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 45925, + 45925, + null + ], + [ + "dimension-token", + ".5em", + 45926, + 45929, + { + "value": 0.5, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 45930, + 45930, + null + ], + [ + "delim-token", + ".", + 45931, + 45931, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 45932, + 45942, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 45943, + 45943, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 45944, + 45944, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 45945, + 45956, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 45957, + 45957, + null + ], + [ + "function-token", + "not(", + 45958, + 45961, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 45962, + 45962, + null + ], + [ + "ident-token", + "focus", + 45963, + 45967, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 45968, + 45968, + null + ], + [ + "delim-token", + ".", + 45969, + 45969, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 45970, + 45979, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 45980, + 45980, + null + ], + [ + "delim-token", + ".", + 45981, + 45981, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 45982, + 45992, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 45993, + 45993, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 45994, + 45994, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 45995, + 46007, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 46008, + 46008, + null + ], + [ + "function-token", + "not(", + 46009, + 46012, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 46013, + 46013, + null + ], + [ + "ident-token", + "focus-within", + 46014, + 46025, + { + "value": "focus-within" + } + ], + [ + ")-token", + ")", + 46026, + 46026, + null + ], + [ + "delim-token", + ".", + 46027, + 46027, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 46028, + 46037, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 46038, + 46038, + null + ], + [ + "delim-token", + ".", + 46039, + 46039, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 46040, + 46050, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 46051, + 46051, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 46052, + 46052, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 46053, + 46063, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 46064, + 46064, + null + ], + [ + "function-token", + "not(", + 46065, + 46068, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 46069, + 46069, + null + ], + [ + "ident-token", + "focus", + 46070, + 46074, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 46075, + 46075, + null + ], + [ + "delim-token", + ".", + 46076, + 46076, + { + "value": "." + } + ], + [ + "ident-token", + "is-invalid", + 46077, + 46086, + { + "value": "is-invalid" + } + ], + [ + "comma-token", + ",", + 46087, + 46087, + null + ], + [ + "delim-token", + ".", + 46088, + 46088, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 46089, + 46101, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 46102, + 46102, + null + ], + [ + "delim-token", + ".", + 46103, + 46103, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 46104, + 46114, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 46115, + 46115, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 46116, + 46116, + { + "value": "." + } + ], + [ + "ident-token", + "form-control", + 46117, + 46128, + { + "value": "form-control" + } + ], + [ + "colon-token", + ":", + 46129, + 46129, + null + ], + [ + "function-token", + "not(", + 46130, + 46133, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 46134, + 46134, + null + ], + [ + "ident-token", + "focus", + 46135, + 46139, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 46140, + 46140, + null + ], + [ + "colon-token", + ":", + 46141, + 46141, + null + ], + [ + "ident-token", + "invalid", + 46142, + 46148, + { + "value": "invalid" + } + ], + [ + "comma-token", + ",", + 46149, + 46149, + null + ], + [ + "delim-token", + ".", + 46150, + 46150, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 46151, + 46163, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 46164, + 46164, + null + ], + [ + "delim-token", + ".", + 46165, + 46165, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 46166, + 46176, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 46177, + 46177, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 46178, + 46178, + { + "value": "." + } + ], + [ + "ident-token", + "form-floating", + 46179, + 46191, + { + "value": "form-floating" + } + ], + [ + "colon-token", + ":", + 46192, + 46192, + null + ], + [ + "function-token", + "not(", + 46193, + 46196, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 46197, + 46197, + null + ], + [ + "ident-token", + "focus-within", + 46198, + 46209, + { + "value": "focus-within" + } + ], + [ + ")-token", + ")", + 46210, + 46210, + null + ], + [ + "colon-token", + ":", + 46211, + 46211, + null + ], + [ + "ident-token", + "invalid", + 46212, + 46218, + { + "value": "invalid" + } + ], + [ + "comma-token", + ",", + 46219, + 46219, + null + ], + [ + "delim-token", + ".", + 46220, + 46220, + { + "value": "." + } + ], + [ + "ident-token", + "was-validated", + 46221, + 46233, + { + "value": "was-validated" + } + ], + [ + "whitespace-token", + " ", + 46234, + 46234, + null + ], + [ + "delim-token", + ".", + 46235, + 46235, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 46236, + 46246, + { + "value": "input-group" + } + ], + [ + "delim-token", + ">", + 46247, + 46247, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 46248, + 46248, + { + "value": "." + } + ], + [ + "ident-token", + "form-select", + 46249, + 46259, + { + "value": "form-select" + } + ], + [ + "colon-token", + ":", + 46260, + 46260, + null + ], + [ + "function-token", + "not(", + 46261, + 46264, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 46265, + 46265, + null + ], + [ + "ident-token", + "focus", + 46266, + 46270, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 46271, + 46271, + null + ], + [ + "colon-token", + ":", + 46272, + 46272, + null + ], + [ + "ident-token", + "invalid", + 46273, + 46279, + { + "value": "invalid" + } + ], + [ + "{-token", + "{", + 46280, + 46280, + null + ], + [ + "ident-token", + "z-index", + 46281, + 46287, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 46288, + 46288, + null + ], + [ + "number-token", + "4", + 46289, + 46289, + { + "value": 4, + "type": "integer" + } + ], + [ + "}-token", + "}", + 46290, + 46290, + null + ], + [ + "delim-token", + ".", + 46291, + 46291, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 46292, + 46294, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 46295, + 46295, + null + ], + [ + "delim-token", + "-", + 46296, + 46296, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46297, + 46297, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-x", + 46298, + 46313, + { + "value": "bs-btn-padding-x" + } + ], + [ + "colon-token", + ":", + 46314, + 46314, + null + ], + [ + "dimension-token", + "0.75rem", + 46315, + 46321, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 46322, + 46322, + null + ], + [ + "delim-token", + "-", + 46323, + 46323, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46324, + 46324, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-y", + 46325, + 46340, + { + "value": "bs-btn-padding-y" + } + ], + [ + "colon-token", + ":", + 46341, + 46341, + null + ], + [ + "dimension-token", + "0.375rem", + 46342, + 46349, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 46350, + 46350, + null + ], + [ + "delim-token", + "-", + 46351, + 46351, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46352, + 46352, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-family", + 46353, + 46370, + { + "value": "bs-btn-font-family" + } + ], + [ + "colon-token", + ":", + 46371, + 46371, + null + ], + [ + "whitespace-token", + " ", + 46372, + 46372, + null + ], + [ + "semicolon-token", + ";", + 46373, + 46373, + null + ], + [ + "delim-token", + "-", + 46374, + 46374, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46375, + 46375, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-size", + 46376, + 46391, + { + "value": "bs-btn-font-size" + } + ], + [ + "colon-token", + ":", + 46392, + 46392, + null + ], + [ + "dimension-token", + "1rem", + 46393, + 46396, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 46397, + 46397, + null + ], + [ + "delim-token", + "-", + 46398, + 46398, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46399, + 46399, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-weight", + 46400, + 46417, + { + "value": "bs-btn-font-weight" + } + ], + [ + "colon-token", + ":", + 46418, + 46418, + null + ], + [ + "number-token", + "400", + 46419, + 46421, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 46422, + 46422, + null + ], + [ + "delim-token", + "-", + 46423, + 46423, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46424, + 46424, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-line-height", + 46425, + 46442, + { + "value": "bs-btn-line-height" + } + ], + [ + "colon-token", + ":", + 46443, + 46443, + null + ], + [ + "number-token", + "1.5", + 46444, + 46446, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 46447, + 46447, + null + ], + [ + "delim-token", + "-", + 46448, + 46448, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46449, + 46449, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 46450, + 46461, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 46462, + 46462, + null + ], + [ + "hash-token", + "#212529", + 46463, + 46469, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 46470, + 46470, + null + ], + [ + "delim-token", + "-", + 46471, + 46471, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46472, + 46472, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 46473, + 46481, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 46482, + 46482, + null + ], + [ + "ident-token", + "transparent", + 46483, + 46493, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 46494, + 46494, + null + ], + [ + "delim-token", + "-", + 46495, + 46495, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46496, + 46496, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-width", + 46497, + 46515, + { + "value": "bs-btn-border-width" + } + ], + [ + "colon-token", + ":", + 46516, + 46516, + null + ], + [ + "dimension-token", + "1px", + 46517, + 46519, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 46520, + 46520, + null + ], + [ + "delim-token", + "-", + 46521, + 46521, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46522, + 46522, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 46523, + 46541, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 46542, + 46542, + null + ], + [ + "ident-token", + "transparent", + 46543, + 46553, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 46554, + 46554, + null + ], + [ + "delim-token", + "-", + 46555, + 46555, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46556, + 46556, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-radius", + 46557, + 46576, + { + "value": "bs-btn-border-radius" + } + ], + [ + "colon-token", + ":", + 46577, + 46577, + null + ], + [ + "dimension-token", + "0.375rem", + 46578, + 46585, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 46586, + 46586, + null + ], + [ + "delim-token", + "-", + 46587, + 46587, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46588, + 46588, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 46589, + 46613, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 46614, + 46614, + null + ], + [ + "ident-token", + "transparent", + 46615, + 46625, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 46626, + 46626, + null + ], + [ + "delim-token", + "-", + 46627, + 46627, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46628, + 46628, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-box-shadow", + 46629, + 46645, + { + "value": "bs-btn-box-shadow" + } + ], + [ + "colon-token", + ":", + 46646, + 46646, + null + ], + [ + "ident-token", + "inset", + 46647, + 46651, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 46652, + 46652, + null + ], + [ + "number-token", + "0", + 46653, + 46653, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46654, + 46654, + null + ], + [ + "dimension-token", + "1px", + 46655, + 46657, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 46658, + 46658, + null + ], + [ + "number-token", + "0", + 46659, + 46659, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46660, + 46660, + null + ], + [ + "function-token", + "rgba(", + 46661, + 46665, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 46666, + 46668, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46669, + 46669, + null + ], + [ + "whitespace-token", + " ", + 46670, + 46670, + null + ], + [ + "number-token", + "255", + 46671, + 46673, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46674, + 46674, + null + ], + [ + "whitespace-token", + " ", + 46675, + 46675, + null + ], + [ + "number-token", + "255", + 46676, + 46678, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46679, + 46679, + null + ], + [ + "whitespace-token", + " ", + 46680, + 46680, + null + ], + [ + "number-token", + "0.15", + 46681, + 46684, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 46685, + 46685, + null + ], + [ + "comma-token", + ",", + 46686, + 46686, + null + ], + [ + "number-token", + "0", + 46687, + 46687, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46688, + 46688, + null + ], + [ + "dimension-token", + "1px", + 46689, + 46691, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 46692, + 46692, + null + ], + [ + "dimension-token", + "1px", + 46693, + 46695, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 46696, + 46696, + null + ], + [ + "function-token", + "rgba(", + 46697, + 46701, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 46702, + 46702, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46703, + 46703, + null + ], + [ + "whitespace-token", + " ", + 46704, + 46704, + null + ], + [ + "number-token", + "0", + 46705, + 46705, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46706, + 46706, + null + ], + [ + "whitespace-token", + " ", + 46707, + 46707, + null + ], + [ + "number-token", + "0", + 46708, + 46708, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 46709, + 46709, + null + ], + [ + "whitespace-token", + " ", + 46710, + 46710, + null + ], + [ + "number-token", + "0.075", + 46711, + 46715, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 46716, + 46716, + null + ], + [ + "semicolon-token", + ";", + 46717, + 46717, + null + ], + [ + "delim-token", + "-", + 46718, + 46718, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46719, + 46719, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-opacity", + 46720, + 46742, + { + "value": "bs-btn-disabled-opacity" + } + ], + [ + "colon-token", + ":", + 46743, + 46743, + null + ], + [ + "number-token", + "0.65", + 46744, + 46747, + { + "value": 0.65, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 46748, + 46748, + null + ], + [ + "delim-token", + "-", + 46749, + 46749, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46750, + 46750, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-box-shadow", + 46751, + 46773, + { + "value": "bs-btn-focus-box-shadow" + } + ], + [ + "colon-token", + ":", + 46774, + 46774, + null + ], + [ + "number-token", + "0", + 46775, + 46775, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46776, + 46776, + null + ], + [ + "number-token", + "0", + 46777, + 46777, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46778, + 46778, + null + ], + [ + "number-token", + "0", + 46779, + 46779, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 46780, + 46780, + null + ], + [ + "dimension-token", + "0.25rem", + 46781, + 46787, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 46788, + 46788, + null + ], + [ + "function-token", + "rgba(", + 46789, + 46793, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 46794, + 46797, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46798, + 46798, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46799, + 46799, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 46800, + 46822, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + ")-token", + ")", + 46823, + 46823, + null + ], + [ + "comma-token", + ",", + 46824, + 46824, + null + ], + [ + "whitespace-token", + " ", + 46825, + 46825, + null + ], + [ + "number-token", + ".5", + 46826, + 46827, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 46828, + 46828, + null + ], + [ + "semicolon-token", + ";", + 46829, + 46829, + null + ], + [ + "ident-token", + "display", + 46830, + 46836, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 46837, + 46837, + null + ], + [ + "ident-token", + "inline-block", + 46838, + 46849, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 46850, + 46850, + null + ], + [ + "ident-token", + "padding", + 46851, + 46857, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 46858, + 46858, + null + ], + [ + "function-token", + "var(", + 46859, + 46862, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46863, + 46863, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46864, + 46864, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-y", + 46865, + 46880, + { + "value": "bs-btn-padding-y" + } + ], + [ + ")-token", + ")", + 46881, + 46881, + null + ], + [ + "whitespace-token", + " ", + 46882, + 46882, + null + ], + [ + "function-token", + "var(", + 46883, + 46886, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46887, + 46887, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46888, + 46888, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-x", + 46889, + 46904, + { + "value": "bs-btn-padding-x" + } + ], + [ + ")-token", + ")", + 46905, + 46905, + null + ], + [ + "semicolon-token", + ";", + 46906, + 46906, + null + ], + [ + "ident-token", + "font-family", + 46907, + 46917, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 46918, + 46918, + null + ], + [ + "function-token", + "var(", + 46919, + 46922, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46923, + 46923, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46924, + 46924, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-family", + 46925, + 46942, + { + "value": "bs-btn-font-family" + } + ], + [ + ")-token", + ")", + 46943, + 46943, + null + ], + [ + "semicolon-token", + ";", + 46944, + 46944, + null + ], + [ + "ident-token", + "font-size", + 46945, + 46953, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 46954, + 46954, + null + ], + [ + "function-token", + "var(", + 46955, + 46958, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46959, + 46959, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46960, + 46960, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-size", + 46961, + 46976, + { + "value": "bs-btn-font-size" + } + ], + [ + ")-token", + ")", + 46977, + 46977, + null + ], + [ + "semicolon-token", + ";", + 46978, + 46978, + null + ], + [ + "ident-token", + "font-weight", + 46979, + 46989, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 46990, + 46990, + null + ], + [ + "function-token", + "var(", + 46991, + 46994, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 46995, + 46995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 46996, + 46996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-weight", + 46997, + 47014, + { + "value": "bs-btn-font-weight" + } + ], + [ + ")-token", + ")", + 47015, + 47015, + null + ], + [ + "semicolon-token", + ";", + 47016, + 47016, + null + ], + [ + "ident-token", + "line-height", + 47017, + 47027, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 47028, + 47028, + null + ], + [ + "function-token", + "var(", + 47029, + 47032, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47033, + 47033, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47034, + 47034, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-line-height", + 47035, + 47052, + { + "value": "bs-btn-line-height" + } + ], + [ + ")-token", + ")", + 47053, + 47053, + null + ], + [ + "semicolon-token", + ";", + 47054, + 47054, + null + ], + [ + "ident-token", + "color", + 47055, + 47059, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 47060, + 47060, + null + ], + [ + "function-token", + "var(", + 47061, + 47064, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47065, + 47065, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47066, + 47066, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 47067, + 47078, + { + "value": "bs-btn-color" + } + ], + [ + ")-token", + ")", + 47079, + 47079, + null + ], + [ + "semicolon-token", + ";", + 47080, + 47080, + null + ], + [ + "ident-token", + "text-align", + 47081, + 47090, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 47091, + 47091, + null + ], + [ + "ident-token", + "center", + 47092, + 47097, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 47098, + 47098, + null + ], + [ + "ident-token", + "text-decoration", + 47099, + 47113, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 47114, + 47114, + null + ], + [ + "ident-token", + "none", + 47115, + 47118, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 47119, + 47119, + null + ], + [ + "ident-token", + "vertical-align", + 47120, + 47133, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 47134, + 47134, + null + ], + [ + "ident-token", + "middle", + 47135, + 47140, + { + "value": "middle" + } + ], + [ + "semicolon-token", + ";", + 47141, + 47141, + null + ], + [ + "ident-token", + "cursor", + 47142, + 47147, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 47148, + 47148, + null + ], + [ + "ident-token", + "pointer", + 47149, + 47155, + { + "value": "pointer" + } + ], + [ + "semicolon-token", + ";", + 47156, + 47156, + null + ], + [ + "delim-token", + "-", + 47157, + 47157, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-user-select", + 47158, + 47175, + { + "value": "webkit-user-select" + } + ], + [ + "colon-token", + ":", + 47176, + 47176, + null + ], + [ + "ident-token", + "none", + 47177, + 47180, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 47181, + 47181, + null + ], + [ + "delim-token", + "-", + 47182, + 47182, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-user-select", + 47183, + 47197, + { + "value": "moz-user-select" + } + ], + [ + "colon-token", + ":", + 47198, + 47198, + null + ], + [ + "ident-token", + "none", + 47199, + 47202, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 47203, + 47203, + null + ], + [ + "ident-token", + "user-select", + 47204, + 47214, + { + "value": "user-select" + } + ], + [ + "colon-token", + ":", + 47215, + 47215, + null + ], + [ + "ident-token", + "none", + 47216, + 47219, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 47220, + 47220, + null + ], + [ + "ident-token", + "border", + 47221, + 47226, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 47227, + 47227, + null + ], + [ + "function-token", + "var(", + 47228, + 47231, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47232, + 47232, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47233, + 47233, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-width", + 47234, + 47252, + { + "value": "bs-btn-border-width" + } + ], + [ + ")-token", + ")", + 47253, + 47253, + null + ], + [ + "whitespace-token", + " ", + 47254, + 47254, + null + ], + [ + "ident-token", + "solid", + 47255, + 47259, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 47260, + 47260, + null + ], + [ + "function-token", + "var(", + 47261, + 47264, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47265, + 47265, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47266, + 47266, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 47267, + 47285, + { + "value": "bs-btn-border-color" + } + ], + [ + ")-token", + ")", + 47286, + 47286, + null + ], + [ + "semicolon-token", + ";", + 47287, + 47287, + null + ], + [ + "ident-token", + "border-radius", + 47288, + 47300, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 47301, + 47301, + null + ], + [ + "function-token", + "var(", + 47302, + 47305, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47306, + 47306, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47307, + 47307, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-radius", + 47308, + 47327, + { + "value": "bs-btn-border-radius" + } + ], + [ + ")-token", + ")", + 47328, + 47328, + null + ], + [ + "semicolon-token", + ";", + 47329, + 47329, + null + ], + [ + "ident-token", + "background-color", + 47330, + 47345, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 47346, + 47346, + null + ], + [ + "function-token", + "var(", + 47347, + 47350, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47351, + 47351, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47352, + 47352, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 47353, + 47361, + { + "value": "bs-btn-bg" + } + ], + [ + ")-token", + ")", + 47362, + 47362, + null + ], + [ + "semicolon-token", + ";", + 47363, + 47363, + null + ], + [ + "ident-token", + "transition", + 47364, + 47373, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 47374, + 47374, + null + ], + [ + "ident-token", + "color", + 47375, + 47379, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 47380, + 47380, + null + ], + [ + "dimension-token", + ".15s", + 47381, + 47384, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 47385, + 47385, + null + ], + [ + "ident-token", + "ease-in-out", + 47386, + 47396, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 47397, + 47397, + null + ], + [ + "ident-token", + "background-color", + 47398, + 47413, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 47414, + 47414, + null + ], + [ + "dimension-token", + ".15s", + 47415, + 47418, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 47419, + 47419, + null + ], + [ + "ident-token", + "ease-in-out", + 47420, + 47430, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 47431, + 47431, + null + ], + [ + "ident-token", + "border-color", + 47432, + 47443, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 47444, + 47444, + null + ], + [ + "dimension-token", + ".15s", + 47445, + 47448, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 47449, + 47449, + null + ], + [ + "ident-token", + "ease-in-out", + 47450, + 47460, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 47461, + 47461, + null + ], + [ + "ident-token", + "box-shadow", + 47462, + 47471, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 47472, + 47472, + null + ], + [ + "dimension-token", + ".15s", + 47473, + 47476, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 47477, + 47477, + null + ], + [ + "ident-token", + "ease-in-out", + 47478, + 47488, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 47489, + 47489, + null + ], + [ + "at-keyword-token", + "@media", + 47490, + 47495, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 47496, + 47496, + null + ], + [ + "(-token", + "(", + 47497, + 47497, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 47498, + 47519, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 47520, + 47520, + null + ], + [ + "ident-token", + "reduce", + 47521, + 47526, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 47527, + 47527, + null + ], + [ + "{-token", + "{", + 47528, + 47528, + null + ], + [ + "delim-token", + ".", + 47529, + 47529, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 47530, + 47532, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 47533, + 47533, + null + ], + [ + "ident-token", + "transition", + 47534, + 47543, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 47544, + 47544, + null + ], + [ + "ident-token", + "none", + 47545, + 47548, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 47549, + 47549, + null + ], + [ + "}-token", + "}", + 47550, + 47550, + null + ], + [ + "delim-token", + ".", + 47551, + 47551, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 47552, + 47554, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 47555, + 47555, + null + ], + [ + "ident-token", + "first-child", + 47556, + 47566, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 47567, + 47567, + null + ], + [ + "ident-token", + "hover", + 47568, + 47572, + { + "value": "hover" + } + ], + [ + "comma-token", + ",", + 47573, + 47573, + null + ], + [ + "colon-token", + ":", + 47574, + 47574, + null + ], + [ + "function-token", + "not(", + 47575, + 47578, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 47579, + 47579, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 47580, + 47588, + { + "value": "btn-check" + } + ], + [ + ")-token", + ")", + 47589, + 47589, + null + ], + [ + "delim-token", + "+", + 47590, + 47590, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 47591, + 47591, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 47592, + 47594, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 47595, + 47595, + null + ], + [ + "ident-token", + "hover", + 47596, + 47600, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 47601, + 47601, + null + ], + [ + "ident-token", + "color", + 47602, + 47606, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 47607, + 47607, + null + ], + [ + "function-token", + "var(", + 47608, + 47611, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47612, + 47612, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47613, + 47613, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 47614, + 47631, + { + "value": "bs-btn-hover-color" + } + ], + [ + ")-token", + ")", + 47632, + 47632, + null + ], + [ + "semicolon-token", + ";", + 47633, + 47633, + null + ], + [ + "ident-token", + "background-color", + 47634, + 47649, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 47650, + 47650, + null + ], + [ + "function-token", + "var(", + 47651, + 47654, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47655, + 47655, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47656, + 47656, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 47657, + 47671, + { + "value": "bs-btn-hover-bg" + } + ], + [ + ")-token", + ")", + 47672, + 47672, + null + ], + [ + "semicolon-token", + ";", + 47673, + 47673, + null + ], + [ + "ident-token", + "border-color", + 47674, + 47685, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 47686, + 47686, + null + ], + [ + "function-token", + "var(", + 47687, + 47690, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47691, + 47691, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47692, + 47692, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 47693, + 47717, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + ")-token", + ")", + 47718, + 47718, + null + ], + [ + "}-token", + "}", + 47719, + 47719, + null + ], + [ + "delim-token", + ".", + 47720, + 47720, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 47721, + 47723, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 47724, + 47724, + null + ], + [ + "ident-token", + "focus-visible", + 47725, + 47737, + { + "value": "focus-visible" + } + ], + [ + "{-token", + "{", + 47738, + 47738, + null + ], + [ + "ident-token", + "color", + 47739, + 47743, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 47744, + 47744, + null + ], + [ + "function-token", + "var(", + 47745, + 47748, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47749, + 47749, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47750, + 47750, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 47751, + 47768, + { + "value": "bs-btn-hover-color" + } + ], + [ + ")-token", + ")", + 47769, + 47769, + null + ], + [ + "semicolon-token", + ";", + 47770, + 47770, + null + ], + [ + "ident-token", + "background-color", + 47771, + 47786, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 47787, + 47787, + null + ], + [ + "function-token", + "var(", + 47788, + 47791, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47792, + 47792, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47793, + 47793, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 47794, + 47808, + { + "value": "bs-btn-hover-bg" + } + ], + [ + ")-token", + ")", + 47809, + 47809, + null + ], + [ + "semicolon-token", + ";", + 47810, + 47810, + null + ], + [ + "ident-token", + "border-color", + 47811, + 47822, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 47823, + 47823, + null + ], + [ + "function-token", + "var(", + 47824, + 47827, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47828, + 47828, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47829, + 47829, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 47830, + 47854, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + ")-token", + ")", + 47855, + 47855, + null + ], + [ + "semicolon-token", + ";", + 47856, + 47856, + null + ], + [ + "ident-token", + "outline", + 47857, + 47863, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 47864, + 47864, + null + ], + [ + "number-token", + "0", + 47865, + 47865, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 47866, + 47866, + null + ], + [ + "ident-token", + "box-shadow", + 47867, + 47876, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 47877, + 47877, + null + ], + [ + "function-token", + "var(", + 47878, + 47881, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47882, + 47882, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47883, + 47883, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-box-shadow", + 47884, + 47906, + { + "value": "bs-btn-focus-box-shadow" + } + ], + [ + ")-token", + ")", + 47907, + 47907, + null + ], + [ + "}-token", + "}", + 47908, + 47908, + null + ], + [ + "delim-token", + ".", + 47909, + 47909, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 47910, + 47918, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 47919, + 47919, + null + ], + [ + "ident-token", + "focus-visible", + 47920, + 47932, + { + "value": "focus-visible" + } + ], + [ + "delim-token", + "+", + 47933, + 47933, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 47934, + 47934, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 47935, + 47937, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 47938, + 47938, + null + ], + [ + "ident-token", + "border-color", + 47939, + 47950, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 47951, + 47951, + null + ], + [ + "function-token", + "var(", + 47952, + 47955, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 47956, + 47956, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 47957, + 47957, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 47958, + 47982, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + ")-token", + ")", + 47983, + 47983, + null + ], + [ + "semicolon-token", + ";", + 47984, + 47984, + null + ], + [ + "ident-token", + "outline", + 47985, + 47991, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 47992, + 47992, + null + ], + [ + "number-token", + "0", + 47993, + 47993, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 47994, + 47994, + null + ], + [ + "ident-token", + "box-shadow", + 47995, + 48004, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 48005, + 48005, + null + ], + [ + "function-token", + "var(", + 48006, + 48009, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48010, + 48010, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48011, + 48011, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-box-shadow", + 48012, + 48034, + { + "value": "bs-btn-focus-box-shadow" + } + ], + [ + ")-token", + ")", + 48035, + 48035, + null + ], + [ + "}-token", + "}", + 48036, + 48036, + null + ], + [ + "delim-token", + ".", + 48037, + 48037, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 48038, + 48046, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 48047, + 48047, + null + ], + [ + "ident-token", + "checked", + 48048, + 48054, + { + "value": "checked" + } + ], + [ + "delim-token", + "+", + 48055, + 48055, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 48056, + 48056, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48057, + 48059, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 48060, + 48060, + null + ], + [ + "delim-token", + ".", + 48061, + 48061, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48062, + 48064, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 48065, + 48065, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 48066, + 48071, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 48072, + 48072, + null + ], + [ + "delim-token", + ".", + 48073, + 48073, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48074, + 48076, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 48077, + 48077, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 48078, + 48081, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 48082, + 48082, + null + ], + [ + "delim-token", + ".", + 48083, + 48083, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48084, + 48086, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48087, + 48087, + null + ], + [ + "ident-token", + "first-child", + 48088, + 48098, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 48099, + 48099, + null + ], + [ + "ident-token", + "active", + 48100, + 48105, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 48106, + 48106, + null + ], + [ + "colon-token", + ":", + 48107, + 48107, + null + ], + [ + "function-token", + "not(", + 48108, + 48111, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 48112, + 48112, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 48113, + 48121, + { + "value": "btn-check" + } + ], + [ + ")-token", + ")", + 48122, + 48122, + null + ], + [ + "delim-token", + "+", + 48123, + 48123, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 48124, + 48124, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48125, + 48127, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48128, + 48128, + null + ], + [ + "ident-token", + "active", + 48129, + 48134, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 48135, + 48135, + null + ], + [ + "ident-token", + "color", + 48136, + 48140, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 48141, + 48141, + null + ], + [ + "function-token", + "var(", + 48142, + 48145, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48146, + 48146, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48147, + 48147, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 48148, + 48166, + { + "value": "bs-btn-active-color" + } + ], + [ + ")-token", + ")", + 48167, + 48167, + null + ], + [ + "semicolon-token", + ";", + 48168, + 48168, + null + ], + [ + "ident-token", + "background-color", + 48169, + 48184, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 48185, + 48185, + null + ], + [ + "function-token", + "var(", + 48186, + 48189, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48190, + 48190, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48191, + 48191, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 48192, + 48207, + { + "value": "bs-btn-active-bg" + } + ], + [ + ")-token", + ")", + 48208, + 48208, + null + ], + [ + "semicolon-token", + ";", + 48209, + 48209, + null + ], + [ + "ident-token", + "border-color", + 48210, + 48221, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 48222, + 48222, + null + ], + [ + "function-token", + "var(", + 48223, + 48226, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48227, + 48227, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48228, + 48228, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 48229, + 48254, + { + "value": "bs-btn-active-border-color" + } + ], + [ + ")-token", + ")", + 48255, + 48255, + null + ], + [ + "}-token", + "}", + 48256, + 48256, + null + ], + [ + "delim-token", + ".", + 48257, + 48257, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 48258, + 48266, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 48267, + 48267, + null + ], + [ + "ident-token", + "checked", + 48268, + 48274, + { + "value": "checked" + } + ], + [ + "delim-token", + "+", + 48275, + 48275, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 48276, + 48276, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48277, + 48279, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48280, + 48280, + null + ], + [ + "ident-token", + "focus-visible", + 48281, + 48293, + { + "value": "focus-visible" + } + ], + [ + "comma-token", + ",", + 48294, + 48294, + null + ], + [ + "delim-token", + ".", + 48295, + 48295, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48296, + 48298, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 48299, + 48299, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 48300, + 48305, + { + "value": "active" + } + ], + [ + "colon-token", + ":", + 48306, + 48306, + null + ], + [ + "ident-token", + "focus-visible", + 48307, + 48319, + { + "value": "focus-visible" + } + ], + [ + "comma-token", + ",", + 48320, + 48320, + null + ], + [ + "delim-token", + ".", + 48321, + 48321, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48322, + 48324, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 48325, + 48325, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 48326, + 48329, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 48330, + 48330, + null + ], + [ + "ident-token", + "focus-visible", + 48331, + 48343, + { + "value": "focus-visible" + } + ], + [ + "comma-token", + ",", + 48344, + 48344, + null + ], + [ + "delim-token", + ".", + 48345, + 48345, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48346, + 48348, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48349, + 48349, + null + ], + [ + "ident-token", + "first-child", + 48350, + 48360, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 48361, + 48361, + null + ], + [ + "ident-token", + "active", + 48362, + 48367, + { + "value": "active" + } + ], + [ + "colon-token", + ":", + 48368, + 48368, + null + ], + [ + "ident-token", + "focus-visible", + 48369, + 48381, + { + "value": "focus-visible" + } + ], + [ + "comma-token", + ",", + 48382, + 48382, + null + ], + [ + "colon-token", + ":", + 48383, + 48383, + null + ], + [ + "function-token", + "not(", + 48384, + 48387, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 48388, + 48388, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 48389, + 48397, + { + "value": "btn-check" + } + ], + [ + ")-token", + ")", + 48398, + 48398, + null + ], + [ + "delim-token", + "+", + 48399, + 48399, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 48400, + 48400, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48401, + 48403, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48404, + 48404, + null + ], + [ + "ident-token", + "active", + 48405, + 48410, + { + "value": "active" + } + ], + [ + "colon-token", + ":", + 48411, + 48411, + null + ], + [ + "ident-token", + "focus-visible", + 48412, + 48424, + { + "value": "focus-visible" + } + ], + [ + "{-token", + "{", + 48425, + 48425, + null + ], + [ + "ident-token", + "box-shadow", + 48426, + 48435, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 48436, + 48436, + null + ], + [ + "function-token", + "var(", + 48437, + 48440, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48441, + 48441, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48442, + 48442, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-box-shadow", + 48443, + 48465, + { + "value": "bs-btn-focus-box-shadow" + } + ], + [ + ")-token", + ")", + 48466, + 48466, + null + ], + [ + "}-token", + "}", + 48467, + 48467, + null + ], + [ + "delim-token", + ".", + 48468, + 48468, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48469, + 48471, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 48472, + 48472, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 48473, + 48480, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 48481, + 48481, + null + ], + [ + "delim-token", + ".", + 48482, + 48482, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48483, + 48485, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 48486, + 48486, + null + ], + [ + "ident-token", + "disabled", + 48487, + 48494, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 48495, + 48495, + null + ], + [ + "ident-token", + "fieldset", + 48496, + 48503, + { + "value": "fieldset" + } + ], + [ + "colon-token", + ":", + 48504, + 48504, + null + ], + [ + "ident-token", + "disabled", + 48505, + 48512, + { + "value": "disabled" + } + ], + [ + "whitespace-token", + " ", + 48513, + 48513, + null + ], + [ + "delim-token", + ".", + 48514, + 48514, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 48515, + 48517, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 48518, + 48518, + null + ], + [ + "ident-token", + "color", + 48519, + 48523, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 48524, + 48524, + null + ], + [ + "function-token", + "var(", + 48525, + 48528, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48529, + 48529, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48530, + 48530, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 48531, + 48551, + { + "value": "bs-btn-disabled-color" + } + ], + [ + ")-token", + ")", + 48552, + 48552, + null + ], + [ + "semicolon-token", + ";", + 48553, + 48553, + null + ], + [ + "ident-token", + "pointer-events", + 48554, + 48567, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 48568, + 48568, + null + ], + [ + "ident-token", + "none", + 48569, + 48572, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 48573, + 48573, + null + ], + [ + "ident-token", + "background-color", + 48574, + 48589, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 48590, + 48590, + null + ], + [ + "function-token", + "var(", + 48591, + 48594, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48595, + 48595, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48596, + 48596, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 48597, + 48614, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + ")-token", + ")", + 48615, + 48615, + null + ], + [ + "semicolon-token", + ";", + 48616, + 48616, + null + ], + [ + "ident-token", + "border-color", + 48617, + 48628, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 48629, + 48629, + null + ], + [ + "function-token", + "var(", + 48630, + 48633, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48634, + 48634, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48635, + 48635, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 48636, + 48663, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + ")-token", + ")", + 48664, + 48664, + null + ], + [ + "semicolon-token", + ";", + 48665, + 48665, + null + ], + [ + "ident-token", + "opacity", + 48666, + 48672, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 48673, + 48673, + null + ], + [ + "function-token", + "var(", + 48674, + 48677, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 48678, + 48678, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48679, + 48679, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-opacity", + 48680, + 48702, + { + "value": "bs-btn-disabled-opacity" + } + ], + [ + ")-token", + ")", + 48703, + 48703, + null + ], + [ + "}-token", + "}", + 48704, + 48704, + null + ], + [ + "delim-token", + ".", + 48705, + 48705, + { + "value": "." + } + ], + [ + "ident-token", + "btn-primary", + 48706, + 48716, + { + "value": "btn-primary" + } + ], + [ + "{-token", + "{", + 48717, + 48717, + null + ], + [ + "delim-token", + "-", + 48718, + 48718, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48719, + 48719, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 48720, + 48731, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 48732, + 48732, + null + ], + [ + "hash-token", + "#fff", + 48733, + 48736, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 48737, + 48737, + null + ], + [ + "delim-token", + "-", + 48738, + 48738, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48739, + 48739, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 48740, + 48748, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 48749, + 48749, + null + ], + [ + "hash-token", + "#0d6efd", + 48750, + 48756, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 48757, + 48757, + null + ], + [ + "delim-token", + "-", + 48758, + 48758, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48759, + 48759, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 48760, + 48778, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 48779, + 48779, + null + ], + [ + "hash-token", + "#0d6efd", + 48780, + 48786, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 48787, + 48787, + null + ], + [ + "delim-token", + "-", + 48788, + 48788, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48789, + 48789, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 48790, + 48807, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 48808, + 48808, + null + ], + [ + "hash-token", + "#fff", + 48809, + 48812, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 48813, + 48813, + null + ], + [ + "delim-token", + "-", + 48814, + 48814, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48815, + 48815, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 48816, + 48830, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 48831, + 48831, + null + ], + [ + "hash-token", + "#0b5ed7", + 48832, + 48838, + { + "value": "0b5ed7", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 48839, + 48839, + null + ], + [ + "delim-token", + "-", + 48840, + 48840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48841, + 48841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 48842, + 48866, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 48867, + 48867, + null + ], + [ + "hash-token", + "#0a58ca", + 48868, + 48874, + { + "value": "0a58ca", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 48875, + 48875, + null + ], + [ + "delim-token", + "-", + 48876, + 48876, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48877, + 48877, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 48878, + 48900, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 48901, + 48901, + null + ], + [ + "number-token", + "49", + 48902, + 48903, + { + "value": 49, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 48904, + 48904, + null + ], + [ + "number-token", + "132", + 48905, + 48907, + { + "value": 132, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 48908, + 48908, + null + ], + [ + "number-token", + "253", + 48909, + 48911, + { + "value": 253, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 48912, + 48912, + null + ], + [ + "delim-token", + "-", + 48913, + 48913, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48914, + 48914, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 48915, + 48933, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 48934, + 48934, + null + ], + [ + "hash-token", + "#fff", + 48935, + 48938, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 48939, + 48939, + null + ], + [ + "delim-token", + "-", + 48940, + 48940, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48941, + 48941, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 48942, + 48957, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 48958, + 48958, + null + ], + [ + "hash-token", + "#0a58ca", + 48959, + 48965, + { + "value": "0a58ca", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 48966, + 48966, + null + ], + [ + "delim-token", + "-", + 48967, + 48967, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 48968, + 48968, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 48969, + 48994, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 48995, + 48995, + null + ], + [ + "hash-token", + "#0a53be", + 48996, + 49002, + { + "value": "0a53be", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49003, + 49003, + null + ], + [ + "delim-token", + "-", + 49004, + 49004, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49005, + 49005, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 49006, + 49025, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 49026, + 49026, + null + ], + [ + "ident-token", + "inset", + 49027, + 49031, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 49032, + 49032, + null + ], + [ + "number-token", + "0", + 49033, + 49033, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 49034, + 49034, + null + ], + [ + "dimension-token", + "3px", + 49035, + 49037, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49038, + 49038, + null + ], + [ + "dimension-token", + "5px", + 49039, + 49041, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49042, + 49042, + null + ], + [ + "function-token", + "rgba(", + 49043, + 49047, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 49048, + 49048, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49049, + 49049, + null + ], + [ + "whitespace-token", + " ", + 49050, + 49050, + null + ], + [ + "number-token", + "0", + 49051, + 49051, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49052, + 49052, + null + ], + [ + "whitespace-token", + " ", + 49053, + 49053, + null + ], + [ + "number-token", + "0", + 49054, + 49054, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49055, + 49055, + null + ], + [ + "whitespace-token", + " ", + 49056, + 49056, + null + ], + [ + "number-token", + "0.125", + 49057, + 49061, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 49062, + 49062, + null + ], + [ + "semicolon-token", + ";", + 49063, + 49063, + null + ], + [ + "delim-token", + "-", + 49064, + 49064, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49065, + 49065, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 49066, + 49086, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 49087, + 49087, + null + ], + [ + "hash-token", + "#fff", + 49088, + 49091, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49092, + 49092, + null + ], + [ + "delim-token", + "-", + 49093, + 49093, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49094, + 49094, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 49095, + 49112, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 49113, + 49113, + null + ], + [ + "hash-token", + "#0d6efd", + 49114, + 49120, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49121, + 49121, + null + ], + [ + "delim-token", + "-", + 49122, + 49122, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49123, + 49123, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 49124, + 49151, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 49152, + 49152, + null + ], + [ + "hash-token", + "#0d6efd", + 49153, + 49159, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 49160, + 49160, + null + ], + [ + "delim-token", + ".", + 49161, + 49161, + { + "value": "." + } + ], + [ + "ident-token", + "btn-secondary", + 49162, + 49174, + { + "value": "btn-secondary" + } + ], + [ + "{-token", + "{", + 49175, + 49175, + null + ], + [ + "delim-token", + "-", + 49176, + 49176, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49177, + 49177, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 49178, + 49189, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 49190, + 49190, + null + ], + [ + "hash-token", + "#fff", + 49191, + 49194, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49195, + 49195, + null + ], + [ + "delim-token", + "-", + 49196, + 49196, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49197, + 49197, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 49198, + 49206, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 49207, + 49207, + null + ], + [ + "hash-token", + "#6c757d", + 49208, + 49214, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49215, + 49215, + null + ], + [ + "delim-token", + "-", + 49216, + 49216, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49217, + 49217, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 49218, + 49236, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 49237, + 49237, + null + ], + [ + "hash-token", + "#6c757d", + 49238, + 49244, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49245, + 49245, + null + ], + [ + "delim-token", + "-", + 49246, + 49246, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49247, + 49247, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 49248, + 49265, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 49266, + 49266, + null + ], + [ + "hash-token", + "#fff", + 49267, + 49270, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49271, + 49271, + null + ], + [ + "delim-token", + "-", + 49272, + 49272, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49273, + 49273, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 49274, + 49288, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 49289, + 49289, + null + ], + [ + "hash-token", + "#5c636a", + 49290, + 49296, + { + "value": "5c636a", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49297, + 49297, + null + ], + [ + "delim-token", + "-", + 49298, + 49298, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49299, + 49299, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 49300, + 49324, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 49325, + 49325, + null + ], + [ + "hash-token", + "#565e64", + 49326, + 49332, + { + "value": "565e64", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49333, + 49333, + null + ], + [ + "delim-token", + "-", + 49334, + 49334, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49335, + 49335, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 49336, + 49358, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 49359, + 49359, + null + ], + [ + "number-token", + "130", + 49360, + 49362, + { + "value": 130, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49363, + 49363, + null + ], + [ + "number-token", + "138", + 49364, + 49366, + { + "value": 138, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49367, + 49367, + null + ], + [ + "number-token", + "145", + 49368, + 49370, + { + "value": 145, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 49371, + 49371, + null + ], + [ + "delim-token", + "-", + 49372, + 49372, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49373, + 49373, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 49374, + 49392, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 49393, + 49393, + null + ], + [ + "hash-token", + "#fff", + 49394, + 49397, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49398, + 49398, + null + ], + [ + "delim-token", + "-", + 49399, + 49399, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49400, + 49400, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 49401, + 49416, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 49417, + 49417, + null + ], + [ + "hash-token", + "#565e64", + 49418, + 49424, + { + "value": "565e64", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49425, + 49425, + null + ], + [ + "delim-token", + "-", + 49426, + 49426, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49427, + 49427, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 49428, + 49453, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 49454, + 49454, + null + ], + [ + "hash-token", + "#51585e", + 49455, + 49461, + { + "value": "51585e", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49462, + 49462, + null + ], + [ + "delim-token", + "-", + 49463, + 49463, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49464, + 49464, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 49465, + 49484, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 49485, + 49485, + null + ], + [ + "ident-token", + "inset", + 49486, + 49490, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 49491, + 49491, + null + ], + [ + "number-token", + "0", + 49492, + 49492, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 49493, + 49493, + null + ], + [ + "dimension-token", + "3px", + 49494, + 49496, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49497, + 49497, + null + ], + [ + "dimension-token", + "5px", + 49498, + 49500, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49501, + 49501, + null + ], + [ + "function-token", + "rgba(", + 49502, + 49506, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 49507, + 49507, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49508, + 49508, + null + ], + [ + "whitespace-token", + " ", + 49509, + 49509, + null + ], + [ + "number-token", + "0", + 49510, + 49510, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49511, + 49511, + null + ], + [ + "whitespace-token", + " ", + 49512, + 49512, + null + ], + [ + "number-token", + "0", + 49513, + 49513, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49514, + 49514, + null + ], + [ + "whitespace-token", + " ", + 49515, + 49515, + null + ], + [ + "number-token", + "0.125", + 49516, + 49520, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 49521, + 49521, + null + ], + [ + "semicolon-token", + ";", + 49522, + 49522, + null + ], + [ + "delim-token", + "-", + 49523, + 49523, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49524, + 49524, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 49525, + 49545, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 49546, + 49546, + null + ], + [ + "hash-token", + "#fff", + 49547, + 49550, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49551, + 49551, + null + ], + [ + "delim-token", + "-", + 49552, + 49552, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49553, + 49553, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 49554, + 49571, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 49572, + 49572, + null + ], + [ + "hash-token", + "#6c757d", + 49573, + 49579, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49580, + 49580, + null + ], + [ + "delim-token", + "-", + 49581, + 49581, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49582, + 49582, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 49583, + 49610, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 49611, + 49611, + null + ], + [ + "hash-token", + "#6c757d", + 49612, + 49618, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 49619, + 49619, + null + ], + [ + "delim-token", + ".", + 49620, + 49620, + { + "value": "." + } + ], + [ + "ident-token", + "btn-success", + 49621, + 49631, + { + "value": "btn-success" + } + ], + [ + "{-token", + "{", + 49632, + 49632, + null + ], + [ + "delim-token", + "-", + 49633, + 49633, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49634, + 49634, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 49635, + 49646, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 49647, + 49647, + null + ], + [ + "hash-token", + "#fff", + 49648, + 49651, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49652, + 49652, + null + ], + [ + "delim-token", + "-", + 49653, + 49653, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49654, + 49654, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 49655, + 49663, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 49664, + 49664, + null + ], + [ + "hash-token", + "#198754", + 49665, + 49671, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49672, + 49672, + null + ], + [ + "delim-token", + "-", + 49673, + 49673, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49674, + 49674, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 49675, + 49693, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 49694, + 49694, + null + ], + [ + "hash-token", + "#198754", + 49695, + 49701, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49702, + 49702, + null + ], + [ + "delim-token", + "-", + 49703, + 49703, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49704, + 49704, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 49705, + 49722, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 49723, + 49723, + null + ], + [ + "hash-token", + "#fff", + 49724, + 49727, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49728, + 49728, + null + ], + [ + "delim-token", + "-", + 49729, + 49729, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49730, + 49730, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 49731, + 49745, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 49746, + 49746, + null + ], + [ + "hash-token", + "#157347", + 49747, + 49753, + { + "value": "157347", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49754, + 49754, + null + ], + [ + "delim-token", + "-", + 49755, + 49755, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49756, + 49756, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 49757, + 49781, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 49782, + 49782, + null + ], + [ + "hash-token", + "#146c43", + 49783, + 49789, + { + "value": "146c43", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49790, + 49790, + null + ], + [ + "delim-token", + "-", + 49791, + 49791, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49792, + 49792, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 49793, + 49815, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 49816, + 49816, + null + ], + [ + "number-token", + "60", + 49817, + 49818, + { + "value": 60, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49819, + 49819, + null + ], + [ + "number-token", + "153", + 49820, + 49822, + { + "value": 153, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49823, + 49823, + null + ], + [ + "number-token", + "110", + 49824, + 49826, + { + "value": 110, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 49827, + 49827, + null + ], + [ + "delim-token", + "-", + 49828, + 49828, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49829, + 49829, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 49830, + 49848, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 49849, + 49849, + null + ], + [ + "hash-token", + "#fff", + 49850, + 49853, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 49854, + 49854, + null + ], + [ + "delim-token", + "-", + 49855, + 49855, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49856, + 49856, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 49857, + 49872, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 49873, + 49873, + null + ], + [ + "hash-token", + "#146c43", + 49874, + 49880, + { + "value": "146c43", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49881, + 49881, + null + ], + [ + "delim-token", + "-", + 49882, + 49882, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49883, + 49883, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 49884, + 49909, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 49910, + 49910, + null + ], + [ + "hash-token", + "#13653f", + 49911, + 49917, + { + "value": "13653f", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 49918, + 49918, + null + ], + [ + "delim-token", + "-", + 49919, + 49919, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49920, + 49920, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 49921, + 49940, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 49941, + 49941, + null + ], + [ + "ident-token", + "inset", + 49942, + 49946, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 49947, + 49947, + null + ], + [ + "number-token", + "0", + 49948, + 49948, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 49949, + 49949, + null + ], + [ + "dimension-token", + "3px", + 49950, + 49952, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49953, + 49953, + null + ], + [ + "dimension-token", + "5px", + 49954, + 49956, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 49957, + 49957, + null + ], + [ + "function-token", + "rgba(", + 49958, + 49962, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 49963, + 49963, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49964, + 49964, + null + ], + [ + "whitespace-token", + " ", + 49965, + 49965, + null + ], + [ + "number-token", + "0", + 49966, + 49966, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49967, + 49967, + null + ], + [ + "whitespace-token", + " ", + 49968, + 49968, + null + ], + [ + "number-token", + "0", + 49969, + 49969, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 49970, + 49970, + null + ], + [ + "whitespace-token", + " ", + 49971, + 49971, + null + ], + [ + "number-token", + "0.125", + 49972, + 49976, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 49977, + 49977, + null + ], + [ + "semicolon-token", + ";", + 49978, + 49978, + null + ], + [ + "delim-token", + "-", + 49979, + 49979, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 49980, + 49980, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 49981, + 50001, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 50002, + 50002, + null + ], + [ + "hash-token", + "#fff", + 50003, + 50006, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50007, + 50007, + null + ], + [ + "delim-token", + "-", + 50008, + 50008, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50009, + 50009, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 50010, + 50027, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 50028, + 50028, + null + ], + [ + "hash-token", + "#198754", + 50029, + 50035, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50036, + 50036, + null + ], + [ + "delim-token", + "-", + 50037, + 50037, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50038, + 50038, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 50039, + 50066, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 50067, + 50067, + null + ], + [ + "hash-token", + "#198754", + 50068, + 50074, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 50075, + 50075, + null + ], + [ + "delim-token", + ".", + 50076, + 50076, + { + "value": "." + } + ], + [ + "ident-token", + "btn-info", + 50077, + 50084, + { + "value": "btn-info" + } + ], + [ + "{-token", + "{", + 50085, + 50085, + null + ], + [ + "delim-token", + "-", + 50086, + 50086, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50087, + 50087, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 50088, + 50099, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 50100, + 50100, + null + ], + [ + "hash-token", + "#000", + 50101, + 50104, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50105, + 50105, + null + ], + [ + "delim-token", + "-", + 50106, + 50106, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50107, + 50107, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 50108, + 50116, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 50117, + 50117, + null + ], + [ + "hash-token", + "#0dcaf0", + 50118, + 50124, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50125, + 50125, + null + ], + [ + "delim-token", + "-", + 50126, + 50126, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50127, + 50127, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 50128, + 50146, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 50147, + 50147, + null + ], + [ + "hash-token", + "#0dcaf0", + 50148, + 50154, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50155, + 50155, + null + ], + [ + "delim-token", + "-", + 50156, + 50156, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50157, + 50157, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 50158, + 50175, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 50176, + 50176, + null + ], + [ + "hash-token", + "#000", + 50177, + 50180, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50181, + 50181, + null + ], + [ + "delim-token", + "-", + 50182, + 50182, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50183, + 50183, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 50184, + 50198, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 50199, + 50199, + null + ], + [ + "hash-token", + "#31d2f2", + 50200, + 50206, + { + "value": "31d2f2", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50207, + 50207, + null + ], + [ + "delim-token", + "-", + 50208, + 50208, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50209, + 50209, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 50210, + 50234, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 50235, + 50235, + null + ], + [ + "hash-token", + "#25cff2", + 50236, + 50242, + { + "value": "25cff2", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50243, + 50243, + null + ], + [ + "delim-token", + "-", + 50244, + 50244, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50245, + 50245, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 50246, + 50268, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 50269, + 50269, + null + ], + [ + "number-token", + "11", + 50270, + 50271, + { + "value": 11, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50272, + 50272, + null + ], + [ + "number-token", + "172", + 50273, + 50275, + { + "value": 172, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50276, + 50276, + null + ], + [ + "number-token", + "204", + 50277, + 50279, + { + "value": 204, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 50280, + 50280, + null + ], + [ + "delim-token", + "-", + 50281, + 50281, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50282, + 50282, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 50283, + 50301, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 50302, + 50302, + null + ], + [ + "hash-token", + "#000", + 50303, + 50306, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50307, + 50307, + null + ], + [ + "delim-token", + "-", + 50308, + 50308, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50309, + 50309, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 50310, + 50325, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 50326, + 50326, + null + ], + [ + "hash-token", + "#3dd5f3", + 50327, + 50333, + { + "value": "3dd5f3", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50334, + 50334, + null + ], + [ + "delim-token", + "-", + 50335, + 50335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50336, + 50336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 50337, + 50362, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 50363, + 50363, + null + ], + [ + "hash-token", + "#25cff2", + 50364, + 50370, + { + "value": "25cff2", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50371, + 50371, + null + ], + [ + "delim-token", + "-", + 50372, + 50372, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50373, + 50373, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 50374, + 50393, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 50394, + 50394, + null + ], + [ + "ident-token", + "inset", + 50395, + 50399, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 50400, + 50400, + null + ], + [ + "number-token", + "0", + 50401, + 50401, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 50402, + 50402, + null + ], + [ + "dimension-token", + "3px", + 50403, + 50405, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 50406, + 50406, + null + ], + [ + "dimension-token", + "5px", + 50407, + 50409, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 50410, + 50410, + null + ], + [ + "function-token", + "rgba(", + 50411, + 50415, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 50416, + 50416, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50417, + 50417, + null + ], + [ + "whitespace-token", + " ", + 50418, + 50418, + null + ], + [ + "number-token", + "0", + 50419, + 50419, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50420, + 50420, + null + ], + [ + "whitespace-token", + " ", + 50421, + 50421, + null + ], + [ + "number-token", + "0", + 50422, + 50422, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50423, + 50423, + null + ], + [ + "whitespace-token", + " ", + 50424, + 50424, + null + ], + [ + "number-token", + "0.125", + 50425, + 50429, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 50430, + 50430, + null + ], + [ + "semicolon-token", + ";", + 50431, + 50431, + null + ], + [ + "delim-token", + "-", + 50432, + 50432, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50433, + 50433, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 50434, + 50454, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 50455, + 50455, + null + ], + [ + "hash-token", + "#000", + 50456, + 50459, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50460, + 50460, + null + ], + [ + "delim-token", + "-", + 50461, + 50461, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50462, + 50462, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 50463, + 50480, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 50481, + 50481, + null + ], + [ + "hash-token", + "#0dcaf0", + 50482, + 50488, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50489, + 50489, + null + ], + [ + "delim-token", + "-", + 50490, + 50490, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50491, + 50491, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 50492, + 50519, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 50520, + 50520, + null + ], + [ + "hash-token", + "#0dcaf0", + 50521, + 50527, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 50528, + 50528, + null + ], + [ + "delim-token", + ".", + 50529, + 50529, + { + "value": "." + } + ], + [ + "ident-token", + "btn-warning", + 50530, + 50540, + { + "value": "btn-warning" + } + ], + [ + "{-token", + "{", + 50541, + 50541, + null + ], + [ + "delim-token", + "-", + 50542, + 50542, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50543, + 50543, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 50544, + 50555, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 50556, + 50556, + null + ], + [ + "hash-token", + "#000", + 50557, + 50560, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50561, + 50561, + null + ], + [ + "delim-token", + "-", + 50562, + 50562, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50563, + 50563, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 50564, + 50572, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 50573, + 50573, + null + ], + [ + "hash-token", + "#ffc107", + 50574, + 50580, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50581, + 50581, + null + ], + [ + "delim-token", + "-", + 50582, + 50582, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50583, + 50583, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 50584, + 50602, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 50603, + 50603, + null + ], + [ + "hash-token", + "#ffc107", + 50604, + 50610, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50611, + 50611, + null + ], + [ + "delim-token", + "-", + 50612, + 50612, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50613, + 50613, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 50614, + 50631, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 50632, + 50632, + null + ], + [ + "hash-token", + "#000", + 50633, + 50636, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50637, + 50637, + null + ], + [ + "delim-token", + "-", + 50638, + 50638, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50639, + 50639, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 50640, + 50654, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 50655, + 50655, + null + ], + [ + "hash-token", + "#ffca2c", + 50656, + 50662, + { + "value": "ffca2c", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50663, + 50663, + null + ], + [ + "delim-token", + "-", + 50664, + 50664, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50665, + 50665, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 50666, + 50690, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 50691, + 50691, + null + ], + [ + "hash-token", + "#ffc720", + 50692, + 50698, + { + "value": "ffc720", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50699, + 50699, + null + ], + [ + "delim-token", + "-", + 50700, + 50700, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50701, + 50701, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 50702, + 50724, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 50725, + 50725, + null + ], + [ + "number-token", + "217", + 50726, + 50728, + { + "value": 217, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50729, + 50729, + null + ], + [ + "number-token", + "164", + 50730, + 50732, + { + "value": 164, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50733, + 50733, + null + ], + [ + "number-token", + "6", + 50734, + 50734, + { + "value": 6, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 50735, + 50735, + null + ], + [ + "delim-token", + "-", + 50736, + 50736, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50737, + 50737, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 50738, + 50756, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 50757, + 50757, + null + ], + [ + "hash-token", + "#000", + 50758, + 50761, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50762, + 50762, + null + ], + [ + "delim-token", + "-", + 50763, + 50763, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50764, + 50764, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 50765, + 50780, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 50781, + 50781, + null + ], + [ + "hash-token", + "#ffcd39", + 50782, + 50788, + { + "value": "ffcd39", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50789, + 50789, + null + ], + [ + "delim-token", + "-", + 50790, + 50790, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50791, + 50791, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 50792, + 50817, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 50818, + 50818, + null + ], + [ + "hash-token", + "#ffc720", + 50819, + 50825, + { + "value": "ffc720", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50826, + 50826, + null + ], + [ + "delim-token", + "-", + 50827, + 50827, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50828, + 50828, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 50829, + 50848, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 50849, + 50849, + null + ], + [ + "ident-token", + "inset", + 50850, + 50854, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 50855, + 50855, + null + ], + [ + "number-token", + "0", + 50856, + 50856, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 50857, + 50857, + null + ], + [ + "dimension-token", + "3px", + 50858, + 50860, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 50861, + 50861, + null + ], + [ + "dimension-token", + "5px", + 50862, + 50864, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 50865, + 50865, + null + ], + [ + "function-token", + "rgba(", + 50866, + 50870, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 50871, + 50871, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50872, + 50872, + null + ], + [ + "whitespace-token", + " ", + 50873, + 50873, + null + ], + [ + "number-token", + "0", + 50874, + 50874, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50875, + 50875, + null + ], + [ + "whitespace-token", + " ", + 50876, + 50876, + null + ], + [ + "number-token", + "0", + 50877, + 50877, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 50878, + 50878, + null + ], + [ + "whitespace-token", + " ", + 50879, + 50879, + null + ], + [ + "number-token", + "0.125", + 50880, + 50884, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 50885, + 50885, + null + ], + [ + "semicolon-token", + ";", + 50886, + 50886, + null + ], + [ + "delim-token", + "-", + 50887, + 50887, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50888, + 50888, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 50889, + 50909, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 50910, + 50910, + null + ], + [ + "hash-token", + "#000", + 50911, + 50914, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 50915, + 50915, + null + ], + [ + "delim-token", + "-", + 50916, + 50916, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50917, + 50917, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 50918, + 50935, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 50936, + 50936, + null + ], + [ + "hash-token", + "#ffc107", + 50937, + 50943, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 50944, + 50944, + null + ], + [ + "delim-token", + "-", + 50945, + 50945, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50946, + 50946, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 50947, + 50974, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 50975, + 50975, + null + ], + [ + "hash-token", + "#ffc107", + 50976, + 50982, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "}-token", + "}", + 50983, + 50983, + null + ], + [ + "delim-token", + ".", + 50984, + 50984, + { + "value": "." + } + ], + [ + "ident-token", + "btn-danger", + 50985, + 50994, + { + "value": "btn-danger" + } + ], + [ + "{-token", + "{", + 50995, + 50995, + null + ], + [ + "delim-token", + "-", + 50996, + 50996, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 50997, + 50997, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 50998, + 51009, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 51010, + 51010, + null + ], + [ + "hash-token", + "#fff", + 51011, + 51014, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51015, + 51015, + null + ], + [ + "delim-token", + "-", + 51016, + 51016, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51017, + 51017, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 51018, + 51026, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 51027, + 51027, + null + ], + [ + "hash-token", + "#dc3545", + 51028, + 51034, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51035, + 51035, + null + ], + [ + "delim-token", + "-", + 51036, + 51036, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51037, + 51037, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 51038, + 51056, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 51057, + 51057, + null + ], + [ + "hash-token", + "#dc3545", + 51058, + 51064, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51065, + 51065, + null + ], + [ + "delim-token", + "-", + 51066, + 51066, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51067, + 51067, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 51068, + 51085, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 51086, + 51086, + null + ], + [ + "hash-token", + "#fff", + 51087, + 51090, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51091, + 51091, + null + ], + [ + "delim-token", + "-", + 51092, + 51092, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51093, + 51093, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 51094, + 51108, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 51109, + 51109, + null + ], + [ + "hash-token", + "#bb2d3b", + 51110, + 51116, + { + "value": "bb2d3b", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51117, + 51117, + null + ], + [ + "delim-token", + "-", + 51118, + 51118, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51119, + 51119, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 51120, + 51144, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 51145, + 51145, + null + ], + [ + "hash-token", + "#b02a37", + 51146, + 51152, + { + "value": "b02a37", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51153, + 51153, + null + ], + [ + "delim-token", + "-", + 51154, + 51154, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51155, + 51155, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 51156, + 51178, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 51179, + 51179, + null + ], + [ + "number-token", + "225", + 51180, + 51182, + { + "value": 225, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51183, + 51183, + null + ], + [ + "number-token", + "83", + 51184, + 51185, + { + "value": 83, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51186, + 51186, + null + ], + [ + "number-token", + "97", + 51187, + 51188, + { + "value": 97, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 51189, + 51189, + null + ], + [ + "delim-token", + "-", + 51190, + 51190, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51191, + 51191, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 51192, + 51210, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 51211, + 51211, + null + ], + [ + "hash-token", + "#fff", + 51212, + 51215, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51216, + 51216, + null + ], + [ + "delim-token", + "-", + 51217, + 51217, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51218, + 51218, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 51219, + 51234, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 51235, + 51235, + null + ], + [ + "hash-token", + "#b02a37", + 51236, + 51242, + { + "value": "b02a37", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51243, + 51243, + null + ], + [ + "delim-token", + "-", + 51244, + 51244, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51245, + 51245, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 51246, + 51271, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 51272, + 51272, + null + ], + [ + "hash-token", + "#a52834", + 51273, + 51279, + { + "value": "a52834", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51280, + 51280, + null + ], + [ + "delim-token", + "-", + 51281, + 51281, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51282, + 51282, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 51283, + 51302, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 51303, + 51303, + null + ], + [ + "ident-token", + "inset", + 51304, + 51308, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 51309, + 51309, + null + ], + [ + "number-token", + "0", + 51310, + 51310, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 51311, + 51311, + null + ], + [ + "dimension-token", + "3px", + 51312, + 51314, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 51315, + 51315, + null + ], + [ + "dimension-token", + "5px", + 51316, + 51318, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 51319, + 51319, + null + ], + [ + "function-token", + "rgba(", + 51320, + 51324, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 51325, + 51325, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51326, + 51326, + null + ], + [ + "whitespace-token", + " ", + 51327, + 51327, + null + ], + [ + "number-token", + "0", + 51328, + 51328, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51329, + 51329, + null + ], + [ + "whitespace-token", + " ", + 51330, + 51330, + null + ], + [ + "number-token", + "0", + 51331, + 51331, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51332, + 51332, + null + ], + [ + "whitespace-token", + " ", + 51333, + 51333, + null + ], + [ + "number-token", + "0.125", + 51334, + 51338, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 51339, + 51339, + null + ], + [ + "semicolon-token", + ";", + 51340, + 51340, + null + ], + [ + "delim-token", + "-", + 51341, + 51341, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51342, + 51342, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 51343, + 51363, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 51364, + 51364, + null + ], + [ + "hash-token", + "#fff", + 51365, + 51368, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51369, + 51369, + null + ], + [ + "delim-token", + "-", + 51370, + 51370, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51371, + 51371, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 51372, + 51389, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 51390, + 51390, + null + ], + [ + "hash-token", + "#dc3545", + 51391, + 51397, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51398, + 51398, + null + ], + [ + "delim-token", + "-", + 51399, + 51399, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51400, + 51400, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 51401, + 51428, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 51429, + 51429, + null + ], + [ + "hash-token", + "#dc3545", + 51430, + 51436, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "}-token", + "}", + 51437, + 51437, + null + ], + [ + "delim-token", + ".", + 51438, + 51438, + { + "value": "." + } + ], + [ + "ident-token", + "btn-light", + 51439, + 51447, + { + "value": "btn-light" + } + ], + [ + "{-token", + "{", + 51448, + 51448, + null + ], + [ + "delim-token", + "-", + 51449, + 51449, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51450, + 51450, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 51451, + 51462, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 51463, + 51463, + null + ], + [ + "hash-token", + "#000", + 51464, + 51467, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51468, + 51468, + null + ], + [ + "delim-token", + "-", + 51469, + 51469, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51470, + 51470, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 51471, + 51479, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 51480, + 51480, + null + ], + [ + "hash-token", + "#f8f9fa", + 51481, + 51487, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51488, + 51488, + null + ], + [ + "delim-token", + "-", + 51489, + 51489, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51490, + 51490, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 51491, + 51509, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 51510, + 51510, + null + ], + [ + "hash-token", + "#f8f9fa", + 51511, + 51517, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51518, + 51518, + null + ], + [ + "delim-token", + "-", + 51519, + 51519, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51520, + 51520, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 51521, + 51538, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 51539, + 51539, + null + ], + [ + "hash-token", + "#000", + 51540, + 51543, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51544, + 51544, + null + ], + [ + "delim-token", + "-", + 51545, + 51545, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51546, + 51546, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 51547, + 51561, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 51562, + 51562, + null + ], + [ + "hash-token", + "#d3d4d5", + 51563, + 51569, + { + "value": "d3d4d5", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51570, + 51570, + null + ], + [ + "delim-token", + "-", + 51571, + 51571, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51572, + 51572, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 51573, + 51597, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 51598, + 51598, + null + ], + [ + "hash-token", + "#c6c7c8", + 51599, + 51605, + { + "value": "c6c7c8", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51606, + 51606, + null + ], + [ + "delim-token", + "-", + 51607, + 51607, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51608, + 51608, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 51609, + 51631, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 51632, + 51632, + null + ], + [ + "number-token", + "211", + 51633, + 51635, + { + "value": 211, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51636, + 51636, + null + ], + [ + "number-token", + "212", + 51637, + 51639, + { + "value": 212, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51640, + 51640, + null + ], + [ + "number-token", + "213", + 51641, + 51643, + { + "value": 213, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 51644, + 51644, + null + ], + [ + "delim-token", + "-", + 51645, + 51645, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51646, + 51646, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 51647, + 51665, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 51666, + 51666, + null + ], + [ + "hash-token", + "#000", + 51667, + 51670, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51671, + 51671, + null + ], + [ + "delim-token", + "-", + 51672, + 51672, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51673, + 51673, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 51674, + 51689, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 51690, + 51690, + null + ], + [ + "hash-token", + "#c6c7c8", + 51691, + 51697, + { + "value": "c6c7c8", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51698, + 51698, + null + ], + [ + "delim-token", + "-", + 51699, + 51699, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51700, + 51700, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 51701, + 51726, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 51727, + 51727, + null + ], + [ + "hash-token", + "#babbbc", + 51728, + 51734, + { + "value": "babbbc", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51735, + 51735, + null + ], + [ + "delim-token", + "-", + 51736, + 51736, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51737, + 51737, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 51738, + 51757, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 51758, + 51758, + null + ], + [ + "ident-token", + "inset", + 51759, + 51763, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 51764, + 51764, + null + ], + [ + "number-token", + "0", + 51765, + 51765, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 51766, + 51766, + null + ], + [ + "dimension-token", + "3px", + 51767, + 51769, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 51770, + 51770, + null + ], + [ + "dimension-token", + "5px", + 51771, + 51773, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 51774, + 51774, + null + ], + [ + "function-token", + "rgba(", + 51775, + 51779, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 51780, + 51780, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51781, + 51781, + null + ], + [ + "whitespace-token", + " ", + 51782, + 51782, + null + ], + [ + "number-token", + "0", + 51783, + 51783, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51784, + 51784, + null + ], + [ + "whitespace-token", + " ", + 51785, + 51785, + null + ], + [ + "number-token", + "0", + 51786, + 51786, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 51787, + 51787, + null + ], + [ + "whitespace-token", + " ", + 51788, + 51788, + null + ], + [ + "number-token", + "0.125", + 51789, + 51793, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 51794, + 51794, + null + ], + [ + "semicolon-token", + ";", + 51795, + 51795, + null + ], + [ + "delim-token", + "-", + 51796, + 51796, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51797, + 51797, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 51798, + 51818, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 51819, + 51819, + null + ], + [ + "hash-token", + "#000", + 51820, + 51823, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51824, + 51824, + null + ], + [ + "delim-token", + "-", + 51825, + 51825, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51826, + 51826, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 51827, + 51844, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 51845, + 51845, + null + ], + [ + "hash-token", + "#f8f9fa", + 51846, + 51852, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51853, + 51853, + null + ], + [ + "delim-token", + "-", + 51854, + 51854, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51855, + 51855, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 51856, + 51883, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 51884, + 51884, + null + ], + [ + "hash-token", + "#f8f9fa", + 51885, + 51891, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "}-token", + "}", + 51892, + 51892, + null + ], + [ + "delim-token", + ".", + 51893, + 51893, + { + "value": "." + } + ], + [ + "ident-token", + "btn-dark", + 51894, + 51901, + { + "value": "btn-dark" + } + ], + [ + "{-token", + "{", + 51902, + 51902, + null + ], + [ + "delim-token", + "-", + 51903, + 51903, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51904, + 51904, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 51905, + 51916, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 51917, + 51917, + null + ], + [ + "hash-token", + "#fff", + 51918, + 51921, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51922, + 51922, + null + ], + [ + "delim-token", + "-", + 51923, + 51923, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51924, + 51924, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 51925, + 51933, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 51934, + 51934, + null + ], + [ + "hash-token", + "#212529", + 51935, + 51941, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51942, + 51942, + null + ], + [ + "delim-token", + "-", + 51943, + 51943, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51944, + 51944, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 51945, + 51963, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 51964, + 51964, + null + ], + [ + "hash-token", + "#212529", + 51965, + 51971, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 51972, + 51972, + null + ], + [ + "delim-token", + "-", + 51973, + 51973, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 51974, + 51974, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 51975, + 51992, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 51993, + 51993, + null + ], + [ + "hash-token", + "#fff", + 51994, + 51997, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 51998, + 51998, + null + ], + [ + "delim-token", + "-", + 51999, + 51999, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52000, + 52000, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 52001, + 52015, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 52016, + 52016, + null + ], + [ + "hash-token", + "#424649", + 52017, + 52023, + { + "value": "424649", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52024, + 52024, + null + ], + [ + "delim-token", + "-", + 52025, + 52025, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52026, + 52026, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 52027, + 52051, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 52052, + 52052, + null + ], + [ + "hash-token", + "#373b3e", + 52053, + 52059, + { + "value": "373b3e", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52060, + 52060, + null + ], + [ + "delim-token", + "-", + 52061, + 52061, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52062, + 52062, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 52063, + 52085, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 52086, + 52086, + null + ], + [ + "number-token", + "66", + 52087, + 52088, + { + "value": 66, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52089, + 52089, + null + ], + [ + "number-token", + "70", + 52090, + 52091, + { + "value": 70, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52092, + 52092, + null + ], + [ + "number-token", + "73", + 52093, + 52094, + { + "value": 73, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 52095, + 52095, + null + ], + [ + "delim-token", + "-", + 52096, + 52096, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52097, + 52097, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 52098, + 52116, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 52117, + 52117, + null + ], + [ + "hash-token", + "#fff", + 52118, + 52121, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 52122, + 52122, + null + ], + [ + "delim-token", + "-", + 52123, + 52123, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52124, + 52124, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 52125, + 52140, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 52141, + 52141, + null + ], + [ + "hash-token", + "#4d5154", + 52142, + 52148, + { + "value": "4d5154", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52149, + 52149, + null + ], + [ + "delim-token", + "-", + 52150, + 52150, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52151, + 52151, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 52152, + 52177, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 52178, + 52178, + null + ], + [ + "hash-token", + "#373b3e", + 52179, + 52185, + { + "value": "373b3e", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52186, + 52186, + null + ], + [ + "delim-token", + "-", + 52187, + 52187, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52188, + 52188, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 52189, + 52208, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 52209, + 52209, + null + ], + [ + "ident-token", + "inset", + 52210, + 52214, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 52215, + 52215, + null + ], + [ + "number-token", + "0", + 52216, + 52216, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 52217, + 52217, + null + ], + [ + "dimension-token", + "3px", + 52218, + 52220, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 52221, + 52221, + null + ], + [ + "dimension-token", + "5px", + 52222, + 52224, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 52225, + 52225, + null + ], + [ + "function-token", + "rgba(", + 52226, + 52230, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 52231, + 52231, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52232, + 52232, + null + ], + [ + "whitespace-token", + " ", + 52233, + 52233, + null + ], + [ + "number-token", + "0", + 52234, + 52234, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52235, + 52235, + null + ], + [ + "whitespace-token", + " ", + 52236, + 52236, + null + ], + [ + "number-token", + "0", + 52237, + 52237, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52238, + 52238, + null + ], + [ + "whitespace-token", + " ", + 52239, + 52239, + null + ], + [ + "number-token", + "0.125", + 52240, + 52244, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 52245, + 52245, + null + ], + [ + "semicolon-token", + ";", + 52246, + 52246, + null + ], + [ + "delim-token", + "-", + 52247, + 52247, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52248, + 52248, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 52249, + 52269, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 52270, + 52270, + null + ], + [ + "hash-token", + "#fff", + 52271, + 52274, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 52275, + 52275, + null + ], + [ + "delim-token", + "-", + 52276, + 52276, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52277, + 52277, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 52278, + 52295, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 52296, + 52296, + null + ], + [ + "hash-token", + "#212529", + 52297, + 52303, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52304, + 52304, + null + ], + [ + "delim-token", + "-", + 52305, + 52305, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52306, + 52306, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 52307, + 52334, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 52335, + 52335, + null + ], + [ + "hash-token", + "#212529", + 52336, + 52342, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 52343, + 52343, + null + ], + [ + "delim-token", + ".", + 52344, + 52344, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-primary", + 52345, + 52363, + { + "value": "btn-outline-primary" + } + ], + [ + "{-token", + "{", + 52364, + 52364, + null + ], + [ + "delim-token", + "-", + 52365, + 52365, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52366, + 52366, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 52367, + 52378, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 52379, + 52379, + null + ], + [ + "hash-token", + "#0d6efd", + 52380, + 52386, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52387, + 52387, + null + ], + [ + "delim-token", + "-", + 52388, + 52388, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52389, + 52389, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 52390, + 52408, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 52409, + 52409, + null + ], + [ + "hash-token", + "#0d6efd", + 52410, + 52416, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52417, + 52417, + null + ], + [ + "delim-token", + "-", + 52418, + 52418, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52419, + 52419, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 52420, + 52437, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 52438, + 52438, + null + ], + [ + "hash-token", + "#fff", + 52439, + 52442, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 52443, + 52443, + null + ], + [ + "delim-token", + "-", + 52444, + 52444, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52445, + 52445, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 52446, + 52460, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 52461, + 52461, + null + ], + [ + "hash-token", + "#0d6efd", + 52462, + 52468, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52469, + 52469, + null + ], + [ + "delim-token", + "-", + 52470, + 52470, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52471, + 52471, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 52472, + 52496, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 52497, + 52497, + null + ], + [ + "hash-token", + "#0d6efd", + 52498, + 52504, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52505, + 52505, + null + ], + [ + "delim-token", + "-", + 52506, + 52506, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52507, + 52507, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 52508, + 52530, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 52531, + 52531, + null + ], + [ + "number-token", + "13", + 52532, + 52533, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52534, + 52534, + null + ], + [ + "number-token", + "110", + 52535, + 52537, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52538, + 52538, + null + ], + [ + "number-token", + "253", + 52539, + 52541, + { + "value": 253, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 52542, + 52542, + null + ], + [ + "delim-token", + "-", + 52543, + 52543, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52544, + 52544, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 52545, + 52563, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 52564, + 52564, + null + ], + [ + "hash-token", + "#fff", + 52565, + 52568, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 52569, + 52569, + null + ], + [ + "delim-token", + "-", + 52570, + 52570, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52571, + 52571, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 52572, + 52587, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 52588, + 52588, + null + ], + [ + "hash-token", + "#0d6efd", + 52589, + 52595, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52596, + 52596, + null + ], + [ + "delim-token", + "-", + 52597, + 52597, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52598, + 52598, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 52599, + 52624, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 52625, + 52625, + null + ], + [ + "hash-token", + "#0d6efd", + 52626, + 52632, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52633, + 52633, + null + ], + [ + "delim-token", + "-", + 52634, + 52634, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52635, + 52635, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 52636, + 52655, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 52656, + 52656, + null + ], + [ + "ident-token", + "inset", + 52657, + 52661, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 52662, + 52662, + null + ], + [ + "number-token", + "0", + 52663, + 52663, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 52664, + 52664, + null + ], + [ + "dimension-token", + "3px", + 52665, + 52667, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 52668, + 52668, + null + ], + [ + "dimension-token", + "5px", + 52669, + 52671, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 52672, + 52672, + null + ], + [ + "function-token", + "rgba(", + 52673, + 52677, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 52678, + 52678, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52679, + 52679, + null + ], + [ + "whitespace-token", + " ", + 52680, + 52680, + null + ], + [ + "number-token", + "0", + 52681, + 52681, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52682, + 52682, + null + ], + [ + "whitespace-token", + " ", + 52683, + 52683, + null + ], + [ + "number-token", + "0", + 52684, + 52684, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 52685, + 52685, + null + ], + [ + "whitespace-token", + " ", + 52686, + 52686, + null + ], + [ + "number-token", + "0.125", + 52687, + 52691, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 52692, + 52692, + null + ], + [ + "semicolon-token", + ";", + 52693, + 52693, + null + ], + [ + "delim-token", + "-", + 52694, + 52694, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52695, + 52695, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 52696, + 52716, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 52717, + 52717, + null + ], + [ + "hash-token", + "#0d6efd", + 52718, + 52724, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52725, + 52725, + null + ], + [ + "delim-token", + "-", + 52726, + 52726, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52727, + 52727, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 52728, + 52745, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 52746, + 52746, + null + ], + [ + "ident-token", + "transparent", + 52747, + 52757, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 52758, + 52758, + null + ], + [ + "delim-token", + "-", + 52759, + 52759, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52760, + 52760, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 52761, + 52788, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 52789, + 52789, + null + ], + [ + "hash-token", + "#0d6efd", + 52790, + 52796, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52797, + 52797, + null + ], + [ + "delim-token", + "-", + 52798, + 52798, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52799, + 52799, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 52800, + 52810, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 52811, + 52811, + null + ], + [ + "ident-token", + "none", + 52812, + 52815, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 52816, + 52816, + null + ], + [ + "delim-token", + ".", + 52817, + 52817, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-secondary", + 52818, + 52838, + { + "value": "btn-outline-secondary" + } + ], + [ + "{-token", + "{", + 52839, + 52839, + null + ], + [ + "delim-token", + "-", + 52840, + 52840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52841, + 52841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 52842, + 52853, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 52854, + 52854, + null + ], + [ + "hash-token", + "#6c757d", + 52855, + 52861, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52862, + 52862, + null + ], + [ + "delim-token", + "-", + 52863, + 52863, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52864, + 52864, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 52865, + 52883, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 52884, + 52884, + null + ], + [ + "hash-token", + "#6c757d", + 52885, + 52891, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52892, + 52892, + null + ], + [ + "delim-token", + "-", + 52893, + 52893, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52894, + 52894, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 52895, + 52912, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 52913, + 52913, + null + ], + [ + "hash-token", + "#fff", + 52914, + 52917, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 52918, + 52918, + null + ], + [ + "delim-token", + "-", + 52919, + 52919, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52920, + 52920, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 52921, + 52935, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 52936, + 52936, + null + ], + [ + "hash-token", + "#6c757d", + 52937, + 52943, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52944, + 52944, + null + ], + [ + "delim-token", + "-", + 52945, + 52945, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52946, + 52946, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 52947, + 52971, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 52972, + 52972, + null + ], + [ + "hash-token", + "#6c757d", + 52973, + 52979, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 52980, + 52980, + null + ], + [ + "delim-token", + "-", + 52981, + 52981, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 52982, + 52982, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 52983, + 53005, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 53006, + 53006, + null + ], + [ + "number-token", + "108", + 53007, + 53009, + { + "value": 108, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53010, + 53010, + null + ], + [ + "number-token", + "117", + 53011, + 53013, + { + "value": 117, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53014, + 53014, + null + ], + [ + "number-token", + "125", + 53015, + 53017, + { + "value": 125, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 53018, + 53018, + null + ], + [ + "delim-token", + "-", + 53019, + 53019, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53020, + 53020, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 53021, + 53039, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 53040, + 53040, + null + ], + [ + "hash-token", + "#fff", + 53041, + 53044, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 53045, + 53045, + null + ], + [ + "delim-token", + "-", + 53046, + 53046, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53047, + 53047, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 53048, + 53063, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 53064, + 53064, + null + ], + [ + "hash-token", + "#6c757d", + 53065, + 53071, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53072, + 53072, + null + ], + [ + "delim-token", + "-", + 53073, + 53073, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53074, + 53074, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 53075, + 53100, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 53101, + 53101, + null + ], + [ + "hash-token", + "#6c757d", + 53102, + 53108, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53109, + 53109, + null + ], + [ + "delim-token", + "-", + 53110, + 53110, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53111, + 53111, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 53112, + 53131, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 53132, + 53132, + null + ], + [ + "ident-token", + "inset", + 53133, + 53137, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 53138, + 53138, + null + ], + [ + "number-token", + "0", + 53139, + 53139, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 53140, + 53140, + null + ], + [ + "dimension-token", + "3px", + 53141, + 53143, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 53144, + 53144, + null + ], + [ + "dimension-token", + "5px", + 53145, + 53147, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 53148, + 53148, + null + ], + [ + "function-token", + "rgba(", + 53149, + 53153, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 53154, + 53154, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53155, + 53155, + null + ], + [ + "whitespace-token", + " ", + 53156, + 53156, + null + ], + [ + "number-token", + "0", + 53157, + 53157, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53158, + 53158, + null + ], + [ + "whitespace-token", + " ", + 53159, + 53159, + null + ], + [ + "number-token", + "0", + 53160, + 53160, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53161, + 53161, + null + ], + [ + "whitespace-token", + " ", + 53162, + 53162, + null + ], + [ + "number-token", + "0.125", + 53163, + 53167, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 53168, + 53168, + null + ], + [ + "semicolon-token", + ";", + 53169, + 53169, + null + ], + [ + "delim-token", + "-", + 53170, + 53170, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53171, + 53171, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 53172, + 53192, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 53193, + 53193, + null + ], + [ + "hash-token", + "#6c757d", + 53194, + 53200, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53201, + 53201, + null + ], + [ + "delim-token", + "-", + 53202, + 53202, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53203, + 53203, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 53204, + 53221, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 53222, + 53222, + null + ], + [ + "ident-token", + "transparent", + 53223, + 53233, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 53234, + 53234, + null + ], + [ + "delim-token", + "-", + 53235, + 53235, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53236, + 53236, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 53237, + 53264, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 53265, + 53265, + null + ], + [ + "hash-token", + "#6c757d", + 53266, + 53272, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53273, + 53273, + null + ], + [ + "delim-token", + "-", + 53274, + 53274, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53275, + 53275, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 53276, + 53286, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 53287, + 53287, + null + ], + [ + "ident-token", + "none", + 53288, + 53291, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 53292, + 53292, + null + ], + [ + "delim-token", + ".", + 53293, + 53293, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-success", + 53294, + 53312, + { + "value": "btn-outline-success" + } + ], + [ + "{-token", + "{", + 53313, + 53313, + null + ], + [ + "delim-token", + "-", + 53314, + 53314, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53315, + 53315, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 53316, + 53327, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 53328, + 53328, + null + ], + [ + "hash-token", + "#198754", + 53329, + 53335, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53336, + 53336, + null + ], + [ + "delim-token", + "-", + 53337, + 53337, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53338, + 53338, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 53339, + 53357, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 53358, + 53358, + null + ], + [ + "hash-token", + "#198754", + 53359, + 53365, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53366, + 53366, + null + ], + [ + "delim-token", + "-", + 53367, + 53367, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53368, + 53368, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 53369, + 53386, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 53387, + 53387, + null + ], + [ + "hash-token", + "#fff", + 53388, + 53391, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 53392, + 53392, + null + ], + [ + "delim-token", + "-", + 53393, + 53393, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53394, + 53394, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 53395, + 53409, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 53410, + 53410, + null + ], + [ + "hash-token", + "#198754", + 53411, + 53417, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53418, + 53418, + null + ], + [ + "delim-token", + "-", + 53419, + 53419, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53420, + 53420, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 53421, + 53445, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 53446, + 53446, + null + ], + [ + "hash-token", + "#198754", + 53447, + 53453, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53454, + 53454, + null + ], + [ + "delim-token", + "-", + 53455, + 53455, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53456, + 53456, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 53457, + 53479, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 53480, + 53480, + null + ], + [ + "number-token", + "25", + 53481, + 53482, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53483, + 53483, + null + ], + [ + "number-token", + "135", + 53484, + 53486, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53487, + 53487, + null + ], + [ + "number-token", + "84", + 53488, + 53489, + { + "value": 84, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 53490, + 53490, + null + ], + [ + "delim-token", + "-", + 53491, + 53491, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53492, + 53492, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 53493, + 53511, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 53512, + 53512, + null + ], + [ + "hash-token", + "#fff", + 53513, + 53516, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 53517, + 53517, + null + ], + [ + "delim-token", + "-", + 53518, + 53518, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53519, + 53519, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 53520, + 53535, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 53536, + 53536, + null + ], + [ + "hash-token", + "#198754", + 53537, + 53543, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53544, + 53544, + null + ], + [ + "delim-token", + "-", + 53545, + 53545, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53546, + 53546, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 53547, + 53572, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 53573, + 53573, + null + ], + [ + "hash-token", + "#198754", + 53574, + 53580, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53581, + 53581, + null + ], + [ + "delim-token", + "-", + 53582, + 53582, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53583, + 53583, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 53584, + 53603, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 53604, + 53604, + null + ], + [ + "ident-token", + "inset", + 53605, + 53609, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 53610, + 53610, + null + ], + [ + "number-token", + "0", + 53611, + 53611, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 53612, + 53612, + null + ], + [ + "dimension-token", + "3px", + 53613, + 53615, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 53616, + 53616, + null + ], + [ + "dimension-token", + "5px", + 53617, + 53619, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 53620, + 53620, + null + ], + [ + "function-token", + "rgba(", + 53621, + 53625, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 53626, + 53626, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53627, + 53627, + null + ], + [ + "whitespace-token", + " ", + 53628, + 53628, + null + ], + [ + "number-token", + "0", + 53629, + 53629, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53630, + 53630, + null + ], + [ + "whitespace-token", + " ", + 53631, + 53631, + null + ], + [ + "number-token", + "0", + 53632, + 53632, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53633, + 53633, + null + ], + [ + "whitespace-token", + " ", + 53634, + 53634, + null + ], + [ + "number-token", + "0.125", + 53635, + 53639, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 53640, + 53640, + null + ], + [ + "semicolon-token", + ";", + 53641, + 53641, + null + ], + [ + "delim-token", + "-", + 53642, + 53642, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53643, + 53643, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 53644, + 53664, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 53665, + 53665, + null + ], + [ + "hash-token", + "#198754", + 53666, + 53672, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53673, + 53673, + null + ], + [ + "delim-token", + "-", + 53674, + 53674, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53675, + 53675, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 53676, + 53693, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 53694, + 53694, + null + ], + [ + "ident-token", + "transparent", + 53695, + 53705, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 53706, + 53706, + null + ], + [ + "delim-token", + "-", + 53707, + 53707, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53708, + 53708, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 53709, + 53736, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 53737, + 53737, + null + ], + [ + "hash-token", + "#198754", + 53738, + 53744, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53745, + 53745, + null + ], + [ + "delim-token", + "-", + 53746, + 53746, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53747, + 53747, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 53748, + 53758, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 53759, + 53759, + null + ], + [ + "ident-token", + "none", + 53760, + 53763, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 53764, + 53764, + null + ], + [ + "delim-token", + ".", + 53765, + 53765, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-info", + 53766, + 53781, + { + "value": "btn-outline-info" + } + ], + [ + "{-token", + "{", + 53782, + 53782, + null + ], + [ + "delim-token", + "-", + 53783, + 53783, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53784, + 53784, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 53785, + 53796, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 53797, + 53797, + null + ], + [ + "hash-token", + "#0dcaf0", + 53798, + 53804, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53805, + 53805, + null + ], + [ + "delim-token", + "-", + 53806, + 53806, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53807, + 53807, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 53808, + 53826, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 53827, + 53827, + null + ], + [ + "hash-token", + "#0dcaf0", + 53828, + 53834, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53835, + 53835, + null + ], + [ + "delim-token", + "-", + 53836, + 53836, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53837, + 53837, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 53838, + 53855, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 53856, + 53856, + null + ], + [ + "hash-token", + "#000", + 53857, + 53860, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53861, + 53861, + null + ], + [ + "delim-token", + "-", + 53862, + 53862, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53863, + 53863, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 53864, + 53878, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 53879, + 53879, + null + ], + [ + "hash-token", + "#0dcaf0", + 53880, + 53886, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53887, + 53887, + null + ], + [ + "delim-token", + "-", + 53888, + 53888, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53889, + 53889, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 53890, + 53914, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 53915, + 53915, + null + ], + [ + "hash-token", + "#0dcaf0", + 53916, + 53922, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53923, + 53923, + null + ], + [ + "delim-token", + "-", + 53924, + 53924, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53925, + 53925, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 53926, + 53948, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 53949, + 53949, + null + ], + [ + "number-token", + "13", + 53950, + 53951, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53952, + 53952, + null + ], + [ + "number-token", + "202", + 53953, + 53955, + { + "value": 202, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 53956, + 53956, + null + ], + [ + "number-token", + "240", + 53957, + 53959, + { + "value": 240, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 53960, + 53960, + null + ], + [ + "delim-token", + "-", + 53961, + 53961, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53962, + 53962, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 53963, + 53981, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 53982, + 53982, + null + ], + [ + "hash-token", + "#000", + 53983, + 53986, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 53987, + 53987, + null + ], + [ + "delim-token", + "-", + 53988, + 53988, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 53989, + 53989, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 53990, + 54005, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 54006, + 54006, + null + ], + [ + "hash-token", + "#0dcaf0", + 54007, + 54013, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54014, + 54014, + null + ], + [ + "delim-token", + "-", + 54015, + 54015, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54016, + 54016, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 54017, + 54042, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 54043, + 54043, + null + ], + [ + "hash-token", + "#0dcaf0", + 54044, + 54050, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54051, + 54051, + null + ], + [ + "delim-token", + "-", + 54052, + 54052, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54053, + 54053, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 54054, + 54073, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 54074, + 54074, + null + ], + [ + "ident-token", + "inset", + 54075, + 54079, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 54080, + 54080, + null + ], + [ + "number-token", + "0", + 54081, + 54081, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 54082, + 54082, + null + ], + [ + "dimension-token", + "3px", + 54083, + 54085, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 54086, + 54086, + null + ], + [ + "dimension-token", + "5px", + 54087, + 54089, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 54090, + 54090, + null + ], + [ + "function-token", + "rgba(", + 54091, + 54095, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 54096, + 54096, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54097, + 54097, + null + ], + [ + "whitespace-token", + " ", + 54098, + 54098, + null + ], + [ + "number-token", + "0", + 54099, + 54099, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54100, + 54100, + null + ], + [ + "whitespace-token", + " ", + 54101, + 54101, + null + ], + [ + "number-token", + "0", + 54102, + 54102, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54103, + 54103, + null + ], + [ + "whitespace-token", + " ", + 54104, + 54104, + null + ], + [ + "number-token", + "0.125", + 54105, + 54109, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 54110, + 54110, + null + ], + [ + "semicolon-token", + ";", + 54111, + 54111, + null + ], + [ + "delim-token", + "-", + 54112, + 54112, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54113, + 54113, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 54114, + 54134, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 54135, + 54135, + null + ], + [ + "hash-token", + "#0dcaf0", + 54136, + 54142, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54143, + 54143, + null + ], + [ + "delim-token", + "-", + 54144, + 54144, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54145, + 54145, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 54146, + 54163, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 54164, + 54164, + null + ], + [ + "ident-token", + "transparent", + 54165, + 54175, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 54176, + 54176, + null + ], + [ + "delim-token", + "-", + 54177, + 54177, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54178, + 54178, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 54179, + 54206, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 54207, + 54207, + null + ], + [ + "hash-token", + "#0dcaf0", + 54208, + 54214, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54215, + 54215, + null + ], + [ + "delim-token", + "-", + 54216, + 54216, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54217, + 54217, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 54218, + 54228, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 54229, + 54229, + null + ], + [ + "ident-token", + "none", + 54230, + 54233, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 54234, + 54234, + null + ], + [ + "delim-token", + ".", + 54235, + 54235, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-warning", + 54236, + 54254, + { + "value": "btn-outline-warning" + } + ], + [ + "{-token", + "{", + 54255, + 54255, + null + ], + [ + "delim-token", + "-", + 54256, + 54256, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54257, + 54257, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 54258, + 54269, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 54270, + 54270, + null + ], + [ + "hash-token", + "#ffc107", + 54271, + 54277, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54278, + 54278, + null + ], + [ + "delim-token", + "-", + 54279, + 54279, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54280, + 54280, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 54281, + 54299, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 54300, + 54300, + null + ], + [ + "hash-token", + "#ffc107", + 54301, + 54307, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54308, + 54308, + null + ], + [ + "delim-token", + "-", + 54309, + 54309, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54310, + 54310, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 54311, + 54328, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 54329, + 54329, + null + ], + [ + "hash-token", + "#000", + 54330, + 54333, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54334, + 54334, + null + ], + [ + "delim-token", + "-", + 54335, + 54335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54336, + 54336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 54337, + 54351, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 54352, + 54352, + null + ], + [ + "hash-token", + "#ffc107", + 54353, + 54359, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54360, + 54360, + null + ], + [ + "delim-token", + "-", + 54361, + 54361, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54362, + 54362, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 54363, + 54387, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 54388, + 54388, + null + ], + [ + "hash-token", + "#ffc107", + 54389, + 54395, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54396, + 54396, + null + ], + [ + "delim-token", + "-", + 54397, + 54397, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54398, + 54398, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 54399, + 54421, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 54422, + 54422, + null + ], + [ + "number-token", + "255", + 54423, + 54425, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54426, + 54426, + null + ], + [ + "number-token", + "193", + 54427, + 54429, + { + "value": 193, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54430, + 54430, + null + ], + [ + "number-token", + "7", + 54431, + 54431, + { + "value": 7, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 54432, + 54432, + null + ], + [ + "delim-token", + "-", + 54433, + 54433, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54434, + 54434, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 54435, + 54453, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 54454, + 54454, + null + ], + [ + "hash-token", + "#000", + 54455, + 54458, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 54459, + 54459, + null + ], + [ + "delim-token", + "-", + 54460, + 54460, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54461, + 54461, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 54462, + 54477, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 54478, + 54478, + null + ], + [ + "hash-token", + "#ffc107", + 54479, + 54485, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54486, + 54486, + null + ], + [ + "delim-token", + "-", + 54487, + 54487, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54488, + 54488, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 54489, + 54514, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 54515, + 54515, + null + ], + [ + "hash-token", + "#ffc107", + 54516, + 54522, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54523, + 54523, + null + ], + [ + "delim-token", + "-", + 54524, + 54524, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54525, + 54525, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 54526, + 54545, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 54546, + 54546, + null + ], + [ + "ident-token", + "inset", + 54547, + 54551, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 54552, + 54552, + null + ], + [ + "number-token", + "0", + 54553, + 54553, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 54554, + 54554, + null + ], + [ + "dimension-token", + "3px", + 54555, + 54557, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 54558, + 54558, + null + ], + [ + "dimension-token", + "5px", + 54559, + 54561, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 54562, + 54562, + null + ], + [ + "function-token", + "rgba(", + 54563, + 54567, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 54568, + 54568, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54569, + 54569, + null + ], + [ + "whitespace-token", + " ", + 54570, + 54570, + null + ], + [ + "number-token", + "0", + 54571, + 54571, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54572, + 54572, + null + ], + [ + "whitespace-token", + " ", + 54573, + 54573, + null + ], + [ + "number-token", + "0", + 54574, + 54574, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54575, + 54575, + null + ], + [ + "whitespace-token", + " ", + 54576, + 54576, + null + ], + [ + "number-token", + "0.125", + 54577, + 54581, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 54582, + 54582, + null + ], + [ + "semicolon-token", + ";", + 54583, + 54583, + null + ], + [ + "delim-token", + "-", + 54584, + 54584, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54585, + 54585, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 54586, + 54606, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 54607, + 54607, + null + ], + [ + "hash-token", + "#ffc107", + 54608, + 54614, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54615, + 54615, + null + ], + [ + "delim-token", + "-", + 54616, + 54616, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54617, + 54617, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 54618, + 54635, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 54636, + 54636, + null + ], + [ + "ident-token", + "transparent", + 54637, + 54647, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 54648, + 54648, + null + ], + [ + "delim-token", + "-", + 54649, + 54649, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54650, + 54650, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 54651, + 54678, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 54679, + 54679, + null + ], + [ + "hash-token", + "#ffc107", + 54680, + 54686, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54687, + 54687, + null + ], + [ + "delim-token", + "-", + 54688, + 54688, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54689, + 54689, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 54690, + 54700, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 54701, + 54701, + null + ], + [ + "ident-token", + "none", + 54702, + 54705, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 54706, + 54706, + null + ], + [ + "delim-token", + ".", + 54707, + 54707, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-danger", + 54708, + 54725, + { + "value": "btn-outline-danger" + } + ], + [ + "{-token", + "{", + 54726, + 54726, + null + ], + [ + "delim-token", + "-", + 54727, + 54727, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54728, + 54728, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 54729, + 54740, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 54741, + 54741, + null + ], + [ + "hash-token", + "#dc3545", + 54742, + 54748, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54749, + 54749, + null + ], + [ + "delim-token", + "-", + 54750, + 54750, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54751, + 54751, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 54752, + 54770, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 54771, + 54771, + null + ], + [ + "hash-token", + "#dc3545", + 54772, + 54778, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54779, + 54779, + null + ], + [ + "delim-token", + "-", + 54780, + 54780, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54781, + 54781, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 54782, + 54799, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 54800, + 54800, + null + ], + [ + "hash-token", + "#fff", + 54801, + 54804, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54805, + 54805, + null + ], + [ + "delim-token", + "-", + 54806, + 54806, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54807, + 54807, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 54808, + 54822, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 54823, + 54823, + null + ], + [ + "hash-token", + "#dc3545", + 54824, + 54830, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54831, + 54831, + null + ], + [ + "delim-token", + "-", + 54832, + 54832, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54833, + 54833, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 54834, + 54858, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 54859, + 54859, + null + ], + [ + "hash-token", + "#dc3545", + 54860, + 54866, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54867, + 54867, + null + ], + [ + "delim-token", + "-", + 54868, + 54868, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54869, + 54869, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 54870, + 54892, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 54893, + 54893, + null + ], + [ + "number-token", + "220", + 54894, + 54896, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54897, + 54897, + null + ], + [ + "number-token", + "53", + 54898, + 54899, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 54900, + 54900, + null + ], + [ + "number-token", + "69", + 54901, + 54902, + { + "value": 69, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 54903, + 54903, + null + ], + [ + "delim-token", + "-", + 54904, + 54904, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54905, + 54905, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 54906, + 54924, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 54925, + 54925, + null + ], + [ + "hash-token", + "#fff", + 54926, + 54929, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54930, + 54930, + null + ], + [ + "delim-token", + "-", + 54931, + 54931, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54932, + 54932, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 54933, + 54948, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 54949, + 54949, + null + ], + [ + "hash-token", + "#dc3545", + 54950, + 54956, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54957, + 54957, + null + ], + [ + "delim-token", + "-", + 54958, + 54958, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54959, + 54959, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 54960, + 54985, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 54986, + 54986, + null + ], + [ + "hash-token", + "#dc3545", + 54987, + 54993, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 54994, + 54994, + null + ], + [ + "delim-token", + "-", + 54995, + 54995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 54996, + 54996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 54997, + 55016, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 55017, + 55017, + null + ], + [ + "ident-token", + "inset", + 55018, + 55022, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 55023, + 55023, + null + ], + [ + "number-token", + "0", + 55024, + 55024, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 55025, + 55025, + null + ], + [ + "dimension-token", + "3px", + 55026, + 55028, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55029, + 55029, + null + ], + [ + "dimension-token", + "5px", + 55030, + 55032, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55033, + 55033, + null + ], + [ + "function-token", + "rgba(", + 55034, + 55038, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 55039, + 55039, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55040, + 55040, + null + ], + [ + "whitespace-token", + " ", + 55041, + 55041, + null + ], + [ + "number-token", + "0", + 55042, + 55042, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55043, + 55043, + null + ], + [ + "whitespace-token", + " ", + 55044, + 55044, + null + ], + [ + "number-token", + "0", + 55045, + 55045, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55046, + 55046, + null + ], + [ + "whitespace-token", + " ", + 55047, + 55047, + null + ], + [ + "number-token", + "0.125", + 55048, + 55052, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 55053, + 55053, + null + ], + [ + "semicolon-token", + ";", + 55054, + 55054, + null + ], + [ + "delim-token", + "-", + 55055, + 55055, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55056, + 55056, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 55057, + 55077, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 55078, + 55078, + null + ], + [ + "hash-token", + "#dc3545", + 55079, + 55085, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55086, + 55086, + null + ], + [ + "delim-token", + "-", + 55087, + 55087, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55088, + 55088, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 55089, + 55106, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 55107, + 55107, + null + ], + [ + "ident-token", + "transparent", + 55108, + 55118, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 55119, + 55119, + null + ], + [ + "delim-token", + "-", + 55120, + 55120, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55121, + 55121, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 55122, + 55149, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 55150, + 55150, + null + ], + [ + "hash-token", + "#dc3545", + 55151, + 55157, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55158, + 55158, + null + ], + [ + "delim-token", + "-", + 55159, + 55159, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55160, + 55160, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 55161, + 55171, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 55172, + 55172, + null + ], + [ + "ident-token", + "none", + 55173, + 55176, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 55177, + 55177, + null + ], + [ + "delim-token", + ".", + 55178, + 55178, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-light", + 55179, + 55195, + { + "value": "btn-outline-light" + } + ], + [ + "{-token", + "{", + 55196, + 55196, + null + ], + [ + "delim-token", + "-", + 55197, + 55197, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55198, + 55198, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 55199, + 55210, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 55211, + 55211, + null + ], + [ + "hash-token", + "#f8f9fa", + 55212, + 55218, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55219, + 55219, + null + ], + [ + "delim-token", + "-", + 55220, + 55220, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55221, + 55221, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 55222, + 55240, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 55241, + 55241, + null + ], + [ + "hash-token", + "#f8f9fa", + 55242, + 55248, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55249, + 55249, + null + ], + [ + "delim-token", + "-", + 55250, + 55250, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55251, + 55251, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 55252, + 55269, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 55270, + 55270, + null + ], + [ + "hash-token", + "#000", + 55271, + 55274, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55275, + 55275, + null + ], + [ + "delim-token", + "-", + 55276, + 55276, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55277, + 55277, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 55278, + 55292, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 55293, + 55293, + null + ], + [ + "hash-token", + "#f8f9fa", + 55294, + 55300, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55301, + 55301, + null + ], + [ + "delim-token", + "-", + 55302, + 55302, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55303, + 55303, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 55304, + 55328, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 55329, + 55329, + null + ], + [ + "hash-token", + "#f8f9fa", + 55330, + 55336, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55337, + 55337, + null + ], + [ + "delim-token", + "-", + 55338, + 55338, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55339, + 55339, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 55340, + 55362, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 55363, + 55363, + null + ], + [ + "number-token", + "248", + 55364, + 55366, + { + "value": 248, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55367, + 55367, + null + ], + [ + "number-token", + "249", + 55368, + 55370, + { + "value": 249, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55371, + 55371, + null + ], + [ + "number-token", + "250", + 55372, + 55374, + { + "value": 250, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 55375, + 55375, + null + ], + [ + "delim-token", + "-", + 55376, + 55376, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55377, + 55377, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 55378, + 55396, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 55397, + 55397, + null + ], + [ + "hash-token", + "#000", + 55398, + 55401, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55402, + 55402, + null + ], + [ + "delim-token", + "-", + 55403, + 55403, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55404, + 55404, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 55405, + 55420, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 55421, + 55421, + null + ], + [ + "hash-token", + "#f8f9fa", + 55422, + 55428, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55429, + 55429, + null + ], + [ + "delim-token", + "-", + 55430, + 55430, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55431, + 55431, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 55432, + 55457, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 55458, + 55458, + null + ], + [ + "hash-token", + "#f8f9fa", + 55459, + 55465, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55466, + 55466, + null + ], + [ + "delim-token", + "-", + 55467, + 55467, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55468, + 55468, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 55469, + 55488, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 55489, + 55489, + null + ], + [ + "ident-token", + "inset", + 55490, + 55494, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 55495, + 55495, + null + ], + [ + "number-token", + "0", + 55496, + 55496, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 55497, + 55497, + null + ], + [ + "dimension-token", + "3px", + 55498, + 55500, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55501, + 55501, + null + ], + [ + "dimension-token", + "5px", + 55502, + 55504, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55505, + 55505, + null + ], + [ + "function-token", + "rgba(", + 55506, + 55510, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 55511, + 55511, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55512, + 55512, + null + ], + [ + "whitespace-token", + " ", + 55513, + 55513, + null + ], + [ + "number-token", + "0", + 55514, + 55514, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55515, + 55515, + null + ], + [ + "whitespace-token", + " ", + 55516, + 55516, + null + ], + [ + "number-token", + "0", + 55517, + 55517, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55518, + 55518, + null + ], + [ + "whitespace-token", + " ", + 55519, + 55519, + null + ], + [ + "number-token", + "0.125", + 55520, + 55524, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 55525, + 55525, + null + ], + [ + "semicolon-token", + ";", + 55526, + 55526, + null + ], + [ + "delim-token", + "-", + 55527, + 55527, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55528, + 55528, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 55529, + 55549, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 55550, + 55550, + null + ], + [ + "hash-token", + "#f8f9fa", + 55551, + 55557, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55558, + 55558, + null + ], + [ + "delim-token", + "-", + 55559, + 55559, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55560, + 55560, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 55561, + 55578, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 55579, + 55579, + null + ], + [ + "ident-token", + "transparent", + 55580, + 55590, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 55591, + 55591, + null + ], + [ + "delim-token", + "-", + 55592, + 55592, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55593, + 55593, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 55594, + 55621, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 55622, + 55622, + null + ], + [ + "hash-token", + "#f8f9fa", + 55623, + 55629, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55630, + 55630, + null + ], + [ + "delim-token", + "-", + 55631, + 55631, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55632, + 55632, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 55633, + 55643, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 55644, + 55644, + null + ], + [ + "ident-token", + "none", + 55645, + 55648, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 55649, + 55649, + null + ], + [ + "delim-token", + ".", + 55650, + 55650, + { + "value": "." + } + ], + [ + "ident-token", + "btn-outline-dark", + 55651, + 55666, + { + "value": "btn-outline-dark" + } + ], + [ + "{-token", + "{", + 55667, + 55667, + null + ], + [ + "delim-token", + "-", + 55668, + 55668, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55669, + 55669, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 55670, + 55681, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 55682, + 55682, + null + ], + [ + "hash-token", + "#212529", + 55683, + 55689, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55690, + 55690, + null + ], + [ + "delim-token", + "-", + 55691, + 55691, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55692, + 55692, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 55693, + 55711, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 55712, + 55712, + null + ], + [ + "hash-token", + "#212529", + 55713, + 55719, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55720, + 55720, + null + ], + [ + "delim-token", + "-", + 55721, + 55721, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55722, + 55722, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 55723, + 55740, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 55741, + 55741, + null + ], + [ + "hash-token", + "#fff", + 55742, + 55745, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55746, + 55746, + null + ], + [ + "delim-token", + "-", + 55747, + 55747, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55748, + 55748, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-bg", + 55749, + 55763, + { + "value": "bs-btn-hover-bg" + } + ], + [ + "colon-token", + ":", + 55764, + 55764, + null + ], + [ + "hash-token", + "#212529", + 55765, + 55771, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55772, + 55772, + null + ], + [ + "delim-token", + "-", + 55773, + 55773, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55774, + 55774, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 55775, + 55799, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 55800, + 55800, + null + ], + [ + "hash-token", + "#212529", + 55801, + 55807, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55808, + 55808, + null + ], + [ + "delim-token", + "-", + 55809, + 55809, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55810, + 55810, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 55811, + 55833, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 55834, + 55834, + null + ], + [ + "number-token", + "33", + 55835, + 55836, + { + "value": 33, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55837, + 55837, + null + ], + [ + "number-token", + "37", + 55838, + 55839, + { + "value": 37, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55840, + 55840, + null + ], + [ + "number-token", + "41", + 55841, + 55842, + { + "value": 41, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 55843, + 55843, + null + ], + [ + "delim-token", + "-", + 55844, + 55844, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55845, + 55845, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 55846, + 55864, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 55865, + 55865, + null + ], + [ + "hash-token", + "#fff", + 55866, + 55869, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 55870, + 55870, + null + ], + [ + "delim-token", + "-", + 55871, + 55871, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55872, + 55872, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-bg", + 55873, + 55888, + { + "value": "bs-btn-active-bg" + } + ], + [ + "colon-token", + ":", + 55889, + 55889, + null + ], + [ + "hash-token", + "#212529", + 55890, + 55896, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55897, + 55897, + null + ], + [ + "delim-token", + "-", + 55898, + 55898, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55899, + 55899, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 55900, + 55925, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 55926, + 55926, + null + ], + [ + "hash-token", + "#212529", + 55927, + 55933, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 55934, + 55934, + null + ], + [ + "delim-token", + "-", + 55935, + 55935, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55936, + 55936, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-shadow", + 55937, + 55956, + { + "value": "bs-btn-active-shadow" + } + ], + [ + "colon-token", + ":", + 55957, + 55957, + null + ], + [ + "ident-token", + "inset", + 55958, + 55962, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 55963, + 55963, + null + ], + [ + "number-token", + "0", + 55964, + 55964, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 55965, + 55965, + null + ], + [ + "dimension-token", + "3px", + 55966, + 55968, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55969, + 55969, + null + ], + [ + "dimension-token", + "5px", + 55970, + 55972, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 55973, + 55973, + null + ], + [ + "function-token", + "rgba(", + 55974, + 55978, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 55979, + 55979, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55980, + 55980, + null + ], + [ + "whitespace-token", + " ", + 55981, + 55981, + null + ], + [ + "number-token", + "0", + 55982, + 55982, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55983, + 55983, + null + ], + [ + "whitespace-token", + " ", + 55984, + 55984, + null + ], + [ + "number-token", + "0", + 55985, + 55985, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 55986, + 55986, + null + ], + [ + "whitespace-token", + " ", + 55987, + 55987, + null + ], + [ + "number-token", + "0.125", + 55988, + 55992, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 55993, + 55993, + null + ], + [ + "semicolon-token", + ";", + 55994, + 55994, + null + ], + [ + "delim-token", + "-", + 55995, + 55995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 55996, + 55996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 55997, + 56017, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 56018, + 56018, + null + ], + [ + "hash-token", + "#212529", + 56019, + 56025, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 56026, + 56026, + null + ], + [ + "delim-token", + "-", + 56027, + 56027, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56028, + 56028, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-bg", + 56029, + 56046, + { + "value": "bs-btn-disabled-bg" + } + ], + [ + "colon-token", + ":", + 56047, + 56047, + null + ], + [ + "ident-token", + "transparent", + 56048, + 56058, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56059, + 56059, + null + ], + [ + "delim-token", + "-", + 56060, + 56060, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56061, + 56061, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 56062, + 56089, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 56090, + 56090, + null + ], + [ + "hash-token", + "#212529", + 56091, + 56097, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 56098, + 56098, + null + ], + [ + "delim-token", + "-", + 56099, + 56099, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56100, + 56100, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 56101, + 56111, + { + "value": "bs-gradient" + } + ], + [ + "colon-token", + ":", + 56112, + 56112, + null + ], + [ + "ident-token", + "none", + 56113, + 56116, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 56117, + 56117, + null + ], + [ + "delim-token", + ".", + 56118, + 56118, + { + "value": "." + } + ], + [ + "ident-token", + "btn-link", + 56119, + 56126, + { + "value": "btn-link" + } + ], + [ + "{-token", + "{", + 56127, + 56127, + null + ], + [ + "delim-token", + "-", + 56128, + 56128, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56129, + 56129, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-weight", + 56130, + 56147, + { + "value": "bs-btn-font-weight" + } + ], + [ + "colon-token", + ":", + 56148, + 56148, + null + ], + [ + "number-token", + "400", + 56149, + 56151, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 56152, + 56152, + null + ], + [ + "delim-token", + "-", + 56153, + 56153, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56154, + 56154, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 56155, + 56166, + { + "value": "bs-btn-color" + } + ], + [ + "colon-token", + ":", + 56167, + 56167, + null + ], + [ + "function-token", + "var(", + 56168, + 56171, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 56172, + 56172, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56173, + 56173, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-color", + 56174, + 56186, + { + "value": "bs-link-color" + } + ], + [ + ")-token", + ")", + 56187, + 56187, + null + ], + [ + "semicolon-token", + ";", + 56188, + 56188, + null + ], + [ + "delim-token", + "-", + 56189, + 56189, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56190, + 56190, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-bg", + 56191, + 56199, + { + "value": "bs-btn-bg" + } + ], + [ + "colon-token", + ":", + 56200, + 56200, + null + ], + [ + "ident-token", + "transparent", + 56201, + 56211, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56212, + 56212, + null + ], + [ + "delim-token", + "-", + 56213, + 56213, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56214, + 56214, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-color", + 56215, + 56233, + { + "value": "bs-btn-border-color" + } + ], + [ + "colon-token", + ":", + 56234, + 56234, + null + ], + [ + "ident-token", + "transparent", + 56235, + 56245, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56246, + 56246, + null + ], + [ + "delim-token", + "-", + 56247, + 56247, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56248, + 56248, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 56249, + 56266, + { + "value": "bs-btn-hover-color" + } + ], + [ + "colon-token", + ":", + 56267, + 56267, + null + ], + [ + "function-token", + "var(", + 56268, + 56271, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 56272, + 56272, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56273, + 56273, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 56274, + 56292, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 56293, + 56293, + null + ], + [ + "semicolon-token", + ";", + 56294, + 56294, + null + ], + [ + "delim-token", + "-", + 56295, + 56295, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56296, + 56296, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-border-color", + 56297, + 56321, + { + "value": "bs-btn-hover-border-color" + } + ], + [ + "colon-token", + ":", + 56322, + 56322, + null + ], + [ + "ident-token", + "transparent", + 56323, + 56333, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56334, + 56334, + null + ], + [ + "delim-token", + "-", + 56335, + 56335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56336, + 56336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-color", + 56337, + 56355, + { + "value": "bs-btn-active-color" + } + ], + [ + "colon-token", + ":", + 56356, + 56356, + null + ], + [ + "function-token", + "var(", + 56357, + 56360, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 56361, + 56361, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56362, + 56362, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 56363, + 56381, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 56382, + 56382, + null + ], + [ + "semicolon-token", + ";", + 56383, + 56383, + null + ], + [ + "delim-token", + "-", + 56384, + 56384, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56385, + 56385, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-active-border-color", + 56386, + 56411, + { + "value": "bs-btn-active-border-color" + } + ], + [ + "colon-token", + ":", + 56412, + 56412, + null + ], + [ + "ident-token", + "transparent", + 56413, + 56423, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56424, + 56424, + null + ], + [ + "delim-token", + "-", + 56425, + 56425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56426, + 56426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-color", + 56427, + 56447, + { + "value": "bs-btn-disabled-color" + } + ], + [ + "colon-token", + ":", + 56448, + 56448, + null + ], + [ + "hash-token", + "#6c757d", + 56449, + 56455, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 56456, + 56456, + null + ], + [ + "delim-token", + "-", + 56457, + 56457, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56458, + 56458, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-disabled-border-color", + 56459, + 56486, + { + "value": "bs-btn-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 56487, + 56487, + null + ], + [ + "ident-token", + "transparent", + 56488, + 56498, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 56499, + 56499, + null + ], + [ + "delim-token", + "-", + 56500, + 56500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56501, + 56501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-box-shadow", + 56502, + 56518, + { + "value": "bs-btn-box-shadow" + } + ], + [ + "colon-token", + ":", + 56519, + 56519, + null + ], + [ + "ident-token", + "none", + 56520, + 56523, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 56524, + 56524, + null + ], + [ + "delim-token", + "-", + 56525, + 56525, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56526, + 56526, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-focus-shadow-rgb", + 56527, + 56549, + { + "value": "bs-btn-focus-shadow-rgb" + } + ], + [ + "colon-token", + ":", + 56550, + 56550, + null + ], + [ + "number-token", + "49", + 56551, + 56552, + { + "value": 49, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 56553, + 56553, + null + ], + [ + "number-token", + "132", + 56554, + 56556, + { + "value": 132, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 56557, + 56557, + null + ], + [ + "number-token", + "253", + 56558, + 56560, + { + "value": 253, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 56561, + 56561, + null + ], + [ + "ident-token", + "text-decoration", + 56562, + 56576, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 56577, + 56577, + null + ], + [ + "ident-token", + "underline", + 56578, + 56586, + { + "value": "underline" + } + ], + [ + "}-token", + "}", + 56587, + 56587, + null + ], + [ + "delim-token", + ".", + 56588, + 56588, + { + "value": "." + } + ], + [ + "ident-token", + "btn-link", + 56589, + 56596, + { + "value": "btn-link" + } + ], + [ + "colon-token", + ":", + 56597, + 56597, + null + ], + [ + "ident-token", + "focus-visible", + 56598, + 56610, + { + "value": "focus-visible" + } + ], + [ + "{-token", + "{", + 56611, + 56611, + null + ], + [ + "ident-token", + "color", + 56612, + 56616, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 56617, + 56617, + null + ], + [ + "function-token", + "var(", + 56618, + 56621, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 56622, + 56622, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56623, + 56623, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-color", + 56624, + 56635, + { + "value": "bs-btn-color" + } + ], + [ + ")-token", + ")", + 56636, + 56636, + null + ], + [ + "}-token", + "}", + 56637, + 56637, + null + ], + [ + "delim-token", + ".", + 56638, + 56638, + { + "value": "." + } + ], + [ + "ident-token", + "btn-link", + 56639, + 56646, + { + "value": "btn-link" + } + ], + [ + "colon-token", + ":", + 56647, + 56647, + null + ], + [ + "ident-token", + "hover", + 56648, + 56652, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 56653, + 56653, + null + ], + [ + "ident-token", + "color", + 56654, + 56658, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 56659, + 56659, + null + ], + [ + "function-token", + "var(", + 56660, + 56663, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 56664, + 56664, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56665, + 56665, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-hover-color", + 56666, + 56683, + { + "value": "bs-btn-hover-color" + } + ], + [ + ")-token", + ")", + 56684, + 56684, + null + ], + [ + "}-token", + "}", + 56685, + 56685, + null + ], + [ + "delim-token", + ".", + 56686, + 56686, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-lg", + 56687, + 56698, + { + "value": "btn-group-lg" + } + ], + [ + "delim-token", + ">", + 56699, + 56699, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 56700, + 56700, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 56701, + 56703, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 56704, + 56704, + null + ], + [ + "delim-token", + ".", + 56705, + 56705, + { + "value": "." + } + ], + [ + "ident-token", + "btn-lg", + 56706, + 56711, + { + "value": "btn-lg" + } + ], + [ + "{-token", + "{", + 56712, + 56712, + null + ], + [ + "delim-token", + "-", + 56713, + 56713, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56714, + 56714, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-y", + 56715, + 56730, + { + "value": "bs-btn-padding-y" + } + ], + [ + "colon-token", + ":", + 56731, + 56731, + null + ], + [ + "dimension-token", + "0.5rem", + 56732, + 56737, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56738, + 56738, + null + ], + [ + "delim-token", + "-", + 56739, + 56739, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56740, + 56740, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-x", + 56741, + 56756, + { + "value": "bs-btn-padding-x" + } + ], + [ + "colon-token", + ":", + 56757, + 56757, + null + ], + [ + "dimension-token", + "1rem", + 56758, + 56761, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56762, + 56762, + null + ], + [ + "delim-token", + "-", + 56763, + 56763, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56764, + 56764, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-size", + 56765, + 56780, + { + "value": "bs-btn-font-size" + } + ], + [ + "colon-token", + ":", + 56781, + 56781, + null + ], + [ + "dimension-token", + "1.25rem", + 56782, + 56788, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56789, + 56789, + null + ], + [ + "delim-token", + "-", + 56790, + 56790, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56791, + 56791, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-radius", + 56792, + 56811, + { + "value": "bs-btn-border-radius" + } + ], + [ + "colon-token", + ":", + 56812, + 56812, + null + ], + [ + "dimension-token", + "0.5rem", + 56813, + 56818, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 56819, + 56819, + null + ], + [ + "delim-token", + ".", + 56820, + 56820, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-sm", + 56821, + 56832, + { + "value": "btn-group-sm" + } + ], + [ + "delim-token", + ">", + 56833, + 56833, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 56834, + 56834, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 56835, + 56837, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 56838, + 56838, + null + ], + [ + "delim-token", + ".", + 56839, + 56839, + { + "value": "." + } + ], + [ + "ident-token", + "btn-sm", + 56840, + 56845, + { + "value": "btn-sm" + } + ], + [ + "{-token", + "{", + 56846, + 56846, + null + ], + [ + "delim-token", + "-", + 56847, + 56847, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56848, + 56848, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-y", + 56849, + 56864, + { + "value": "bs-btn-padding-y" + } + ], + [ + "colon-token", + ":", + 56865, + 56865, + null + ], + [ + "dimension-token", + "0.25rem", + 56866, + 56872, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56873, + 56873, + null + ], + [ + "delim-token", + "-", + 56874, + 56874, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56875, + 56875, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-padding-x", + 56876, + 56891, + { + "value": "bs-btn-padding-x" + } + ], + [ + "colon-token", + ":", + 56892, + 56892, + null + ], + [ + "dimension-token", + "0.5rem", + 56893, + 56898, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56899, + 56899, + null + ], + [ + "delim-token", + "-", + 56900, + 56900, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56901, + 56901, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-font-size", + 56902, + 56917, + { + "value": "bs-btn-font-size" + } + ], + [ + "colon-token", + ":", + 56918, + 56918, + null + ], + [ + "dimension-token", + "0.875rem", + 56919, + 56926, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 56927, + 56927, + null + ], + [ + "delim-token", + "-", + 56928, + 56928, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 56929, + 56929, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-btn-border-radius", + 56930, + 56949, + { + "value": "bs-btn-border-radius" + } + ], + [ + "colon-token", + ":", + 56950, + 56950, + null + ], + [ + "dimension-token", + "0.25rem", + 56951, + 56957, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 56958, + 56958, + null + ], + [ + "delim-token", + ".", + 56959, + 56959, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 56960, + 56963, + { + "value": "fade" + } + ], + [ + "{-token", + "{", + 56964, + 56964, + null + ], + [ + "ident-token", + "transition", + 56965, + 56974, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 56975, + 56975, + null + ], + [ + "ident-token", + "opacity", + 56976, + 56982, + { + "value": "opacity" + } + ], + [ + "whitespace-token", + " ", + 56983, + 56983, + null + ], + [ + "dimension-token", + ".15s", + 56984, + 56987, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 56988, + 56988, + null + ], + [ + "ident-token", + "linear", + 56989, + 56994, + { + "value": "linear" + } + ], + [ + "}-token", + "}", + 56995, + 56995, + null + ], + [ + "at-keyword-token", + "@media", + 56996, + 57001, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 57002, + 57002, + null + ], + [ + "(-token", + "(", + 57003, + 57003, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 57004, + 57025, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 57026, + 57026, + null + ], + [ + "ident-token", + "reduce", + 57027, + 57032, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 57033, + 57033, + null + ], + [ + "{-token", + "{", + 57034, + 57034, + null + ], + [ + "delim-token", + ".", + 57035, + 57035, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 57036, + 57039, + { + "value": "fade" + } + ], + [ + "{-token", + "{", + 57040, + 57040, + null + ], + [ + "ident-token", + "transition", + 57041, + 57050, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 57051, + 57051, + null + ], + [ + "ident-token", + "none", + 57052, + 57055, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 57056, + 57056, + null + ], + [ + "}-token", + "}", + 57057, + 57057, + null + ], + [ + "delim-token", + ".", + 57058, + 57058, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 57059, + 57062, + { + "value": "fade" + } + ], + [ + "colon-token", + ":", + 57063, + 57063, + null + ], + [ + "function-token", + "not(", + 57064, + 57067, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 57068, + 57068, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 57069, + 57072, + { + "value": "show" + } + ], + [ + ")-token", + ")", + 57073, + 57073, + null + ], + [ + "{-token", + "{", + 57074, + 57074, + null + ], + [ + "ident-token", + "opacity", + 57075, + 57081, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 57082, + 57082, + null + ], + [ + "number-token", + "0", + 57083, + 57083, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 57084, + 57084, + null + ], + [ + "delim-token", + ".", + 57085, + 57085, + { + "value": "." + } + ], + [ + "ident-token", + "collapse", + 57086, + 57093, + { + "value": "collapse" + } + ], + [ + "colon-token", + ":", + 57094, + 57094, + null + ], + [ + "function-token", + "not(", + 57095, + 57098, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 57099, + 57099, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 57100, + 57103, + { + "value": "show" + } + ], + [ + ")-token", + ")", + 57104, + 57104, + null + ], + [ + "{-token", + "{", + 57105, + 57105, + null + ], + [ + "ident-token", + "display", + 57106, + 57112, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 57113, + 57113, + null + ], + [ + "ident-token", + "none", + 57114, + 57117, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 57118, + 57118, + null + ], + [ + "delim-token", + ".", + 57119, + 57119, + { + "value": "." + } + ], + [ + "ident-token", + "collapsing", + 57120, + 57129, + { + "value": "collapsing" + } + ], + [ + "{-token", + "{", + 57130, + 57130, + null + ], + [ + "ident-token", + "height", + 57131, + 57136, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 57137, + 57137, + null + ], + [ + "number-token", + "0", + 57138, + 57138, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 57139, + 57139, + null + ], + [ + "ident-token", + "overflow", + 57140, + 57147, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 57148, + 57148, + null + ], + [ + "ident-token", + "hidden", + 57149, + 57154, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 57155, + 57155, + null + ], + [ + "ident-token", + "transition", + 57156, + 57165, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 57166, + 57166, + null + ], + [ + "ident-token", + "height", + 57167, + 57172, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 57173, + 57173, + null + ], + [ + "dimension-token", + ".35s", + 57174, + 57177, + { + "value": 0.35, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 57178, + 57178, + null + ], + [ + "ident-token", + "ease", + 57179, + 57182, + { + "value": "ease" + } + ], + [ + "}-token", + "}", + 57183, + 57183, + null + ], + [ + "at-keyword-token", + "@media", + 57184, + 57189, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 57190, + 57190, + null + ], + [ + "(-token", + "(", + 57191, + 57191, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 57192, + 57213, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 57214, + 57214, + null + ], + [ + "ident-token", + "reduce", + 57215, + 57220, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 57221, + 57221, + null + ], + [ + "{-token", + "{", + 57222, + 57222, + null + ], + [ + "delim-token", + ".", + 57223, + 57223, + { + "value": "." + } + ], + [ + "ident-token", + "collapsing", + 57224, + 57233, + { + "value": "collapsing" + } + ], + [ + "{-token", + "{", + 57234, + 57234, + null + ], + [ + "ident-token", + "transition", + 57235, + 57244, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 57245, + 57245, + null + ], + [ + "ident-token", + "none", + 57246, + 57249, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 57250, + 57250, + null + ], + [ + "}-token", + "}", + 57251, + 57251, + null + ], + [ + "delim-token", + ".", + 57252, + 57252, + { + "value": "." + } + ], + [ + "ident-token", + "collapsing", + 57253, + 57262, + { + "value": "collapsing" + } + ], + [ + "delim-token", + ".", + 57263, + 57263, + { + "value": "." + } + ], + [ + "ident-token", + "collapse-horizontal", + 57264, + 57282, + { + "value": "collapse-horizontal" + } + ], + [ + "{-token", + "{", + 57283, + 57283, + null + ], + [ + "ident-token", + "width", + 57284, + 57288, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 57289, + 57289, + null + ], + [ + "number-token", + "0", + 57290, + 57290, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 57291, + 57291, + null + ], + [ + "ident-token", + "height", + 57292, + 57297, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 57298, + 57298, + null + ], + [ + "ident-token", + "auto", + 57299, + 57302, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 57303, + 57303, + null + ], + [ + "ident-token", + "transition", + 57304, + 57313, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 57314, + 57314, + null + ], + [ + "ident-token", + "width", + 57315, + 57319, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 57320, + 57320, + null + ], + [ + "dimension-token", + ".35s", + 57321, + 57324, + { + "value": 0.35, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 57325, + 57325, + null + ], + [ + "ident-token", + "ease", + 57326, + 57329, + { + "value": "ease" + } + ], + [ + "}-token", + "}", + 57330, + 57330, + null + ], + [ + "at-keyword-token", + "@media", + 57331, + 57336, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 57337, + 57337, + null + ], + [ + "(-token", + "(", + 57338, + 57338, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 57339, + 57360, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 57361, + 57361, + null + ], + [ + "ident-token", + "reduce", + 57362, + 57367, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 57368, + 57368, + null + ], + [ + "{-token", + "{", + 57369, + 57369, + null + ], + [ + "delim-token", + ".", + 57370, + 57370, + { + "value": "." + } + ], + [ + "ident-token", + "collapsing", + 57371, + 57380, + { + "value": "collapsing" + } + ], + [ + "delim-token", + ".", + 57381, + 57381, + { + "value": "." + } + ], + [ + "ident-token", + "collapse-horizontal", + 57382, + 57400, + { + "value": "collapse-horizontal" + } + ], + [ + "{-token", + "{", + 57401, + 57401, + null + ], + [ + "ident-token", + "transition", + 57402, + 57411, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 57412, + 57412, + null + ], + [ + "ident-token", + "none", + 57413, + 57416, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 57417, + 57417, + null + ], + [ + "}-token", + "}", + 57418, + 57418, + null + ], + [ + "delim-token", + ".", + 57419, + 57419, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown", + 57420, + 57427, + { + "value": "dropdown" + } + ], + [ + "comma-token", + ",", + 57428, + 57428, + null + ], + [ + "delim-token", + ".", + 57429, + 57429, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-center", + 57430, + 57444, + { + "value": "dropdown-center" + } + ], + [ + "comma-token", + ",", + 57445, + 57445, + null + ], + [ + "delim-token", + ".", + 57446, + 57446, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 57447, + 57453, + { + "value": "dropend" + } + ], + [ + "comma-token", + ",", + 57454, + 57454, + null + ], + [ + "delim-token", + ".", + 57455, + 57455, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 57456, + 57464, + { + "value": "dropstart" + } + ], + [ + "comma-token", + ",", + 57465, + 57465, + null + ], + [ + "delim-token", + ".", + 57466, + 57466, + { + "value": "." + } + ], + [ + "ident-token", + "dropup", + 57467, + 57472, + { + "value": "dropup" + } + ], + [ + "comma-token", + ",", + 57473, + 57473, + null + ], + [ + "delim-token", + ".", + 57474, + 57474, + { + "value": "." + } + ], + [ + "ident-token", + "dropup-center", + 57475, + 57487, + { + "value": "dropup-center" + } + ], + [ + "{-token", + "{", + 57488, + 57488, + null + ], + [ + "ident-token", + "position", + 57489, + 57496, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 57497, + 57497, + null + ], + [ + "ident-token", + "relative", + 57498, + 57505, + { + "value": "relative" + } + ], + [ + "}-token", + "}", + 57506, + 57506, + null + ], + [ + "delim-token", + ".", + 57507, + 57507, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 57508, + 57522, + { + "value": "dropdown-toggle" + } + ], + [ + "{-token", + "{", + 57523, + 57523, + null + ], + [ + "ident-token", + "white-space", + 57524, + 57534, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 57535, + 57535, + null + ], + [ + "ident-token", + "nowrap", + 57536, + 57541, + { + "value": "nowrap" + } + ], + [ + "}-token", + "}", + 57542, + 57542, + null + ], + [ + "delim-token", + ".", + 57543, + 57543, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 57544, + 57558, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 57559, + 57559, + null + ], + [ + "colon-token", + ":", + 57560, + 57560, + null + ], + [ + "ident-token", + "after", + 57561, + 57565, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 57566, + 57566, + null + ], + [ + "ident-token", + "display", + 57567, + 57573, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 57574, + 57574, + null + ], + [ + "ident-token", + "inline-block", + 57575, + 57586, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 57587, + 57587, + null + ], + [ + "ident-token", + "margin-left", + 57588, + 57598, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 57599, + 57599, + null + ], + [ + "dimension-token", + ".255em", + 57600, + 57605, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 57606, + 57606, + null + ], + [ + "ident-token", + "vertical-align", + 57607, + 57620, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 57621, + 57621, + null + ], + [ + "dimension-token", + ".255em", + 57622, + 57627, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 57628, + 57628, + null + ], + [ + "ident-token", + "content", + 57629, + 57635, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 57636, + 57636, + null + ], + [ + "string-token", + "\"\"", + 57637, + 57638, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 57639, + 57639, + null + ], + [ + "ident-token", + "border-top", + 57640, + 57649, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 57650, + 57650, + null + ], + [ + "dimension-token", + ".3em", + 57651, + 57654, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 57655, + 57655, + null + ], + [ + "ident-token", + "solid", + 57656, + 57660, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 57661, + 57661, + null + ], + [ + "ident-token", + "border-right", + 57662, + 57673, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 57674, + 57674, + null + ], + [ + "dimension-token", + ".3em", + 57675, + 57678, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 57679, + 57679, + null + ], + [ + "ident-token", + "solid", + 57680, + 57684, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 57685, + 57685, + null + ], + [ + "ident-token", + "transparent", + 57686, + 57696, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 57697, + 57697, + null + ], + [ + "ident-token", + "border-bottom", + 57698, + 57710, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 57711, + 57711, + null + ], + [ + "number-token", + "0", + 57712, + 57712, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 57713, + 57713, + null + ], + [ + "ident-token", + "border-left", + 57714, + 57724, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 57725, + 57725, + null + ], + [ + "dimension-token", + ".3em", + 57726, + 57729, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 57730, + 57730, + null + ], + [ + "ident-token", + "solid", + 57731, + 57735, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 57736, + 57736, + null + ], + [ + "ident-token", + "transparent", + 57737, + 57747, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 57748, + 57748, + null + ], + [ + "delim-token", + ".", + 57749, + 57749, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 57750, + 57764, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 57765, + 57765, + null + ], + [ + "ident-token", + "empty", + 57766, + 57770, + { + "value": "empty" + } + ], + [ + "colon-token", + ":", + 57771, + 57771, + null + ], + [ + "colon-token", + ":", + 57772, + 57772, + null + ], + [ + "ident-token", + "after", + 57773, + 57777, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 57778, + 57778, + null + ], + [ + "ident-token", + "margin-left", + 57779, + 57789, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 57790, + 57790, + null + ], + [ + "number-token", + "0", + 57791, + 57791, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 57792, + 57792, + null + ], + [ + "delim-token", + ".", + 57793, + 57793, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 57794, + 57806, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 57807, + 57807, + null + ], + [ + "delim-token", + "-", + 57808, + 57808, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57809, + 57809, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-zindex", + 57810, + 57827, + { + "value": "bs-dropdown-zindex" + } + ], + [ + "colon-token", + ":", + 57828, + 57828, + null + ], + [ + "number-token", + "1000", + 57829, + 57832, + { + "value": 1000, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 57833, + 57833, + null + ], + [ + "delim-token", + "-", + 57834, + 57834, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57835, + 57835, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-min-width", + 57836, + 57856, + { + "value": "bs-dropdown-min-width" + } + ], + [ + "colon-token", + ":", + 57857, + 57857, + null + ], + [ + "dimension-token", + "10rem", + 57858, + 57862, + { + "value": 10, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 57863, + 57863, + null + ], + [ + "delim-token", + "-", + 57864, + 57864, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57865, + 57865, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-padding-x", + 57866, + 57886, + { + "value": "bs-dropdown-padding-x" + } + ], + [ + "colon-token", + ":", + 57887, + 57887, + null + ], + [ + "number-token", + "0", + 57888, + 57888, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 57889, + 57889, + null + ], + [ + "delim-token", + "-", + 57890, + 57890, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57891, + 57891, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-padding-y", + 57892, + 57912, + { + "value": "bs-dropdown-padding-y" + } + ], + [ + "colon-token", + ":", + 57913, + 57913, + null + ], + [ + "dimension-token", + "0.5rem", + 57914, + 57919, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 57920, + 57920, + null + ], + [ + "delim-token", + "-", + 57921, + 57921, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57922, + 57922, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-spacer", + 57923, + 57940, + { + "value": "bs-dropdown-spacer" + } + ], + [ + "colon-token", + ":", + 57941, + 57941, + null + ], + [ + "dimension-token", + "0.125rem", + 57942, + 57949, + { + "value": 0.125, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 57950, + 57950, + null + ], + [ + "delim-token", + "-", + 57951, + 57951, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57952, + 57952, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-font-size", + 57953, + 57973, + { + "value": "bs-dropdown-font-size" + } + ], + [ + "colon-token", + ":", + 57974, + 57974, + null + ], + [ + "dimension-token", + "1rem", + 57975, + 57978, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 57979, + 57979, + null + ], + [ + "delim-token", + "-", + 57980, + 57980, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 57981, + 57981, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-color", + 57982, + 57998, + { + "value": "bs-dropdown-color" + } + ], + [ + "colon-token", + ":", + 57999, + 57999, + null + ], + [ + "hash-token", + "#212529", + 58000, + 58006, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 58007, + 58007, + null + ], + [ + "delim-token", + "-", + 58008, + 58008, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58009, + 58009, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-bg", + 58010, + 58023, + { + "value": "bs-dropdown-bg" + } + ], + [ + "colon-token", + ":", + 58024, + 58024, + null + ], + [ + "hash-token", + "#fff", + 58025, + 58028, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 58029, + 58029, + null + ], + [ + "delim-token", + "-", + 58030, + 58030, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58031, + 58031, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-color", + 58032, + 58055, + { + "value": "bs-dropdown-border-color" + } + ], + [ + "colon-token", + ":", + 58056, + 58056, + null + ], + [ + "function-token", + "var(", + 58057, + 58060, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58061, + 58061, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58062, + 58062, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 58063, + 58089, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 58090, + 58090, + null + ], + [ + "semicolon-token", + ";", + 58091, + 58091, + null + ], + [ + "delim-token", + "-", + 58092, + 58092, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58093, + 58093, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-radius", + 58094, + 58118, + { + "value": "bs-dropdown-border-radius" + } + ], + [ + "colon-token", + ":", + 58119, + 58119, + null + ], + [ + "dimension-token", + "0.375rem", + 58120, + 58127, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58128, + 58128, + null + ], + [ + "delim-token", + "-", + 58129, + 58129, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58130, + 58130, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-width", + 58131, + 58154, + { + "value": "bs-dropdown-border-width" + } + ], + [ + "colon-token", + ":", + 58155, + 58155, + null + ], + [ + "dimension-token", + "1px", + 58156, + 58158, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 58159, + 58159, + null + ], + [ + "delim-token", + "-", + 58160, + 58160, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58161, + 58161, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-inner-border-radius", + 58162, + 58192, + { + "value": "bs-dropdown-inner-border-radius" + } + ], + [ + "colon-token", + ":", + 58193, + 58193, + null + ], + [ + "function-token", + "calc(", + 58194, + 58198, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.375rem", + 58199, + 58206, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 58207, + 58207, + null + ], + [ + "delim-token", + "-", + 58208, + 58208, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 58209, + 58209, + null + ], + [ + "dimension-token", + "1px", + 58210, + 58212, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 58213, + 58213, + null + ], + [ + "semicolon-token", + ";", + 58214, + 58214, + null + ], + [ + "delim-token", + "-", + 58215, + 58215, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58216, + 58216, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-divider-bg", + 58217, + 58238, + { + "value": "bs-dropdown-divider-bg" + } + ], + [ + "colon-token", + ":", + 58239, + 58239, + null + ], + [ + "function-token", + "var(", + 58240, + 58243, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58244, + 58244, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58245, + 58245, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 58246, + 58272, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 58273, + 58273, + null + ], + [ + "semicolon-token", + ";", + 58274, + 58274, + null + ], + [ + "delim-token", + "-", + 58275, + 58275, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58276, + 58276, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-divider-margin-y", + 58277, + 58304, + { + "value": "bs-dropdown-divider-margin-y" + } + ], + [ + "colon-token", + ":", + 58305, + 58305, + null + ], + [ + "dimension-token", + "0.5rem", + 58306, + 58311, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58312, + 58312, + null + ], + [ + "delim-token", + "-", + 58313, + 58313, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58314, + 58314, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-box-shadow", + 58315, + 58336, + { + "value": "bs-dropdown-box-shadow" + } + ], + [ + "colon-token", + ":", + 58337, + 58337, + null + ], + [ + "number-token", + "0", + 58338, + 58338, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 58339, + 58339, + null + ], + [ + "dimension-token", + "0.5rem", + 58340, + 58345, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 58346, + 58346, + null + ], + [ + "dimension-token", + "1rem", + 58347, + 58350, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 58351, + 58351, + null + ], + [ + "function-token", + "rgba(", + 58352, + 58356, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 58357, + 58357, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 58358, + 58358, + null + ], + [ + "whitespace-token", + " ", + 58359, + 58359, + null + ], + [ + "number-token", + "0", + 58360, + 58360, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 58361, + 58361, + null + ], + [ + "whitespace-token", + " ", + 58362, + 58362, + null + ], + [ + "number-token", + "0", + 58363, + 58363, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 58364, + 58364, + null + ], + [ + "whitespace-token", + " ", + 58365, + 58365, + null + ], + [ + "number-token", + "0.15", + 58366, + 58369, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 58370, + 58370, + null + ], + [ + "semicolon-token", + ";", + 58371, + 58371, + null + ], + [ + "delim-token", + "-", + 58372, + 58372, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58373, + 58373, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-color", + 58374, + 58395, + { + "value": "bs-dropdown-link-color" + } + ], + [ + "colon-token", + ":", + 58396, + 58396, + null + ], + [ + "hash-token", + "#212529", + 58397, + 58403, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 58404, + 58404, + null + ], + [ + "delim-token", + "-", + 58405, + 58405, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58406, + 58406, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-color", + 58407, + 58434, + { + "value": "bs-dropdown-link-hover-color" + } + ], + [ + "colon-token", + ":", + 58435, + 58435, + null + ], + [ + "hash-token", + "#1e2125", + 58436, + 58442, + { + "value": "1e2125", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 58443, + 58443, + null + ], + [ + "delim-token", + "-", + 58444, + 58444, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58445, + 58445, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-bg", + 58446, + 58470, + { + "value": "bs-dropdown-link-hover-bg" + } + ], + [ + "colon-token", + ":", + 58471, + 58471, + null + ], + [ + "hash-token", + "#e9ecef", + 58472, + 58478, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 58479, + 58479, + null + ], + [ + "delim-token", + "-", + 58480, + 58480, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58481, + 58481, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-color", + 58482, + 58510, + { + "value": "bs-dropdown-link-active-color" + } + ], + [ + "colon-token", + ":", + 58511, + 58511, + null + ], + [ + "hash-token", + "#fff", + 58512, + 58515, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 58516, + 58516, + null + ], + [ + "delim-token", + "-", + 58517, + 58517, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58518, + 58518, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-bg", + 58519, + 58544, + { + "value": "bs-dropdown-link-active-bg" + } + ], + [ + "colon-token", + ":", + 58545, + 58545, + null + ], + [ + "hash-token", + "#0d6efd", + 58546, + 58552, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 58553, + 58553, + null + ], + [ + "delim-token", + "-", + 58554, + 58554, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58555, + 58555, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-disabled-color", + 58556, + 58586, + { + "value": "bs-dropdown-link-disabled-color" + } + ], + [ + "colon-token", + ":", + 58587, + 58587, + null + ], + [ + "hash-token", + "#adb5bd", + 58588, + 58594, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 58595, + 58595, + null + ], + [ + "delim-token", + "-", + 58596, + 58596, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58597, + 58597, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-x", + 58598, + 58623, + { + "value": "bs-dropdown-item-padding-x" + } + ], + [ + "colon-token", + ":", + 58624, + 58624, + null + ], + [ + "dimension-token", + "1rem", + 58625, + 58628, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58629, + 58629, + null + ], + [ + "delim-token", + "-", + 58630, + 58630, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58631, + 58631, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-y", + 58632, + 58657, + { + "value": "bs-dropdown-item-padding-y" + } + ], + [ + "colon-token", + ":", + 58658, + 58658, + null + ], + [ + "dimension-token", + "0.25rem", + 58659, + 58665, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58666, + 58666, + null + ], + [ + "delim-token", + "-", + 58667, + 58667, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58668, + 58668, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-color", + 58669, + 58692, + { + "value": "bs-dropdown-header-color" + } + ], + [ + "colon-token", + ":", + 58693, + 58693, + null + ], + [ + "hash-token", + "#6c757d", + 58694, + 58700, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 58701, + 58701, + null + ], + [ + "delim-token", + "-", + 58702, + 58702, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58703, + 58703, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-padding-x", + 58704, + 58731, + { + "value": "bs-dropdown-header-padding-x" + } + ], + [ + "colon-token", + ":", + 58732, + 58732, + null + ], + [ + "dimension-token", + "1rem", + 58733, + 58736, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58737, + 58737, + null + ], + [ + "delim-token", + "-", + 58738, + 58738, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58739, + 58739, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-padding-y", + 58740, + 58767, + { + "value": "bs-dropdown-header-padding-y" + } + ], + [ + "colon-token", + ":", + 58768, + 58768, + null + ], + [ + "dimension-token", + "0.5rem", + 58769, + 58774, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 58775, + 58775, + null + ], + [ + "ident-token", + "position", + 58776, + 58783, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 58784, + 58784, + null + ], + [ + "ident-token", + "absolute", + 58785, + 58792, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 58793, + 58793, + null + ], + [ + "ident-token", + "z-index", + 58794, + 58800, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 58801, + 58801, + null + ], + [ + "function-token", + "var(", + 58802, + 58805, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58806, + 58806, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58807, + 58807, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-zindex", + 58808, + 58825, + { + "value": "bs-dropdown-zindex" + } + ], + [ + ")-token", + ")", + 58826, + 58826, + null + ], + [ + "semicolon-token", + ";", + 58827, + 58827, + null + ], + [ + "ident-token", + "display", + 58828, + 58834, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 58835, + 58835, + null + ], + [ + "ident-token", + "none", + 58836, + 58839, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 58840, + 58840, + null + ], + [ + "ident-token", + "min-width", + 58841, + 58849, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 58850, + 58850, + null + ], + [ + "function-token", + "var(", + 58851, + 58854, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58855, + 58855, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58856, + 58856, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-min-width", + 58857, + 58877, + { + "value": "bs-dropdown-min-width" + } + ], + [ + ")-token", + ")", + 58878, + 58878, + null + ], + [ + "semicolon-token", + ";", + 58879, + 58879, + null + ], + [ + "ident-token", + "padding", + 58880, + 58886, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 58887, + 58887, + null + ], + [ + "function-token", + "var(", + 58888, + 58891, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58892, + 58892, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58893, + 58893, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-padding-y", + 58894, + 58914, + { + "value": "bs-dropdown-padding-y" + } + ], + [ + ")-token", + ")", + 58915, + 58915, + null + ], + [ + "whitespace-token", + " ", + 58916, + 58916, + null + ], + [ + "function-token", + "var(", + 58917, + 58920, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58921, + 58921, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58922, + 58922, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-padding-x", + 58923, + 58943, + { + "value": "bs-dropdown-padding-x" + } + ], + [ + ")-token", + ")", + 58944, + 58944, + null + ], + [ + "semicolon-token", + ";", + 58945, + 58945, + null + ], + [ + "ident-token", + "margin", + 58946, + 58951, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 58952, + 58952, + null + ], + [ + "number-token", + "0", + 58953, + 58953, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 58954, + 58954, + null + ], + [ + "ident-token", + "font-size", + 58955, + 58963, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 58964, + 58964, + null + ], + [ + "function-token", + "var(", + 58965, + 58968, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 58969, + 58969, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 58970, + 58970, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-font-size", + 58971, + 58991, + { + "value": "bs-dropdown-font-size" + } + ], + [ + ")-token", + ")", + 58992, + 58992, + null + ], + [ + "semicolon-token", + ";", + 58993, + 58993, + null + ], + [ + "ident-token", + "color", + 58994, + 58998, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 58999, + 58999, + null + ], + [ + "function-token", + "var(", + 59000, + 59003, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59004, + 59004, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59005, + 59005, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-color", + 59006, + 59022, + { + "value": "bs-dropdown-color" + } + ], + [ + ")-token", + ")", + 59023, + 59023, + null + ], + [ + "semicolon-token", + ";", + 59024, + 59024, + null + ], + [ + "ident-token", + "text-align", + 59025, + 59034, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 59035, + 59035, + null + ], + [ + "ident-token", + "left", + 59036, + 59039, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 59040, + 59040, + null + ], + [ + "ident-token", + "list-style", + 59041, + 59050, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 59051, + 59051, + null + ], + [ + "ident-token", + "none", + 59052, + 59055, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 59056, + 59056, + null + ], + [ + "ident-token", + "background-color", + 59057, + 59072, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 59073, + 59073, + null + ], + [ + "function-token", + "var(", + 59074, + 59077, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59078, + 59078, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59079, + 59079, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-bg", + 59080, + 59093, + { + "value": "bs-dropdown-bg" + } + ], + [ + ")-token", + ")", + 59094, + 59094, + null + ], + [ + "semicolon-token", + ";", + 59095, + 59095, + null + ], + [ + "ident-token", + "background-clip", + 59096, + 59110, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 59111, + 59111, + null + ], + [ + "ident-token", + "padding-box", + 59112, + 59122, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 59123, + 59123, + null + ], + [ + "ident-token", + "border", + 59124, + 59129, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 59130, + 59130, + null + ], + [ + "function-token", + "var(", + 59131, + 59134, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59135, + 59135, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59136, + 59136, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-width", + 59137, + 59160, + { + "value": "bs-dropdown-border-width" + } + ], + [ + ")-token", + ")", + 59161, + 59161, + null + ], + [ + "whitespace-token", + " ", + 59162, + 59162, + null + ], + [ + "ident-token", + "solid", + 59163, + 59167, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 59168, + 59168, + null + ], + [ + "function-token", + "var(", + 59169, + 59172, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59173, + 59173, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59174, + 59174, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-color", + 59175, + 59198, + { + "value": "bs-dropdown-border-color" + } + ], + [ + ")-token", + ")", + 59199, + 59199, + null + ], + [ + "semicolon-token", + ";", + 59200, + 59200, + null + ], + [ + "ident-token", + "border-radius", + 59201, + 59213, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 59214, + 59214, + null + ], + [ + "function-token", + "var(", + 59215, + 59218, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59219, + 59219, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59220, + 59220, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-radius", + 59221, + 59245, + { + "value": "bs-dropdown-border-radius" + } + ], + [ + ")-token", + ")", + 59246, + 59246, + null + ], + [ + "}-token", + "}", + 59247, + 59247, + null + ], + [ + "delim-token", + ".", + 59248, + 59248, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 59249, + 59261, + { + "value": "dropdown-menu" + } + ], + [ + "[-token", + "[", + 59262, + 59262, + null + ], + [ + "ident-token", + "data-bs-popper", + 59263, + 59276, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59277, + 59277, + null + ], + [ + "{-token", + "{", + 59278, + 59278, + null + ], + [ + "ident-token", + "top", + 59279, + 59281, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 59282, + 59282, + null + ], + [ + "percentage-token", + "100%", + 59283, + 59286, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 59287, + 59287, + null + ], + [ + "ident-token", + "left", + 59288, + 59291, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59292, + 59292, + null + ], + [ + "number-token", + "0", + 59293, + 59293, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 59294, + 59294, + null + ], + [ + "ident-token", + "margin-top", + 59295, + 59304, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 59305, + 59305, + null + ], + [ + "function-token", + "var(", + 59306, + 59309, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 59310, + 59310, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59311, + 59311, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-spacer", + 59312, + 59329, + { + "value": "bs-dropdown-spacer" + } + ], + [ + ")-token", + ")", + 59330, + 59330, + null + ], + [ + "}-token", + "}", + 59331, + 59331, + null + ], + [ + "delim-token", + ".", + 59332, + 59332, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-start", + 59333, + 59351, + { + "value": "dropdown-menu-start" + } + ], + [ + "{-token", + "{", + 59352, + 59352, + null + ], + [ + "delim-token", + "-", + 59353, + 59353, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59354, + 59354, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59355, + 59365, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59366, + 59366, + null + ], + [ + "ident-token", + "start", + 59367, + 59371, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 59372, + 59372, + null + ], + [ + "delim-token", + ".", + 59373, + 59373, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-start", + 59374, + 59392, + { + "value": "dropdown-menu-start" + } + ], + [ + "[-token", + "[", + 59393, + 59393, + null + ], + [ + "ident-token", + "data-bs-popper", + 59394, + 59407, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59408, + 59408, + null + ], + [ + "{-token", + "{", + 59409, + 59409, + null + ], + [ + "ident-token", + "right", + 59410, + 59414, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59415, + 59415, + null + ], + [ + "ident-token", + "auto", + 59416, + 59419, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 59420, + 59420, + null + ], + [ + "ident-token", + "left", + 59421, + 59424, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59425, + 59425, + null + ], + [ + "number-token", + "0", + 59426, + 59426, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 59427, + 59427, + null + ], + [ + "delim-token", + ".", + 59428, + 59428, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-end", + 59429, + 59445, + { + "value": "dropdown-menu-end" + } + ], + [ + "{-token", + "{", + 59446, + 59446, + null + ], + [ + "delim-token", + "-", + 59447, + 59447, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59448, + 59448, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59449, + 59459, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59460, + 59460, + null + ], + [ + "ident-token", + "end", + 59461, + 59463, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 59464, + 59464, + null + ], + [ + "delim-token", + ".", + 59465, + 59465, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-end", + 59466, + 59482, + { + "value": "dropdown-menu-end" + } + ], + [ + "[-token", + "[", + 59483, + 59483, + null + ], + [ + "ident-token", + "data-bs-popper", + 59484, + 59497, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59498, + 59498, + null + ], + [ + "{-token", + "{", + 59499, + 59499, + null + ], + [ + "ident-token", + "right", + 59500, + 59504, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59505, + 59505, + null + ], + [ + "number-token", + "0", + 59506, + 59506, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 59507, + 59507, + null + ], + [ + "ident-token", + "left", + 59508, + 59511, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59512, + 59512, + null + ], + [ + "ident-token", + "auto", + 59513, + 59516, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 59517, + 59517, + null + ], + [ + "at-keyword-token", + "@media", + 59518, + 59523, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 59524, + 59524, + null + ], + [ + "(-token", + "(", + 59525, + 59525, + null + ], + [ + "ident-token", + "min-width", + 59526, + 59534, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 59535, + 59535, + null + ], + [ + "dimension-token", + "576px", + 59536, + 59540, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 59541, + 59541, + null + ], + [ + "{-token", + "{", + 59542, + 59542, + null + ], + [ + "delim-token", + ".", + 59543, + 59543, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-sm-start", + 59544, + 59565, + { + "value": "dropdown-menu-sm-start" + } + ], + [ + "{-token", + "{", + 59566, + 59566, + null + ], + [ + "delim-token", + "-", + 59567, + 59567, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59568, + 59568, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59569, + 59579, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59580, + 59580, + null + ], + [ + "ident-token", + "start", + 59581, + 59585, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 59586, + 59586, + null + ], + [ + "delim-token", + ".", + 59587, + 59587, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-sm-start", + 59588, + 59609, + { + "value": "dropdown-menu-sm-start" + } + ], + [ + "[-token", + "[", + 59610, + 59610, + null + ], + [ + "ident-token", + "data-bs-popper", + 59611, + 59624, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59625, + 59625, + null + ], + [ + "{-token", + "{", + 59626, + 59626, + null + ], + [ + "ident-token", + "right", + 59627, + 59631, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59632, + 59632, + null + ], + [ + "ident-token", + "auto", + 59633, + 59636, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 59637, + 59637, + null + ], + [ + "ident-token", + "left", + 59638, + 59641, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59642, + 59642, + null + ], + [ + "number-token", + "0", + 59643, + 59643, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 59644, + 59644, + null + ], + [ + "delim-token", + ".", + 59645, + 59645, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-sm-end", + 59646, + 59665, + { + "value": "dropdown-menu-sm-end" + } + ], + [ + "{-token", + "{", + 59666, + 59666, + null + ], + [ + "delim-token", + "-", + 59667, + 59667, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59668, + 59668, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59669, + 59679, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59680, + 59680, + null + ], + [ + "ident-token", + "end", + 59681, + 59683, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 59684, + 59684, + null + ], + [ + "delim-token", + ".", + 59685, + 59685, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-sm-end", + 59686, + 59705, + { + "value": "dropdown-menu-sm-end" + } + ], + [ + "[-token", + "[", + 59706, + 59706, + null + ], + [ + "ident-token", + "data-bs-popper", + 59707, + 59720, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59721, + 59721, + null + ], + [ + "{-token", + "{", + 59722, + 59722, + null + ], + [ + "ident-token", + "right", + 59723, + 59727, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59728, + 59728, + null + ], + [ + "number-token", + "0", + 59729, + 59729, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 59730, + 59730, + null + ], + [ + "ident-token", + "left", + 59731, + 59734, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59735, + 59735, + null + ], + [ + "ident-token", + "auto", + 59736, + 59739, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 59740, + 59740, + null + ], + [ + "}-token", + "}", + 59741, + 59741, + null + ], + [ + "at-keyword-token", + "@media", + 59742, + 59747, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 59748, + 59748, + null + ], + [ + "(-token", + "(", + 59749, + 59749, + null + ], + [ + "ident-token", + "min-width", + 59750, + 59758, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 59759, + 59759, + null + ], + [ + "dimension-token", + "768px", + 59760, + 59764, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 59765, + 59765, + null + ], + [ + "{-token", + "{", + 59766, + 59766, + null + ], + [ + "delim-token", + ".", + 59767, + 59767, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-md-start", + 59768, + 59789, + { + "value": "dropdown-menu-md-start" + } + ], + [ + "{-token", + "{", + 59790, + 59790, + null + ], + [ + "delim-token", + "-", + 59791, + 59791, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59792, + 59792, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59793, + 59803, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59804, + 59804, + null + ], + [ + "ident-token", + "start", + 59805, + 59809, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 59810, + 59810, + null + ], + [ + "delim-token", + ".", + 59811, + 59811, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-md-start", + 59812, + 59833, + { + "value": "dropdown-menu-md-start" + } + ], + [ + "[-token", + "[", + 59834, + 59834, + null + ], + [ + "ident-token", + "data-bs-popper", + 59835, + 59848, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59849, + 59849, + null + ], + [ + "{-token", + "{", + 59850, + 59850, + null + ], + [ + "ident-token", + "right", + 59851, + 59855, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59856, + 59856, + null + ], + [ + "ident-token", + "auto", + 59857, + 59860, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 59861, + 59861, + null + ], + [ + "ident-token", + "left", + 59862, + 59865, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59866, + 59866, + null + ], + [ + "number-token", + "0", + 59867, + 59867, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 59868, + 59868, + null + ], + [ + "delim-token", + ".", + 59869, + 59869, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-md-end", + 59870, + 59889, + { + "value": "dropdown-menu-md-end" + } + ], + [ + "{-token", + "{", + 59890, + 59890, + null + ], + [ + "delim-token", + "-", + 59891, + 59891, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 59892, + 59892, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 59893, + 59903, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 59904, + 59904, + null + ], + [ + "ident-token", + "end", + 59905, + 59907, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 59908, + 59908, + null + ], + [ + "delim-token", + ".", + 59909, + 59909, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-md-end", + 59910, + 59929, + { + "value": "dropdown-menu-md-end" + } + ], + [ + "[-token", + "[", + 59930, + 59930, + null + ], + [ + "ident-token", + "data-bs-popper", + 59931, + 59944, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 59945, + 59945, + null + ], + [ + "{-token", + "{", + 59946, + 59946, + null + ], + [ + "ident-token", + "right", + 59947, + 59951, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 59952, + 59952, + null + ], + [ + "number-token", + "0", + 59953, + 59953, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 59954, + 59954, + null + ], + [ + "ident-token", + "left", + 59955, + 59958, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 59959, + 59959, + null + ], + [ + "ident-token", + "auto", + 59960, + 59963, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 59964, + 59964, + null + ], + [ + "}-token", + "}", + 59965, + 59965, + null + ], + [ + "at-keyword-token", + "@media", + 59966, + 59971, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 59972, + 59972, + null + ], + [ + "(-token", + "(", + 59973, + 59973, + null + ], + [ + "ident-token", + "min-width", + 59974, + 59982, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 59983, + 59983, + null + ], + [ + "dimension-token", + "992px", + 59984, + 59988, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 59989, + 59989, + null + ], + [ + "{-token", + "{", + 59990, + 59990, + null + ], + [ + "delim-token", + ".", + 59991, + 59991, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-lg-start", + 59992, + 60013, + { + "value": "dropdown-menu-lg-start" + } + ], + [ + "{-token", + "{", + 60014, + 60014, + null + ], + [ + "delim-token", + "-", + 60015, + 60015, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60016, + 60016, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60017, + 60027, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60028, + 60028, + null + ], + [ + "ident-token", + "start", + 60029, + 60033, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 60034, + 60034, + null + ], + [ + "delim-token", + ".", + 60035, + 60035, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-lg-start", + 60036, + 60057, + { + "value": "dropdown-menu-lg-start" + } + ], + [ + "[-token", + "[", + 60058, + 60058, + null + ], + [ + "ident-token", + "data-bs-popper", + 60059, + 60072, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60073, + 60073, + null + ], + [ + "{-token", + "{", + 60074, + 60074, + null + ], + [ + "ident-token", + "right", + 60075, + 60079, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60080, + 60080, + null + ], + [ + "ident-token", + "auto", + 60081, + 60084, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 60085, + 60085, + null + ], + [ + "ident-token", + "left", + 60086, + 60089, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60090, + 60090, + null + ], + [ + "number-token", + "0", + 60091, + 60091, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 60092, + 60092, + null + ], + [ + "delim-token", + ".", + 60093, + 60093, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-lg-end", + 60094, + 60113, + { + "value": "dropdown-menu-lg-end" + } + ], + [ + "{-token", + "{", + 60114, + 60114, + null + ], + [ + "delim-token", + "-", + 60115, + 60115, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60116, + 60116, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60117, + 60127, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60128, + 60128, + null + ], + [ + "ident-token", + "end", + 60129, + 60131, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 60132, + 60132, + null + ], + [ + "delim-token", + ".", + 60133, + 60133, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-lg-end", + 60134, + 60153, + { + "value": "dropdown-menu-lg-end" + } + ], + [ + "[-token", + "[", + 60154, + 60154, + null + ], + [ + "ident-token", + "data-bs-popper", + 60155, + 60168, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60169, + 60169, + null + ], + [ + "{-token", + "{", + 60170, + 60170, + null + ], + [ + "ident-token", + "right", + 60171, + 60175, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60176, + 60176, + null + ], + [ + "number-token", + "0", + 60177, + 60177, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 60178, + 60178, + null + ], + [ + "ident-token", + "left", + 60179, + 60182, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60183, + 60183, + null + ], + [ + "ident-token", + "auto", + 60184, + 60187, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 60188, + 60188, + null + ], + [ + "}-token", + "}", + 60189, + 60189, + null + ], + [ + "at-keyword-token", + "@media", + 60190, + 60195, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 60196, + 60196, + null + ], + [ + "(-token", + "(", + 60197, + 60197, + null + ], + [ + "ident-token", + "min-width", + 60198, + 60206, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 60207, + 60207, + null + ], + [ + "dimension-token", + "1200px", + 60208, + 60213, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 60214, + 60214, + null + ], + [ + "{-token", + "{", + 60215, + 60215, + null + ], + [ + "delim-token", + ".", + 60216, + 60216, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xl-start", + 60217, + 60238, + { + "value": "dropdown-menu-xl-start" + } + ], + [ + "{-token", + "{", + 60239, + 60239, + null + ], + [ + "delim-token", + "-", + 60240, + 60240, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60241, + 60241, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60242, + 60252, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60253, + 60253, + null + ], + [ + "ident-token", + "start", + 60254, + 60258, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 60259, + 60259, + null + ], + [ + "delim-token", + ".", + 60260, + 60260, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xl-start", + 60261, + 60282, + { + "value": "dropdown-menu-xl-start" + } + ], + [ + "[-token", + "[", + 60283, + 60283, + null + ], + [ + "ident-token", + "data-bs-popper", + 60284, + 60297, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60298, + 60298, + null + ], + [ + "{-token", + "{", + 60299, + 60299, + null + ], + [ + "ident-token", + "right", + 60300, + 60304, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60305, + 60305, + null + ], + [ + "ident-token", + "auto", + 60306, + 60309, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 60310, + 60310, + null + ], + [ + "ident-token", + "left", + 60311, + 60314, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60315, + 60315, + null + ], + [ + "number-token", + "0", + 60316, + 60316, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 60317, + 60317, + null + ], + [ + "delim-token", + ".", + 60318, + 60318, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xl-end", + 60319, + 60338, + { + "value": "dropdown-menu-xl-end" + } + ], + [ + "{-token", + "{", + 60339, + 60339, + null + ], + [ + "delim-token", + "-", + 60340, + 60340, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60341, + 60341, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60342, + 60352, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60353, + 60353, + null + ], + [ + "ident-token", + "end", + 60354, + 60356, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 60357, + 60357, + null + ], + [ + "delim-token", + ".", + 60358, + 60358, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xl-end", + 60359, + 60378, + { + "value": "dropdown-menu-xl-end" + } + ], + [ + "[-token", + "[", + 60379, + 60379, + null + ], + [ + "ident-token", + "data-bs-popper", + 60380, + 60393, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60394, + 60394, + null + ], + [ + "{-token", + "{", + 60395, + 60395, + null + ], + [ + "ident-token", + "right", + 60396, + 60400, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60401, + 60401, + null + ], + [ + "number-token", + "0", + 60402, + 60402, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 60403, + 60403, + null + ], + [ + "ident-token", + "left", + 60404, + 60407, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60408, + 60408, + null + ], + [ + "ident-token", + "auto", + 60409, + 60412, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 60413, + 60413, + null + ], + [ + "}-token", + "}", + 60414, + 60414, + null + ], + [ + "at-keyword-token", + "@media", + 60415, + 60420, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 60421, + 60421, + null + ], + [ + "(-token", + "(", + 60422, + 60422, + null + ], + [ + "ident-token", + "min-width", + 60423, + 60431, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 60432, + 60432, + null + ], + [ + "dimension-token", + "1400px", + 60433, + 60438, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 60439, + 60439, + null + ], + [ + "{-token", + "{", + 60440, + 60440, + null + ], + [ + "delim-token", + ".", + 60441, + 60441, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xxl-start", + 60442, + 60464, + { + "value": "dropdown-menu-xxl-start" + } + ], + [ + "{-token", + "{", + 60465, + 60465, + null + ], + [ + "delim-token", + "-", + 60466, + 60466, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60467, + 60467, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60468, + 60478, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60479, + 60479, + null + ], + [ + "ident-token", + "start", + 60480, + 60484, + { + "value": "start" + } + ], + [ + "}-token", + "}", + 60485, + 60485, + null + ], + [ + "delim-token", + ".", + 60486, + 60486, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xxl-start", + 60487, + 60509, + { + "value": "dropdown-menu-xxl-start" + } + ], + [ + "[-token", + "[", + 60510, + 60510, + null + ], + [ + "ident-token", + "data-bs-popper", + 60511, + 60524, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60525, + 60525, + null + ], + [ + "{-token", + "{", + 60526, + 60526, + null + ], + [ + "ident-token", + "right", + 60527, + 60531, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60532, + 60532, + null + ], + [ + "ident-token", + "auto", + 60533, + 60536, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 60537, + 60537, + null + ], + [ + "ident-token", + "left", + 60538, + 60541, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60542, + 60542, + null + ], + [ + "number-token", + "0", + 60543, + 60543, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 60544, + 60544, + null + ], + [ + "delim-token", + ".", + 60545, + 60545, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xxl-end", + 60546, + 60566, + { + "value": "dropdown-menu-xxl-end" + } + ], + [ + "{-token", + "{", + 60567, + 60567, + null + ], + [ + "delim-token", + "-", + 60568, + 60568, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60569, + 60569, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-position", + 60570, + 60580, + { + "value": "bs-position" + } + ], + [ + "colon-token", + ":", + 60581, + 60581, + null + ], + [ + "ident-token", + "end", + 60582, + 60584, + { + "value": "end" + } + ], + [ + "}-token", + "}", + 60585, + 60585, + null + ], + [ + "delim-token", + ".", + 60586, + 60586, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-xxl-end", + 60587, + 60607, + { + "value": "dropdown-menu-xxl-end" + } + ], + [ + "[-token", + "[", + 60608, + 60608, + null + ], + [ + "ident-token", + "data-bs-popper", + 60609, + 60622, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60623, + 60623, + null + ], + [ + "{-token", + "{", + 60624, + 60624, + null + ], + [ + "ident-token", + "right", + 60625, + 60629, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 60630, + 60630, + null + ], + [ + "number-token", + "0", + 60631, + 60631, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 60632, + 60632, + null + ], + [ + "ident-token", + "left", + 60633, + 60636, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 60637, + 60637, + null + ], + [ + "ident-token", + "auto", + 60638, + 60641, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 60642, + 60642, + null + ], + [ + "}-token", + "}", + 60643, + 60643, + null + ], + [ + "delim-token", + ".", + 60644, + 60644, + { + "value": "." + } + ], + [ + "ident-token", + "dropup", + 60645, + 60650, + { + "value": "dropup" + } + ], + [ + "whitespace-token", + " ", + 60651, + 60651, + null + ], + [ + "delim-token", + ".", + 60652, + 60652, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 60653, + 60665, + { + "value": "dropdown-menu" + } + ], + [ + "[-token", + "[", + 60666, + 60666, + null + ], + [ + "ident-token", + "data-bs-popper", + 60667, + 60680, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 60681, + 60681, + null + ], + [ + "{-token", + "{", + 60682, + 60682, + null + ], + [ + "ident-token", + "top", + 60683, + 60685, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 60686, + 60686, + null + ], + [ + "ident-token", + "auto", + 60687, + 60690, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 60691, + 60691, + null + ], + [ + "ident-token", + "bottom", + 60692, + 60697, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 60698, + 60698, + null + ], + [ + "percentage-token", + "100%", + 60699, + 60702, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 60703, + 60703, + null + ], + [ + "ident-token", + "margin-top", + 60704, + 60713, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 60714, + 60714, + null + ], + [ + "number-token", + "0", + 60715, + 60715, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 60716, + 60716, + null + ], + [ + "ident-token", + "margin-bottom", + 60717, + 60729, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 60730, + 60730, + null + ], + [ + "function-token", + "var(", + 60731, + 60734, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 60735, + 60735, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 60736, + 60736, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-spacer", + 60737, + 60754, + { + "value": "bs-dropdown-spacer" + } + ], + [ + ")-token", + ")", + 60755, + 60755, + null + ], + [ + "}-token", + "}", + 60756, + 60756, + null + ], + [ + "delim-token", + ".", + 60757, + 60757, + { + "value": "." + } + ], + [ + "ident-token", + "dropup", + 60758, + 60763, + { + "value": "dropup" + } + ], + [ + "whitespace-token", + " ", + 60764, + 60764, + null + ], + [ + "delim-token", + ".", + 60765, + 60765, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 60766, + 60780, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 60781, + 60781, + null + ], + [ + "colon-token", + ":", + 60782, + 60782, + null + ], + [ + "ident-token", + "after", + 60783, + 60787, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 60788, + 60788, + null + ], + [ + "ident-token", + "display", + 60789, + 60795, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 60796, + 60796, + null + ], + [ + "ident-token", + "inline-block", + 60797, + 60808, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 60809, + 60809, + null + ], + [ + "ident-token", + "margin-left", + 60810, + 60820, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 60821, + 60821, + null + ], + [ + "dimension-token", + ".255em", + 60822, + 60827, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 60828, + 60828, + null + ], + [ + "ident-token", + "vertical-align", + 60829, + 60842, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 60843, + 60843, + null + ], + [ + "dimension-token", + ".255em", + 60844, + 60849, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 60850, + 60850, + null + ], + [ + "ident-token", + "content", + 60851, + 60857, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 60858, + 60858, + null + ], + [ + "string-token", + "\"\"", + 60859, + 60860, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 60861, + 60861, + null + ], + [ + "ident-token", + "border-top", + 60862, + 60871, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 60872, + 60872, + null + ], + [ + "number-token", + "0", + 60873, + 60873, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 60874, + 60874, + null + ], + [ + "ident-token", + "border-right", + 60875, + 60886, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 60887, + 60887, + null + ], + [ + "dimension-token", + ".3em", + 60888, + 60891, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 60892, + 60892, + null + ], + [ + "ident-token", + "solid", + 60893, + 60897, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 60898, + 60898, + null + ], + [ + "ident-token", + "transparent", + 60899, + 60909, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 60910, + 60910, + null + ], + [ + "ident-token", + "border-bottom", + 60911, + 60923, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 60924, + 60924, + null + ], + [ + "dimension-token", + ".3em", + 60925, + 60928, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 60929, + 60929, + null + ], + [ + "ident-token", + "solid", + 60930, + 60934, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 60935, + 60935, + null + ], + [ + "ident-token", + "border-left", + 60936, + 60946, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 60947, + 60947, + null + ], + [ + "dimension-token", + ".3em", + 60948, + 60951, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 60952, + 60952, + null + ], + [ + "ident-token", + "solid", + 60953, + 60957, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 60958, + 60958, + null + ], + [ + "ident-token", + "transparent", + 60959, + 60969, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 60970, + 60970, + null + ], + [ + "delim-token", + ".", + 60971, + 60971, + { + "value": "." + } + ], + [ + "ident-token", + "dropup", + 60972, + 60977, + { + "value": "dropup" + } + ], + [ + "whitespace-token", + " ", + 60978, + 60978, + null + ], + [ + "delim-token", + ".", + 60979, + 60979, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 60980, + 60994, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 60995, + 60995, + null + ], + [ + "ident-token", + "empty", + 60996, + 61000, + { + "value": "empty" + } + ], + [ + "colon-token", + ":", + 61001, + 61001, + null + ], + [ + "colon-token", + ":", + 61002, + 61002, + null + ], + [ + "ident-token", + "after", + 61003, + 61007, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61008, + 61008, + null + ], + [ + "ident-token", + "margin-left", + 61009, + 61019, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61020, + 61020, + null + ], + [ + "number-token", + "0", + 61021, + 61021, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 61022, + 61022, + null + ], + [ + "delim-token", + ".", + 61023, + 61023, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 61024, + 61030, + { + "value": "dropend" + } + ], + [ + "whitespace-token", + " ", + 61031, + 61031, + null + ], + [ + "delim-token", + ".", + 61032, + 61032, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 61033, + 61045, + { + "value": "dropdown-menu" + } + ], + [ + "[-token", + "[", + 61046, + 61046, + null + ], + [ + "ident-token", + "data-bs-popper", + 61047, + 61060, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 61061, + 61061, + null + ], + [ + "{-token", + "{", + 61062, + 61062, + null + ], + [ + "ident-token", + "top", + 61063, + 61065, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 61066, + 61066, + null + ], + [ + "number-token", + "0", + 61067, + 61067, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 61068, + 61068, + null + ], + [ + "ident-token", + "right", + 61069, + 61073, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 61074, + 61074, + null + ], + [ + "ident-token", + "auto", + 61075, + 61078, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 61079, + 61079, + null + ], + [ + "ident-token", + "left", + 61080, + 61083, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 61084, + 61084, + null + ], + [ + "percentage-token", + "100%", + 61085, + 61088, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 61089, + 61089, + null + ], + [ + "ident-token", + "margin-top", + 61090, + 61099, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 61100, + 61100, + null + ], + [ + "number-token", + "0", + 61101, + 61101, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 61102, + 61102, + null + ], + [ + "ident-token", + "margin-left", + 61103, + 61113, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61114, + 61114, + null + ], + [ + "function-token", + "var(", + 61115, + 61118, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 61119, + 61119, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 61120, + 61120, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-spacer", + 61121, + 61138, + { + "value": "bs-dropdown-spacer" + } + ], + [ + ")-token", + ")", + 61139, + 61139, + null + ], + [ + "}-token", + "}", + 61140, + 61140, + null + ], + [ + "delim-token", + ".", + 61141, + 61141, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 61142, + 61148, + { + "value": "dropend" + } + ], + [ + "whitespace-token", + " ", + 61149, + 61149, + null + ], + [ + "delim-token", + ".", + 61150, + 61150, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61151, + 61165, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61166, + 61166, + null + ], + [ + "colon-token", + ":", + 61167, + 61167, + null + ], + [ + "ident-token", + "after", + 61168, + 61172, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61173, + 61173, + null + ], + [ + "ident-token", + "display", + 61174, + 61180, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 61181, + 61181, + null + ], + [ + "ident-token", + "inline-block", + 61182, + 61193, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 61194, + 61194, + null + ], + [ + "ident-token", + "margin-left", + 61195, + 61205, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61206, + 61206, + null + ], + [ + "dimension-token", + ".255em", + 61207, + 61212, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61213, + 61213, + null + ], + [ + "ident-token", + "vertical-align", + 61214, + 61227, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 61228, + 61228, + null + ], + [ + "dimension-token", + ".255em", + 61229, + 61234, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61235, + 61235, + null + ], + [ + "ident-token", + "content", + 61236, + 61242, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 61243, + 61243, + null + ], + [ + "string-token", + "\"\"", + 61244, + 61245, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 61246, + 61246, + null + ], + [ + "ident-token", + "border-top", + 61247, + 61256, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 61257, + 61257, + null + ], + [ + "dimension-token", + ".3em", + 61258, + 61261, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61262, + 61262, + null + ], + [ + "ident-token", + "solid", + 61263, + 61267, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 61268, + 61268, + null + ], + [ + "ident-token", + "transparent", + 61269, + 61279, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 61280, + 61280, + null + ], + [ + "ident-token", + "border-right", + 61281, + 61292, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 61293, + 61293, + null + ], + [ + "number-token", + "0", + 61294, + 61294, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 61295, + 61295, + null + ], + [ + "ident-token", + "border-bottom", + 61296, + 61308, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 61309, + 61309, + null + ], + [ + "dimension-token", + ".3em", + 61310, + 61313, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61314, + 61314, + null + ], + [ + "ident-token", + "solid", + 61315, + 61319, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 61320, + 61320, + null + ], + [ + "ident-token", + "transparent", + 61321, + 61331, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 61332, + 61332, + null + ], + [ + "ident-token", + "border-left", + 61333, + 61343, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 61344, + 61344, + null + ], + [ + "dimension-token", + ".3em", + 61345, + 61348, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61349, + 61349, + null + ], + [ + "ident-token", + "solid", + 61350, + 61354, + { + "value": "solid" + } + ], + [ + "}-token", + "}", + 61355, + 61355, + null + ], + [ + "delim-token", + ".", + 61356, + 61356, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 61357, + 61363, + { + "value": "dropend" + } + ], + [ + "whitespace-token", + " ", + 61364, + 61364, + null + ], + [ + "delim-token", + ".", + 61365, + 61365, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61366, + 61380, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61381, + 61381, + null + ], + [ + "ident-token", + "empty", + 61382, + 61386, + { + "value": "empty" + } + ], + [ + "colon-token", + ":", + 61387, + 61387, + null + ], + [ + "colon-token", + ":", + 61388, + 61388, + null + ], + [ + "ident-token", + "after", + 61389, + 61393, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61394, + 61394, + null + ], + [ + "ident-token", + "margin-left", + 61395, + 61405, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61406, + 61406, + null + ], + [ + "number-token", + "0", + 61407, + 61407, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 61408, + 61408, + null + ], + [ + "delim-token", + ".", + 61409, + 61409, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 61410, + 61416, + { + "value": "dropend" + } + ], + [ + "whitespace-token", + " ", + 61417, + 61417, + null + ], + [ + "delim-token", + ".", + 61418, + 61418, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61419, + 61433, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61434, + 61434, + null + ], + [ + "colon-token", + ":", + 61435, + 61435, + null + ], + [ + "ident-token", + "after", + 61436, + 61440, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61441, + 61441, + null + ], + [ + "ident-token", + "vertical-align", + 61442, + 61455, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 61456, + 61456, + null + ], + [ + "number-token", + "0", + 61457, + 61457, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 61458, + 61458, + null + ], + [ + "delim-token", + ".", + 61459, + 61459, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61460, + 61468, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 61469, + 61469, + null + ], + [ + "delim-token", + ".", + 61470, + 61470, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 61471, + 61483, + { + "value": "dropdown-menu" + } + ], + [ + "[-token", + "[", + 61484, + 61484, + null + ], + [ + "ident-token", + "data-bs-popper", + 61485, + 61498, + { + "value": "data-bs-popper" + } + ], + [ + "]-token", + "]", + 61499, + 61499, + null + ], + [ + "{-token", + "{", + 61500, + 61500, + null + ], + [ + "ident-token", + "top", + 61501, + 61503, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 61504, + 61504, + null + ], + [ + "number-token", + "0", + 61505, + 61505, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 61506, + 61506, + null + ], + [ + "ident-token", + "right", + 61507, + 61511, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 61512, + 61512, + null + ], + [ + "percentage-token", + "100%", + 61513, + 61516, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 61517, + 61517, + null + ], + [ + "ident-token", + "left", + 61518, + 61521, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 61522, + 61522, + null + ], + [ + "ident-token", + "auto", + 61523, + 61526, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 61527, + 61527, + null + ], + [ + "ident-token", + "margin-top", + 61528, + 61537, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 61538, + 61538, + null + ], + [ + "number-token", + "0", + 61539, + 61539, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 61540, + 61540, + null + ], + [ + "ident-token", + "margin-right", + 61541, + 61552, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 61553, + 61553, + null + ], + [ + "function-token", + "var(", + 61554, + 61557, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 61558, + 61558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 61559, + 61559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-spacer", + 61560, + 61577, + { + "value": "bs-dropdown-spacer" + } + ], + [ + ")-token", + ")", + 61578, + 61578, + null + ], + [ + "}-token", + "}", + 61579, + 61579, + null + ], + [ + "delim-token", + ".", + 61580, + 61580, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61581, + 61589, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 61590, + 61590, + null + ], + [ + "delim-token", + ".", + 61591, + 61591, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61592, + 61606, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61607, + 61607, + null + ], + [ + "colon-token", + ":", + 61608, + 61608, + null + ], + [ + "ident-token", + "after", + 61609, + 61613, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61614, + 61614, + null + ], + [ + "ident-token", + "display", + 61615, + 61621, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 61622, + 61622, + null + ], + [ + "ident-token", + "inline-block", + 61623, + 61634, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 61635, + 61635, + null + ], + [ + "ident-token", + "margin-left", + 61636, + 61646, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61647, + 61647, + null + ], + [ + "dimension-token", + ".255em", + 61648, + 61653, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61654, + 61654, + null + ], + [ + "ident-token", + "vertical-align", + 61655, + 61668, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 61669, + 61669, + null + ], + [ + "dimension-token", + ".255em", + 61670, + 61675, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61676, + 61676, + null + ], + [ + "ident-token", + "content", + 61677, + 61683, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 61684, + 61684, + null + ], + [ + "string-token", + "\"\"", + 61685, + 61686, + { + "value": "" + } + ], + [ + "}-token", + "}", + 61687, + 61687, + null + ], + [ + "delim-token", + ".", + 61688, + 61688, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61689, + 61697, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 61698, + 61698, + null + ], + [ + "delim-token", + ".", + 61699, + 61699, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61700, + 61714, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61715, + 61715, + null + ], + [ + "colon-token", + ":", + 61716, + 61716, + null + ], + [ + "ident-token", + "after", + 61717, + 61721, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61722, + 61722, + null + ], + [ + "ident-token", + "display", + 61723, + 61729, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 61730, + 61730, + null + ], + [ + "ident-token", + "none", + 61731, + 61734, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 61735, + 61735, + null + ], + [ + "delim-token", + ".", + 61736, + 61736, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61737, + 61745, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 61746, + 61746, + null + ], + [ + "delim-token", + ".", + 61747, + 61747, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61748, + 61762, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61763, + 61763, + null + ], + [ + "colon-token", + ":", + 61764, + 61764, + null + ], + [ + "ident-token", + "before", + 61765, + 61770, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 61771, + 61771, + null + ], + [ + "ident-token", + "display", + 61772, + 61778, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 61779, + 61779, + null + ], + [ + "ident-token", + "inline-block", + 61780, + 61791, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 61792, + 61792, + null + ], + [ + "ident-token", + "margin-right", + 61793, + 61804, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 61805, + 61805, + null + ], + [ + "dimension-token", + ".255em", + 61806, + 61811, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61812, + 61812, + null + ], + [ + "ident-token", + "vertical-align", + 61813, + 61826, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 61827, + 61827, + null + ], + [ + "dimension-token", + ".255em", + 61828, + 61833, + { + "value": 0.255, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 61834, + 61834, + null + ], + [ + "ident-token", + "content", + 61835, + 61841, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 61842, + 61842, + null + ], + [ + "string-token", + "\"\"", + 61843, + 61844, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 61845, + 61845, + null + ], + [ + "ident-token", + "border-top", + 61846, + 61855, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 61856, + 61856, + null + ], + [ + "dimension-token", + ".3em", + 61857, + 61860, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61861, + 61861, + null + ], + [ + "ident-token", + "solid", + 61862, + 61866, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 61867, + 61867, + null + ], + [ + "ident-token", + "transparent", + 61868, + 61878, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 61879, + 61879, + null + ], + [ + "ident-token", + "border-right", + 61880, + 61891, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 61892, + 61892, + null + ], + [ + "dimension-token", + ".3em", + 61893, + 61896, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61897, + 61897, + null + ], + [ + "ident-token", + "solid", + 61898, + 61902, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 61903, + 61903, + null + ], + [ + "ident-token", + "border-bottom", + 61904, + 61916, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 61917, + 61917, + null + ], + [ + "dimension-token", + ".3em", + 61918, + 61921, + { + "value": 0.3, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 61922, + 61922, + null + ], + [ + "ident-token", + "solid", + 61923, + 61927, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 61928, + 61928, + null + ], + [ + "ident-token", + "transparent", + 61929, + 61939, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 61940, + 61940, + null + ], + [ + "delim-token", + ".", + 61941, + 61941, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61942, + 61950, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 61951, + 61951, + null + ], + [ + "delim-token", + ".", + 61952, + 61952, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 61953, + 61967, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 61968, + 61968, + null + ], + [ + "ident-token", + "empty", + 61969, + 61973, + { + "value": "empty" + } + ], + [ + "colon-token", + ":", + 61974, + 61974, + null + ], + [ + "colon-token", + ":", + 61975, + 61975, + null + ], + [ + "ident-token", + "after", + 61976, + 61980, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 61981, + 61981, + null + ], + [ + "ident-token", + "margin-left", + 61982, + 61992, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 61993, + 61993, + null + ], + [ + "number-token", + "0", + 61994, + 61994, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 61995, + 61995, + null + ], + [ + "delim-token", + ".", + 61996, + 61996, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 61997, + 62005, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 62006, + 62006, + null + ], + [ + "delim-token", + ".", + 62007, + 62007, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 62008, + 62022, + { + "value": "dropdown-toggle" + } + ], + [ + "colon-token", + ":", + 62023, + 62023, + null + ], + [ + "colon-token", + ":", + 62024, + 62024, + null + ], + [ + "ident-token", + "before", + 62025, + 62030, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 62031, + 62031, + null + ], + [ + "ident-token", + "vertical-align", + 62032, + 62045, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 62046, + 62046, + null + ], + [ + "number-token", + "0", + 62047, + 62047, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 62048, + 62048, + null + ], + [ + "delim-token", + ".", + 62049, + 62049, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-divider", + 62050, + 62065, + { + "value": "dropdown-divider" + } + ], + [ + "{-token", + "{", + 62066, + 62066, + null + ], + [ + "ident-token", + "height", + 62067, + 62072, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 62073, + 62073, + null + ], + [ + "number-token", + "0", + 62074, + 62074, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 62075, + 62075, + null + ], + [ + "ident-token", + "margin", + 62076, + 62081, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 62082, + 62082, + null + ], + [ + "function-token", + "var(", + 62083, + 62086, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62087, + 62087, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62088, + 62088, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-divider-margin-y", + 62089, + 62116, + { + "value": "bs-dropdown-divider-margin-y" + } + ], + [ + ")-token", + ")", + 62117, + 62117, + null + ], + [ + "whitespace-token", + " ", + 62118, + 62118, + null + ], + [ + "number-token", + "0", + 62119, + 62119, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 62120, + 62120, + null + ], + [ + "ident-token", + "overflow", + 62121, + 62128, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 62129, + 62129, + null + ], + [ + "ident-token", + "hidden", + 62130, + 62135, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 62136, + 62136, + null + ], + [ + "ident-token", + "border-top", + 62137, + 62146, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 62147, + 62147, + null + ], + [ + "dimension-token", + "1px", + 62148, + 62150, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 62151, + 62151, + null + ], + [ + "ident-token", + "solid", + 62152, + 62156, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 62157, + 62157, + null + ], + [ + "function-token", + "var(", + 62158, + 62161, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62162, + 62162, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62163, + 62163, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-divider-bg", + 62164, + 62185, + { + "value": "bs-dropdown-divider-bg" + } + ], + [ + ")-token", + ")", + 62186, + 62186, + null + ], + [ + "semicolon-token", + ";", + 62187, + 62187, + null + ], + [ + "ident-token", + "opacity", + 62188, + 62194, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 62195, + 62195, + null + ], + [ + "number-token", + "1", + 62196, + 62196, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 62197, + 62197, + null + ], + [ + "delim-token", + ".", + 62198, + 62198, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62199, + 62211, + { + "value": "dropdown-item" + } + ], + [ + "{-token", + "{", + 62212, + 62212, + null + ], + [ + "ident-token", + "display", + 62213, + 62219, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 62220, + 62220, + null + ], + [ + "ident-token", + "block", + 62221, + 62225, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 62226, + 62226, + null + ], + [ + "ident-token", + "width", + 62227, + 62231, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 62232, + 62232, + null + ], + [ + "percentage-token", + "100%", + 62233, + 62236, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 62237, + 62237, + null + ], + [ + "ident-token", + "padding", + 62238, + 62244, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 62245, + 62245, + null + ], + [ + "function-token", + "var(", + 62246, + 62249, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62250, + 62250, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62251, + 62251, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-y", + 62252, + 62277, + { + "value": "bs-dropdown-item-padding-y" + } + ], + [ + ")-token", + ")", + 62278, + 62278, + null + ], + [ + "whitespace-token", + " ", + 62279, + 62279, + null + ], + [ + "function-token", + "var(", + 62280, + 62283, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62284, + 62284, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62285, + 62285, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-x", + 62286, + 62311, + { + "value": "bs-dropdown-item-padding-x" + } + ], + [ + ")-token", + ")", + 62312, + 62312, + null + ], + [ + "semicolon-token", + ";", + 62313, + 62313, + null + ], + [ + "ident-token", + "clear", + 62314, + 62318, + { + "value": "clear" + } + ], + [ + "colon-token", + ":", + 62319, + 62319, + null + ], + [ + "ident-token", + "both", + 62320, + 62323, + { + "value": "both" + } + ], + [ + "semicolon-token", + ";", + 62324, + 62324, + null + ], + [ + "ident-token", + "font-weight", + 62325, + 62335, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 62336, + 62336, + null + ], + [ + "number-token", + "400", + 62337, + 62339, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 62340, + 62340, + null + ], + [ + "ident-token", + "color", + 62341, + 62345, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 62346, + 62346, + null + ], + [ + "function-token", + "var(", + 62347, + 62350, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62351, + 62351, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62352, + 62352, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-color", + 62353, + 62374, + { + "value": "bs-dropdown-link-color" + } + ], + [ + ")-token", + ")", + 62375, + 62375, + null + ], + [ + "semicolon-token", + ";", + 62376, + 62376, + null + ], + [ + "ident-token", + "text-align", + 62377, + 62386, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 62387, + 62387, + null + ], + [ + "ident-token", + "inherit", + 62388, + 62394, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 62395, + 62395, + null + ], + [ + "ident-token", + "text-decoration", + 62396, + 62410, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 62411, + 62411, + null + ], + [ + "ident-token", + "none", + 62412, + 62415, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 62416, + 62416, + null + ], + [ + "ident-token", + "white-space", + 62417, + 62427, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 62428, + 62428, + null + ], + [ + "ident-token", + "nowrap", + 62429, + 62434, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 62435, + 62435, + null + ], + [ + "ident-token", + "background-color", + 62436, + 62451, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 62452, + 62452, + null + ], + [ + "ident-token", + "transparent", + 62453, + 62463, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 62464, + 62464, + null + ], + [ + "ident-token", + "border", + 62465, + 62470, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 62471, + 62471, + null + ], + [ + "number-token", + "0", + 62472, + 62472, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 62473, + 62473, + null + ], + [ + "delim-token", + ".", + 62474, + 62474, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62475, + 62487, + { + "value": "dropdown-item" + } + ], + [ + "colon-token", + ":", + 62488, + 62488, + null + ], + [ + "ident-token", + "focus", + 62489, + 62493, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 62494, + 62494, + null + ], + [ + "delim-token", + ".", + 62495, + 62495, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62496, + 62508, + { + "value": "dropdown-item" + } + ], + [ + "colon-token", + ":", + 62509, + 62509, + null + ], + [ + "ident-token", + "hover", + 62510, + 62514, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 62515, + 62515, + null + ], + [ + "ident-token", + "color", + 62516, + 62520, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 62521, + 62521, + null + ], + [ + "function-token", + "var(", + 62522, + 62525, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62526, + 62526, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62527, + 62527, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-color", + 62528, + 62555, + { + "value": "bs-dropdown-link-hover-color" + } + ], + [ + ")-token", + ")", + 62556, + 62556, + null + ], + [ + "semicolon-token", + ";", + 62557, + 62557, + null + ], + [ + "ident-token", + "background-color", + 62558, + 62573, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 62574, + 62574, + null + ], + [ + "function-token", + "var(", + 62575, + 62578, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62579, + 62579, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62580, + 62580, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-bg", + 62581, + 62605, + { + "value": "bs-dropdown-link-hover-bg" + } + ], + [ + ")-token", + ")", + 62606, + 62606, + null + ], + [ + "}-token", + "}", + 62607, + 62607, + null + ], + [ + "delim-token", + ".", + 62608, + 62608, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62609, + 62621, + { + "value": "dropdown-item" + } + ], + [ + "delim-token", + ".", + 62622, + 62622, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 62623, + 62628, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 62629, + 62629, + null + ], + [ + "delim-token", + ".", + 62630, + 62630, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62631, + 62643, + { + "value": "dropdown-item" + } + ], + [ + "colon-token", + ":", + 62644, + 62644, + null + ], + [ + "ident-token", + "active", + 62645, + 62650, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 62651, + 62651, + null + ], + [ + "ident-token", + "color", + 62652, + 62656, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 62657, + 62657, + null + ], + [ + "function-token", + "var(", + 62658, + 62661, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62662, + 62662, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62663, + 62663, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-color", + 62664, + 62692, + { + "value": "bs-dropdown-link-active-color" + } + ], + [ + ")-token", + ")", + 62693, + 62693, + null + ], + [ + "semicolon-token", + ";", + 62694, + 62694, + null + ], + [ + "ident-token", + "text-decoration", + 62695, + 62709, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 62710, + 62710, + null + ], + [ + "ident-token", + "none", + 62711, + 62714, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 62715, + 62715, + null + ], + [ + "ident-token", + "background-color", + 62716, + 62731, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 62732, + 62732, + null + ], + [ + "function-token", + "var(", + 62733, + 62736, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62737, + 62737, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62738, + 62738, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-bg", + 62739, + 62764, + { + "value": "bs-dropdown-link-active-bg" + } + ], + [ + ")-token", + ")", + 62765, + 62765, + null + ], + [ + "}-token", + "}", + 62766, + 62766, + null + ], + [ + "delim-token", + ".", + 62767, + 62767, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62768, + 62780, + { + "value": "dropdown-item" + } + ], + [ + "delim-token", + ".", + 62781, + 62781, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 62782, + 62789, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 62790, + 62790, + null + ], + [ + "delim-token", + ".", + 62791, + 62791, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item", + 62792, + 62804, + { + "value": "dropdown-item" + } + ], + [ + "colon-token", + ":", + 62805, + 62805, + null + ], + [ + "ident-token", + "disabled", + 62806, + 62813, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 62814, + 62814, + null + ], + [ + "ident-token", + "color", + 62815, + 62819, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 62820, + 62820, + null + ], + [ + "function-token", + "var(", + 62821, + 62824, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62825, + 62825, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62826, + 62826, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-disabled-color", + 62827, + 62857, + { + "value": "bs-dropdown-link-disabled-color" + } + ], + [ + ")-token", + ")", + 62858, + 62858, + null + ], + [ + "semicolon-token", + ";", + 62859, + 62859, + null + ], + [ + "ident-token", + "pointer-events", + 62860, + 62873, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 62874, + 62874, + null + ], + [ + "ident-token", + "none", + 62875, + 62878, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 62879, + 62879, + null + ], + [ + "ident-token", + "background-color", + 62880, + 62895, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 62896, + 62896, + null + ], + [ + "ident-token", + "transparent", + 62897, + 62907, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 62908, + 62908, + null + ], + [ + "delim-token", + ".", + 62909, + 62909, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 62910, + 62922, + { + "value": "dropdown-menu" + } + ], + [ + "delim-token", + ".", + 62923, + 62923, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 62924, + 62927, + { + "value": "show" + } + ], + [ + "{-token", + "{", + 62928, + 62928, + null + ], + [ + "ident-token", + "display", + 62929, + 62935, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 62936, + 62936, + null + ], + [ + "ident-token", + "block", + 62937, + 62941, + { + "value": "block" + } + ], + [ + "}-token", + "}", + 62942, + 62942, + null + ], + [ + "delim-token", + ".", + 62943, + 62943, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-header", + 62944, + 62958, + { + "value": "dropdown-header" + } + ], + [ + "{-token", + "{", + 62959, + 62959, + null + ], + [ + "ident-token", + "display", + 62960, + 62966, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 62967, + 62967, + null + ], + [ + "ident-token", + "block", + 62968, + 62972, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 62973, + 62973, + null + ], + [ + "ident-token", + "padding", + 62974, + 62980, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 62981, + 62981, + null + ], + [ + "function-token", + "var(", + 62982, + 62985, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 62986, + 62986, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 62987, + 62987, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-padding-y", + 62988, + 63015, + { + "value": "bs-dropdown-header-padding-y" + } + ], + [ + ")-token", + ")", + 63016, + 63016, + null + ], + [ + "whitespace-token", + " ", + 63017, + 63017, + null + ], + [ + "function-token", + "var(", + 63018, + 63021, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63022, + 63022, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63023, + 63023, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-padding-x", + 63024, + 63051, + { + "value": "bs-dropdown-header-padding-x" + } + ], + [ + ")-token", + ")", + 63052, + 63052, + null + ], + [ + "semicolon-token", + ";", + 63053, + 63053, + null + ], + [ + "ident-token", + "margin-bottom", + 63054, + 63066, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 63067, + 63067, + null + ], + [ + "number-token", + "0", + 63068, + 63068, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 63069, + 63069, + null + ], + [ + "ident-token", + "font-size", + 63070, + 63078, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 63079, + 63079, + null + ], + [ + "dimension-token", + ".875rem", + 63080, + 63086, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 63087, + 63087, + null + ], + [ + "ident-token", + "color", + 63088, + 63092, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 63093, + 63093, + null + ], + [ + "function-token", + "var(", + 63094, + 63097, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63098, + 63098, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63099, + 63099, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-color", + 63100, + 63123, + { + "value": "bs-dropdown-header-color" + } + ], + [ + ")-token", + ")", + 63124, + 63124, + null + ], + [ + "semicolon-token", + ";", + 63125, + 63125, + null + ], + [ + "ident-token", + "white-space", + 63126, + 63136, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 63137, + 63137, + null + ], + [ + "ident-token", + "nowrap", + 63138, + 63143, + { + "value": "nowrap" + } + ], + [ + "}-token", + "}", + 63144, + 63144, + null + ], + [ + "delim-token", + ".", + 63145, + 63145, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-item-text", + 63146, + 63163, + { + "value": "dropdown-item-text" + } + ], + [ + "{-token", + "{", + 63164, + 63164, + null + ], + [ + "ident-token", + "display", + 63165, + 63171, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 63172, + 63172, + null + ], + [ + "ident-token", + "block", + 63173, + 63177, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 63178, + 63178, + null + ], + [ + "ident-token", + "padding", + 63179, + 63185, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 63186, + 63186, + null + ], + [ + "function-token", + "var(", + 63187, + 63190, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63191, + 63191, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63192, + 63192, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-y", + 63193, + 63218, + { + "value": "bs-dropdown-item-padding-y" + } + ], + [ + ")-token", + ")", + 63219, + 63219, + null + ], + [ + "whitespace-token", + " ", + 63220, + 63220, + null + ], + [ + "function-token", + "var(", + 63221, + 63224, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63225, + 63225, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63226, + 63226, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-item-padding-x", + 63227, + 63252, + { + "value": "bs-dropdown-item-padding-x" + } + ], + [ + ")-token", + ")", + 63253, + 63253, + null + ], + [ + "semicolon-token", + ";", + 63254, + 63254, + null + ], + [ + "ident-token", + "color", + 63255, + 63259, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 63260, + 63260, + null + ], + [ + "function-token", + "var(", + 63261, + 63264, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63265, + 63265, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63266, + 63266, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-color", + 63267, + 63288, + { + "value": "bs-dropdown-link-color" + } + ], + [ + ")-token", + ")", + 63289, + 63289, + null + ], + [ + "}-token", + "}", + 63290, + 63290, + null + ], + [ + "delim-token", + ".", + 63291, + 63291, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu-dark", + 63292, + 63309, + { + "value": "dropdown-menu-dark" + } + ], + [ + "{-token", + "{", + 63310, + 63310, + null + ], + [ + "delim-token", + "-", + 63311, + 63311, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63312, + 63312, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-color", + 63313, + 63329, + { + "value": "bs-dropdown-color" + } + ], + [ + "colon-token", + ":", + 63330, + 63330, + null + ], + [ + "hash-token", + "#dee2e6", + 63331, + 63337, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 63338, + 63338, + null + ], + [ + "delim-token", + "-", + 63339, + 63339, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63340, + 63340, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-bg", + 63341, + 63354, + { + "value": "bs-dropdown-bg" + } + ], + [ + "colon-token", + ":", + 63355, + 63355, + null + ], + [ + "hash-token", + "#343a40", + 63356, + 63362, + { + "value": "343a40", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 63363, + 63363, + null + ], + [ + "delim-token", + "-", + 63364, + 63364, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63365, + 63365, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-border-color", + 63366, + 63389, + { + "value": "bs-dropdown-border-color" + } + ], + [ + "colon-token", + ":", + 63390, + 63390, + null + ], + [ + "function-token", + "var(", + 63391, + 63394, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63395, + 63395, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63396, + 63396, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 63397, + 63423, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 63424, + 63424, + null + ], + [ + "semicolon-token", + ";", + 63425, + 63425, + null + ], + [ + "delim-token", + "-", + 63426, + 63426, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63427, + 63427, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-box-shadow", + 63428, + 63449, + { + "value": "bs-dropdown-box-shadow" + } + ], + [ + "colon-token", + ":", + 63450, + 63450, + null + ], + [ + "whitespace-token", + " ", + 63451, + 63451, + null + ], + [ + "semicolon-token", + ";", + 63452, + 63452, + null + ], + [ + "delim-token", + "-", + 63453, + 63453, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63454, + 63454, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-color", + 63455, + 63476, + { + "value": "bs-dropdown-link-color" + } + ], + [ + "colon-token", + ":", + 63477, + 63477, + null + ], + [ + "hash-token", + "#dee2e6", + 63478, + 63484, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 63485, + 63485, + null + ], + [ + "delim-token", + "-", + 63486, + 63486, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63487, + 63487, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-color", + 63488, + 63515, + { + "value": "bs-dropdown-link-hover-color" + } + ], + [ + "colon-token", + ":", + 63516, + 63516, + null + ], + [ + "hash-token", + "#fff", + 63517, + 63520, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 63521, + 63521, + null + ], + [ + "delim-token", + "-", + 63522, + 63522, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63523, + 63523, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-divider-bg", + 63524, + 63545, + { + "value": "bs-dropdown-divider-bg" + } + ], + [ + "colon-token", + ":", + 63546, + 63546, + null + ], + [ + "function-token", + "var(", + 63547, + 63550, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 63551, + 63551, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63552, + 63552, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 63553, + 63579, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 63580, + 63580, + null + ], + [ + "semicolon-token", + ";", + 63581, + 63581, + null + ], + [ + "delim-token", + "-", + 63582, + 63582, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63583, + 63583, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-hover-bg", + 63584, + 63608, + { + "value": "bs-dropdown-link-hover-bg" + } + ], + [ + "colon-token", + ":", + 63609, + 63609, + null + ], + [ + "function-token", + "rgba(", + 63610, + 63614, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 63615, + 63617, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 63618, + 63618, + null + ], + [ + "whitespace-token", + " ", + 63619, + 63619, + null + ], + [ + "number-token", + "255", + 63620, + 63622, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 63623, + 63623, + null + ], + [ + "whitespace-token", + " ", + 63624, + 63624, + null + ], + [ + "number-token", + "255", + 63625, + 63627, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 63628, + 63628, + null + ], + [ + "whitespace-token", + " ", + 63629, + 63629, + null + ], + [ + "number-token", + "0.15", + 63630, + 63633, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 63634, + 63634, + null + ], + [ + "semicolon-token", + ";", + 63635, + 63635, + null + ], + [ + "delim-token", + "-", + 63636, + 63636, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63637, + 63637, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-color", + 63638, + 63666, + { + "value": "bs-dropdown-link-active-color" + } + ], + [ + "colon-token", + ":", + 63667, + 63667, + null + ], + [ + "hash-token", + "#fff", + 63668, + 63671, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 63672, + 63672, + null + ], + [ + "delim-token", + "-", + 63673, + 63673, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63674, + 63674, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-active-bg", + 63675, + 63700, + { + "value": "bs-dropdown-link-active-bg" + } + ], + [ + "colon-token", + ":", + 63701, + 63701, + null + ], + [ + "hash-token", + "#0d6efd", + 63702, + 63708, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 63709, + 63709, + null + ], + [ + "delim-token", + "-", + 63710, + 63710, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63711, + 63711, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-link-disabled-color", + 63712, + 63742, + { + "value": "bs-dropdown-link-disabled-color" + } + ], + [ + "colon-token", + ":", + 63743, + 63743, + null + ], + [ + "hash-token", + "#adb5bd", + 63744, + 63750, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 63751, + 63751, + null + ], + [ + "delim-token", + "-", + 63752, + 63752, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 63753, + 63753, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dropdown-header-color", + 63754, + 63777, + { + "value": "bs-dropdown-header-color" + } + ], + [ + "colon-token", + ":", + 63778, + 63778, + null + ], + [ + "hash-token", + "#adb5bd", + 63779, + 63785, + { + "value": "adb5bd", + "type": "id" + } + ], + [ + "}-token", + "}", + 63786, + 63786, + null + ], + [ + "delim-token", + ".", + 63787, + 63787, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 63788, + 63796, + { + "value": "btn-group" + } + ], + [ + "comma-token", + ",", + 63797, + 63797, + null + ], + [ + "delim-token", + ".", + 63798, + 63798, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 63799, + 63816, + { + "value": "btn-group-vertical" + } + ], + [ + "{-token", + "{", + 63817, + 63817, + null + ], + [ + "ident-token", + "position", + 63818, + 63825, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 63826, + 63826, + null + ], + [ + "ident-token", + "relative", + 63827, + 63834, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 63835, + 63835, + null + ], + [ + "ident-token", + "display", + 63836, + 63842, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 63843, + 63843, + null + ], + [ + "ident-token", + "inline-flex", + 63844, + 63854, + { + "value": "inline-flex" + } + ], + [ + "semicolon-token", + ";", + 63855, + 63855, + null + ], + [ + "ident-token", + "vertical-align", + 63856, + 63869, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 63870, + 63870, + null + ], + [ + "ident-token", + "middle", + 63871, + 63876, + { + "value": "middle" + } + ], + [ + "}-token", + "}", + 63877, + 63877, + null + ], + [ + "delim-token", + ".", + 63878, + 63878, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 63879, + 63896, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 63897, + 63897, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 63898, + 63898, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 63899, + 63901, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 63902, + 63902, + null + ], + [ + "delim-token", + ".", + 63903, + 63903, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 63904, + 63912, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 63913, + 63913, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 63914, + 63914, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 63915, + 63917, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 63918, + 63918, + null + ], + [ + "ident-token", + "position", + 63919, + 63926, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 63927, + 63927, + null + ], + [ + "ident-token", + "relative", + 63928, + 63935, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 63936, + 63936, + null + ], + [ + "ident-token", + "flex", + 63937, + 63940, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 63941, + 63941, + null + ], + [ + "number-token", + "1", + 63942, + 63942, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 63943, + 63943, + null + ], + [ + "number-token", + "1", + 63944, + 63944, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 63945, + 63945, + null + ], + [ + "ident-token", + "auto", + 63946, + 63949, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 63950, + 63950, + null + ], + [ + "delim-token", + ".", + 63951, + 63951, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 63952, + 63969, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 63970, + 63970, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 63971, + 63971, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 63972, + 63980, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 63981, + 63981, + null + ], + [ + "ident-token", + "checked", + 63982, + 63988, + { + "value": "checked" + } + ], + [ + "delim-token", + "+", + 63989, + 63989, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 63990, + 63990, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 63991, + 63993, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 63994, + 63994, + null + ], + [ + "delim-token", + ".", + 63995, + 63995, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 63996, + 64013, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 64014, + 64014, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64015, + 64015, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 64016, + 64024, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 64025, + 64025, + null + ], + [ + "ident-token", + "focus", + 64026, + 64030, + { + "value": "focus" + } + ], + [ + "delim-token", + "+", + 64031, + 64031, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 64032, + 64032, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64033, + 64035, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 64036, + 64036, + null + ], + [ + "delim-token", + ".", + 64037, + 64037, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 64038, + 64055, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 64056, + 64056, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64057, + 64057, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64058, + 64060, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 64061, + 64061, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 64062, + 64067, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 64068, + 64068, + null + ], + [ + "delim-token", + ".", + 64069, + 64069, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 64070, + 64087, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 64088, + 64088, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64089, + 64089, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64090, + 64092, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64093, + 64093, + null + ], + [ + "ident-token", + "active", + 64094, + 64099, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 64100, + 64100, + null + ], + [ + "delim-token", + ".", + 64101, + 64101, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 64102, + 64119, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 64120, + 64120, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64121, + 64121, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64122, + 64124, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64125, + 64125, + null + ], + [ + "ident-token", + "focus", + 64126, + 64130, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 64131, + 64131, + null + ], + [ + "delim-token", + ".", + 64132, + 64132, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 64133, + 64150, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 64151, + 64151, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64152, + 64152, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64153, + 64155, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64156, + 64156, + null + ], + [ + "ident-token", + "hover", + 64157, + 64161, + { + "value": "hover" + } + ], + [ + "comma-token", + ",", + 64162, + 64162, + null + ], + [ + "delim-token", + ".", + 64163, + 64163, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64164, + 64172, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64173, + 64173, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64174, + 64174, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 64175, + 64183, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 64184, + 64184, + null + ], + [ + "ident-token", + "checked", + 64185, + 64191, + { + "value": "checked" + } + ], + [ + "delim-token", + "+", + 64192, + 64192, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 64193, + 64193, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64194, + 64196, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 64197, + 64197, + null + ], + [ + "delim-token", + ".", + 64198, + 64198, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64199, + 64207, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64208, + 64208, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64209, + 64209, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 64210, + 64218, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 64219, + 64219, + null + ], + [ + "ident-token", + "focus", + 64220, + 64224, + { + "value": "focus" + } + ], + [ + "delim-token", + "+", + 64225, + 64225, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 64226, + 64226, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64227, + 64229, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 64230, + 64230, + null + ], + [ + "delim-token", + ".", + 64231, + 64231, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64232, + 64240, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64241, + 64241, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64242, + 64242, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64243, + 64245, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 64246, + 64246, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 64247, + 64252, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 64253, + 64253, + null + ], + [ + "delim-token", + ".", + 64254, + 64254, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64255, + 64263, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64264, + 64264, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64265, + 64265, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64266, + 64268, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64269, + 64269, + null + ], + [ + "ident-token", + "active", + 64270, + 64275, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 64276, + 64276, + null + ], + [ + "delim-token", + ".", + 64277, + 64277, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64278, + 64286, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64287, + 64287, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64288, + 64288, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64289, + 64291, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64292, + 64292, + null + ], + [ + "ident-token", + "focus", + 64293, + 64297, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 64298, + 64298, + null + ], + [ + "delim-token", + ".", + 64299, + 64299, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64300, + 64308, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64309, + 64309, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64310, + 64310, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64311, + 64313, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64314, + 64314, + null + ], + [ + "ident-token", + "hover", + 64315, + 64319, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 64320, + 64320, + null + ], + [ + "ident-token", + "z-index", + 64321, + 64327, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 64328, + 64328, + null + ], + [ + "number-token", + "1", + 64329, + 64329, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 64330, + 64330, + null + ], + [ + "delim-token", + ".", + 64331, + 64331, + { + "value": "." + } + ], + [ + "ident-token", + "btn-toolbar", + 64332, + 64342, + { + "value": "btn-toolbar" + } + ], + [ + "{-token", + "{", + 64343, + 64343, + null + ], + [ + "ident-token", + "display", + 64344, + 64350, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 64351, + 64351, + null + ], + [ + "ident-token", + "flex", + 64352, + 64355, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 64356, + 64356, + null + ], + [ + "ident-token", + "flex-wrap", + 64357, + 64365, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 64366, + 64366, + null + ], + [ + "ident-token", + "wrap", + 64367, + 64370, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 64371, + 64371, + null + ], + [ + "ident-token", + "justify-content", + 64372, + 64386, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 64387, + 64387, + null + ], + [ + "ident-token", + "flex-start", + 64388, + 64397, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 64398, + 64398, + null + ], + [ + "delim-token", + ".", + 64399, + 64399, + { + "value": "." + } + ], + [ + "ident-token", + "btn-toolbar", + 64400, + 64410, + { + "value": "btn-toolbar" + } + ], + [ + "whitespace-token", + " ", + 64411, + 64411, + null + ], + [ + "delim-token", + ".", + 64412, + 64412, + { + "value": "." + } + ], + [ + "ident-token", + "input-group", + 64413, + 64423, + { + "value": "input-group" + } + ], + [ + "{-token", + "{", + 64424, + 64424, + null + ], + [ + "ident-token", + "width", + 64425, + 64429, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 64430, + 64430, + null + ], + [ + "ident-token", + "auto", + 64431, + 64434, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 64435, + 64435, + null + ], + [ + "delim-token", + ".", + 64436, + 64436, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64437, + 64445, + { + "value": "btn-group" + } + ], + [ + "{-token", + "{", + 64446, + 64446, + null + ], + [ + "ident-token", + "border-radius", + 64447, + 64459, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 64460, + 64460, + null + ], + [ + "dimension-token", + ".375rem", + 64461, + 64467, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 64468, + 64468, + null + ], + [ + "delim-token", + ".", + 64469, + 64469, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64470, + 64478, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64479, + 64479, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64480, + 64480, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64481, + 64489, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 64490, + 64490, + null + ], + [ + "function-token", + "not(", + 64491, + 64494, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 64495, + 64495, + null + ], + [ + "ident-token", + "first-child", + 64496, + 64506, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 64507, + 64507, + null + ], + [ + "comma-token", + ",", + 64508, + 64508, + null + ], + [ + "delim-token", + ".", + 64509, + 64509, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64510, + 64518, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64519, + 64519, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 64520, + 64520, + null + ], + [ + "function-token", + "not(", + 64521, + 64524, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 64525, + 64525, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 64526, + 64534, + { + "value": "btn-check" + } + ], + [ + "colon-token", + ":", + 64535, + 64535, + null + ], + [ + "ident-token", + "first-child", + 64536, + 64546, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 64547, + 64547, + null + ], + [ + "delim-token", + "+", + 64548, + 64548, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 64549, + 64549, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64550, + 64552, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 64553, + 64553, + null + ], + [ + "ident-token", + "margin-left", + 64554, + 64564, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 64565, + 64565, + null + ], + [ + "dimension-token", + "-1px", + 64566, + 64569, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 64570, + 64570, + null + ], + [ + "delim-token", + ".", + 64571, + 64571, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64572, + 64580, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64581, + 64581, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64582, + 64582, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64583, + 64591, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 64592, + 64592, + null + ], + [ + "function-token", + "not(", + 64593, + 64596, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 64597, + 64597, + null + ], + [ + "ident-token", + "last-child", + 64598, + 64607, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 64608, + 64608, + null + ], + [ + "delim-token", + ">", + 64609, + 64609, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64610, + 64610, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64611, + 64613, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 64614, + 64614, + null + ], + [ + "delim-token", + ".", + 64615, + 64615, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64616, + 64624, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64625, + 64625, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64626, + 64626, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64627, + 64629, + { + "value": "btn" + } + ], + [ + "delim-token", + ".", + 64630, + 64630, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 64631, + 64651, + { + "value": "dropdown-toggle-split" + } + ], + [ + "colon-token", + ":", + 64652, + 64652, + null + ], + [ + "ident-token", + "first-child", + 64653, + 64663, + { + "value": "first-child" + } + ], + [ + "comma-token", + ",", + 64664, + 64664, + null + ], + [ + "delim-token", + ".", + 64665, + 64665, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64666, + 64674, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64675, + 64675, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64676, + 64676, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64677, + 64679, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64680, + 64680, + null + ], + [ + "function-token", + "not(", + 64681, + 64684, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 64685, + 64685, + null + ], + [ + "ident-token", + "last-child", + 64686, + 64695, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 64696, + 64696, + null + ], + [ + "colon-token", + ":", + 64697, + 64697, + null + ], + [ + "function-token", + "not(", + 64698, + 64701, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 64702, + 64702, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 64703, + 64717, + { + "value": "dropdown-toggle" + } + ], + [ + ")-token", + ")", + 64718, + 64718, + null + ], + [ + "{-token", + "{", + 64719, + 64719, + null + ], + [ + "ident-token", + "border-top-right-radius", + 64720, + 64742, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 64743, + 64743, + null + ], + [ + "number-token", + "0", + 64744, + 64744, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 64745, + 64745, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 64746, + 64771, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 64772, + 64772, + null + ], + [ + "number-token", + "0", + 64773, + 64773, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 64774, + 64774, + null + ], + [ + "delim-token", + ".", + 64775, + 64775, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64776, + 64784, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64785, + 64785, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64786, + 64786, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64787, + 64795, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 64796, + 64796, + null + ], + [ + "function-token", + "not(", + 64797, + 64800, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 64801, + 64801, + null + ], + [ + "ident-token", + "first-child", + 64802, + 64812, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 64813, + 64813, + null + ], + [ + "delim-token", + ">", + 64814, + 64814, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64815, + 64815, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64816, + 64818, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 64819, + 64819, + null + ], + [ + "delim-token", + ".", + 64820, + 64820, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64821, + 64829, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64830, + 64830, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 64831, + 64831, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64832, + 64834, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 64835, + 64835, + null + ], + [ + "function-token", + "nth-child(", + 64836, + 64845, + { + "value": "nth-child" + } + ], + [ + "ident-token", + "n", + 64846, + 64846, + { + "value": "n" + } + ], + [ + "number-token", + "+3", + 64847, + 64848, + { + "value": 3, + "type": "integer" + } + ], + [ + ")-token", + ")", + 64849, + 64849, + null + ], + [ + "comma-token", + ",", + 64850, + 64850, + null + ], + [ + "delim-token", + ".", + 64851, + 64851, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 64852, + 64860, + { + "value": "btn-group" + } + ], + [ + "delim-token", + ">", + 64861, + 64861, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 64862, + 64862, + null + ], + [ + "function-token", + "not(", + 64863, + 64866, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 64867, + 64867, + { + "value": "." + } + ], + [ + "ident-token", + "btn-check", + 64868, + 64876, + { + "value": "btn-check" + } + ], + [ + ")-token", + ")", + 64877, + 64877, + null + ], + [ + "delim-token", + "+", + 64878, + 64878, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 64879, + 64879, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 64880, + 64882, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 64883, + 64883, + null + ], + [ + "ident-token", + "border-top-left-radius", + 64884, + 64905, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 64906, + 64906, + null + ], + [ + "number-token", + "0", + 64907, + 64907, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 64908, + 64908, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 64909, + 64933, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 64934, + 64934, + null + ], + [ + "number-token", + "0", + 64935, + 64935, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 64936, + 64936, + null + ], + [ + "delim-token", + ".", + 64937, + 64937, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 64938, + 64958, + { + "value": "dropdown-toggle-split" + } + ], + [ + "{-token", + "{", + 64959, + 64959, + null + ], + [ + "ident-token", + "padding-right", + 64960, + 64972, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 64973, + 64973, + null + ], + [ + "dimension-token", + ".5625rem", + 64974, + 64981, + { + "value": 0.5625, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 64982, + 64982, + null + ], + [ + "ident-token", + "padding-left", + 64983, + 64994, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 64995, + 64995, + null + ], + [ + "dimension-token", + ".5625rem", + 64996, + 65003, + { + "value": 0.5625, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 65004, + 65004, + null + ], + [ + "delim-token", + ".", + 65005, + 65005, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65006, + 65026, + { + "value": "dropdown-toggle-split" + } + ], + [ + "colon-token", + ":", + 65027, + 65027, + null + ], + [ + "colon-token", + ":", + 65028, + 65028, + null + ], + [ + "ident-token", + "after", + 65029, + 65033, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 65034, + 65034, + null + ], + [ + "delim-token", + ".", + 65035, + 65035, + { + "value": "." + } + ], + [ + "ident-token", + "dropend", + 65036, + 65042, + { + "value": "dropend" + } + ], + [ + "whitespace-token", + " ", + 65043, + 65043, + null + ], + [ + "delim-token", + ".", + 65044, + 65044, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65045, + 65065, + { + "value": "dropdown-toggle-split" + } + ], + [ + "colon-token", + ":", + 65066, + 65066, + null + ], + [ + "colon-token", + ":", + 65067, + 65067, + null + ], + [ + "ident-token", + "after", + 65068, + 65072, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 65073, + 65073, + null + ], + [ + "delim-token", + ".", + 65074, + 65074, + { + "value": "." + } + ], + [ + "ident-token", + "dropup", + 65075, + 65080, + { + "value": "dropup" + } + ], + [ + "whitespace-token", + " ", + 65081, + 65081, + null + ], + [ + "delim-token", + ".", + 65082, + 65082, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65083, + 65103, + { + "value": "dropdown-toggle-split" + } + ], + [ + "colon-token", + ":", + 65104, + 65104, + null + ], + [ + "colon-token", + ":", + 65105, + 65105, + null + ], + [ + "ident-token", + "after", + 65106, + 65110, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 65111, + 65111, + null + ], + [ + "ident-token", + "margin-left", + 65112, + 65122, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 65123, + 65123, + null + ], + [ + "number-token", + "0", + 65124, + 65124, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 65125, + 65125, + null + ], + [ + "delim-token", + ".", + 65126, + 65126, + { + "value": "." + } + ], + [ + "ident-token", + "dropstart", + 65127, + 65135, + { + "value": "dropstart" + } + ], + [ + "whitespace-token", + " ", + 65136, + 65136, + null + ], + [ + "delim-token", + ".", + 65137, + 65137, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65138, + 65158, + { + "value": "dropdown-toggle-split" + } + ], + [ + "colon-token", + ":", + 65159, + 65159, + null + ], + [ + "colon-token", + ":", + 65160, + 65160, + null + ], + [ + "ident-token", + "before", + 65161, + 65166, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 65167, + 65167, + null + ], + [ + "ident-token", + "margin-right", + 65168, + 65179, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 65180, + 65180, + null + ], + [ + "number-token", + "0", + 65181, + 65181, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 65182, + 65182, + null + ], + [ + "delim-token", + ".", + 65183, + 65183, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-sm", + 65184, + 65195, + { + "value": "btn-group-sm" + } + ], + [ + "delim-token", + ">", + 65196, + 65196, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65197, + 65197, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65198, + 65200, + { + "value": "btn" + } + ], + [ + "delim-token", + "+", + 65201, + 65201, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 65202, + 65202, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65203, + 65223, + { + "value": "dropdown-toggle-split" + } + ], + [ + "comma-token", + ",", + 65224, + 65224, + null + ], + [ + "delim-token", + ".", + 65225, + 65225, + { + "value": "." + } + ], + [ + "ident-token", + "btn-sm", + 65226, + 65231, + { + "value": "btn-sm" + } + ], + [ + "delim-token", + "+", + 65232, + 65232, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 65233, + 65233, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65234, + 65254, + { + "value": "dropdown-toggle-split" + } + ], + [ + "{-token", + "{", + 65255, + 65255, + null + ], + [ + "ident-token", + "padding-right", + 65256, + 65268, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 65269, + 65269, + null + ], + [ + "dimension-token", + ".375rem", + 65270, + 65276, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 65277, + 65277, + null + ], + [ + "ident-token", + "padding-left", + 65278, + 65289, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 65290, + 65290, + null + ], + [ + "dimension-token", + ".375rem", + 65291, + 65297, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 65298, + 65298, + null + ], + [ + "delim-token", + ".", + 65299, + 65299, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-lg", + 65300, + 65311, + { + "value": "btn-group-lg" + } + ], + [ + "delim-token", + ">", + 65312, + 65312, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65313, + 65313, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65314, + 65316, + { + "value": "btn" + } + ], + [ + "delim-token", + "+", + 65317, + 65317, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 65318, + 65318, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65319, + 65339, + { + "value": "dropdown-toggle-split" + } + ], + [ + "comma-token", + ",", + 65340, + 65340, + null + ], + [ + "delim-token", + ".", + 65341, + 65341, + { + "value": "." + } + ], + [ + "ident-token", + "btn-lg", + 65342, + 65347, + { + "value": "btn-lg" + } + ], + [ + "delim-token", + "+", + 65348, + 65348, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 65349, + 65349, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle-split", + 65350, + 65370, + { + "value": "dropdown-toggle-split" + } + ], + [ + "{-token", + "{", + 65371, + 65371, + null + ], + [ + "ident-token", + "padding-right", + 65372, + 65384, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 65385, + 65385, + null + ], + [ + "dimension-token", + ".75rem", + 65386, + 65391, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 65392, + 65392, + null + ], + [ + "ident-token", + "padding-left", + 65393, + 65404, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 65405, + 65405, + null + ], + [ + "dimension-token", + ".75rem", + 65406, + 65411, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 65412, + 65412, + null + ], + [ + "delim-token", + ".", + 65413, + 65413, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65414, + 65431, + { + "value": "btn-group-vertical" + } + ], + [ + "{-token", + "{", + 65432, + 65432, + null + ], + [ + "ident-token", + "flex-direction", + 65433, + 65446, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 65447, + 65447, + null + ], + [ + "ident-token", + "column", + 65448, + 65453, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 65454, + 65454, + null + ], + [ + "ident-token", + "align-items", + 65455, + 65465, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 65466, + 65466, + null + ], + [ + "ident-token", + "flex-start", + 65467, + 65476, + { + "value": "flex-start" + } + ], + [ + "semicolon-token", + ";", + 65477, + 65477, + null + ], + [ + "ident-token", + "justify-content", + 65478, + 65492, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 65493, + 65493, + null + ], + [ + "ident-token", + "center", + 65494, + 65499, + { + "value": "center" + } + ], + [ + "}-token", + "}", + 65500, + 65500, + null + ], + [ + "delim-token", + ".", + 65501, + 65501, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65502, + 65519, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65520, + 65520, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65521, + 65521, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65522, + 65524, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 65525, + 65525, + null + ], + [ + "delim-token", + ".", + 65526, + 65526, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65527, + 65544, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65545, + 65545, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65546, + 65546, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 65547, + 65555, + { + "value": "btn-group" + } + ], + [ + "{-token", + "{", + 65556, + 65556, + null + ], + [ + "ident-token", + "width", + 65557, + 65561, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 65562, + 65562, + null + ], + [ + "percentage-token", + "100%", + 65563, + 65566, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 65567, + 65567, + null + ], + [ + "delim-token", + ".", + 65568, + 65568, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65569, + 65586, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65587, + 65587, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65588, + 65588, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 65589, + 65597, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 65598, + 65598, + null + ], + [ + "function-token", + "not(", + 65599, + 65602, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 65603, + 65603, + null + ], + [ + "ident-token", + "first-child", + 65604, + 65614, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 65615, + 65615, + null + ], + [ + "comma-token", + ",", + 65616, + 65616, + null + ], + [ + "delim-token", + ".", + 65617, + 65617, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65618, + 65635, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65636, + 65636, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65637, + 65637, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65638, + 65640, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 65641, + 65641, + null + ], + [ + "function-token", + "not(", + 65642, + 65645, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 65646, + 65646, + null + ], + [ + "ident-token", + "first-child", + 65647, + 65657, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 65658, + 65658, + null + ], + [ + "{-token", + "{", + 65659, + 65659, + null + ], + [ + "ident-token", + "margin-top", + 65660, + 65669, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 65670, + 65670, + null + ], + [ + "dimension-token", + "-1px", + 65671, + 65674, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 65675, + 65675, + null + ], + [ + "delim-token", + ".", + 65676, + 65676, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65677, + 65694, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65695, + 65695, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65696, + 65696, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 65697, + 65705, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 65706, + 65706, + null + ], + [ + "function-token", + "not(", + 65707, + 65710, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 65711, + 65711, + null + ], + [ + "ident-token", + "last-child", + 65712, + 65721, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 65722, + 65722, + null + ], + [ + "delim-token", + ">", + 65723, + 65723, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65724, + 65724, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65725, + 65727, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 65728, + 65728, + null + ], + [ + "delim-token", + ".", + 65729, + 65729, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65730, + 65747, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65748, + 65748, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65749, + 65749, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65750, + 65752, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 65753, + 65753, + null + ], + [ + "function-token", + "not(", + 65754, + 65757, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 65758, + 65758, + null + ], + [ + "ident-token", + "last-child", + 65759, + 65768, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 65769, + 65769, + null + ], + [ + "colon-token", + ":", + 65770, + 65770, + null + ], + [ + "function-token", + "not(", + 65771, + 65774, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 65775, + 65775, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-toggle", + 65776, + 65790, + { + "value": "dropdown-toggle" + } + ], + [ + ")-token", + ")", + 65791, + 65791, + null + ], + [ + "{-token", + "{", + 65792, + 65792, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 65793, + 65818, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 65819, + 65819, + null + ], + [ + "number-token", + "0", + 65820, + 65820, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 65821, + 65821, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 65822, + 65846, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 65847, + 65847, + null + ], + [ + "number-token", + "0", + 65848, + 65848, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 65849, + 65849, + null + ], + [ + "delim-token", + ".", + 65850, + 65850, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65851, + 65868, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65869, + 65869, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65870, + 65870, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group", + 65871, + 65879, + { + "value": "btn-group" + } + ], + [ + "colon-token", + ":", + 65880, + 65880, + null + ], + [ + "function-token", + "not(", + 65881, + 65884, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 65885, + 65885, + null + ], + [ + "ident-token", + "first-child", + 65886, + 65896, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 65897, + 65897, + null + ], + [ + "delim-token", + ">", + 65898, + 65898, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65899, + 65899, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65900, + 65902, + { + "value": "btn" + } + ], + [ + "comma-token", + ",", + 65903, + 65903, + null + ], + [ + "delim-token", + ".", + 65904, + 65904, + { + "value": "." + } + ], + [ + "ident-token", + "btn-group-vertical", + 65905, + 65922, + { + "value": "btn-group-vertical" + } + ], + [ + "delim-token", + ">", + 65923, + 65923, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 65924, + 65924, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65925, + 65927, + { + "value": "btn" + } + ], + [ + "delim-token", + "~", + 65928, + 65928, + { + "value": "~" + } + ], + [ + "delim-token", + ".", + 65929, + 65929, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 65930, + 65932, + { + "value": "btn" + } + ], + [ + "{-token", + "{", + 65933, + 65933, + null + ], + [ + "ident-token", + "border-top-left-radius", + 65934, + 65955, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 65956, + 65956, + null + ], + [ + "number-token", + "0", + 65957, + 65957, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 65958, + 65958, + null + ], + [ + "ident-token", + "border-top-right-radius", + 65959, + 65981, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 65982, + 65982, + null + ], + [ + "number-token", + "0", + 65983, + 65983, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 65984, + 65984, + null + ], + [ + "delim-token", + ".", + 65985, + 65985, + { + "value": "." + } + ], + [ + "ident-token", + "nav", + 65986, + 65988, + { + "value": "nav" + } + ], + [ + "{-token", + "{", + 65989, + 65989, + null + ], + [ + "delim-token", + "-", + 65990, + 65990, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 65991, + 65991, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-x", + 65992, + 66012, + { + "value": "bs-nav-link-padding-x" + } + ], + [ + "colon-token", + ":", + 66013, + 66013, + null + ], + [ + "dimension-token", + "1rem", + 66014, + 66017, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 66018, + 66018, + null + ], + [ + "delim-token", + "-", + 66019, + 66019, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66020, + 66020, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-y", + 66021, + 66041, + { + "value": "bs-nav-link-padding-y" + } + ], + [ + "colon-token", + ":", + 66042, + 66042, + null + ], + [ + "dimension-token", + "0.5rem", + 66043, + 66048, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 66049, + 66049, + null + ], + [ + "delim-token", + "-", + 66050, + 66050, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66051, + 66051, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-font-weight", + 66052, + 66074, + { + "value": "bs-nav-link-font-weight" + } + ], + [ + "colon-token", + ":", + 66075, + 66075, + null + ], + [ + "whitespace-token", + " ", + 66076, + 66076, + null + ], + [ + "semicolon-token", + ";", + 66077, + 66077, + null + ], + [ + "delim-token", + "-", + 66078, + 66078, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66079, + 66079, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-color", + 66080, + 66096, + { + "value": "bs-nav-link-color" + } + ], + [ + "colon-token", + ":", + 66097, + 66097, + null + ], + [ + "function-token", + "var(", + 66098, + 66101, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66102, + 66102, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66103, + 66103, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-color", + 66104, + 66116, + { + "value": "bs-link-color" + } + ], + [ + ")-token", + ")", + 66117, + 66117, + null + ], + [ + "semicolon-token", + ";", + 66118, + 66118, + null + ], + [ + "delim-token", + "-", + 66119, + 66119, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66120, + 66120, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-hover-color", + 66121, + 66143, + { + "value": "bs-nav-link-hover-color" + } + ], + [ + "colon-token", + ":", + 66144, + 66144, + null + ], + [ + "function-token", + "var(", + 66145, + 66148, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66149, + 66149, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66150, + 66150, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 66151, + 66169, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 66170, + 66170, + null + ], + [ + "semicolon-token", + ";", + 66171, + 66171, + null + ], + [ + "delim-token", + "-", + 66172, + 66172, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66173, + 66173, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-disabled-color", + 66174, + 66199, + { + "value": "bs-nav-link-disabled-color" + } + ], + [ + "colon-token", + ":", + 66200, + 66200, + null + ], + [ + "hash-token", + "#6c757d", + 66201, + 66207, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 66208, + 66208, + null + ], + [ + "ident-token", + "display", + 66209, + 66215, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 66216, + 66216, + null + ], + [ + "ident-token", + "flex", + 66217, + 66220, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 66221, + 66221, + null + ], + [ + "ident-token", + "flex-wrap", + 66222, + 66230, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 66231, + 66231, + null + ], + [ + "ident-token", + "wrap", + 66232, + 66235, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 66236, + 66236, + null + ], + [ + "ident-token", + "padding-left", + 66237, + 66248, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 66249, + 66249, + null + ], + [ + "number-token", + "0", + 66250, + 66250, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 66251, + 66251, + null + ], + [ + "ident-token", + "margin-bottom", + 66252, + 66264, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 66265, + 66265, + null + ], + [ + "number-token", + "0", + 66266, + 66266, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 66267, + 66267, + null + ], + [ + "ident-token", + "list-style", + 66268, + 66277, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 66278, + 66278, + null + ], + [ + "ident-token", + "none", + 66279, + 66282, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 66283, + 66283, + null + ], + [ + "delim-token", + ".", + 66284, + 66284, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 66285, + 66292, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 66293, + 66293, + null + ], + [ + "ident-token", + "display", + 66294, + 66300, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 66301, + 66301, + null + ], + [ + "ident-token", + "block", + 66302, + 66306, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 66307, + 66307, + null + ], + [ + "ident-token", + "padding", + 66308, + 66314, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 66315, + 66315, + null + ], + [ + "function-token", + "var(", + 66316, + 66319, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66320, + 66320, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66321, + 66321, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-y", + 66322, + 66342, + { + "value": "bs-nav-link-padding-y" + } + ], + [ + ")-token", + ")", + 66343, + 66343, + null + ], + [ + "whitespace-token", + " ", + 66344, + 66344, + null + ], + [ + "function-token", + "var(", + 66345, + 66348, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66349, + 66349, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66350, + 66350, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-x", + 66351, + 66371, + { + "value": "bs-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 66372, + 66372, + null + ], + [ + "semicolon-token", + ";", + 66373, + 66373, + null + ], + [ + "ident-token", + "font-size", + 66374, + 66382, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 66383, + 66383, + null + ], + [ + "function-token", + "var(", + 66384, + 66387, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66388, + 66388, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66389, + 66389, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-font-size", + 66390, + 66410, + { + "value": "bs-nav-link-font-size" + } + ], + [ + ")-token", + ")", + 66411, + 66411, + null + ], + [ + "semicolon-token", + ";", + 66412, + 66412, + null + ], + [ + "ident-token", + "font-weight", + 66413, + 66423, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 66424, + 66424, + null + ], + [ + "function-token", + "var(", + 66425, + 66428, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66429, + 66429, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66430, + 66430, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-font-weight", + 66431, + 66453, + { + "value": "bs-nav-link-font-weight" + } + ], + [ + ")-token", + ")", + 66454, + 66454, + null + ], + [ + "semicolon-token", + ";", + 66455, + 66455, + null + ], + [ + "ident-token", + "color", + 66456, + 66460, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 66461, + 66461, + null + ], + [ + "function-token", + "var(", + 66462, + 66465, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66466, + 66466, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66467, + 66467, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-color", + 66468, + 66484, + { + "value": "bs-nav-link-color" + } + ], + [ + ")-token", + ")", + 66485, + 66485, + null + ], + [ + "semicolon-token", + ";", + 66486, + 66486, + null + ], + [ + "ident-token", + "text-decoration", + 66487, + 66501, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 66502, + 66502, + null + ], + [ + "ident-token", + "none", + 66503, + 66506, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 66507, + 66507, + null + ], + [ + "ident-token", + "transition", + 66508, + 66517, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 66518, + 66518, + null + ], + [ + "ident-token", + "color", + 66519, + 66523, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 66524, + 66524, + null + ], + [ + "dimension-token", + ".15s", + 66525, + 66528, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 66529, + 66529, + null + ], + [ + "ident-token", + "ease-in-out", + 66530, + 66540, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 66541, + 66541, + null + ], + [ + "ident-token", + "background-color", + 66542, + 66557, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 66558, + 66558, + null + ], + [ + "dimension-token", + ".15s", + 66559, + 66562, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 66563, + 66563, + null + ], + [ + "ident-token", + "ease-in-out", + 66564, + 66574, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 66575, + 66575, + null + ], + [ + "ident-token", + "border-color", + 66576, + 66587, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 66588, + 66588, + null + ], + [ + "dimension-token", + ".15s", + 66589, + 66592, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 66593, + 66593, + null + ], + [ + "ident-token", + "ease-in-out", + 66594, + 66604, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 66605, + 66605, + null + ], + [ + "at-keyword-token", + "@media", + 66606, + 66611, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 66612, + 66612, + null + ], + [ + "(-token", + "(", + 66613, + 66613, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 66614, + 66635, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 66636, + 66636, + null + ], + [ + "ident-token", + "reduce", + 66637, + 66642, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 66643, + 66643, + null + ], + [ + "{-token", + "{", + 66644, + 66644, + null + ], + [ + "delim-token", + ".", + 66645, + 66645, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 66646, + 66653, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 66654, + 66654, + null + ], + [ + "ident-token", + "transition", + 66655, + 66664, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 66665, + 66665, + null + ], + [ + "ident-token", + "none", + 66666, + 66669, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 66670, + 66670, + null + ], + [ + "}-token", + "}", + 66671, + 66671, + null + ], + [ + "delim-token", + ".", + 66672, + 66672, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 66673, + 66680, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 66681, + 66681, + null + ], + [ + "ident-token", + "focus", + 66682, + 66686, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 66687, + 66687, + null + ], + [ + "delim-token", + ".", + 66688, + 66688, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 66689, + 66696, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 66697, + 66697, + null + ], + [ + "ident-token", + "hover", + 66698, + 66702, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 66703, + 66703, + null + ], + [ + "ident-token", + "color", + 66704, + 66708, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 66709, + 66709, + null + ], + [ + "function-token", + "var(", + 66710, + 66713, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66714, + 66714, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66715, + 66715, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-hover-color", + 66716, + 66738, + { + "value": "bs-nav-link-hover-color" + } + ], + [ + ")-token", + ")", + 66739, + 66739, + null + ], + [ + "}-token", + "}", + 66740, + 66740, + null + ], + [ + "delim-token", + ".", + 66741, + 66741, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 66742, + 66749, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 66750, + 66750, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 66751, + 66758, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 66759, + 66759, + null + ], + [ + "ident-token", + "color", + 66760, + 66764, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 66765, + 66765, + null + ], + [ + "function-token", + "var(", + 66766, + 66769, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 66770, + 66770, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66771, + 66771, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-disabled-color", + 66772, + 66797, + { + "value": "bs-nav-link-disabled-color" + } + ], + [ + ")-token", + ")", + 66798, + 66798, + null + ], + [ + "semicolon-token", + ";", + 66799, + 66799, + null + ], + [ + "ident-token", + "pointer-events", + 66800, + 66813, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 66814, + 66814, + null + ], + [ + "ident-token", + "none", + 66815, + 66818, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 66819, + 66819, + null + ], + [ + "ident-token", + "cursor", + 66820, + 66825, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 66826, + 66826, + null + ], + [ + "ident-token", + "default", + 66827, + 66833, + { + "value": "default" + } + ], + [ + "}-token", + "}", + 66834, + 66834, + null + ], + [ + "delim-token", + ".", + 66835, + 66835, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 66836, + 66843, + { + "value": "nav-tabs" + } + ], + [ + "{-token", + "{", + 66844, + 66844, + null + ], + [ + "delim-token", + "-", + 66845, + 66845, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66846, + 66846, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-width", + 66847, + 66870, + { + "value": "bs-nav-tabs-border-width" + } + ], + [ + "colon-token", + ":", + 66871, + 66871, + null + ], + [ + "dimension-token", + "1px", + 66872, + 66874, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 66875, + 66875, + null + ], + [ + "delim-token", + "-", + 66876, + 66876, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66877, + 66877, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-color", + 66878, + 66901, + { + "value": "bs-nav-tabs-border-color" + } + ], + [ + "colon-token", + ":", + 66902, + 66902, + null + ], + [ + "hash-token", + "#dee2e6", + 66903, + 66909, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 66910, + 66910, + null + ], + [ + "delim-token", + "-", + 66911, + 66911, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66912, + 66912, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-radius", + 66913, + 66937, + { + "value": "bs-nav-tabs-border-radius" + } + ], + [ + "colon-token", + ":", + 66938, + 66938, + null + ], + [ + "dimension-token", + "0.375rem", + 66939, + 66946, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 66947, + 66947, + null + ], + [ + "delim-token", + "-", + 66948, + 66948, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 66949, + 66949, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-hover-border-color", + 66950, + 66984, + { + "value": "bs-nav-tabs-link-hover-border-color" + } + ], + [ + "colon-token", + ":", + 66985, + 66985, + null + ], + [ + "hash-token", + "#e9ecef", + 66986, + 66992, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "whitespace-token", + " ", + 66993, + 66993, + null + ], + [ + "hash-token", + "#e9ecef", + 66994, + 67000, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "whitespace-token", + " ", + 67001, + 67001, + null + ], + [ + "hash-token", + "#dee2e6", + 67002, + 67008, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 67009, + 67009, + null + ], + [ + "delim-token", + "-", + 67010, + 67010, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67011, + 67011, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-color", + 67012, + 67040, + { + "value": "bs-nav-tabs-link-active-color" + } + ], + [ + "colon-token", + ":", + 67041, + 67041, + null + ], + [ + "hash-token", + "#495057", + 67042, + 67048, + { + "value": "495057", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 67049, + 67049, + null + ], + [ + "delim-token", + "-", + 67050, + 67050, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67051, + 67051, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-bg", + 67052, + 67077, + { + "value": "bs-nav-tabs-link-active-bg" + } + ], + [ + "colon-token", + ":", + 67078, + 67078, + null + ], + [ + "hash-token", + "#fff", + 67079, + 67082, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 67083, + 67083, + null + ], + [ + "delim-token", + "-", + 67084, + 67084, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67085, + 67085, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-border-color", + 67086, + 67121, + { + "value": "bs-nav-tabs-link-active-border-color" + } + ], + [ + "colon-token", + ":", + 67122, + 67122, + null + ], + [ + "hash-token", + "#dee2e6", + 67123, + 67129, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "whitespace-token", + " ", + 67130, + 67130, + null + ], + [ + "hash-token", + "#dee2e6", + 67131, + 67137, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "whitespace-token", + " ", + 67138, + 67138, + null + ], + [ + "hash-token", + "#fff", + 67139, + 67142, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 67143, + 67143, + null + ], + [ + "ident-token", + "border-bottom", + 67144, + 67156, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 67157, + 67157, + null + ], + [ + "function-token", + "var(", + 67158, + 67161, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67162, + 67162, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67163, + 67163, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-width", + 67164, + 67187, + { + "value": "bs-nav-tabs-border-width" + } + ], + [ + ")-token", + ")", + 67188, + 67188, + null + ], + [ + "whitespace-token", + " ", + 67189, + 67189, + null + ], + [ + "ident-token", + "solid", + 67190, + 67194, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 67195, + 67195, + null + ], + [ + "function-token", + "var(", + 67196, + 67199, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67200, + 67200, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67201, + 67201, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-color", + 67202, + 67225, + { + "value": "bs-nav-tabs-border-color" + } + ], + [ + ")-token", + ")", + 67226, + 67226, + null + ], + [ + "}-token", + "}", + 67227, + 67227, + null + ], + [ + "delim-token", + ".", + 67228, + 67228, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67229, + 67236, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67237, + 67237, + null + ], + [ + "delim-token", + ".", + 67238, + 67238, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67239, + 67246, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 67247, + 67247, + null + ], + [ + "ident-token", + "margin-bottom", + 67248, + 67260, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 67261, + 67261, + null + ], + [ + "function-token", + "calc(", + 67262, + 67266, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 67267, + 67268, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 67269, + 67269, + null + ], + [ + "delim-token", + "*", + 67270, + 67270, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 67271, + 67271, + null + ], + [ + "function-token", + "var(", + 67272, + 67275, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67276, + 67276, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67277, + 67277, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-width", + 67278, + 67301, + { + "value": "bs-nav-tabs-border-width" + } + ], + [ + ")-token", + ")", + 67302, + 67302, + null + ], + [ + ")-token", + ")", + 67303, + 67303, + null + ], + [ + "semicolon-token", + ";", + 67304, + 67304, + null + ], + [ + "ident-token", + "background", + 67305, + 67314, + { + "value": "background" + } + ], + [ + "colon-token", + ":", + 67315, + 67315, + null + ], + [ + "number-token", + "0", + 67316, + 67316, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 67317, + 67317, + null + ], + [ + "number-token", + "0", + 67318, + 67318, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 67319, + 67319, + null + ], + [ + "ident-token", + "border", + 67320, + 67325, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 67326, + 67326, + null + ], + [ + "function-token", + "var(", + 67327, + 67330, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67331, + 67331, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67332, + 67332, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-width", + 67333, + 67356, + { + "value": "bs-nav-tabs-border-width" + } + ], + [ + ")-token", + ")", + 67357, + 67357, + null + ], + [ + "whitespace-token", + " ", + 67358, + 67358, + null + ], + [ + "ident-token", + "solid", + 67359, + 67363, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 67364, + 67364, + null + ], + [ + "ident-token", + "transparent", + 67365, + 67375, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 67376, + 67376, + null + ], + [ + "ident-token", + "border-top-left-radius", + 67377, + 67398, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 67399, + 67399, + null + ], + [ + "function-token", + "var(", + 67400, + 67403, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67404, + 67404, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67405, + 67405, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-radius", + 67406, + 67430, + { + "value": "bs-nav-tabs-border-radius" + } + ], + [ + ")-token", + ")", + 67431, + 67431, + null + ], + [ + "semicolon-token", + ";", + 67432, + 67432, + null + ], + [ + "ident-token", + "border-top-right-radius", + 67433, + 67455, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 67456, + 67456, + null + ], + [ + "function-token", + "var(", + 67457, + 67460, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67461, + 67461, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67462, + 67462, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-radius", + 67463, + 67487, + { + "value": "bs-nav-tabs-border-radius" + } + ], + [ + ")-token", + ")", + 67488, + 67488, + null + ], + [ + "}-token", + "}", + 67489, + 67489, + null + ], + [ + "delim-token", + ".", + 67490, + 67490, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67491, + 67498, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67499, + 67499, + null + ], + [ + "delim-token", + ".", + 67500, + 67500, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67501, + 67508, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 67509, + 67509, + null + ], + [ + "ident-token", + "focus", + 67510, + 67514, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 67515, + 67515, + null + ], + [ + "delim-token", + ".", + 67516, + 67516, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67517, + 67524, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67525, + 67525, + null + ], + [ + "delim-token", + ".", + 67526, + 67526, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67527, + 67534, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 67535, + 67535, + null + ], + [ + "ident-token", + "hover", + 67536, + 67540, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 67541, + 67541, + null + ], + [ + "ident-token", + "isolation", + 67542, + 67550, + { + "value": "isolation" + } + ], + [ + "colon-token", + ":", + 67551, + 67551, + null + ], + [ + "ident-token", + "isolate", + 67552, + 67558, + { + "value": "isolate" + } + ], + [ + "semicolon-token", + ";", + 67559, + 67559, + null + ], + [ + "ident-token", + "border-color", + 67560, + 67571, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 67572, + 67572, + null + ], + [ + "function-token", + "var(", + 67573, + 67576, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67577, + 67577, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67578, + 67578, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-hover-border-color", + 67579, + 67613, + { + "value": "bs-nav-tabs-link-hover-border-color" + } + ], + [ + ")-token", + ")", + 67614, + 67614, + null + ], + [ + "}-token", + "}", + 67615, + 67615, + null + ], + [ + "delim-token", + ".", + 67616, + 67616, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67617, + 67624, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67625, + 67625, + null + ], + [ + "delim-token", + ".", + 67626, + 67626, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67627, + 67634, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 67635, + 67635, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 67636, + 67643, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 67644, + 67644, + null + ], + [ + "delim-token", + ".", + 67645, + 67645, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67646, + 67653, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67654, + 67654, + null + ], + [ + "delim-token", + ".", + 67655, + 67655, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67656, + 67663, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 67664, + 67664, + null + ], + [ + "ident-token", + "disabled", + 67665, + 67672, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 67673, + 67673, + null + ], + [ + "ident-token", + "color", + 67674, + 67678, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 67679, + 67679, + null + ], + [ + "function-token", + "var(", + 67680, + 67683, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67684, + 67684, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67685, + 67685, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-disabled-color", + 67686, + 67711, + { + "value": "bs-nav-link-disabled-color" + } + ], + [ + ")-token", + ")", + 67712, + 67712, + null + ], + [ + "semicolon-token", + ";", + 67713, + 67713, + null + ], + [ + "ident-token", + "background-color", + 67714, + 67729, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 67730, + 67730, + null + ], + [ + "ident-token", + "transparent", + 67731, + 67741, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 67742, + 67742, + null + ], + [ + "ident-token", + "border-color", + 67743, + 67754, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 67755, + 67755, + null + ], + [ + "ident-token", + "transparent", + 67756, + 67766, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 67767, + 67767, + null + ], + [ + "delim-token", + ".", + 67768, + 67768, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67769, + 67776, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67777, + 67777, + null + ], + [ + "delim-token", + ".", + 67778, + 67778, + { + "value": "." + } + ], + [ + "ident-token", + "nav-item", + 67779, + 67786, + { + "value": "nav-item" + } + ], + [ + "delim-token", + ".", + 67787, + 67787, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 67788, + 67791, + { + "value": "show" + } + ], + [ + "whitespace-token", + " ", + 67792, + 67792, + null + ], + [ + "delim-token", + ".", + 67793, + 67793, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67794, + 67801, + { + "value": "nav-link" + } + ], + [ + "comma-token", + ",", + 67802, + 67802, + null + ], + [ + "delim-token", + ".", + 67803, + 67803, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67804, + 67811, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67812, + 67812, + null + ], + [ + "delim-token", + ".", + 67813, + 67813, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 67814, + 67821, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 67822, + 67822, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 67823, + 67828, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 67829, + 67829, + null + ], + [ + "ident-token", + "color", + 67830, + 67834, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 67835, + 67835, + null + ], + [ + "function-token", + "var(", + 67836, + 67839, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67840, + 67840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67841, + 67841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-color", + 67842, + 67870, + { + "value": "bs-nav-tabs-link-active-color" + } + ], + [ + ")-token", + ")", + 67871, + 67871, + null + ], + [ + "semicolon-token", + ";", + 67872, + 67872, + null + ], + [ + "ident-token", + "background-color", + 67873, + 67888, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 67889, + 67889, + null + ], + [ + "function-token", + "var(", + 67890, + 67893, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67894, + 67894, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67895, + 67895, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-bg", + 67896, + 67921, + { + "value": "bs-nav-tabs-link-active-bg" + } + ], + [ + ")-token", + ")", + 67922, + 67922, + null + ], + [ + "semicolon-token", + ";", + 67923, + 67923, + null + ], + [ + "ident-token", + "border-color", + 67924, + 67935, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 67936, + 67936, + null + ], + [ + "function-token", + "var(", + 67937, + 67940, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 67941, + 67941, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 67942, + 67942, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-link-active-border-color", + 67943, + 67978, + { + "value": "bs-nav-tabs-link-active-border-color" + } + ], + [ + ")-token", + ")", + 67979, + 67979, + null + ], + [ + "}-token", + "}", + 67980, + 67980, + null + ], + [ + "delim-token", + ".", + 67981, + 67981, + { + "value": "." + } + ], + [ + "ident-token", + "nav-tabs", + 67982, + 67989, + { + "value": "nav-tabs" + } + ], + [ + "whitespace-token", + " ", + 67990, + 67990, + null + ], + [ + "delim-token", + ".", + 67991, + 67991, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 67992, + 68004, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 68005, + 68005, + null + ], + [ + "ident-token", + "margin-top", + 68006, + 68015, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 68016, + 68016, + null + ], + [ + "function-token", + "calc(", + 68017, + 68021, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 68022, + 68023, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 68024, + 68024, + null + ], + [ + "delim-token", + "*", + 68025, + 68025, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 68026, + 68026, + null + ], + [ + "function-token", + "var(", + 68027, + 68030, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 68031, + 68031, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68032, + 68032, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-tabs-border-width", + 68033, + 68056, + { + "value": "bs-nav-tabs-border-width" + } + ], + [ + ")-token", + ")", + 68057, + 68057, + null + ], + [ + ")-token", + ")", + 68058, + 68058, + null + ], + [ + "semicolon-token", + ";", + 68059, + 68059, + null + ], + [ + "ident-token", + "border-top-left-radius", + 68060, + 68081, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 68082, + 68082, + null + ], + [ + "number-token", + "0", + 68083, + 68083, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68084, + 68084, + null + ], + [ + "ident-token", + "border-top-right-radius", + 68085, + 68107, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 68108, + 68108, + null + ], + [ + "number-token", + "0", + 68109, + 68109, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 68110, + 68110, + null + ], + [ + "delim-token", + ".", + 68111, + 68111, + { + "value": "." + } + ], + [ + "ident-token", + "nav-pills", + 68112, + 68120, + { + "value": "nav-pills" + } + ], + [ + "{-token", + "{", + 68121, + 68121, + null + ], + [ + "delim-token", + "-", + 68122, + 68122, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68123, + 68123, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-border-radius", + 68124, + 68149, + { + "value": "bs-nav-pills-border-radius" + } + ], + [ + "colon-token", + ":", + 68150, + 68150, + null + ], + [ + "dimension-token", + "0.375rem", + 68151, + 68158, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 68159, + 68159, + null + ], + [ + "delim-token", + "-", + 68160, + 68160, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68161, + 68161, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-link-active-color", + 68162, + 68191, + { + "value": "bs-nav-pills-link-active-color" + } + ], + [ + "colon-token", + ":", + 68192, + 68192, + null + ], + [ + "hash-token", + "#fff", + 68193, + 68196, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 68197, + 68197, + null + ], + [ + "delim-token", + "-", + 68198, + 68198, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68199, + 68199, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-link-active-bg", + 68200, + 68226, + { + "value": "bs-nav-pills-link-active-bg" + } + ], + [ + "colon-token", + ":", + 68227, + 68227, + null + ], + [ + "hash-token", + "#0d6efd", + 68228, + 68234, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 68235, + 68235, + null + ], + [ + "delim-token", + ".", + 68236, + 68236, + { + "value": "." + } + ], + [ + "ident-token", + "nav-pills", + 68237, + 68245, + { + "value": "nav-pills" + } + ], + [ + "whitespace-token", + " ", + 68246, + 68246, + null + ], + [ + "delim-token", + ".", + 68247, + 68247, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68248, + 68255, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 68256, + 68256, + null + ], + [ + "ident-token", + "background", + 68257, + 68266, + { + "value": "background" + } + ], + [ + "colon-token", + ":", + 68267, + 68267, + null + ], + [ + "number-token", + "0", + 68268, + 68268, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 68269, + 68269, + null + ], + [ + "number-token", + "0", + 68270, + 68270, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68271, + 68271, + null + ], + [ + "ident-token", + "border", + 68272, + 68277, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 68278, + 68278, + null + ], + [ + "number-token", + "0", + 68279, + 68279, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68280, + 68280, + null + ], + [ + "ident-token", + "border-radius", + 68281, + 68293, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 68294, + 68294, + null + ], + [ + "function-token", + "var(", + 68295, + 68298, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 68299, + 68299, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68300, + 68300, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-border-radius", + 68301, + 68326, + { + "value": "bs-nav-pills-border-radius" + } + ], + [ + ")-token", + ")", + 68327, + 68327, + null + ], + [ + "}-token", + "}", + 68328, + 68328, + null + ], + [ + "delim-token", + ".", + 68329, + 68329, + { + "value": "." + } + ], + [ + "ident-token", + "nav-pills", + 68330, + 68338, + { + "value": "nav-pills" + } + ], + [ + "whitespace-token", + " ", + 68339, + 68339, + null + ], + [ + "delim-token", + ".", + 68340, + 68340, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68341, + 68348, + { + "value": "nav-link" + } + ], + [ + "colon-token", + ":", + 68349, + 68349, + null + ], + [ + "ident-token", + "disabled", + 68350, + 68357, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 68358, + 68358, + null + ], + [ + "ident-token", + "color", + 68359, + 68363, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 68364, + 68364, + null + ], + [ + "function-token", + "var(", + 68365, + 68368, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 68369, + 68369, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68370, + 68370, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-disabled-color", + 68371, + 68396, + { + "value": "bs-nav-link-disabled-color" + } + ], + [ + ")-token", + ")", + 68397, + 68397, + null + ], + [ + "semicolon-token", + ";", + 68398, + 68398, + null + ], + [ + "ident-token", + "background-color", + 68399, + 68414, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 68415, + 68415, + null + ], + [ + "ident-token", + "transparent", + 68416, + 68426, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 68427, + 68427, + null + ], + [ + "ident-token", + "border-color", + 68428, + 68439, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 68440, + 68440, + null + ], + [ + "ident-token", + "transparent", + 68441, + 68451, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 68452, + 68452, + null + ], + [ + "delim-token", + ".", + 68453, + 68453, + { + "value": "." + } + ], + [ + "ident-token", + "nav-pills", + 68454, + 68462, + { + "value": "nav-pills" + } + ], + [ + "whitespace-token", + " ", + 68463, + 68463, + null + ], + [ + "delim-token", + ".", + 68464, + 68464, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68465, + 68472, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 68473, + 68473, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 68474, + 68479, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 68480, + 68480, + null + ], + [ + "delim-token", + ".", + 68481, + 68481, + { + "value": "." + } + ], + [ + "ident-token", + "nav-pills", + 68482, + 68490, + { + "value": "nav-pills" + } + ], + [ + "whitespace-token", + " ", + 68491, + 68491, + null + ], + [ + "delim-token", + ".", + 68492, + 68492, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 68493, + 68496, + { + "value": "show" + } + ], + [ + "delim-token", + ">", + 68497, + 68497, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 68498, + 68498, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68499, + 68506, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 68507, + 68507, + null + ], + [ + "ident-token", + "color", + 68508, + 68512, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 68513, + 68513, + null + ], + [ + "function-token", + "var(", + 68514, + 68517, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 68518, + 68518, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68519, + 68519, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-link-active-color", + 68520, + 68549, + { + "value": "bs-nav-pills-link-active-color" + } + ], + [ + ")-token", + ")", + 68550, + 68550, + null + ], + [ + "semicolon-token", + ";", + 68551, + 68551, + null + ], + [ + "ident-token", + "background-color", + 68552, + 68567, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 68568, + 68568, + null + ], + [ + "function-token", + "var(", + 68569, + 68572, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 68573, + 68573, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68574, + 68574, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-pills-link-active-bg", + 68575, + 68601, + { + "value": "bs-nav-pills-link-active-bg" + } + ], + [ + ")-token", + ")", + 68602, + 68602, + null + ], + [ + "}-token", + "}", + 68603, + 68603, + null + ], + [ + "delim-token", + ".", + 68604, + 68604, + { + "value": "." + } + ], + [ + "ident-token", + "nav-fill", + 68605, + 68612, + { + "value": "nav-fill" + } + ], + [ + "whitespace-token", + " ", + 68613, + 68613, + null + ], + [ + "delim-token", + ".", + 68614, + 68614, + { + "value": "." + } + ], + [ + "ident-token", + "nav-item", + 68615, + 68622, + { + "value": "nav-item" + } + ], + [ + "comma-token", + ",", + 68623, + 68623, + null + ], + [ + "delim-token", + ".", + 68624, + 68624, + { + "value": "." + } + ], + [ + "ident-token", + "nav-fill", + 68625, + 68632, + { + "value": "nav-fill" + } + ], + [ + "delim-token", + ">", + 68633, + 68633, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 68634, + 68634, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68635, + 68642, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 68643, + 68643, + null + ], + [ + "ident-token", + "flex", + 68644, + 68647, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 68648, + 68648, + null + ], + [ + "number-token", + "1", + 68649, + 68649, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 68650, + 68650, + null + ], + [ + "number-token", + "1", + 68651, + 68651, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 68652, + 68652, + null + ], + [ + "ident-token", + "auto", + 68653, + 68656, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 68657, + 68657, + null + ], + [ + "ident-token", + "text-align", + 68658, + 68667, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 68668, + 68668, + null + ], + [ + "ident-token", + "center", + 68669, + 68674, + { + "value": "center" + } + ], + [ + "}-token", + "}", + 68675, + 68675, + null + ], + [ + "delim-token", + ".", + 68676, + 68676, + { + "value": "." + } + ], + [ + "ident-token", + "nav-justified", + 68677, + 68689, + { + "value": "nav-justified" + } + ], + [ + "whitespace-token", + " ", + 68690, + 68690, + null + ], + [ + "delim-token", + ".", + 68691, + 68691, + { + "value": "." + } + ], + [ + "ident-token", + "nav-item", + 68692, + 68699, + { + "value": "nav-item" + } + ], + [ + "comma-token", + ",", + 68700, + 68700, + null + ], + [ + "delim-token", + ".", + 68701, + 68701, + { + "value": "." + } + ], + [ + "ident-token", + "nav-justified", + 68702, + 68714, + { + "value": "nav-justified" + } + ], + [ + "delim-token", + ">", + 68715, + 68715, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 68716, + 68716, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68717, + 68724, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 68725, + 68725, + null + ], + [ + "ident-token", + "flex-basis", + 68726, + 68735, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 68736, + 68736, + null + ], + [ + "number-token", + "0", + 68737, + 68737, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68738, + 68738, + null + ], + [ + "ident-token", + "flex-grow", + 68739, + 68747, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 68748, + 68748, + null + ], + [ + "number-token", + "1", + 68749, + 68749, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68750, + 68750, + null + ], + [ + "ident-token", + "text-align", + 68751, + 68760, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 68761, + 68761, + null + ], + [ + "ident-token", + "center", + 68762, + 68767, + { + "value": "center" + } + ], + [ + "}-token", + "}", + 68768, + 68768, + null + ], + [ + "delim-token", + ".", + 68769, + 68769, + { + "value": "." + } + ], + [ + "ident-token", + "nav-fill", + 68770, + 68777, + { + "value": "nav-fill" + } + ], + [ + "whitespace-token", + " ", + 68778, + 68778, + null + ], + [ + "delim-token", + ".", + 68779, + 68779, + { + "value": "." + } + ], + [ + "ident-token", + "nav-item", + 68780, + 68787, + { + "value": "nav-item" + } + ], + [ + "whitespace-token", + " ", + 68788, + 68788, + null + ], + [ + "delim-token", + ".", + 68789, + 68789, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68790, + 68797, + { + "value": "nav-link" + } + ], + [ + "comma-token", + ",", + 68798, + 68798, + null + ], + [ + "delim-token", + ".", + 68799, + 68799, + { + "value": "." + } + ], + [ + "ident-token", + "nav-justified", + 68800, + 68812, + { + "value": "nav-justified" + } + ], + [ + "whitespace-token", + " ", + 68813, + 68813, + null + ], + [ + "delim-token", + ".", + 68814, + 68814, + { + "value": "." + } + ], + [ + "ident-token", + "nav-item", + 68815, + 68822, + { + "value": "nav-item" + } + ], + [ + "whitespace-token", + " ", + 68823, + 68823, + null + ], + [ + "delim-token", + ".", + 68824, + 68824, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 68825, + 68832, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 68833, + 68833, + null + ], + [ + "ident-token", + "width", + 68834, + 68838, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 68839, + 68839, + null + ], + [ + "percentage-token", + "100%", + 68840, + 68843, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 68844, + 68844, + null + ], + [ + "delim-token", + ".", + 68845, + 68845, + { + "value": "." + } + ], + [ + "ident-token", + "tab-content", + 68846, + 68856, + { + "value": "tab-content" + } + ], + [ + "delim-token", + ">", + 68857, + 68857, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 68858, + 68858, + { + "value": "." + } + ], + [ + "ident-token", + "tab-pane", + 68859, + 68866, + { + "value": "tab-pane" + } + ], + [ + "{-token", + "{", + 68867, + 68867, + null + ], + [ + "ident-token", + "display", + 68868, + 68874, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 68875, + 68875, + null + ], + [ + "ident-token", + "none", + 68876, + 68879, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 68880, + 68880, + null + ], + [ + "delim-token", + ".", + 68881, + 68881, + { + "value": "." + } + ], + [ + "ident-token", + "tab-content", + 68882, + 68892, + { + "value": "tab-content" + } + ], + [ + "delim-token", + ">", + 68893, + 68893, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 68894, + 68894, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 68895, + 68900, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 68901, + 68901, + null + ], + [ + "ident-token", + "display", + 68902, + 68908, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 68909, + 68909, + null + ], + [ + "ident-token", + "block", + 68910, + 68914, + { + "value": "block" + } + ], + [ + "}-token", + "}", + 68915, + 68915, + null + ], + [ + "delim-token", + ".", + 68916, + 68916, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 68917, + 68922, + { + "value": "navbar" + } + ], + [ + "{-token", + "{", + 68923, + 68923, + null + ], + [ + "delim-token", + "-", + 68924, + 68924, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68925, + 68925, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-padding-x", + 68926, + 68944, + { + "value": "bs-navbar-padding-x" + } + ], + [ + "colon-token", + ":", + 68945, + 68945, + null + ], + [ + "number-token", + "0", + 68946, + 68946, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 68947, + 68947, + null + ], + [ + "delim-token", + "-", + 68948, + 68948, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68949, + 68949, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-padding-y", + 68950, + 68968, + { + "value": "bs-navbar-padding-y" + } + ], + [ + "colon-token", + ":", + 68969, + 68969, + null + ], + [ + "dimension-token", + "0.5rem", + 68970, + 68975, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 68976, + 68976, + null + ], + [ + "delim-token", + "-", + 68977, + 68977, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 68978, + 68978, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-color", + 68979, + 68993, + { + "value": "bs-navbar-color" + } + ], + [ + "colon-token", + ":", + 68994, + 68994, + null + ], + [ + "function-token", + "rgba(", + 68995, + 68999, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69000, + 69000, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69001, + 69001, + null + ], + [ + "whitespace-token", + " ", + 69002, + 69002, + null + ], + [ + "number-token", + "0", + 69003, + 69003, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69004, + 69004, + null + ], + [ + "whitespace-token", + " ", + 69005, + 69005, + null + ], + [ + "number-token", + "0", + 69006, + 69006, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69007, + 69007, + null + ], + [ + "whitespace-token", + " ", + 69008, + 69008, + null + ], + [ + "number-token", + "0.55", + 69009, + 69012, + { + "value": 0.55, + "type": "number" + } + ], + [ + ")-token", + ")", + 69013, + 69013, + null + ], + [ + "semicolon-token", + ";", + 69014, + 69014, + null + ], + [ + "delim-token", + "-", + 69015, + 69015, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69016, + 69016, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-hover-color", + 69017, + 69037, + { + "value": "bs-navbar-hover-color" + } + ], + [ + "colon-token", + ":", + 69038, + 69038, + null + ], + [ + "function-token", + "rgba(", + 69039, + 69043, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69044, + 69044, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69045, + 69045, + null + ], + [ + "whitespace-token", + " ", + 69046, + 69046, + null + ], + [ + "number-token", + "0", + 69047, + 69047, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69048, + 69048, + null + ], + [ + "whitespace-token", + " ", + 69049, + 69049, + null + ], + [ + "number-token", + "0", + 69050, + 69050, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69051, + 69051, + null + ], + [ + "whitespace-token", + " ", + 69052, + 69052, + null + ], + [ + "number-token", + "0.7", + 69053, + 69055, + { + "value": 0.7, + "type": "number" + } + ], + [ + ")-token", + ")", + 69056, + 69056, + null + ], + [ + "semicolon-token", + ";", + 69057, + 69057, + null + ], + [ + "delim-token", + "-", + 69058, + 69058, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69059, + 69059, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-disabled-color", + 69060, + 69083, + { + "value": "bs-navbar-disabled-color" + } + ], + [ + "colon-token", + ":", + 69084, + 69084, + null + ], + [ + "function-token", + "rgba(", + 69085, + 69089, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69090, + 69090, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69091, + 69091, + null + ], + [ + "whitespace-token", + " ", + 69092, + 69092, + null + ], + [ + "number-token", + "0", + 69093, + 69093, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69094, + 69094, + null + ], + [ + "whitespace-token", + " ", + 69095, + 69095, + null + ], + [ + "number-token", + "0", + 69096, + 69096, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69097, + 69097, + null + ], + [ + "whitespace-token", + " ", + 69098, + 69098, + null + ], + [ + "number-token", + "0.3", + 69099, + 69101, + { + "value": 0.3, + "type": "number" + } + ], + [ + ")-token", + ")", + 69102, + 69102, + null + ], + [ + "semicolon-token", + ";", + 69103, + 69103, + null + ], + [ + "delim-token", + "-", + 69104, + 69104, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69105, + 69105, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-active-color", + 69106, + 69127, + { + "value": "bs-navbar-active-color" + } + ], + [ + "colon-token", + ":", + 69128, + 69128, + null + ], + [ + "function-token", + "rgba(", + 69129, + 69133, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69134, + 69134, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69135, + 69135, + null + ], + [ + "whitespace-token", + " ", + 69136, + 69136, + null + ], + [ + "number-token", + "0", + 69137, + 69137, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69138, + 69138, + null + ], + [ + "whitespace-token", + " ", + 69139, + 69139, + null + ], + [ + "number-token", + "0", + 69140, + 69140, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69141, + 69141, + null + ], + [ + "whitespace-token", + " ", + 69142, + 69142, + null + ], + [ + "number-token", + "0.9", + 69143, + 69145, + { + "value": 0.9, + "type": "number" + } + ], + [ + ")-token", + ")", + 69146, + 69146, + null + ], + [ + "semicolon-token", + ";", + 69147, + 69147, + null + ], + [ + "delim-token", + "-", + 69148, + 69148, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69149, + 69149, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-padding-y", + 69150, + 69174, + { + "value": "bs-navbar-brand-padding-y" + } + ], + [ + "colon-token", + ":", + 69175, + 69175, + null + ], + [ + "dimension-token", + "0.3125rem", + 69176, + 69184, + { + "value": 0.3125, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69185, + 69185, + null + ], + [ + "delim-token", + "-", + 69186, + 69186, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69187, + 69187, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-margin-end", + 69188, + 69213, + { + "value": "bs-navbar-brand-margin-end" + } + ], + [ + "colon-token", + ":", + 69214, + 69214, + null + ], + [ + "dimension-token", + "1rem", + 69215, + 69218, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69219, + 69219, + null + ], + [ + "delim-token", + "-", + 69220, + 69220, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69221, + 69221, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-font-size", + 69222, + 69246, + { + "value": "bs-navbar-brand-font-size" + } + ], + [ + "colon-token", + ":", + 69247, + 69247, + null + ], + [ + "dimension-token", + "1.25rem", + 69248, + 69254, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69255, + 69255, + null + ], + [ + "delim-token", + "-", + 69256, + 69256, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69257, + 69257, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-color", + 69258, + 69278, + { + "value": "bs-navbar-brand-color" + } + ], + [ + "colon-token", + ":", + 69279, + 69279, + null + ], + [ + "function-token", + "rgba(", + 69280, + 69284, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69285, + 69285, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69286, + 69286, + null + ], + [ + "whitespace-token", + " ", + 69287, + 69287, + null + ], + [ + "number-token", + "0", + 69288, + 69288, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69289, + 69289, + null + ], + [ + "whitespace-token", + " ", + 69290, + 69290, + null + ], + [ + "number-token", + "0", + 69291, + 69291, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69292, + 69292, + null + ], + [ + "whitespace-token", + " ", + 69293, + 69293, + null + ], + [ + "number-token", + "0.9", + 69294, + 69296, + { + "value": 0.9, + "type": "number" + } + ], + [ + ")-token", + ")", + 69297, + 69297, + null + ], + [ + "semicolon-token", + ";", + 69298, + 69298, + null + ], + [ + "delim-token", + "-", + 69299, + 69299, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69300, + 69300, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-hover-color", + 69301, + 69327, + { + "value": "bs-navbar-brand-hover-color" + } + ], + [ + "colon-token", + ":", + 69328, + 69328, + null + ], + [ + "function-token", + "rgba(", + 69329, + 69333, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69334, + 69334, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69335, + 69335, + null + ], + [ + "whitespace-token", + " ", + 69336, + 69336, + null + ], + [ + "number-token", + "0", + 69337, + 69337, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69338, + 69338, + null + ], + [ + "whitespace-token", + " ", + 69339, + 69339, + null + ], + [ + "number-token", + "0", + 69340, + 69340, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69341, + 69341, + null + ], + [ + "whitespace-token", + " ", + 69342, + 69342, + null + ], + [ + "number-token", + "0.9", + 69343, + 69345, + { + "value": 0.9, + "type": "number" + } + ], + [ + ")-token", + ")", + 69346, + 69346, + null + ], + [ + "semicolon-token", + ";", + 69347, + 69347, + null + ], + [ + "delim-token", + "-", + 69348, + 69348, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69349, + 69349, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 69350, + 69377, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + "colon-token", + ":", + 69378, + 69378, + null + ], + [ + "dimension-token", + "0.5rem", + 69379, + 69384, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69385, + 69385, + null + ], + [ + "delim-token", + "-", + 69386, + 69386, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69387, + 69387, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-padding-y", + 69388, + 69414, + { + "value": "bs-navbar-toggler-padding-y" + } + ], + [ + "colon-token", + ":", + 69415, + 69415, + null + ], + [ + "dimension-token", + "0.25rem", + 69416, + 69422, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69423, + 69423, + null + ], + [ + "delim-token", + "-", + 69424, + 69424, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69425, + 69425, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-padding-x", + 69426, + 69452, + { + "value": "bs-navbar-toggler-padding-x" + } + ], + [ + "colon-token", + ":", + 69453, + 69453, + null + ], + [ + "dimension-token", + "0.75rem", + 69454, + 69460, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69461, + 69461, + null + ], + [ + "delim-token", + "-", + 69462, + 69462, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69463, + 69463, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-font-size", + 69464, + 69490, + { + "value": "bs-navbar-toggler-font-size" + } + ], + [ + "colon-token", + ":", + 69491, + 69491, + null + ], + [ + "dimension-token", + "1.25rem", + 69492, + 69498, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69499, + 69499, + null + ], + [ + "delim-token", + "-", + 69500, + 69500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69501, + 69501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-icon-bg", + 69502, + 69526, + { + "value": "bs-navbar-toggler-icon-bg" + } + ], + [ + "colon-token", + ":", + 69527, + 69527, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")", + 69528, + 69762, + null + ], + [ + "semicolon-token", + ";", + 69763, + 69763, + null + ], + [ + "delim-token", + "-", + 69764, + 69764, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69765, + 69765, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-border-color", + 69766, + 69795, + { + "value": "bs-navbar-toggler-border-color" + } + ], + [ + "colon-token", + ":", + 69796, + 69796, + null + ], + [ + "function-token", + "rgba(", + 69797, + 69801, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 69802, + 69802, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69803, + 69803, + null + ], + [ + "whitespace-token", + " ", + 69804, + 69804, + null + ], + [ + "number-token", + "0", + 69805, + 69805, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69806, + 69806, + null + ], + [ + "whitespace-token", + " ", + 69807, + 69807, + null + ], + [ + "number-token", + "0", + 69808, + 69808, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 69809, + 69809, + null + ], + [ + "whitespace-token", + " ", + 69810, + 69810, + null + ], + [ + "number-token", + "0.1", + 69811, + 69813, + { + "value": 0.1, + "type": "number" + } + ], + [ + ")-token", + ")", + 69814, + 69814, + null + ], + [ + "semicolon-token", + ";", + 69815, + 69815, + null + ], + [ + "delim-token", + "-", + 69816, + 69816, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69817, + 69817, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-border-radius", + 69818, + 69848, + { + "value": "bs-navbar-toggler-border-radius" + } + ], + [ + "colon-token", + ":", + 69849, + 69849, + null + ], + [ + "dimension-token", + "0.375rem", + 69850, + 69857, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69858, + 69858, + null + ], + [ + "delim-token", + "-", + 69859, + 69859, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69860, + 69860, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-focus-width", + 69861, + 69889, + { + "value": "bs-navbar-toggler-focus-width" + } + ], + [ + "colon-token", + ":", + 69890, + 69890, + null + ], + [ + "dimension-token", + "0.25rem", + 69891, + 69897, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 69898, + 69898, + null + ], + [ + "delim-token", + "-", + 69899, + 69899, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 69900, + 69900, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-transition", + 69901, + 69928, + { + "value": "bs-navbar-toggler-transition" + } + ], + [ + "colon-token", + ":", + 69929, + 69929, + null + ], + [ + "ident-token", + "box-shadow", + 69930, + 69939, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 69940, + 69940, + null + ], + [ + "dimension-token", + "0.15s", + 69941, + 69945, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 69946, + 69946, + null + ], + [ + "ident-token", + "ease-in-out", + 69947, + 69957, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 69958, + 69958, + null + ], + [ + "ident-token", + "position", + 69959, + 69966, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 69967, + 69967, + null + ], + [ + "ident-token", + "relative", + 69968, + 69975, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 69976, + 69976, + null + ], + [ + "ident-token", + "display", + 69977, + 69983, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 69984, + 69984, + null + ], + [ + "ident-token", + "flex", + 69985, + 69988, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 69989, + 69989, + null + ], + [ + "ident-token", + "flex-wrap", + 69990, + 69998, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 69999, + 69999, + null + ], + [ + "ident-token", + "wrap", + 70000, + 70003, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 70004, + 70004, + null + ], + [ + "ident-token", + "align-items", + 70005, + 70015, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 70016, + 70016, + null + ], + [ + "ident-token", + "center", + 70017, + 70022, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 70023, + 70023, + null + ], + [ + "ident-token", + "justify-content", + 70024, + 70038, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 70039, + 70039, + null + ], + [ + "ident-token", + "space-between", + 70040, + 70052, + { + "value": "space-between" + } + ], + [ + "semicolon-token", + ";", + 70053, + 70053, + null + ], + [ + "ident-token", + "padding", + 70054, + 70060, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 70061, + 70061, + null + ], + [ + "function-token", + "var(", + 70062, + 70065, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70066, + 70066, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70067, + 70067, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-padding-y", + 70068, + 70086, + { + "value": "bs-navbar-padding-y" + } + ], + [ + ")-token", + ")", + 70087, + 70087, + null + ], + [ + "whitespace-token", + " ", + 70088, + 70088, + null + ], + [ + "function-token", + "var(", + 70089, + 70092, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70093, + 70093, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70094, + 70094, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-padding-x", + 70095, + 70113, + { + "value": "bs-navbar-padding-x" + } + ], + [ + ")-token", + ")", + 70114, + 70114, + null + ], + [ + "}-token", + "}", + 70115, + 70115, + null + ], + [ + "delim-token", + ".", + 70116, + 70116, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70117, + 70122, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70123, + 70123, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70124, + 70124, + { + "value": "." + } + ], + [ + "ident-token", + "container", + 70125, + 70133, + { + "value": "container" + } + ], + [ + "comma-token", + ",", + 70134, + 70134, + null + ], + [ + "delim-token", + ".", + 70135, + 70135, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70136, + 70141, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70142, + 70142, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70143, + 70143, + { + "value": "." + } + ], + [ + "ident-token", + "container-fluid", + 70144, + 70158, + { + "value": "container-fluid" + } + ], + [ + "comma-token", + ",", + 70159, + 70159, + null + ], + [ + "delim-token", + ".", + 70160, + 70160, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70161, + 70166, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70167, + 70167, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70168, + 70168, + { + "value": "." + } + ], + [ + "ident-token", + "container-lg", + 70169, + 70180, + { + "value": "container-lg" + } + ], + [ + "comma-token", + ",", + 70181, + 70181, + null + ], + [ + "delim-token", + ".", + 70182, + 70182, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70183, + 70188, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70189, + 70189, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70190, + 70190, + { + "value": "." + } + ], + [ + "ident-token", + "container-md", + 70191, + 70202, + { + "value": "container-md" + } + ], + [ + "comma-token", + ",", + 70203, + 70203, + null + ], + [ + "delim-token", + ".", + 70204, + 70204, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70205, + 70210, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70211, + 70211, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70212, + 70212, + { + "value": "." + } + ], + [ + "ident-token", + "container-sm", + 70213, + 70224, + { + "value": "container-sm" + } + ], + [ + "comma-token", + ",", + 70225, + 70225, + null + ], + [ + "delim-token", + ".", + 70226, + 70226, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70227, + 70232, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70233, + 70233, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70234, + 70234, + { + "value": "." + } + ], + [ + "ident-token", + "container-xl", + 70235, + 70246, + { + "value": "container-xl" + } + ], + [ + "comma-token", + ",", + 70247, + 70247, + null + ], + [ + "delim-token", + ".", + 70248, + 70248, + { + "value": "." + } + ], + [ + "ident-token", + "navbar", + 70249, + 70254, + { + "value": "navbar" + } + ], + [ + "delim-token", + ">", + 70255, + 70255, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 70256, + 70256, + { + "value": "." + } + ], + [ + "ident-token", + "container-xxl", + 70257, + 70269, + { + "value": "container-xxl" + } + ], + [ + "{-token", + "{", + 70270, + 70270, + null + ], + [ + "ident-token", + "display", + 70271, + 70277, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 70278, + 70278, + null + ], + [ + "ident-token", + "flex", + 70279, + 70282, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 70283, + 70283, + null + ], + [ + "ident-token", + "flex-wrap", + 70284, + 70292, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 70293, + 70293, + null + ], + [ + "ident-token", + "inherit", + 70294, + 70300, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 70301, + 70301, + null + ], + [ + "ident-token", + "align-items", + 70302, + 70312, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 70313, + 70313, + null + ], + [ + "ident-token", + "center", + 70314, + 70319, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 70320, + 70320, + null + ], + [ + "ident-token", + "justify-content", + 70321, + 70335, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 70336, + 70336, + null + ], + [ + "ident-token", + "space-between", + 70337, + 70349, + { + "value": "space-between" + } + ], + [ + "}-token", + "}", + 70350, + 70350, + null + ], + [ + "delim-token", + ".", + 70351, + 70351, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-brand", + 70352, + 70363, + { + "value": "navbar-brand" + } + ], + [ + "{-token", + "{", + 70364, + 70364, + null + ], + [ + "ident-token", + "padding-top", + 70365, + 70375, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 70376, + 70376, + null + ], + [ + "function-token", + "var(", + 70377, + 70380, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70381, + 70381, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70382, + 70382, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-padding-y", + 70383, + 70407, + { + "value": "bs-navbar-brand-padding-y" + } + ], + [ + ")-token", + ")", + 70408, + 70408, + null + ], + [ + "semicolon-token", + ";", + 70409, + 70409, + null + ], + [ + "ident-token", + "padding-bottom", + 70410, + 70423, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 70424, + 70424, + null + ], + [ + "function-token", + "var(", + 70425, + 70428, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70429, + 70429, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70430, + 70430, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-padding-y", + 70431, + 70455, + { + "value": "bs-navbar-brand-padding-y" + } + ], + [ + ")-token", + ")", + 70456, + 70456, + null + ], + [ + "semicolon-token", + ";", + 70457, + 70457, + null + ], + [ + "ident-token", + "margin-right", + 70458, + 70469, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 70470, + 70470, + null + ], + [ + "function-token", + "var(", + 70471, + 70474, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70475, + 70475, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70476, + 70476, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-margin-end", + 70477, + 70502, + { + "value": "bs-navbar-brand-margin-end" + } + ], + [ + ")-token", + ")", + 70503, + 70503, + null + ], + [ + "semicolon-token", + ";", + 70504, + 70504, + null + ], + [ + "ident-token", + "font-size", + 70505, + 70513, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 70514, + 70514, + null + ], + [ + "function-token", + "var(", + 70515, + 70518, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70519, + 70519, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70520, + 70520, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-font-size", + 70521, + 70545, + { + "value": "bs-navbar-brand-font-size" + } + ], + [ + ")-token", + ")", + 70546, + 70546, + null + ], + [ + "semicolon-token", + ";", + 70547, + 70547, + null + ], + [ + "ident-token", + "color", + 70548, + 70552, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 70553, + 70553, + null + ], + [ + "function-token", + "var(", + 70554, + 70557, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70558, + 70558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70559, + 70559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-color", + 70560, + 70580, + { + "value": "bs-navbar-brand-color" + } + ], + [ + ")-token", + ")", + 70581, + 70581, + null + ], + [ + "semicolon-token", + ";", + 70582, + 70582, + null + ], + [ + "ident-token", + "text-decoration", + 70583, + 70597, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 70598, + 70598, + null + ], + [ + "ident-token", + "none", + 70599, + 70602, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 70603, + 70603, + null + ], + [ + "ident-token", + "white-space", + 70604, + 70614, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 70615, + 70615, + null + ], + [ + "ident-token", + "nowrap", + 70616, + 70621, + { + "value": "nowrap" + } + ], + [ + "}-token", + "}", + 70622, + 70622, + null + ], + [ + "delim-token", + ".", + 70623, + 70623, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-brand", + 70624, + 70635, + { + "value": "navbar-brand" + } + ], + [ + "colon-token", + ":", + 70636, + 70636, + null + ], + [ + "ident-token", + "focus", + 70637, + 70641, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 70642, + 70642, + null + ], + [ + "delim-token", + ".", + 70643, + 70643, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-brand", + 70644, + 70655, + { + "value": "navbar-brand" + } + ], + [ + "colon-token", + ":", + 70656, + 70656, + null + ], + [ + "ident-token", + "hover", + 70657, + 70661, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 70662, + 70662, + null + ], + [ + "ident-token", + "color", + 70663, + 70667, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 70668, + 70668, + null + ], + [ + "function-token", + "var(", + 70669, + 70672, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70673, + 70673, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70674, + 70674, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-hover-color", + 70675, + 70701, + { + "value": "bs-navbar-brand-hover-color" + } + ], + [ + ")-token", + ")", + 70702, + 70702, + null + ], + [ + "}-token", + "}", + 70703, + 70703, + null + ], + [ + "delim-token", + ".", + 70704, + 70704, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 70705, + 70714, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 70715, + 70715, + null + ], + [ + "delim-token", + "-", + 70716, + 70716, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70717, + 70717, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-x", + 70718, + 70738, + { + "value": "bs-nav-link-padding-x" + } + ], + [ + "colon-token", + ":", + 70739, + 70739, + null + ], + [ + "number-token", + "0", + 70740, + 70740, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 70741, + 70741, + null + ], + [ + "delim-token", + "-", + 70742, + 70742, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70743, + 70743, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-padding-y", + 70744, + 70764, + { + "value": "bs-nav-link-padding-y" + } + ], + [ + "colon-token", + ":", + 70765, + 70765, + null + ], + [ + "dimension-token", + "0.5rem", + 70766, + 70771, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 70772, + 70772, + null + ], + [ + "delim-token", + "-", + 70773, + 70773, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70774, + 70774, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-font-weight", + 70775, + 70797, + { + "value": "bs-nav-link-font-weight" + } + ], + [ + "colon-token", + ":", + 70798, + 70798, + null + ], + [ + "whitespace-token", + " ", + 70799, + 70799, + null + ], + [ + "semicolon-token", + ";", + 70800, + 70800, + null + ], + [ + "delim-token", + "-", + 70801, + 70801, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70802, + 70802, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-color", + 70803, + 70819, + { + "value": "bs-nav-link-color" + } + ], + [ + "colon-token", + ":", + 70820, + 70820, + null + ], + [ + "function-token", + "var(", + 70821, + 70824, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70825, + 70825, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70826, + 70826, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-color", + 70827, + 70841, + { + "value": "bs-navbar-color" + } + ], + [ + ")-token", + ")", + 70842, + 70842, + null + ], + [ + "semicolon-token", + ";", + 70843, + 70843, + null + ], + [ + "delim-token", + "-", + 70844, + 70844, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70845, + 70845, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-hover-color", + 70846, + 70868, + { + "value": "bs-nav-link-hover-color" + } + ], + [ + "colon-token", + ":", + 70869, + 70869, + null + ], + [ + "function-token", + "var(", + 70870, + 70873, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70874, + 70874, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70875, + 70875, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-hover-color", + 70876, + 70896, + { + "value": "bs-navbar-hover-color" + } + ], + [ + ")-token", + ")", + 70897, + 70897, + null + ], + [ + "semicolon-token", + ";", + 70898, + 70898, + null + ], + [ + "delim-token", + "-", + 70899, + 70899, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70900, + 70900, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-nav-link-disabled-color", + 70901, + 70926, + { + "value": "bs-nav-link-disabled-color" + } + ], + [ + "colon-token", + ":", + 70927, + 70927, + null + ], + [ + "function-token", + "var(", + 70928, + 70931, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 70932, + 70932, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 70933, + 70933, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-disabled-color", + 70934, + 70957, + { + "value": "bs-navbar-disabled-color" + } + ], + [ + ")-token", + ")", + 70958, + 70958, + null + ], + [ + "semicolon-token", + ";", + 70959, + 70959, + null + ], + [ + "ident-token", + "display", + 70960, + 70966, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 70967, + 70967, + null + ], + [ + "ident-token", + "flex", + 70968, + 70971, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 70972, + 70972, + null + ], + [ + "ident-token", + "flex-direction", + 70973, + 70986, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 70987, + 70987, + null + ], + [ + "ident-token", + "column", + 70988, + 70993, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 70994, + 70994, + null + ], + [ + "ident-token", + "padding-left", + 70995, + 71006, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 71007, + 71007, + null + ], + [ + "number-token", + "0", + 71008, + 71008, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 71009, + 71009, + null + ], + [ + "ident-token", + "margin-bottom", + 71010, + 71022, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 71023, + 71023, + null + ], + [ + "number-token", + "0", + 71024, + 71024, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 71025, + 71025, + null + ], + [ + "ident-token", + "list-style", + 71026, + 71035, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 71036, + 71036, + null + ], + [ + "ident-token", + "none", + 71037, + 71040, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 71041, + 71041, + null + ], + [ + "delim-token", + ".", + 71042, + 71042, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 71043, + 71052, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 71053, + 71053, + null + ], + [ + "delim-token", + ".", + 71054, + 71054, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 71055, + 71062, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 71063, + 71063, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 71064, + 71069, + { + "value": "active" + } + ], + [ + "comma-token", + ",", + 71070, + 71070, + null + ], + [ + "delim-token", + ".", + 71071, + 71071, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 71072, + 71081, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 71082, + 71082, + null + ], + [ + "delim-token", + ".", + 71083, + 71083, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 71084, + 71087, + { + "value": "show" + } + ], + [ + "delim-token", + ">", + 71088, + 71088, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 71089, + 71089, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 71090, + 71097, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 71098, + 71098, + null + ], + [ + "ident-token", + "color", + 71099, + 71103, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 71104, + 71104, + null + ], + [ + "function-token", + "var(", + 71105, + 71108, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71109, + 71109, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71110, + 71110, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-active-color", + 71111, + 71132, + { + "value": "bs-navbar-active-color" + } + ], + [ + ")-token", + ")", + 71133, + 71133, + null + ], + [ + "}-token", + "}", + 71134, + 71134, + null + ], + [ + "delim-token", + ".", + 71135, + 71135, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 71136, + 71145, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 71146, + 71146, + null + ], + [ + "delim-token", + ".", + 71147, + 71147, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 71148, + 71160, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 71161, + 71161, + null + ], + [ + "ident-token", + "position", + 71162, + 71169, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 71170, + 71170, + null + ], + [ + "ident-token", + "static", + 71171, + 71176, + { + "value": "static" + } + ], + [ + "}-token", + "}", + 71177, + 71177, + null + ], + [ + "delim-token", + ".", + 71178, + 71178, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-text", + 71179, + 71189, + { + "value": "navbar-text" + } + ], + [ + "{-token", + "{", + 71190, + 71190, + null + ], + [ + "ident-token", + "padding-top", + 71191, + 71201, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 71202, + 71202, + null + ], + [ + "dimension-token", + ".5rem", + 71203, + 71207, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 71208, + 71208, + null + ], + [ + "ident-token", + "padding-bottom", + 71209, + 71222, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 71223, + 71223, + null + ], + [ + "dimension-token", + ".5rem", + 71224, + 71228, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 71229, + 71229, + null + ], + [ + "ident-token", + "color", + 71230, + 71234, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 71235, + 71235, + null + ], + [ + "function-token", + "var(", + 71236, + 71239, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71240, + 71240, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71241, + 71241, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-color", + 71242, + 71256, + { + "value": "bs-navbar-color" + } + ], + [ + ")-token", + ")", + 71257, + 71257, + null + ], + [ + "}-token", + "}", + 71258, + 71258, + null + ], + [ + "delim-token", + ".", + 71259, + 71259, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-text", + 71260, + 71270, + { + "value": "navbar-text" + } + ], + [ + "whitespace-token", + " ", + 71271, + 71271, + null + ], + [ + "ident-token", + "a", + 71272, + 71272, + { + "value": "a" + } + ], + [ + "comma-token", + ",", + 71273, + 71273, + null + ], + [ + "delim-token", + ".", + 71274, + 71274, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-text", + 71275, + 71285, + { + "value": "navbar-text" + } + ], + [ + "whitespace-token", + " ", + 71286, + 71286, + null + ], + [ + "ident-token", + "a", + 71287, + 71287, + { + "value": "a" + } + ], + [ + "colon-token", + ":", + 71288, + 71288, + null + ], + [ + "ident-token", + "focus", + 71289, + 71293, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 71294, + 71294, + null + ], + [ + "delim-token", + ".", + 71295, + 71295, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-text", + 71296, + 71306, + { + "value": "navbar-text" + } + ], + [ + "whitespace-token", + " ", + 71307, + 71307, + null + ], + [ + "ident-token", + "a", + 71308, + 71308, + { + "value": "a" + } + ], + [ + "colon-token", + ":", + 71309, + 71309, + null + ], + [ + "ident-token", + "hover", + 71310, + 71314, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 71315, + 71315, + null + ], + [ + "ident-token", + "color", + 71316, + 71320, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 71321, + 71321, + null + ], + [ + "function-token", + "var(", + 71322, + 71325, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71326, + 71326, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71327, + 71327, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-active-color", + 71328, + 71349, + { + "value": "bs-navbar-active-color" + } + ], + [ + ")-token", + ")", + 71350, + 71350, + null + ], + [ + "}-token", + "}", + 71351, + 71351, + null + ], + [ + "delim-token", + ".", + 71352, + 71352, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 71353, + 71367, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 71368, + 71368, + null + ], + [ + "ident-token", + "flex-basis", + 71369, + 71378, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 71379, + 71379, + null + ], + [ + "percentage-token", + "100%", + 71380, + 71383, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 71384, + 71384, + null + ], + [ + "ident-token", + "flex-grow", + 71385, + 71393, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 71394, + 71394, + null + ], + [ + "number-token", + "1", + 71395, + 71395, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 71396, + 71396, + null + ], + [ + "ident-token", + "align-items", + 71397, + 71407, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 71408, + 71408, + null + ], + [ + "ident-token", + "center", + 71409, + 71414, + { + "value": "center" + } + ], + [ + "}-token", + "}", + 71415, + 71415, + null + ], + [ + "delim-token", + ".", + 71416, + 71416, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 71417, + 71430, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 71431, + 71431, + null + ], + [ + "ident-token", + "padding", + 71432, + 71438, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 71439, + 71439, + null + ], + [ + "function-token", + "var(", + 71440, + 71443, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71444, + 71444, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71445, + 71445, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-padding-y", + 71446, + 71472, + { + "value": "bs-navbar-toggler-padding-y" + } + ], + [ + ")-token", + ")", + 71473, + 71473, + null + ], + [ + "whitespace-token", + " ", + 71474, + 71474, + null + ], + [ + "function-token", + "var(", + 71475, + 71478, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71479, + 71479, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71480, + 71480, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-padding-x", + 71481, + 71507, + { + "value": "bs-navbar-toggler-padding-x" + } + ], + [ + ")-token", + ")", + 71508, + 71508, + null + ], + [ + "semicolon-token", + ";", + 71509, + 71509, + null + ], + [ + "ident-token", + "font-size", + 71510, + 71518, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 71519, + 71519, + null + ], + [ + "function-token", + "var(", + 71520, + 71523, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71524, + 71524, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71525, + 71525, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-font-size", + 71526, + 71552, + { + "value": "bs-navbar-toggler-font-size" + } + ], + [ + ")-token", + ")", + 71553, + 71553, + null + ], + [ + "semicolon-token", + ";", + 71554, + 71554, + null + ], + [ + "ident-token", + "line-height", + 71555, + 71565, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 71566, + 71566, + null + ], + [ + "number-token", + "1", + 71567, + 71567, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 71568, + 71568, + null + ], + [ + "ident-token", + "color", + 71569, + 71573, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 71574, + 71574, + null + ], + [ + "function-token", + "var(", + 71575, + 71578, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71579, + 71579, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71580, + 71580, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-color", + 71581, + 71595, + { + "value": "bs-navbar-color" + } + ], + [ + ")-token", + ")", + 71596, + 71596, + null + ], + [ + "semicolon-token", + ";", + 71597, + 71597, + null + ], + [ + "ident-token", + "background-color", + 71598, + 71613, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 71614, + 71614, + null + ], + [ + "ident-token", + "transparent", + 71615, + 71625, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 71626, + 71626, + null + ], + [ + "ident-token", + "border", + 71627, + 71632, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 71633, + 71633, + null + ], + [ + "function-token", + "var(", + 71634, + 71637, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71638, + 71638, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71639, + 71639, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 71640, + 71654, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 71655, + 71655, + null + ], + [ + "whitespace-token", + " ", + 71656, + 71656, + null + ], + [ + "ident-token", + "solid", + 71657, + 71661, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 71662, + 71662, + null + ], + [ + "function-token", + "var(", + 71663, + 71666, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71667, + 71667, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71668, + 71668, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-border-color", + 71669, + 71698, + { + "value": "bs-navbar-toggler-border-color" + } + ], + [ + ")-token", + ")", + 71699, + 71699, + null + ], + [ + "semicolon-token", + ";", + 71700, + 71700, + null + ], + [ + "ident-token", + "border-radius", + 71701, + 71713, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 71714, + 71714, + null + ], + [ + "function-token", + "var(", + 71715, + 71718, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71719, + 71719, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71720, + 71720, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-border-radius", + 71721, + 71751, + { + "value": "bs-navbar-toggler-border-radius" + } + ], + [ + ")-token", + ")", + 71752, + 71752, + null + ], + [ + "semicolon-token", + ";", + 71753, + 71753, + null + ], + [ + "ident-token", + "transition", + 71754, + 71763, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 71764, + 71764, + null + ], + [ + "function-token", + "var(", + 71765, + 71768, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71769, + 71769, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71770, + 71770, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-transition", + 71771, + 71798, + { + "value": "bs-navbar-toggler-transition" + } + ], + [ + ")-token", + ")", + 71799, + 71799, + null + ], + [ + "}-token", + "}", + 71800, + 71800, + null + ], + [ + "at-keyword-token", + "@media", + 71801, + 71806, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 71807, + 71807, + null + ], + [ + "(-token", + "(", + 71808, + 71808, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 71809, + 71830, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 71831, + 71831, + null + ], + [ + "ident-token", + "reduce", + 71832, + 71837, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 71838, + 71838, + null + ], + [ + "{-token", + "{", + 71839, + 71839, + null + ], + [ + "delim-token", + ".", + 71840, + 71840, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 71841, + 71854, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 71855, + 71855, + null + ], + [ + "ident-token", + "transition", + 71856, + 71865, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 71866, + 71866, + null + ], + [ + "ident-token", + "none", + 71867, + 71870, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 71871, + 71871, + null + ], + [ + "}-token", + "}", + 71872, + 71872, + null + ], + [ + "delim-token", + ".", + 71873, + 71873, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 71874, + 71887, + { + "value": "navbar-toggler" + } + ], + [ + "colon-token", + ":", + 71888, + 71888, + null + ], + [ + "ident-token", + "hover", + 71889, + 71893, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 71894, + 71894, + null + ], + [ + "ident-token", + "text-decoration", + 71895, + 71909, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 71910, + 71910, + null + ], + [ + "ident-token", + "none", + 71911, + 71914, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 71915, + 71915, + null + ], + [ + "delim-token", + ".", + 71916, + 71916, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 71917, + 71930, + { + "value": "navbar-toggler" + } + ], + [ + "colon-token", + ":", + 71931, + 71931, + null + ], + [ + "ident-token", + "focus", + 71932, + 71936, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 71937, + 71937, + null + ], + [ + "ident-token", + "text-decoration", + 71938, + 71952, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 71953, + 71953, + null + ], + [ + "ident-token", + "none", + 71954, + 71957, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 71958, + 71958, + null + ], + [ + "ident-token", + "outline", + 71959, + 71965, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 71966, + 71966, + null + ], + [ + "number-token", + "0", + 71967, + 71967, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 71968, + 71968, + null + ], + [ + "ident-token", + "box-shadow", + 71969, + 71978, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 71979, + 71979, + null + ], + [ + "number-token", + "0", + 71980, + 71980, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 71981, + 71981, + null + ], + [ + "number-token", + "0", + 71982, + 71982, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 71983, + 71983, + null + ], + [ + "number-token", + "0", + 71984, + 71984, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 71985, + 71985, + null + ], + [ + "function-token", + "var(", + 71986, + 71989, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 71990, + 71990, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 71991, + 71991, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-focus-width", + 71992, + 72020, + { + "value": "bs-navbar-toggler-focus-width" + } + ], + [ + ")-token", + ")", + 72021, + 72021, + null + ], + [ + "}-token", + "}", + 72022, + 72022, + null + ], + [ + "delim-token", + ".", + 72023, + 72023, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler-icon", + 72024, + 72042, + { + "value": "navbar-toggler-icon" + } + ], + [ + "{-token", + "{", + 72043, + 72043, + null + ], + [ + "ident-token", + "display", + 72044, + 72050, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 72051, + 72051, + null + ], + [ + "ident-token", + "inline-block", + 72052, + 72063, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 72064, + 72064, + null + ], + [ + "ident-token", + "width", + 72065, + 72069, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 72070, + 72070, + null + ], + [ + "dimension-token", + "1.5em", + 72071, + 72075, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 72076, + 72076, + null + ], + [ + "ident-token", + "height", + 72077, + 72082, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 72083, + 72083, + null + ], + [ + "dimension-token", + "1.5em", + 72084, + 72088, + { + "value": 1.5, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 72089, + 72089, + null + ], + [ + "ident-token", + "vertical-align", + 72090, + 72103, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 72104, + 72104, + null + ], + [ + "ident-token", + "middle", + 72105, + 72110, + { + "value": "middle" + } + ], + [ + "semicolon-token", + ";", + 72111, + 72111, + null + ], + [ + "ident-token", + "background-image", + 72112, + 72127, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 72128, + 72128, + null + ], + [ + "function-token", + "var(", + 72129, + 72132, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 72133, + 72133, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 72134, + 72134, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-icon-bg", + 72135, + 72159, + { + "value": "bs-navbar-toggler-icon-bg" + } + ], + [ + ")-token", + ")", + 72160, + 72160, + null + ], + [ + "semicolon-token", + ";", + 72161, + 72161, + null + ], + [ + "ident-token", + "background-repeat", + 72162, + 72178, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 72179, + 72179, + null + ], + [ + "ident-token", + "no-repeat", + 72180, + 72188, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 72189, + 72189, + null + ], + [ + "ident-token", + "background-position", + 72190, + 72208, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 72209, + 72209, + null + ], + [ + "ident-token", + "center", + 72210, + 72215, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 72216, + 72216, + null + ], + [ + "ident-token", + "background-size", + 72217, + 72231, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 72232, + 72232, + null + ], + [ + "percentage-token", + "100%", + 72233, + 72236, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 72237, + 72237, + null + ], + [ + "delim-token", + ".", + 72238, + 72238, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 72239, + 72255, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 72256, + 72256, + null + ], + [ + "ident-token", + "max-height", + 72257, + 72266, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 72267, + 72267, + null + ], + [ + "function-token", + "var(", + 72268, + 72271, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 72272, + 72272, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 72273, + 72273, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-scroll-height", + 72274, + 72289, + { + "value": "bs-scroll-height" + } + ], + [ + "comma-token", + ",", + 72290, + 72290, + null + ], + [ + "dimension-token", + "75vh", + 72291, + 72294, + { + "value": 75, + "type": "integer", + "unit": "vh" + } + ], + [ + ")-token", + ")", + 72295, + 72295, + null + ], + [ + "semicolon-token", + ";", + 72296, + 72296, + null + ], + [ + "ident-token", + "overflow-y", + 72297, + 72306, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 72307, + 72307, + null + ], + [ + "ident-token", + "auto", + 72308, + 72311, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 72312, + 72312, + null + ], + [ + "at-keyword-token", + "@media", + 72313, + 72318, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 72319, + 72319, + null + ], + [ + "(-token", + "(", + 72320, + 72320, + null + ], + [ + "ident-token", + "min-width", + 72321, + 72329, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 72330, + 72330, + null + ], + [ + "dimension-token", + "576px", + 72331, + 72335, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 72336, + 72336, + null + ], + [ + "{-token", + "{", + 72337, + 72337, + null + ], + [ + "delim-token", + ".", + 72338, + 72338, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72339, + 72354, + { + "value": "navbar-expand-sm" + } + ], + [ + "{-token", + "{", + 72355, + 72355, + null + ], + [ + "ident-token", + "flex-wrap", + 72356, + 72364, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 72365, + 72365, + null + ], + [ + "ident-token", + "nowrap", + 72366, + 72371, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 72372, + 72372, + null + ], + [ + "ident-token", + "justify-content", + 72373, + 72387, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 72388, + 72388, + null + ], + [ + "ident-token", + "flex-start", + 72389, + 72398, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 72399, + 72399, + null + ], + [ + "delim-token", + ".", + 72400, + 72400, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72401, + 72416, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72417, + 72417, + null + ], + [ + "delim-token", + ".", + 72418, + 72418, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 72419, + 72428, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 72429, + 72429, + null + ], + [ + "ident-token", + "flex-direction", + 72430, + 72443, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 72444, + 72444, + null + ], + [ + "ident-token", + "row", + 72445, + 72447, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 72448, + 72448, + null + ], + [ + "delim-token", + ".", + 72449, + 72449, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72450, + 72465, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72466, + 72466, + null + ], + [ + "delim-token", + ".", + 72467, + 72467, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 72468, + 72477, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 72478, + 72478, + null + ], + [ + "delim-token", + ".", + 72479, + 72479, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 72480, + 72492, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 72493, + 72493, + null + ], + [ + "ident-token", + "position", + 72494, + 72501, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 72502, + 72502, + null + ], + [ + "ident-token", + "absolute", + 72503, + 72510, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 72511, + 72511, + null + ], + [ + "delim-token", + ".", + 72512, + 72512, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72513, + 72528, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72529, + 72529, + null + ], + [ + "delim-token", + ".", + 72530, + 72530, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 72531, + 72540, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 72541, + 72541, + null + ], + [ + "delim-token", + ".", + 72542, + 72542, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 72543, + 72550, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 72551, + 72551, + null + ], + [ + "ident-token", + "padding-right", + 72552, + 72564, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 72565, + 72565, + null + ], + [ + "function-token", + "var(", + 72566, + 72569, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 72570, + 72570, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 72571, + 72571, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 72572, + 72599, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 72600, + 72600, + null + ], + [ + "semicolon-token", + ";", + 72601, + 72601, + null + ], + [ + "ident-token", + "padding-left", + 72602, + 72613, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 72614, + 72614, + null + ], + [ + "function-token", + "var(", + 72615, + 72618, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 72619, + 72619, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 72620, + 72620, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 72621, + 72648, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 72649, + 72649, + null + ], + [ + "}-token", + "}", + 72650, + 72650, + null + ], + [ + "delim-token", + ".", + 72651, + 72651, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72652, + 72667, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72668, + 72668, + null + ], + [ + "delim-token", + ".", + 72669, + 72669, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 72670, + 72686, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 72687, + 72687, + null + ], + [ + "ident-token", + "overflow", + 72688, + 72695, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 72696, + 72696, + null + ], + [ + "ident-token", + "visible", + 72697, + 72703, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 72704, + 72704, + null + ], + [ + "delim-token", + ".", + 72705, + 72705, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72706, + 72721, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72722, + 72722, + null + ], + [ + "delim-token", + ".", + 72723, + 72723, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 72724, + 72738, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 72739, + 72739, + null + ], + [ + "ident-token", + "display", + 72740, + 72746, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 72747, + 72747, + null + ], + [ + "ident-token", + "flex", + 72748, + 72751, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 72752, + 72752, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 72753, + 72761, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 72762, + 72762, + null + ], + [ + "ident-token", + "flex-basis", + 72763, + 72772, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 72773, + 72773, + null + ], + [ + "ident-token", + "auto", + 72774, + 72777, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 72778, + 72778, + null + ], + [ + "delim-token", + ".", + 72779, + 72779, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72780, + 72795, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72796, + 72796, + null + ], + [ + "delim-token", + ".", + 72797, + 72797, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 72798, + 72811, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 72812, + 72812, + null + ], + [ + "ident-token", + "display", + 72813, + 72819, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 72820, + 72820, + null + ], + [ + "ident-token", + "none", + 72821, + 72824, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 72825, + 72825, + null + ], + [ + "delim-token", + ".", + 72826, + 72826, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 72827, + 72842, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 72843, + 72843, + null + ], + [ + "delim-token", + ".", + 72844, + 72844, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 72845, + 72853, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 72854, + 72854, + null + ], + [ + "ident-token", + "position", + 72855, + 72862, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 72863, + 72863, + null + ], + [ + "ident-token", + "static", + 72864, + 72869, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 72870, + 72870, + null + ], + [ + "ident-token", + "z-index", + 72871, + 72877, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 72878, + 72878, + null + ], + [ + "ident-token", + "auto", + 72879, + 72882, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 72883, + 72883, + null + ], + [ + "ident-token", + "flex-grow", + 72884, + 72892, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 72893, + 72893, + null + ], + [ + "number-token", + "1", + 72894, + 72894, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 72895, + 72895, + null + ], + [ + "ident-token", + "width", + 72896, + 72900, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 72901, + 72901, + null + ], + [ + "ident-token", + "auto", + 72902, + 72905, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 72906, + 72906, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 72907, + 72915, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 72916, + 72916, + null + ], + [ + "ident-token", + "height", + 72917, + 72922, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 72923, + 72923, + null + ], + [ + "ident-token", + "auto", + 72924, + 72927, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 72928, + 72928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 72929, + 72937, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 72938, + 72938, + null + ], + [ + "ident-token", + "visibility", + 72939, + 72948, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 72949, + 72949, + null + ], + [ + "ident-token", + "visible", + 72950, + 72956, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 72957, + 72957, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 72958, + 72966, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 72967, + 72967, + null + ], + [ + "ident-token", + "background-color", + 72968, + 72983, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 72984, + 72984, + null + ], + [ + "ident-token", + "transparent", + 72985, + 72995, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 72996, + 72996, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 72997, + 73005, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73006, + 73006, + null + ], + [ + "ident-token", + "border", + 73007, + 73012, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 73013, + 73013, + null + ], + [ + "number-token", + "0", + 73014, + 73014, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 73015, + 73015, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73016, + 73024, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73025, + 73025, + null + ], + [ + "ident-token", + "transform", + 73026, + 73034, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 73035, + 73035, + null + ], + [ + "ident-token", + "none", + 73036, + 73039, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 73040, + 73040, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73041, + 73049, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73050, + 73050, + null + ], + [ + "ident-token", + "transition", + 73051, + 73060, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 73061, + 73061, + null + ], + [ + "ident-token", + "none", + 73062, + 73065, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 73066, + 73066, + null + ], + [ + "delim-token", + ".", + 73067, + 73067, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 73068, + 73083, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 73084, + 73084, + null + ], + [ + "delim-token", + ".", + 73085, + 73085, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 73086, + 73094, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 73095, + 73095, + null + ], + [ + "delim-token", + ".", + 73096, + 73096, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 73097, + 73112, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 73113, + 73113, + null + ], + [ + "ident-token", + "display", + 73114, + 73120, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 73121, + 73121, + null + ], + [ + "ident-token", + "none", + 73122, + 73125, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 73126, + 73126, + null + ], + [ + "delim-token", + ".", + 73127, + 73127, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-sm", + 73128, + 73143, + { + "value": "navbar-expand-sm" + } + ], + [ + "whitespace-token", + " ", + 73144, + 73144, + null + ], + [ + "delim-token", + ".", + 73145, + 73145, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 73146, + 73154, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 73155, + 73155, + null + ], + [ + "delim-token", + ".", + 73156, + 73156, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 73157, + 73170, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 73171, + 73171, + null + ], + [ + "ident-token", + "display", + 73172, + 73178, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 73179, + 73179, + null + ], + [ + "ident-token", + "flex", + 73180, + 73183, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 73184, + 73184, + null + ], + [ + "ident-token", + "flex-grow", + 73185, + 73193, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 73194, + 73194, + null + ], + [ + "number-token", + "0", + 73195, + 73195, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 73196, + 73196, + null + ], + [ + "ident-token", + "padding", + 73197, + 73203, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 73204, + 73204, + null + ], + [ + "number-token", + "0", + 73205, + 73205, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 73206, + 73206, + null + ], + [ + "ident-token", + "overflow-y", + 73207, + 73216, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 73217, + 73217, + null + ], + [ + "ident-token", + "visible", + 73218, + 73224, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 73225, + 73225, + null + ], + [ + "}-token", + "}", + 73226, + 73226, + null + ], + [ + "at-keyword-token", + "@media", + 73227, + 73232, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 73233, + 73233, + null + ], + [ + "(-token", + "(", + 73234, + 73234, + null + ], + [ + "ident-token", + "min-width", + 73235, + 73243, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 73244, + 73244, + null + ], + [ + "dimension-token", + "768px", + 73245, + 73249, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 73250, + 73250, + null + ], + [ + "{-token", + "{", + 73251, + 73251, + null + ], + [ + "delim-token", + ".", + 73252, + 73252, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73253, + 73268, + { + "value": "navbar-expand-md" + } + ], + [ + "{-token", + "{", + 73269, + 73269, + null + ], + [ + "ident-token", + "flex-wrap", + 73270, + 73278, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 73279, + 73279, + null + ], + [ + "ident-token", + "nowrap", + 73280, + 73285, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 73286, + 73286, + null + ], + [ + "ident-token", + "justify-content", + 73287, + 73301, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 73302, + 73302, + null + ], + [ + "ident-token", + "flex-start", + 73303, + 73312, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 73313, + 73313, + null + ], + [ + "delim-token", + ".", + 73314, + 73314, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73315, + 73330, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73331, + 73331, + null + ], + [ + "delim-token", + ".", + 73332, + 73332, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 73333, + 73342, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 73343, + 73343, + null + ], + [ + "ident-token", + "flex-direction", + 73344, + 73357, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 73358, + 73358, + null + ], + [ + "ident-token", + "row", + 73359, + 73361, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 73362, + 73362, + null + ], + [ + "delim-token", + ".", + 73363, + 73363, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73364, + 73379, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73380, + 73380, + null + ], + [ + "delim-token", + ".", + 73381, + 73381, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 73382, + 73391, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 73392, + 73392, + null + ], + [ + "delim-token", + ".", + 73393, + 73393, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 73394, + 73406, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 73407, + 73407, + null + ], + [ + "ident-token", + "position", + 73408, + 73415, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 73416, + 73416, + null + ], + [ + "ident-token", + "absolute", + 73417, + 73424, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 73425, + 73425, + null + ], + [ + "delim-token", + ".", + 73426, + 73426, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73427, + 73442, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73443, + 73443, + null + ], + [ + "delim-token", + ".", + 73444, + 73444, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 73445, + 73454, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 73455, + 73455, + null + ], + [ + "delim-token", + ".", + 73456, + 73456, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 73457, + 73464, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 73465, + 73465, + null + ], + [ + "ident-token", + "padding-right", + 73466, + 73478, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 73479, + 73479, + null + ], + [ + "function-token", + "var(", + 73480, + 73483, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 73484, + 73484, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 73485, + 73485, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 73486, + 73513, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 73514, + 73514, + null + ], + [ + "semicolon-token", + ";", + 73515, + 73515, + null + ], + [ + "ident-token", + "padding-left", + 73516, + 73527, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 73528, + 73528, + null + ], + [ + "function-token", + "var(", + 73529, + 73532, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 73533, + 73533, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 73534, + 73534, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 73535, + 73562, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 73563, + 73563, + null + ], + [ + "}-token", + "}", + 73564, + 73564, + null + ], + [ + "delim-token", + ".", + 73565, + 73565, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73566, + 73581, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73582, + 73582, + null + ], + [ + "delim-token", + ".", + 73583, + 73583, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 73584, + 73600, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 73601, + 73601, + null + ], + [ + "ident-token", + "overflow", + 73602, + 73609, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 73610, + 73610, + null + ], + [ + "ident-token", + "visible", + 73611, + 73617, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 73618, + 73618, + null + ], + [ + "delim-token", + ".", + 73619, + 73619, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73620, + 73635, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73636, + 73636, + null + ], + [ + "delim-token", + ".", + 73637, + 73637, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 73638, + 73652, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 73653, + 73653, + null + ], + [ + "ident-token", + "display", + 73654, + 73660, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 73661, + 73661, + null + ], + [ + "ident-token", + "flex", + 73662, + 73665, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 73666, + 73666, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73667, + 73675, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73676, + 73676, + null + ], + [ + "ident-token", + "flex-basis", + 73677, + 73686, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 73687, + 73687, + null + ], + [ + "ident-token", + "auto", + 73688, + 73691, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 73692, + 73692, + null + ], + [ + "delim-token", + ".", + 73693, + 73693, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73694, + 73709, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73710, + 73710, + null + ], + [ + "delim-token", + ".", + 73711, + 73711, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 73712, + 73725, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 73726, + 73726, + null + ], + [ + "ident-token", + "display", + 73727, + 73733, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 73734, + 73734, + null + ], + [ + "ident-token", + "none", + 73735, + 73738, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 73739, + 73739, + null + ], + [ + "delim-token", + ".", + 73740, + 73740, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73741, + 73756, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73757, + 73757, + null + ], + [ + "delim-token", + ".", + 73758, + 73758, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 73759, + 73767, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 73768, + 73768, + null + ], + [ + "ident-token", + "position", + 73769, + 73776, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 73777, + 73777, + null + ], + [ + "ident-token", + "static", + 73778, + 73783, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 73784, + 73784, + null + ], + [ + "ident-token", + "z-index", + 73785, + 73791, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 73792, + 73792, + null + ], + [ + "ident-token", + "auto", + 73793, + 73796, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 73797, + 73797, + null + ], + [ + "ident-token", + "flex-grow", + 73798, + 73806, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 73807, + 73807, + null + ], + [ + "number-token", + "1", + 73808, + 73808, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 73809, + 73809, + null + ], + [ + "ident-token", + "width", + 73810, + 73814, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 73815, + 73815, + null + ], + [ + "ident-token", + "auto", + 73816, + 73819, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 73820, + 73820, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73821, + 73829, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73830, + 73830, + null + ], + [ + "ident-token", + "height", + 73831, + 73836, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 73837, + 73837, + null + ], + [ + "ident-token", + "auto", + 73838, + 73841, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 73842, + 73842, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73843, + 73851, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73852, + 73852, + null + ], + [ + "ident-token", + "visibility", + 73853, + 73862, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 73863, + 73863, + null + ], + [ + "ident-token", + "visible", + 73864, + 73870, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 73871, + 73871, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73872, + 73880, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73881, + 73881, + null + ], + [ + "ident-token", + "background-color", + 73882, + 73897, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 73898, + 73898, + null + ], + [ + "ident-token", + "transparent", + 73899, + 73909, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 73910, + 73910, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73911, + 73919, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73920, + 73920, + null + ], + [ + "ident-token", + "border", + 73921, + 73926, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 73927, + 73927, + null + ], + [ + "number-token", + "0", + 73928, + 73928, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 73929, + 73929, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73930, + 73938, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73939, + 73939, + null + ], + [ + "ident-token", + "transform", + 73940, + 73948, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 73949, + 73949, + null + ], + [ + "ident-token", + "none", + 73950, + 73953, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 73954, + 73954, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 73955, + 73963, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 73964, + 73964, + null + ], + [ + "ident-token", + "transition", + 73965, + 73974, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 73975, + 73975, + null + ], + [ + "ident-token", + "none", + 73976, + 73979, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 73980, + 73980, + null + ], + [ + "delim-token", + ".", + 73981, + 73981, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 73982, + 73997, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 73998, + 73998, + null + ], + [ + "delim-token", + ".", + 73999, + 73999, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 74000, + 74008, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 74009, + 74009, + null + ], + [ + "delim-token", + ".", + 74010, + 74010, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 74011, + 74026, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 74027, + 74027, + null + ], + [ + "ident-token", + "display", + 74028, + 74034, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 74035, + 74035, + null + ], + [ + "ident-token", + "none", + 74036, + 74039, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 74040, + 74040, + null + ], + [ + "delim-token", + ".", + 74041, + 74041, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-md", + 74042, + 74057, + { + "value": "navbar-expand-md" + } + ], + [ + "whitespace-token", + " ", + 74058, + 74058, + null + ], + [ + "delim-token", + ".", + 74059, + 74059, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 74060, + 74068, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 74069, + 74069, + null + ], + [ + "delim-token", + ".", + 74070, + 74070, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 74071, + 74084, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 74085, + 74085, + null + ], + [ + "ident-token", + "display", + 74086, + 74092, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 74093, + 74093, + null + ], + [ + "ident-token", + "flex", + 74094, + 74097, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 74098, + 74098, + null + ], + [ + "ident-token", + "flex-grow", + 74099, + 74107, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 74108, + 74108, + null + ], + [ + "number-token", + "0", + 74109, + 74109, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 74110, + 74110, + null + ], + [ + "ident-token", + "padding", + 74111, + 74117, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 74118, + 74118, + null + ], + [ + "number-token", + "0", + 74119, + 74119, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 74120, + 74120, + null + ], + [ + "ident-token", + "overflow-y", + 74121, + 74130, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 74131, + 74131, + null + ], + [ + "ident-token", + "visible", + 74132, + 74138, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 74139, + 74139, + null + ], + [ + "}-token", + "}", + 74140, + 74140, + null + ], + [ + "at-keyword-token", + "@media", + 74141, + 74146, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 74147, + 74147, + null + ], + [ + "(-token", + "(", + 74148, + 74148, + null + ], + [ + "ident-token", + "min-width", + 74149, + 74157, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 74158, + 74158, + null + ], + [ + "dimension-token", + "992px", + 74159, + 74163, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 74164, + 74164, + null + ], + [ + "{-token", + "{", + 74165, + 74165, + null + ], + [ + "delim-token", + ".", + 74166, + 74166, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74167, + 74182, + { + "value": "navbar-expand-lg" + } + ], + [ + "{-token", + "{", + 74183, + 74183, + null + ], + [ + "ident-token", + "flex-wrap", + 74184, + 74192, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 74193, + 74193, + null + ], + [ + "ident-token", + "nowrap", + 74194, + 74199, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 74200, + 74200, + null + ], + [ + "ident-token", + "justify-content", + 74201, + 74215, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 74216, + 74216, + null + ], + [ + "ident-token", + "flex-start", + 74217, + 74226, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 74227, + 74227, + null + ], + [ + "delim-token", + ".", + 74228, + 74228, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74229, + 74244, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74245, + 74245, + null + ], + [ + "delim-token", + ".", + 74246, + 74246, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 74247, + 74256, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 74257, + 74257, + null + ], + [ + "ident-token", + "flex-direction", + 74258, + 74271, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 74272, + 74272, + null + ], + [ + "ident-token", + "row", + 74273, + 74275, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 74276, + 74276, + null + ], + [ + "delim-token", + ".", + 74277, + 74277, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74278, + 74293, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74294, + 74294, + null + ], + [ + "delim-token", + ".", + 74295, + 74295, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 74296, + 74305, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 74306, + 74306, + null + ], + [ + "delim-token", + ".", + 74307, + 74307, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 74308, + 74320, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 74321, + 74321, + null + ], + [ + "ident-token", + "position", + 74322, + 74329, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 74330, + 74330, + null + ], + [ + "ident-token", + "absolute", + 74331, + 74338, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 74339, + 74339, + null + ], + [ + "delim-token", + ".", + 74340, + 74340, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74341, + 74356, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74357, + 74357, + null + ], + [ + "delim-token", + ".", + 74358, + 74358, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 74359, + 74368, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 74369, + 74369, + null + ], + [ + "delim-token", + ".", + 74370, + 74370, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 74371, + 74378, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 74379, + 74379, + null + ], + [ + "ident-token", + "padding-right", + 74380, + 74392, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 74393, + 74393, + null + ], + [ + "function-token", + "var(", + 74394, + 74397, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 74398, + 74398, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 74399, + 74399, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 74400, + 74427, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 74428, + 74428, + null + ], + [ + "semicolon-token", + ";", + 74429, + 74429, + null + ], + [ + "ident-token", + "padding-left", + 74430, + 74441, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 74442, + 74442, + null + ], + [ + "function-token", + "var(", + 74443, + 74446, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 74447, + 74447, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 74448, + 74448, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 74449, + 74476, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 74477, + 74477, + null + ], + [ + "}-token", + "}", + 74478, + 74478, + null + ], + [ + "delim-token", + ".", + 74479, + 74479, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74480, + 74495, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74496, + 74496, + null + ], + [ + "delim-token", + ".", + 74497, + 74497, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 74498, + 74514, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 74515, + 74515, + null + ], + [ + "ident-token", + "overflow", + 74516, + 74523, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 74524, + 74524, + null + ], + [ + "ident-token", + "visible", + 74525, + 74531, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 74532, + 74532, + null + ], + [ + "delim-token", + ".", + 74533, + 74533, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74534, + 74549, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74550, + 74550, + null + ], + [ + "delim-token", + ".", + 74551, + 74551, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 74552, + 74566, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 74567, + 74567, + null + ], + [ + "ident-token", + "display", + 74568, + 74574, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 74575, + 74575, + null + ], + [ + "ident-token", + "flex", + 74576, + 74579, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 74580, + 74580, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74581, + 74589, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74590, + 74590, + null + ], + [ + "ident-token", + "flex-basis", + 74591, + 74600, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 74601, + 74601, + null + ], + [ + "ident-token", + "auto", + 74602, + 74605, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 74606, + 74606, + null + ], + [ + "delim-token", + ".", + 74607, + 74607, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74608, + 74623, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74624, + 74624, + null + ], + [ + "delim-token", + ".", + 74625, + 74625, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 74626, + 74639, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 74640, + 74640, + null + ], + [ + "ident-token", + "display", + 74641, + 74647, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 74648, + 74648, + null + ], + [ + "ident-token", + "none", + 74649, + 74652, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 74653, + 74653, + null + ], + [ + "delim-token", + ".", + 74654, + 74654, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74655, + 74670, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74671, + 74671, + null + ], + [ + "delim-token", + ".", + 74672, + 74672, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 74673, + 74681, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 74682, + 74682, + null + ], + [ + "ident-token", + "position", + 74683, + 74690, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 74691, + 74691, + null + ], + [ + "ident-token", + "static", + 74692, + 74697, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 74698, + 74698, + null + ], + [ + "ident-token", + "z-index", + 74699, + 74705, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 74706, + 74706, + null + ], + [ + "ident-token", + "auto", + 74707, + 74710, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 74711, + 74711, + null + ], + [ + "ident-token", + "flex-grow", + 74712, + 74720, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 74721, + 74721, + null + ], + [ + "number-token", + "1", + 74722, + 74722, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 74723, + 74723, + null + ], + [ + "ident-token", + "width", + 74724, + 74728, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 74729, + 74729, + null + ], + [ + "ident-token", + "auto", + 74730, + 74733, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 74734, + 74734, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74735, + 74743, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74744, + 74744, + null + ], + [ + "ident-token", + "height", + 74745, + 74750, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 74751, + 74751, + null + ], + [ + "ident-token", + "auto", + 74752, + 74755, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 74756, + 74756, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74757, + 74765, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74766, + 74766, + null + ], + [ + "ident-token", + "visibility", + 74767, + 74776, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 74777, + 74777, + null + ], + [ + "ident-token", + "visible", + 74778, + 74784, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 74785, + 74785, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74786, + 74794, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74795, + 74795, + null + ], + [ + "ident-token", + "background-color", + 74796, + 74811, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 74812, + 74812, + null + ], + [ + "ident-token", + "transparent", + 74813, + 74823, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 74824, + 74824, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74825, + 74833, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74834, + 74834, + null + ], + [ + "ident-token", + "border", + 74835, + 74840, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 74841, + 74841, + null + ], + [ + "number-token", + "0", + 74842, + 74842, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 74843, + 74843, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74844, + 74852, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74853, + 74853, + null + ], + [ + "ident-token", + "transform", + 74854, + 74862, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 74863, + 74863, + null + ], + [ + "ident-token", + "none", + 74864, + 74867, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 74868, + 74868, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 74869, + 74877, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 74878, + 74878, + null + ], + [ + "ident-token", + "transition", + 74879, + 74888, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 74889, + 74889, + null + ], + [ + "ident-token", + "none", + 74890, + 74893, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 74894, + 74894, + null + ], + [ + "delim-token", + ".", + 74895, + 74895, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74896, + 74911, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74912, + 74912, + null + ], + [ + "delim-token", + ".", + 74913, + 74913, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 74914, + 74922, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 74923, + 74923, + null + ], + [ + "delim-token", + ".", + 74924, + 74924, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 74925, + 74940, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 74941, + 74941, + null + ], + [ + "ident-token", + "display", + 74942, + 74948, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 74949, + 74949, + null + ], + [ + "ident-token", + "none", + 74950, + 74953, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 74954, + 74954, + null + ], + [ + "delim-token", + ".", + 74955, + 74955, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-lg", + 74956, + 74971, + { + "value": "navbar-expand-lg" + } + ], + [ + "whitespace-token", + " ", + 74972, + 74972, + null + ], + [ + "delim-token", + ".", + 74973, + 74973, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 74974, + 74982, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 74983, + 74983, + null + ], + [ + "delim-token", + ".", + 74984, + 74984, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 74985, + 74998, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 74999, + 74999, + null + ], + [ + "ident-token", + "display", + 75000, + 75006, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 75007, + 75007, + null + ], + [ + "ident-token", + "flex", + 75008, + 75011, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 75012, + 75012, + null + ], + [ + "ident-token", + "flex-grow", + 75013, + 75021, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 75022, + 75022, + null + ], + [ + "number-token", + "0", + 75023, + 75023, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 75024, + 75024, + null + ], + [ + "ident-token", + "padding", + 75025, + 75031, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 75032, + 75032, + null + ], + [ + "number-token", + "0", + 75033, + 75033, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 75034, + 75034, + null + ], + [ + "ident-token", + "overflow-y", + 75035, + 75044, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 75045, + 75045, + null + ], + [ + "ident-token", + "visible", + 75046, + 75052, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 75053, + 75053, + null + ], + [ + "}-token", + "}", + 75054, + 75054, + null + ], + [ + "at-keyword-token", + "@media", + 75055, + 75060, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 75061, + 75061, + null + ], + [ + "(-token", + "(", + 75062, + 75062, + null + ], + [ + "ident-token", + "min-width", + 75063, + 75071, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 75072, + 75072, + null + ], + [ + "dimension-token", + "1200px", + 75073, + 75078, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 75079, + 75079, + null + ], + [ + "{-token", + "{", + 75080, + 75080, + null + ], + [ + "delim-token", + ".", + 75081, + 75081, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75082, + 75097, + { + "value": "navbar-expand-xl" + } + ], + [ + "{-token", + "{", + 75098, + 75098, + null + ], + [ + "ident-token", + "flex-wrap", + 75099, + 75107, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 75108, + 75108, + null + ], + [ + "ident-token", + "nowrap", + 75109, + 75114, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 75115, + 75115, + null + ], + [ + "ident-token", + "justify-content", + 75116, + 75130, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 75131, + 75131, + null + ], + [ + "ident-token", + "flex-start", + 75132, + 75141, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 75142, + 75142, + null + ], + [ + "delim-token", + ".", + 75143, + 75143, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75144, + 75159, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75160, + 75160, + null + ], + [ + "delim-token", + ".", + 75161, + 75161, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 75162, + 75171, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 75172, + 75172, + null + ], + [ + "ident-token", + "flex-direction", + 75173, + 75186, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 75187, + 75187, + null + ], + [ + "ident-token", + "row", + 75188, + 75190, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 75191, + 75191, + null + ], + [ + "delim-token", + ".", + 75192, + 75192, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75193, + 75208, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75209, + 75209, + null + ], + [ + "delim-token", + ".", + 75210, + 75210, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 75211, + 75220, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 75221, + 75221, + null + ], + [ + "delim-token", + ".", + 75222, + 75222, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 75223, + 75235, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 75236, + 75236, + null + ], + [ + "ident-token", + "position", + 75237, + 75244, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 75245, + 75245, + null + ], + [ + "ident-token", + "absolute", + 75246, + 75253, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 75254, + 75254, + null + ], + [ + "delim-token", + ".", + 75255, + 75255, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75256, + 75271, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75272, + 75272, + null + ], + [ + "delim-token", + ".", + 75273, + 75273, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 75274, + 75283, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 75284, + 75284, + null + ], + [ + "delim-token", + ".", + 75285, + 75285, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 75286, + 75293, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 75294, + 75294, + null + ], + [ + "ident-token", + "padding-right", + 75295, + 75307, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 75308, + 75308, + null + ], + [ + "function-token", + "var(", + 75309, + 75312, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 75313, + 75313, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 75314, + 75314, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 75315, + 75342, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 75343, + 75343, + null + ], + [ + "semicolon-token", + ";", + 75344, + 75344, + null + ], + [ + "ident-token", + "padding-left", + 75345, + 75356, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 75357, + 75357, + null + ], + [ + "function-token", + "var(", + 75358, + 75361, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 75362, + 75362, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 75363, + 75363, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 75364, + 75391, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 75392, + 75392, + null + ], + [ + "}-token", + "}", + 75393, + 75393, + null + ], + [ + "delim-token", + ".", + 75394, + 75394, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75395, + 75410, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75411, + 75411, + null + ], + [ + "delim-token", + ".", + 75412, + 75412, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 75413, + 75429, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 75430, + 75430, + null + ], + [ + "ident-token", + "overflow", + 75431, + 75438, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 75439, + 75439, + null + ], + [ + "ident-token", + "visible", + 75440, + 75446, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 75447, + 75447, + null + ], + [ + "delim-token", + ".", + 75448, + 75448, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75449, + 75464, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75465, + 75465, + null + ], + [ + "delim-token", + ".", + 75466, + 75466, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 75467, + 75481, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 75482, + 75482, + null + ], + [ + "ident-token", + "display", + 75483, + 75489, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 75490, + 75490, + null + ], + [ + "ident-token", + "flex", + 75491, + 75494, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 75495, + 75495, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75496, + 75504, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75505, + 75505, + null + ], + [ + "ident-token", + "flex-basis", + 75506, + 75515, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 75516, + 75516, + null + ], + [ + "ident-token", + "auto", + 75517, + 75520, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 75521, + 75521, + null + ], + [ + "delim-token", + ".", + 75522, + 75522, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75523, + 75538, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75539, + 75539, + null + ], + [ + "delim-token", + ".", + 75540, + 75540, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 75541, + 75554, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 75555, + 75555, + null + ], + [ + "ident-token", + "display", + 75556, + 75562, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 75563, + 75563, + null + ], + [ + "ident-token", + "none", + 75564, + 75567, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 75568, + 75568, + null + ], + [ + "delim-token", + ".", + 75569, + 75569, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75570, + 75585, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75586, + 75586, + null + ], + [ + "delim-token", + ".", + 75587, + 75587, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 75588, + 75596, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 75597, + 75597, + null + ], + [ + "ident-token", + "position", + 75598, + 75605, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 75606, + 75606, + null + ], + [ + "ident-token", + "static", + 75607, + 75612, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 75613, + 75613, + null + ], + [ + "ident-token", + "z-index", + 75614, + 75620, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 75621, + 75621, + null + ], + [ + "ident-token", + "auto", + 75622, + 75625, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 75626, + 75626, + null + ], + [ + "ident-token", + "flex-grow", + 75627, + 75635, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 75636, + 75636, + null + ], + [ + "number-token", + "1", + 75637, + 75637, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 75638, + 75638, + null + ], + [ + "ident-token", + "width", + 75639, + 75643, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 75644, + 75644, + null + ], + [ + "ident-token", + "auto", + 75645, + 75648, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 75649, + 75649, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75650, + 75658, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75659, + 75659, + null + ], + [ + "ident-token", + "height", + 75660, + 75665, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 75666, + 75666, + null + ], + [ + "ident-token", + "auto", + 75667, + 75670, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 75671, + 75671, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75672, + 75680, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75681, + 75681, + null + ], + [ + "ident-token", + "visibility", + 75682, + 75691, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 75692, + 75692, + null + ], + [ + "ident-token", + "visible", + 75693, + 75699, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 75700, + 75700, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75701, + 75709, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75710, + 75710, + null + ], + [ + "ident-token", + "background-color", + 75711, + 75726, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 75727, + 75727, + null + ], + [ + "ident-token", + "transparent", + 75728, + 75738, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 75739, + 75739, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75740, + 75748, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75749, + 75749, + null + ], + [ + "ident-token", + "border", + 75750, + 75755, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 75756, + 75756, + null + ], + [ + "number-token", + "0", + 75757, + 75757, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 75758, + 75758, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75759, + 75767, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75768, + 75768, + null + ], + [ + "ident-token", + "transform", + 75769, + 75777, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 75778, + 75778, + null + ], + [ + "ident-token", + "none", + 75779, + 75782, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 75783, + 75783, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 75784, + 75792, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 75793, + 75793, + null + ], + [ + "ident-token", + "transition", + 75794, + 75803, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 75804, + 75804, + null + ], + [ + "ident-token", + "none", + 75805, + 75808, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 75809, + 75809, + null + ], + [ + "delim-token", + ".", + 75810, + 75810, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75811, + 75826, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75827, + 75827, + null + ], + [ + "delim-token", + ".", + 75828, + 75828, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 75829, + 75837, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 75838, + 75838, + null + ], + [ + "delim-token", + ".", + 75839, + 75839, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 75840, + 75855, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 75856, + 75856, + null + ], + [ + "ident-token", + "display", + 75857, + 75863, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 75864, + 75864, + null + ], + [ + "ident-token", + "none", + 75865, + 75868, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 75869, + 75869, + null + ], + [ + "delim-token", + ".", + 75870, + 75870, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xl", + 75871, + 75886, + { + "value": "navbar-expand-xl" + } + ], + [ + "whitespace-token", + " ", + 75887, + 75887, + null + ], + [ + "delim-token", + ".", + 75888, + 75888, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 75889, + 75897, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 75898, + 75898, + null + ], + [ + "delim-token", + ".", + 75899, + 75899, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 75900, + 75913, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 75914, + 75914, + null + ], + [ + "ident-token", + "display", + 75915, + 75921, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 75922, + 75922, + null + ], + [ + "ident-token", + "flex", + 75923, + 75926, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 75927, + 75927, + null + ], + [ + "ident-token", + "flex-grow", + 75928, + 75936, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 75937, + 75937, + null + ], + [ + "number-token", + "0", + 75938, + 75938, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 75939, + 75939, + null + ], + [ + "ident-token", + "padding", + 75940, + 75946, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 75947, + 75947, + null + ], + [ + "number-token", + "0", + 75948, + 75948, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 75949, + 75949, + null + ], + [ + "ident-token", + "overflow-y", + 75950, + 75959, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 75960, + 75960, + null + ], + [ + "ident-token", + "visible", + 75961, + 75967, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 75968, + 75968, + null + ], + [ + "}-token", + "}", + 75969, + 75969, + null + ], + [ + "at-keyword-token", + "@media", + 75970, + 75975, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 75976, + 75976, + null + ], + [ + "(-token", + "(", + 75977, + 75977, + null + ], + [ + "ident-token", + "min-width", + 75978, + 75986, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 75987, + 75987, + null + ], + [ + "dimension-token", + "1400px", + 75988, + 75993, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 75994, + 75994, + null + ], + [ + "{-token", + "{", + 75995, + 75995, + null + ], + [ + "delim-token", + ".", + 75996, + 75996, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 75997, + 76013, + { + "value": "navbar-expand-xxl" + } + ], + [ + "{-token", + "{", + 76014, + 76014, + null + ], + [ + "ident-token", + "flex-wrap", + 76015, + 76023, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 76024, + 76024, + null + ], + [ + "ident-token", + "nowrap", + 76025, + 76030, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 76031, + 76031, + null + ], + [ + "ident-token", + "justify-content", + 76032, + 76046, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 76047, + 76047, + null + ], + [ + "ident-token", + "flex-start", + 76048, + 76057, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 76058, + 76058, + null + ], + [ + "delim-token", + ".", + 76059, + 76059, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76060, + 76076, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76077, + 76077, + null + ], + [ + "delim-token", + ".", + 76078, + 76078, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 76079, + 76088, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 76089, + 76089, + null + ], + [ + "ident-token", + "flex-direction", + 76090, + 76103, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 76104, + 76104, + null + ], + [ + "ident-token", + "row", + 76105, + 76107, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 76108, + 76108, + null + ], + [ + "delim-token", + ".", + 76109, + 76109, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76110, + 76126, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76127, + 76127, + null + ], + [ + "delim-token", + ".", + 76128, + 76128, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 76129, + 76138, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 76139, + 76139, + null + ], + [ + "delim-token", + ".", + 76140, + 76140, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 76141, + 76153, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 76154, + 76154, + null + ], + [ + "ident-token", + "position", + 76155, + 76162, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 76163, + 76163, + null + ], + [ + "ident-token", + "absolute", + 76164, + 76171, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 76172, + 76172, + null + ], + [ + "delim-token", + ".", + 76173, + 76173, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76174, + 76190, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76191, + 76191, + null + ], + [ + "delim-token", + ".", + 76192, + 76192, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 76193, + 76202, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 76203, + 76203, + null + ], + [ + "delim-token", + ".", + 76204, + 76204, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 76205, + 76212, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 76213, + 76213, + null + ], + [ + "ident-token", + "padding-right", + 76214, + 76226, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 76227, + 76227, + null + ], + [ + "function-token", + "var(", + 76228, + 76231, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 76232, + 76232, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 76233, + 76233, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 76234, + 76261, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 76262, + 76262, + null + ], + [ + "semicolon-token", + ";", + 76263, + 76263, + null + ], + [ + "ident-token", + "padding-left", + 76264, + 76275, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 76276, + 76276, + null + ], + [ + "function-token", + "var(", + 76277, + 76280, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 76281, + 76281, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 76282, + 76282, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 76283, + 76310, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 76311, + 76311, + null + ], + [ + "}-token", + "}", + 76312, + 76312, + null + ], + [ + "delim-token", + ".", + 76313, + 76313, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76314, + 76330, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76331, + 76331, + null + ], + [ + "delim-token", + ".", + 76332, + 76332, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 76333, + 76349, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 76350, + 76350, + null + ], + [ + "ident-token", + "overflow", + 76351, + 76358, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 76359, + 76359, + null + ], + [ + "ident-token", + "visible", + 76360, + 76366, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 76367, + 76367, + null + ], + [ + "delim-token", + ".", + 76368, + 76368, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76369, + 76385, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76386, + 76386, + null + ], + [ + "delim-token", + ".", + 76387, + 76387, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 76388, + 76402, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 76403, + 76403, + null + ], + [ + "ident-token", + "display", + 76404, + 76410, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 76411, + 76411, + null + ], + [ + "ident-token", + "flex", + 76412, + 76415, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 76416, + 76416, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76417, + 76425, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76426, + 76426, + null + ], + [ + "ident-token", + "flex-basis", + 76427, + 76436, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 76437, + 76437, + null + ], + [ + "ident-token", + "auto", + 76438, + 76441, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 76442, + 76442, + null + ], + [ + "delim-token", + ".", + 76443, + 76443, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76444, + 76460, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76461, + 76461, + null + ], + [ + "delim-token", + ".", + 76462, + 76462, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 76463, + 76476, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 76477, + 76477, + null + ], + [ + "ident-token", + "display", + 76478, + 76484, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 76485, + 76485, + null + ], + [ + "ident-token", + "none", + 76486, + 76489, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 76490, + 76490, + null + ], + [ + "delim-token", + ".", + 76491, + 76491, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76492, + 76508, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76509, + 76509, + null + ], + [ + "delim-token", + ".", + 76510, + 76510, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 76511, + 76519, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 76520, + 76520, + null + ], + [ + "ident-token", + "position", + 76521, + 76528, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 76529, + 76529, + null + ], + [ + "ident-token", + "static", + 76530, + 76535, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 76536, + 76536, + null + ], + [ + "ident-token", + "z-index", + 76537, + 76543, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 76544, + 76544, + null + ], + [ + "ident-token", + "auto", + 76545, + 76548, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 76549, + 76549, + null + ], + [ + "ident-token", + "flex-grow", + 76550, + 76558, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 76559, + 76559, + null + ], + [ + "number-token", + "1", + 76560, + 76560, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 76561, + 76561, + null + ], + [ + "ident-token", + "width", + 76562, + 76566, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 76567, + 76567, + null + ], + [ + "ident-token", + "auto", + 76568, + 76571, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 76572, + 76572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76573, + 76581, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76582, + 76582, + null + ], + [ + "ident-token", + "height", + 76583, + 76588, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 76589, + 76589, + null + ], + [ + "ident-token", + "auto", + 76590, + 76593, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 76594, + 76594, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76595, + 76603, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76604, + 76604, + null + ], + [ + "ident-token", + "visibility", + 76605, + 76614, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 76615, + 76615, + null + ], + [ + "ident-token", + "visible", + 76616, + 76622, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 76623, + 76623, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76624, + 76632, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76633, + 76633, + null + ], + [ + "ident-token", + "background-color", + 76634, + 76649, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 76650, + 76650, + null + ], + [ + "ident-token", + "transparent", + 76651, + 76661, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 76662, + 76662, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76663, + 76671, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76672, + 76672, + null + ], + [ + "ident-token", + "border", + 76673, + 76678, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 76679, + 76679, + null + ], + [ + "number-token", + "0", + 76680, + 76680, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 76681, + 76681, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76682, + 76690, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76691, + 76691, + null + ], + [ + "ident-token", + "transform", + 76692, + 76700, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 76701, + 76701, + null + ], + [ + "ident-token", + "none", + 76702, + 76705, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 76706, + 76706, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 76707, + 76715, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 76716, + 76716, + null + ], + [ + "ident-token", + "transition", + 76717, + 76726, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 76727, + 76727, + null + ], + [ + "ident-token", + "none", + 76728, + 76731, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 76732, + 76732, + null + ], + [ + "delim-token", + ".", + 76733, + 76733, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76734, + 76750, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76751, + 76751, + null + ], + [ + "delim-token", + ".", + 76752, + 76752, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 76753, + 76761, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 76762, + 76762, + null + ], + [ + "delim-token", + ".", + 76763, + 76763, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 76764, + 76779, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 76780, + 76780, + null + ], + [ + "ident-token", + "display", + 76781, + 76787, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 76788, + 76788, + null + ], + [ + "ident-token", + "none", + 76789, + 76792, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 76793, + 76793, + null + ], + [ + "delim-token", + ".", + 76794, + 76794, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand-xxl", + 76795, + 76811, + { + "value": "navbar-expand-xxl" + } + ], + [ + "whitespace-token", + " ", + 76812, + 76812, + null + ], + [ + "delim-token", + ".", + 76813, + 76813, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 76814, + 76822, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 76823, + 76823, + null + ], + [ + "delim-token", + ".", + 76824, + 76824, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 76825, + 76838, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 76839, + 76839, + null + ], + [ + "ident-token", + "display", + 76840, + 76846, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 76847, + 76847, + null + ], + [ + "ident-token", + "flex", + 76848, + 76851, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 76852, + 76852, + null + ], + [ + "ident-token", + "flex-grow", + 76853, + 76861, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 76862, + 76862, + null + ], + [ + "number-token", + "0", + 76863, + 76863, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 76864, + 76864, + null + ], + [ + "ident-token", + "padding", + 76865, + 76871, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 76872, + 76872, + null + ], + [ + "number-token", + "0", + 76873, + 76873, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 76874, + 76874, + null + ], + [ + "ident-token", + "overflow-y", + 76875, + 76884, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 76885, + 76885, + null + ], + [ + "ident-token", + "visible", + 76886, + 76892, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 76893, + 76893, + null + ], + [ + "}-token", + "}", + 76894, + 76894, + null + ], + [ + "delim-token", + ".", + 76895, + 76895, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 76896, + 76908, + { + "value": "navbar-expand" + } + ], + [ + "{-token", + "{", + 76909, + 76909, + null + ], + [ + "ident-token", + "flex-wrap", + 76910, + 76918, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 76919, + 76919, + null + ], + [ + "ident-token", + "nowrap", + 76920, + 76925, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 76926, + 76926, + null + ], + [ + "ident-token", + "justify-content", + 76927, + 76941, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 76942, + 76942, + null + ], + [ + "ident-token", + "flex-start", + 76943, + 76952, + { + "value": "flex-start" + } + ], + [ + "}-token", + "}", + 76953, + 76953, + null + ], + [ + "delim-token", + ".", + 76954, + 76954, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 76955, + 76967, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 76968, + 76968, + null + ], + [ + "delim-token", + ".", + 76969, + 76969, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 76970, + 76979, + { + "value": "navbar-nav" + } + ], + [ + "{-token", + "{", + 76980, + 76980, + null + ], + [ + "ident-token", + "flex-direction", + 76981, + 76994, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 76995, + 76995, + null + ], + [ + "ident-token", + "row", + 76996, + 76998, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 76999, + 76999, + null + ], + [ + "delim-token", + ".", + 77000, + 77000, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77001, + 77013, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77014, + 77014, + null + ], + [ + "delim-token", + ".", + 77015, + 77015, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 77016, + 77025, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 77026, + 77026, + null + ], + [ + "delim-token", + ".", + 77027, + 77027, + { + "value": "." + } + ], + [ + "ident-token", + "dropdown-menu", + 77028, + 77040, + { + "value": "dropdown-menu" + } + ], + [ + "{-token", + "{", + 77041, + 77041, + null + ], + [ + "ident-token", + "position", + 77042, + 77049, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 77050, + 77050, + null + ], + [ + "ident-token", + "absolute", + 77051, + 77058, + { + "value": "absolute" + } + ], + [ + "}-token", + "}", + 77059, + 77059, + null + ], + [ + "delim-token", + ".", + 77060, + 77060, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77061, + 77073, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77074, + 77074, + null + ], + [ + "delim-token", + ".", + 77075, + 77075, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav", + 77076, + 77085, + { + "value": "navbar-nav" + } + ], + [ + "whitespace-token", + " ", + 77086, + 77086, + null + ], + [ + "delim-token", + ".", + 77087, + 77087, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 77088, + 77095, + { + "value": "nav-link" + } + ], + [ + "{-token", + "{", + 77096, + 77096, + null + ], + [ + "ident-token", + "padding-right", + 77097, + 77109, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 77110, + 77110, + null + ], + [ + "function-token", + "var(", + 77111, + 77114, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 77115, + 77115, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77116, + 77116, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 77117, + 77144, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 77145, + 77145, + null + ], + [ + "semicolon-token", + ";", + 77146, + 77146, + null + ], + [ + "ident-token", + "padding-left", + 77147, + 77158, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 77159, + 77159, + null + ], + [ + "function-token", + "var(", + 77160, + 77163, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 77164, + 77164, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77165, + 77165, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-nav-link-padding-x", + 77166, + 77193, + { + "value": "bs-navbar-nav-link-padding-x" + } + ], + [ + ")-token", + ")", + 77194, + 77194, + null + ], + [ + "}-token", + "}", + 77195, + 77195, + null + ], + [ + "delim-token", + ".", + 77196, + 77196, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77197, + 77209, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77210, + 77210, + null + ], + [ + "delim-token", + ".", + 77211, + 77211, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-nav-scroll", + 77212, + 77228, + { + "value": "navbar-nav-scroll" + } + ], + [ + "{-token", + "{", + 77229, + 77229, + null + ], + [ + "ident-token", + "overflow", + 77230, + 77237, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 77238, + 77238, + null + ], + [ + "ident-token", + "visible", + 77239, + 77245, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 77246, + 77246, + null + ], + [ + "delim-token", + ".", + 77247, + 77247, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77248, + 77260, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77261, + 77261, + null + ], + [ + "delim-token", + ".", + 77262, + 77262, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-collapse", + 77263, + 77277, + { + "value": "navbar-collapse" + } + ], + [ + "{-token", + "{", + 77278, + 77278, + null + ], + [ + "ident-token", + "display", + 77279, + 77285, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 77286, + 77286, + null + ], + [ + "ident-token", + "flex", + 77287, + 77290, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 77291, + 77291, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77292, + 77300, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77301, + 77301, + null + ], + [ + "ident-token", + "flex-basis", + 77302, + 77311, + { + "value": "flex-basis" + } + ], + [ + "colon-token", + ":", + 77312, + 77312, + null + ], + [ + "ident-token", + "auto", + 77313, + 77316, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 77317, + 77317, + null + ], + [ + "delim-token", + ".", + 77318, + 77318, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77319, + 77331, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77332, + 77332, + null + ], + [ + "delim-token", + ".", + 77333, + 77333, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-toggler", + 77334, + 77347, + { + "value": "navbar-toggler" + } + ], + [ + "{-token", + "{", + 77348, + 77348, + null + ], + [ + "ident-token", + "display", + 77349, + 77355, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 77356, + 77356, + null + ], + [ + "ident-token", + "none", + 77357, + 77360, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 77361, + 77361, + null + ], + [ + "delim-token", + ".", + 77362, + 77362, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77363, + 77375, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77376, + 77376, + null + ], + [ + "delim-token", + ".", + 77377, + 77377, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 77378, + 77386, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 77387, + 77387, + null + ], + [ + "ident-token", + "position", + 77388, + 77395, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 77396, + 77396, + null + ], + [ + "ident-token", + "static", + 77397, + 77402, + { + "value": "static" + } + ], + [ + "semicolon-token", + ";", + 77403, + 77403, + null + ], + [ + "ident-token", + "z-index", + 77404, + 77410, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 77411, + 77411, + null + ], + [ + "ident-token", + "auto", + 77412, + 77415, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 77416, + 77416, + null + ], + [ + "ident-token", + "flex-grow", + 77417, + 77425, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 77426, + 77426, + null + ], + [ + "number-token", + "1", + 77427, + 77427, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 77428, + 77428, + null + ], + [ + "ident-token", + "width", + 77429, + 77433, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 77434, + 77434, + null + ], + [ + "ident-token", + "auto", + 77435, + 77438, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 77439, + 77439, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77440, + 77448, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77449, + 77449, + null + ], + [ + "ident-token", + "height", + 77450, + 77455, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 77456, + 77456, + null + ], + [ + "ident-token", + "auto", + 77457, + 77460, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 77461, + 77461, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77462, + 77470, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77471, + 77471, + null + ], + [ + "ident-token", + "visibility", + 77472, + 77481, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 77482, + 77482, + null + ], + [ + "ident-token", + "visible", + 77483, + 77489, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 77490, + 77490, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77491, + 77499, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77500, + 77500, + null + ], + [ + "ident-token", + "background-color", + 77501, + 77516, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 77517, + 77517, + null + ], + [ + "ident-token", + "transparent", + 77518, + 77528, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 77529, + 77529, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77530, + 77538, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77539, + 77539, + null + ], + [ + "ident-token", + "border", + 77540, + 77545, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 77546, + 77546, + null + ], + [ + "number-token", + "0", + 77547, + 77547, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 77548, + 77548, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77549, + 77557, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77558, + 77558, + null + ], + [ + "ident-token", + "transform", + 77559, + 77567, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 77568, + 77568, + null + ], + [ + "ident-token", + "none", + 77569, + 77572, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 77573, + 77573, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 77574, + 77582, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 77583, + 77583, + null + ], + [ + "ident-token", + "transition", + 77584, + 77593, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 77594, + 77594, + null + ], + [ + "ident-token", + "none", + 77595, + 77598, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 77599, + 77599, + null + ], + [ + "delim-token", + ".", + 77600, + 77600, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77601, + 77613, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77614, + 77614, + null + ], + [ + "delim-token", + ".", + 77615, + 77615, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 77616, + 77624, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 77625, + 77625, + null + ], + [ + "delim-token", + ".", + 77626, + 77626, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 77627, + 77642, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 77643, + 77643, + null + ], + [ + "ident-token", + "display", + 77644, + 77650, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 77651, + 77651, + null + ], + [ + "ident-token", + "none", + 77652, + 77655, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 77656, + 77656, + null + ], + [ + "delim-token", + ".", + 77657, + 77657, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-expand", + 77658, + 77670, + { + "value": "navbar-expand" + } + ], + [ + "whitespace-token", + " ", + 77671, + 77671, + null + ], + [ + "delim-token", + ".", + 77672, + 77672, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 77673, + 77681, + { + "value": "offcanvas" + } + ], + [ + "whitespace-token", + " ", + 77682, + 77682, + null + ], + [ + "delim-token", + ".", + 77683, + 77683, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 77684, + 77697, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 77698, + 77698, + null + ], + [ + "ident-token", + "display", + 77699, + 77705, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 77706, + 77706, + null + ], + [ + "ident-token", + "flex", + 77707, + 77710, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 77711, + 77711, + null + ], + [ + "ident-token", + "flex-grow", + 77712, + 77720, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 77721, + 77721, + null + ], + [ + "number-token", + "0", + 77722, + 77722, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 77723, + 77723, + null + ], + [ + "ident-token", + "padding", + 77724, + 77730, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 77731, + 77731, + null + ], + [ + "number-token", + "0", + 77732, + 77732, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 77733, + 77733, + null + ], + [ + "ident-token", + "overflow-y", + 77734, + 77743, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 77744, + 77744, + null + ], + [ + "ident-token", + "visible", + 77745, + 77751, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 77752, + 77752, + null + ], + [ + "delim-token", + ".", + 77753, + 77753, + { + "value": "." + } + ], + [ + "ident-token", + "navbar-dark", + 77754, + 77764, + { + "value": "navbar-dark" + } + ], + [ + "{-token", + "{", + 77765, + 77765, + null + ], + [ + "delim-token", + "-", + 77766, + 77766, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77767, + 77767, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-color", + 77768, + 77782, + { + "value": "bs-navbar-color" + } + ], + [ + "colon-token", + ":", + 77783, + 77783, + null + ], + [ + "function-token", + "rgba(", + 77784, + 77788, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 77789, + 77791, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77792, + 77792, + null + ], + [ + "whitespace-token", + " ", + 77793, + 77793, + null + ], + [ + "number-token", + "255", + 77794, + 77796, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77797, + 77797, + null + ], + [ + "whitespace-token", + " ", + 77798, + 77798, + null + ], + [ + "number-token", + "255", + 77799, + 77801, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77802, + 77802, + null + ], + [ + "whitespace-token", + " ", + 77803, + 77803, + null + ], + [ + "number-token", + "0.55", + 77804, + 77807, + { + "value": 0.55, + "type": "number" + } + ], + [ + ")-token", + ")", + 77808, + 77808, + null + ], + [ + "semicolon-token", + ";", + 77809, + 77809, + null + ], + [ + "delim-token", + "-", + 77810, + 77810, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77811, + 77811, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-hover-color", + 77812, + 77832, + { + "value": "bs-navbar-hover-color" + } + ], + [ + "colon-token", + ":", + 77833, + 77833, + null + ], + [ + "function-token", + "rgba(", + 77834, + 77838, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 77839, + 77841, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77842, + 77842, + null + ], + [ + "whitespace-token", + " ", + 77843, + 77843, + null + ], + [ + "number-token", + "255", + 77844, + 77846, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77847, + 77847, + null + ], + [ + "whitespace-token", + " ", + 77848, + 77848, + null + ], + [ + "number-token", + "255", + 77849, + 77851, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77852, + 77852, + null + ], + [ + "whitespace-token", + " ", + 77853, + 77853, + null + ], + [ + "number-token", + "0.75", + 77854, + 77857, + { + "value": 0.75, + "type": "number" + } + ], + [ + ")-token", + ")", + 77858, + 77858, + null + ], + [ + "semicolon-token", + ";", + 77859, + 77859, + null + ], + [ + "delim-token", + "-", + 77860, + 77860, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77861, + 77861, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-disabled-color", + 77862, + 77885, + { + "value": "bs-navbar-disabled-color" + } + ], + [ + "colon-token", + ":", + 77886, + 77886, + null + ], + [ + "function-token", + "rgba(", + 77887, + 77891, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 77892, + 77894, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77895, + 77895, + null + ], + [ + "whitespace-token", + " ", + 77896, + 77896, + null + ], + [ + "number-token", + "255", + 77897, + 77899, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77900, + 77900, + null + ], + [ + "whitespace-token", + " ", + 77901, + 77901, + null + ], + [ + "number-token", + "255", + 77902, + 77904, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 77905, + 77905, + null + ], + [ + "whitespace-token", + " ", + 77906, + 77906, + null + ], + [ + "number-token", + "0.25", + 77907, + 77910, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 77911, + 77911, + null + ], + [ + "semicolon-token", + ";", + 77912, + 77912, + null + ], + [ + "delim-token", + "-", + 77913, + 77913, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77914, + 77914, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-active-color", + 77915, + 77936, + { + "value": "bs-navbar-active-color" + } + ], + [ + "colon-token", + ":", + 77937, + 77937, + null + ], + [ + "hash-token", + "#fff", + 77938, + 77941, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 77942, + 77942, + null + ], + [ + "delim-token", + "-", + 77943, + 77943, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77944, + 77944, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-color", + 77945, + 77965, + { + "value": "bs-navbar-brand-color" + } + ], + [ + "colon-token", + ":", + 77966, + 77966, + null + ], + [ + "hash-token", + "#fff", + 77967, + 77970, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 77971, + 77971, + null + ], + [ + "delim-token", + "-", + 77972, + 77972, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 77973, + 77973, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-brand-hover-color", + 77974, + 78000, + { + "value": "bs-navbar-brand-hover-color" + } + ], + [ + "colon-token", + ":", + 78001, + 78001, + null + ], + [ + "hash-token", + "#fff", + 78002, + 78005, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 78006, + 78006, + null + ], + [ + "delim-token", + "-", + 78007, + 78007, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78008, + 78008, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-border-color", + 78009, + 78038, + { + "value": "bs-navbar-toggler-border-color" + } + ], + [ + "colon-token", + ":", + 78039, + 78039, + null + ], + [ + "function-token", + "rgba(", + 78040, + 78044, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 78045, + 78047, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78048, + 78048, + null + ], + [ + "whitespace-token", + " ", + 78049, + 78049, + null + ], + [ + "number-token", + "255", + 78050, + 78052, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78053, + 78053, + null + ], + [ + "whitespace-token", + " ", + 78054, + 78054, + null + ], + [ + "number-token", + "255", + 78055, + 78057, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78058, + 78058, + null + ], + [ + "whitespace-token", + " ", + 78059, + 78059, + null + ], + [ + "number-token", + "0.1", + 78060, + 78062, + { + "value": 0.1, + "type": "number" + } + ], + [ + ")-token", + ")", + 78063, + 78063, + null + ], + [ + "semicolon-token", + ";", + 78064, + 78064, + null + ], + [ + "delim-token", + "-", + 78065, + 78065, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78066, + 78066, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-navbar-toggler-icon-bg", + 78067, + 78091, + { + "value": "bs-navbar-toggler-icon-bg" + } + ], + [ + "colon-token", + ":", + 78092, + 78092, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")", + 78093, + 78333, + null + ], + [ + "}-token", + "}", + 78334, + 78334, + null + ], + [ + "delim-token", + ".", + 78335, + 78335, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 78336, + 78339, + { + "value": "card" + } + ], + [ + "{-token", + "{", + 78340, + 78340, + null + ], + [ + "delim-token", + "-", + 78341, + 78341, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78342, + 78342, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-spacer-y", + 78343, + 78358, + { + "value": "bs-card-spacer-y" + } + ], + [ + "colon-token", + ":", + 78359, + 78359, + null + ], + [ + "dimension-token", + "1rem", + 78360, + 78363, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78364, + 78364, + null + ], + [ + "delim-token", + "-", + 78365, + 78365, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78366, + 78366, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-spacer-x", + 78367, + 78382, + { + "value": "bs-card-spacer-x" + } + ], + [ + "colon-token", + ":", + 78383, + 78383, + null + ], + [ + "dimension-token", + "1rem", + 78384, + 78387, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78388, + 78388, + null + ], + [ + "delim-token", + "-", + 78389, + 78389, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78390, + 78390, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-title-spacer-y", + 78391, + 78412, + { + "value": "bs-card-title-spacer-y" + } + ], + [ + "colon-token", + ":", + 78413, + 78413, + null + ], + [ + "dimension-token", + "0.5rem", + 78414, + 78419, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78420, + 78420, + null + ], + [ + "delim-token", + "-", + 78421, + 78421, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78422, + 78422, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-width", + 78423, + 78442, + { + "value": "bs-card-border-width" + } + ], + [ + "colon-token", + ":", + 78443, + 78443, + null + ], + [ + "dimension-token", + "1px", + 78444, + 78446, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 78447, + 78447, + null + ], + [ + "delim-token", + "-", + 78448, + 78448, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78449, + 78449, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-color", + 78450, + 78469, + { + "value": "bs-card-border-color" + } + ], + [ + "colon-token", + ":", + 78470, + 78470, + null + ], + [ + "function-token", + "var(", + 78471, + 78474, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 78475, + 78475, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78476, + 78476, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 78477, + 78503, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 78504, + 78504, + null + ], + [ + "semicolon-token", + ";", + 78505, + 78505, + null + ], + [ + "delim-token", + "-", + 78506, + 78506, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78507, + 78507, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-radius", + 78508, + 78528, + { + "value": "bs-card-border-radius" + } + ], + [ + "colon-token", + ":", + 78529, + 78529, + null + ], + [ + "dimension-token", + "0.375rem", + 78530, + 78537, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78538, + 78538, + null + ], + [ + "delim-token", + "-", + 78539, + 78539, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78540, + 78540, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-box-shadow", + 78541, + 78558, + { + "value": "bs-card-box-shadow" + } + ], + [ + "colon-token", + ":", + 78559, + 78559, + null + ], + [ + "whitespace-token", + " ", + 78560, + 78560, + null + ], + [ + "semicolon-token", + ";", + 78561, + 78561, + null + ], + [ + "delim-token", + "-", + 78562, + 78562, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78563, + 78563, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 78564, + 78590, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + "colon-token", + ":", + 78591, + 78591, + null + ], + [ + "function-token", + "calc(", + 78592, + 78596, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.375rem", + 78597, + 78604, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 78605, + 78605, + null + ], + [ + "delim-token", + "-", + 78606, + 78606, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 78607, + 78607, + null + ], + [ + "dimension-token", + "1px", + 78608, + 78610, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 78611, + 78611, + null + ], + [ + "semicolon-token", + ";", + 78612, + 78612, + null + ], + [ + "delim-token", + "-", + 78613, + 78613, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78614, + 78614, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-y", + 78615, + 78635, + { + "value": "bs-card-cap-padding-y" + } + ], + [ + "colon-token", + ":", + 78636, + 78636, + null + ], + [ + "dimension-token", + "0.5rem", + 78637, + 78642, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78643, + 78643, + null + ], + [ + "delim-token", + "-", + 78644, + 78644, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78645, + 78645, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 78646, + 78666, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + "colon-token", + ":", + 78667, + 78667, + null + ], + [ + "dimension-token", + "1rem", + 78668, + 78671, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78672, + 78672, + null + ], + [ + "delim-token", + "-", + 78673, + 78673, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78674, + 78674, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-bg", + 78675, + 78688, + { + "value": "bs-card-cap-bg" + } + ], + [ + "colon-token", + ":", + 78689, + 78689, + null + ], + [ + "function-token", + "rgba(", + 78690, + 78694, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 78695, + 78695, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78696, + 78696, + null + ], + [ + "whitespace-token", + " ", + 78697, + 78697, + null + ], + [ + "number-token", + "0", + 78698, + 78698, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78699, + 78699, + null + ], + [ + "whitespace-token", + " ", + 78700, + 78700, + null + ], + [ + "number-token", + "0", + 78701, + 78701, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 78702, + 78702, + null + ], + [ + "whitespace-token", + " ", + 78703, + 78703, + null + ], + [ + "number-token", + "0.03", + 78704, + 78707, + { + "value": 0.03, + "type": "number" + } + ], + [ + ")-token", + ")", + 78708, + 78708, + null + ], + [ + "semicolon-token", + ";", + 78709, + 78709, + null + ], + [ + "delim-token", + "-", + 78710, + 78710, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78711, + 78711, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-color", + 78712, + 78728, + { + "value": "bs-card-cap-color" + } + ], + [ + "colon-token", + ":", + 78729, + 78729, + null + ], + [ + "whitespace-token", + " ", + 78730, + 78730, + null + ], + [ + "semicolon-token", + ";", + 78731, + 78731, + null + ], + [ + "delim-token", + "-", + 78732, + 78732, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78733, + 78733, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-height", + 78734, + 78747, + { + "value": "bs-card-height" + } + ], + [ + "colon-token", + ":", + 78748, + 78748, + null + ], + [ + "whitespace-token", + " ", + 78749, + 78749, + null + ], + [ + "semicolon-token", + ";", + 78750, + 78750, + null + ], + [ + "delim-token", + "-", + 78751, + 78751, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78752, + 78752, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-color", + 78753, + 78765, + { + "value": "bs-card-color" + } + ], + [ + "colon-token", + ":", + 78766, + 78766, + null + ], + [ + "whitespace-token", + " ", + 78767, + 78767, + null + ], + [ + "semicolon-token", + ";", + 78768, + 78768, + null + ], + [ + "delim-token", + "-", + 78769, + 78769, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78770, + 78770, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-bg", + 78771, + 78780, + { + "value": "bs-card-bg" + } + ], + [ + "colon-token", + ":", + 78781, + 78781, + null + ], + [ + "hash-token", + "#fff", + 78782, + 78785, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 78786, + 78786, + null + ], + [ + "delim-token", + "-", + 78787, + 78787, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78788, + 78788, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-img-overlay-padding", + 78789, + 78815, + { + "value": "bs-card-img-overlay-padding" + } + ], + [ + "colon-token", + ":", + 78816, + 78816, + null + ], + [ + "dimension-token", + "1rem", + 78817, + 78820, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78821, + 78821, + null + ], + [ + "delim-token", + "-", + 78822, + 78822, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78823, + 78823, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-group-margin", + 78824, + 78843, + { + "value": "bs-card-group-margin" + } + ], + [ + "colon-token", + ":", + 78844, + 78844, + null + ], + [ + "dimension-token", + "0.75rem", + 78845, + 78851, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 78852, + 78852, + null + ], + [ + "ident-token", + "position", + 78853, + 78860, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 78861, + 78861, + null + ], + [ + "ident-token", + "relative", + 78862, + 78869, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 78870, + 78870, + null + ], + [ + "ident-token", + "display", + 78871, + 78877, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 78878, + 78878, + null + ], + [ + "ident-token", + "flex", + 78879, + 78882, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 78883, + 78883, + null + ], + [ + "ident-token", + "flex-direction", + 78884, + 78897, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 78898, + 78898, + null + ], + [ + "ident-token", + "column", + 78899, + 78904, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 78905, + 78905, + null + ], + [ + "ident-token", + "min-width", + 78906, + 78914, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 78915, + 78915, + null + ], + [ + "number-token", + "0", + 78916, + 78916, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 78917, + 78917, + null + ], + [ + "ident-token", + "height", + 78918, + 78923, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 78924, + 78924, + null + ], + [ + "function-token", + "var(", + 78925, + 78928, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 78929, + 78929, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78930, + 78930, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-height", + 78931, + 78944, + { + "value": "bs-card-height" + } + ], + [ + ")-token", + ")", + 78945, + 78945, + null + ], + [ + "semicolon-token", + ";", + 78946, + 78946, + null + ], + [ + "ident-token", + "word-wrap", + 78947, + 78955, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 78956, + 78956, + null + ], + [ + "ident-token", + "break-word", + 78957, + 78966, + { + "value": "break-word" + } + ], + [ + "semicolon-token", + ";", + 78967, + 78967, + null + ], + [ + "ident-token", + "background-color", + 78968, + 78983, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 78984, + 78984, + null + ], + [ + "function-token", + "var(", + 78985, + 78988, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 78989, + 78989, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 78990, + 78990, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-bg", + 78991, + 79000, + { + "value": "bs-card-bg" + } + ], + [ + ")-token", + ")", + 79001, + 79001, + null + ], + [ + "semicolon-token", + ";", + 79002, + 79002, + null + ], + [ + "ident-token", + "background-clip", + 79003, + 79017, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 79018, + 79018, + null + ], + [ + "ident-token", + "border-box", + 79019, + 79028, + { + "value": "border-box" + } + ], + [ + "semicolon-token", + ";", + 79029, + 79029, + null + ], + [ + "ident-token", + "border", + 79030, + 79035, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 79036, + 79036, + null + ], + [ + "function-token", + "var(", + 79037, + 79040, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79041, + 79041, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79042, + 79042, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-width", + 79043, + 79062, + { + "value": "bs-card-border-width" + } + ], + [ + ")-token", + ")", + 79063, + 79063, + null + ], + [ + "whitespace-token", + " ", + 79064, + 79064, + null + ], + [ + "ident-token", + "solid", + 79065, + 79069, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 79070, + 79070, + null + ], + [ + "function-token", + "var(", + 79071, + 79074, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79075, + 79075, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79076, + 79076, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-color", + 79077, + 79096, + { + "value": "bs-card-border-color" + } + ], + [ + ")-token", + ")", + 79097, + 79097, + null + ], + [ + "semicolon-token", + ";", + 79098, + 79098, + null + ], + [ + "ident-token", + "border-radius", + 79099, + 79111, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 79112, + 79112, + null + ], + [ + "function-token", + "var(", + 79113, + 79116, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79117, + 79117, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79118, + 79118, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-radius", + 79119, + 79139, + { + "value": "bs-card-border-radius" + } + ], + [ + ")-token", + ")", + 79140, + 79140, + null + ], + [ + "}-token", + "}", + 79141, + 79141, + null + ], + [ + "delim-token", + ".", + 79142, + 79142, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79143, + 79146, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79147, + 79147, + { + "value": ">" + } + ], + [ + "ident-token", + "hr", + 79148, + 79149, + { + "value": "hr" + } + ], + [ + "{-token", + "{", + 79150, + 79150, + null + ], + [ + "ident-token", + "margin-right", + 79151, + 79162, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 79163, + 79163, + null + ], + [ + "number-token", + "0", + 79164, + 79164, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 79165, + 79165, + null + ], + [ + "ident-token", + "margin-left", + 79166, + 79176, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 79177, + 79177, + null + ], + [ + "number-token", + "0", + 79178, + 79178, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 79179, + 79179, + null + ], + [ + "delim-token", + ".", + 79180, + 79180, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79181, + 79184, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79185, + 79185, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 79186, + 79186, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 79187, + 79196, + { + "value": "list-group" + } + ], + [ + "{-token", + "{", + 79197, + 79197, + null + ], + [ + "ident-token", + "border-top", + 79198, + 79207, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 79208, + 79208, + null + ], + [ + "ident-token", + "inherit", + 79209, + 79215, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 79216, + 79216, + null + ], + [ + "ident-token", + "border-bottom", + 79217, + 79229, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 79230, + 79230, + null + ], + [ + "ident-token", + "inherit", + 79231, + 79237, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 79238, + 79238, + null + ], + [ + "delim-token", + ".", + 79239, + 79239, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79240, + 79243, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79244, + 79244, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 79245, + 79245, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 79246, + 79255, + { + "value": "list-group" + } + ], + [ + "colon-token", + ":", + 79256, + 79256, + null + ], + [ + "ident-token", + "first-child", + 79257, + 79267, + { + "value": "first-child" + } + ], + [ + "{-token", + "{", + 79268, + 79268, + null + ], + [ + "ident-token", + "border-top-width", + 79269, + 79284, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 79285, + 79285, + null + ], + [ + "number-token", + "0", + 79286, + 79286, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 79287, + 79287, + null + ], + [ + "ident-token", + "border-top-left-radius", + 79288, + 79309, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 79310, + 79310, + null + ], + [ + "function-token", + "var(", + 79311, + 79314, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79315, + 79315, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79316, + 79316, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 79317, + 79343, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 79344, + 79344, + null + ], + [ + "semicolon-token", + ";", + 79345, + 79345, + null + ], + [ + "ident-token", + "border-top-right-radius", + 79346, + 79368, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 79369, + 79369, + null + ], + [ + "function-token", + "var(", + 79370, + 79373, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79374, + 79374, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79375, + 79375, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 79376, + 79402, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 79403, + 79403, + null + ], + [ + "}-token", + "}", + 79404, + 79404, + null + ], + [ + "delim-token", + ".", + 79405, + 79405, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79406, + 79409, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79410, + 79410, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 79411, + 79411, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 79412, + 79421, + { + "value": "list-group" + } + ], + [ + "colon-token", + ":", + 79422, + 79422, + null + ], + [ + "ident-token", + "last-child", + 79423, + 79432, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 79433, + 79433, + null + ], + [ + "ident-token", + "border-bottom-width", + 79434, + 79452, + { + "value": "border-bottom-width" + } + ], + [ + "colon-token", + ":", + 79453, + 79453, + null + ], + [ + "number-token", + "0", + 79454, + 79454, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 79455, + 79455, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 79456, + 79481, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 79482, + 79482, + null + ], + [ + "function-token", + "var(", + 79483, + 79486, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79487, + 79487, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79488, + 79488, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 79489, + 79515, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 79516, + 79516, + null + ], + [ + "semicolon-token", + ";", + 79517, + 79517, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 79518, + 79542, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 79543, + 79543, + null + ], + [ + "function-token", + "var(", + 79544, + 79547, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79548, + 79548, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79549, + 79549, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 79550, + 79576, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 79577, + 79577, + null + ], + [ + "}-token", + "}", + 79578, + 79578, + null + ], + [ + "delim-token", + ".", + 79579, + 79579, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79580, + 79583, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79584, + 79584, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 79585, + 79585, + { + "value": "." + } + ], + [ + "ident-token", + "card-header", + 79586, + 79596, + { + "value": "card-header" + } + ], + [ + "delim-token", + "+", + 79597, + 79597, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 79598, + 79598, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 79599, + 79608, + { + "value": "list-group" + } + ], + [ + "comma-token", + ",", + 79609, + 79609, + null + ], + [ + "delim-token", + ".", + 79610, + 79610, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 79611, + 79614, + { + "value": "card" + } + ], + [ + "delim-token", + ">", + 79615, + 79615, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 79616, + 79616, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 79617, + 79626, + { + "value": "list-group" + } + ], + [ + "delim-token", + "+", + 79627, + 79627, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 79628, + 79628, + { + "value": "." + } + ], + [ + "ident-token", + "card-footer", + 79629, + 79639, + { + "value": "card-footer" + } + ], + [ + "{-token", + "{", + 79640, + 79640, + null + ], + [ + "ident-token", + "border-top", + 79641, + 79650, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 79651, + 79651, + null + ], + [ + "number-token", + "0", + 79652, + 79652, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 79653, + 79653, + null + ], + [ + "delim-token", + ".", + 79654, + 79654, + { + "value": "." + } + ], + [ + "ident-token", + "card-body", + 79655, + 79663, + { + "value": "card-body" + } + ], + [ + "{-token", + "{", + 79664, + 79664, + null + ], + [ + "ident-token", + "flex", + 79665, + 79668, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 79669, + 79669, + null + ], + [ + "number-token", + "1", + 79670, + 79670, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 79671, + 79671, + null + ], + [ + "number-token", + "1", + 79672, + 79672, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 79673, + 79673, + null + ], + [ + "ident-token", + "auto", + 79674, + 79677, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 79678, + 79678, + null + ], + [ + "ident-token", + "padding", + 79679, + 79685, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 79686, + 79686, + null + ], + [ + "function-token", + "var(", + 79687, + 79690, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79691, + 79691, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79692, + 79692, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-spacer-y", + 79693, + 79708, + { + "value": "bs-card-spacer-y" + } + ], + [ + ")-token", + ")", + 79709, + 79709, + null + ], + [ + "whitespace-token", + " ", + 79710, + 79710, + null + ], + [ + "function-token", + "var(", + 79711, + 79714, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79715, + 79715, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79716, + 79716, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-spacer-x", + 79717, + 79732, + { + "value": "bs-card-spacer-x" + } + ], + [ + ")-token", + ")", + 79733, + 79733, + null + ], + [ + "semicolon-token", + ";", + 79734, + 79734, + null + ], + [ + "ident-token", + "color", + 79735, + 79739, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 79740, + 79740, + null + ], + [ + "function-token", + "var(", + 79741, + 79744, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79745, + 79745, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79746, + 79746, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-color", + 79747, + 79759, + { + "value": "bs-card-color" + } + ], + [ + ")-token", + ")", + 79760, + 79760, + null + ], + [ + "}-token", + "}", + 79761, + 79761, + null + ], + [ + "delim-token", + ".", + 79762, + 79762, + { + "value": "." + } + ], + [ + "ident-token", + "card-title", + 79763, + 79772, + { + "value": "card-title" + } + ], + [ + "{-token", + "{", + 79773, + 79773, + null + ], + [ + "ident-token", + "margin-bottom", + 79774, + 79786, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 79787, + 79787, + null + ], + [ + "function-token", + "var(", + 79788, + 79791, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79792, + 79792, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79793, + 79793, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-title-spacer-y", + 79794, + 79815, + { + "value": "bs-card-title-spacer-y" + } + ], + [ + ")-token", + ")", + 79816, + 79816, + null + ], + [ + "}-token", + "}", + 79817, + 79817, + null + ], + [ + "delim-token", + ".", + 79818, + 79818, + { + "value": "." + } + ], + [ + "ident-token", + "card-subtitle", + 79819, + 79831, + { + "value": "card-subtitle" + } + ], + [ + "{-token", + "{", + 79832, + 79832, + null + ], + [ + "ident-token", + "margin-top", + 79833, + 79842, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 79843, + 79843, + null + ], + [ + "function-token", + "calc(", + 79844, + 79848, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 79849, + 79851, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 79852, + 79852, + null + ], + [ + "delim-token", + "*", + 79853, + 79853, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 79854, + 79854, + null + ], + [ + "function-token", + "var(", + 79855, + 79858, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79859, + 79859, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79860, + 79860, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-title-spacer-y", + 79861, + 79882, + { + "value": "bs-card-title-spacer-y" + } + ], + [ + ")-token", + ")", + 79883, + 79883, + null + ], + [ + ")-token", + ")", + 79884, + 79884, + null + ], + [ + "semicolon-token", + ";", + 79885, + 79885, + null + ], + [ + "ident-token", + "margin-bottom", + 79886, + 79898, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 79899, + 79899, + null + ], + [ + "number-token", + "0", + 79900, + 79900, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 79901, + 79901, + null + ], + [ + "delim-token", + ".", + 79902, + 79902, + { + "value": "." + } + ], + [ + "ident-token", + "card-text", + 79903, + 79911, + { + "value": "card-text" + } + ], + [ + "colon-token", + ":", + 79912, + 79912, + null + ], + [ + "ident-token", + "last-child", + 79913, + 79922, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 79923, + 79923, + null + ], + [ + "ident-token", + "margin-bottom", + 79924, + 79936, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 79937, + 79937, + null + ], + [ + "number-token", + "0", + 79938, + 79938, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 79939, + 79939, + null + ], + [ + "delim-token", + ".", + 79940, + 79940, + { + "value": "." + } + ], + [ + "ident-token", + "card-link", + 79941, + 79949, + { + "value": "card-link" + } + ], + [ + "delim-token", + "+", + 79950, + 79950, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 79951, + 79951, + { + "value": "." + } + ], + [ + "ident-token", + "card-link", + 79952, + 79960, + { + "value": "card-link" + } + ], + [ + "{-token", + "{", + 79961, + 79961, + null + ], + [ + "ident-token", + "margin-left", + 79962, + 79972, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 79973, + 79973, + null + ], + [ + "function-token", + "var(", + 79974, + 79977, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 79978, + 79978, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 79979, + 79979, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-spacer-x", + 79980, + 79995, + { + "value": "bs-card-spacer-x" + } + ], + [ + ")-token", + ")", + 79996, + 79996, + null + ], + [ + "}-token", + "}", + 79997, + 79997, + null + ], + [ + "delim-token", + ".", + 79998, + 79998, + { + "value": "." + } + ], + [ + "ident-token", + "card-header", + 79999, + 80009, + { + "value": "card-header" + } + ], + [ + "{-token", + "{", + 80010, + 80010, + null + ], + [ + "ident-token", + "padding", + 80011, + 80017, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 80018, + 80018, + null + ], + [ + "function-token", + "var(", + 80019, + 80022, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80023, + 80023, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80024, + 80024, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-y", + 80025, + 80045, + { + "value": "bs-card-cap-padding-y" + } + ], + [ + ")-token", + ")", + 80046, + 80046, + null + ], + [ + "whitespace-token", + " ", + 80047, + 80047, + null + ], + [ + "function-token", + "var(", + 80048, + 80051, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80052, + 80052, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80053, + 80053, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 80054, + 80074, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 80075, + 80075, + null + ], + [ + "semicolon-token", + ";", + 80076, + 80076, + null + ], + [ + "ident-token", + "margin-bottom", + 80077, + 80089, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 80090, + 80090, + null + ], + [ + "number-token", + "0", + 80091, + 80091, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 80092, + 80092, + null + ], + [ + "ident-token", + "color", + 80093, + 80097, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 80098, + 80098, + null + ], + [ + "function-token", + "var(", + 80099, + 80102, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80103, + 80103, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80104, + 80104, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-color", + 80105, + 80121, + { + "value": "bs-card-cap-color" + } + ], + [ + ")-token", + ")", + 80122, + 80122, + null + ], + [ + "semicolon-token", + ";", + 80123, + 80123, + null + ], + [ + "ident-token", + "background-color", + 80124, + 80139, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 80140, + 80140, + null + ], + [ + "function-token", + "var(", + 80141, + 80144, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80145, + 80145, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80146, + 80146, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-bg", + 80147, + 80160, + { + "value": "bs-card-cap-bg" + } + ], + [ + ")-token", + ")", + 80161, + 80161, + null + ], + [ + "semicolon-token", + ";", + 80162, + 80162, + null + ], + [ + "ident-token", + "border-bottom", + 80163, + 80175, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 80176, + 80176, + null + ], + [ + "function-token", + "var(", + 80177, + 80180, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80181, + 80181, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80182, + 80182, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-width", + 80183, + 80202, + { + "value": "bs-card-border-width" + } + ], + [ + ")-token", + ")", + 80203, + 80203, + null + ], + [ + "whitespace-token", + " ", + 80204, + 80204, + null + ], + [ + "ident-token", + "solid", + 80205, + 80209, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 80210, + 80210, + null + ], + [ + "function-token", + "var(", + 80211, + 80214, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80215, + 80215, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80216, + 80216, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-color", + 80217, + 80236, + { + "value": "bs-card-border-color" + } + ], + [ + ")-token", + ")", + 80237, + 80237, + null + ], + [ + "}-token", + "}", + 80238, + 80238, + null + ], + [ + "delim-token", + ".", + 80239, + 80239, + { + "value": "." + } + ], + [ + "ident-token", + "card-header", + 80240, + 80250, + { + "value": "card-header" + } + ], + [ + "colon-token", + ":", + 80251, + 80251, + null + ], + [ + "ident-token", + "first-child", + 80252, + 80262, + { + "value": "first-child" + } + ], + [ + "{-token", + "{", + 80263, + 80263, + null + ], + [ + "ident-token", + "border-radius", + 80264, + 80276, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 80277, + 80277, + null + ], + [ + "function-token", + "var(", + 80278, + 80281, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80282, + 80282, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80283, + 80283, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 80284, + 80310, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 80311, + 80311, + null + ], + [ + "whitespace-token", + " ", + 80312, + 80312, + null + ], + [ + "function-token", + "var(", + 80313, + 80316, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80317, + 80317, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80318, + 80318, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 80319, + 80345, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 80346, + 80346, + null + ], + [ + "whitespace-token", + " ", + 80347, + 80347, + null + ], + [ + "number-token", + "0", + 80348, + 80348, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 80349, + 80349, + null + ], + [ + "number-token", + "0", + 80350, + 80350, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 80351, + 80351, + null + ], + [ + "delim-token", + ".", + 80352, + 80352, + { + "value": "." + } + ], + [ + "ident-token", + "card-footer", + 80353, + 80363, + { + "value": "card-footer" + } + ], + [ + "{-token", + "{", + 80364, + 80364, + null + ], + [ + "ident-token", + "padding", + 80365, + 80371, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 80372, + 80372, + null + ], + [ + "function-token", + "var(", + 80373, + 80376, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80377, + 80377, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80378, + 80378, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-y", + 80379, + 80399, + { + "value": "bs-card-cap-padding-y" + } + ], + [ + ")-token", + ")", + 80400, + 80400, + null + ], + [ + "whitespace-token", + " ", + 80401, + 80401, + null + ], + [ + "function-token", + "var(", + 80402, + 80405, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80406, + 80406, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80407, + 80407, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 80408, + 80428, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 80429, + 80429, + null + ], + [ + "semicolon-token", + ";", + 80430, + 80430, + null + ], + [ + "ident-token", + "color", + 80431, + 80435, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 80436, + 80436, + null + ], + [ + "function-token", + "var(", + 80437, + 80440, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80441, + 80441, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80442, + 80442, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-color", + 80443, + 80459, + { + "value": "bs-card-cap-color" + } + ], + [ + ")-token", + ")", + 80460, + 80460, + null + ], + [ + "semicolon-token", + ";", + 80461, + 80461, + null + ], + [ + "ident-token", + "background-color", + 80462, + 80477, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 80478, + 80478, + null + ], + [ + "function-token", + "var(", + 80479, + 80482, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80483, + 80483, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80484, + 80484, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-bg", + 80485, + 80498, + { + "value": "bs-card-cap-bg" + } + ], + [ + ")-token", + ")", + 80499, + 80499, + null + ], + [ + "semicolon-token", + ";", + 80500, + 80500, + null + ], + [ + "ident-token", + "border-top", + 80501, + 80510, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 80511, + 80511, + null + ], + [ + "function-token", + "var(", + 80512, + 80515, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80516, + 80516, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80517, + 80517, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-width", + 80518, + 80537, + { + "value": "bs-card-border-width" + } + ], + [ + ")-token", + ")", + 80538, + 80538, + null + ], + [ + "whitespace-token", + " ", + 80539, + 80539, + null + ], + [ + "ident-token", + "solid", + 80540, + 80544, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 80545, + 80545, + null + ], + [ + "function-token", + "var(", + 80546, + 80549, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80550, + 80550, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80551, + 80551, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-border-color", + 80552, + 80571, + { + "value": "bs-card-border-color" + } + ], + [ + ")-token", + ")", + 80572, + 80572, + null + ], + [ + "}-token", + "}", + 80573, + 80573, + null + ], + [ + "delim-token", + ".", + 80574, + 80574, + { + "value": "." + } + ], + [ + "ident-token", + "card-footer", + 80575, + 80585, + { + "value": "card-footer" + } + ], + [ + "colon-token", + ":", + 80586, + 80586, + null + ], + [ + "ident-token", + "last-child", + 80587, + 80596, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 80597, + 80597, + null + ], + [ + "ident-token", + "border-radius", + 80598, + 80610, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 80611, + 80611, + null + ], + [ + "number-token", + "0", + 80612, + 80612, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 80613, + 80613, + null + ], + [ + "number-token", + "0", + 80614, + 80614, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 80615, + 80615, + null + ], + [ + "function-token", + "var(", + 80616, + 80619, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80620, + 80620, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80621, + 80621, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 80622, + 80648, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 80649, + 80649, + null + ], + [ + "whitespace-token", + " ", + 80650, + 80650, + null + ], + [ + "function-token", + "var(", + 80651, + 80654, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80655, + 80655, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80656, + 80656, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 80657, + 80683, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 80684, + 80684, + null + ], + [ + "}-token", + "}", + 80685, + 80685, + null + ], + [ + "delim-token", + ".", + 80686, + 80686, + { + "value": "." + } + ], + [ + "ident-token", + "card-header-tabs", + 80687, + 80702, + { + "value": "card-header-tabs" + } + ], + [ + "{-token", + "{", + 80703, + 80703, + null + ], + [ + "ident-token", + "margin-right", + 80704, + 80715, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 80716, + 80716, + null + ], + [ + "function-token", + "calc(", + 80717, + 80721, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 80722, + 80724, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 80725, + 80725, + null + ], + [ + "delim-token", + "*", + 80726, + 80726, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 80727, + 80727, + null + ], + [ + "function-token", + "var(", + 80728, + 80731, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80732, + 80732, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80733, + 80733, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 80734, + 80754, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 80755, + 80755, + null + ], + [ + ")-token", + ")", + 80756, + 80756, + null + ], + [ + "semicolon-token", + ";", + 80757, + 80757, + null + ], + [ + "ident-token", + "margin-bottom", + 80758, + 80770, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 80771, + 80771, + null + ], + [ + "function-token", + "calc(", + 80772, + 80776, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 80777, + 80778, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 80779, + 80779, + null + ], + [ + "delim-token", + "*", + 80780, + 80780, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 80781, + 80781, + null + ], + [ + "function-token", + "var(", + 80782, + 80785, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80786, + 80786, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80787, + 80787, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-y", + 80788, + 80808, + { + "value": "bs-card-cap-padding-y" + } + ], + [ + ")-token", + ")", + 80809, + 80809, + null + ], + [ + ")-token", + ")", + 80810, + 80810, + null + ], + [ + "semicolon-token", + ";", + 80811, + 80811, + null + ], + [ + "ident-token", + "margin-left", + 80812, + 80822, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 80823, + 80823, + null + ], + [ + "function-token", + "calc(", + 80824, + 80828, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 80829, + 80831, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 80832, + 80832, + null + ], + [ + "delim-token", + "*", + 80833, + 80833, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 80834, + 80834, + null + ], + [ + "function-token", + "var(", + 80835, + 80838, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80839, + 80839, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80840, + 80840, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 80841, + 80861, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 80862, + 80862, + null + ], + [ + ")-token", + ")", + 80863, + 80863, + null + ], + [ + "semicolon-token", + ";", + 80864, + 80864, + null + ], + [ + "ident-token", + "border-bottom", + 80865, + 80877, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 80878, + 80878, + null + ], + [ + "number-token", + "0", + 80879, + 80879, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 80880, + 80880, + null + ], + [ + "delim-token", + ".", + 80881, + 80881, + { + "value": "." + } + ], + [ + "ident-token", + "card-header-tabs", + 80882, + 80897, + { + "value": "card-header-tabs" + } + ], + [ + "whitespace-token", + " ", + 80898, + 80898, + null + ], + [ + "delim-token", + ".", + 80899, + 80899, + { + "value": "." + } + ], + [ + "ident-token", + "nav-link", + 80900, + 80907, + { + "value": "nav-link" + } + ], + [ + "delim-token", + ".", + 80908, + 80908, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 80909, + 80914, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 80915, + 80915, + null + ], + [ + "ident-token", + "background-color", + 80916, + 80931, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 80932, + 80932, + null + ], + [ + "function-token", + "var(", + 80933, + 80936, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80937, + 80937, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80938, + 80938, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-bg", + 80939, + 80948, + { + "value": "bs-card-bg" + } + ], + [ + ")-token", + ")", + 80949, + 80949, + null + ], + [ + "semicolon-token", + ";", + 80950, + 80950, + null + ], + [ + "ident-token", + "border-bottom-color", + 80951, + 80969, + { + "value": "border-bottom-color" + } + ], + [ + "colon-token", + ":", + 80970, + 80970, + null + ], + [ + "function-token", + "var(", + 80971, + 80974, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 80975, + 80975, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 80976, + 80976, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-bg", + 80977, + 80986, + { + "value": "bs-card-bg" + } + ], + [ + ")-token", + ")", + 80987, + 80987, + null + ], + [ + "}-token", + "}", + 80988, + 80988, + null + ], + [ + "delim-token", + ".", + 80989, + 80989, + { + "value": "." + } + ], + [ + "ident-token", + "card-header-pills", + 80990, + 81006, + { + "value": "card-header-pills" + } + ], + [ + "{-token", + "{", + 81007, + 81007, + null + ], + [ + "ident-token", + "margin-right", + 81008, + 81019, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 81020, + 81020, + null + ], + [ + "function-token", + "calc(", + 81021, + 81025, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 81026, + 81028, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 81029, + 81029, + null + ], + [ + "delim-token", + "*", + 81030, + 81030, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 81031, + 81031, + null + ], + [ + "function-token", + "var(", + 81032, + 81035, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81036, + 81036, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81037, + 81037, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 81038, + 81058, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 81059, + 81059, + null + ], + [ + ")-token", + ")", + 81060, + 81060, + null + ], + [ + "semicolon-token", + ";", + 81061, + 81061, + null + ], + [ + "ident-token", + "margin-left", + 81062, + 81072, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 81073, + 81073, + null + ], + [ + "function-token", + "calc(", + 81074, + 81078, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 81079, + 81081, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 81082, + 81082, + null + ], + [ + "delim-token", + "*", + 81083, + 81083, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 81084, + 81084, + null + ], + [ + "function-token", + "var(", + 81085, + 81088, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81089, + 81089, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81090, + 81090, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-cap-padding-x", + 81091, + 81111, + { + "value": "bs-card-cap-padding-x" + } + ], + [ + ")-token", + ")", + 81112, + 81112, + null + ], + [ + ")-token", + ")", + 81113, + 81113, + null + ], + [ + "}-token", + "}", + 81114, + 81114, + null + ], + [ + "delim-token", + ".", + 81115, + 81115, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-overlay", + 81116, + 81131, + { + "value": "card-img-overlay" + } + ], + [ + "{-token", + "{", + 81132, + 81132, + null + ], + [ + "ident-token", + "position", + 81133, + 81140, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 81141, + 81141, + null + ], + [ + "ident-token", + "absolute", + 81142, + 81149, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 81150, + 81150, + null + ], + [ + "ident-token", + "top", + 81151, + 81153, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 81154, + 81154, + null + ], + [ + "number-token", + "0", + 81155, + 81155, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81156, + 81156, + null + ], + [ + "ident-token", + "right", + 81157, + 81161, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 81162, + 81162, + null + ], + [ + "number-token", + "0", + 81163, + 81163, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81164, + 81164, + null + ], + [ + "ident-token", + "bottom", + 81165, + 81170, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 81171, + 81171, + null + ], + [ + "number-token", + "0", + 81172, + 81172, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81173, + 81173, + null + ], + [ + "ident-token", + "left", + 81174, + 81177, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 81178, + 81178, + null + ], + [ + "number-token", + "0", + 81179, + 81179, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81180, + 81180, + null + ], + [ + "ident-token", + "padding", + 81181, + 81187, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 81188, + 81188, + null + ], + [ + "function-token", + "var(", + 81189, + 81192, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81193, + 81193, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81194, + 81194, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-img-overlay-padding", + 81195, + 81221, + { + "value": "bs-card-img-overlay-padding" + } + ], + [ + ")-token", + ")", + 81222, + 81222, + null + ], + [ + "semicolon-token", + ";", + 81223, + 81223, + null + ], + [ + "ident-token", + "border-radius", + 81224, + 81236, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 81237, + 81237, + null + ], + [ + "function-token", + "var(", + 81238, + 81241, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81242, + 81242, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81243, + 81243, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 81244, + 81270, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 81271, + 81271, + null + ], + [ + "}-token", + "}", + 81272, + 81272, + null + ], + [ + "delim-token", + ".", + 81273, + 81273, + { + "value": "." + } + ], + [ + "ident-token", + "card-img", + 81274, + 81281, + { + "value": "card-img" + } + ], + [ + "comma-token", + ",", + 81282, + 81282, + null + ], + [ + "delim-token", + ".", + 81283, + 81283, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-bottom", + 81284, + 81298, + { + "value": "card-img-bottom" + } + ], + [ + "comma-token", + ",", + 81299, + 81299, + null + ], + [ + "delim-token", + ".", + 81300, + 81300, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-top", + 81301, + 81312, + { + "value": "card-img-top" + } + ], + [ + "{-token", + "{", + 81313, + 81313, + null + ], + [ + "ident-token", + "width", + 81314, + 81318, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 81319, + 81319, + null + ], + [ + "percentage-token", + "100%", + 81320, + 81323, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 81324, + 81324, + null + ], + [ + "delim-token", + ".", + 81325, + 81325, + { + "value": "." + } + ], + [ + "ident-token", + "card-img", + 81326, + 81333, + { + "value": "card-img" + } + ], + [ + "comma-token", + ",", + 81334, + 81334, + null + ], + [ + "delim-token", + ".", + 81335, + 81335, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-top", + 81336, + 81347, + { + "value": "card-img-top" + } + ], + [ + "{-token", + "{", + 81348, + 81348, + null + ], + [ + "ident-token", + "border-top-left-radius", + 81349, + 81370, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 81371, + 81371, + null + ], + [ + "function-token", + "var(", + 81372, + 81375, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81376, + 81376, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81377, + 81377, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 81378, + 81404, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 81405, + 81405, + null + ], + [ + "semicolon-token", + ";", + 81406, + 81406, + null + ], + [ + "ident-token", + "border-top-right-radius", + 81407, + 81429, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 81430, + 81430, + null + ], + [ + "function-token", + "var(", + 81431, + 81434, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81435, + 81435, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81436, + 81436, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 81437, + 81463, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 81464, + 81464, + null + ], + [ + "}-token", + "}", + 81465, + 81465, + null + ], + [ + "delim-token", + ".", + 81466, + 81466, + { + "value": "." + } + ], + [ + "ident-token", + "card-img", + 81467, + 81474, + { + "value": "card-img" + } + ], + [ + "comma-token", + ",", + 81475, + 81475, + null + ], + [ + "delim-token", + ".", + 81476, + 81476, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-bottom", + 81477, + 81491, + { + "value": "card-img-bottom" + } + ], + [ + "{-token", + "{", + 81492, + 81492, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 81493, + 81518, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 81519, + 81519, + null + ], + [ + "function-token", + "var(", + 81520, + 81523, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81524, + 81524, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81525, + 81525, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 81526, + 81552, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 81553, + 81553, + null + ], + [ + "semicolon-token", + ";", + 81554, + 81554, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 81555, + 81579, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 81580, + 81580, + null + ], + [ + "function-token", + "var(", + 81581, + 81584, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81585, + 81585, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81586, + 81586, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-inner-border-radius", + 81587, + 81613, + { + "value": "bs-card-inner-border-radius" + } + ], + [ + ")-token", + ")", + 81614, + 81614, + null + ], + [ + "}-token", + "}", + 81615, + 81615, + null + ], + [ + "delim-token", + ".", + 81616, + 81616, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81617, + 81626, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81627, + 81627, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81628, + 81628, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81629, + 81632, + { + "value": "card" + } + ], + [ + "{-token", + "{", + 81633, + 81633, + null + ], + [ + "ident-token", + "margin-bottom", + 81634, + 81646, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 81647, + 81647, + null + ], + [ + "function-token", + "var(", + 81648, + 81651, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 81652, + 81652, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 81653, + 81653, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-card-group-margin", + 81654, + 81673, + { + "value": "bs-card-group-margin" + } + ], + [ + ")-token", + ")", + 81674, + 81674, + null + ], + [ + "}-token", + "}", + 81675, + 81675, + null + ], + [ + "at-keyword-token", + "@media", + 81676, + 81681, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 81682, + 81682, + null + ], + [ + "(-token", + "(", + 81683, + 81683, + null + ], + [ + "ident-token", + "min-width", + 81684, + 81692, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 81693, + 81693, + null + ], + [ + "dimension-token", + "576px", + 81694, + 81698, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 81699, + 81699, + null + ], + [ + "{-token", + "{", + 81700, + 81700, + null + ], + [ + "delim-token", + ".", + 81701, + 81701, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81702, + 81711, + { + "value": "card-group" + } + ], + [ + "{-token", + "{", + 81712, + 81712, + null + ], + [ + "ident-token", + "display", + 81713, + 81719, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 81720, + 81720, + null + ], + [ + "ident-token", + "flex", + 81721, + 81724, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 81725, + 81725, + null + ], + [ + "ident-token", + "flex-flow", + 81726, + 81734, + { + "value": "flex-flow" + } + ], + [ + "colon-token", + ":", + 81735, + 81735, + null + ], + [ + "ident-token", + "row", + 81736, + 81738, + { + "value": "row" + } + ], + [ + "whitespace-token", + " ", + 81739, + 81739, + null + ], + [ + "ident-token", + "wrap", + 81740, + 81743, + { + "value": "wrap" + } + ], + [ + "}-token", + "}", + 81744, + 81744, + null + ], + [ + "delim-token", + ".", + 81745, + 81745, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81746, + 81755, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81756, + 81756, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81757, + 81757, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81758, + 81761, + { + "value": "card" + } + ], + [ + "{-token", + "{", + 81762, + 81762, + null + ], + [ + "ident-token", + "flex", + 81763, + 81766, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 81767, + 81767, + null + ], + [ + "number-token", + "1", + 81768, + 81768, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 81769, + 81769, + null + ], + [ + "number-token", + "0", + 81770, + 81770, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 81771, + 81771, + null + ], + [ + "percentage-token", + "0%", + 81772, + 81773, + { + "value": 0 + } + ], + [ + "semicolon-token", + ";", + 81774, + 81774, + null + ], + [ + "ident-token", + "margin-bottom", + 81775, + 81787, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 81788, + 81788, + null + ], + [ + "number-token", + "0", + 81789, + 81789, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 81790, + 81790, + null + ], + [ + "delim-token", + ".", + 81791, + 81791, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81792, + 81801, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81802, + 81802, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81803, + 81803, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81804, + 81807, + { + "value": "card" + } + ], + [ + "delim-token", + "+", + 81808, + 81808, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 81809, + 81809, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81810, + 81813, + { + "value": "card" + } + ], + [ + "{-token", + "{", + 81814, + 81814, + null + ], + [ + "ident-token", + "margin-left", + 81815, + 81825, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 81826, + 81826, + null + ], + [ + "number-token", + "0", + 81827, + 81827, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81828, + 81828, + null + ], + [ + "ident-token", + "border-left", + 81829, + 81839, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 81840, + 81840, + null + ], + [ + "number-token", + "0", + 81841, + 81841, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 81842, + 81842, + null + ], + [ + "delim-token", + ".", + 81843, + 81843, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81844, + 81853, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81854, + 81854, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81855, + 81855, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81856, + 81859, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 81860, + 81860, + null + ], + [ + "function-token", + "not(", + 81861, + 81864, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 81865, + 81865, + null + ], + [ + "ident-token", + "last-child", + 81866, + 81875, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 81876, + 81876, + null + ], + [ + "{-token", + "{", + 81877, + 81877, + null + ], + [ + "ident-token", + "border-top-right-radius", + 81878, + 81900, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 81901, + 81901, + null + ], + [ + "number-token", + "0", + 81902, + 81902, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 81903, + 81903, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 81904, + 81929, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 81930, + 81930, + null + ], + [ + "number-token", + "0", + 81931, + 81931, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 81932, + 81932, + null + ], + [ + "delim-token", + ".", + 81933, + 81933, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81934, + 81943, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81944, + 81944, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81945, + 81945, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81946, + 81949, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 81950, + 81950, + null + ], + [ + "function-token", + "not(", + 81951, + 81954, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 81955, + 81955, + null + ], + [ + "ident-token", + "last-child", + 81956, + 81965, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 81966, + 81966, + null + ], + [ + "whitespace-token", + " ", + 81967, + 81967, + null + ], + [ + "delim-token", + ".", + 81968, + 81968, + { + "value": "." + } + ], + [ + "ident-token", + "card-header", + 81969, + 81979, + { + "value": "card-header" + } + ], + [ + "comma-token", + ",", + 81980, + 81980, + null + ], + [ + "delim-token", + ".", + 81981, + 81981, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 81982, + 81991, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 81992, + 81992, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 81993, + 81993, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 81994, + 81997, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 81998, + 81998, + null + ], + [ + "function-token", + "not(", + 81999, + 82002, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82003, + 82003, + null + ], + [ + "ident-token", + "last-child", + 82004, + 82013, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 82014, + 82014, + null + ], + [ + "whitespace-token", + " ", + 82015, + 82015, + null + ], + [ + "delim-token", + ".", + 82016, + 82016, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-top", + 82017, + 82028, + { + "value": "card-img-top" + } + ], + [ + "{-token", + "{", + 82029, + 82029, + null + ], + [ + "ident-token", + "border-top-right-radius", + 82030, + 82052, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 82053, + 82053, + null + ], + [ + "number-token", + "0", + 82054, + 82054, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 82055, + 82055, + null + ], + [ + "delim-token", + ".", + 82056, + 82056, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82057, + 82066, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82067, + 82067, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82068, + 82068, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82069, + 82072, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82073, + 82073, + null + ], + [ + "function-token", + "not(", + 82074, + 82077, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82078, + 82078, + null + ], + [ + "ident-token", + "last-child", + 82079, + 82088, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 82089, + 82089, + null + ], + [ + "whitespace-token", + " ", + 82090, + 82090, + null + ], + [ + "delim-token", + ".", + 82091, + 82091, + { + "value": "." + } + ], + [ + "ident-token", + "card-footer", + 82092, + 82102, + { + "value": "card-footer" + } + ], + [ + "comma-token", + ",", + 82103, + 82103, + null + ], + [ + "delim-token", + ".", + 82104, + 82104, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82105, + 82114, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82115, + 82115, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82116, + 82116, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82117, + 82120, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82121, + 82121, + null + ], + [ + "function-token", + "not(", + 82122, + 82125, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82126, + 82126, + null + ], + [ + "ident-token", + "last-child", + 82127, + 82136, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 82137, + 82137, + null + ], + [ + "whitespace-token", + " ", + 82138, + 82138, + null + ], + [ + "delim-token", + ".", + 82139, + 82139, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-bottom", + 82140, + 82154, + { + "value": "card-img-bottom" + } + ], + [ + "{-token", + "{", + 82155, + 82155, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 82156, + 82181, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 82182, + 82182, + null + ], + [ + "number-token", + "0", + 82183, + 82183, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 82184, + 82184, + null + ], + [ + "delim-token", + ".", + 82185, + 82185, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82186, + 82195, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82196, + 82196, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82197, + 82197, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82198, + 82201, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82202, + 82202, + null + ], + [ + "function-token", + "not(", + 82203, + 82206, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82207, + 82207, + null + ], + [ + "ident-token", + "first-child", + 82208, + 82218, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 82219, + 82219, + null + ], + [ + "{-token", + "{", + 82220, + 82220, + null + ], + [ + "ident-token", + "border-top-left-radius", + 82221, + 82242, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 82243, + 82243, + null + ], + [ + "number-token", + "0", + 82244, + 82244, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 82245, + 82245, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 82246, + 82270, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 82271, + 82271, + null + ], + [ + "number-token", + "0", + 82272, + 82272, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 82273, + 82273, + null + ], + [ + "delim-token", + ".", + 82274, + 82274, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82275, + 82284, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82285, + 82285, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82286, + 82286, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82287, + 82290, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82291, + 82291, + null + ], + [ + "function-token", + "not(", + 82292, + 82295, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82296, + 82296, + null + ], + [ + "ident-token", + "first-child", + 82297, + 82307, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 82308, + 82308, + null + ], + [ + "whitespace-token", + " ", + 82309, + 82309, + null + ], + [ + "delim-token", + ".", + 82310, + 82310, + { + "value": "." + } + ], + [ + "ident-token", + "card-header", + 82311, + 82321, + { + "value": "card-header" + } + ], + [ + "comma-token", + ",", + 82322, + 82322, + null + ], + [ + "delim-token", + ".", + 82323, + 82323, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82324, + 82333, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82334, + 82334, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82335, + 82335, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82336, + 82339, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82340, + 82340, + null + ], + [ + "function-token", + "not(", + 82341, + 82344, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82345, + 82345, + null + ], + [ + "ident-token", + "first-child", + 82346, + 82356, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 82357, + 82357, + null + ], + [ + "whitespace-token", + " ", + 82358, + 82358, + null + ], + [ + "delim-token", + ".", + 82359, + 82359, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-top", + 82360, + 82371, + { + "value": "card-img-top" + } + ], + [ + "{-token", + "{", + 82372, + 82372, + null + ], + [ + "ident-token", + "border-top-left-radius", + 82373, + 82394, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 82395, + 82395, + null + ], + [ + "number-token", + "0", + 82396, + 82396, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 82397, + 82397, + null + ], + [ + "delim-token", + ".", + 82398, + 82398, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82399, + 82408, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82409, + 82409, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82410, + 82410, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82411, + 82414, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82415, + 82415, + null + ], + [ + "function-token", + "not(", + 82416, + 82419, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82420, + 82420, + null + ], + [ + "ident-token", + "first-child", + 82421, + 82431, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 82432, + 82432, + null + ], + [ + "whitespace-token", + " ", + 82433, + 82433, + null + ], + [ + "delim-token", + ".", + 82434, + 82434, + { + "value": "." + } + ], + [ + "ident-token", + "card-footer", + 82435, + 82445, + { + "value": "card-footer" + } + ], + [ + "comma-token", + ",", + 82446, + 82446, + null + ], + [ + "delim-token", + ".", + 82447, + 82447, + { + "value": "." + } + ], + [ + "ident-token", + "card-group", + 82448, + 82457, + { + "value": "card-group" + } + ], + [ + "delim-token", + ">", + 82458, + 82458, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 82459, + 82459, + { + "value": "." + } + ], + [ + "ident-token", + "card", + 82460, + 82463, + { + "value": "card" + } + ], + [ + "colon-token", + ":", + 82464, + 82464, + null + ], + [ + "function-token", + "not(", + 82465, + 82468, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 82469, + 82469, + null + ], + [ + "ident-token", + "first-child", + 82470, + 82480, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 82481, + 82481, + null + ], + [ + "whitespace-token", + " ", + 82482, + 82482, + null + ], + [ + "delim-token", + ".", + 82483, + 82483, + { + "value": "." + } + ], + [ + "ident-token", + "card-img-bottom", + 82484, + 82498, + { + "value": "card-img-bottom" + } + ], + [ + "{-token", + "{", + 82499, + 82499, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 82500, + 82524, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 82525, + 82525, + null + ], + [ + "number-token", + "0", + 82526, + 82526, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 82527, + 82527, + null + ], + [ + "}-token", + "}", + 82528, + 82528, + null + ], + [ + "delim-token", + ".", + 82529, + 82529, + { + "value": "." + } + ], + [ + "ident-token", + "accordion", + 82530, + 82538, + { + "value": "accordion" + } + ], + [ + "{-token", + "{", + 82539, + 82539, + null + ], + [ + "delim-token", + "-", + 82540, + 82540, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82541, + 82541, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-color", + 82542, + 82559, + { + "value": "bs-accordion-color" + } + ], + [ + "colon-token", + ":", + 82560, + 82560, + null + ], + [ + "function-token", + "var(", + 82561, + 82564, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 82565, + 82565, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82566, + 82566, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 82567, + 82579, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 82580, + 82580, + null + ], + [ + "semicolon-token", + ";", + 82581, + 82581, + null + ], + [ + "delim-token", + "-", + 82582, + 82582, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82583, + 82583, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-bg", + 82584, + 82598, + { + "value": "bs-accordion-bg" + } + ], + [ + "colon-token", + ":", + 82599, + 82599, + null + ], + [ + "hash-token", + "#fff", + 82600, + 82603, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 82604, + 82604, + null + ], + [ + "delim-token", + "-", + 82605, + 82605, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82606, + 82606, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-transition", + 82607, + 82629, + { + "value": "bs-accordion-transition" + } + ], + [ + "colon-token", + ":", + 82630, + 82630, + null + ], + [ + "ident-token", + "color", + 82631, + 82635, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 82636, + 82636, + null + ], + [ + "dimension-token", + "0.15s", + 82637, + 82641, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 82642, + 82642, + null + ], + [ + "ident-token", + "ease-in-out", + 82643, + 82653, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 82654, + 82654, + null + ], + [ + "ident-token", + "background-color", + 82655, + 82670, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 82671, + 82671, + null + ], + [ + "dimension-token", + "0.15s", + 82672, + 82676, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 82677, + 82677, + null + ], + [ + "ident-token", + "ease-in-out", + 82678, + 82688, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 82689, + 82689, + null + ], + [ + "ident-token", + "border-color", + 82690, + 82701, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 82702, + 82702, + null + ], + [ + "dimension-token", + "0.15s", + 82703, + 82707, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 82708, + 82708, + null + ], + [ + "ident-token", + "ease-in-out", + 82709, + 82719, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 82720, + 82720, + null + ], + [ + "ident-token", + "box-shadow", + 82721, + 82730, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 82731, + 82731, + null + ], + [ + "dimension-token", + "0.15s", + 82732, + 82736, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 82737, + 82737, + null + ], + [ + "ident-token", + "ease-in-out", + 82738, + 82748, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 82749, + 82749, + null + ], + [ + "ident-token", + "border-radius", + 82750, + 82762, + { + "value": "border-radius" + } + ], + [ + "whitespace-token", + " ", + 82763, + 82763, + null + ], + [ + "dimension-token", + "0.15s", + 82764, + 82768, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 82769, + 82769, + null + ], + [ + "ident-token", + "ease", + 82770, + 82773, + { + "value": "ease" + } + ], + [ + "semicolon-token", + ";", + 82774, + 82774, + null + ], + [ + "delim-token", + "-", + 82775, + 82775, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82776, + 82776, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-color", + 82777, + 82801, + { + "value": "bs-accordion-border-color" + } + ], + [ + "colon-token", + ":", + 82802, + 82802, + null + ], + [ + "function-token", + "var(", + 82803, + 82806, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 82807, + 82807, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82808, + 82808, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 82809, + 82823, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 82824, + 82824, + null + ], + [ + "semicolon-token", + ";", + 82825, + 82825, + null + ], + [ + "delim-token", + "-", + 82826, + 82826, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82827, + 82827, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-width", + 82828, + 82852, + { + "value": "bs-accordion-border-width" + } + ], + [ + "colon-token", + ":", + 82853, + 82853, + null + ], + [ + "dimension-token", + "1px", + 82854, + 82856, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 82857, + 82857, + null + ], + [ + "delim-token", + "-", + 82858, + 82858, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82859, + 82859, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 82860, + 82885, + { + "value": "bs-accordion-border-radius" + } + ], + [ + "colon-token", + ":", + 82886, + 82886, + null + ], + [ + "dimension-token", + "0.375rem", + 82887, + 82894, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 82895, + 82895, + null + ], + [ + "delim-token", + "-", + 82896, + 82896, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82897, + 82897, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-inner-border-radius", + 82898, + 82929, + { + "value": "bs-accordion-inner-border-radius" + } + ], + [ + "colon-token", + ":", + 82930, + 82930, + null + ], + [ + "function-token", + "calc(", + 82931, + 82935, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.375rem", + 82936, + 82943, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 82944, + 82944, + null + ], + [ + "delim-token", + "-", + 82945, + 82945, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 82946, + 82946, + null + ], + [ + "dimension-token", + "1px", + 82947, + 82949, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 82950, + 82950, + null + ], + [ + "semicolon-token", + ";", + 82951, + 82951, + null + ], + [ + "delim-token", + "-", + 82952, + 82952, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82953, + 82953, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-padding-x", + 82954, + 82979, + { + "value": "bs-accordion-btn-padding-x" + } + ], + [ + "colon-token", + ":", + 82980, + 82980, + null + ], + [ + "dimension-token", + "1.25rem", + 82981, + 82987, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 82988, + 82988, + null + ], + [ + "delim-token", + "-", + 82989, + 82989, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 82990, + 82990, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-padding-y", + 82991, + 83016, + { + "value": "bs-accordion-btn-padding-y" + } + ], + [ + "colon-token", + ":", + 83017, + 83017, + null + ], + [ + "dimension-token", + "1rem", + 83018, + 83021, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 83022, + 83022, + null + ], + [ + "delim-token", + "-", + 83023, + 83023, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83024, + 83024, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-color", + 83025, + 83046, + { + "value": "bs-accordion-btn-color" + } + ], + [ + "colon-token", + ":", + 83047, + 83047, + null + ], + [ + "function-token", + "var(", + 83048, + 83051, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 83052, + 83052, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83053, + 83053, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color", + 83054, + 83066, + { + "value": "bs-body-color" + } + ], + [ + ")-token", + ")", + 83067, + 83067, + null + ], + [ + "semicolon-token", + ";", + 83068, + 83068, + null + ], + [ + "delim-token", + "-", + 83069, + 83069, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83070, + 83070, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-bg", + 83071, + 83089, + { + "value": "bs-accordion-btn-bg" + } + ], + [ + "colon-token", + ":", + 83090, + 83090, + null + ], + [ + "function-token", + "var(", + 83091, + 83094, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 83095, + 83095, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83096, + 83096, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-bg", + 83097, + 83111, + { + "value": "bs-accordion-bg" + } + ], + [ + ")-token", + ")", + 83112, + 83112, + null + ], + [ + "semicolon-token", + ";", + 83113, + 83113, + null + ], + [ + "delim-token", + "-", + 83114, + 83114, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83115, + 83115, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon", + 83116, + 83136, + { + "value": "bs-accordion-btn-icon" + } + ], + [ + "colon-token", + ":", + 83137, + 83137, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + 83138, + 83423, + null + ], + [ + "semicolon-token", + ";", + 83424, + 83424, + null + ], + [ + "delim-token", + "-", + 83425, + 83425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83426, + 83426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-width", + 83427, + 83453, + { + "value": "bs-accordion-btn-icon-width" + } + ], + [ + "colon-token", + ":", + 83454, + 83454, + null + ], + [ + "dimension-token", + "1.25rem", + 83455, + 83461, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 83462, + 83462, + null + ], + [ + "delim-token", + "-", + 83463, + 83463, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83464, + 83464, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-transform", + 83465, + 83495, + { + "value": "bs-accordion-btn-icon-transform" + } + ], + [ + "colon-token", + ":", + 83496, + 83496, + null + ], + [ + "function-token", + "rotate(", + 83497, + 83503, + { + "value": "rotate" + } + ], + [ + "dimension-token", + "-180deg", + 83504, + 83510, + { + "value": -180, + "type": "integer", + "unit": "deg" + } + ], + [ + ")-token", + ")", + 83511, + 83511, + null + ], + [ + "semicolon-token", + ";", + 83512, + 83512, + null + ], + [ + "delim-token", + "-", + 83513, + 83513, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83514, + 83514, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-transition", + 83515, + 83546, + { + "value": "bs-accordion-btn-icon-transition" + } + ], + [ + "colon-token", + ":", + 83547, + 83547, + null + ], + [ + "ident-token", + "transform", + 83548, + 83556, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 83557, + 83557, + null + ], + [ + "dimension-token", + "0.2s", + 83558, + 83561, + { + "value": 0.2, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 83562, + 83562, + null + ], + [ + "ident-token", + "ease-in-out", + 83563, + 83573, + { + "value": "ease-in-out" + } + ], + [ + "semicolon-token", + ";", + 83574, + 83574, + null + ], + [ + "delim-token", + "-", + 83575, + 83575, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83576, + 83576, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-active-icon", + 83577, + 83604, + { + "value": "bs-accordion-btn-active-icon" + } + ], + [ + "colon-token", + ":", + 83605, + 83605, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + 83606, + 83876, + null + ], + [ + "semicolon-token", + ";", + 83877, + 83877, + null + ], + [ + "delim-token", + "-", + 83878, + 83878, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83879, + 83879, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-focus-border-color", + 83880, + 83914, + { + "value": "bs-accordion-btn-focus-border-color" + } + ], + [ + "colon-token", + ":", + 83915, + 83915, + null + ], + [ + "hash-token", + "#86b7fe", + 83916, + 83922, + { + "value": "86b7fe", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 83923, + 83923, + null + ], + [ + "delim-token", + "-", + 83924, + 83924, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 83925, + 83925, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-focus-box-shadow", + 83926, + 83958, + { + "value": "bs-accordion-btn-focus-box-shadow" + } + ], + [ + "colon-token", + ":", + 83959, + 83959, + null + ], + [ + "number-token", + "0", + 83960, + 83960, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 83961, + 83961, + null + ], + [ + "number-token", + "0", + 83962, + 83962, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 83963, + 83963, + null + ], + [ + "number-token", + "0", + 83964, + 83964, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 83965, + 83965, + null + ], + [ + "dimension-token", + "0.25rem", + 83966, + 83972, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 83973, + 83973, + null + ], + [ + "function-token", + "rgba(", + 83974, + 83978, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 83979, + 83980, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 83981, + 83981, + null + ], + [ + "whitespace-token", + " ", + 83982, + 83982, + null + ], + [ + "number-token", + "110", + 83983, + 83985, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 83986, + 83986, + null + ], + [ + "whitespace-token", + " ", + 83987, + 83987, + null + ], + [ + "number-token", + "253", + 83988, + 83990, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 83991, + 83991, + null + ], + [ + "whitespace-token", + " ", + 83992, + 83992, + null + ], + [ + "number-token", + "0.25", + 83993, + 83996, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 83997, + 83997, + null + ], + [ + "semicolon-token", + ";", + 83998, + 83998, + null + ], + [ + "delim-token", + "-", + 83999, + 83999, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84000, + 84000, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-body-padding-x", + 84001, + 84027, + { + "value": "bs-accordion-body-padding-x" + } + ], + [ + "colon-token", + ":", + 84028, + 84028, + null + ], + [ + "dimension-token", + "1.25rem", + 84029, + 84035, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 84036, + 84036, + null + ], + [ + "delim-token", + "-", + 84037, + 84037, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84038, + 84038, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-body-padding-y", + 84039, + 84065, + { + "value": "bs-accordion-body-padding-y" + } + ], + [ + "colon-token", + ":", + 84066, + 84066, + null + ], + [ + "dimension-token", + "1rem", + 84067, + 84070, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 84071, + 84071, + null + ], + [ + "delim-token", + "-", + 84072, + 84072, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84073, + 84073, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-active-color", + 84074, + 84098, + { + "value": "bs-accordion-active-color" + } + ], + [ + "colon-token", + ":", + 84099, + 84099, + null + ], + [ + "hash-token", + "#0c63e4", + 84100, + 84106, + { + "value": "0c63e4", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 84107, + 84107, + null + ], + [ + "delim-token", + "-", + 84108, + 84108, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84109, + 84109, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-active-bg", + 84110, + 84131, + { + "value": "bs-accordion-active-bg" + } + ], + [ + "colon-token", + ":", + 84132, + 84132, + null + ], + [ + "hash-token", + "#e7f1ff", + 84133, + 84139, + { + "value": "e7f1ff", + "type": "id" + } + ], + [ + "}-token", + "}", + 84140, + 84140, + null + ], + [ + "delim-token", + ".", + 84141, + 84141, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 84142, + 84157, + { + "value": "accordion-button" + } + ], + [ + "{-token", + "{", + 84158, + 84158, + null + ], + [ + "ident-token", + "position", + 84159, + 84166, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 84167, + 84167, + null + ], + [ + "ident-token", + "relative", + 84168, + 84175, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 84176, + 84176, + null + ], + [ + "ident-token", + "display", + 84177, + 84183, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 84184, + 84184, + null + ], + [ + "ident-token", + "flex", + 84185, + 84188, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 84189, + 84189, + null + ], + [ + "ident-token", + "align-items", + 84190, + 84200, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 84201, + 84201, + null + ], + [ + "ident-token", + "center", + 84202, + 84207, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 84208, + 84208, + null + ], + [ + "ident-token", + "width", + 84209, + 84213, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 84214, + 84214, + null + ], + [ + "percentage-token", + "100%", + 84215, + 84218, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 84219, + 84219, + null + ], + [ + "ident-token", + "padding", + 84220, + 84226, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 84227, + 84227, + null + ], + [ + "function-token", + "var(", + 84228, + 84231, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84232, + 84232, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84233, + 84233, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-padding-y", + 84234, + 84259, + { + "value": "bs-accordion-btn-padding-y" + } + ], + [ + ")-token", + ")", + 84260, + 84260, + null + ], + [ + "whitespace-token", + " ", + 84261, + 84261, + null + ], + [ + "function-token", + "var(", + 84262, + 84265, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84266, + 84266, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84267, + 84267, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-padding-x", + 84268, + 84293, + { + "value": "bs-accordion-btn-padding-x" + } + ], + [ + ")-token", + ")", + 84294, + 84294, + null + ], + [ + "semicolon-token", + ";", + 84295, + 84295, + null + ], + [ + "ident-token", + "font-size", + 84296, + 84304, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 84305, + 84305, + null + ], + [ + "dimension-token", + "1rem", + 84306, + 84309, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 84310, + 84310, + null + ], + [ + "ident-token", + "color", + 84311, + 84315, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 84316, + 84316, + null + ], + [ + "function-token", + "var(", + 84317, + 84320, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84321, + 84321, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84322, + 84322, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-color", + 84323, + 84344, + { + "value": "bs-accordion-btn-color" + } + ], + [ + ")-token", + ")", + 84345, + 84345, + null + ], + [ + "semicolon-token", + ";", + 84346, + 84346, + null + ], + [ + "ident-token", + "text-align", + 84347, + 84356, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 84357, + 84357, + null + ], + [ + "ident-token", + "left", + 84358, + 84361, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 84362, + 84362, + null + ], + [ + "ident-token", + "background-color", + 84363, + 84378, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 84379, + 84379, + null + ], + [ + "function-token", + "var(", + 84380, + 84383, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84384, + 84384, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84385, + 84385, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-bg", + 84386, + 84404, + { + "value": "bs-accordion-btn-bg" + } + ], + [ + ")-token", + ")", + 84405, + 84405, + null + ], + [ + "semicolon-token", + ";", + 84406, + 84406, + null + ], + [ + "ident-token", + "border", + 84407, + 84412, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 84413, + 84413, + null + ], + [ + "number-token", + "0", + 84414, + 84414, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 84415, + 84415, + null + ], + [ + "ident-token", + "border-radius", + 84416, + 84428, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 84429, + 84429, + null + ], + [ + "number-token", + "0", + 84430, + 84430, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 84431, + 84431, + null + ], + [ + "ident-token", + "overflow-anchor", + 84432, + 84446, + { + "value": "overflow-anchor" + } + ], + [ + "colon-token", + ":", + 84447, + 84447, + null + ], + [ + "ident-token", + "none", + 84448, + 84451, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 84452, + 84452, + null + ], + [ + "ident-token", + "transition", + 84453, + 84462, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 84463, + 84463, + null + ], + [ + "function-token", + "var(", + 84464, + 84467, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84468, + 84468, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84469, + 84469, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-transition", + 84470, + 84492, + { + "value": "bs-accordion-transition" + } + ], + [ + ")-token", + ")", + 84493, + 84493, + null + ], + [ + "}-token", + "}", + 84494, + 84494, + null + ], + [ + "at-keyword-token", + "@media", + 84495, + 84500, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 84501, + 84501, + null + ], + [ + "(-token", + "(", + 84502, + 84502, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 84503, + 84524, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 84525, + 84525, + null + ], + [ + "ident-token", + "reduce", + 84526, + 84531, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 84532, + 84532, + null + ], + [ + "{-token", + "{", + 84533, + 84533, + null + ], + [ + "delim-token", + ".", + 84534, + 84534, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 84535, + 84550, + { + "value": "accordion-button" + } + ], + [ + "{-token", + "{", + 84551, + 84551, + null + ], + [ + "ident-token", + "transition", + 84552, + 84561, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 84562, + 84562, + null + ], + [ + "ident-token", + "none", + 84563, + 84566, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 84567, + 84567, + null + ], + [ + "}-token", + "}", + 84568, + 84568, + null + ], + [ + "delim-token", + ".", + 84569, + 84569, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 84570, + 84585, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 84586, + 84586, + null + ], + [ + "function-token", + "not(", + 84587, + 84590, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 84591, + 84591, + { + "value": "." + } + ], + [ + "ident-token", + "collapsed", + 84592, + 84600, + { + "value": "collapsed" + } + ], + [ + ")-token", + ")", + 84601, + 84601, + null + ], + [ + "{-token", + "{", + 84602, + 84602, + null + ], + [ + "ident-token", + "color", + 84603, + 84607, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 84608, + 84608, + null + ], + [ + "function-token", + "var(", + 84609, + 84612, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84613, + 84613, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84614, + 84614, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-active-color", + 84615, + 84639, + { + "value": "bs-accordion-active-color" + } + ], + [ + ")-token", + ")", + 84640, + 84640, + null + ], + [ + "semicolon-token", + ";", + 84641, + 84641, + null + ], + [ + "ident-token", + "background-color", + 84642, + 84657, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 84658, + 84658, + null + ], + [ + "function-token", + "var(", + 84659, + 84662, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84663, + 84663, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84664, + 84664, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-active-bg", + 84665, + 84686, + { + "value": "bs-accordion-active-bg" + } + ], + [ + ")-token", + ")", + 84687, + 84687, + null + ], + [ + "semicolon-token", + ";", + 84688, + 84688, + null + ], + [ + "ident-token", + "box-shadow", + 84689, + 84698, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 84699, + 84699, + null + ], + [ + "ident-token", + "inset", + 84700, + 84704, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 84705, + 84705, + null + ], + [ + "number-token", + "0", + 84706, + 84706, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 84707, + 84707, + null + ], + [ + "function-token", + "calc(", + 84708, + 84712, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 84713, + 84714, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 84715, + 84715, + null + ], + [ + "delim-token", + "*", + 84716, + 84716, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 84717, + 84717, + null + ], + [ + "function-token", + "var(", + 84718, + 84721, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84722, + 84722, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84723, + 84723, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-width", + 84724, + 84748, + { + "value": "bs-accordion-border-width" + } + ], + [ + ")-token", + ")", + 84749, + 84749, + null + ], + [ + ")-token", + ")", + 84750, + 84750, + null + ], + [ + "whitespace-token", + " ", + 84751, + 84751, + null + ], + [ + "number-token", + "0", + 84752, + 84752, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 84753, + 84753, + null + ], + [ + "function-token", + "var(", + 84754, + 84757, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84758, + 84758, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84759, + 84759, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-color", + 84760, + 84784, + { + "value": "bs-accordion-border-color" + } + ], + [ + ")-token", + ")", + 84785, + 84785, + null + ], + [ + "}-token", + "}", + 84786, + 84786, + null + ], + [ + "delim-token", + ".", + 84787, + 84787, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 84788, + 84803, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 84804, + 84804, + null + ], + [ + "function-token", + "not(", + 84805, + 84808, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 84809, + 84809, + { + "value": "." + } + ], + [ + "ident-token", + "collapsed", + 84810, + 84818, + { + "value": "collapsed" + } + ], + [ + ")-token", + ")", + 84819, + 84819, + null + ], + [ + "colon-token", + ":", + 84820, + 84820, + null + ], + [ + "colon-token", + ":", + 84821, + 84821, + null + ], + [ + "ident-token", + "after", + 84822, + 84826, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 84827, + 84827, + null + ], + [ + "ident-token", + "background-image", + 84828, + 84843, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 84844, + 84844, + null + ], + [ + "function-token", + "var(", + 84845, + 84848, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84849, + 84849, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84850, + 84850, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-active-icon", + 84851, + 84878, + { + "value": "bs-accordion-btn-active-icon" + } + ], + [ + ")-token", + ")", + 84879, + 84879, + null + ], + [ + "semicolon-token", + ";", + 84880, + 84880, + null + ], + [ + "ident-token", + "transform", + 84881, + 84889, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 84890, + 84890, + null + ], + [ + "function-token", + "var(", + 84891, + 84894, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84895, + 84895, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84896, + 84896, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-transform", + 84897, + 84927, + { + "value": "bs-accordion-btn-icon-transform" + } + ], + [ + ")-token", + ")", + 84928, + 84928, + null + ], + [ + "}-token", + "}", + 84929, + 84929, + null + ], + [ + "delim-token", + ".", + 84930, + 84930, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 84931, + 84946, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 84947, + 84947, + null + ], + [ + "colon-token", + ":", + 84948, + 84948, + null + ], + [ + "ident-token", + "after", + 84949, + 84953, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 84954, + 84954, + null + ], + [ + "ident-token", + "flex-shrink", + 84955, + 84965, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 84966, + 84966, + null + ], + [ + "number-token", + "0", + 84967, + 84967, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 84968, + 84968, + null + ], + [ + "ident-token", + "width", + 84969, + 84973, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 84974, + 84974, + null + ], + [ + "function-token", + "var(", + 84975, + 84978, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 84979, + 84979, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 84980, + 84980, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-width", + 84981, + 85007, + { + "value": "bs-accordion-btn-icon-width" + } + ], + [ + ")-token", + ")", + 85008, + 85008, + null + ], + [ + "semicolon-token", + ";", + 85009, + 85009, + null + ], + [ + "ident-token", + "height", + 85010, + 85015, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 85016, + 85016, + null + ], + [ + "function-token", + "var(", + 85017, + 85020, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85021, + 85021, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85022, + 85022, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-width", + 85023, + 85049, + { + "value": "bs-accordion-btn-icon-width" + } + ], + [ + ")-token", + ")", + 85050, + 85050, + null + ], + [ + "semicolon-token", + ";", + 85051, + 85051, + null + ], + [ + "ident-token", + "margin-left", + 85052, + 85062, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 85063, + 85063, + null + ], + [ + "ident-token", + "auto", + 85064, + 85067, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 85068, + 85068, + null + ], + [ + "ident-token", + "content", + 85069, + 85075, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 85076, + 85076, + null + ], + [ + "string-token", + "\"\"", + 85077, + 85078, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 85079, + 85079, + null + ], + [ + "ident-token", + "background-image", + 85080, + 85095, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 85096, + 85096, + null + ], + [ + "function-token", + "var(", + 85097, + 85100, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85101, + 85101, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85102, + 85102, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon", + 85103, + 85123, + { + "value": "bs-accordion-btn-icon" + } + ], + [ + ")-token", + ")", + 85124, + 85124, + null + ], + [ + "semicolon-token", + ";", + 85125, + 85125, + null + ], + [ + "ident-token", + "background-repeat", + 85126, + 85142, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 85143, + 85143, + null + ], + [ + "ident-token", + "no-repeat", + 85144, + 85152, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 85153, + 85153, + null + ], + [ + "ident-token", + "background-size", + 85154, + 85168, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 85169, + 85169, + null + ], + [ + "function-token", + "var(", + 85170, + 85173, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85174, + 85174, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85175, + 85175, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-width", + 85176, + 85202, + { + "value": "bs-accordion-btn-icon-width" + } + ], + [ + ")-token", + ")", + 85203, + 85203, + null + ], + [ + "semicolon-token", + ";", + 85204, + 85204, + null + ], + [ + "ident-token", + "transition", + 85205, + 85214, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 85215, + 85215, + null + ], + [ + "function-token", + "var(", + 85216, + 85219, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85220, + 85220, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85221, + 85221, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-icon-transition", + 85222, + 85253, + { + "value": "bs-accordion-btn-icon-transition" + } + ], + [ + ")-token", + ")", + 85254, + 85254, + null + ], + [ + "}-token", + "}", + 85255, + 85255, + null + ], + [ + "at-keyword-token", + "@media", + 85256, + 85261, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 85262, + 85262, + null + ], + [ + "(-token", + "(", + 85263, + 85263, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 85264, + 85285, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 85286, + 85286, + null + ], + [ + "ident-token", + "reduce", + 85287, + 85292, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 85293, + 85293, + null + ], + [ + "{-token", + "{", + 85294, + 85294, + null + ], + [ + "delim-token", + ".", + 85295, + 85295, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 85296, + 85311, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 85312, + 85312, + null + ], + [ + "colon-token", + ":", + 85313, + 85313, + null + ], + [ + "ident-token", + "after", + 85314, + 85318, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 85319, + 85319, + null + ], + [ + "ident-token", + "transition", + 85320, + 85329, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 85330, + 85330, + null + ], + [ + "ident-token", + "none", + 85331, + 85334, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 85335, + 85335, + null + ], + [ + "}-token", + "}", + 85336, + 85336, + null + ], + [ + "delim-token", + ".", + 85337, + 85337, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 85338, + 85353, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 85354, + 85354, + null + ], + [ + "ident-token", + "hover", + 85355, + 85359, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 85360, + 85360, + null + ], + [ + "ident-token", + "z-index", + 85361, + 85367, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 85368, + 85368, + null + ], + [ + "number-token", + "2", + 85369, + 85369, + { + "value": 2, + "type": "integer" + } + ], + [ + "}-token", + "}", + 85370, + 85370, + null + ], + [ + "delim-token", + ".", + 85371, + 85371, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 85372, + 85387, + { + "value": "accordion-button" + } + ], + [ + "colon-token", + ":", + 85388, + 85388, + null + ], + [ + "ident-token", + "focus", + 85389, + 85393, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 85394, + 85394, + null + ], + [ + "ident-token", + "z-index", + 85395, + 85401, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 85402, + 85402, + null + ], + [ + "number-token", + "3", + 85403, + 85403, + { + "value": 3, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 85404, + 85404, + null + ], + [ + "ident-token", + "border-color", + 85405, + 85416, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 85417, + 85417, + null + ], + [ + "function-token", + "var(", + 85418, + 85421, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85422, + 85422, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85423, + 85423, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-focus-border-color", + 85424, + 85458, + { + "value": "bs-accordion-btn-focus-border-color" + } + ], + [ + ")-token", + ")", + 85459, + 85459, + null + ], + [ + "semicolon-token", + ";", + 85460, + 85460, + null + ], + [ + "ident-token", + "outline", + 85461, + 85467, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 85468, + 85468, + null + ], + [ + "number-token", + "0", + 85469, + 85469, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 85470, + 85470, + null + ], + [ + "ident-token", + "box-shadow", + 85471, + 85480, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 85481, + 85481, + null + ], + [ + "function-token", + "var(", + 85482, + 85485, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85486, + 85486, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85487, + 85487, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-btn-focus-box-shadow", + 85488, + 85520, + { + "value": "bs-accordion-btn-focus-box-shadow" + } + ], + [ + ")-token", + ")", + 85521, + 85521, + null + ], + [ + "}-token", + "}", + 85522, + 85522, + null + ], + [ + "delim-token", + ".", + 85523, + 85523, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-header", + 85524, + 85539, + { + "value": "accordion-header" + } + ], + [ + "{-token", + "{", + 85540, + 85540, + null + ], + [ + "ident-token", + "margin-bottom", + 85541, + 85553, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 85554, + 85554, + null + ], + [ + "number-token", + "0", + 85555, + 85555, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 85556, + 85556, + null + ], + [ + "delim-token", + ".", + 85557, + 85557, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 85558, + 85571, + { + "value": "accordion-item" + } + ], + [ + "{-token", + "{", + 85572, + 85572, + null + ], + [ + "ident-token", + "color", + 85573, + 85577, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 85578, + 85578, + null + ], + [ + "function-token", + "var(", + 85579, + 85582, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85583, + 85583, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85584, + 85584, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-color", + 85585, + 85602, + { + "value": "bs-accordion-color" + } + ], + [ + ")-token", + ")", + 85603, + 85603, + null + ], + [ + "semicolon-token", + ";", + 85604, + 85604, + null + ], + [ + "ident-token", + "background-color", + 85605, + 85620, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 85621, + 85621, + null + ], + [ + "function-token", + "var(", + 85622, + 85625, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85626, + 85626, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85627, + 85627, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-bg", + 85628, + 85642, + { + "value": "bs-accordion-bg" + } + ], + [ + ")-token", + ")", + 85643, + 85643, + null + ], + [ + "semicolon-token", + ";", + 85644, + 85644, + null + ], + [ + "ident-token", + "border", + 85645, + 85650, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 85651, + 85651, + null + ], + [ + "function-token", + "var(", + 85652, + 85655, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85656, + 85656, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85657, + 85657, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-width", + 85658, + 85682, + { + "value": "bs-accordion-border-width" + } + ], + [ + ")-token", + ")", + 85683, + 85683, + null + ], + [ + "whitespace-token", + " ", + 85684, + 85684, + null + ], + [ + "ident-token", + "solid", + 85685, + 85689, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 85690, + 85690, + null + ], + [ + "function-token", + "var(", + 85691, + 85694, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85695, + 85695, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85696, + 85696, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-color", + 85697, + 85721, + { + "value": "bs-accordion-border-color" + } + ], + [ + ")-token", + ")", + 85722, + 85722, + null + ], + [ + "}-token", + "}", + 85723, + 85723, + null + ], + [ + "delim-token", + ".", + 85724, + 85724, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 85725, + 85738, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 85739, + 85739, + null + ], + [ + "ident-token", + "first-of-type", + 85740, + 85752, + { + "value": "first-of-type" + } + ], + [ + "{-token", + "{", + 85753, + 85753, + null + ], + [ + "ident-token", + "border-top-left-radius", + 85754, + 85775, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 85776, + 85776, + null + ], + [ + "function-token", + "var(", + 85777, + 85780, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85781, + 85781, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85782, + 85782, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 85783, + 85808, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 85809, + 85809, + null + ], + [ + "semicolon-token", + ";", + 85810, + 85810, + null + ], + [ + "ident-token", + "border-top-right-radius", + 85811, + 85833, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 85834, + 85834, + null + ], + [ + "function-token", + "var(", + 85835, + 85838, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85839, + 85839, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85840, + 85840, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 85841, + 85866, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 85867, + 85867, + null + ], + [ + "}-token", + "}", + 85868, + 85868, + null + ], + [ + "delim-token", + ".", + 85869, + 85869, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 85870, + 85883, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 85884, + 85884, + null + ], + [ + "ident-token", + "first-of-type", + 85885, + 85897, + { + "value": "first-of-type" + } + ], + [ + "whitespace-token", + " ", + 85898, + 85898, + null + ], + [ + "delim-token", + ".", + 85899, + 85899, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 85900, + 85915, + { + "value": "accordion-button" + } + ], + [ + "{-token", + "{", + 85916, + 85916, + null + ], + [ + "ident-token", + "border-top-left-radius", + 85917, + 85938, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 85939, + 85939, + null + ], + [ + "function-token", + "var(", + 85940, + 85943, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 85944, + 85944, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 85945, + 85945, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-inner-border-radius", + 85946, + 85977, + { + "value": "bs-accordion-inner-border-radius" + } + ], + [ + ")-token", + ")", + 85978, + 85978, + null + ], + [ + "semicolon-token", + ";", + 85979, + 85979, + null + ], + [ + "ident-token", + "border-top-right-radius", + 85980, + 86002, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 86003, + 86003, + null + ], + [ + "function-token", + "var(", + 86004, + 86007, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86008, + 86008, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86009, + 86009, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-inner-border-radius", + 86010, + 86041, + { + "value": "bs-accordion-inner-border-radius" + } + ], + [ + ")-token", + ")", + 86042, + 86042, + null + ], + [ + "}-token", + "}", + 86043, + 86043, + null + ], + [ + "delim-token", + ".", + 86044, + 86044, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86045, + 86058, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86059, + 86059, + null + ], + [ + "function-token", + "not(", + 86060, + 86063, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 86064, + 86064, + null + ], + [ + "ident-token", + "first-of-type", + 86065, + 86077, + { + "value": "first-of-type" + } + ], + [ + ")-token", + ")", + 86078, + 86078, + null + ], + [ + "{-token", + "{", + 86079, + 86079, + null + ], + [ + "ident-token", + "border-top", + 86080, + 86089, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 86090, + 86090, + null + ], + [ + "number-token", + "0", + 86091, + 86091, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 86092, + 86092, + null + ], + [ + "delim-token", + ".", + 86093, + 86093, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86094, + 86107, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86108, + 86108, + null + ], + [ + "ident-token", + "last-of-type", + 86109, + 86120, + { + "value": "last-of-type" + } + ], + [ + "{-token", + "{", + 86121, + 86121, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 86122, + 86147, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 86148, + 86148, + null + ], + [ + "function-token", + "var(", + 86149, + 86152, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86153, + 86153, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86154, + 86154, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 86155, + 86180, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 86181, + 86181, + null + ], + [ + "semicolon-token", + ";", + 86182, + 86182, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 86183, + 86207, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 86208, + 86208, + null + ], + [ + "function-token", + "var(", + 86209, + 86212, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86213, + 86213, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86214, + 86214, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 86215, + 86240, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 86241, + 86241, + null + ], + [ + "}-token", + "}", + 86242, + 86242, + null + ], + [ + "delim-token", + ".", + 86243, + 86243, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86244, + 86257, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86258, + 86258, + null + ], + [ + "ident-token", + "last-of-type", + 86259, + 86270, + { + "value": "last-of-type" + } + ], + [ + "whitespace-token", + " ", + 86271, + 86271, + null + ], + [ + "delim-token", + ".", + 86272, + 86272, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 86273, + 86288, + { + "value": "accordion-button" + } + ], + [ + "delim-token", + ".", + 86289, + 86289, + { + "value": "." + } + ], + [ + "ident-token", + "collapsed", + 86290, + 86298, + { + "value": "collapsed" + } + ], + [ + "{-token", + "{", + 86299, + 86299, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 86300, + 86325, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 86326, + 86326, + null + ], + [ + "function-token", + "var(", + 86327, + 86330, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86331, + 86331, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86332, + 86332, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-inner-border-radius", + 86333, + 86364, + { + "value": "bs-accordion-inner-border-radius" + } + ], + [ + ")-token", + ")", + 86365, + 86365, + null + ], + [ + "semicolon-token", + ";", + 86366, + 86366, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 86367, + 86391, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 86392, + 86392, + null + ], + [ + "function-token", + "var(", + 86393, + 86396, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86397, + 86397, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86398, + 86398, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-inner-border-radius", + 86399, + 86430, + { + "value": "bs-accordion-inner-border-radius" + } + ], + [ + ")-token", + ")", + 86431, + 86431, + null + ], + [ + "}-token", + "}", + 86432, + 86432, + null + ], + [ + "delim-token", + ".", + 86433, + 86433, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86434, + 86447, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86448, + 86448, + null + ], + [ + "ident-token", + "last-of-type", + 86449, + 86460, + { + "value": "last-of-type" + } + ], + [ + "whitespace-token", + " ", + 86461, + 86461, + null + ], + [ + "delim-token", + ".", + 86462, + 86462, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-collapse", + 86463, + 86480, + { + "value": "accordion-collapse" + } + ], + [ + "{-token", + "{", + 86481, + 86481, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 86482, + 86507, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 86508, + 86508, + null + ], + [ + "function-token", + "var(", + 86509, + 86512, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86513, + 86513, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86514, + 86514, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 86515, + 86540, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 86541, + 86541, + null + ], + [ + "semicolon-token", + ";", + 86542, + 86542, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 86543, + 86567, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 86568, + 86568, + null + ], + [ + "function-token", + "var(", + 86569, + 86572, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86573, + 86573, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86574, + 86574, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-border-radius", + 86575, + 86600, + { + "value": "bs-accordion-border-radius" + } + ], + [ + ")-token", + ")", + 86601, + 86601, + null + ], + [ + "}-token", + "}", + 86602, + 86602, + null + ], + [ + "delim-token", + ".", + 86603, + 86603, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-body", + 86604, + 86617, + { + "value": "accordion-body" + } + ], + [ + "{-token", + "{", + 86618, + 86618, + null + ], + [ + "ident-token", + "padding", + 86619, + 86625, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 86626, + 86626, + null + ], + [ + "function-token", + "var(", + 86627, + 86630, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86631, + 86631, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86632, + 86632, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-body-padding-y", + 86633, + 86659, + { + "value": "bs-accordion-body-padding-y" + } + ], + [ + ")-token", + ")", + 86660, + 86660, + null + ], + [ + "whitespace-token", + " ", + 86661, + 86661, + null + ], + [ + "function-token", + "var(", + 86662, + 86665, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 86666, + 86666, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 86667, + 86667, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-accordion-body-padding-x", + 86668, + 86694, + { + "value": "bs-accordion-body-padding-x" + } + ], + [ + ")-token", + ")", + 86695, + 86695, + null + ], + [ + "}-token", + "}", + 86696, + 86696, + null + ], + [ + "delim-token", + ".", + 86697, + 86697, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86698, + 86712, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 86713, + 86713, + null + ], + [ + "delim-token", + ".", + 86714, + 86714, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-collapse", + 86715, + 86732, + { + "value": "accordion-collapse" + } + ], + [ + "{-token", + "{", + 86733, + 86733, + null + ], + [ + "ident-token", + "border-width", + 86734, + 86745, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 86746, + 86746, + null + ], + [ + "number-token", + "0", + 86747, + 86747, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 86748, + 86748, + null + ], + [ + "delim-token", + ".", + 86749, + 86749, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86750, + 86764, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 86765, + 86765, + null + ], + [ + "delim-token", + ".", + 86766, + 86766, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86767, + 86780, + { + "value": "accordion-item" + } + ], + [ + "{-token", + "{", + 86781, + 86781, + null + ], + [ + "ident-token", + "border-right", + 86782, + 86793, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 86794, + 86794, + null + ], + [ + "number-token", + "0", + 86795, + 86795, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 86796, + 86796, + null + ], + [ + "ident-token", + "border-left", + 86797, + 86807, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 86808, + 86808, + null + ], + [ + "number-token", + "0", + 86809, + 86809, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 86810, + 86810, + null + ], + [ + "ident-token", + "border-radius", + 86811, + 86823, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 86824, + 86824, + null + ], + [ + "number-token", + "0", + 86825, + 86825, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 86826, + 86826, + null + ], + [ + "delim-token", + ".", + 86827, + 86827, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86828, + 86842, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 86843, + 86843, + null + ], + [ + "delim-token", + ".", + 86844, + 86844, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86845, + 86858, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86859, + 86859, + null + ], + [ + "ident-token", + "first-child", + 86860, + 86870, + { + "value": "first-child" + } + ], + [ + "{-token", + "{", + 86871, + 86871, + null + ], + [ + "ident-token", + "border-top", + 86872, + 86881, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 86882, + 86882, + null + ], + [ + "number-token", + "0", + 86883, + 86883, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 86884, + 86884, + null + ], + [ + "delim-token", + ".", + 86885, + 86885, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86886, + 86900, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 86901, + 86901, + null + ], + [ + "delim-token", + ".", + 86902, + 86902, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86903, + 86916, + { + "value": "accordion-item" + } + ], + [ + "colon-token", + ":", + 86917, + 86917, + null + ], + [ + "ident-token", + "last-child", + 86918, + 86927, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 86928, + 86928, + null + ], + [ + "ident-token", + "border-bottom", + 86929, + 86941, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 86942, + 86942, + null + ], + [ + "number-token", + "0", + 86943, + 86943, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 86944, + 86944, + null + ], + [ + "delim-token", + ".", + 86945, + 86945, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86946, + 86960, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 86961, + 86961, + null + ], + [ + "delim-token", + ".", + 86962, + 86962, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 86963, + 86976, + { + "value": "accordion-item" + } + ], + [ + "whitespace-token", + " ", + 86977, + 86977, + null + ], + [ + "delim-token", + ".", + 86978, + 86978, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 86979, + 86994, + { + "value": "accordion-button" + } + ], + [ + "comma-token", + ",", + 86995, + 86995, + null + ], + [ + "delim-token", + ".", + 86996, + 86996, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-flush", + 86997, + 87011, + { + "value": "accordion-flush" + } + ], + [ + "whitespace-token", + " ", + 87012, + 87012, + null + ], + [ + "delim-token", + ".", + 87013, + 87013, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-item", + 87014, + 87027, + { + "value": "accordion-item" + } + ], + [ + "whitespace-token", + " ", + 87028, + 87028, + null + ], + [ + "delim-token", + ".", + 87029, + 87029, + { + "value": "." + } + ], + [ + "ident-token", + "accordion-button", + 87030, + 87045, + { + "value": "accordion-button" + } + ], + [ + "delim-token", + ".", + 87046, + 87046, + { + "value": "." + } + ], + [ + "ident-token", + "collapsed", + 87047, + 87055, + { + "value": "collapsed" + } + ], + [ + "{-token", + "{", + 87056, + 87056, + null + ], + [ + "ident-token", + "border-radius", + 87057, + 87069, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 87070, + 87070, + null + ], + [ + "number-token", + "0", + 87071, + 87071, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 87072, + 87072, + null + ], + [ + "delim-token", + ".", + 87073, + 87073, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb", + 87074, + 87083, + { + "value": "breadcrumb" + } + ], + [ + "{-token", + "{", + 87084, + 87084, + null + ], + [ + "delim-token", + "-", + 87085, + 87085, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87086, + 87086, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-padding-x", + 87087, + 87109, + { + "value": "bs-breadcrumb-padding-x" + } + ], + [ + "colon-token", + ":", + 87110, + 87110, + null + ], + [ + "number-token", + "0", + 87111, + 87111, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 87112, + 87112, + null + ], + [ + "delim-token", + "-", + 87113, + 87113, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87114, + 87114, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-padding-y", + 87115, + 87137, + { + "value": "bs-breadcrumb-padding-y" + } + ], + [ + "colon-token", + ":", + 87138, + 87138, + null + ], + [ + "number-token", + "0", + 87139, + 87139, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 87140, + 87140, + null + ], + [ + "delim-token", + "-", + 87141, + 87141, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87142, + 87142, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-margin-bottom", + 87143, + 87169, + { + "value": "bs-breadcrumb-margin-bottom" + } + ], + [ + "colon-token", + ":", + 87170, + 87170, + null + ], + [ + "dimension-token", + "1rem", + 87171, + 87174, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 87175, + 87175, + null + ], + [ + "delim-token", + "-", + 87176, + 87176, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87177, + 87177, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-bg", + 87178, + 87193, + { + "value": "bs-breadcrumb-bg" + } + ], + [ + "colon-token", + ":", + 87194, + 87194, + null + ], + [ + "whitespace-token", + " ", + 87195, + 87195, + null + ], + [ + "semicolon-token", + ";", + 87196, + 87196, + null + ], + [ + "delim-token", + "-", + 87197, + 87197, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87198, + 87198, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-border-radius", + 87199, + 87225, + { + "value": "bs-breadcrumb-border-radius" + } + ], + [ + "colon-token", + ":", + 87226, + 87226, + null + ], + [ + "whitespace-token", + " ", + 87227, + 87227, + null + ], + [ + "semicolon-token", + ";", + 87228, + 87228, + null + ], + [ + "delim-token", + "-", + 87229, + 87229, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87230, + 87230, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-divider-color", + 87231, + 87257, + { + "value": "bs-breadcrumb-divider-color" + } + ], + [ + "colon-token", + ":", + 87258, + 87258, + null + ], + [ + "hash-token", + "#6c757d", + 87259, + 87265, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 87266, + 87266, + null + ], + [ + "delim-token", + "-", + 87267, + 87267, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87268, + 87268, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-item-padding-x", + 87269, + 87296, + { + "value": "bs-breadcrumb-item-padding-x" + } + ], + [ + "colon-token", + ":", + 87297, + 87297, + null + ], + [ + "dimension-token", + "0.5rem", + 87298, + 87303, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 87304, + 87304, + null + ], + [ + "delim-token", + "-", + 87305, + 87305, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87306, + 87306, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-item-active-color", + 87307, + 87337, + { + "value": "bs-breadcrumb-item-active-color" + } + ], + [ + "colon-token", + ":", + 87338, + 87338, + null + ], + [ + "hash-token", + "#6c757d", + 87339, + 87345, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 87346, + 87346, + null + ], + [ + "ident-token", + "display", + 87347, + 87353, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 87354, + 87354, + null + ], + [ + "ident-token", + "flex", + 87355, + 87358, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 87359, + 87359, + null + ], + [ + "ident-token", + "flex-wrap", + 87360, + 87368, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 87369, + 87369, + null + ], + [ + "ident-token", + "wrap", + 87370, + 87373, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 87374, + 87374, + null + ], + [ + "ident-token", + "padding", + 87375, + 87381, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 87382, + 87382, + null + ], + [ + "function-token", + "var(", + 87383, + 87386, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87387, + 87387, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87388, + 87388, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-padding-y", + 87389, + 87411, + { + "value": "bs-breadcrumb-padding-y" + } + ], + [ + ")-token", + ")", + 87412, + 87412, + null + ], + [ + "whitespace-token", + " ", + 87413, + 87413, + null + ], + [ + "function-token", + "var(", + 87414, + 87417, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87418, + 87418, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87419, + 87419, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-padding-x", + 87420, + 87442, + { + "value": "bs-breadcrumb-padding-x" + } + ], + [ + ")-token", + ")", + 87443, + 87443, + null + ], + [ + "semicolon-token", + ";", + 87444, + 87444, + null + ], + [ + "ident-token", + "margin-bottom", + 87445, + 87457, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 87458, + 87458, + null + ], + [ + "function-token", + "var(", + 87459, + 87462, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87463, + 87463, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87464, + 87464, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-margin-bottom", + 87465, + 87491, + { + "value": "bs-breadcrumb-margin-bottom" + } + ], + [ + ")-token", + ")", + 87492, + 87492, + null + ], + [ + "semicolon-token", + ";", + 87493, + 87493, + null + ], + [ + "ident-token", + "font-size", + 87494, + 87502, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 87503, + 87503, + null + ], + [ + "function-token", + "var(", + 87504, + 87507, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87508, + 87508, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87509, + 87509, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-font-size", + 87510, + 87532, + { + "value": "bs-breadcrumb-font-size" + } + ], + [ + ")-token", + ")", + 87533, + 87533, + null + ], + [ + "semicolon-token", + ";", + 87534, + 87534, + null + ], + [ + "ident-token", + "list-style", + 87535, + 87544, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 87545, + 87545, + null + ], + [ + "ident-token", + "none", + 87546, + 87549, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 87550, + 87550, + null + ], + [ + "ident-token", + "background-color", + 87551, + 87566, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 87567, + 87567, + null + ], + [ + "function-token", + "var(", + 87568, + 87571, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87572, + 87572, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87573, + 87573, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-bg", + 87574, + 87589, + { + "value": "bs-breadcrumb-bg" + } + ], + [ + ")-token", + ")", + 87590, + 87590, + null + ], + [ + "semicolon-token", + ";", + 87591, + 87591, + null + ], + [ + "ident-token", + "border-radius", + 87592, + 87604, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 87605, + 87605, + null + ], + [ + "function-token", + "var(", + 87606, + 87609, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87610, + 87610, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87611, + 87611, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-border-radius", + 87612, + 87638, + { + "value": "bs-breadcrumb-border-radius" + } + ], + [ + ")-token", + ")", + 87639, + 87639, + null + ], + [ + "}-token", + "}", + 87640, + 87640, + null + ], + [ + "delim-token", + ".", + 87641, + 87641, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb-item", + 87642, + 87656, + { + "value": "breadcrumb-item" + } + ], + [ + "delim-token", + "+", + 87657, + 87657, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 87658, + 87658, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb-item", + 87659, + 87673, + { + "value": "breadcrumb-item" + } + ], + [ + "{-token", + "{", + 87674, + 87674, + null + ], + [ + "ident-token", + "padding-left", + 87675, + 87686, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 87687, + 87687, + null + ], + [ + "function-token", + "var(", + 87688, + 87691, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87692, + 87692, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87693, + 87693, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-item-padding-x", + 87694, + 87721, + { + "value": "bs-breadcrumb-item-padding-x" + } + ], + [ + ")-token", + ")", + 87722, + 87722, + null + ], + [ + "}-token", + "}", + 87723, + 87723, + null + ], + [ + "delim-token", + ".", + 87724, + 87724, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb-item", + 87725, + 87739, + { + "value": "breadcrumb-item" + } + ], + [ + "delim-token", + "+", + 87740, + 87740, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 87741, + 87741, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb-item", + 87742, + 87756, + { + "value": "breadcrumb-item" + } + ], + [ + "colon-token", + ":", + 87757, + 87757, + null + ], + [ + "colon-token", + ":", + 87758, + 87758, + null + ], + [ + "ident-token", + "before", + 87759, + 87764, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 87765, + 87765, + null + ], + [ + "ident-token", + "float", + 87766, + 87770, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 87771, + 87771, + null + ], + [ + "ident-token", + "left", + 87772, + 87775, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 87776, + 87776, + null + ], + [ + "ident-token", + "padding-right", + 87777, + 87789, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 87790, + 87790, + null + ], + [ + "function-token", + "var(", + 87791, + 87794, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87795, + 87795, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87796, + 87796, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-item-padding-x", + 87797, + 87824, + { + "value": "bs-breadcrumb-item-padding-x" + } + ], + [ + ")-token", + ")", + 87825, + 87825, + null + ], + [ + "semicolon-token", + ";", + 87826, + 87826, + null + ], + [ + "ident-token", + "color", + 87827, + 87831, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 87832, + 87832, + null + ], + [ + "function-token", + "var(", + 87833, + 87836, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87837, + 87837, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87838, + 87838, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-divider-color", + 87839, + 87865, + { + "value": "bs-breadcrumb-divider-color" + } + ], + [ + ")-token", + ")", + 87866, + 87866, + null + ], + [ + "semicolon-token", + ";", + 87867, + 87867, + null + ], + [ + "ident-token", + "content", + 87868, + 87874, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 87875, + 87875, + null + ], + [ + "function-token", + "var(", + 87876, + 87879, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87880, + 87880, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87881, + 87881, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-divider", + 87882, + 87902, + { + "value": "bs-breadcrumb-divider" + } + ], + [ + "comma-token", + ",", + 87903, + 87903, + null + ], + [ + "whitespace-token", + " ", + 87904, + 87904, + null + ], + [ + "string-token", + "\"/\"", + 87905, + 87907, + { + "value": "/" + } + ], + [ + ")-token", + ")", + 87908, + 87908, + null + ], + [ + "}-token", + "}", + 87909, + 87909, + null + ], + [ + "delim-token", + ".", + 87910, + 87910, + { + "value": "." + } + ], + [ + "ident-token", + "breadcrumb-item", + 87911, + 87925, + { + "value": "breadcrumb-item" + } + ], + [ + "delim-token", + ".", + 87926, + 87926, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 87927, + 87932, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 87933, + 87933, + null + ], + [ + "ident-token", + "color", + 87934, + 87938, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 87939, + 87939, + null + ], + [ + "function-token", + "var(", + 87940, + 87943, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 87944, + 87944, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87945, + 87945, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-breadcrumb-item-active-color", + 87946, + 87976, + { + "value": "bs-breadcrumb-item-active-color" + } + ], + [ + ")-token", + ")", + 87977, + 87977, + null + ], + [ + "}-token", + "}", + 87978, + 87978, + null + ], + [ + "delim-token", + ".", + 87979, + 87979, + { + "value": "." + } + ], + [ + "ident-token", + "pagination", + 87980, + 87989, + { + "value": "pagination" + } + ], + [ + "{-token", + "{", + 87990, + 87990, + null + ], + [ + "delim-token", + "-", + 87991, + 87991, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 87992, + 87992, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-x", + 87993, + 88015, + { + "value": "bs-pagination-padding-x" + } + ], + [ + "colon-token", + ":", + 88016, + 88016, + null + ], + [ + "dimension-token", + "0.75rem", + 88017, + 88023, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 88024, + 88024, + null + ], + [ + "delim-token", + "-", + 88025, + 88025, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88026, + 88026, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-y", + 88027, + 88049, + { + "value": "bs-pagination-padding-y" + } + ], + [ + "colon-token", + ":", + 88050, + 88050, + null + ], + [ + "dimension-token", + "0.375rem", + 88051, + 88058, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 88059, + 88059, + null + ], + [ + "delim-token", + "-", + 88060, + 88060, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88061, + 88061, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-font-size", + 88062, + 88084, + { + "value": "bs-pagination-font-size" + } + ], + [ + "colon-token", + ":", + 88085, + 88085, + null + ], + [ + "dimension-token", + "1rem", + 88086, + 88089, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 88090, + 88090, + null + ], + [ + "delim-token", + "-", + 88091, + 88091, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88092, + 88092, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-color", + 88093, + 88111, + { + "value": "bs-pagination-color" + } + ], + [ + "colon-token", + ":", + 88112, + 88112, + null + ], + [ + "function-token", + "var(", + 88113, + 88116, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88117, + 88117, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88118, + 88118, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-color", + 88119, + 88131, + { + "value": "bs-link-color" + } + ], + [ + ")-token", + ")", + 88132, + 88132, + null + ], + [ + "semicolon-token", + ";", + 88133, + 88133, + null + ], + [ + "delim-token", + "-", + 88134, + 88134, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88135, + 88135, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-bg", + 88136, + 88151, + { + "value": "bs-pagination-bg" + } + ], + [ + "colon-token", + ":", + 88152, + 88152, + null + ], + [ + "hash-token", + "#fff", + 88153, + 88156, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88157, + 88157, + null + ], + [ + "delim-token", + "-", + 88158, + 88158, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88159, + 88159, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-width", + 88160, + 88185, + { + "value": "bs-pagination-border-width" + } + ], + [ + "colon-token", + ":", + 88186, + 88186, + null + ], + [ + "dimension-token", + "1px", + 88187, + 88189, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 88190, + 88190, + null + ], + [ + "delim-token", + "-", + 88191, + 88191, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88192, + 88192, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-color", + 88193, + 88218, + { + "value": "bs-pagination-border-color" + } + ], + [ + "colon-token", + ":", + 88219, + 88219, + null + ], + [ + "hash-token", + "#dee2e6", + 88220, + 88226, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88227, + 88227, + null + ], + [ + "delim-token", + "-", + 88228, + 88228, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88229, + 88229, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 88230, + 88256, + { + "value": "bs-pagination-border-radius" + } + ], + [ + "colon-token", + ":", + 88257, + 88257, + null + ], + [ + "dimension-token", + "0.375rem", + 88258, + 88265, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 88266, + 88266, + null + ], + [ + "delim-token", + "-", + 88267, + 88267, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88268, + 88268, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-color", + 88269, + 88293, + { + "value": "bs-pagination-hover-color" + } + ], + [ + "colon-token", + ":", + 88294, + 88294, + null + ], + [ + "function-token", + "var(", + 88295, + 88298, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88299, + 88299, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88300, + 88300, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 88301, + 88319, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 88320, + 88320, + null + ], + [ + "semicolon-token", + ";", + 88321, + 88321, + null + ], + [ + "delim-token", + "-", + 88322, + 88322, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88323, + 88323, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-bg", + 88324, + 88345, + { + "value": "bs-pagination-hover-bg" + } + ], + [ + "colon-token", + ":", + 88346, + 88346, + null + ], + [ + "hash-token", + "#e9ecef", + 88347, + 88353, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88354, + 88354, + null + ], + [ + "delim-token", + "-", + 88355, + 88355, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88356, + 88356, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-border-color", + 88357, + 88388, + { + "value": "bs-pagination-hover-border-color" + } + ], + [ + "colon-token", + ":", + 88389, + 88389, + null + ], + [ + "hash-token", + "#dee2e6", + 88390, + 88396, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88397, + 88397, + null + ], + [ + "delim-token", + "-", + 88398, + 88398, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88399, + 88399, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-color", + 88400, + 88424, + { + "value": "bs-pagination-focus-color" + } + ], + [ + "colon-token", + ":", + 88425, + 88425, + null + ], + [ + "function-token", + "var(", + 88426, + 88429, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88430, + 88430, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88431, + 88431, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-link-hover-color", + 88432, + 88450, + { + "value": "bs-link-hover-color" + } + ], + [ + ")-token", + ")", + 88451, + 88451, + null + ], + [ + "semicolon-token", + ";", + 88452, + 88452, + null + ], + [ + "delim-token", + "-", + 88453, + 88453, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88454, + 88454, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-bg", + 88455, + 88476, + { + "value": "bs-pagination-focus-bg" + } + ], + [ + "colon-token", + ":", + 88477, + 88477, + null + ], + [ + "hash-token", + "#e9ecef", + 88478, + 88484, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88485, + 88485, + null + ], + [ + "delim-token", + "-", + 88486, + 88486, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88487, + 88487, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-box-shadow", + 88488, + 88517, + { + "value": "bs-pagination-focus-box-shadow" + } + ], + [ + "colon-token", + ":", + 88518, + 88518, + null + ], + [ + "number-token", + "0", + 88519, + 88519, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 88520, + 88520, + null + ], + [ + "number-token", + "0", + 88521, + 88521, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 88522, + 88522, + null + ], + [ + "number-token", + "0", + 88523, + 88523, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 88524, + 88524, + null + ], + [ + "dimension-token", + "0.25rem", + 88525, + 88531, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 88532, + 88532, + null + ], + [ + "function-token", + "rgba(", + 88533, + 88537, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 88538, + 88539, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 88540, + 88540, + null + ], + [ + "whitespace-token", + " ", + 88541, + 88541, + null + ], + [ + "number-token", + "110", + 88542, + 88544, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 88545, + 88545, + null + ], + [ + "whitespace-token", + " ", + 88546, + 88546, + null + ], + [ + "number-token", + "253", + 88547, + 88549, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 88550, + 88550, + null + ], + [ + "whitespace-token", + " ", + 88551, + 88551, + null + ], + [ + "number-token", + "0.25", + 88552, + 88555, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 88556, + 88556, + null + ], + [ + "semicolon-token", + ";", + 88557, + 88557, + null + ], + [ + "delim-token", + "-", + 88558, + 88558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88559, + 88559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-color", + 88560, + 88585, + { + "value": "bs-pagination-active-color" + } + ], + [ + "colon-token", + ":", + 88586, + 88586, + null + ], + [ + "hash-token", + "#fff", + 88587, + 88590, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88591, + 88591, + null + ], + [ + "delim-token", + "-", + 88592, + 88592, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88593, + 88593, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-bg", + 88594, + 88616, + { + "value": "bs-pagination-active-bg" + } + ], + [ + "colon-token", + ":", + 88617, + 88617, + null + ], + [ + "hash-token", + "#0d6efd", + 88618, + 88624, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 88625, + 88625, + null + ], + [ + "delim-token", + "-", + 88626, + 88626, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88627, + 88627, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-border-color", + 88628, + 88660, + { + "value": "bs-pagination-active-border-color" + } + ], + [ + "colon-token", + ":", + 88661, + 88661, + null + ], + [ + "hash-token", + "#0d6efd", + 88662, + 88668, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 88669, + 88669, + null + ], + [ + "delim-token", + "-", + 88670, + 88670, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88671, + 88671, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-color", + 88672, + 88699, + { + "value": "bs-pagination-disabled-color" + } + ], + [ + "colon-token", + ":", + 88700, + 88700, + null + ], + [ + "hash-token", + "#6c757d", + 88701, + 88707, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 88708, + 88708, + null + ], + [ + "delim-token", + "-", + 88709, + 88709, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88710, + 88710, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-bg", + 88711, + 88735, + { + "value": "bs-pagination-disabled-bg" + } + ], + [ + "colon-token", + ":", + 88736, + 88736, + null + ], + [ + "hash-token", + "#fff", + 88737, + 88740, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88741, + 88741, + null + ], + [ + "delim-token", + "-", + 88742, + 88742, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88743, + 88743, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-border-color", + 88744, + 88778, + { + "value": "bs-pagination-disabled-border-color" + } + ], + [ + "colon-token", + ":", + 88779, + 88779, + null + ], + [ + "hash-token", + "#dee2e6", + 88780, + 88786, + { + "value": "dee2e6", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 88787, + 88787, + null + ], + [ + "ident-token", + "display", + 88788, + 88794, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 88795, + 88795, + null + ], + [ + "ident-token", + "flex", + 88796, + 88799, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 88800, + 88800, + null + ], + [ + "ident-token", + "padding-left", + 88801, + 88812, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 88813, + 88813, + null + ], + [ + "number-token", + "0", + 88814, + 88814, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 88815, + 88815, + null + ], + [ + "ident-token", + "list-style", + 88816, + 88825, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 88826, + 88826, + null + ], + [ + "ident-token", + "none", + 88827, + 88830, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 88831, + 88831, + null + ], + [ + "delim-token", + ".", + 88832, + 88832, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 88833, + 88841, + { + "value": "page-link" + } + ], + [ + "{-token", + "{", + 88842, + 88842, + null + ], + [ + "ident-token", + "position", + 88843, + 88850, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 88851, + 88851, + null + ], + [ + "ident-token", + "relative", + 88852, + 88859, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 88860, + 88860, + null + ], + [ + "ident-token", + "display", + 88861, + 88867, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 88868, + 88868, + null + ], + [ + "ident-token", + "block", + 88869, + 88873, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 88874, + 88874, + null + ], + [ + "ident-token", + "padding", + 88875, + 88881, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 88882, + 88882, + null + ], + [ + "function-token", + "var(", + 88883, + 88886, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88887, + 88887, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88888, + 88888, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-y", + 88889, + 88911, + { + "value": "bs-pagination-padding-y" + } + ], + [ + ")-token", + ")", + 88912, + 88912, + null + ], + [ + "whitespace-token", + " ", + 88913, + 88913, + null + ], + [ + "function-token", + "var(", + 88914, + 88917, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88918, + 88918, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88919, + 88919, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-x", + 88920, + 88942, + { + "value": "bs-pagination-padding-x" + } + ], + [ + ")-token", + ")", + 88943, + 88943, + null + ], + [ + "semicolon-token", + ";", + 88944, + 88944, + null + ], + [ + "ident-token", + "font-size", + 88945, + 88953, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 88954, + 88954, + null + ], + [ + "function-token", + "var(", + 88955, + 88958, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88959, + 88959, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88960, + 88960, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-font-size", + 88961, + 88983, + { + "value": "bs-pagination-font-size" + } + ], + [ + ")-token", + ")", + 88984, + 88984, + null + ], + [ + "semicolon-token", + ";", + 88985, + 88985, + null + ], + [ + "ident-token", + "color", + 88986, + 88990, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 88991, + 88991, + null + ], + [ + "function-token", + "var(", + 88992, + 88995, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 88996, + 88996, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 88997, + 88997, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-color", + 88998, + 89016, + { + "value": "bs-pagination-color" + } + ], + [ + ")-token", + ")", + 89017, + 89017, + null + ], + [ + "semicolon-token", + ";", + 89018, + 89018, + null + ], + [ + "ident-token", + "text-decoration", + 89019, + 89033, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 89034, + 89034, + null + ], + [ + "ident-token", + "none", + 89035, + 89038, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 89039, + 89039, + null + ], + [ + "ident-token", + "background-color", + 89040, + 89055, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 89056, + 89056, + null + ], + [ + "function-token", + "var(", + 89057, + 89060, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89061, + 89061, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89062, + 89062, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-bg", + 89063, + 89078, + { + "value": "bs-pagination-bg" + } + ], + [ + ")-token", + ")", + 89079, + 89079, + null + ], + [ + "semicolon-token", + ";", + 89080, + 89080, + null + ], + [ + "ident-token", + "border", + 89081, + 89086, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 89087, + 89087, + null + ], + [ + "function-token", + "var(", + 89088, + 89091, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89092, + 89092, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89093, + 89093, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-width", + 89094, + 89119, + { + "value": "bs-pagination-border-width" + } + ], + [ + ")-token", + ")", + 89120, + 89120, + null + ], + [ + "whitespace-token", + " ", + 89121, + 89121, + null + ], + [ + "ident-token", + "solid", + 89122, + 89126, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 89127, + 89127, + null + ], + [ + "function-token", + "var(", + 89128, + 89131, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89132, + 89132, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89133, + 89133, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-color", + 89134, + 89159, + { + "value": "bs-pagination-border-color" + } + ], + [ + ")-token", + ")", + 89160, + 89160, + null + ], + [ + "semicolon-token", + ";", + 89161, + 89161, + null + ], + [ + "ident-token", + "transition", + 89162, + 89171, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 89172, + 89172, + null + ], + [ + "ident-token", + "color", + 89173, + 89177, + { + "value": "color" + } + ], + [ + "whitespace-token", + " ", + 89178, + 89178, + null + ], + [ + "dimension-token", + ".15s", + 89179, + 89182, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 89183, + 89183, + null + ], + [ + "ident-token", + "ease-in-out", + 89184, + 89194, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 89195, + 89195, + null + ], + [ + "ident-token", + "background-color", + 89196, + 89211, + { + "value": "background-color" + } + ], + [ + "whitespace-token", + " ", + 89212, + 89212, + null + ], + [ + "dimension-token", + ".15s", + 89213, + 89216, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 89217, + 89217, + null + ], + [ + "ident-token", + "ease-in-out", + 89218, + 89228, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 89229, + 89229, + null + ], + [ + "ident-token", + "border-color", + 89230, + 89241, + { + "value": "border-color" + } + ], + [ + "whitespace-token", + " ", + 89242, + 89242, + null + ], + [ + "dimension-token", + ".15s", + 89243, + 89246, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 89247, + 89247, + null + ], + [ + "ident-token", + "ease-in-out", + 89248, + 89258, + { + "value": "ease-in-out" + } + ], + [ + "comma-token", + ",", + 89259, + 89259, + null + ], + [ + "ident-token", + "box-shadow", + 89260, + 89269, + { + "value": "box-shadow" + } + ], + [ + "whitespace-token", + " ", + 89270, + 89270, + null + ], + [ + "dimension-token", + ".15s", + 89271, + 89274, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 89275, + 89275, + null + ], + [ + "ident-token", + "ease-in-out", + 89276, + 89286, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 89287, + 89287, + null + ], + [ + "at-keyword-token", + "@media", + 89288, + 89293, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 89294, + 89294, + null + ], + [ + "(-token", + "(", + 89295, + 89295, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 89296, + 89317, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 89318, + 89318, + null + ], + [ + "ident-token", + "reduce", + 89319, + 89324, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 89325, + 89325, + null + ], + [ + "{-token", + "{", + 89326, + 89326, + null + ], + [ + "delim-token", + ".", + 89327, + 89327, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89328, + 89336, + { + "value": "page-link" + } + ], + [ + "{-token", + "{", + 89337, + 89337, + null + ], + [ + "ident-token", + "transition", + 89338, + 89347, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 89348, + 89348, + null + ], + [ + "ident-token", + "none", + 89349, + 89352, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 89353, + 89353, + null + ], + [ + "}-token", + "}", + 89354, + 89354, + null + ], + [ + "delim-token", + ".", + 89355, + 89355, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89356, + 89364, + { + "value": "page-link" + } + ], + [ + "colon-token", + ":", + 89365, + 89365, + null + ], + [ + "ident-token", + "hover", + 89366, + 89370, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 89371, + 89371, + null + ], + [ + "ident-token", + "z-index", + 89372, + 89378, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 89379, + 89379, + null + ], + [ + "number-token", + "2", + 89380, + 89380, + { + "value": 2, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 89381, + 89381, + null + ], + [ + "ident-token", + "color", + 89382, + 89386, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 89387, + 89387, + null + ], + [ + "function-token", + "var(", + 89388, + 89391, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89392, + 89392, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89393, + 89393, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-color", + 89394, + 89418, + { + "value": "bs-pagination-hover-color" + } + ], + [ + ")-token", + ")", + 89419, + 89419, + null + ], + [ + "semicolon-token", + ";", + 89420, + 89420, + null + ], + [ + "ident-token", + "background-color", + 89421, + 89436, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 89437, + 89437, + null + ], + [ + "function-token", + "var(", + 89438, + 89441, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89442, + 89442, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89443, + 89443, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-bg", + 89444, + 89465, + { + "value": "bs-pagination-hover-bg" + } + ], + [ + ")-token", + ")", + 89466, + 89466, + null + ], + [ + "semicolon-token", + ";", + 89467, + 89467, + null + ], + [ + "ident-token", + "border-color", + 89468, + 89479, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 89480, + 89480, + null + ], + [ + "function-token", + "var(", + 89481, + 89484, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89485, + 89485, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89486, + 89486, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-hover-border-color", + 89487, + 89518, + { + "value": "bs-pagination-hover-border-color" + } + ], + [ + ")-token", + ")", + 89519, + 89519, + null + ], + [ + "}-token", + "}", + 89520, + 89520, + null + ], + [ + "delim-token", + ".", + 89521, + 89521, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89522, + 89530, + { + "value": "page-link" + } + ], + [ + "colon-token", + ":", + 89531, + 89531, + null + ], + [ + "ident-token", + "focus", + 89532, + 89536, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 89537, + 89537, + null + ], + [ + "ident-token", + "z-index", + 89538, + 89544, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 89545, + 89545, + null + ], + [ + "number-token", + "3", + 89546, + 89546, + { + "value": 3, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 89547, + 89547, + null + ], + [ + "ident-token", + "color", + 89548, + 89552, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 89553, + 89553, + null + ], + [ + "function-token", + "var(", + 89554, + 89557, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89558, + 89558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89559, + 89559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-color", + 89560, + 89584, + { + "value": "bs-pagination-focus-color" + } + ], + [ + ")-token", + ")", + 89585, + 89585, + null + ], + [ + "semicolon-token", + ";", + 89586, + 89586, + null + ], + [ + "ident-token", + "background-color", + 89587, + 89602, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 89603, + 89603, + null + ], + [ + "function-token", + "var(", + 89604, + 89607, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89608, + 89608, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89609, + 89609, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-bg", + 89610, + 89631, + { + "value": "bs-pagination-focus-bg" + } + ], + [ + ")-token", + ")", + 89632, + 89632, + null + ], + [ + "semicolon-token", + ";", + 89633, + 89633, + null + ], + [ + "ident-token", + "outline", + 89634, + 89640, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 89641, + 89641, + null + ], + [ + "number-token", + "0", + 89642, + 89642, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 89643, + 89643, + null + ], + [ + "ident-token", + "box-shadow", + 89644, + 89653, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 89654, + 89654, + null + ], + [ + "function-token", + "var(", + 89655, + 89658, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89659, + 89659, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89660, + 89660, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-focus-box-shadow", + 89661, + 89690, + { + "value": "bs-pagination-focus-box-shadow" + } + ], + [ + ")-token", + ")", + 89691, + 89691, + null + ], + [ + "}-token", + "}", + 89692, + 89692, + null + ], + [ + "delim-token", + ".", + 89693, + 89693, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 89694, + 89699, + { + "value": "active" + } + ], + [ + "delim-token", + ">", + 89700, + 89700, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 89701, + 89701, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89702, + 89710, + { + "value": "page-link" + } + ], + [ + "comma-token", + ",", + 89711, + 89711, + null + ], + [ + "delim-token", + ".", + 89712, + 89712, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89713, + 89721, + { + "value": "page-link" + } + ], + [ + "delim-token", + ".", + 89722, + 89722, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 89723, + 89728, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 89729, + 89729, + null + ], + [ + "ident-token", + "z-index", + 89730, + 89736, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 89737, + 89737, + null + ], + [ + "number-token", + "3", + 89738, + 89738, + { + "value": 3, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 89739, + 89739, + null + ], + [ + "ident-token", + "color", + 89740, + 89744, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 89745, + 89745, + null + ], + [ + "function-token", + "var(", + 89746, + 89749, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89750, + 89750, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89751, + 89751, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-color", + 89752, + 89777, + { + "value": "bs-pagination-active-color" + } + ], + [ + ")-token", + ")", + 89778, + 89778, + null + ], + [ + "semicolon-token", + ";", + 89779, + 89779, + null + ], + [ + "ident-token", + "background-color", + 89780, + 89795, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 89796, + 89796, + null + ], + [ + "function-token", + "var(", + 89797, + 89800, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89801, + 89801, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89802, + 89802, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-bg", + 89803, + 89825, + { + "value": "bs-pagination-active-bg" + } + ], + [ + ")-token", + ")", + 89826, + 89826, + null + ], + [ + "semicolon-token", + ";", + 89827, + 89827, + null + ], + [ + "ident-token", + "border-color", + 89828, + 89839, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 89840, + 89840, + null + ], + [ + "function-token", + "var(", + 89841, + 89844, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89845, + 89845, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89846, + 89846, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-active-border-color", + 89847, + 89879, + { + "value": "bs-pagination-active-border-color" + } + ], + [ + ")-token", + ")", + 89880, + 89880, + null + ], + [ + "}-token", + "}", + 89881, + 89881, + null + ], + [ + "delim-token", + ".", + 89882, + 89882, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 89883, + 89890, + { + "value": "disabled" + } + ], + [ + "delim-token", + ">", + 89891, + 89891, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 89892, + 89892, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89893, + 89901, + { + "value": "page-link" + } + ], + [ + "comma-token", + ",", + 89902, + 89902, + null + ], + [ + "delim-token", + ".", + 89903, + 89903, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 89904, + 89912, + { + "value": "page-link" + } + ], + [ + "delim-token", + ".", + 89913, + 89913, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 89914, + 89921, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 89922, + 89922, + null + ], + [ + "ident-token", + "color", + 89923, + 89927, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 89928, + 89928, + null + ], + [ + "function-token", + "var(", + 89929, + 89932, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 89933, + 89933, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 89934, + 89934, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-color", + 89935, + 89962, + { + "value": "bs-pagination-disabled-color" + } + ], + [ + ")-token", + ")", + 89963, + 89963, + null + ], + [ + "semicolon-token", + ";", + 89964, + 89964, + null + ], + [ + "ident-token", + "pointer-events", + 89965, + 89978, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 89979, + 89979, + null + ], + [ + "ident-token", + "none", + 89980, + 89983, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 89984, + 89984, + null + ], + [ + "ident-token", + "background-color", + 89985, + 90000, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 90001, + 90001, + null + ], + [ + "function-token", + "var(", + 90002, + 90005, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90006, + 90006, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90007, + 90007, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-bg", + 90008, + 90032, + { + "value": "bs-pagination-disabled-bg" + } + ], + [ + ")-token", + ")", + 90033, + 90033, + null + ], + [ + "semicolon-token", + ";", + 90034, + 90034, + null + ], + [ + "ident-token", + "border-color", + 90035, + 90046, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 90047, + 90047, + null + ], + [ + "function-token", + "var(", + 90048, + 90051, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90052, + 90052, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90053, + 90053, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-disabled-border-color", + 90054, + 90088, + { + "value": "bs-pagination-disabled-border-color" + } + ], + [ + ")-token", + ")", + 90089, + 90089, + null + ], + [ + "}-token", + "}", + 90090, + 90090, + null + ], + [ + "delim-token", + ".", + 90091, + 90091, + { + "value": "." + } + ], + [ + "ident-token", + "page-item", + 90092, + 90100, + { + "value": "page-item" + } + ], + [ + "colon-token", + ":", + 90101, + 90101, + null + ], + [ + "function-token", + "not(", + 90102, + 90105, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 90106, + 90106, + null + ], + [ + "ident-token", + "first-child", + 90107, + 90117, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 90118, + 90118, + null + ], + [ + "whitespace-token", + " ", + 90119, + 90119, + null + ], + [ + "delim-token", + ".", + 90120, + 90120, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 90121, + 90129, + { + "value": "page-link" + } + ], + [ + "{-token", + "{", + 90130, + 90130, + null + ], + [ + "ident-token", + "margin-left", + 90131, + 90141, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 90142, + 90142, + null + ], + [ + "dimension-token", + "-1px", + 90143, + 90146, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 90147, + 90147, + null + ], + [ + "delim-token", + ".", + 90148, + 90148, + { + "value": "." + } + ], + [ + "ident-token", + "page-item", + 90149, + 90157, + { + "value": "page-item" + } + ], + [ + "colon-token", + ":", + 90158, + 90158, + null + ], + [ + "ident-token", + "first-child", + 90159, + 90169, + { + "value": "first-child" + } + ], + [ + "whitespace-token", + " ", + 90170, + 90170, + null + ], + [ + "delim-token", + ".", + 90171, + 90171, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 90172, + 90180, + { + "value": "page-link" + } + ], + [ + "{-token", + "{", + 90181, + 90181, + null + ], + [ + "ident-token", + "border-top-left-radius", + 90182, + 90203, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 90204, + 90204, + null + ], + [ + "function-token", + "var(", + 90205, + 90208, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90209, + 90209, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90210, + 90210, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90211, + 90237, + { + "value": "bs-pagination-border-radius" + } + ], + [ + ")-token", + ")", + 90238, + 90238, + null + ], + [ + "semicolon-token", + ";", + 90239, + 90239, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 90240, + 90264, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 90265, + 90265, + null + ], + [ + "function-token", + "var(", + 90266, + 90269, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90270, + 90270, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90271, + 90271, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90272, + 90298, + { + "value": "bs-pagination-border-radius" + } + ], + [ + ")-token", + ")", + 90299, + 90299, + null + ], + [ + "}-token", + "}", + 90300, + 90300, + null + ], + [ + "delim-token", + ".", + 90301, + 90301, + { + "value": "." + } + ], + [ + "ident-token", + "page-item", + 90302, + 90310, + { + "value": "page-item" + } + ], + [ + "colon-token", + ":", + 90311, + 90311, + null + ], + [ + "ident-token", + "last-child", + 90312, + 90321, + { + "value": "last-child" + } + ], + [ + "whitespace-token", + " ", + 90322, + 90322, + null + ], + [ + "delim-token", + ".", + 90323, + 90323, + { + "value": "." + } + ], + [ + "ident-token", + "page-link", + 90324, + 90332, + { + "value": "page-link" + } + ], + [ + "{-token", + "{", + 90333, + 90333, + null + ], + [ + "ident-token", + "border-top-right-radius", + 90334, + 90356, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 90357, + 90357, + null + ], + [ + "function-token", + "var(", + 90358, + 90361, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90362, + 90362, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90363, + 90363, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90364, + 90390, + { + "value": "bs-pagination-border-radius" + } + ], + [ + ")-token", + ")", + 90391, + 90391, + null + ], + [ + "semicolon-token", + ";", + 90392, + 90392, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 90393, + 90418, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 90419, + 90419, + null + ], + [ + "function-token", + "var(", + 90420, + 90423, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90424, + 90424, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90425, + 90425, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90426, + 90452, + { + "value": "bs-pagination-border-radius" + } + ], + [ + ")-token", + ")", + 90453, + 90453, + null + ], + [ + "}-token", + "}", + 90454, + 90454, + null + ], + [ + "delim-token", + ".", + 90455, + 90455, + { + "value": "." + } + ], + [ + "ident-token", + "pagination-lg", + 90456, + 90468, + { + "value": "pagination-lg" + } + ], + [ + "{-token", + "{", + 90469, + 90469, + null + ], + [ + "delim-token", + "-", + 90470, + 90470, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90471, + 90471, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-x", + 90472, + 90494, + { + "value": "bs-pagination-padding-x" + } + ], + [ + "colon-token", + ":", + 90495, + 90495, + null + ], + [ + "dimension-token", + "1.5rem", + 90496, + 90501, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90502, + 90502, + null + ], + [ + "delim-token", + "-", + 90503, + 90503, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90504, + 90504, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-y", + 90505, + 90527, + { + "value": "bs-pagination-padding-y" + } + ], + [ + "colon-token", + ":", + 90528, + 90528, + null + ], + [ + "dimension-token", + "0.75rem", + 90529, + 90535, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90536, + 90536, + null + ], + [ + "delim-token", + "-", + 90537, + 90537, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90538, + 90538, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-font-size", + 90539, + 90561, + { + "value": "bs-pagination-font-size" + } + ], + [ + "colon-token", + ":", + 90562, + 90562, + null + ], + [ + "dimension-token", + "1.25rem", + 90563, + 90569, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90570, + 90570, + null + ], + [ + "delim-token", + "-", + 90571, + 90571, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90572, + 90572, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90573, + 90599, + { + "value": "bs-pagination-border-radius" + } + ], + [ + "colon-token", + ":", + 90600, + 90600, + null + ], + [ + "dimension-token", + "0.5rem", + 90601, + 90606, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 90607, + 90607, + null + ], + [ + "delim-token", + ".", + 90608, + 90608, + { + "value": "." + } + ], + [ + "ident-token", + "pagination-sm", + 90609, + 90621, + { + "value": "pagination-sm" + } + ], + [ + "{-token", + "{", + 90622, + 90622, + null + ], + [ + "delim-token", + "-", + 90623, + 90623, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90624, + 90624, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-x", + 90625, + 90647, + { + "value": "bs-pagination-padding-x" + } + ], + [ + "colon-token", + ":", + 90648, + 90648, + null + ], + [ + "dimension-token", + "0.5rem", + 90649, + 90654, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90655, + 90655, + null + ], + [ + "delim-token", + "-", + 90656, + 90656, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90657, + 90657, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-padding-y", + 90658, + 90680, + { + "value": "bs-pagination-padding-y" + } + ], + [ + "colon-token", + ":", + 90681, + 90681, + null + ], + [ + "dimension-token", + "0.25rem", + 90682, + 90688, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90689, + 90689, + null + ], + [ + "delim-token", + "-", + 90690, + 90690, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90691, + 90691, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-font-size", + 90692, + 90714, + { + "value": "bs-pagination-font-size" + } + ], + [ + "colon-token", + ":", + 90715, + 90715, + null + ], + [ + "dimension-token", + "0.875rem", + 90716, + 90723, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90724, + 90724, + null + ], + [ + "delim-token", + "-", + 90725, + 90725, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90726, + 90726, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-pagination-border-radius", + 90727, + 90753, + { + "value": "bs-pagination-border-radius" + } + ], + [ + "colon-token", + ":", + 90754, + 90754, + null + ], + [ + "dimension-token", + "0.25rem", + 90755, + 90761, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 90762, + 90762, + null + ], + [ + "delim-token", + ".", + 90763, + 90763, + { + "value": "." + } + ], + [ + "ident-token", + "badge", + 90764, + 90768, + { + "value": "badge" + } + ], + [ + "{-token", + "{", + 90769, + 90769, + null + ], + [ + "delim-token", + "-", + 90770, + 90770, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90771, + 90771, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-padding-x", + 90772, + 90789, + { + "value": "bs-badge-padding-x" + } + ], + [ + "colon-token", + ":", + 90790, + 90790, + null + ], + [ + "dimension-token", + "0.65em", + 90791, + 90796, + { + "value": 0.65, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 90797, + 90797, + null + ], + [ + "delim-token", + "-", + 90798, + 90798, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90799, + 90799, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-padding-y", + 90800, + 90817, + { + "value": "bs-badge-padding-y" + } + ], + [ + "colon-token", + ":", + 90818, + 90818, + null + ], + [ + "dimension-token", + "0.35em", + 90819, + 90824, + { + "value": 0.35, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 90825, + 90825, + null + ], + [ + "delim-token", + "-", + 90826, + 90826, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90827, + 90827, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-font-size", + 90828, + 90845, + { + "value": "bs-badge-font-size" + } + ], + [ + "colon-token", + ":", + 90846, + 90846, + null + ], + [ + "dimension-token", + "0.75em", + 90847, + 90852, + { + "value": 0.75, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 90853, + 90853, + null + ], + [ + "delim-token", + "-", + 90854, + 90854, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90855, + 90855, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-font-weight", + 90856, + 90875, + { + "value": "bs-badge-font-weight" + } + ], + [ + "colon-token", + ":", + 90876, + 90876, + null + ], + [ + "number-token", + "700", + 90877, + 90879, + { + "value": 700, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 90880, + 90880, + null + ], + [ + "delim-token", + "-", + 90881, + 90881, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90882, + 90882, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-color", + 90883, + 90896, + { + "value": "bs-badge-color" + } + ], + [ + "colon-token", + ":", + 90897, + 90897, + null + ], + [ + "hash-token", + "#fff", + 90898, + 90901, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 90902, + 90902, + null + ], + [ + "delim-token", + "-", + 90903, + 90903, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90904, + 90904, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-border-radius", + 90905, + 90926, + { + "value": "bs-badge-border-radius" + } + ], + [ + "colon-token", + ":", + 90927, + 90927, + null + ], + [ + "dimension-token", + "0.375rem", + 90928, + 90935, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 90936, + 90936, + null + ], + [ + "ident-token", + "display", + 90937, + 90943, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 90944, + 90944, + null + ], + [ + "ident-token", + "inline-block", + 90945, + 90956, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 90957, + 90957, + null + ], + [ + "ident-token", + "padding", + 90958, + 90964, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 90965, + 90965, + null + ], + [ + "function-token", + "var(", + 90966, + 90969, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90970, + 90970, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90971, + 90971, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-padding-y", + 90972, + 90989, + { + "value": "bs-badge-padding-y" + } + ], + [ + ")-token", + ")", + 90990, + 90990, + null + ], + [ + "whitespace-token", + " ", + 90991, + 90991, + null + ], + [ + "function-token", + "var(", + 90992, + 90995, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 90996, + 90996, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 90997, + 90997, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-padding-x", + 90998, + 91015, + { + "value": "bs-badge-padding-x" + } + ], + [ + ")-token", + ")", + 91016, + 91016, + null + ], + [ + "semicolon-token", + ";", + 91017, + 91017, + null + ], + [ + "ident-token", + "font-size", + 91018, + 91026, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 91027, + 91027, + null + ], + [ + "function-token", + "var(", + 91028, + 91031, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91032, + 91032, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91033, + 91033, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-font-size", + 91034, + 91051, + { + "value": "bs-badge-font-size" + } + ], + [ + ")-token", + ")", + 91052, + 91052, + null + ], + [ + "semicolon-token", + ";", + 91053, + 91053, + null + ], + [ + "ident-token", + "font-weight", + 91054, + 91064, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 91065, + 91065, + null + ], + [ + "function-token", + "var(", + 91066, + 91069, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91070, + 91070, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91071, + 91071, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-font-weight", + 91072, + 91091, + { + "value": "bs-badge-font-weight" + } + ], + [ + ")-token", + ")", + 91092, + 91092, + null + ], + [ + "semicolon-token", + ";", + 91093, + 91093, + null + ], + [ + "ident-token", + "line-height", + 91094, + 91104, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 91105, + 91105, + null + ], + [ + "number-token", + "1", + 91106, + 91106, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 91107, + 91107, + null + ], + [ + "ident-token", + "color", + 91108, + 91112, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 91113, + 91113, + null + ], + [ + "function-token", + "var(", + 91114, + 91117, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91118, + 91118, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91119, + 91119, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-color", + 91120, + 91133, + { + "value": "bs-badge-color" + } + ], + [ + ")-token", + ")", + 91134, + 91134, + null + ], + [ + "semicolon-token", + ";", + 91135, + 91135, + null + ], + [ + "ident-token", + "text-align", + 91136, + 91145, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 91146, + 91146, + null + ], + [ + "ident-token", + "center", + 91147, + 91152, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 91153, + 91153, + null + ], + [ + "ident-token", + "white-space", + 91154, + 91164, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 91165, + 91165, + null + ], + [ + "ident-token", + "nowrap", + 91166, + 91171, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 91172, + 91172, + null + ], + [ + "ident-token", + "vertical-align", + 91173, + 91186, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 91187, + 91187, + null + ], + [ + "ident-token", + "baseline", + 91188, + 91195, + { + "value": "baseline" + } + ], + [ + "semicolon-token", + ";", + 91196, + 91196, + null + ], + [ + "ident-token", + "border-radius", + 91197, + 91209, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 91210, + 91210, + null + ], + [ + "function-token", + "var(", + 91211, + 91214, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91215, + 91215, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91216, + 91216, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-badge-border-radius", + 91217, + 91238, + { + "value": "bs-badge-border-radius" + } + ], + [ + ")-token", + ")", + 91239, + 91239, + null + ], + [ + "}-token", + "}", + 91240, + 91240, + null + ], + [ + "delim-token", + ".", + 91241, + 91241, + { + "value": "." + } + ], + [ + "ident-token", + "badge", + 91242, + 91246, + { + "value": "badge" + } + ], + [ + "colon-token", + ":", + 91247, + 91247, + null + ], + [ + "ident-token", + "empty", + 91248, + 91252, + { + "value": "empty" + } + ], + [ + "{-token", + "{", + 91253, + 91253, + null + ], + [ + "ident-token", + "display", + 91254, + 91260, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 91261, + 91261, + null + ], + [ + "ident-token", + "none", + 91262, + 91265, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 91266, + 91266, + null + ], + [ + "delim-token", + ".", + 91267, + 91267, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 91268, + 91270, + { + "value": "btn" + } + ], + [ + "whitespace-token", + " ", + 91271, + 91271, + null + ], + [ + "delim-token", + ".", + 91272, + 91272, + { + "value": "." + } + ], + [ + "ident-token", + "badge", + 91273, + 91277, + { + "value": "badge" + } + ], + [ + "{-token", + "{", + 91278, + 91278, + null + ], + [ + "ident-token", + "position", + 91279, + 91286, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 91287, + 91287, + null + ], + [ + "ident-token", + "relative", + 91288, + 91295, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 91296, + 91296, + null + ], + [ + "ident-token", + "top", + 91297, + 91299, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 91300, + 91300, + null + ], + [ + "dimension-token", + "-1px", + 91301, + 91304, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 91305, + 91305, + null + ], + [ + "delim-token", + ".", + 91306, + 91306, + { + "value": "." + } + ], + [ + "ident-token", + "alert", + 91307, + 91311, + { + "value": "alert" + } + ], + [ + "{-token", + "{", + 91312, + 91312, + null + ], + [ + "delim-token", + "-", + 91313, + 91313, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91314, + 91314, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 91315, + 91325, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 91326, + 91326, + null + ], + [ + "ident-token", + "transparent", + 91327, + 91337, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 91338, + 91338, + null + ], + [ + "delim-token", + "-", + 91339, + 91339, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91340, + 91340, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-padding-x", + 91341, + 91358, + { + "value": "bs-alert-padding-x" + } + ], + [ + "colon-token", + ":", + 91359, + 91359, + null + ], + [ + "dimension-token", + "1rem", + 91360, + 91363, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 91364, + 91364, + null + ], + [ + "delim-token", + "-", + 91365, + 91365, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91366, + 91366, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-padding-y", + 91367, + 91384, + { + "value": "bs-alert-padding-y" + } + ], + [ + "colon-token", + ":", + 91385, + 91385, + null + ], + [ + "dimension-token", + "1rem", + 91386, + 91389, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 91390, + 91390, + null + ], + [ + "delim-token", + "-", + 91391, + 91391, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91392, + 91392, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-margin-bottom", + 91393, + 91414, + { + "value": "bs-alert-margin-bottom" + } + ], + [ + "colon-token", + ":", + 91415, + 91415, + null + ], + [ + "dimension-token", + "1rem", + 91416, + 91419, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 91420, + 91420, + null + ], + [ + "delim-token", + "-", + 91421, + 91421, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91422, + 91422, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 91423, + 91436, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 91437, + 91437, + null + ], + [ + "ident-token", + "inherit", + 91438, + 91444, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 91445, + 91445, + null + ], + [ + "delim-token", + "-", + 91446, + 91446, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91447, + 91447, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 91448, + 91468, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 91469, + 91469, + null + ], + [ + "ident-token", + "transparent", + 91470, + 91480, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 91481, + 91481, + null + ], + [ + "delim-token", + "-", + 91482, + 91482, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91483, + 91483, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border", + 91484, + 91498, + { + "value": "bs-alert-border" + } + ], + [ + "colon-token", + ":", + 91499, + 91499, + null + ], + [ + "dimension-token", + "1px", + 91500, + 91502, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 91503, + 91503, + null + ], + [ + "ident-token", + "solid", + 91504, + 91508, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 91509, + 91509, + null + ], + [ + "function-token", + "var(", + 91510, + 91513, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91514, + 91514, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91515, + 91515, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 91516, + 91536, + { + "value": "bs-alert-border-color" + } + ], + [ + ")-token", + ")", + 91537, + 91537, + null + ], + [ + "semicolon-token", + ";", + 91538, + 91538, + null + ], + [ + "delim-token", + "-", + 91539, + 91539, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91540, + 91540, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-radius", + 91541, + 91562, + { + "value": "bs-alert-border-radius" + } + ], + [ + "colon-token", + ":", + 91563, + 91563, + null + ], + [ + "dimension-token", + "0.375rem", + 91564, + 91571, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 91572, + 91572, + null + ], + [ + "ident-token", + "position", + 91573, + 91580, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 91581, + 91581, + null + ], + [ + "ident-token", + "relative", + 91582, + 91589, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 91590, + 91590, + null + ], + [ + "ident-token", + "padding", + 91591, + 91597, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 91598, + 91598, + null + ], + [ + "function-token", + "var(", + 91599, + 91602, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91603, + 91603, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91604, + 91604, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-padding-y", + 91605, + 91622, + { + "value": "bs-alert-padding-y" + } + ], + [ + ")-token", + ")", + 91623, + 91623, + null + ], + [ + "whitespace-token", + " ", + 91624, + 91624, + null + ], + [ + "function-token", + "var(", + 91625, + 91628, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91629, + 91629, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91630, + 91630, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-padding-x", + 91631, + 91648, + { + "value": "bs-alert-padding-x" + } + ], + [ + ")-token", + ")", + 91649, + 91649, + null + ], + [ + "semicolon-token", + ";", + 91650, + 91650, + null + ], + [ + "ident-token", + "margin-bottom", + 91651, + 91663, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 91664, + 91664, + null + ], + [ + "function-token", + "var(", + 91665, + 91668, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91669, + 91669, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91670, + 91670, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-margin-bottom", + 91671, + 91692, + { + "value": "bs-alert-margin-bottom" + } + ], + [ + ")-token", + ")", + 91693, + 91693, + null + ], + [ + "semicolon-token", + ";", + 91694, + 91694, + null + ], + [ + "ident-token", + "color", + 91695, + 91699, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 91700, + 91700, + null + ], + [ + "function-token", + "var(", + 91701, + 91704, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91705, + 91705, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91706, + 91706, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 91707, + 91720, + { + "value": "bs-alert-color" + } + ], + [ + ")-token", + ")", + 91721, + 91721, + null + ], + [ + "semicolon-token", + ";", + 91722, + 91722, + null + ], + [ + "ident-token", + "background-color", + 91723, + 91738, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 91739, + 91739, + null + ], + [ + "function-token", + "var(", + 91740, + 91743, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91744, + 91744, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91745, + 91745, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 91746, + 91756, + { + "value": "bs-alert-bg" + } + ], + [ + ")-token", + ")", + 91757, + 91757, + null + ], + [ + "semicolon-token", + ";", + 91758, + 91758, + null + ], + [ + "ident-token", + "border", + 91759, + 91764, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 91765, + 91765, + null + ], + [ + "function-token", + "var(", + 91766, + 91769, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91770, + 91770, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91771, + 91771, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border", + 91772, + 91786, + { + "value": "bs-alert-border" + } + ], + [ + ")-token", + ")", + 91787, + 91787, + null + ], + [ + "semicolon-token", + ";", + 91788, + 91788, + null + ], + [ + "ident-token", + "border-radius", + 91789, + 91801, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 91802, + 91802, + null + ], + [ + "function-token", + "var(", + 91803, + 91806, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 91807, + 91807, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 91808, + 91808, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-radius", + 91809, + 91830, + { + "value": "bs-alert-border-radius" + } + ], + [ + ")-token", + ")", + 91831, + 91831, + null + ], + [ + "}-token", + "}", + 91832, + 91832, + null + ], + [ + "delim-token", + ".", + 91833, + 91833, + { + "value": "." + } + ], + [ + "ident-token", + "alert-heading", + 91834, + 91846, + { + "value": "alert-heading" + } + ], + [ + "{-token", + "{", + 91847, + 91847, + null + ], + [ + "ident-token", + "color", + 91848, + 91852, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 91853, + 91853, + null + ], + [ + "ident-token", + "inherit", + 91854, + 91860, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 91861, + 91861, + null + ], + [ + "delim-token", + ".", + 91862, + 91862, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 91863, + 91872, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 91873, + 91873, + null + ], + [ + "ident-token", + "font-weight", + 91874, + 91884, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 91885, + 91885, + null + ], + [ + "number-token", + "700", + 91886, + 91888, + { + "value": 700, + "type": "integer" + } + ], + [ + "}-token", + "}", + 91889, + 91889, + null + ], + [ + "delim-token", + ".", + 91890, + 91890, + { + "value": "." + } + ], + [ + "ident-token", + "alert-dismissible", + 91891, + 91907, + { + "value": "alert-dismissible" + } + ], + [ + "{-token", + "{", + 91908, + 91908, + null + ], + [ + "ident-token", + "padding-right", + 91909, + 91921, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 91922, + 91922, + null + ], + [ + "dimension-token", + "3rem", + 91923, + 91926, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 91927, + 91927, + null + ], + [ + "delim-token", + ".", + 91928, + 91928, + { + "value": "." + } + ], + [ + "ident-token", + "alert-dismissible", + 91929, + 91945, + { + "value": "alert-dismissible" + } + ], + [ + "whitespace-token", + " ", + 91946, + 91946, + null + ], + [ + "delim-token", + ".", + 91947, + 91947, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 91948, + 91956, + { + "value": "btn-close" + } + ], + [ + "{-token", + "{", + 91957, + 91957, + null + ], + [ + "ident-token", + "position", + 91958, + 91965, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 91966, + 91966, + null + ], + [ + "ident-token", + "absolute", + 91967, + 91974, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 91975, + 91975, + null + ], + [ + "ident-token", + "top", + 91976, + 91978, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 91979, + 91979, + null + ], + [ + "number-token", + "0", + 91980, + 91980, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 91981, + 91981, + null + ], + [ + "ident-token", + "right", + 91982, + 91986, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 91987, + 91987, + null + ], + [ + "number-token", + "0", + 91988, + 91988, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 91989, + 91989, + null + ], + [ + "ident-token", + "z-index", + 91990, + 91996, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 91997, + 91997, + null + ], + [ + "number-token", + "2", + 91998, + 91998, + { + "value": 2, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 91999, + 91999, + null + ], + [ + "ident-token", + "padding", + 92000, + 92006, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 92007, + 92007, + null + ], + [ + "dimension-token", + "1.25rem", + 92008, + 92014, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 92015, + 92015, + null + ], + [ + "dimension-token", + "1rem", + 92016, + 92019, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 92020, + 92020, + null + ], + [ + "delim-token", + ".", + 92021, + 92021, + { + "value": "." + } + ], + [ + "ident-token", + "alert-primary", + 92022, + 92034, + { + "value": "alert-primary" + } + ], + [ + "{-token", + "{", + 92035, + 92035, + null + ], + [ + "delim-token", + "-", + 92036, + 92036, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92037, + 92037, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92038, + 92051, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92052, + 92052, + null + ], + [ + "hash-token", + "#084298", + 92053, + 92059, + { + "value": "084298", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92060, + 92060, + null + ], + [ + "delim-token", + "-", + 92061, + 92061, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92062, + 92062, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92063, + 92073, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92074, + 92074, + null + ], + [ + "hash-token", + "#cfe2ff", + 92075, + 92081, + { + "value": "cfe2ff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92082, + 92082, + null + ], + [ + "delim-token", + "-", + 92083, + 92083, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92084, + 92084, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92085, + 92105, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92106, + 92106, + null + ], + [ + "hash-token", + "#b6d4fe", + 92107, + 92113, + { + "value": "b6d4fe", + "type": "id" + } + ], + [ + "}-token", + "}", + 92114, + 92114, + null + ], + [ + "delim-token", + ".", + 92115, + 92115, + { + "value": "." + } + ], + [ + "ident-token", + "alert-primary", + 92116, + 92128, + { + "value": "alert-primary" + } + ], + [ + "whitespace-token", + " ", + 92129, + 92129, + null + ], + [ + "delim-token", + ".", + 92130, + 92130, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92131, + 92140, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92141, + 92141, + null + ], + [ + "ident-token", + "color", + 92142, + 92146, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92147, + 92147, + null + ], + [ + "hash-token", + "#06357a", + 92148, + 92154, + { + "value": "06357a", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92155, + 92155, + null + ], + [ + "delim-token", + ".", + 92156, + 92156, + { + "value": "." + } + ], + [ + "ident-token", + "alert-secondary", + 92157, + 92171, + { + "value": "alert-secondary" + } + ], + [ + "{-token", + "{", + 92172, + 92172, + null + ], + [ + "delim-token", + "-", + 92173, + 92173, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92174, + 92174, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92175, + 92188, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92189, + 92189, + null + ], + [ + "hash-token", + "#41464b", + 92190, + 92196, + { + "value": "41464b", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92197, + 92197, + null + ], + [ + "delim-token", + "-", + 92198, + 92198, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92199, + 92199, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92200, + 92210, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92211, + 92211, + null + ], + [ + "hash-token", + "#e2e3e5", + 92212, + 92218, + { + "value": "e2e3e5", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92219, + 92219, + null + ], + [ + "delim-token", + "-", + 92220, + 92220, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92221, + 92221, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92222, + 92242, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92243, + 92243, + null + ], + [ + "hash-token", + "#d3d6d8", + 92244, + 92250, + { + "value": "d3d6d8", + "type": "id" + } + ], + [ + "}-token", + "}", + 92251, + 92251, + null + ], + [ + "delim-token", + ".", + 92252, + 92252, + { + "value": "." + } + ], + [ + "ident-token", + "alert-secondary", + 92253, + 92267, + { + "value": "alert-secondary" + } + ], + [ + "whitespace-token", + " ", + 92268, + 92268, + null + ], + [ + "delim-token", + ".", + 92269, + 92269, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92270, + 92279, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92280, + 92280, + null + ], + [ + "ident-token", + "color", + 92281, + 92285, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92286, + 92286, + null + ], + [ + "hash-token", + "#34383c", + 92287, + 92293, + { + "value": "34383c", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92294, + 92294, + null + ], + [ + "delim-token", + ".", + 92295, + 92295, + { + "value": "." + } + ], + [ + "ident-token", + "alert-success", + 92296, + 92308, + { + "value": "alert-success" + } + ], + [ + "{-token", + "{", + 92309, + 92309, + null + ], + [ + "delim-token", + "-", + 92310, + 92310, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92311, + 92311, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92312, + 92325, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92326, + 92326, + null + ], + [ + "hash-token", + "#0f5132", + 92327, + 92333, + { + "value": "0f5132", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92334, + 92334, + null + ], + [ + "delim-token", + "-", + 92335, + 92335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92336, + 92336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92337, + 92347, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92348, + 92348, + null + ], + [ + "hash-token", + "#d1e7dd", + 92349, + 92355, + { + "value": "d1e7dd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92356, + 92356, + null + ], + [ + "delim-token", + "-", + 92357, + 92357, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92358, + 92358, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92359, + 92379, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92380, + 92380, + null + ], + [ + "hash-token", + "#badbcc", + 92381, + 92387, + { + "value": "badbcc", + "type": "id" + } + ], + [ + "}-token", + "}", + 92388, + 92388, + null + ], + [ + "delim-token", + ".", + 92389, + 92389, + { + "value": "." + } + ], + [ + "ident-token", + "alert-success", + 92390, + 92402, + { + "value": "alert-success" + } + ], + [ + "whitespace-token", + " ", + 92403, + 92403, + null + ], + [ + "delim-token", + ".", + 92404, + 92404, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92405, + 92414, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92415, + 92415, + null + ], + [ + "ident-token", + "color", + 92416, + 92420, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92421, + 92421, + null + ], + [ + "hash-token", + "#0c4128", + 92422, + 92428, + { + "value": "0c4128", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92429, + 92429, + null + ], + [ + "delim-token", + ".", + 92430, + 92430, + { + "value": "." + } + ], + [ + "ident-token", + "alert-info", + 92431, + 92440, + { + "value": "alert-info" + } + ], + [ + "{-token", + "{", + 92441, + 92441, + null + ], + [ + "delim-token", + "-", + 92442, + 92442, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92443, + 92443, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92444, + 92457, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92458, + 92458, + null + ], + [ + "hash-token", + "#055160", + 92459, + 92465, + { + "value": "055160", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92466, + 92466, + null + ], + [ + "delim-token", + "-", + 92467, + 92467, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92468, + 92468, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92469, + 92479, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92480, + 92480, + null + ], + [ + "hash-token", + "#cff4fc", + 92481, + 92487, + { + "value": "cff4fc", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92488, + 92488, + null + ], + [ + "delim-token", + "-", + 92489, + 92489, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92490, + 92490, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92491, + 92511, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92512, + 92512, + null + ], + [ + "hash-token", + "#b6effb", + 92513, + 92519, + { + "value": "b6effb", + "type": "id" + } + ], + [ + "}-token", + "}", + 92520, + 92520, + null + ], + [ + "delim-token", + ".", + 92521, + 92521, + { + "value": "." + } + ], + [ + "ident-token", + "alert-info", + 92522, + 92531, + { + "value": "alert-info" + } + ], + [ + "whitespace-token", + " ", + 92532, + 92532, + null + ], + [ + "delim-token", + ".", + 92533, + 92533, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92534, + 92543, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92544, + 92544, + null + ], + [ + "ident-token", + "color", + 92545, + 92549, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92550, + 92550, + null + ], + [ + "hash-token", + "#04414d", + 92551, + 92557, + { + "value": "04414d", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92558, + 92558, + null + ], + [ + "delim-token", + ".", + 92559, + 92559, + { + "value": "." + } + ], + [ + "ident-token", + "alert-warning", + 92560, + 92572, + { + "value": "alert-warning" + } + ], + [ + "{-token", + "{", + 92573, + 92573, + null + ], + [ + "delim-token", + "-", + 92574, + 92574, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92575, + 92575, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92576, + 92589, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92590, + 92590, + null + ], + [ + "hash-token", + "#664d03", + 92591, + 92597, + { + "value": "664d03", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92598, + 92598, + null + ], + [ + "delim-token", + "-", + 92599, + 92599, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92600, + 92600, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92601, + 92611, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92612, + 92612, + null + ], + [ + "hash-token", + "#fff3cd", + 92613, + 92619, + { + "value": "fff3cd", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92620, + 92620, + null + ], + [ + "delim-token", + "-", + 92621, + 92621, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92622, + 92622, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92623, + 92643, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92644, + 92644, + null + ], + [ + "hash-token", + "#ffecb5", + 92645, + 92651, + { + "value": "ffecb5", + "type": "id" + } + ], + [ + "}-token", + "}", + 92652, + 92652, + null + ], + [ + "delim-token", + ".", + 92653, + 92653, + { + "value": "." + } + ], + [ + "ident-token", + "alert-warning", + 92654, + 92666, + { + "value": "alert-warning" + } + ], + [ + "whitespace-token", + " ", + 92667, + 92667, + null + ], + [ + "delim-token", + ".", + 92668, + 92668, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92669, + 92678, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92679, + 92679, + null + ], + [ + "ident-token", + "color", + 92680, + 92684, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92685, + 92685, + null + ], + [ + "hash-token", + "#523e02", + 92686, + 92692, + { + "value": "523e02", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92693, + 92693, + null + ], + [ + "delim-token", + ".", + 92694, + 92694, + { + "value": "." + } + ], + [ + "ident-token", + "alert-danger", + 92695, + 92706, + { + "value": "alert-danger" + } + ], + [ + "{-token", + "{", + 92707, + 92707, + null + ], + [ + "delim-token", + "-", + 92708, + 92708, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92709, + 92709, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92710, + 92723, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92724, + 92724, + null + ], + [ + "hash-token", + "#842029", + 92725, + 92731, + { + "value": "842029", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92732, + 92732, + null + ], + [ + "delim-token", + "-", + 92733, + 92733, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92734, + 92734, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92735, + 92745, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92746, + 92746, + null + ], + [ + "hash-token", + "#f8d7da", + 92747, + 92753, + { + "value": "f8d7da", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92754, + 92754, + null + ], + [ + "delim-token", + "-", + 92755, + 92755, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92756, + 92756, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92757, + 92777, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92778, + 92778, + null + ], + [ + "hash-token", + "#f5c2c7", + 92779, + 92785, + { + "value": "f5c2c7", + "type": "id" + } + ], + [ + "}-token", + "}", + 92786, + 92786, + null + ], + [ + "delim-token", + ".", + 92787, + 92787, + { + "value": "." + } + ], + [ + "ident-token", + "alert-danger", + 92788, + 92799, + { + "value": "alert-danger" + } + ], + [ + "whitespace-token", + " ", + 92800, + 92800, + null + ], + [ + "delim-token", + ".", + 92801, + 92801, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92802, + 92811, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92812, + 92812, + null + ], + [ + "ident-token", + "color", + 92813, + 92817, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92818, + 92818, + null + ], + [ + "hash-token", + "#6a1a21", + 92819, + 92825, + { + "value": "6a1a21", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92826, + 92826, + null + ], + [ + "delim-token", + ".", + 92827, + 92827, + { + "value": "." + } + ], + [ + "ident-token", + "alert-light", + 92828, + 92838, + { + "value": "alert-light" + } + ], + [ + "{-token", + "{", + 92839, + 92839, + null + ], + [ + "delim-token", + "-", + 92840, + 92840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92841, + 92841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92842, + 92855, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92856, + 92856, + null + ], + [ + "hash-token", + "#636464", + 92857, + 92863, + { + "value": "636464", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92864, + 92864, + null + ], + [ + "delim-token", + "-", + 92865, + 92865, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92866, + 92866, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92867, + 92877, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 92878, + 92878, + null + ], + [ + "hash-token", + "#fefefe", + 92879, + 92885, + { + "value": "fefefe", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 92886, + 92886, + null + ], + [ + "delim-token", + "-", + 92887, + 92887, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92888, + 92888, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 92889, + 92909, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 92910, + 92910, + null + ], + [ + "hash-token", + "#fdfdfe", + 92911, + 92917, + { + "value": "fdfdfe", + "type": "id" + } + ], + [ + "}-token", + "}", + 92918, + 92918, + null + ], + [ + "delim-token", + ".", + 92919, + 92919, + { + "value": "." + } + ], + [ + "ident-token", + "alert-light", + 92920, + 92930, + { + "value": "alert-light" + } + ], + [ + "whitespace-token", + " ", + 92931, + 92931, + null + ], + [ + "delim-token", + ".", + 92932, + 92932, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 92933, + 92942, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 92943, + 92943, + null + ], + [ + "ident-token", + "color", + 92944, + 92948, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 92949, + 92949, + null + ], + [ + "hash-token", + "#4f5050", + 92950, + 92956, + { + "value": "4f5050", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 92957, + 92957, + null + ], + [ + "delim-token", + ".", + 92958, + 92958, + { + "value": "." + } + ], + [ + "ident-token", + "alert-dark", + 92959, + 92968, + { + "value": "alert-dark" + } + ], + [ + "{-token", + "{", + 92969, + 92969, + null + ], + [ + "delim-token", + "-", + 92970, + 92970, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92971, + 92971, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-color", + 92972, + 92985, + { + "value": "bs-alert-color" + } + ], + [ + "colon-token", + ":", + 92986, + 92986, + null + ], + [ + "hash-token", + "#141619", + 92987, + 92993, + { + "value": "141619", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 92994, + 92994, + null + ], + [ + "delim-token", + "-", + 92995, + 92995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 92996, + 92996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-bg", + 92997, + 93007, + { + "value": "bs-alert-bg" + } + ], + [ + "colon-token", + ":", + 93008, + 93008, + null + ], + [ + "hash-token", + "#d3d3d4", + 93009, + 93015, + { + "value": "d3d3d4", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 93016, + 93016, + null + ], + [ + "delim-token", + "-", + 93017, + 93017, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93018, + 93018, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-alert-border-color", + 93019, + 93039, + { + "value": "bs-alert-border-color" + } + ], + [ + "colon-token", + ":", + 93040, + 93040, + null + ], + [ + "hash-token", + "#bcbebf", + 93041, + 93047, + { + "value": "bcbebf", + "type": "id" + } + ], + [ + "}-token", + "}", + 93048, + 93048, + null + ], + [ + "delim-token", + ".", + 93049, + 93049, + { + "value": "." + } + ], + [ + "ident-token", + "alert-dark", + 93050, + 93059, + { + "value": "alert-dark" + } + ], + [ + "whitespace-token", + " ", + 93060, + 93060, + null + ], + [ + "delim-token", + ".", + 93061, + 93061, + { + "value": "." + } + ], + [ + "ident-token", + "alert-link", + 93062, + 93071, + { + "value": "alert-link" + } + ], + [ + "{-token", + "{", + 93072, + 93072, + null + ], + [ + "ident-token", + "color", + 93073, + 93077, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 93078, + 93078, + null + ], + [ + "hash-token", + "#101214", + 93079, + 93085, + { + "value": "101214", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 93086, + 93086, + null + ], + [ + "at-keyword-token", + "@-webkit-keyframes", + 93087, + 93104, + { + "value": "-webkit-keyframes" + } + ], + [ + "whitespace-token", + " ", + 93105, + 93105, + null + ], + [ + "ident-token", + "progress-bar-stripes", + 93106, + 93125, + { + "value": "progress-bar-stripes" + } + ], + [ + "{-token", + "{", + 93126, + 93126, + null + ], + [ + "percentage-token", + "0%", + 93127, + 93128, + { + "value": 0 + } + ], + [ + "{-token", + "{", + 93129, + 93129, + null + ], + [ + "ident-token", + "background-position-x", + 93130, + 93150, + { + "value": "background-position-x" + } + ], + [ + "colon-token", + ":", + 93151, + 93151, + null + ], + [ + "dimension-token", + "1rem", + 93152, + 93155, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 93156, + 93156, + null + ], + [ + "}-token", + "}", + 93157, + 93157, + null + ], + [ + "at-keyword-token", + "@keyframes", + 93158, + 93167, + { + "value": "keyframes" + } + ], + [ + "whitespace-token", + " ", + 93168, + 93168, + null + ], + [ + "ident-token", + "progress-bar-stripes", + 93169, + 93188, + { + "value": "progress-bar-stripes" + } + ], + [ + "{-token", + "{", + 93189, + 93189, + null + ], + [ + "percentage-token", + "0%", + 93190, + 93191, + { + "value": 0 + } + ], + [ + "{-token", + "{", + 93192, + 93192, + null + ], + [ + "ident-token", + "background-position-x", + 93193, + 93213, + { + "value": "background-position-x" + } + ], + [ + "colon-token", + ":", + 93214, + 93214, + null + ], + [ + "dimension-token", + "1rem", + 93215, + 93218, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 93219, + 93219, + null + ], + [ + "}-token", + "}", + 93220, + 93220, + null + ], + [ + "delim-token", + ".", + 93221, + 93221, + { + "value": "." + } + ], + [ + "ident-token", + "progress", + 93222, + 93229, + { + "value": "progress" + } + ], + [ + "{-token", + "{", + 93230, + 93230, + null + ], + [ + "delim-token", + "-", + 93231, + 93231, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93232, + 93232, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-height", + 93233, + 93250, + { + "value": "bs-progress-height" + } + ], + [ + "colon-token", + ":", + 93251, + 93251, + null + ], + [ + "dimension-token", + "1rem", + 93252, + 93255, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 93256, + 93256, + null + ], + [ + "delim-token", + "-", + 93257, + 93257, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93258, + 93258, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-font-size", + 93259, + 93279, + { + "value": "bs-progress-font-size" + } + ], + [ + "colon-token", + ":", + 93280, + 93280, + null + ], + [ + "dimension-token", + "0.75rem", + 93281, + 93287, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 93288, + 93288, + null + ], + [ + "delim-token", + "-", + 93289, + 93289, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93290, + 93290, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bg", + 93291, + 93304, + { + "value": "bs-progress-bg" + } + ], + [ + "colon-token", + ":", + 93305, + 93305, + null + ], + [ + "hash-token", + "#e9ecef", + 93306, + 93312, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 93313, + 93313, + null + ], + [ + "delim-token", + "-", + 93314, + 93314, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93315, + 93315, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-border-radius", + 93316, + 93340, + { + "value": "bs-progress-border-radius" + } + ], + [ + "colon-token", + ":", + 93341, + 93341, + null + ], + [ + "dimension-token", + "0.375rem", + 93342, + 93349, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 93350, + 93350, + null + ], + [ + "delim-token", + "-", + 93351, + 93351, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93352, + 93352, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-box-shadow", + 93353, + 93374, + { + "value": "bs-progress-box-shadow" + } + ], + [ + "colon-token", + ":", + 93375, + 93375, + null + ], + [ + "ident-token", + "inset", + 93376, + 93380, + { + "value": "inset" + } + ], + [ + "whitespace-token", + " ", + 93381, + 93381, + null + ], + [ + "number-token", + "0", + 93382, + 93382, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 93383, + 93383, + null + ], + [ + "dimension-token", + "1px", + 93384, + 93386, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 93387, + 93387, + null + ], + [ + "dimension-token", + "2px", + 93388, + 93390, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 93391, + 93391, + null + ], + [ + "function-token", + "rgba(", + 93392, + 93396, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 93397, + 93397, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 93398, + 93398, + null + ], + [ + "whitespace-token", + " ", + 93399, + 93399, + null + ], + [ + "number-token", + "0", + 93400, + 93400, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 93401, + 93401, + null + ], + [ + "whitespace-token", + " ", + 93402, + 93402, + null + ], + [ + "number-token", + "0", + 93403, + 93403, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 93404, + 93404, + null + ], + [ + "whitespace-token", + " ", + 93405, + 93405, + null + ], + [ + "number-token", + "0.075", + 93406, + 93410, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 93411, + 93411, + null + ], + [ + "semicolon-token", + ";", + 93412, + 93412, + null + ], + [ + "delim-token", + "-", + 93413, + 93413, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93414, + 93414, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-color", + 93415, + 93435, + { + "value": "bs-progress-bar-color" + } + ], + [ + "colon-token", + ":", + 93436, + 93436, + null + ], + [ + "hash-token", + "#fff", + 93437, + 93440, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 93441, + 93441, + null + ], + [ + "delim-token", + "-", + 93442, + 93442, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93443, + 93443, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-bg", + 93444, + 93461, + { + "value": "bs-progress-bar-bg" + } + ], + [ + "colon-token", + ":", + 93462, + 93462, + null + ], + [ + "hash-token", + "#0d6efd", + 93463, + 93469, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 93470, + 93470, + null + ], + [ + "delim-token", + "-", + 93471, + 93471, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93472, + 93472, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-transition", + 93473, + 93498, + { + "value": "bs-progress-bar-transition" + } + ], + [ + "colon-token", + ":", + 93499, + 93499, + null + ], + [ + "ident-token", + "width", + 93500, + 93504, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 93505, + 93505, + null + ], + [ + "dimension-token", + "0.6s", + 93506, + 93509, + { + "value": 0.6, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 93510, + 93510, + null + ], + [ + "ident-token", + "ease", + 93511, + 93514, + { + "value": "ease" + } + ], + [ + "semicolon-token", + ";", + 93515, + 93515, + null + ], + [ + "ident-token", + "display", + 93516, + 93522, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 93523, + 93523, + null + ], + [ + "ident-token", + "flex", + 93524, + 93527, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 93528, + 93528, + null + ], + [ + "ident-token", + "height", + 93529, + 93534, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 93535, + 93535, + null + ], + [ + "function-token", + "var(", + 93536, + 93539, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93540, + 93540, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93541, + 93541, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-height", + 93542, + 93559, + { + "value": "bs-progress-height" + } + ], + [ + ")-token", + ")", + 93560, + 93560, + null + ], + [ + "semicolon-token", + ";", + 93561, + 93561, + null + ], + [ + "ident-token", + "overflow", + 93562, + 93569, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 93570, + 93570, + null + ], + [ + "ident-token", + "hidden", + 93571, + 93576, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 93577, + 93577, + null + ], + [ + "ident-token", + "font-size", + 93578, + 93586, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 93587, + 93587, + null + ], + [ + "function-token", + "var(", + 93588, + 93591, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93592, + 93592, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93593, + 93593, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-font-size", + 93594, + 93614, + { + "value": "bs-progress-font-size" + } + ], + [ + ")-token", + ")", + 93615, + 93615, + null + ], + [ + "semicolon-token", + ";", + 93616, + 93616, + null + ], + [ + "ident-token", + "background-color", + 93617, + 93632, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 93633, + 93633, + null + ], + [ + "function-token", + "var(", + 93634, + 93637, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93638, + 93638, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93639, + 93639, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bg", + 93640, + 93653, + { + "value": "bs-progress-bg" + } + ], + [ + ")-token", + ")", + 93654, + 93654, + null + ], + [ + "semicolon-token", + ";", + 93655, + 93655, + null + ], + [ + "ident-token", + "border-radius", + 93656, + 93668, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 93669, + 93669, + null + ], + [ + "function-token", + "var(", + 93670, + 93673, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93674, + 93674, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93675, + 93675, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-border-radius", + 93676, + 93700, + { + "value": "bs-progress-border-radius" + } + ], + [ + ")-token", + ")", + 93701, + 93701, + null + ], + [ + "}-token", + "}", + 93702, + 93702, + null + ], + [ + "delim-token", + ".", + 93703, + 93703, + { + "value": "." + } + ], + [ + "ident-token", + "progress-bar", + 93704, + 93715, + { + "value": "progress-bar" + } + ], + [ + "{-token", + "{", + 93716, + 93716, + null + ], + [ + "ident-token", + "display", + 93717, + 93723, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 93724, + 93724, + null + ], + [ + "ident-token", + "flex", + 93725, + 93728, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 93729, + 93729, + null + ], + [ + "ident-token", + "flex-direction", + 93730, + 93743, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 93744, + 93744, + null + ], + [ + "ident-token", + "column", + 93745, + 93750, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 93751, + 93751, + null + ], + [ + "ident-token", + "justify-content", + 93752, + 93766, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 93767, + 93767, + null + ], + [ + "ident-token", + "center", + 93768, + 93773, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 93774, + 93774, + null + ], + [ + "ident-token", + "overflow", + 93775, + 93782, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 93783, + 93783, + null + ], + [ + "ident-token", + "hidden", + 93784, + 93789, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 93790, + 93790, + null + ], + [ + "ident-token", + "color", + 93791, + 93795, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 93796, + 93796, + null + ], + [ + "function-token", + "var(", + 93797, + 93800, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93801, + 93801, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93802, + 93802, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-color", + 93803, + 93823, + { + "value": "bs-progress-bar-color" + } + ], + [ + ")-token", + ")", + 93824, + 93824, + null + ], + [ + "semicolon-token", + ";", + 93825, + 93825, + null + ], + [ + "ident-token", + "text-align", + 93826, + 93835, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 93836, + 93836, + null + ], + [ + "ident-token", + "center", + 93837, + 93842, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 93843, + 93843, + null + ], + [ + "ident-token", + "white-space", + 93844, + 93854, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 93855, + 93855, + null + ], + [ + "ident-token", + "nowrap", + 93856, + 93861, + { + "value": "nowrap" + } + ], + [ + "semicolon-token", + ";", + 93862, + 93862, + null + ], + [ + "ident-token", + "background-color", + 93863, + 93878, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 93879, + 93879, + null + ], + [ + "function-token", + "var(", + 93880, + 93883, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93884, + 93884, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93885, + 93885, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-bg", + 93886, + 93903, + { + "value": "bs-progress-bar-bg" + } + ], + [ + ")-token", + ")", + 93904, + 93904, + null + ], + [ + "semicolon-token", + ";", + 93905, + 93905, + null + ], + [ + "ident-token", + "transition", + 93906, + 93915, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 93916, + 93916, + null + ], + [ + "function-token", + "var(", + 93917, + 93920, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 93921, + 93921, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 93922, + 93922, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-bar-transition", + 93923, + 93948, + { + "value": "bs-progress-bar-transition" + } + ], + [ + ")-token", + ")", + 93949, + 93949, + null + ], + [ + "}-token", + "}", + 93950, + 93950, + null + ], + [ + "at-keyword-token", + "@media", + 93951, + 93956, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 93957, + 93957, + null + ], + [ + "(-token", + "(", + 93958, + 93958, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 93959, + 93980, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 93981, + 93981, + null + ], + [ + "ident-token", + "reduce", + 93982, + 93987, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 93988, + 93988, + null + ], + [ + "{-token", + "{", + 93989, + 93989, + null + ], + [ + "delim-token", + ".", + 93990, + 93990, + { + "value": "." + } + ], + [ + "ident-token", + "progress-bar", + 93991, + 94002, + { + "value": "progress-bar" + } + ], + [ + "{-token", + "{", + 94003, + 94003, + null + ], + [ + "ident-token", + "transition", + 94004, + 94013, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 94014, + 94014, + null + ], + [ + "ident-token", + "none", + 94015, + 94018, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 94019, + 94019, + null + ], + [ + "}-token", + "}", + 94020, + 94020, + null + ], + [ + "delim-token", + ".", + 94021, + 94021, + { + "value": "." + } + ], + [ + "ident-token", + "progress-bar-striped", + 94022, + 94041, + { + "value": "progress-bar-striped" + } + ], + [ + "{-token", + "{", + 94042, + 94042, + null + ], + [ + "ident-token", + "background-image", + 94043, + 94058, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 94059, + 94059, + null + ], + [ + "function-token", + "linear-gradient(", + 94060, + 94075, + { + "value": "linear-gradient" + } + ], + [ + "dimension-token", + "45deg", + 94076, + 94080, + { + "value": 45, + "type": "integer", + "unit": "deg" + } + ], + [ + "comma-token", + ",", + 94081, + 94081, + null + ], + [ + "function-token", + "rgba(", + 94082, + 94086, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 94087, + 94089, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94090, + 94090, + null + ], + [ + "number-token", + "255", + 94091, + 94093, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94094, + 94094, + null + ], + [ + "number-token", + "255", + 94095, + 94097, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94098, + 94098, + null + ], + [ + "number-token", + ".15", + 94099, + 94101, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 94102, + 94102, + null + ], + [ + "whitespace-token", + " ", + 94103, + 94103, + null + ], + [ + "percentage-token", + "25%", + 94104, + 94106, + { + "value": 25 + } + ], + [ + "comma-token", + ",", + 94107, + 94107, + null + ], + [ + "ident-token", + "transparent", + 94108, + 94118, + { + "value": "transparent" + } + ], + [ + "whitespace-token", + " ", + 94119, + 94119, + null + ], + [ + "percentage-token", + "25%", + 94120, + 94122, + { + "value": 25 + } + ], + [ + "comma-token", + ",", + 94123, + 94123, + null + ], + [ + "ident-token", + "transparent", + 94124, + 94134, + { + "value": "transparent" + } + ], + [ + "whitespace-token", + " ", + 94135, + 94135, + null + ], + [ + "percentage-token", + "50%", + 94136, + 94138, + { + "value": 50 + } + ], + [ + "comma-token", + ",", + 94139, + 94139, + null + ], + [ + "function-token", + "rgba(", + 94140, + 94144, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 94145, + 94147, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94148, + 94148, + null + ], + [ + "number-token", + "255", + 94149, + 94151, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94152, + 94152, + null + ], + [ + "number-token", + "255", + 94153, + 94155, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94156, + 94156, + null + ], + [ + "number-token", + ".15", + 94157, + 94159, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 94160, + 94160, + null + ], + [ + "whitespace-token", + " ", + 94161, + 94161, + null + ], + [ + "percentage-token", + "50%", + 94162, + 94164, + { + "value": 50 + } + ], + [ + "comma-token", + ",", + 94165, + 94165, + null + ], + [ + "function-token", + "rgba(", + 94166, + 94170, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 94171, + 94173, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94174, + 94174, + null + ], + [ + "number-token", + "255", + 94175, + 94177, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94178, + 94178, + null + ], + [ + "number-token", + "255", + 94179, + 94181, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94182, + 94182, + null + ], + [ + "number-token", + ".15", + 94183, + 94185, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 94186, + 94186, + null + ], + [ + "whitespace-token", + " ", + 94187, + 94187, + null + ], + [ + "percentage-token", + "75%", + 94188, + 94190, + { + "value": 75 + } + ], + [ + "comma-token", + ",", + 94191, + 94191, + null + ], + [ + "ident-token", + "transparent", + 94192, + 94202, + { + "value": "transparent" + } + ], + [ + "whitespace-token", + " ", + 94203, + 94203, + null + ], + [ + "percentage-token", + "75%", + 94204, + 94206, + { + "value": 75 + } + ], + [ + "comma-token", + ",", + 94207, + 94207, + null + ], + [ + "ident-token", + "transparent", + 94208, + 94218, + { + "value": "transparent" + } + ], + [ + ")-token", + ")", + 94219, + 94219, + null + ], + [ + "semicolon-token", + ";", + 94220, + 94220, + null + ], + [ + "ident-token", + "background-size", + 94221, + 94235, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 94236, + 94236, + null + ], + [ + "function-token", + "var(", + 94237, + 94240, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 94241, + 94241, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94242, + 94242, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-height", + 94243, + 94260, + { + "value": "bs-progress-height" + } + ], + [ + ")-token", + ")", + 94261, + 94261, + null + ], + [ + "whitespace-token", + " ", + 94262, + 94262, + null + ], + [ + "function-token", + "var(", + 94263, + 94266, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 94267, + 94267, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94268, + 94268, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-progress-height", + 94269, + 94286, + { + "value": "bs-progress-height" + } + ], + [ + ")-token", + ")", + 94287, + 94287, + null + ], + [ + "}-token", + "}", + 94288, + 94288, + null + ], + [ + "delim-token", + ".", + 94289, + 94289, + { + "value": "." + } + ], + [ + "ident-token", + "progress-bar-animated", + 94290, + 94310, + { + "value": "progress-bar-animated" + } + ], + [ + "{-token", + "{", + 94311, + 94311, + null + ], + [ + "delim-token", + "-", + 94312, + 94312, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-animation", + 94313, + 94328, + { + "value": "webkit-animation" + } + ], + [ + "colon-token", + ":", + 94329, + 94329, + null + ], + [ + "dimension-token", + "1s", + 94330, + 94331, + { + "value": 1, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 94332, + 94332, + null + ], + [ + "ident-token", + "linear", + 94333, + 94338, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 94339, + 94339, + null + ], + [ + "ident-token", + "infinite", + 94340, + 94347, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 94348, + 94348, + null + ], + [ + "ident-token", + "progress-bar-stripes", + 94349, + 94368, + { + "value": "progress-bar-stripes" + } + ], + [ + "semicolon-token", + ";", + 94369, + 94369, + null + ], + [ + "ident-token", + "animation", + 94370, + 94378, + { + "value": "animation" + } + ], + [ + "colon-token", + ":", + 94379, + 94379, + null + ], + [ + "dimension-token", + "1s", + 94380, + 94381, + { + "value": 1, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 94382, + 94382, + null + ], + [ + "ident-token", + "linear", + 94383, + 94388, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 94389, + 94389, + null + ], + [ + "ident-token", + "infinite", + 94390, + 94397, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 94398, + 94398, + null + ], + [ + "ident-token", + "progress-bar-stripes", + 94399, + 94418, + { + "value": "progress-bar-stripes" + } + ], + [ + "}-token", + "}", + 94419, + 94419, + null + ], + [ + "at-keyword-token", + "@media", + 94420, + 94425, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 94426, + 94426, + null + ], + [ + "(-token", + "(", + 94427, + 94427, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 94428, + 94449, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 94450, + 94450, + null + ], + [ + "ident-token", + "reduce", + 94451, + 94456, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 94457, + 94457, + null + ], + [ + "{-token", + "{", + 94458, + 94458, + null + ], + [ + "delim-token", + ".", + 94459, + 94459, + { + "value": "." + } + ], + [ + "ident-token", + "progress-bar-animated", + 94460, + 94480, + { + "value": "progress-bar-animated" + } + ], + [ + "{-token", + "{", + 94481, + 94481, + null + ], + [ + "delim-token", + "-", + 94482, + 94482, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-animation", + 94483, + 94498, + { + "value": "webkit-animation" + } + ], + [ + "colon-token", + ":", + 94499, + 94499, + null + ], + [ + "ident-token", + "none", + 94500, + 94503, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 94504, + 94504, + null + ], + [ + "ident-token", + "animation", + 94505, + 94513, + { + "value": "animation" + } + ], + [ + "colon-token", + ":", + 94514, + 94514, + null + ], + [ + "ident-token", + "none", + 94515, + 94518, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 94519, + 94519, + null + ], + [ + "}-token", + "}", + 94520, + 94520, + null + ], + [ + "delim-token", + ".", + 94521, + 94521, + { + "value": "." + } + ], + [ + "ident-token", + "list-group", + 94522, + 94531, + { + "value": "list-group" + } + ], + [ + "{-token", + "{", + 94532, + 94532, + null + ], + [ + "delim-token", + "-", + 94533, + 94533, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94534, + 94534, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-color", + 94535, + 94553, + { + "value": "bs-list-group-color" + } + ], + [ + "colon-token", + ":", + 94554, + 94554, + null + ], + [ + "hash-token", + "#212529", + 94555, + 94561, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 94562, + 94562, + null + ], + [ + "delim-token", + "-", + 94563, + 94563, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94564, + 94564, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-bg", + 94565, + 94580, + { + "value": "bs-list-group-bg" + } + ], + [ + "colon-token", + ":", + 94581, + 94581, + null + ], + [ + "hash-token", + "#fff", + 94582, + 94585, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 94586, + 94586, + null + ], + [ + "delim-token", + "-", + 94587, + 94587, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94588, + 94588, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-color", + 94589, + 94614, + { + "value": "bs-list-group-border-color" + } + ], + [ + "colon-token", + ":", + 94615, + 94615, + null + ], + [ + "function-token", + "rgba(", + 94616, + 94620, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 94621, + 94621, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94622, + 94622, + null + ], + [ + "whitespace-token", + " ", + 94623, + 94623, + null + ], + [ + "number-token", + "0", + 94624, + 94624, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94625, + 94625, + null + ], + [ + "whitespace-token", + " ", + 94626, + 94626, + null + ], + [ + "number-token", + "0", + 94627, + 94627, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 94628, + 94628, + null + ], + [ + "whitespace-token", + " ", + 94629, + 94629, + null + ], + [ + "number-token", + "0.125", + 94630, + 94634, + { + "value": 0.125, + "type": "number" + } + ], + [ + ")-token", + ")", + 94635, + 94635, + null + ], + [ + "semicolon-token", + ";", + 94636, + 94636, + null + ], + [ + "delim-token", + "-", + 94637, + 94637, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94638, + 94638, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 94639, + 94664, + { + "value": "bs-list-group-border-width" + } + ], + [ + "colon-token", + ":", + 94665, + 94665, + null + ], + [ + "dimension-token", + "1px", + 94666, + 94668, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 94669, + 94669, + null + ], + [ + "delim-token", + "-", + 94670, + 94670, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94671, + 94671, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 94672, + 94698, + { + "value": "bs-list-group-border-radius" + } + ], + [ + "colon-token", + ":", + 94699, + 94699, + null + ], + [ + "dimension-token", + "0.375rem", + 94700, + 94707, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 94708, + 94708, + null + ], + [ + "delim-token", + "-", + 94709, + 94709, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94710, + 94710, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-item-padding-x", + 94711, + 94738, + { + "value": "bs-list-group-item-padding-x" + } + ], + [ + "colon-token", + ":", + 94739, + 94739, + null + ], + [ + "dimension-token", + "1rem", + 94740, + 94743, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 94744, + 94744, + null + ], + [ + "delim-token", + "-", + 94745, + 94745, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94746, + 94746, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-item-padding-y", + 94747, + 94774, + { + "value": "bs-list-group-item-padding-y" + } + ], + [ + "colon-token", + ":", + 94775, + 94775, + null + ], + [ + "dimension-token", + "0.5rem", + 94776, + 94781, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 94782, + 94782, + null + ], + [ + "delim-token", + "-", + 94783, + 94783, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94784, + 94784, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-color", + 94785, + 94810, + { + "value": "bs-list-group-action-color" + } + ], + [ + "colon-token", + ":", + 94811, + 94811, + null + ], + [ + "hash-token", + "#495057", + 94812, + 94818, + { + "value": "495057", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 94819, + 94819, + null + ], + [ + "delim-token", + "-", + 94820, + 94820, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94821, + 94821, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-hover-color", + 94822, + 94853, + { + "value": "bs-list-group-action-hover-color" + } + ], + [ + "colon-token", + ":", + 94854, + 94854, + null + ], + [ + "hash-token", + "#495057", + 94855, + 94861, + { + "value": "495057", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 94862, + 94862, + null + ], + [ + "delim-token", + "-", + 94863, + 94863, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94864, + 94864, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-hover-bg", + 94865, + 94893, + { + "value": "bs-list-group-action-hover-bg" + } + ], + [ + "colon-token", + ":", + 94894, + 94894, + null + ], + [ + "hash-token", + "#f8f9fa", + 94895, + 94901, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 94902, + 94902, + null + ], + [ + "delim-token", + "-", + 94903, + 94903, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94904, + 94904, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-active-color", + 94905, + 94937, + { + "value": "bs-list-group-action-active-color" + } + ], + [ + "colon-token", + ":", + 94938, + 94938, + null + ], + [ + "hash-token", + "#212529", + 94939, + 94945, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 94946, + 94946, + null + ], + [ + "delim-token", + "-", + 94947, + 94947, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94948, + 94948, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-active-bg", + 94949, + 94978, + { + "value": "bs-list-group-action-active-bg" + } + ], + [ + "colon-token", + ":", + 94979, + 94979, + null + ], + [ + "hash-token", + "#e9ecef", + 94980, + 94986, + { + "value": "e9ecef", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 94987, + 94987, + null + ], + [ + "delim-token", + "-", + 94988, + 94988, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 94989, + 94989, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-disabled-color", + 94990, + 95017, + { + "value": "bs-list-group-disabled-color" + } + ], + [ + "colon-token", + ":", + 95018, + 95018, + null + ], + [ + "hash-token", + "#6c757d", + 95019, + 95025, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 95026, + 95026, + null + ], + [ + "delim-token", + "-", + 95027, + 95027, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95028, + 95028, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-disabled-bg", + 95029, + 95053, + { + "value": "bs-list-group-disabled-bg" + } + ], + [ + "colon-token", + ":", + 95054, + 95054, + null + ], + [ + "hash-token", + "#fff", + 95055, + 95058, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 95059, + 95059, + null + ], + [ + "delim-token", + "-", + 95060, + 95060, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95061, + 95061, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-color", + 95062, + 95087, + { + "value": "bs-list-group-active-color" + } + ], + [ + "colon-token", + ":", + 95088, + 95088, + null + ], + [ + "hash-token", + "#fff", + 95089, + 95092, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 95093, + 95093, + null + ], + [ + "delim-token", + "-", + 95094, + 95094, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95095, + 95095, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-bg", + 95096, + 95118, + { + "value": "bs-list-group-active-bg" + } + ], + [ + "colon-token", + ":", + 95119, + 95119, + null + ], + [ + "hash-token", + "#0d6efd", + 95120, + 95126, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 95127, + 95127, + null + ], + [ + "delim-token", + "-", + 95128, + 95128, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95129, + 95129, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-border-color", + 95130, + 95162, + { + "value": "bs-list-group-active-border-color" + } + ], + [ + "colon-token", + ":", + 95163, + 95163, + null + ], + [ + "hash-token", + "#0d6efd", + 95164, + 95170, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 95171, + 95171, + null + ], + [ + "ident-token", + "display", + 95172, + 95178, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 95179, + 95179, + null + ], + [ + "ident-token", + "flex", + 95180, + 95183, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 95184, + 95184, + null + ], + [ + "ident-token", + "flex-direction", + 95185, + 95198, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 95199, + 95199, + null + ], + [ + "ident-token", + "column", + 95200, + 95205, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 95206, + 95206, + null + ], + [ + "ident-token", + "padding-left", + 95207, + 95218, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 95219, + 95219, + null + ], + [ + "number-token", + "0", + 95220, + 95220, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 95221, + 95221, + null + ], + [ + "ident-token", + "margin-bottom", + 95222, + 95234, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 95235, + 95235, + null + ], + [ + "number-token", + "0", + 95236, + 95236, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 95237, + 95237, + null + ], + [ + "ident-token", + "border-radius", + 95238, + 95250, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 95251, + 95251, + null + ], + [ + "function-token", + "var(", + 95252, + 95255, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95256, + 95256, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95257, + 95257, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 95258, + 95284, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 95285, + 95285, + null + ], + [ + "}-token", + "}", + 95286, + 95286, + null + ], + [ + "delim-token", + ".", + 95287, + 95287, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-numbered", + 95288, + 95306, + { + "value": "list-group-numbered" + } + ], + [ + "{-token", + "{", + 95307, + 95307, + null + ], + [ + "ident-token", + "list-style-type", + 95308, + 95322, + { + "value": "list-style-type" + } + ], + [ + "colon-token", + ":", + 95323, + 95323, + null + ], + [ + "ident-token", + "none", + 95324, + 95327, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 95328, + 95328, + null + ], + [ + "ident-token", + "counter-reset", + 95329, + 95341, + { + "value": "counter-reset" + } + ], + [ + "colon-token", + ":", + 95342, + 95342, + null + ], + [ + "ident-token", + "section", + 95343, + 95349, + { + "value": "section" + } + ], + [ + "}-token", + "}", + 95350, + 95350, + null + ], + [ + "delim-token", + ".", + 95351, + 95351, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-numbered", + 95352, + 95370, + { + "value": "list-group-numbered" + } + ], + [ + "delim-token", + ">", + 95371, + 95371, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 95372, + 95372, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 95373, + 95387, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 95388, + 95388, + null + ], + [ + "colon-token", + ":", + 95389, + 95389, + null + ], + [ + "ident-token", + "before", + 95390, + 95395, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 95396, + 95396, + null + ], + [ + "ident-token", + "content", + 95397, + 95403, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 95404, + 95404, + null + ], + [ + "function-token", + "counters(", + 95405, + 95413, + { + "value": "counters" + } + ], + [ + "ident-token", + "section", + 95414, + 95420, + { + "value": "section" + } + ], + [ + "comma-token", + ",", + 95421, + 95421, + null + ], + [ + "whitespace-token", + " ", + 95422, + 95422, + null + ], + [ + "string-token", + "\".\"", + 95423, + 95425, + { + "value": "." + } + ], + [ + ")-token", + ")", + 95426, + 95426, + null + ], + [ + "whitespace-token", + " ", + 95427, + 95427, + null + ], + [ + "string-token", + "\". \"", + 95428, + 95431, + { + "value": ". " + } + ], + [ + "semicolon-token", + ";", + 95432, + 95432, + null + ], + [ + "ident-token", + "counter-increment", + 95433, + 95449, + { + "value": "counter-increment" + } + ], + [ + "colon-token", + ":", + 95450, + 95450, + null + ], + [ + "ident-token", + "section", + 95451, + 95457, + { + "value": "section" + } + ], + [ + "}-token", + "}", + 95458, + 95458, + null + ], + [ + "delim-token", + ".", + 95459, + 95459, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 95460, + 95481, + { + "value": "list-group-item-action" + } + ], + [ + "{-token", + "{", + 95482, + 95482, + null + ], + [ + "ident-token", + "width", + 95483, + 95487, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 95488, + 95488, + null + ], + [ + "percentage-token", + "100%", + 95489, + 95492, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 95493, + 95493, + null + ], + [ + "ident-token", + "color", + 95494, + 95498, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 95499, + 95499, + null + ], + [ + "function-token", + "var(", + 95500, + 95503, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95504, + 95504, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95505, + 95505, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-color", + 95506, + 95531, + { + "value": "bs-list-group-action-color" + } + ], + [ + ")-token", + ")", + 95532, + 95532, + null + ], + [ + "semicolon-token", + ";", + 95533, + 95533, + null + ], + [ + "ident-token", + "text-align", + 95534, + 95543, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 95544, + 95544, + null + ], + [ + "ident-token", + "inherit", + 95545, + 95551, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 95552, + 95552, + null + ], + [ + "delim-token", + ".", + 95553, + 95553, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 95554, + 95575, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 95576, + 95576, + null + ], + [ + "ident-token", + "focus", + 95577, + 95581, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 95582, + 95582, + null + ], + [ + "delim-token", + ".", + 95583, + 95583, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 95584, + 95605, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 95606, + 95606, + null + ], + [ + "ident-token", + "hover", + 95607, + 95611, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 95612, + 95612, + null + ], + [ + "ident-token", + "z-index", + 95613, + 95619, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 95620, + 95620, + null + ], + [ + "number-token", + "1", + 95621, + 95621, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 95622, + 95622, + null + ], + [ + "ident-token", + "color", + 95623, + 95627, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 95628, + 95628, + null + ], + [ + "function-token", + "var(", + 95629, + 95632, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95633, + 95633, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95634, + 95634, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-hover-color", + 95635, + 95666, + { + "value": "bs-list-group-action-hover-color" + } + ], + [ + ")-token", + ")", + 95667, + 95667, + null + ], + [ + "semicolon-token", + ";", + 95668, + 95668, + null + ], + [ + "ident-token", + "text-decoration", + 95669, + 95683, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 95684, + 95684, + null + ], + [ + "ident-token", + "none", + 95685, + 95688, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 95689, + 95689, + null + ], + [ + "ident-token", + "background-color", + 95690, + 95705, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 95706, + 95706, + null + ], + [ + "function-token", + "var(", + 95707, + 95710, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95711, + 95711, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95712, + 95712, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-hover-bg", + 95713, + 95741, + { + "value": "bs-list-group-action-hover-bg" + } + ], + [ + ")-token", + ")", + 95742, + 95742, + null + ], + [ + "}-token", + "}", + 95743, + 95743, + null + ], + [ + "delim-token", + ".", + 95744, + 95744, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 95745, + 95766, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 95767, + 95767, + null + ], + [ + "ident-token", + "active", + 95768, + 95773, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 95774, + 95774, + null + ], + [ + "ident-token", + "color", + 95775, + 95779, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 95780, + 95780, + null + ], + [ + "function-token", + "var(", + 95781, + 95784, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95785, + 95785, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95786, + 95786, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-active-color", + 95787, + 95819, + { + "value": "bs-list-group-action-active-color" + } + ], + [ + ")-token", + ")", + 95820, + 95820, + null + ], + [ + "semicolon-token", + ";", + 95821, + 95821, + null + ], + [ + "ident-token", + "background-color", + 95822, + 95837, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 95838, + 95838, + null + ], + [ + "function-token", + "var(", + 95839, + 95842, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95843, + 95843, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95844, + 95844, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-action-active-bg", + 95845, + 95874, + { + "value": "bs-list-group-action-active-bg" + } + ], + [ + ")-token", + ")", + 95875, + 95875, + null + ], + [ + "}-token", + "}", + 95876, + 95876, + null + ], + [ + "delim-token", + ".", + 95877, + 95877, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 95878, + 95892, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 95893, + 95893, + null + ], + [ + "ident-token", + "position", + 95894, + 95901, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 95902, + 95902, + null + ], + [ + "ident-token", + "relative", + 95903, + 95910, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 95911, + 95911, + null + ], + [ + "ident-token", + "display", + 95912, + 95918, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 95919, + 95919, + null + ], + [ + "ident-token", + "block", + 95920, + 95924, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 95925, + 95925, + null + ], + [ + "ident-token", + "padding", + 95926, + 95932, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 95933, + 95933, + null + ], + [ + "function-token", + "var(", + 95934, + 95937, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95938, + 95938, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95939, + 95939, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-item-padding-y", + 95940, + 95967, + { + "value": "bs-list-group-item-padding-y" + } + ], + [ + ")-token", + ")", + 95968, + 95968, + null + ], + [ + "whitespace-token", + " ", + 95969, + 95969, + null + ], + [ + "function-token", + "var(", + 95970, + 95973, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 95974, + 95974, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 95975, + 95975, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-item-padding-x", + 95976, + 96003, + { + "value": "bs-list-group-item-padding-x" + } + ], + [ + ")-token", + ")", + 96004, + 96004, + null + ], + [ + "semicolon-token", + ";", + 96005, + 96005, + null + ], + [ + "ident-token", + "color", + 96006, + 96010, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 96011, + 96011, + null + ], + [ + "function-token", + "var(", + 96012, + 96015, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96016, + 96016, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96017, + 96017, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-color", + 96018, + 96036, + { + "value": "bs-list-group-color" + } + ], + [ + ")-token", + ")", + 96037, + 96037, + null + ], + [ + "semicolon-token", + ";", + 96038, + 96038, + null + ], + [ + "ident-token", + "text-decoration", + 96039, + 96053, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 96054, + 96054, + null + ], + [ + "ident-token", + "none", + 96055, + 96058, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 96059, + 96059, + null + ], + [ + "ident-token", + "background-color", + 96060, + 96075, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 96076, + 96076, + null + ], + [ + "function-token", + "var(", + 96077, + 96080, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96081, + 96081, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96082, + 96082, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-bg", + 96083, + 96098, + { + "value": "bs-list-group-bg" + } + ], + [ + ")-token", + ")", + 96099, + 96099, + null + ], + [ + "semicolon-token", + ";", + 96100, + 96100, + null + ], + [ + "ident-token", + "border", + 96101, + 96106, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 96107, + 96107, + null + ], + [ + "function-token", + "var(", + 96108, + 96111, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96112, + 96112, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96113, + 96113, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 96114, + 96139, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 96140, + 96140, + null + ], + [ + "whitespace-token", + " ", + 96141, + 96141, + null + ], + [ + "ident-token", + "solid", + 96142, + 96146, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 96147, + 96147, + null + ], + [ + "function-token", + "var(", + 96148, + 96151, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96152, + 96152, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96153, + 96153, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-color", + 96154, + 96179, + { + "value": "bs-list-group-border-color" + } + ], + [ + ")-token", + ")", + 96180, + 96180, + null + ], + [ + "}-token", + "}", + 96181, + 96181, + null + ], + [ + "delim-token", + ".", + 96182, + 96182, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96183, + 96197, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 96198, + 96198, + null + ], + [ + "ident-token", + "first-child", + 96199, + 96209, + { + "value": "first-child" + } + ], + [ + "{-token", + "{", + 96210, + 96210, + null + ], + [ + "ident-token", + "border-top-left-radius", + 96211, + 96232, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 96233, + 96233, + null + ], + [ + "ident-token", + "inherit", + 96234, + 96240, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 96241, + 96241, + null + ], + [ + "ident-token", + "border-top-right-radius", + 96242, + 96264, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 96265, + 96265, + null + ], + [ + "ident-token", + "inherit", + 96266, + 96272, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 96273, + 96273, + null + ], + [ + "delim-token", + ".", + 96274, + 96274, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96275, + 96289, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 96290, + 96290, + null + ], + [ + "ident-token", + "last-child", + 96291, + 96300, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 96301, + 96301, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 96302, + 96327, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 96328, + 96328, + null + ], + [ + "ident-token", + "inherit", + 96329, + 96335, + { + "value": "inherit" + } + ], + [ + "semicolon-token", + ";", + 96336, + 96336, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 96337, + 96361, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 96362, + 96362, + null + ], + [ + "ident-token", + "inherit", + 96363, + 96369, + { + "value": "inherit" + } + ], + [ + "}-token", + "}", + 96370, + 96370, + null + ], + [ + "delim-token", + ".", + 96371, + 96371, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96372, + 96386, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 96387, + 96387, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 96388, + 96395, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 96396, + 96396, + null + ], + [ + "delim-token", + ".", + 96397, + 96397, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96398, + 96412, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 96413, + 96413, + null + ], + [ + "ident-token", + "disabled", + 96414, + 96421, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 96422, + 96422, + null + ], + [ + "ident-token", + "color", + 96423, + 96427, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 96428, + 96428, + null + ], + [ + "function-token", + "var(", + 96429, + 96432, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96433, + 96433, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96434, + 96434, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-disabled-color", + 96435, + 96462, + { + "value": "bs-list-group-disabled-color" + } + ], + [ + ")-token", + ")", + 96463, + 96463, + null + ], + [ + "semicolon-token", + ";", + 96464, + 96464, + null + ], + [ + "ident-token", + "pointer-events", + 96465, + 96478, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 96479, + 96479, + null + ], + [ + "ident-token", + "none", + 96480, + 96483, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 96484, + 96484, + null + ], + [ + "ident-token", + "background-color", + 96485, + 96500, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 96501, + 96501, + null + ], + [ + "function-token", + "var(", + 96502, + 96505, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96506, + 96506, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96507, + 96507, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-disabled-bg", + 96508, + 96532, + { + "value": "bs-list-group-disabled-bg" + } + ], + [ + ")-token", + ")", + 96533, + 96533, + null + ], + [ + "}-token", + "}", + 96534, + 96534, + null + ], + [ + "delim-token", + ".", + 96535, + 96535, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96536, + 96550, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 96551, + 96551, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 96552, + 96557, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 96558, + 96558, + null + ], + [ + "ident-token", + "z-index", + 96559, + 96565, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 96566, + 96566, + null + ], + [ + "number-token", + "2", + 96567, + 96567, + { + "value": 2, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 96568, + 96568, + null + ], + [ + "ident-token", + "color", + 96569, + 96573, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 96574, + 96574, + null + ], + [ + "function-token", + "var(", + 96575, + 96578, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96579, + 96579, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96580, + 96580, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-color", + 96581, + 96606, + { + "value": "bs-list-group-active-color" + } + ], + [ + ")-token", + ")", + 96607, + 96607, + null + ], + [ + "semicolon-token", + ";", + 96608, + 96608, + null + ], + [ + "ident-token", + "background-color", + 96609, + 96624, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 96625, + 96625, + null + ], + [ + "function-token", + "var(", + 96626, + 96629, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96630, + 96630, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96631, + 96631, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-bg", + 96632, + 96654, + { + "value": "bs-list-group-active-bg" + } + ], + [ + ")-token", + ")", + 96655, + 96655, + null + ], + [ + "semicolon-token", + ";", + 96656, + 96656, + null + ], + [ + "ident-token", + "border-color", + 96657, + 96668, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 96669, + 96669, + null + ], + [ + "function-token", + "var(", + 96670, + 96673, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96674, + 96674, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96675, + 96675, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-active-border-color", + 96676, + 96708, + { + "value": "bs-list-group-active-border-color" + } + ], + [ + ")-token", + ")", + 96709, + 96709, + null + ], + [ + "}-token", + "}", + 96710, + 96710, + null + ], + [ + "delim-token", + ".", + 96711, + 96711, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96712, + 96726, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 96727, + 96727, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 96728, + 96728, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96729, + 96743, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 96744, + 96744, + null + ], + [ + "ident-token", + "border-top-width", + 96745, + 96760, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 96761, + 96761, + null + ], + [ + "number-token", + "0", + 96762, + 96762, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 96763, + 96763, + null + ], + [ + "delim-token", + ".", + 96764, + 96764, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96765, + 96779, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 96780, + 96780, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 96781, + 96781, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96782, + 96796, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 96797, + 96797, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 96798, + 96803, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 96804, + 96804, + null + ], + [ + "ident-token", + "margin-top", + 96805, + 96814, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 96815, + 96815, + null + ], + [ + "function-token", + "calc(", + 96816, + 96820, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 96821, + 96822, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 96823, + 96823, + null + ], + [ + "delim-token", + "*", + 96824, + 96824, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 96825, + 96825, + null + ], + [ + "function-token", + "var(", + 96826, + 96829, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96830, + 96830, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96831, + 96831, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 96832, + 96857, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 96858, + 96858, + null + ], + [ + ")-token", + ")", + 96859, + 96859, + null + ], + [ + "semicolon-token", + ";", + 96860, + 96860, + null + ], + [ + "ident-token", + "border-top-width", + 96861, + 96876, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 96877, + 96877, + null + ], + [ + "function-token", + "var(", + 96878, + 96881, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 96882, + 96882, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 96883, + 96883, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 96884, + 96909, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 96910, + 96910, + null + ], + [ + "}-token", + "}", + 96911, + 96911, + null + ], + [ + "delim-token", + ".", + 96912, + 96912, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 96913, + 96933, + { + "value": "list-group-horizontal" + } + ], + [ + "{-token", + "{", + 96934, + 96934, + null + ], + [ + "ident-token", + "flex-direction", + 96935, + 96948, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 96949, + 96949, + null + ], + [ + "ident-token", + "row", + 96950, + 96952, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 96953, + 96953, + null + ], + [ + "delim-token", + ".", + 96954, + 96954, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 96955, + 96975, + { + "value": "list-group-horizontal" + } + ], + [ + "delim-token", + ">", + 96976, + 96976, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 96977, + 96977, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 96978, + 96992, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 96993, + 96993, + null + ], + [ + "ident-token", + "first-child", + 96994, + 97004, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 97005, + 97005, + null + ], + [ + "function-token", + "not(", + 97006, + 97009, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 97010, + 97010, + null + ], + [ + "ident-token", + "last-child", + 97011, + 97020, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 97021, + 97021, + null + ], + [ + "{-token", + "{", + 97022, + 97022, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 97023, + 97047, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 97048, + 97048, + null + ], + [ + "function-token", + "var(", + 97049, + 97052, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97053, + 97053, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97054, + 97054, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 97055, + 97081, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 97082, + 97082, + null + ], + [ + "semicolon-token", + ";", + 97083, + 97083, + null + ], + [ + "ident-token", + "border-top-right-radius", + 97084, + 97106, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 97107, + 97107, + null + ], + [ + "number-token", + "0", + 97108, + 97108, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 97109, + 97109, + null + ], + [ + "delim-token", + ".", + 97110, + 97110, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 97111, + 97131, + { + "value": "list-group-horizontal" + } + ], + [ + "delim-token", + ">", + 97132, + 97132, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97133, + 97133, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97134, + 97148, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 97149, + 97149, + null + ], + [ + "ident-token", + "last-child", + 97150, + 97159, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 97160, + 97160, + null + ], + [ + "function-token", + "not(", + 97161, + 97164, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 97165, + 97165, + null + ], + [ + "ident-token", + "first-child", + 97166, + 97176, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 97177, + 97177, + null + ], + [ + "{-token", + "{", + 97178, + 97178, + null + ], + [ + "ident-token", + "border-top-right-radius", + 97179, + 97201, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 97202, + 97202, + null + ], + [ + "function-token", + "var(", + 97203, + 97206, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97207, + 97207, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97208, + 97208, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 97209, + 97235, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 97236, + 97236, + null + ], + [ + "semicolon-token", + ";", + 97237, + 97237, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 97238, + 97262, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 97263, + 97263, + null + ], + [ + "number-token", + "0", + 97264, + 97264, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 97265, + 97265, + null + ], + [ + "delim-token", + ".", + 97266, + 97266, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 97267, + 97287, + { + "value": "list-group-horizontal" + } + ], + [ + "delim-token", + ">", + 97288, + 97288, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97289, + 97289, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97290, + 97304, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 97305, + 97305, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 97306, + 97311, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 97312, + 97312, + null + ], + [ + "ident-token", + "margin-top", + 97313, + 97322, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 97323, + 97323, + null + ], + [ + "number-token", + "0", + 97324, + 97324, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 97325, + 97325, + null + ], + [ + "delim-token", + ".", + 97326, + 97326, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 97327, + 97347, + { + "value": "list-group-horizontal" + } + ], + [ + "delim-token", + ">", + 97348, + 97348, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97349, + 97349, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97350, + 97364, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 97365, + 97365, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 97366, + 97366, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97367, + 97381, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 97382, + 97382, + null + ], + [ + "ident-token", + "border-top-width", + 97383, + 97398, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 97399, + 97399, + null + ], + [ + "function-token", + "var(", + 97400, + 97403, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97404, + 97404, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97405, + 97405, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 97406, + 97431, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 97432, + 97432, + null + ], + [ + "semicolon-token", + ";", + 97433, + 97433, + null + ], + [ + "ident-token", + "border-left-width", + 97434, + 97450, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 97451, + 97451, + null + ], + [ + "number-token", + "0", + 97452, + 97452, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 97453, + 97453, + null + ], + [ + "delim-token", + ".", + 97454, + 97454, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal", + 97455, + 97475, + { + "value": "list-group-horizontal" + } + ], + [ + "delim-token", + ">", + 97476, + 97476, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97477, + 97477, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97478, + 97492, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 97493, + 97493, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 97494, + 97494, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97495, + 97509, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 97510, + 97510, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 97511, + 97516, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 97517, + 97517, + null + ], + [ + "ident-token", + "margin-left", + 97518, + 97528, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 97529, + 97529, + null + ], + [ + "function-token", + "calc(", + 97530, + 97534, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 97535, + 97536, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 97537, + 97537, + null + ], + [ + "delim-token", + "*", + 97538, + 97538, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 97539, + 97539, + null + ], + [ + "function-token", + "var(", + 97540, + 97543, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97544, + 97544, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97545, + 97545, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 97546, + 97571, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 97572, + 97572, + null + ], + [ + ")-token", + ")", + 97573, + 97573, + null + ], + [ + "semicolon-token", + ";", + 97574, + 97574, + null + ], + [ + "ident-token", + "border-left-width", + 97575, + 97591, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 97592, + 97592, + null + ], + [ + "function-token", + "var(", + 97593, + 97596, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97597, + 97597, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97598, + 97598, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 97599, + 97624, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 97625, + 97625, + null + ], + [ + "}-token", + "}", + 97626, + 97626, + null + ], + [ + "at-keyword-token", + "@media", + 97627, + 97632, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 97633, + 97633, + null + ], + [ + "(-token", + "(", + 97634, + 97634, + null + ], + [ + "ident-token", + "min-width", + 97635, + 97643, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 97644, + 97644, + null + ], + [ + "dimension-token", + "576px", + 97645, + 97649, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 97650, + 97650, + null + ], + [ + "{-token", + "{", + 97651, + 97651, + null + ], + [ + "delim-token", + ".", + 97652, + 97652, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 97653, + 97676, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "{-token", + "{", + 97677, + 97677, + null + ], + [ + "ident-token", + "flex-direction", + 97678, + 97691, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 97692, + 97692, + null + ], + [ + "ident-token", + "row", + 97693, + 97695, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 97696, + 97696, + null + ], + [ + "delim-token", + ".", + 97697, + 97697, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 97698, + 97721, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "delim-token", + ">", + 97722, + 97722, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97723, + 97723, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97724, + 97738, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 97739, + 97739, + null + ], + [ + "ident-token", + "first-child", + 97740, + 97750, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 97751, + 97751, + null + ], + [ + "function-token", + "not(", + 97752, + 97755, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 97756, + 97756, + null + ], + [ + "ident-token", + "last-child", + 97757, + 97766, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 97767, + 97767, + null + ], + [ + "{-token", + "{", + 97768, + 97768, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 97769, + 97793, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 97794, + 97794, + null + ], + [ + "function-token", + "var(", + 97795, + 97798, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97799, + 97799, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97800, + 97800, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 97801, + 97827, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 97828, + 97828, + null + ], + [ + "semicolon-token", + ";", + 97829, + 97829, + null + ], + [ + "ident-token", + "border-top-right-radius", + 97830, + 97852, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 97853, + 97853, + null + ], + [ + "number-token", + "0", + 97854, + 97854, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 97855, + 97855, + null + ], + [ + "delim-token", + ".", + 97856, + 97856, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 97857, + 97880, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "delim-token", + ">", + 97881, + 97881, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 97882, + 97882, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 97883, + 97897, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 97898, + 97898, + null + ], + [ + "ident-token", + "last-child", + 97899, + 97908, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 97909, + 97909, + null + ], + [ + "function-token", + "not(", + 97910, + 97913, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 97914, + 97914, + null + ], + [ + "ident-token", + "first-child", + 97915, + 97925, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 97926, + 97926, + null + ], + [ + "{-token", + "{", + 97927, + 97927, + null + ], + [ + "ident-token", + "border-top-right-radius", + 97928, + 97950, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 97951, + 97951, + null + ], + [ + "function-token", + "var(", + 97952, + 97955, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 97956, + 97956, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 97957, + 97957, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 97958, + 97984, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 97985, + 97985, + null + ], + [ + "semicolon-token", + ";", + 97986, + 97986, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 97987, + 98011, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 98012, + 98012, + null + ], + [ + "number-token", + "0", + 98013, + 98013, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98014, + 98014, + null + ], + [ + "delim-token", + ".", + 98015, + 98015, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 98016, + 98039, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "delim-token", + ">", + 98040, + 98040, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98041, + 98041, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98042, + 98056, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 98057, + 98057, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 98058, + 98063, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 98064, + 98064, + null + ], + [ + "ident-token", + "margin-top", + 98065, + 98074, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 98075, + 98075, + null + ], + [ + "number-token", + "0", + 98076, + 98076, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98077, + 98077, + null + ], + [ + "delim-token", + ".", + 98078, + 98078, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 98079, + 98102, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "delim-token", + ">", + 98103, + 98103, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98104, + 98104, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98105, + 98119, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 98120, + 98120, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 98121, + 98121, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98122, + 98136, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 98137, + 98137, + null + ], + [ + "ident-token", + "border-top-width", + 98138, + 98153, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 98154, + 98154, + null + ], + [ + "function-token", + "var(", + 98155, + 98158, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98159, + 98159, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98160, + 98160, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 98161, + 98186, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 98187, + 98187, + null + ], + [ + "semicolon-token", + ";", + 98188, + 98188, + null + ], + [ + "ident-token", + "border-left-width", + 98189, + 98205, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 98206, + 98206, + null + ], + [ + "number-token", + "0", + 98207, + 98207, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98208, + 98208, + null + ], + [ + "delim-token", + ".", + 98209, + 98209, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-sm", + 98210, + 98233, + { + "value": "list-group-horizontal-sm" + } + ], + [ + "delim-token", + ">", + 98234, + 98234, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98235, + 98235, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98236, + 98250, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 98251, + 98251, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 98252, + 98252, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98253, + 98267, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 98268, + 98268, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 98269, + 98274, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 98275, + 98275, + null + ], + [ + "ident-token", + "margin-left", + 98276, + 98286, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 98287, + 98287, + null + ], + [ + "function-token", + "calc(", + 98288, + 98292, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 98293, + 98294, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 98295, + 98295, + null + ], + [ + "delim-token", + "*", + 98296, + 98296, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 98297, + 98297, + null + ], + [ + "function-token", + "var(", + 98298, + 98301, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98302, + 98302, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98303, + 98303, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 98304, + 98329, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 98330, + 98330, + null + ], + [ + ")-token", + ")", + 98331, + 98331, + null + ], + [ + "semicolon-token", + ";", + 98332, + 98332, + null + ], + [ + "ident-token", + "border-left-width", + 98333, + 98349, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 98350, + 98350, + null + ], + [ + "function-token", + "var(", + 98351, + 98354, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98355, + 98355, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98356, + 98356, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 98357, + 98382, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 98383, + 98383, + null + ], + [ + "}-token", + "}", + 98384, + 98384, + null + ], + [ + "}-token", + "}", + 98385, + 98385, + null + ], + [ + "at-keyword-token", + "@media", + 98386, + 98391, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 98392, + 98392, + null + ], + [ + "(-token", + "(", + 98393, + 98393, + null + ], + [ + "ident-token", + "min-width", + 98394, + 98402, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 98403, + 98403, + null + ], + [ + "dimension-token", + "768px", + 98404, + 98408, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 98409, + 98409, + null + ], + [ + "{-token", + "{", + 98410, + 98410, + null + ], + [ + "delim-token", + ".", + 98411, + 98411, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98412, + 98435, + { + "value": "list-group-horizontal-md" + } + ], + [ + "{-token", + "{", + 98436, + 98436, + null + ], + [ + "ident-token", + "flex-direction", + 98437, + 98450, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 98451, + 98451, + null + ], + [ + "ident-token", + "row", + 98452, + 98454, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 98455, + 98455, + null + ], + [ + "delim-token", + ".", + 98456, + 98456, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98457, + 98480, + { + "value": "list-group-horizontal-md" + } + ], + [ + "delim-token", + ">", + 98481, + 98481, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98482, + 98482, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98483, + 98497, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 98498, + 98498, + null + ], + [ + "ident-token", + "first-child", + 98499, + 98509, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 98510, + 98510, + null + ], + [ + "function-token", + "not(", + 98511, + 98514, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 98515, + 98515, + null + ], + [ + "ident-token", + "last-child", + 98516, + 98525, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 98526, + 98526, + null + ], + [ + "{-token", + "{", + 98527, + 98527, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 98528, + 98552, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 98553, + 98553, + null + ], + [ + "function-token", + "var(", + 98554, + 98557, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98558, + 98558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98559, + 98559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 98560, + 98586, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 98587, + 98587, + null + ], + [ + "semicolon-token", + ";", + 98588, + 98588, + null + ], + [ + "ident-token", + "border-top-right-radius", + 98589, + 98611, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 98612, + 98612, + null + ], + [ + "number-token", + "0", + 98613, + 98613, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98614, + 98614, + null + ], + [ + "delim-token", + ".", + 98615, + 98615, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98616, + 98639, + { + "value": "list-group-horizontal-md" + } + ], + [ + "delim-token", + ">", + 98640, + 98640, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98641, + 98641, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98642, + 98656, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 98657, + 98657, + null + ], + [ + "ident-token", + "last-child", + 98658, + 98667, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 98668, + 98668, + null + ], + [ + "function-token", + "not(", + 98669, + 98672, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 98673, + 98673, + null + ], + [ + "ident-token", + "first-child", + 98674, + 98684, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 98685, + 98685, + null + ], + [ + "{-token", + "{", + 98686, + 98686, + null + ], + [ + "ident-token", + "border-top-right-radius", + 98687, + 98709, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 98710, + 98710, + null + ], + [ + "function-token", + "var(", + 98711, + 98714, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98715, + 98715, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98716, + 98716, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 98717, + 98743, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 98744, + 98744, + null + ], + [ + "semicolon-token", + ";", + 98745, + 98745, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 98746, + 98770, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 98771, + 98771, + null + ], + [ + "number-token", + "0", + 98772, + 98772, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98773, + 98773, + null + ], + [ + "delim-token", + ".", + 98774, + 98774, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98775, + 98798, + { + "value": "list-group-horizontal-md" + } + ], + [ + "delim-token", + ">", + 98799, + 98799, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98800, + 98800, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98801, + 98815, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 98816, + 98816, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 98817, + 98822, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 98823, + 98823, + null + ], + [ + "ident-token", + "margin-top", + 98824, + 98833, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 98834, + 98834, + null + ], + [ + "number-token", + "0", + 98835, + 98835, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98836, + 98836, + null + ], + [ + "delim-token", + ".", + 98837, + 98837, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98838, + 98861, + { + "value": "list-group-horizontal-md" + } + ], + [ + "delim-token", + ">", + 98862, + 98862, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98863, + 98863, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98864, + 98878, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 98879, + 98879, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 98880, + 98880, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98881, + 98895, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 98896, + 98896, + null + ], + [ + "ident-token", + "border-top-width", + 98897, + 98912, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 98913, + 98913, + null + ], + [ + "function-token", + "var(", + 98914, + 98917, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 98918, + 98918, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 98919, + 98919, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 98920, + 98945, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 98946, + 98946, + null + ], + [ + "semicolon-token", + ";", + 98947, + 98947, + null + ], + [ + "ident-token", + "border-left-width", + 98948, + 98964, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 98965, + 98965, + null + ], + [ + "number-token", + "0", + 98966, + 98966, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 98967, + 98967, + null + ], + [ + "delim-token", + ".", + 98968, + 98968, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-md", + 98969, + 98992, + { + "value": "list-group-horizontal-md" + } + ], + [ + "delim-token", + ">", + 98993, + 98993, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 98994, + 98994, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 98995, + 99009, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 99010, + 99010, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 99011, + 99011, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99012, + 99026, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 99027, + 99027, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 99028, + 99033, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 99034, + 99034, + null + ], + [ + "ident-token", + "margin-left", + 99035, + 99045, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 99046, + 99046, + null + ], + [ + "function-token", + "calc(", + 99047, + 99051, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 99052, + 99053, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 99054, + 99054, + null + ], + [ + "delim-token", + "*", + 99055, + 99055, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 99056, + 99056, + null + ], + [ + "function-token", + "var(", + 99057, + 99060, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99061, + 99061, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99062, + 99062, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 99063, + 99088, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 99089, + 99089, + null + ], + [ + ")-token", + ")", + 99090, + 99090, + null + ], + [ + "semicolon-token", + ";", + 99091, + 99091, + null + ], + [ + "ident-token", + "border-left-width", + 99092, + 99108, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 99109, + 99109, + null + ], + [ + "function-token", + "var(", + 99110, + 99113, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99114, + 99114, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99115, + 99115, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 99116, + 99141, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 99142, + 99142, + null + ], + [ + "}-token", + "}", + 99143, + 99143, + null + ], + [ + "}-token", + "}", + 99144, + 99144, + null + ], + [ + "at-keyword-token", + "@media", + 99145, + 99150, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 99151, + 99151, + null + ], + [ + "(-token", + "(", + 99152, + 99152, + null + ], + [ + "ident-token", + "min-width", + 99153, + 99161, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 99162, + 99162, + null + ], + [ + "dimension-token", + "992px", + 99163, + 99167, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 99168, + 99168, + null + ], + [ + "{-token", + "{", + 99169, + 99169, + null + ], + [ + "delim-token", + ".", + 99170, + 99170, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99171, + 99194, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "{-token", + "{", + 99195, + 99195, + null + ], + [ + "ident-token", + "flex-direction", + 99196, + 99209, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 99210, + 99210, + null + ], + [ + "ident-token", + "row", + 99211, + 99213, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 99214, + 99214, + null + ], + [ + "delim-token", + ".", + 99215, + 99215, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99216, + 99239, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "delim-token", + ">", + 99240, + 99240, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 99241, + 99241, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99242, + 99256, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 99257, + 99257, + null + ], + [ + "ident-token", + "first-child", + 99258, + 99268, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 99269, + 99269, + null + ], + [ + "function-token", + "not(", + 99270, + 99273, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 99274, + 99274, + null + ], + [ + "ident-token", + "last-child", + 99275, + 99284, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 99285, + 99285, + null + ], + [ + "{-token", + "{", + 99286, + 99286, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 99287, + 99311, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 99312, + 99312, + null + ], + [ + "function-token", + "var(", + 99313, + 99316, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99317, + 99317, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99318, + 99318, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 99319, + 99345, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 99346, + 99346, + null + ], + [ + "semicolon-token", + ";", + 99347, + 99347, + null + ], + [ + "ident-token", + "border-top-right-radius", + 99348, + 99370, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 99371, + 99371, + null + ], + [ + "number-token", + "0", + 99372, + 99372, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 99373, + 99373, + null + ], + [ + "delim-token", + ".", + 99374, + 99374, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99375, + 99398, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "delim-token", + ">", + 99399, + 99399, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 99400, + 99400, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99401, + 99415, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 99416, + 99416, + null + ], + [ + "ident-token", + "last-child", + 99417, + 99426, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 99427, + 99427, + null + ], + [ + "function-token", + "not(", + 99428, + 99431, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 99432, + 99432, + null + ], + [ + "ident-token", + "first-child", + 99433, + 99443, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 99444, + 99444, + null + ], + [ + "{-token", + "{", + 99445, + 99445, + null + ], + [ + "ident-token", + "border-top-right-radius", + 99446, + 99468, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 99469, + 99469, + null + ], + [ + "function-token", + "var(", + 99470, + 99473, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99474, + 99474, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99475, + 99475, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 99476, + 99502, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 99503, + 99503, + null + ], + [ + "semicolon-token", + ";", + 99504, + 99504, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 99505, + 99529, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 99530, + 99530, + null + ], + [ + "number-token", + "0", + 99531, + 99531, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 99532, + 99532, + null + ], + [ + "delim-token", + ".", + 99533, + 99533, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99534, + 99557, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "delim-token", + ">", + 99558, + 99558, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 99559, + 99559, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99560, + 99574, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 99575, + 99575, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 99576, + 99581, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 99582, + 99582, + null + ], + [ + "ident-token", + "margin-top", + 99583, + 99592, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 99593, + 99593, + null + ], + [ + "number-token", + "0", + 99594, + 99594, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 99595, + 99595, + null + ], + [ + "delim-token", + ".", + 99596, + 99596, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99597, + 99620, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "delim-token", + ">", + 99621, + 99621, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 99622, + 99622, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99623, + 99637, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 99638, + 99638, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 99639, + 99639, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99640, + 99654, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 99655, + 99655, + null + ], + [ + "ident-token", + "border-top-width", + 99656, + 99671, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 99672, + 99672, + null + ], + [ + "function-token", + "var(", + 99673, + 99676, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99677, + 99677, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99678, + 99678, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 99679, + 99704, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 99705, + 99705, + null + ], + [ + "semicolon-token", + ";", + 99706, + 99706, + null + ], + [ + "ident-token", + "border-left-width", + 99707, + 99723, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 99724, + 99724, + null + ], + [ + "number-token", + "0", + 99725, + 99725, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 99726, + 99726, + null + ], + [ + "delim-token", + ".", + 99727, + 99727, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-lg", + 99728, + 99751, + { + "value": "list-group-horizontal-lg" + } + ], + [ + "delim-token", + ">", + 99752, + 99752, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 99753, + 99753, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99754, + 99768, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 99769, + 99769, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 99770, + 99770, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 99771, + 99785, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 99786, + 99786, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 99787, + 99792, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 99793, + 99793, + null + ], + [ + "ident-token", + "margin-left", + 99794, + 99804, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 99805, + 99805, + null + ], + [ + "function-token", + "calc(", + 99806, + 99810, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 99811, + 99812, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 99813, + 99813, + null + ], + [ + "delim-token", + "*", + 99814, + 99814, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 99815, + 99815, + null + ], + [ + "function-token", + "var(", + 99816, + 99819, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99820, + 99820, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99821, + 99821, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 99822, + 99847, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 99848, + 99848, + null + ], + [ + ")-token", + ")", + 99849, + 99849, + null + ], + [ + "semicolon-token", + ";", + 99850, + 99850, + null + ], + [ + "ident-token", + "border-left-width", + 99851, + 99867, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 99868, + 99868, + null + ], + [ + "function-token", + "var(", + 99869, + 99872, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 99873, + 99873, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 99874, + 99874, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 99875, + 99900, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 99901, + 99901, + null + ], + [ + "}-token", + "}", + 99902, + 99902, + null + ], + [ + "}-token", + "}", + 99903, + 99903, + null + ], + [ + "at-keyword-token", + "@media", + 99904, + 99909, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 99910, + 99910, + null + ], + [ + "(-token", + "(", + 99911, + 99911, + null + ], + [ + "ident-token", + "min-width", + 99912, + 99920, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 99921, + 99921, + null + ], + [ + "dimension-token", + "1200px", + 99922, + 99927, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 99928, + 99928, + null + ], + [ + "{-token", + "{", + 99929, + 99929, + null + ], + [ + "delim-token", + ".", + 99930, + 99930, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 99931, + 99954, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "{-token", + "{", + 99955, + 99955, + null + ], + [ + "ident-token", + "flex-direction", + 99956, + 99969, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 99970, + 99970, + null + ], + [ + "ident-token", + "row", + 99971, + 99973, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 99974, + 99974, + null + ], + [ + "delim-token", + ".", + 99975, + 99975, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 99976, + 99999, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "delim-token", + ">", + 100000, + 100000, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100001, + 100001, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100002, + 100016, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 100017, + 100017, + null + ], + [ + "ident-token", + "first-child", + 100018, + 100028, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 100029, + 100029, + null + ], + [ + "function-token", + "not(", + 100030, + 100033, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 100034, + 100034, + null + ], + [ + "ident-token", + "last-child", + 100035, + 100044, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 100045, + 100045, + null + ], + [ + "{-token", + "{", + 100046, + 100046, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 100047, + 100071, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 100072, + 100072, + null + ], + [ + "function-token", + "var(", + 100073, + 100076, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100077, + 100077, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100078, + 100078, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 100079, + 100105, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 100106, + 100106, + null + ], + [ + "semicolon-token", + ";", + 100107, + 100107, + null + ], + [ + "ident-token", + "border-top-right-radius", + 100108, + 100130, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 100131, + 100131, + null + ], + [ + "number-token", + "0", + 100132, + 100132, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 100133, + 100133, + null + ], + [ + "delim-token", + ".", + 100134, + 100134, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 100135, + 100158, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "delim-token", + ">", + 100159, + 100159, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100160, + 100160, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100161, + 100175, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 100176, + 100176, + null + ], + [ + "ident-token", + "last-child", + 100177, + 100186, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 100187, + 100187, + null + ], + [ + "function-token", + "not(", + 100188, + 100191, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 100192, + 100192, + null + ], + [ + "ident-token", + "first-child", + 100193, + 100203, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 100204, + 100204, + null + ], + [ + "{-token", + "{", + 100205, + 100205, + null + ], + [ + "ident-token", + "border-top-right-radius", + 100206, + 100228, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 100229, + 100229, + null + ], + [ + "function-token", + "var(", + 100230, + 100233, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100234, + 100234, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100235, + 100235, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 100236, + 100262, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 100263, + 100263, + null + ], + [ + "semicolon-token", + ";", + 100264, + 100264, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 100265, + 100289, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 100290, + 100290, + null + ], + [ + "number-token", + "0", + 100291, + 100291, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 100292, + 100292, + null + ], + [ + "delim-token", + ".", + 100293, + 100293, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 100294, + 100317, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "delim-token", + ">", + 100318, + 100318, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100319, + 100319, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100320, + 100334, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 100335, + 100335, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 100336, + 100341, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 100342, + 100342, + null + ], + [ + "ident-token", + "margin-top", + 100343, + 100352, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 100353, + 100353, + null + ], + [ + "number-token", + "0", + 100354, + 100354, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 100355, + 100355, + null + ], + [ + "delim-token", + ".", + 100356, + 100356, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 100357, + 100380, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "delim-token", + ">", + 100381, + 100381, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100382, + 100382, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100383, + 100397, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 100398, + 100398, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 100399, + 100399, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100400, + 100414, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 100415, + 100415, + null + ], + [ + "ident-token", + "border-top-width", + 100416, + 100431, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 100432, + 100432, + null + ], + [ + "function-token", + "var(", + 100433, + 100436, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100437, + 100437, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100438, + 100438, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 100439, + 100464, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 100465, + 100465, + null + ], + [ + "semicolon-token", + ";", + 100466, + 100466, + null + ], + [ + "ident-token", + "border-left-width", + 100467, + 100483, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 100484, + 100484, + null + ], + [ + "number-token", + "0", + 100485, + 100485, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 100486, + 100486, + null + ], + [ + "delim-token", + ".", + 100487, + 100487, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xl", + 100488, + 100511, + { + "value": "list-group-horizontal-xl" + } + ], + [ + "delim-token", + ">", + 100512, + 100512, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100513, + 100513, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100514, + 100528, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 100529, + 100529, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 100530, + 100530, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100531, + 100545, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 100546, + 100546, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 100547, + 100552, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 100553, + 100553, + null + ], + [ + "ident-token", + "margin-left", + 100554, + 100564, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 100565, + 100565, + null + ], + [ + "function-token", + "calc(", + 100566, + 100570, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 100571, + 100572, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 100573, + 100573, + null + ], + [ + "delim-token", + "*", + 100574, + 100574, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 100575, + 100575, + null + ], + [ + "function-token", + "var(", + 100576, + 100579, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100580, + 100580, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100581, + 100581, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 100582, + 100607, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 100608, + 100608, + null + ], + [ + ")-token", + ")", + 100609, + 100609, + null + ], + [ + "semicolon-token", + ";", + 100610, + 100610, + null + ], + [ + "ident-token", + "border-left-width", + 100611, + 100627, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 100628, + 100628, + null + ], + [ + "function-token", + "var(", + 100629, + 100632, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100633, + 100633, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100634, + 100634, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 100635, + 100660, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 100661, + 100661, + null + ], + [ + "}-token", + "}", + 100662, + 100662, + null + ], + [ + "}-token", + "}", + 100663, + 100663, + null + ], + [ + "at-keyword-token", + "@media", + 100664, + 100669, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 100670, + 100670, + null + ], + [ + "(-token", + "(", + 100671, + 100671, + null + ], + [ + "ident-token", + "min-width", + 100672, + 100680, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 100681, + 100681, + null + ], + [ + "dimension-token", + "1400px", + 100682, + 100687, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 100688, + 100688, + null + ], + [ + "{-token", + "{", + 100689, + 100689, + null + ], + [ + "delim-token", + ".", + 100690, + 100690, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 100691, + 100715, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "{-token", + "{", + 100716, + 100716, + null + ], + [ + "ident-token", + "flex-direction", + 100717, + 100730, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 100731, + 100731, + null + ], + [ + "ident-token", + "row", + 100732, + 100734, + { + "value": "row" + } + ], + [ + "}-token", + "}", + 100735, + 100735, + null + ], + [ + "delim-token", + ".", + 100736, + 100736, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 100737, + 100761, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "delim-token", + ">", + 100762, + 100762, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100763, + 100763, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100764, + 100778, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 100779, + 100779, + null + ], + [ + "ident-token", + "first-child", + 100780, + 100790, + { + "value": "first-child" + } + ], + [ + "colon-token", + ":", + 100791, + 100791, + null + ], + [ + "function-token", + "not(", + 100792, + 100795, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 100796, + 100796, + null + ], + [ + "ident-token", + "last-child", + 100797, + 100806, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 100807, + 100807, + null + ], + [ + "{-token", + "{", + 100808, + 100808, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 100809, + 100833, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 100834, + 100834, + null + ], + [ + "function-token", + "var(", + 100835, + 100838, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100839, + 100839, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100840, + 100840, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 100841, + 100867, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 100868, + 100868, + null + ], + [ + "semicolon-token", + ";", + 100869, + 100869, + null + ], + [ + "ident-token", + "border-top-right-radius", + 100870, + 100892, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 100893, + 100893, + null + ], + [ + "number-token", + "0", + 100894, + 100894, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 100895, + 100895, + null + ], + [ + "delim-token", + ".", + 100896, + 100896, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 100897, + 100921, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "delim-token", + ">", + 100922, + 100922, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 100923, + 100923, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 100924, + 100938, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 100939, + 100939, + null + ], + [ + "ident-token", + "last-child", + 100940, + 100949, + { + "value": "last-child" + } + ], + [ + "colon-token", + ":", + 100950, + 100950, + null + ], + [ + "function-token", + "not(", + 100951, + 100954, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 100955, + 100955, + null + ], + [ + "ident-token", + "first-child", + 100956, + 100966, + { + "value": "first-child" + } + ], + [ + ")-token", + ")", + 100967, + 100967, + null + ], + [ + "{-token", + "{", + 100968, + 100968, + null + ], + [ + "ident-token", + "border-top-right-radius", + 100969, + 100991, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 100992, + 100992, + null + ], + [ + "function-token", + "var(", + 100993, + 100996, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 100997, + 100997, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 100998, + 100998, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-radius", + 100999, + 101025, + { + "value": "bs-list-group-border-radius" + } + ], + [ + ")-token", + ")", + 101026, + 101026, + null + ], + [ + "semicolon-token", + ";", + 101027, + 101027, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 101028, + 101052, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 101053, + 101053, + null + ], + [ + "number-token", + "0", + 101054, + 101054, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 101055, + 101055, + null + ], + [ + "delim-token", + ".", + 101056, + 101056, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 101057, + 101081, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "delim-token", + ">", + 101082, + 101082, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 101083, + 101083, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101084, + 101098, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 101099, + 101099, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 101100, + 101105, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 101106, + 101106, + null + ], + [ + "ident-token", + "margin-top", + 101107, + 101116, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 101117, + 101117, + null + ], + [ + "number-token", + "0", + 101118, + 101118, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 101119, + 101119, + null + ], + [ + "delim-token", + ".", + 101120, + 101120, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 101121, + 101145, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "delim-token", + ">", + 101146, + 101146, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 101147, + 101147, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101148, + 101162, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 101163, + 101163, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 101164, + 101164, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101165, + 101179, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 101180, + 101180, + null + ], + [ + "ident-token", + "border-top-width", + 101181, + 101196, + { + "value": "border-top-width" + } + ], + [ + "colon-token", + ":", + 101197, + 101197, + null + ], + [ + "function-token", + "var(", + 101198, + 101201, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 101202, + 101202, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 101203, + 101203, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 101204, + 101229, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 101230, + 101230, + null + ], + [ + "semicolon-token", + ";", + 101231, + 101231, + null + ], + [ + "ident-token", + "border-left-width", + 101232, + 101248, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 101249, + 101249, + null + ], + [ + "number-token", + "0", + 101250, + 101250, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 101251, + 101251, + null + ], + [ + "delim-token", + ".", + 101252, + 101252, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-horizontal-xxl", + 101253, + 101277, + { + "value": "list-group-horizontal-xxl" + } + ], + [ + "delim-token", + ">", + 101278, + 101278, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 101279, + 101279, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101280, + 101294, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + "+", + 101295, + 101295, + { + "value": "+" + } + ], + [ + "delim-token", + ".", + 101296, + 101296, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101297, + 101311, + { + "value": "list-group-item" + } + ], + [ + "delim-token", + ".", + 101312, + 101312, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 101313, + 101318, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 101319, + 101319, + null + ], + [ + "ident-token", + "margin-left", + 101320, + 101330, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 101331, + 101331, + null + ], + [ + "function-token", + "calc(", + 101332, + 101336, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 101337, + 101338, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 101339, + 101339, + null + ], + [ + "delim-token", + "*", + 101340, + 101340, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 101341, + 101341, + null + ], + [ + "function-token", + "var(", + 101342, + 101345, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 101346, + 101346, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 101347, + 101347, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 101348, + 101373, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 101374, + 101374, + null + ], + [ + ")-token", + ")", + 101375, + 101375, + null + ], + [ + "semicolon-token", + ";", + 101376, + 101376, + null + ], + [ + "ident-token", + "border-left-width", + 101377, + 101393, + { + "value": "border-left-width" + } + ], + [ + "colon-token", + ":", + 101394, + 101394, + null + ], + [ + "function-token", + "var(", + 101395, + 101398, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 101399, + 101399, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 101400, + 101400, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 101401, + 101426, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 101427, + 101427, + null + ], + [ + "}-token", + "}", + 101428, + 101428, + null + ], + [ + "}-token", + "}", + 101429, + 101429, + null + ], + [ + "delim-token", + ".", + 101430, + 101430, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-flush", + 101431, + 101446, + { + "value": "list-group-flush" + } + ], + [ + "{-token", + "{", + 101447, + 101447, + null + ], + [ + "ident-token", + "border-radius", + 101448, + 101460, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 101461, + 101461, + null + ], + [ + "number-token", + "0", + 101462, + 101462, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 101463, + 101463, + null + ], + [ + "delim-token", + ".", + 101464, + 101464, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-flush", + 101465, + 101480, + { + "value": "list-group-flush" + } + ], + [ + "delim-token", + ">", + 101481, + 101481, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 101482, + 101482, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101483, + 101497, + { + "value": "list-group-item" + } + ], + [ + "{-token", + "{", + 101498, + 101498, + null + ], + [ + "ident-token", + "border-width", + 101499, + 101510, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 101511, + 101511, + null + ], + [ + "number-token", + "0", + 101512, + 101512, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 101513, + 101513, + null + ], + [ + "number-token", + "0", + 101514, + 101514, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 101515, + 101515, + null + ], + [ + "function-token", + "var(", + 101516, + 101519, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 101520, + 101520, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 101521, + 101521, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-list-group-border-width", + 101522, + 101547, + { + "value": "bs-list-group-border-width" + } + ], + [ + ")-token", + ")", + 101548, + 101548, + null + ], + [ + "}-token", + "}", + 101549, + 101549, + null + ], + [ + "delim-token", + ".", + 101550, + 101550, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-flush", + 101551, + 101566, + { + "value": "list-group-flush" + } + ], + [ + "delim-token", + ">", + 101567, + 101567, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 101568, + 101568, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item", + 101569, + 101583, + { + "value": "list-group-item" + } + ], + [ + "colon-token", + ":", + 101584, + 101584, + null + ], + [ + "ident-token", + "last-child", + 101585, + 101594, + { + "value": "last-child" + } + ], + [ + "{-token", + "{", + 101595, + 101595, + null + ], + [ + "ident-token", + "border-bottom-width", + 101596, + 101614, + { + "value": "border-bottom-width" + } + ], + [ + "colon-token", + ":", + 101615, + 101615, + null + ], + [ + "number-token", + "0", + 101616, + 101616, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 101617, + 101617, + null + ], + [ + "delim-token", + ".", + 101618, + 101618, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-primary", + 101619, + 101641, + { + "value": "list-group-item-primary" + } + ], + [ + "{-token", + "{", + 101642, + 101642, + null + ], + [ + "ident-token", + "color", + 101643, + 101647, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 101648, + 101648, + null + ], + [ + "hash-token", + "#084298", + 101649, + 101655, + { + "value": "084298", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 101656, + 101656, + null + ], + [ + "ident-token", + "background-color", + 101657, + 101672, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 101673, + 101673, + null + ], + [ + "hash-token", + "#cfe2ff", + 101674, + 101680, + { + "value": "cfe2ff", + "type": "id" + } + ], + [ + "}-token", + "}", + 101681, + 101681, + null + ], + [ + "delim-token", + ".", + 101682, + 101682, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-primary", + 101683, + 101705, + { + "value": "list-group-item-primary" + } + ], + [ + "delim-token", + ".", + 101706, + 101706, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 101707, + 101728, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 101729, + 101729, + null + ], + [ + "ident-token", + "focus", + 101730, + 101734, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 101735, + 101735, + null + ], + [ + "delim-token", + ".", + 101736, + 101736, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-primary", + 101737, + 101759, + { + "value": "list-group-item-primary" + } + ], + [ + "delim-token", + ".", + 101760, + 101760, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 101761, + 101782, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 101783, + 101783, + null + ], + [ + "ident-token", + "hover", + 101784, + 101788, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 101789, + 101789, + null + ], + [ + "ident-token", + "color", + 101790, + 101794, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 101795, + 101795, + null + ], + [ + "hash-token", + "#084298", + 101796, + 101802, + { + "value": "084298", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 101803, + 101803, + null + ], + [ + "ident-token", + "background-color", + 101804, + 101819, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 101820, + 101820, + null + ], + [ + "hash-token", + "#bacbe6", + 101821, + 101827, + { + "value": "bacbe6", + "type": "id" + } + ], + [ + "}-token", + "}", + 101828, + 101828, + null + ], + [ + "delim-token", + ".", + 101829, + 101829, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-primary", + 101830, + 101852, + { + "value": "list-group-item-primary" + } + ], + [ + "delim-token", + ".", + 101853, + 101853, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 101854, + 101875, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 101876, + 101876, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 101877, + 101882, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 101883, + 101883, + null + ], + [ + "ident-token", + "color", + 101884, + 101888, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 101889, + 101889, + null + ], + [ + "hash-token", + "#fff", + 101890, + 101893, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 101894, + 101894, + null + ], + [ + "ident-token", + "background-color", + 101895, + 101910, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 101911, + 101911, + null + ], + [ + "hash-token", + "#084298", + 101912, + 101918, + { + "value": "084298", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 101919, + 101919, + null + ], + [ + "ident-token", + "border-color", + 101920, + 101931, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 101932, + 101932, + null + ], + [ + "hash-token", + "#084298", + 101933, + 101939, + { + "value": "084298", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 101940, + 101940, + null + ], + [ + "delim-token", + ".", + 101941, + 101941, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-secondary", + 101942, + 101966, + { + "value": "list-group-item-secondary" + } + ], + [ + "{-token", + "{", + 101967, + 101967, + null + ], + [ + "ident-token", + "color", + 101968, + 101972, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 101973, + 101973, + null + ], + [ + "hash-token", + "#41464b", + 101974, + 101980, + { + "value": "41464b", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 101981, + 101981, + null + ], + [ + "ident-token", + "background-color", + 101982, + 101997, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 101998, + 101998, + null + ], + [ + "hash-token", + "#e2e3e5", + 101999, + 102005, + { + "value": "e2e3e5", + "type": "id" + } + ], + [ + "}-token", + "}", + 102006, + 102006, + null + ], + [ + "delim-token", + ".", + 102007, + 102007, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-secondary", + 102008, + 102032, + { + "value": "list-group-item-secondary" + } + ], + [ + "delim-token", + ".", + 102033, + 102033, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102034, + 102055, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102056, + 102056, + null + ], + [ + "ident-token", + "focus", + 102057, + 102061, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 102062, + 102062, + null + ], + [ + "delim-token", + ".", + 102063, + 102063, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-secondary", + 102064, + 102088, + { + "value": "list-group-item-secondary" + } + ], + [ + "delim-token", + ".", + 102089, + 102089, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102090, + 102111, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102112, + 102112, + null + ], + [ + "ident-token", + "hover", + 102113, + 102117, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 102118, + 102118, + null + ], + [ + "ident-token", + "color", + 102119, + 102123, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102124, + 102124, + null + ], + [ + "hash-token", + "#41464b", + 102125, + 102131, + { + "value": "41464b", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102132, + 102132, + null + ], + [ + "ident-token", + "background-color", + 102133, + 102148, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102149, + 102149, + null + ], + [ + "hash-token", + "#cbccce", + 102150, + 102156, + { + "value": "cbccce", + "type": "id" + } + ], + [ + "}-token", + "}", + 102157, + 102157, + null + ], + [ + "delim-token", + ".", + 102158, + 102158, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-secondary", + 102159, + 102183, + { + "value": "list-group-item-secondary" + } + ], + [ + "delim-token", + ".", + 102184, + 102184, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102185, + 102206, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 102207, + 102207, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 102208, + 102213, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 102214, + 102214, + null + ], + [ + "ident-token", + "color", + 102215, + 102219, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102220, + 102220, + null + ], + [ + "hash-token", + "#fff", + 102221, + 102224, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 102225, + 102225, + null + ], + [ + "ident-token", + "background-color", + 102226, + 102241, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102242, + 102242, + null + ], + [ + "hash-token", + "#41464b", + 102243, + 102249, + { + "value": "41464b", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102250, + 102250, + null + ], + [ + "ident-token", + "border-color", + 102251, + 102262, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 102263, + 102263, + null + ], + [ + "hash-token", + "#41464b", + 102264, + 102270, + { + "value": "41464b", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 102271, + 102271, + null + ], + [ + "delim-token", + ".", + 102272, + 102272, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-success", + 102273, + 102295, + { + "value": "list-group-item-success" + } + ], + [ + "{-token", + "{", + 102296, + 102296, + null + ], + [ + "ident-token", + "color", + 102297, + 102301, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102302, + 102302, + null + ], + [ + "hash-token", + "#0f5132", + 102303, + 102309, + { + "value": "0f5132", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102310, + 102310, + null + ], + [ + "ident-token", + "background-color", + 102311, + 102326, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102327, + 102327, + null + ], + [ + "hash-token", + "#d1e7dd", + 102328, + 102334, + { + "value": "d1e7dd", + "type": "id" + } + ], + [ + "}-token", + "}", + 102335, + 102335, + null + ], + [ + "delim-token", + ".", + 102336, + 102336, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-success", + 102337, + 102359, + { + "value": "list-group-item-success" + } + ], + [ + "delim-token", + ".", + 102360, + 102360, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102361, + 102382, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102383, + 102383, + null + ], + [ + "ident-token", + "focus", + 102384, + 102388, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 102389, + 102389, + null + ], + [ + "delim-token", + ".", + 102390, + 102390, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-success", + 102391, + 102413, + { + "value": "list-group-item-success" + } + ], + [ + "delim-token", + ".", + 102414, + 102414, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102415, + 102436, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102437, + 102437, + null + ], + [ + "ident-token", + "hover", + 102438, + 102442, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 102443, + 102443, + null + ], + [ + "ident-token", + "color", + 102444, + 102448, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102449, + 102449, + null + ], + [ + "hash-token", + "#0f5132", + 102450, + 102456, + { + "value": "0f5132", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102457, + 102457, + null + ], + [ + "ident-token", + "background-color", + 102458, + 102473, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102474, + 102474, + null + ], + [ + "hash-token", + "#bcd0c7", + 102475, + 102481, + { + "value": "bcd0c7", + "type": "id" + } + ], + [ + "}-token", + "}", + 102482, + 102482, + null + ], + [ + "delim-token", + ".", + 102483, + 102483, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-success", + 102484, + 102506, + { + "value": "list-group-item-success" + } + ], + [ + "delim-token", + ".", + 102507, + 102507, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102508, + 102529, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 102530, + 102530, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 102531, + 102536, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 102537, + 102537, + null + ], + [ + "ident-token", + "color", + 102538, + 102542, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102543, + 102543, + null + ], + [ + "hash-token", + "#fff", + 102544, + 102547, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 102548, + 102548, + null + ], + [ + "ident-token", + "background-color", + 102549, + 102564, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102565, + 102565, + null + ], + [ + "hash-token", + "#0f5132", + 102566, + 102572, + { + "value": "0f5132", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102573, + 102573, + null + ], + [ + "ident-token", + "border-color", + 102574, + 102585, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 102586, + 102586, + null + ], + [ + "hash-token", + "#0f5132", + 102587, + 102593, + { + "value": "0f5132", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 102594, + 102594, + null + ], + [ + "delim-token", + ".", + 102595, + 102595, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-info", + 102596, + 102615, + { + "value": "list-group-item-info" + } + ], + [ + "{-token", + "{", + 102616, + 102616, + null + ], + [ + "ident-token", + "color", + 102617, + 102621, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102622, + 102622, + null + ], + [ + "hash-token", + "#055160", + 102623, + 102629, + { + "value": "055160", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102630, + 102630, + null + ], + [ + "ident-token", + "background-color", + 102631, + 102646, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102647, + 102647, + null + ], + [ + "hash-token", + "#cff4fc", + 102648, + 102654, + { + "value": "cff4fc", + "type": "id" + } + ], + [ + "}-token", + "}", + 102655, + 102655, + null + ], + [ + "delim-token", + ".", + 102656, + 102656, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-info", + 102657, + 102676, + { + "value": "list-group-item-info" + } + ], + [ + "delim-token", + ".", + 102677, + 102677, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102678, + 102699, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102700, + 102700, + null + ], + [ + "ident-token", + "focus", + 102701, + 102705, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 102706, + 102706, + null + ], + [ + "delim-token", + ".", + 102707, + 102707, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-info", + 102708, + 102727, + { + "value": "list-group-item-info" + } + ], + [ + "delim-token", + ".", + 102728, + 102728, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102729, + 102750, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 102751, + 102751, + null + ], + [ + "ident-token", + "hover", + 102752, + 102756, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 102757, + 102757, + null + ], + [ + "ident-token", + "color", + 102758, + 102762, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102763, + 102763, + null + ], + [ + "hash-token", + "#055160", + 102764, + 102770, + { + "value": "055160", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102771, + 102771, + null + ], + [ + "ident-token", + "background-color", + 102772, + 102787, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102788, + 102788, + null + ], + [ + "hash-token", + "#badce3", + 102789, + 102795, + { + "value": "badce3", + "type": "id" + } + ], + [ + "}-token", + "}", + 102796, + 102796, + null + ], + [ + "delim-token", + ".", + 102797, + 102797, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-info", + 102798, + 102817, + { + "value": "list-group-item-info" + } + ], + [ + "delim-token", + ".", + 102818, + 102818, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102819, + 102840, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 102841, + 102841, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 102842, + 102847, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 102848, + 102848, + null + ], + [ + "ident-token", + "color", + 102849, + 102853, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102854, + 102854, + null + ], + [ + "hash-token", + "#fff", + 102855, + 102858, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 102859, + 102859, + null + ], + [ + "ident-token", + "background-color", + 102860, + 102875, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102876, + 102876, + null + ], + [ + "hash-token", + "#055160", + 102877, + 102883, + { + "value": "055160", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102884, + 102884, + null + ], + [ + "ident-token", + "border-color", + 102885, + 102896, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 102897, + 102897, + null + ], + [ + "hash-token", + "#055160", + 102898, + 102904, + { + "value": "055160", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 102905, + 102905, + null + ], + [ + "delim-token", + ".", + 102906, + 102906, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-warning", + 102907, + 102929, + { + "value": "list-group-item-warning" + } + ], + [ + "{-token", + "{", + 102930, + 102930, + null + ], + [ + "ident-token", + "color", + 102931, + 102935, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 102936, + 102936, + null + ], + [ + "hash-token", + "#664d03", + 102937, + 102943, + { + "value": "664d03", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 102944, + 102944, + null + ], + [ + "ident-token", + "background-color", + 102945, + 102960, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 102961, + 102961, + null + ], + [ + "hash-token", + "#fff3cd", + 102962, + 102968, + { + "value": "fff3cd", + "type": "id" + } + ], + [ + "}-token", + "}", + 102969, + 102969, + null + ], + [ + "delim-token", + ".", + 102970, + 102970, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-warning", + 102971, + 102993, + { + "value": "list-group-item-warning" + } + ], + [ + "delim-token", + ".", + 102994, + 102994, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 102995, + 103016, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103017, + 103017, + null + ], + [ + "ident-token", + "focus", + 103018, + 103022, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 103023, + 103023, + null + ], + [ + "delim-token", + ".", + 103024, + 103024, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-warning", + 103025, + 103047, + { + "value": "list-group-item-warning" + } + ], + [ + "delim-token", + ".", + 103048, + 103048, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103049, + 103070, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103071, + 103071, + null + ], + [ + "ident-token", + "hover", + 103072, + 103076, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 103077, + 103077, + null + ], + [ + "ident-token", + "color", + 103078, + 103082, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103083, + 103083, + null + ], + [ + "hash-token", + "#664d03", + 103084, + 103090, + { + "value": "664d03", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103091, + 103091, + null + ], + [ + "ident-token", + "background-color", + 103092, + 103107, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103108, + 103108, + null + ], + [ + "hash-token", + "#e6dbb9", + 103109, + 103115, + { + "value": "e6dbb9", + "type": "id" + } + ], + [ + "}-token", + "}", + 103116, + 103116, + null + ], + [ + "delim-token", + ".", + 103117, + 103117, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-warning", + 103118, + 103140, + { + "value": "list-group-item-warning" + } + ], + [ + "delim-token", + ".", + 103141, + 103141, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103142, + 103163, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 103164, + 103164, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 103165, + 103170, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 103171, + 103171, + null + ], + [ + "ident-token", + "color", + 103172, + 103176, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103177, + 103177, + null + ], + [ + "hash-token", + "#fff", + 103178, + 103181, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 103182, + 103182, + null + ], + [ + "ident-token", + "background-color", + 103183, + 103198, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103199, + 103199, + null + ], + [ + "hash-token", + "#664d03", + 103200, + 103206, + { + "value": "664d03", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103207, + 103207, + null + ], + [ + "ident-token", + "border-color", + 103208, + 103219, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 103220, + 103220, + null + ], + [ + "hash-token", + "#664d03", + 103221, + 103227, + { + "value": "664d03", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 103228, + 103228, + null + ], + [ + "delim-token", + ".", + 103229, + 103229, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-danger", + 103230, + 103251, + { + "value": "list-group-item-danger" + } + ], + [ + "{-token", + "{", + 103252, + 103252, + null + ], + [ + "ident-token", + "color", + 103253, + 103257, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103258, + 103258, + null + ], + [ + "hash-token", + "#842029", + 103259, + 103265, + { + "value": "842029", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103266, + 103266, + null + ], + [ + "ident-token", + "background-color", + 103267, + 103282, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103283, + 103283, + null + ], + [ + "hash-token", + "#f8d7da", + 103284, + 103290, + { + "value": "f8d7da", + "type": "id" + } + ], + [ + "}-token", + "}", + 103291, + 103291, + null + ], + [ + "delim-token", + ".", + 103292, + 103292, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-danger", + 103293, + 103314, + { + "value": "list-group-item-danger" + } + ], + [ + "delim-token", + ".", + 103315, + 103315, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103316, + 103337, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103338, + 103338, + null + ], + [ + "ident-token", + "focus", + 103339, + 103343, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 103344, + 103344, + null + ], + [ + "delim-token", + ".", + 103345, + 103345, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-danger", + 103346, + 103367, + { + "value": "list-group-item-danger" + } + ], + [ + "delim-token", + ".", + 103368, + 103368, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103369, + 103390, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103391, + 103391, + null + ], + [ + "ident-token", + "hover", + 103392, + 103396, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 103397, + 103397, + null + ], + [ + "ident-token", + "color", + 103398, + 103402, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103403, + 103403, + null + ], + [ + "hash-token", + "#842029", + 103404, + 103410, + { + "value": "842029", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103411, + 103411, + null + ], + [ + "ident-token", + "background-color", + 103412, + 103427, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103428, + 103428, + null + ], + [ + "hash-token", + "#dfc2c4", + 103429, + 103435, + { + "value": "dfc2c4", + "type": "id" + } + ], + [ + "}-token", + "}", + 103436, + 103436, + null + ], + [ + "delim-token", + ".", + 103437, + 103437, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-danger", + 103438, + 103459, + { + "value": "list-group-item-danger" + } + ], + [ + "delim-token", + ".", + 103460, + 103460, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103461, + 103482, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 103483, + 103483, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 103484, + 103489, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 103490, + 103490, + null + ], + [ + "ident-token", + "color", + 103491, + 103495, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103496, + 103496, + null + ], + [ + "hash-token", + "#fff", + 103497, + 103500, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 103501, + 103501, + null + ], + [ + "ident-token", + "background-color", + 103502, + 103517, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103518, + 103518, + null + ], + [ + "hash-token", + "#842029", + 103519, + 103525, + { + "value": "842029", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103526, + 103526, + null + ], + [ + "ident-token", + "border-color", + 103527, + 103538, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 103539, + 103539, + null + ], + [ + "hash-token", + "#842029", + 103540, + 103546, + { + "value": "842029", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 103547, + 103547, + null + ], + [ + "delim-token", + ".", + 103548, + 103548, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-light", + 103549, + 103569, + { + "value": "list-group-item-light" + } + ], + [ + "{-token", + "{", + 103570, + 103570, + null + ], + [ + "ident-token", + "color", + 103571, + 103575, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103576, + 103576, + null + ], + [ + "hash-token", + "#636464", + 103577, + 103583, + { + "value": "636464", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103584, + 103584, + null + ], + [ + "ident-token", + "background-color", + 103585, + 103600, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103601, + 103601, + null + ], + [ + "hash-token", + "#fefefe", + 103602, + 103608, + { + "value": "fefefe", + "type": "id" + } + ], + [ + "}-token", + "}", + 103609, + 103609, + null + ], + [ + "delim-token", + ".", + 103610, + 103610, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-light", + 103611, + 103631, + { + "value": "list-group-item-light" + } + ], + [ + "delim-token", + ".", + 103632, + 103632, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103633, + 103654, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103655, + 103655, + null + ], + [ + "ident-token", + "focus", + 103656, + 103660, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 103661, + 103661, + null + ], + [ + "delim-token", + ".", + 103662, + 103662, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-light", + 103663, + 103683, + { + "value": "list-group-item-light" + } + ], + [ + "delim-token", + ".", + 103684, + 103684, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103685, + 103706, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103707, + 103707, + null + ], + [ + "ident-token", + "hover", + 103708, + 103712, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 103713, + 103713, + null + ], + [ + "ident-token", + "color", + 103714, + 103718, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103719, + 103719, + null + ], + [ + "hash-token", + "#636464", + 103720, + 103726, + { + "value": "636464", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103727, + 103727, + null + ], + [ + "ident-token", + "background-color", + 103728, + 103743, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103744, + 103744, + null + ], + [ + "hash-token", + "#e5e5e5", + 103745, + 103751, + { + "value": "e5e5e5", + "type": "id" + } + ], + [ + "}-token", + "}", + 103752, + 103752, + null + ], + [ + "delim-token", + ".", + 103753, + 103753, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-light", + 103754, + 103774, + { + "value": "list-group-item-light" + } + ], + [ + "delim-token", + ".", + 103775, + 103775, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103776, + 103797, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 103798, + 103798, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 103799, + 103804, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 103805, + 103805, + null + ], + [ + "ident-token", + "color", + 103806, + 103810, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103811, + 103811, + null + ], + [ + "hash-token", + "#fff", + 103812, + 103815, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 103816, + 103816, + null + ], + [ + "ident-token", + "background-color", + 103817, + 103832, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103833, + 103833, + null + ], + [ + "hash-token", + "#636464", + 103834, + 103840, + { + "value": "636464", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103841, + 103841, + null + ], + [ + "ident-token", + "border-color", + 103842, + 103853, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 103854, + 103854, + null + ], + [ + "hash-token", + "#636464", + 103855, + 103861, + { + "value": "636464", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 103862, + 103862, + null + ], + [ + "delim-token", + ".", + 103863, + 103863, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-dark", + 103864, + 103883, + { + "value": "list-group-item-dark" + } + ], + [ + "{-token", + "{", + 103884, + 103884, + null + ], + [ + "ident-token", + "color", + 103885, + 103889, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 103890, + 103890, + null + ], + [ + "hash-token", + "#141619", + 103891, + 103897, + { + "value": "141619", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 103898, + 103898, + null + ], + [ + "ident-token", + "background-color", + 103899, + 103914, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 103915, + 103915, + null + ], + [ + "hash-token", + "#d3d3d4", + 103916, + 103922, + { + "value": "d3d3d4", + "type": "id" + } + ], + [ + "}-token", + "}", + 103923, + 103923, + null + ], + [ + "delim-token", + ".", + 103924, + 103924, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-dark", + 103925, + 103944, + { + "value": "list-group-item-dark" + } + ], + [ + "delim-token", + ".", + 103945, + 103945, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103946, + 103967, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 103968, + 103968, + null + ], + [ + "ident-token", + "focus", + 103969, + 103973, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 103974, + 103974, + null + ], + [ + "delim-token", + ".", + 103975, + 103975, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-dark", + 103976, + 103995, + { + "value": "list-group-item-dark" + } + ], + [ + "delim-token", + ".", + 103996, + 103996, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 103997, + 104018, + { + "value": "list-group-item-action" + } + ], + [ + "colon-token", + ":", + 104019, + 104019, + null + ], + [ + "ident-token", + "hover", + 104020, + 104024, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 104025, + 104025, + null + ], + [ + "ident-token", + "color", + 104026, + 104030, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 104031, + 104031, + null + ], + [ + "hash-token", + "#141619", + 104032, + 104038, + { + "value": "141619", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 104039, + 104039, + null + ], + [ + "ident-token", + "background-color", + 104040, + 104055, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 104056, + 104056, + null + ], + [ + "hash-token", + "#bebebf", + 104057, + 104063, + { + "value": "bebebf", + "type": "id" + } + ], + [ + "}-token", + "}", + 104064, + 104064, + null + ], + [ + "delim-token", + ".", + 104065, + 104065, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-dark", + 104066, + 104085, + { + "value": "list-group-item-dark" + } + ], + [ + "delim-token", + ".", + 104086, + 104086, + { + "value": "." + } + ], + [ + "ident-token", + "list-group-item-action", + 104087, + 104108, + { + "value": "list-group-item-action" + } + ], + [ + "delim-token", + ".", + 104109, + 104109, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 104110, + 104115, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 104116, + 104116, + null + ], + [ + "ident-token", + "color", + 104117, + 104121, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 104122, + 104122, + null + ], + [ + "hash-token", + "#fff", + 104123, + 104126, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 104127, + 104127, + null + ], + [ + "ident-token", + "background-color", + 104128, + 104143, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 104144, + 104144, + null + ], + [ + "hash-token", + "#141619", + 104145, + 104151, + { + "value": "141619", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 104152, + 104152, + null + ], + [ + "ident-token", + "border-color", + 104153, + 104164, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 104165, + 104165, + null + ], + [ + "hash-token", + "#141619", + 104166, + 104172, + { + "value": "141619", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 104173, + 104173, + null + ], + [ + "delim-token", + ".", + 104174, + 104174, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 104175, + 104183, + { + "value": "btn-close" + } + ], + [ + "{-token", + "{", + 104184, + 104184, + null + ], + [ + "ident-token", + "box-sizing", + 104185, + 104194, + { + "value": "box-sizing" + } + ], + [ + "colon-token", + ":", + 104195, + 104195, + null + ], + [ + "ident-token", + "content-box", + 104196, + 104206, + { + "value": "content-box" + } + ], + [ + "semicolon-token", + ";", + 104207, + 104207, + null + ], + [ + "ident-token", + "width", + 104208, + 104212, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 104213, + 104213, + null + ], + [ + "dimension-token", + "1em", + 104214, + 104216, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 104217, + 104217, + null + ], + [ + "ident-token", + "height", + 104218, + 104223, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 104224, + 104224, + null + ], + [ + "dimension-token", + "1em", + 104225, + 104227, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 104228, + 104228, + null + ], + [ + "ident-token", + "padding", + 104229, + 104235, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 104236, + 104236, + null + ], + [ + "dimension-token", + ".25em", + 104237, + 104241, + { + "value": 0.25, + "type": "number", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 104242, + 104242, + null + ], + [ + "dimension-token", + ".25em", + 104243, + 104247, + { + "value": 0.25, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 104248, + 104248, + null + ], + [ + "ident-token", + "color", + 104249, + 104253, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 104254, + 104254, + null + ], + [ + "hash-token", + "#000", + 104255, + 104258, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 104259, + 104259, + null + ], + [ + "ident-token", + "background", + 104260, + 104269, + { + "value": "background" + } + ], + [ + "colon-token", + ":", + 104270, + 104270, + null + ], + [ + "ident-token", + "transparent", + 104271, + 104281, + { + "value": "transparent" + } + ], + [ + "whitespace-token", + " ", + 104282, + 104282, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e\")", + 104283, + 104603, + null + ], + [ + "whitespace-token", + " ", + 104604, + 104604, + null + ], + [ + "ident-token", + "center", + 104605, + 104610, + { + "value": "center" + } + ], + [ + "delim-token", + "/", + 104611, + 104611, + { + "value": "/" + } + ], + [ + "dimension-token", + "1em", + 104612, + 104614, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "whitespace-token", + " ", + 104615, + 104615, + null + ], + [ + "ident-token", + "auto", + 104616, + 104619, + { + "value": "auto" + } + ], + [ + "whitespace-token", + " ", + 104620, + 104620, + null + ], + [ + "ident-token", + "no-repeat", + 104621, + 104629, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 104630, + 104630, + null + ], + [ + "ident-token", + "border", + 104631, + 104636, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 104637, + 104637, + null + ], + [ + "number-token", + "0", + 104638, + 104638, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 104639, + 104639, + null + ], + [ + "ident-token", + "border-radius", + 104640, + 104652, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 104653, + 104653, + null + ], + [ + "dimension-token", + ".375rem", + 104654, + 104660, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 104661, + 104661, + null + ], + [ + "ident-token", + "opacity", + 104662, + 104668, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 104669, + 104669, + null + ], + [ + "number-token", + ".5", + 104670, + 104671, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 104672, + 104672, + null + ], + [ + "delim-token", + ".", + 104673, + 104673, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 104674, + 104682, + { + "value": "btn-close" + } + ], + [ + "colon-token", + ":", + 104683, + 104683, + null + ], + [ + "ident-token", + "hover", + 104684, + 104688, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 104689, + 104689, + null + ], + [ + "ident-token", + "color", + 104690, + 104694, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 104695, + 104695, + null + ], + [ + "hash-token", + "#000", + 104696, + 104699, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 104700, + 104700, + null + ], + [ + "ident-token", + "text-decoration", + 104701, + 104715, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 104716, + 104716, + null + ], + [ + "ident-token", + "none", + 104717, + 104720, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 104721, + 104721, + null + ], + [ + "ident-token", + "opacity", + 104722, + 104728, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 104729, + 104729, + null + ], + [ + "number-token", + ".75", + 104730, + 104732, + { + "value": 0.75, + "type": "number" + } + ], + [ + "}-token", + "}", + 104733, + 104733, + null + ], + [ + "delim-token", + ".", + 104734, + 104734, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 104735, + 104743, + { + "value": "btn-close" + } + ], + [ + "colon-token", + ":", + 104744, + 104744, + null + ], + [ + "ident-token", + "focus", + 104745, + 104749, + { + "value": "focus" + } + ], + [ + "{-token", + "{", + 104750, + 104750, + null + ], + [ + "ident-token", + "outline", + 104751, + 104757, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 104758, + 104758, + null + ], + [ + "number-token", + "0", + 104759, + 104759, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 104760, + 104760, + null + ], + [ + "ident-token", + "box-shadow", + 104761, + 104770, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 104771, + 104771, + null + ], + [ + "number-token", + "0", + 104772, + 104772, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 104773, + 104773, + null + ], + [ + "number-token", + "0", + 104774, + 104774, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 104775, + 104775, + null + ], + [ + "number-token", + "0", + 104776, + 104776, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 104777, + 104777, + null + ], + [ + "dimension-token", + ".25rem", + 104778, + 104783, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 104784, + 104784, + null + ], + [ + "function-token", + "rgba(", + 104785, + 104789, + { + "value": "rgba" + } + ], + [ + "number-token", + "13", + 104790, + 104791, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 104792, + 104792, + null + ], + [ + "number-token", + "110", + 104793, + 104795, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 104796, + 104796, + null + ], + [ + "number-token", + "253", + 104797, + 104799, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 104800, + 104800, + null + ], + [ + "number-token", + ".25", + 104801, + 104803, + { + "value": 0.25, + "type": "number" + } + ], + [ + ")-token", + ")", + 104804, + 104804, + null + ], + [ + "semicolon-token", + ";", + 104805, + 104805, + null + ], + [ + "ident-token", + "opacity", + 104806, + 104812, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 104813, + 104813, + null + ], + [ + "number-token", + "1", + 104814, + 104814, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 104815, + 104815, + null + ], + [ + "delim-token", + ".", + 104816, + 104816, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 104817, + 104825, + { + "value": "btn-close" + } + ], + [ + "delim-token", + ".", + 104826, + 104826, + { + "value": "." + } + ], + [ + "ident-token", + "disabled", + 104827, + 104834, + { + "value": "disabled" + } + ], + [ + "comma-token", + ",", + 104835, + 104835, + null + ], + [ + "delim-token", + ".", + 104836, + 104836, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 104837, + 104845, + { + "value": "btn-close" + } + ], + [ + "colon-token", + ":", + 104846, + 104846, + null + ], + [ + "ident-token", + "disabled", + 104847, + 104854, + { + "value": "disabled" + } + ], + [ + "{-token", + "{", + 104855, + 104855, + null + ], + [ + "ident-token", + "pointer-events", + 104856, + 104869, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 104870, + 104870, + null + ], + [ + "ident-token", + "none", + 104871, + 104874, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 104875, + 104875, + null + ], + [ + "delim-token", + "-", + 104876, + 104876, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-user-select", + 104877, + 104894, + { + "value": "webkit-user-select" + } + ], + [ + "colon-token", + ":", + 104895, + 104895, + null + ], + [ + "ident-token", + "none", + 104896, + 104899, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 104900, + 104900, + null + ], + [ + "delim-token", + "-", + 104901, + 104901, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-user-select", + 104902, + 104916, + { + "value": "moz-user-select" + } + ], + [ + "colon-token", + ":", + 104917, + 104917, + null + ], + [ + "ident-token", + "none", + 104918, + 104921, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 104922, + 104922, + null + ], + [ + "ident-token", + "user-select", + 104923, + 104933, + { + "value": "user-select" + } + ], + [ + "colon-token", + ":", + 104934, + 104934, + null + ], + [ + "ident-token", + "none", + 104935, + 104938, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 104939, + 104939, + null + ], + [ + "ident-token", + "opacity", + 104940, + 104946, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 104947, + 104947, + null + ], + [ + "number-token", + ".25", + 104948, + 104950, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 104951, + 104951, + null + ], + [ + "delim-token", + ".", + 104952, + 104952, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close-white", + 104953, + 104967, + { + "value": "btn-close-white" + } + ], + [ + "{-token", + "{", + 104968, + 104968, + null + ], + [ + "ident-token", + "filter", + 104969, + 104974, + { + "value": "filter" + } + ], + [ + "colon-token", + ":", + 104975, + 104975, + null + ], + [ + "function-token", + "invert(", + 104976, + 104982, + { + "value": "invert" + } + ], + [ + "number-token", + "1", + 104983, + 104983, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 104984, + 104984, + null + ], + [ + "whitespace-token", + " ", + 104985, + 104985, + null + ], + [ + "function-token", + "grayscale(", + 104986, + 104995, + { + "value": "grayscale" + } + ], + [ + "percentage-token", + "100%", + 104996, + 104999, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 105000, + 105000, + null + ], + [ + "whitespace-token", + " ", + 105001, + 105001, + null + ], + [ + "function-token", + "brightness(", + 105002, + 105012, + { + "value": "brightness" + } + ], + [ + "percentage-token", + "200%", + 105013, + 105016, + { + "value": 200 + } + ], + [ + ")-token", + ")", + 105017, + 105017, + null + ], + [ + "}-token", + "}", + 105018, + 105018, + null + ], + [ + "delim-token", + ".", + 105019, + 105019, + { + "value": "." + } + ], + [ + "ident-token", + "toast", + 105020, + 105024, + { + "value": "toast" + } + ], + [ + "{-token", + "{", + 105025, + 105025, + null + ], + [ + "delim-token", + "-", + 105026, + 105026, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105027, + 105027, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-zindex", + 105028, + 105042, + { + "value": "bs-toast-zindex" + } + ], + [ + "colon-token", + ":", + 105043, + 105043, + null + ], + [ + "number-token", + "1090", + 105044, + 105047, + { + "value": 1090, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 105048, + 105048, + null + ], + [ + "delim-token", + "-", + 105049, + 105049, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105050, + 105050, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-x", + 105051, + 105068, + { + "value": "bs-toast-padding-x" + } + ], + [ + "colon-token", + ":", + 105069, + 105069, + null + ], + [ + "dimension-token", + "0.75rem", + 105070, + 105076, + { + "value": 0.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 105077, + 105077, + null + ], + [ + "delim-token", + "-", + 105078, + 105078, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105079, + 105079, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-y", + 105080, + 105097, + { + "value": "bs-toast-padding-y" + } + ], + [ + "colon-token", + ":", + 105098, + 105098, + null + ], + [ + "dimension-token", + "0.5rem", + 105099, + 105104, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 105105, + 105105, + null + ], + [ + "delim-token", + "-", + 105106, + 105106, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105107, + 105107, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-spacing", + 105108, + 105123, + { + "value": "bs-toast-spacing" + } + ], + [ + "colon-token", + ":", + 105124, + 105124, + null + ], + [ + "dimension-token", + "1.5rem", + 105125, + 105130, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 105131, + 105131, + null + ], + [ + "delim-token", + "-", + 105132, + 105132, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105133, + 105133, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-max-width", + 105134, + 105151, + { + "value": "bs-toast-max-width" + } + ], + [ + "colon-token", + ":", + 105152, + 105152, + null + ], + [ + "dimension-token", + "350px", + 105153, + 105157, + { + "value": 350, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 105158, + 105158, + null + ], + [ + "delim-token", + "-", + 105159, + 105159, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105160, + 105160, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-font-size", + 105161, + 105178, + { + "value": "bs-toast-font-size" + } + ], + [ + "colon-token", + ":", + 105179, + 105179, + null + ], + [ + "dimension-token", + "0.875rem", + 105180, + 105187, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 105188, + 105188, + null + ], + [ + "delim-token", + "-", + 105189, + 105189, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105190, + 105190, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-color", + 105191, + 105204, + { + "value": "bs-toast-color" + } + ], + [ + "colon-token", + ":", + 105205, + 105205, + null + ], + [ + "whitespace-token", + " ", + 105206, + 105206, + null + ], + [ + "semicolon-token", + ";", + 105207, + 105207, + null + ], + [ + "delim-token", + "-", + 105208, + 105208, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105209, + 105209, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-bg", + 105210, + 105220, + { + "value": "bs-toast-bg" + } + ], + [ + "colon-token", + ":", + 105221, + 105221, + null + ], + [ + "function-token", + "rgba(", + 105222, + 105226, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 105227, + 105229, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105230, + 105230, + null + ], + [ + "whitespace-token", + " ", + 105231, + 105231, + null + ], + [ + "number-token", + "255", + 105232, + 105234, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105235, + 105235, + null + ], + [ + "whitespace-token", + " ", + 105236, + 105236, + null + ], + [ + "number-token", + "255", + 105237, + 105239, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105240, + 105240, + null + ], + [ + "whitespace-token", + " ", + 105241, + 105241, + null + ], + [ + "number-token", + "0.85", + 105242, + 105245, + { + "value": 0.85, + "type": "number" + } + ], + [ + ")-token", + ")", + 105246, + 105246, + null + ], + [ + "semicolon-token", + ";", + 105247, + 105247, + null + ], + [ + "delim-token", + "-", + 105248, + 105248, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105249, + 105249, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-width", + 105250, + 105270, + { + "value": "bs-toast-border-width" + } + ], + [ + "colon-token", + ":", + 105271, + 105271, + null + ], + [ + "dimension-token", + "1px", + 105272, + 105274, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 105275, + 105275, + null + ], + [ + "delim-token", + "-", + 105276, + 105276, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105277, + 105277, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-color", + 105278, + 105298, + { + "value": "bs-toast-border-color" + } + ], + [ + "colon-token", + ":", + 105299, + 105299, + null + ], + [ + "function-token", + "var(", + 105300, + 105303, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105304, + 105304, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105305, + 105305, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 105306, + 105332, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 105333, + 105333, + null + ], + [ + "semicolon-token", + ";", + 105334, + 105334, + null + ], + [ + "delim-token", + "-", + 105335, + 105335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105336, + 105336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-radius", + 105337, + 105358, + { + "value": "bs-toast-border-radius" + } + ], + [ + "colon-token", + ":", + 105359, + 105359, + null + ], + [ + "dimension-token", + "0.375rem", + 105360, + 105367, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 105368, + 105368, + null + ], + [ + "delim-token", + "-", + 105369, + 105369, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105370, + 105370, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-box-shadow", + 105371, + 105389, + { + "value": "bs-toast-box-shadow" + } + ], + [ + "colon-token", + ":", + 105390, + 105390, + null + ], + [ + "number-token", + "0", + 105391, + 105391, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 105392, + 105392, + null + ], + [ + "dimension-token", + "0.5rem", + 105393, + 105398, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 105399, + 105399, + null + ], + [ + "dimension-token", + "1rem", + 105400, + 105403, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 105404, + 105404, + null + ], + [ + "function-token", + "rgba(", + 105405, + 105409, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 105410, + 105410, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105411, + 105411, + null + ], + [ + "whitespace-token", + " ", + 105412, + 105412, + null + ], + [ + "number-token", + "0", + 105413, + 105413, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105414, + 105414, + null + ], + [ + "whitespace-token", + " ", + 105415, + 105415, + null + ], + [ + "number-token", + "0", + 105416, + 105416, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105417, + 105417, + null + ], + [ + "whitespace-token", + " ", + 105418, + 105418, + null + ], + [ + "number-token", + "0.15", + 105419, + 105422, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 105423, + 105423, + null + ], + [ + "semicolon-token", + ";", + 105424, + 105424, + null + ], + [ + "delim-token", + "-", + 105425, + 105425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105426, + 105426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-color", + 105427, + 105447, + { + "value": "bs-toast-header-color" + } + ], + [ + "colon-token", + ":", + 105448, + 105448, + null + ], + [ + "hash-token", + "#6c757d", + 105449, + 105455, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 105456, + 105456, + null + ], + [ + "delim-token", + "-", + 105457, + 105457, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105458, + 105458, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-bg", + 105459, + 105476, + { + "value": "bs-toast-header-bg" + } + ], + [ + "colon-token", + ":", + 105477, + 105477, + null + ], + [ + "function-token", + "rgba(", + 105478, + 105482, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 105483, + 105485, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105486, + 105486, + null + ], + [ + "whitespace-token", + " ", + 105487, + 105487, + null + ], + [ + "number-token", + "255", + 105488, + 105490, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105491, + 105491, + null + ], + [ + "whitespace-token", + " ", + 105492, + 105492, + null + ], + [ + "number-token", + "255", + 105493, + 105495, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105496, + 105496, + null + ], + [ + "whitespace-token", + " ", + 105497, + 105497, + null + ], + [ + "number-token", + "0.85", + 105498, + 105501, + { + "value": 0.85, + "type": "number" + } + ], + [ + ")-token", + ")", + 105502, + 105502, + null + ], + [ + "semicolon-token", + ";", + 105503, + 105503, + null + ], + [ + "delim-token", + "-", + 105504, + 105504, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105505, + 105505, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-border-color", + 105506, + 105533, + { + "value": "bs-toast-header-border-color" + } + ], + [ + "colon-token", + ":", + 105534, + 105534, + null + ], + [ + "function-token", + "rgba(", + 105535, + 105539, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 105540, + 105540, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105541, + 105541, + null + ], + [ + "whitespace-token", + " ", + 105542, + 105542, + null + ], + [ + "number-token", + "0", + 105543, + 105543, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105544, + 105544, + null + ], + [ + "whitespace-token", + " ", + 105545, + 105545, + null + ], + [ + "number-token", + "0", + 105546, + 105546, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 105547, + 105547, + null + ], + [ + "whitespace-token", + " ", + 105548, + 105548, + null + ], + [ + "number-token", + "0.05", + 105549, + 105552, + { + "value": 0.05, + "type": "number" + } + ], + [ + ")-token", + ")", + 105553, + 105553, + null + ], + [ + "semicolon-token", + ";", + 105554, + 105554, + null + ], + [ + "ident-token", + "width", + 105555, + 105559, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 105560, + 105560, + null + ], + [ + "function-token", + "var(", + 105561, + 105564, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105565, + 105565, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105566, + 105566, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-max-width", + 105567, + 105584, + { + "value": "bs-toast-max-width" + } + ], + [ + ")-token", + ")", + 105585, + 105585, + null + ], + [ + "semicolon-token", + ";", + 105586, + 105586, + null + ], + [ + "ident-token", + "max-width", + 105587, + 105595, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 105596, + 105596, + null + ], + [ + "percentage-token", + "100%", + 105597, + 105600, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 105601, + 105601, + null + ], + [ + "ident-token", + "font-size", + 105602, + 105610, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 105611, + 105611, + null + ], + [ + "function-token", + "var(", + 105612, + 105615, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105616, + 105616, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105617, + 105617, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-font-size", + 105618, + 105635, + { + "value": "bs-toast-font-size" + } + ], + [ + ")-token", + ")", + 105636, + 105636, + null + ], + [ + "semicolon-token", + ";", + 105637, + 105637, + null + ], + [ + "ident-token", + "color", + 105638, + 105642, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 105643, + 105643, + null + ], + [ + "function-token", + "var(", + 105644, + 105647, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105648, + 105648, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105649, + 105649, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-color", + 105650, + 105663, + { + "value": "bs-toast-color" + } + ], + [ + ")-token", + ")", + 105664, + 105664, + null + ], + [ + "semicolon-token", + ";", + 105665, + 105665, + null + ], + [ + "ident-token", + "pointer-events", + 105666, + 105679, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 105680, + 105680, + null + ], + [ + "ident-token", + "auto", + 105681, + 105684, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 105685, + 105685, + null + ], + [ + "ident-token", + "background-color", + 105686, + 105701, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 105702, + 105702, + null + ], + [ + "function-token", + "var(", + 105703, + 105706, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105707, + 105707, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105708, + 105708, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-bg", + 105709, + 105719, + { + "value": "bs-toast-bg" + } + ], + [ + ")-token", + ")", + 105720, + 105720, + null + ], + [ + "semicolon-token", + ";", + 105721, + 105721, + null + ], + [ + "ident-token", + "background-clip", + 105722, + 105736, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 105737, + 105737, + null + ], + [ + "ident-token", + "padding-box", + 105738, + 105748, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 105749, + 105749, + null + ], + [ + "ident-token", + "border", + 105750, + 105755, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 105756, + 105756, + null + ], + [ + "function-token", + "var(", + 105757, + 105760, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105761, + 105761, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105762, + 105762, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-width", + 105763, + 105783, + { + "value": "bs-toast-border-width" + } + ], + [ + ")-token", + ")", + 105784, + 105784, + null + ], + [ + "whitespace-token", + " ", + 105785, + 105785, + null + ], + [ + "ident-token", + "solid", + 105786, + 105790, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 105791, + 105791, + null + ], + [ + "function-token", + "var(", + 105792, + 105795, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105796, + 105796, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105797, + 105797, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-color", + 105798, + 105818, + { + "value": "bs-toast-border-color" + } + ], + [ + ")-token", + ")", + 105819, + 105819, + null + ], + [ + "semicolon-token", + ";", + 105820, + 105820, + null + ], + [ + "ident-token", + "box-shadow", + 105821, + 105830, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 105831, + 105831, + null + ], + [ + "function-token", + "var(", + 105832, + 105835, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105836, + 105836, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105837, + 105837, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-box-shadow", + 105838, + 105856, + { + "value": "bs-toast-box-shadow" + } + ], + [ + ")-token", + ")", + 105857, + 105857, + null + ], + [ + "semicolon-token", + ";", + 105858, + 105858, + null + ], + [ + "ident-token", + "border-radius", + 105859, + 105871, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 105872, + 105872, + null + ], + [ + "function-token", + "var(", + 105873, + 105876, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 105877, + 105877, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 105878, + 105878, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-radius", + 105879, + 105900, + { + "value": "bs-toast-border-radius" + } + ], + [ + ")-token", + ")", + 105901, + 105901, + null + ], + [ + "}-token", + "}", + 105902, + 105902, + null + ], + [ + "delim-token", + ".", + 105903, + 105903, + { + "value": "." + } + ], + [ + "ident-token", + "toast", + 105904, + 105908, + { + "value": "toast" + } + ], + [ + "delim-token", + ".", + 105909, + 105909, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 105910, + 105916, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 105917, + 105917, + null + ], + [ + "ident-token", + "opacity", + 105918, + 105924, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 105925, + 105925, + null + ], + [ + "number-token", + "0", + 105926, + 105926, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 105927, + 105927, + null + ], + [ + "delim-token", + ".", + 105928, + 105928, + { + "value": "." + } + ], + [ + "ident-token", + "toast", + 105929, + 105933, + { + "value": "toast" + } + ], + [ + "colon-token", + ":", + 105934, + 105934, + null + ], + [ + "function-token", + "not(", + 105935, + 105938, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 105939, + 105939, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 105940, + 105943, + { + "value": "show" + } + ], + [ + ")-token", + ")", + 105944, + 105944, + null + ], + [ + "{-token", + "{", + 105945, + 105945, + null + ], + [ + "ident-token", + "display", + 105946, + 105952, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 105953, + 105953, + null + ], + [ + "ident-token", + "none", + 105954, + 105957, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 105958, + 105958, + null + ], + [ + "delim-token", + ".", + 105959, + 105959, + { + "value": "." + } + ], + [ + "ident-token", + "toast-container", + 105960, + 105974, + { + "value": "toast-container" + } + ], + [ + "{-token", + "{", + 105975, + 105975, + null + ], + [ + "ident-token", + "position", + 105976, + 105983, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 105984, + 105984, + null + ], + [ + "ident-token", + "absolute", + 105985, + 105992, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 105993, + 105993, + null + ], + [ + "ident-token", + "z-index", + 105994, + 106000, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 106001, + 106001, + null + ], + [ + "function-token", + "var(", + 106002, + 106005, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106006, + 106006, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106007, + 106007, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-zindex", + 106008, + 106022, + { + "value": "bs-toast-zindex" + } + ], + [ + ")-token", + ")", + 106023, + 106023, + null + ], + [ + "semicolon-token", + ";", + 106024, + 106024, + null + ], + [ + "ident-token", + "width", + 106025, + 106029, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 106030, + 106030, + null + ], + [ + "delim-token", + "-", + 106031, + 106031, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-max-content", + 106032, + 106049, + { + "value": "webkit-max-content" + } + ], + [ + "semicolon-token", + ";", + 106050, + 106050, + null + ], + [ + "ident-token", + "width", + 106051, + 106055, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 106056, + 106056, + null + ], + [ + "delim-token", + "-", + 106057, + 106057, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-max-content", + 106058, + 106072, + { + "value": "moz-max-content" + } + ], + [ + "semicolon-token", + ";", + 106073, + 106073, + null + ], + [ + "ident-token", + "width", + 106074, + 106078, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 106079, + 106079, + null + ], + [ + "ident-token", + "max-content", + 106080, + 106090, + { + "value": "max-content" + } + ], + [ + "semicolon-token", + ";", + 106091, + 106091, + null + ], + [ + "ident-token", + "max-width", + 106092, + 106100, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 106101, + 106101, + null + ], + [ + "percentage-token", + "100%", + 106102, + 106105, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 106106, + 106106, + null + ], + [ + "ident-token", + "pointer-events", + 106107, + 106120, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 106121, + 106121, + null + ], + [ + "ident-token", + "none", + 106122, + 106125, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 106126, + 106126, + null + ], + [ + "delim-token", + ".", + 106127, + 106127, + { + "value": "." + } + ], + [ + "ident-token", + "toast-container", + 106128, + 106142, + { + "value": "toast-container" + } + ], + [ + "delim-token", + ">", + 106143, + 106143, + { + "value": ">" + } + ], + [ + "colon-token", + ":", + 106144, + 106144, + null + ], + [ + "function-token", + "not(", + 106145, + 106148, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 106149, + 106149, + null + ], + [ + "ident-token", + "last-child", + 106150, + 106159, + { + "value": "last-child" + } + ], + [ + ")-token", + ")", + 106160, + 106160, + null + ], + [ + "{-token", + "{", + 106161, + 106161, + null + ], + [ + "ident-token", + "margin-bottom", + 106162, + 106174, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 106175, + 106175, + null + ], + [ + "function-token", + "var(", + 106176, + 106179, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106180, + 106180, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106181, + 106181, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-spacing", + 106182, + 106197, + { + "value": "bs-toast-spacing" + } + ], + [ + ")-token", + ")", + 106198, + 106198, + null + ], + [ + "}-token", + "}", + 106199, + 106199, + null + ], + [ + "delim-token", + ".", + 106200, + 106200, + { + "value": "." + } + ], + [ + "ident-token", + "toast-header", + 106201, + 106212, + { + "value": "toast-header" + } + ], + [ + "{-token", + "{", + 106213, + 106213, + null + ], + [ + "ident-token", + "display", + 106214, + 106220, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 106221, + 106221, + null + ], + [ + "ident-token", + "flex", + 106222, + 106225, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 106226, + 106226, + null + ], + [ + "ident-token", + "align-items", + 106227, + 106237, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 106238, + 106238, + null + ], + [ + "ident-token", + "center", + 106239, + 106244, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 106245, + 106245, + null + ], + [ + "ident-token", + "padding", + 106246, + 106252, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 106253, + 106253, + null + ], + [ + "function-token", + "var(", + 106254, + 106257, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106258, + 106258, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106259, + 106259, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-y", + 106260, + 106277, + { + "value": "bs-toast-padding-y" + } + ], + [ + ")-token", + ")", + 106278, + 106278, + null + ], + [ + "whitespace-token", + " ", + 106279, + 106279, + null + ], + [ + "function-token", + "var(", + 106280, + 106283, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106284, + 106284, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106285, + 106285, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-x", + 106286, + 106303, + { + "value": "bs-toast-padding-x" + } + ], + [ + ")-token", + ")", + 106304, + 106304, + null + ], + [ + "semicolon-token", + ";", + 106305, + 106305, + null + ], + [ + "ident-token", + "color", + 106306, + 106310, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 106311, + 106311, + null + ], + [ + "function-token", + "var(", + 106312, + 106315, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106316, + 106316, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106317, + 106317, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-color", + 106318, + 106338, + { + "value": "bs-toast-header-color" + } + ], + [ + ")-token", + ")", + 106339, + 106339, + null + ], + [ + "semicolon-token", + ";", + 106340, + 106340, + null + ], + [ + "ident-token", + "background-color", + 106341, + 106356, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 106357, + 106357, + null + ], + [ + "function-token", + "var(", + 106358, + 106361, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106362, + 106362, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106363, + 106363, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-bg", + 106364, + 106381, + { + "value": "bs-toast-header-bg" + } + ], + [ + ")-token", + ")", + 106382, + 106382, + null + ], + [ + "semicolon-token", + ";", + 106383, + 106383, + null + ], + [ + "ident-token", + "background-clip", + 106384, + 106398, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 106399, + 106399, + null + ], + [ + "ident-token", + "padding-box", + 106400, + 106410, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 106411, + 106411, + null + ], + [ + "ident-token", + "border-bottom", + 106412, + 106424, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 106425, + 106425, + null + ], + [ + "function-token", + "var(", + 106426, + 106429, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106430, + 106430, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106431, + 106431, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-width", + 106432, + 106452, + { + "value": "bs-toast-border-width" + } + ], + [ + ")-token", + ")", + 106453, + 106453, + null + ], + [ + "whitespace-token", + " ", + 106454, + 106454, + null + ], + [ + "ident-token", + "solid", + 106455, + 106459, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 106460, + 106460, + null + ], + [ + "function-token", + "var(", + 106461, + 106464, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106465, + 106465, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106466, + 106466, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-header-border-color", + 106467, + 106494, + { + "value": "bs-toast-header-border-color" + } + ], + [ + ")-token", + ")", + 106495, + 106495, + null + ], + [ + "semicolon-token", + ";", + 106496, + 106496, + null + ], + [ + "ident-token", + "border-top-left-radius", + 106497, + 106518, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 106519, + 106519, + null + ], + [ + "function-token", + "calc(", + 106520, + 106524, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 106525, + 106528, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106529, + 106529, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106530, + 106530, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-radius", + 106531, + 106552, + { + "value": "bs-toast-border-radius" + } + ], + [ + ")-token", + ")", + 106553, + 106553, + null + ], + [ + "whitespace-token", + " ", + 106554, + 106554, + null + ], + [ + "delim-token", + "-", + 106555, + 106555, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 106556, + 106556, + null + ], + [ + "function-token", + "var(", + 106557, + 106560, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106561, + 106561, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106562, + 106562, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-width", + 106563, + 106583, + { + "value": "bs-toast-border-width" + } + ], + [ + ")-token", + ")", + 106584, + 106584, + null + ], + [ + ")-token", + ")", + 106585, + 106585, + null + ], + [ + "semicolon-token", + ";", + 106586, + 106586, + null + ], + [ + "ident-token", + "border-top-right-radius", + 106587, + 106609, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 106610, + 106610, + null + ], + [ + "function-token", + "calc(", + 106611, + 106615, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 106616, + 106619, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106620, + 106620, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106621, + 106621, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-radius", + 106622, + 106643, + { + "value": "bs-toast-border-radius" + } + ], + [ + ")-token", + ")", + 106644, + 106644, + null + ], + [ + "whitespace-token", + " ", + 106645, + 106645, + null + ], + [ + "delim-token", + "-", + 106646, + 106646, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 106647, + 106647, + null + ], + [ + "function-token", + "var(", + 106648, + 106651, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106652, + 106652, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106653, + 106653, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-border-width", + 106654, + 106674, + { + "value": "bs-toast-border-width" + } + ], + [ + ")-token", + ")", + 106675, + 106675, + null + ], + [ + ")-token", + ")", + 106676, + 106676, + null + ], + [ + "}-token", + "}", + 106677, + 106677, + null + ], + [ + "delim-token", + ".", + 106678, + 106678, + { + "value": "." + } + ], + [ + "ident-token", + "toast-header", + 106679, + 106690, + { + "value": "toast-header" + } + ], + [ + "whitespace-token", + " ", + 106691, + 106691, + null + ], + [ + "delim-token", + ".", + 106692, + 106692, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 106693, + 106701, + { + "value": "btn-close" + } + ], + [ + "{-token", + "{", + 106702, + 106702, + null + ], + [ + "ident-token", + "margin-right", + 106703, + 106714, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 106715, + 106715, + null + ], + [ + "function-token", + "calc(", + 106716, + 106720, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 106721, + 106723, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 106724, + 106724, + null + ], + [ + "delim-token", + "*", + 106725, + 106725, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 106726, + 106726, + null + ], + [ + "function-token", + "var(", + 106727, + 106730, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106731, + 106731, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106732, + 106732, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-x", + 106733, + 106750, + { + "value": "bs-toast-padding-x" + } + ], + [ + ")-token", + ")", + 106751, + 106751, + null + ], + [ + ")-token", + ")", + 106752, + 106752, + null + ], + [ + "semicolon-token", + ";", + 106753, + 106753, + null + ], + [ + "ident-token", + "margin-left", + 106754, + 106764, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 106765, + 106765, + null + ], + [ + "function-token", + "var(", + 106766, + 106769, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106770, + 106770, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106771, + 106771, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-x", + 106772, + 106789, + { + "value": "bs-toast-padding-x" + } + ], + [ + ")-token", + ")", + 106790, + 106790, + null + ], + [ + "}-token", + "}", + 106791, + 106791, + null + ], + [ + "delim-token", + ".", + 106792, + 106792, + { + "value": "." + } + ], + [ + "ident-token", + "toast-body", + 106793, + 106802, + { + "value": "toast-body" + } + ], + [ + "{-token", + "{", + 106803, + 106803, + null + ], + [ + "ident-token", + "padding", + 106804, + 106810, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 106811, + 106811, + null + ], + [ + "function-token", + "var(", + 106812, + 106815, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 106816, + 106816, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106817, + 106817, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-toast-padding-x", + 106818, + 106835, + { + "value": "bs-toast-padding-x" + } + ], + [ + ")-token", + ")", + 106836, + 106836, + null + ], + [ + "semicolon-token", + ";", + 106837, + 106837, + null + ], + [ + "ident-token", + "word-wrap", + 106838, + 106846, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 106847, + 106847, + null + ], + [ + "ident-token", + "break-word", + 106848, + 106857, + { + "value": "break-word" + } + ], + [ + "}-token", + "}", + 106858, + 106858, + null + ], + [ + "delim-token", + ".", + 106859, + 106859, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 106860, + 106864, + { + "value": "modal" + } + ], + [ + "{-token", + "{", + 106865, + 106865, + null + ], + [ + "delim-token", + "-", + 106866, + 106866, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106867, + 106867, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-zindex", + 106868, + 106882, + { + "value": "bs-modal-zindex" + } + ], + [ + "colon-token", + ":", + 106883, + 106883, + null + ], + [ + "number-token", + "1055", + 106884, + 106887, + { + "value": 1055, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 106888, + 106888, + null + ], + [ + "delim-token", + "-", + 106889, + 106889, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106890, + 106890, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-width", + 106891, + 106904, + { + "value": "bs-modal-width" + } + ], + [ + "colon-token", + ":", + 106905, + 106905, + null + ], + [ + "dimension-token", + "500px", + 106906, + 106910, + { + "value": 500, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 106911, + 106911, + null + ], + [ + "delim-token", + "-", + 106912, + 106912, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106913, + 106913, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-padding", + 106914, + 106929, + { + "value": "bs-modal-padding" + } + ], + [ + "colon-token", + ":", + 106930, + 106930, + null + ], + [ + "dimension-token", + "1rem", + 106931, + 106934, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 106935, + 106935, + null + ], + [ + "delim-token", + "-", + 106936, + 106936, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106937, + 106937, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-margin", + 106938, + 106952, + { + "value": "bs-modal-margin" + } + ], + [ + "colon-token", + ":", + 106953, + 106953, + null + ], + [ + "dimension-token", + "0.5rem", + 106954, + 106959, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 106960, + 106960, + null + ], + [ + "delim-token", + "-", + 106961, + 106961, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106962, + 106962, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-color", + 106963, + 106976, + { + "value": "bs-modal-color" + } + ], + [ + "colon-token", + ":", + 106977, + 106977, + null + ], + [ + "whitespace-token", + " ", + 106978, + 106978, + null + ], + [ + "semicolon-token", + ";", + 106979, + 106979, + null + ], + [ + "delim-token", + "-", + 106980, + 106980, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 106981, + 106981, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-bg", + 106982, + 106992, + { + "value": "bs-modal-bg" + } + ], + [ + "colon-token", + ":", + 106993, + 106993, + null + ], + [ + "hash-token", + "#fff", + 106994, + 106997, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 106998, + 106998, + null + ], + [ + "delim-token", + "-", + 106999, + 106999, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107000, + 107000, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-color", + 107001, + 107021, + { + "value": "bs-modal-border-color" + } + ], + [ + "colon-token", + ":", + 107022, + 107022, + null + ], + [ + "function-token", + "var(", + 107023, + 107026, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 107027, + 107027, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107028, + 107028, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 107029, + 107055, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 107056, + 107056, + null + ], + [ + "semicolon-token", + ";", + 107057, + 107057, + null + ], + [ + "delim-token", + "-", + 107058, + 107058, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107059, + 107059, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-width", + 107060, + 107080, + { + "value": "bs-modal-border-width" + } + ], + [ + "colon-token", + ":", + 107081, + 107081, + null + ], + [ + "dimension-token", + "1px", + 107082, + 107084, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 107085, + 107085, + null + ], + [ + "delim-token", + "-", + 107086, + 107086, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107087, + 107087, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-radius", + 107088, + 107109, + { + "value": "bs-modal-border-radius" + } + ], + [ + "colon-token", + ":", + 107110, + 107110, + null + ], + [ + "dimension-token", + "0.5rem", + 107111, + 107116, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 107117, + 107117, + null + ], + [ + "delim-token", + "-", + 107118, + 107118, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107119, + 107119, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-box-shadow", + 107120, + 107138, + { + "value": "bs-modal-box-shadow" + } + ], + [ + "colon-token", + ":", + 107139, + 107139, + null + ], + [ + "number-token", + "0", + 107140, + 107140, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 107141, + 107141, + null + ], + [ + "dimension-token", + "0.125rem", + 107142, + 107149, + { + "value": 0.125, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 107150, + 107150, + null + ], + [ + "dimension-token", + "0.25rem", + 107151, + 107157, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 107158, + 107158, + null + ], + [ + "function-token", + "rgba(", + 107159, + 107163, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 107164, + 107164, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 107165, + 107165, + null + ], + [ + "whitespace-token", + " ", + 107166, + 107166, + null + ], + [ + "number-token", + "0", + 107167, + 107167, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 107168, + 107168, + null + ], + [ + "whitespace-token", + " ", + 107169, + 107169, + null + ], + [ + "number-token", + "0", + 107170, + 107170, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 107171, + 107171, + null + ], + [ + "whitespace-token", + " ", + 107172, + 107172, + null + ], + [ + "number-token", + "0.075", + 107173, + 107177, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 107178, + 107178, + null + ], + [ + "semicolon-token", + ";", + 107179, + 107179, + null + ], + [ + "delim-token", + "-", + 107180, + 107180, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107181, + 107181, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-inner-border-radius", + 107182, + 107209, + { + "value": "bs-modal-inner-border-radius" + } + ], + [ + "colon-token", + ":", + 107210, + 107210, + null + ], + [ + "function-token", + "calc(", + 107211, + 107215, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.5rem", + 107216, + 107221, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 107222, + 107222, + null + ], + [ + "delim-token", + "-", + 107223, + 107223, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 107224, + 107224, + null + ], + [ + "dimension-token", + "1px", + 107225, + 107227, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 107228, + 107228, + null + ], + [ + "semicolon-token", + ";", + 107229, + 107229, + null + ], + [ + "delim-token", + "-", + 107230, + 107230, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107231, + 107231, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-x", + 107232, + 107256, + { + "value": "bs-modal-header-padding-x" + } + ], + [ + "colon-token", + ":", + 107257, + 107257, + null + ], + [ + "dimension-token", + "1rem", + 107258, + 107261, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 107262, + 107262, + null + ], + [ + "delim-token", + "-", + 107263, + 107263, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107264, + 107264, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-y", + 107265, + 107289, + { + "value": "bs-modal-header-padding-y" + } + ], + [ + "colon-token", + ":", + 107290, + 107290, + null + ], + [ + "dimension-token", + "1rem", + 107291, + 107294, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 107295, + 107295, + null + ], + [ + "delim-token", + "-", + 107296, + 107296, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107297, + 107297, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding", + 107298, + 107320, + { + "value": "bs-modal-header-padding" + } + ], + [ + "colon-token", + ":", + 107321, + 107321, + null + ], + [ + "dimension-token", + "1rem", + 107322, + 107325, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 107326, + 107326, + null + ], + [ + "dimension-token", + "1rem", + 107327, + 107330, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 107331, + 107331, + null + ], + [ + "delim-token", + "-", + 107332, + 107332, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107333, + 107333, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-border-color", + 107334, + 107361, + { + "value": "bs-modal-header-border-color" + } + ], + [ + "colon-token", + ":", + 107362, + 107362, + null + ], + [ + "function-token", + "var(", + 107363, + 107366, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 107367, + 107367, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107368, + 107368, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 107369, + 107383, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 107384, + 107384, + null + ], + [ + "semicolon-token", + ";", + 107385, + 107385, + null + ], + [ + "delim-token", + "-", + 107386, + 107386, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107387, + 107387, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-border-width", + 107388, + 107415, + { + "value": "bs-modal-header-border-width" + } + ], + [ + "colon-token", + ":", + 107416, + 107416, + null + ], + [ + "dimension-token", + "1px", + 107417, + 107419, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 107420, + 107420, + null + ], + [ + "delim-token", + "-", + 107421, + 107421, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107422, + 107422, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-title-line-height", + 107423, + 107448, + { + "value": "bs-modal-title-line-height" + } + ], + [ + "colon-token", + ":", + 107449, + 107449, + null + ], + [ + "number-token", + "1.5", + 107450, + 107452, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 107453, + 107453, + null + ], + [ + "delim-token", + "-", + 107454, + 107454, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107455, + 107455, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-gap", + 107456, + 107474, + { + "value": "bs-modal-footer-gap" + } + ], + [ + "colon-token", + ":", + 107475, + 107475, + null + ], + [ + "dimension-token", + "0.5rem", + 107476, + 107481, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 107482, + 107482, + null + ], + [ + "delim-token", + "-", + 107483, + 107483, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107484, + 107484, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-bg", + 107485, + 107502, + { + "value": "bs-modal-footer-bg" + } + ], + [ + "colon-token", + ":", + 107503, + 107503, + null + ], + [ + "whitespace-token", + " ", + 107504, + 107504, + null + ], + [ + "semicolon-token", + ";", + 107505, + 107505, + null + ], + [ + "delim-token", + "-", + 107506, + 107506, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107507, + 107507, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-border-color", + 107508, + 107535, + { + "value": "bs-modal-footer-border-color" + } + ], + [ + "colon-token", + ":", + 107536, + 107536, + null + ], + [ + "function-token", + "var(", + 107537, + 107540, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 107541, + 107541, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107542, + 107542, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 107543, + 107557, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 107558, + 107558, + null + ], + [ + "semicolon-token", + ";", + 107559, + 107559, + null + ], + [ + "delim-token", + "-", + 107560, + 107560, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107561, + 107561, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-border-width", + 107562, + 107589, + { + "value": "bs-modal-footer-border-width" + } + ], + [ + "colon-token", + ":", + 107590, + 107590, + null + ], + [ + "dimension-token", + "1px", + 107591, + 107593, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 107594, + 107594, + null + ], + [ + "ident-token", + "position", + 107595, + 107602, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 107603, + 107603, + null + ], + [ + "ident-token", + "fixed", + 107604, + 107608, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 107609, + 107609, + null + ], + [ + "ident-token", + "top", + 107610, + 107612, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 107613, + 107613, + null + ], + [ + "number-token", + "0", + 107614, + 107614, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 107615, + 107615, + null + ], + [ + "ident-token", + "left", + 107616, + 107619, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 107620, + 107620, + null + ], + [ + "number-token", + "0", + 107621, + 107621, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 107622, + 107622, + null + ], + [ + "ident-token", + "z-index", + 107623, + 107629, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 107630, + 107630, + null + ], + [ + "function-token", + "var(", + 107631, + 107634, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 107635, + 107635, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107636, + 107636, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-zindex", + 107637, + 107651, + { + "value": "bs-modal-zindex" + } + ], + [ + ")-token", + ")", + 107652, + 107652, + null + ], + [ + "semicolon-token", + ";", + 107653, + 107653, + null + ], + [ + "ident-token", + "display", + 107654, + 107660, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 107661, + 107661, + null + ], + [ + "ident-token", + "none", + 107662, + 107665, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 107666, + 107666, + null + ], + [ + "ident-token", + "width", + 107667, + 107671, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 107672, + 107672, + null + ], + [ + "percentage-token", + "100%", + 107673, + 107676, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 107677, + 107677, + null + ], + [ + "ident-token", + "height", + 107678, + 107683, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 107684, + 107684, + null + ], + [ + "percentage-token", + "100%", + 107685, + 107688, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 107689, + 107689, + null + ], + [ + "ident-token", + "overflow-x", + 107690, + 107699, + { + "value": "overflow-x" + } + ], + [ + "colon-token", + ":", + 107700, + 107700, + null + ], + [ + "ident-token", + "hidden", + 107701, + 107706, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 107707, + 107707, + null + ], + [ + "ident-token", + "overflow-y", + 107708, + 107717, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 107718, + 107718, + null + ], + [ + "ident-token", + "auto", + 107719, + 107722, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 107723, + 107723, + null + ], + [ + "ident-token", + "outline", + 107724, + 107730, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 107731, + 107731, + null + ], + [ + "number-token", + "0", + 107732, + 107732, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 107733, + 107733, + null + ], + [ + "delim-token", + ".", + 107734, + 107734, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 107735, + 107746, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 107747, + 107747, + null + ], + [ + "ident-token", + "position", + 107748, + 107755, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 107756, + 107756, + null + ], + [ + "ident-token", + "relative", + 107757, + 107764, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 107765, + 107765, + null + ], + [ + "ident-token", + "width", + 107766, + 107770, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 107771, + 107771, + null + ], + [ + "ident-token", + "auto", + 107772, + 107775, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 107776, + 107776, + null + ], + [ + "ident-token", + "margin", + 107777, + 107782, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 107783, + 107783, + null + ], + [ + "function-token", + "var(", + 107784, + 107787, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 107788, + 107788, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 107789, + 107789, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-margin", + 107790, + 107804, + { + "value": "bs-modal-margin" + } + ], + [ + ")-token", + ")", + 107805, + 107805, + null + ], + [ + "semicolon-token", + ";", + 107806, + 107806, + null + ], + [ + "ident-token", + "pointer-events", + 107807, + 107820, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 107821, + 107821, + null + ], + [ + "ident-token", + "none", + 107822, + 107825, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 107826, + 107826, + null + ], + [ + "delim-token", + ".", + 107827, + 107827, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 107828, + 107832, + { + "value": "modal" + } + ], + [ + "delim-token", + ".", + 107833, + 107833, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 107834, + 107837, + { + "value": "fade" + } + ], + [ + "whitespace-token", + " ", + 107838, + 107838, + null + ], + [ + "delim-token", + ".", + 107839, + 107839, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 107840, + 107851, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 107852, + 107852, + null + ], + [ + "ident-token", + "transition", + 107853, + 107862, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 107863, + 107863, + null + ], + [ + "ident-token", + "transform", + 107864, + 107872, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 107873, + 107873, + null + ], + [ + "dimension-token", + ".3s", + 107874, + 107876, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 107877, + 107877, + null + ], + [ + "ident-token", + "ease-out", + 107878, + 107885, + { + "value": "ease-out" + } + ], + [ + "semicolon-token", + ";", + 107886, + 107886, + null + ], + [ + "ident-token", + "transform", + 107887, + 107895, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 107896, + 107896, + null + ], + [ + "function-token", + "translate(", + 107897, + 107906, + { + "value": "translate" + } + ], + [ + "number-token", + "0", + 107907, + 107907, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 107908, + 107908, + null + ], + [ + "dimension-token", + "-50px", + 107909, + 107913, + { + "value": -50, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 107914, + 107914, + null + ], + [ + "}-token", + "}", + 107915, + 107915, + null + ], + [ + "at-keyword-token", + "@media", + 107916, + 107921, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 107922, + 107922, + null + ], + [ + "(-token", + "(", + 107923, + 107923, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 107924, + 107945, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 107946, + 107946, + null + ], + [ + "ident-token", + "reduce", + 107947, + 107952, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 107953, + 107953, + null + ], + [ + "{-token", + "{", + 107954, + 107954, + null + ], + [ + "delim-token", + ".", + 107955, + 107955, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 107956, + 107960, + { + "value": "modal" + } + ], + [ + "delim-token", + ".", + 107961, + 107961, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 107962, + 107965, + { + "value": "fade" + } + ], + [ + "whitespace-token", + " ", + 107966, + 107966, + null + ], + [ + "delim-token", + ".", + 107967, + 107967, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 107968, + 107979, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 107980, + 107980, + null + ], + [ + "ident-token", + "transition", + 107981, + 107990, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 107991, + 107991, + null + ], + [ + "ident-token", + "none", + 107992, + 107995, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 107996, + 107996, + null + ], + [ + "}-token", + "}", + 107997, + 107997, + null + ], + [ + "delim-token", + ".", + 107998, + 107998, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 107999, + 108003, + { + "value": "modal" + } + ], + [ + "delim-token", + ".", + 108004, + 108004, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 108005, + 108008, + { + "value": "show" + } + ], + [ + "whitespace-token", + " ", + 108009, + 108009, + null + ], + [ + "delim-token", + ".", + 108010, + 108010, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 108011, + 108022, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 108023, + 108023, + null + ], + [ + "ident-token", + "transform", + 108024, + 108032, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 108033, + 108033, + null + ], + [ + "ident-token", + "none", + 108034, + 108037, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 108038, + 108038, + null + ], + [ + "delim-token", + ".", + 108039, + 108039, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 108040, + 108044, + { + "value": "modal" + } + ], + [ + "delim-token", + ".", + 108045, + 108045, + { + "value": "." + } + ], + [ + "ident-token", + "modal-static", + 108046, + 108057, + { + "value": "modal-static" + } + ], + [ + "whitespace-token", + " ", + 108058, + 108058, + null + ], + [ + "delim-token", + ".", + 108059, + 108059, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 108060, + 108071, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 108072, + 108072, + null + ], + [ + "ident-token", + "transform", + 108073, + 108081, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 108082, + 108082, + null + ], + [ + "function-token", + "scale(", + 108083, + 108088, + { + "value": "scale" + } + ], + [ + "number-token", + "1.02", + 108089, + 108092, + { + "value": 1.02, + "type": "number" + } + ], + [ + ")-token", + ")", + 108093, + 108093, + null + ], + [ + "}-token", + "}", + 108094, + 108094, + null + ], + [ + "delim-token", + ".", + 108095, + 108095, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog-scrollable", + 108096, + 108118, + { + "value": "modal-dialog-scrollable" + } + ], + [ + "{-token", + "{", + 108119, + 108119, + null + ], + [ + "ident-token", + "height", + 108120, + 108125, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 108126, + 108126, + null + ], + [ + "function-token", + "calc(", + 108127, + 108131, + { + "value": "calc" + } + ], + [ + "percentage-token", + "100%", + 108132, + 108135, + { + "value": 100 + } + ], + [ + "whitespace-token", + " ", + 108136, + 108136, + null + ], + [ + "delim-token", + "-", + 108137, + 108137, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 108138, + 108138, + null + ], + [ + "function-token", + "var(", + 108139, + 108142, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108143, + 108143, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108144, + 108144, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-margin", + 108145, + 108159, + { + "value": "bs-modal-margin" + } + ], + [ + ")-token", + ")", + 108160, + 108160, + null + ], + [ + "whitespace-token", + " ", + 108161, + 108161, + null + ], + [ + "delim-token", + "*", + 108162, + 108162, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 108163, + 108163, + null + ], + [ + "number-token", + "2", + 108164, + 108164, + { + "value": 2, + "type": "integer" + } + ], + [ + ")-token", + ")", + 108165, + 108165, + null + ], + [ + "}-token", + "}", + 108166, + 108166, + null + ], + [ + "delim-token", + ".", + 108167, + 108167, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog-scrollable", + 108168, + 108190, + { + "value": "modal-dialog-scrollable" + } + ], + [ + "whitespace-token", + " ", + 108191, + 108191, + null + ], + [ + "delim-token", + ".", + 108192, + 108192, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 108193, + 108205, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 108206, + 108206, + null + ], + [ + "ident-token", + "max-height", + 108207, + 108216, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 108217, + 108217, + null + ], + [ + "percentage-token", + "100%", + 108218, + 108221, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 108222, + 108222, + null + ], + [ + "ident-token", + "overflow", + 108223, + 108230, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 108231, + 108231, + null + ], + [ + "ident-token", + "hidden", + 108232, + 108237, + { + "value": "hidden" + } + ], + [ + "}-token", + "}", + 108238, + 108238, + null + ], + [ + "delim-token", + ".", + 108239, + 108239, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog-scrollable", + 108240, + 108262, + { + "value": "modal-dialog-scrollable" + } + ], + [ + "whitespace-token", + " ", + 108263, + 108263, + null + ], + [ + "delim-token", + ".", + 108264, + 108264, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 108265, + 108274, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 108275, + 108275, + null + ], + [ + "ident-token", + "overflow-y", + 108276, + 108285, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 108286, + 108286, + null + ], + [ + "ident-token", + "auto", + 108287, + 108290, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 108291, + 108291, + null + ], + [ + "delim-token", + ".", + 108292, + 108292, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog-centered", + 108293, + 108313, + { + "value": "modal-dialog-centered" + } + ], + [ + "{-token", + "{", + 108314, + 108314, + null + ], + [ + "ident-token", + "display", + 108315, + 108321, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 108322, + 108322, + null + ], + [ + "ident-token", + "flex", + 108323, + 108326, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 108327, + 108327, + null + ], + [ + "ident-token", + "align-items", + 108328, + 108338, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 108339, + 108339, + null + ], + [ + "ident-token", + "center", + 108340, + 108345, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 108346, + 108346, + null + ], + [ + "ident-token", + "min-height", + 108347, + 108356, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 108357, + 108357, + null + ], + [ + "function-token", + "calc(", + 108358, + 108362, + { + "value": "calc" + } + ], + [ + "percentage-token", + "100%", + 108363, + 108366, + { + "value": 100 + } + ], + [ + "whitespace-token", + " ", + 108367, + 108367, + null + ], + [ + "delim-token", + "-", + 108368, + 108368, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 108369, + 108369, + null + ], + [ + "function-token", + "var(", + 108370, + 108373, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108374, + 108374, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108375, + 108375, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-margin", + 108376, + 108390, + { + "value": "bs-modal-margin" + } + ], + [ + ")-token", + ")", + 108391, + 108391, + null + ], + [ + "whitespace-token", + " ", + 108392, + 108392, + null + ], + [ + "delim-token", + "*", + 108393, + 108393, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 108394, + 108394, + null + ], + [ + "number-token", + "2", + 108395, + 108395, + { + "value": 2, + "type": "integer" + } + ], + [ + ")-token", + ")", + 108396, + 108396, + null + ], + [ + "}-token", + "}", + 108397, + 108397, + null + ], + [ + "delim-token", + ".", + 108398, + 108398, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 108399, + 108411, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 108412, + 108412, + null + ], + [ + "ident-token", + "position", + 108413, + 108420, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 108421, + 108421, + null + ], + [ + "ident-token", + "relative", + 108422, + 108429, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 108430, + 108430, + null + ], + [ + "ident-token", + "display", + 108431, + 108437, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 108438, + 108438, + null + ], + [ + "ident-token", + "flex", + 108439, + 108442, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 108443, + 108443, + null + ], + [ + "ident-token", + "flex-direction", + 108444, + 108457, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 108458, + 108458, + null + ], + [ + "ident-token", + "column", + 108459, + 108464, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 108465, + 108465, + null + ], + [ + "ident-token", + "width", + 108466, + 108470, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 108471, + 108471, + null + ], + [ + "percentage-token", + "100%", + 108472, + 108475, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 108476, + 108476, + null + ], + [ + "ident-token", + "color", + 108477, + 108481, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 108482, + 108482, + null + ], + [ + "function-token", + "var(", + 108483, + 108486, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108487, + 108487, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108488, + 108488, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-color", + 108489, + 108502, + { + "value": "bs-modal-color" + } + ], + [ + ")-token", + ")", + 108503, + 108503, + null + ], + [ + "semicolon-token", + ";", + 108504, + 108504, + null + ], + [ + "ident-token", + "pointer-events", + 108505, + 108518, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 108519, + 108519, + null + ], + [ + "ident-token", + "auto", + 108520, + 108523, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 108524, + 108524, + null + ], + [ + "ident-token", + "background-color", + 108525, + 108540, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 108541, + 108541, + null + ], + [ + "function-token", + "var(", + 108542, + 108545, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108546, + 108546, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108547, + 108547, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-bg", + 108548, + 108558, + { + "value": "bs-modal-bg" + } + ], + [ + ")-token", + ")", + 108559, + 108559, + null + ], + [ + "semicolon-token", + ";", + 108560, + 108560, + null + ], + [ + "ident-token", + "background-clip", + 108561, + 108575, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 108576, + 108576, + null + ], + [ + "ident-token", + "padding-box", + 108577, + 108587, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 108588, + 108588, + null + ], + [ + "ident-token", + "border", + 108589, + 108594, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 108595, + 108595, + null + ], + [ + "function-token", + "var(", + 108596, + 108599, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108600, + 108600, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108601, + 108601, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-width", + 108602, + 108622, + { + "value": "bs-modal-border-width" + } + ], + [ + ")-token", + ")", + 108623, + 108623, + null + ], + [ + "whitespace-token", + " ", + 108624, + 108624, + null + ], + [ + "ident-token", + "solid", + 108625, + 108629, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 108630, + 108630, + null + ], + [ + "function-token", + "var(", + 108631, + 108634, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108635, + 108635, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108636, + 108636, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-color", + 108637, + 108657, + { + "value": "bs-modal-border-color" + } + ], + [ + ")-token", + ")", + 108658, + 108658, + null + ], + [ + "semicolon-token", + ";", + 108659, + 108659, + null + ], + [ + "ident-token", + "border-radius", + 108660, + 108672, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 108673, + 108673, + null + ], + [ + "function-token", + "var(", + 108674, + 108677, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108678, + 108678, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108679, + 108679, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-border-radius", + 108680, + 108701, + { + "value": "bs-modal-border-radius" + } + ], + [ + ")-token", + ")", + 108702, + 108702, + null + ], + [ + "semicolon-token", + ";", + 108703, + 108703, + null + ], + [ + "ident-token", + "outline", + 108704, + 108710, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 108711, + 108711, + null + ], + [ + "number-token", + "0", + 108712, + 108712, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 108713, + 108713, + null + ], + [ + "delim-token", + ".", + 108714, + 108714, + { + "value": "." + } + ], + [ + "ident-token", + "modal-backdrop", + 108715, + 108728, + { + "value": "modal-backdrop" + } + ], + [ + "{-token", + "{", + 108729, + 108729, + null + ], + [ + "delim-token", + "-", + 108730, + 108730, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108731, + 108731, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-zindex", + 108732, + 108749, + { + "value": "bs-backdrop-zindex" + } + ], + [ + "colon-token", + ":", + 108750, + 108750, + null + ], + [ + "number-token", + "1050", + 108751, + 108754, + { + "value": 1050, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 108755, + 108755, + null + ], + [ + "delim-token", + "-", + 108756, + 108756, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108757, + 108757, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-bg", + 108758, + 108771, + { + "value": "bs-backdrop-bg" + } + ], + [ + "colon-token", + ":", + 108772, + 108772, + null + ], + [ + "hash-token", + "#000", + 108773, + 108776, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 108777, + 108777, + null + ], + [ + "delim-token", + "-", + 108778, + 108778, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108779, + 108779, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-opacity", + 108780, + 108798, + { + "value": "bs-backdrop-opacity" + } + ], + [ + "colon-token", + ":", + 108799, + 108799, + null + ], + [ + "number-token", + "0.5", + 108800, + 108802, + { + "value": 0.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 108803, + 108803, + null + ], + [ + "ident-token", + "position", + 108804, + 108811, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 108812, + 108812, + null + ], + [ + "ident-token", + "fixed", + 108813, + 108817, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 108818, + 108818, + null + ], + [ + "ident-token", + "top", + 108819, + 108821, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 108822, + 108822, + null + ], + [ + "number-token", + "0", + 108823, + 108823, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 108824, + 108824, + null + ], + [ + "ident-token", + "left", + 108825, + 108828, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 108829, + 108829, + null + ], + [ + "number-token", + "0", + 108830, + 108830, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 108831, + 108831, + null + ], + [ + "ident-token", + "z-index", + 108832, + 108838, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 108839, + 108839, + null + ], + [ + "function-token", + "var(", + 108840, + 108843, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108844, + 108844, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108845, + 108845, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-zindex", + 108846, + 108863, + { + "value": "bs-backdrop-zindex" + } + ], + [ + ")-token", + ")", + 108864, + 108864, + null + ], + [ + "semicolon-token", + ";", + 108865, + 108865, + null + ], + [ + "ident-token", + "width", + 108866, + 108870, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 108871, + 108871, + null + ], + [ + "dimension-token", + "100vw", + 108872, + 108876, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 108877, + 108877, + null + ], + [ + "ident-token", + "height", + 108878, + 108883, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 108884, + 108884, + null + ], + [ + "dimension-token", + "100vh", + 108885, + 108889, + { + "value": 100, + "type": "integer", + "unit": "vh" + } + ], + [ + "semicolon-token", + ";", + 108890, + 108890, + null + ], + [ + "ident-token", + "background-color", + 108891, + 108906, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 108907, + 108907, + null + ], + [ + "function-token", + "var(", + 108908, + 108911, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108912, + 108912, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108913, + 108913, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-bg", + 108914, + 108927, + { + "value": "bs-backdrop-bg" + } + ], + [ + ")-token", + ")", + 108928, + 108928, + null + ], + [ + "}-token", + "}", + 108929, + 108929, + null + ], + [ + "delim-token", + ".", + 108930, + 108930, + { + "value": "." + } + ], + [ + "ident-token", + "modal-backdrop", + 108931, + 108944, + { + "value": "modal-backdrop" + } + ], + [ + "delim-token", + ".", + 108945, + 108945, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 108946, + 108949, + { + "value": "fade" + } + ], + [ + "{-token", + "{", + 108950, + 108950, + null + ], + [ + "ident-token", + "opacity", + 108951, + 108957, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 108958, + 108958, + null + ], + [ + "number-token", + "0", + 108959, + 108959, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 108960, + 108960, + null + ], + [ + "delim-token", + ".", + 108961, + 108961, + { + "value": "." + } + ], + [ + "ident-token", + "modal-backdrop", + 108962, + 108975, + { + "value": "modal-backdrop" + } + ], + [ + "delim-token", + ".", + 108976, + 108976, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 108977, + 108980, + { + "value": "show" + } + ], + [ + "{-token", + "{", + 108981, + 108981, + null + ], + [ + "ident-token", + "opacity", + 108982, + 108988, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 108989, + 108989, + null + ], + [ + "function-token", + "var(", + 108990, + 108993, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 108994, + 108994, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 108995, + 108995, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-backdrop-opacity", + 108996, + 109014, + { + "value": "bs-backdrop-opacity" + } + ], + [ + ")-token", + ")", + 109015, + 109015, + null + ], + [ + "}-token", + "}", + 109016, + 109016, + null + ], + [ + "delim-token", + ".", + 109017, + 109017, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 109018, + 109029, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 109030, + 109030, + null + ], + [ + "ident-token", + "display", + 109031, + 109037, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 109038, + 109038, + null + ], + [ + "ident-token", + "flex", + 109039, + 109042, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 109043, + 109043, + null + ], + [ + "ident-token", + "flex-shrink", + 109044, + 109054, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 109055, + 109055, + null + ], + [ + "number-token", + "0", + 109056, + 109056, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 109057, + 109057, + null + ], + [ + "ident-token", + "align-items", + 109058, + 109068, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 109069, + 109069, + null + ], + [ + "ident-token", + "center", + 109070, + 109075, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 109076, + 109076, + null + ], + [ + "ident-token", + "justify-content", + 109077, + 109091, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 109092, + 109092, + null + ], + [ + "ident-token", + "space-between", + 109093, + 109105, + { + "value": "space-between" + } + ], + [ + "semicolon-token", + ";", + 109106, + 109106, + null + ], + [ + "ident-token", + "padding", + 109107, + 109113, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 109114, + 109114, + null + ], + [ + "function-token", + "var(", + 109115, + 109118, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109119, + 109119, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109120, + 109120, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding", + 109121, + 109143, + { + "value": "bs-modal-header-padding" + } + ], + [ + ")-token", + ")", + 109144, + 109144, + null + ], + [ + "semicolon-token", + ";", + 109145, + 109145, + null + ], + [ + "ident-token", + "border-bottom", + 109146, + 109158, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 109159, + 109159, + null + ], + [ + "function-token", + "var(", + 109160, + 109163, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109164, + 109164, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109165, + 109165, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-border-width", + 109166, + 109193, + { + "value": "bs-modal-header-border-width" + } + ], + [ + ")-token", + ")", + 109194, + 109194, + null + ], + [ + "whitespace-token", + " ", + 109195, + 109195, + null + ], + [ + "ident-token", + "solid", + 109196, + 109200, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 109201, + 109201, + null + ], + [ + "function-token", + "var(", + 109202, + 109205, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109206, + 109206, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109207, + 109207, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-border-color", + 109208, + 109235, + { + "value": "bs-modal-header-border-color" + } + ], + [ + ")-token", + ")", + 109236, + 109236, + null + ], + [ + "semicolon-token", + ";", + 109237, + 109237, + null + ], + [ + "ident-token", + "border-top-left-radius", + 109238, + 109259, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 109260, + 109260, + null + ], + [ + "function-token", + "var(", + 109261, + 109264, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109265, + 109265, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109266, + 109266, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-inner-border-radius", + 109267, + 109294, + { + "value": "bs-modal-inner-border-radius" + } + ], + [ + ")-token", + ")", + 109295, + 109295, + null + ], + [ + "semicolon-token", + ";", + 109296, + 109296, + null + ], + [ + "ident-token", + "border-top-right-radius", + 109297, + 109319, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 109320, + 109320, + null + ], + [ + "function-token", + "var(", + 109321, + 109324, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109325, + 109325, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109326, + 109326, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-inner-border-radius", + 109327, + 109354, + { + "value": "bs-modal-inner-border-radius" + } + ], + [ + ")-token", + ")", + 109355, + 109355, + null + ], + [ + "}-token", + "}", + 109356, + 109356, + null + ], + [ + "delim-token", + ".", + 109357, + 109357, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 109358, + 109369, + { + "value": "modal-header" + } + ], + [ + "whitespace-token", + " ", + 109370, + 109370, + null + ], + [ + "delim-token", + ".", + 109371, + 109371, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 109372, + 109380, + { + "value": "btn-close" + } + ], + [ + "{-token", + "{", + 109381, + 109381, + null + ], + [ + "ident-token", + "padding", + 109382, + 109388, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 109389, + 109389, + null + ], + [ + "function-token", + "calc(", + 109390, + 109394, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 109395, + 109398, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109399, + 109399, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109400, + 109400, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-y", + 109401, + 109425, + { + "value": "bs-modal-header-padding-y" + } + ], + [ + ")-token", + ")", + 109426, + 109426, + null + ], + [ + "whitespace-token", + " ", + 109427, + 109427, + null + ], + [ + "delim-token", + "*", + 109428, + 109428, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109429, + 109429, + null + ], + [ + "number-token", + ".5", + 109430, + 109431, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 109432, + 109432, + null + ], + [ + "whitespace-token", + " ", + 109433, + 109433, + null + ], + [ + "function-token", + "calc(", + 109434, + 109438, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 109439, + 109442, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109443, + 109443, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109444, + 109444, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-x", + 109445, + 109469, + { + "value": "bs-modal-header-padding-x" + } + ], + [ + ")-token", + ")", + 109470, + 109470, + null + ], + [ + "whitespace-token", + " ", + 109471, + 109471, + null + ], + [ + "delim-token", + "*", + 109472, + 109472, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109473, + 109473, + null + ], + [ + "number-token", + ".5", + 109474, + 109475, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 109476, + 109476, + null + ], + [ + "semicolon-token", + ";", + 109477, + 109477, + null + ], + [ + "ident-token", + "margin", + 109478, + 109483, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 109484, + 109484, + null + ], + [ + "function-token", + "calc(", + 109485, + 109489, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 109490, + 109492, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 109493, + 109493, + null + ], + [ + "delim-token", + "*", + 109494, + 109494, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109495, + 109495, + null + ], + [ + "function-token", + "var(", + 109496, + 109499, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109500, + 109500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109501, + 109501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-y", + 109502, + 109526, + { + "value": "bs-modal-header-padding-y" + } + ], + [ + ")-token", + ")", + 109527, + 109527, + null + ], + [ + ")-token", + ")", + 109528, + 109528, + null + ], + [ + "whitespace-token", + " ", + 109529, + 109529, + null + ], + [ + "function-token", + "calc(", + 109530, + 109534, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 109535, + 109537, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 109538, + 109538, + null + ], + [ + "delim-token", + "*", + 109539, + 109539, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109540, + 109540, + null + ], + [ + "function-token", + "var(", + 109541, + 109544, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109545, + 109545, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109546, + 109546, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-x", + 109547, + 109571, + { + "value": "bs-modal-header-padding-x" + } + ], + [ + ")-token", + ")", + 109572, + 109572, + null + ], + [ + ")-token", + ")", + 109573, + 109573, + null + ], + [ + "whitespace-token", + " ", + 109574, + 109574, + null + ], + [ + "function-token", + "calc(", + 109575, + 109579, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 109580, + 109582, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 109583, + 109583, + null + ], + [ + "delim-token", + "*", + 109584, + 109584, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109585, + 109585, + null + ], + [ + "function-token", + "var(", + 109586, + 109589, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109590, + 109590, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109591, + 109591, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-header-padding-y", + 109592, + 109616, + { + "value": "bs-modal-header-padding-y" + } + ], + [ + ")-token", + ")", + 109617, + 109617, + null + ], + [ + ")-token", + ")", + 109618, + 109618, + null + ], + [ + "whitespace-token", + " ", + 109619, + 109619, + null + ], + [ + "ident-token", + "auto", + 109620, + 109623, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 109624, + 109624, + null + ], + [ + "delim-token", + ".", + 109625, + 109625, + { + "value": "." + } + ], + [ + "ident-token", + "modal-title", + 109626, + 109636, + { + "value": "modal-title" + } + ], + [ + "{-token", + "{", + 109637, + 109637, + null + ], + [ + "ident-token", + "margin-bottom", + 109638, + 109650, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 109651, + 109651, + null + ], + [ + "number-token", + "0", + 109652, + 109652, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 109653, + 109653, + null + ], + [ + "ident-token", + "line-height", + 109654, + 109664, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 109665, + 109665, + null + ], + [ + "function-token", + "var(", + 109666, + 109669, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109670, + 109670, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109671, + 109671, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-title-line-height", + 109672, + 109697, + { + "value": "bs-modal-title-line-height" + } + ], + [ + ")-token", + ")", + 109698, + 109698, + null + ], + [ + "}-token", + "}", + 109699, + 109699, + null + ], + [ + "delim-token", + ".", + 109700, + 109700, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 109701, + 109710, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 109711, + 109711, + null + ], + [ + "ident-token", + "position", + 109712, + 109719, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 109720, + 109720, + null + ], + [ + "ident-token", + "relative", + 109721, + 109728, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 109729, + 109729, + null + ], + [ + "ident-token", + "flex", + 109730, + 109733, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 109734, + 109734, + null + ], + [ + "number-token", + "1", + 109735, + 109735, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 109736, + 109736, + null + ], + [ + "number-token", + "1", + 109737, + 109737, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 109738, + 109738, + null + ], + [ + "ident-token", + "auto", + 109739, + 109742, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 109743, + 109743, + null + ], + [ + "ident-token", + "padding", + 109744, + 109750, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 109751, + 109751, + null + ], + [ + "function-token", + "var(", + 109752, + 109755, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109756, + 109756, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109757, + 109757, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-padding", + 109758, + 109773, + { + "value": "bs-modal-padding" + } + ], + [ + ")-token", + ")", + 109774, + 109774, + null + ], + [ + "}-token", + "}", + 109775, + 109775, + null + ], + [ + "delim-token", + ".", + 109776, + 109776, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 109777, + 109788, + { + "value": "modal-footer" + } + ], + [ + "{-token", + "{", + 109789, + 109789, + null + ], + [ + "ident-token", + "display", + 109790, + 109796, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 109797, + 109797, + null + ], + [ + "ident-token", + "flex", + 109798, + 109801, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 109802, + 109802, + null + ], + [ + "ident-token", + "flex-shrink", + 109803, + 109813, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 109814, + 109814, + null + ], + [ + "number-token", + "0", + 109815, + 109815, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 109816, + 109816, + null + ], + [ + "ident-token", + "flex-wrap", + 109817, + 109825, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 109826, + 109826, + null + ], + [ + "ident-token", + "wrap", + 109827, + 109830, + { + "value": "wrap" + } + ], + [ + "semicolon-token", + ";", + 109831, + 109831, + null + ], + [ + "ident-token", + "align-items", + 109832, + 109842, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 109843, + 109843, + null + ], + [ + "ident-token", + "center", + 109844, + 109849, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 109850, + 109850, + null + ], + [ + "ident-token", + "justify-content", + 109851, + 109865, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 109866, + 109866, + null + ], + [ + "ident-token", + "flex-end", + 109867, + 109874, + { + "value": "flex-end" + } + ], + [ + "semicolon-token", + ";", + 109875, + 109875, + null + ], + [ + "ident-token", + "padding", + 109876, + 109882, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 109883, + 109883, + null + ], + [ + "function-token", + "calc(", + 109884, + 109888, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 109889, + 109892, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109893, + 109893, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109894, + 109894, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-padding", + 109895, + 109910, + { + "value": "bs-modal-padding" + } + ], + [ + ")-token", + ")", + 109911, + 109911, + null + ], + [ + "whitespace-token", + " ", + 109912, + 109912, + null + ], + [ + "delim-token", + "-", + 109913, + 109913, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 109914, + 109914, + null + ], + [ + "function-token", + "var(", + 109915, + 109918, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109919, + 109919, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109920, + 109920, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-gap", + 109921, + 109939, + { + "value": "bs-modal-footer-gap" + } + ], + [ + ")-token", + ")", + 109940, + 109940, + null + ], + [ + "whitespace-token", + " ", + 109941, + 109941, + null + ], + [ + "delim-token", + "*", + 109942, + 109942, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 109943, + 109943, + null + ], + [ + "number-token", + ".5", + 109944, + 109945, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 109946, + 109946, + null + ], + [ + "semicolon-token", + ";", + 109947, + 109947, + null + ], + [ + "ident-token", + "background-color", + 109948, + 109963, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 109964, + 109964, + null + ], + [ + "function-token", + "var(", + 109965, + 109968, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 109969, + 109969, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 109970, + 109970, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-bg", + 109971, + 109988, + { + "value": "bs-modal-footer-bg" + } + ], + [ + ")-token", + ")", + 109989, + 109989, + null + ], + [ + "semicolon-token", + ";", + 109990, + 109990, + null + ], + [ + "ident-token", + "border-top", + 109991, + 110000, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 110001, + 110001, + null + ], + [ + "function-token", + "var(", + 110002, + 110005, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110006, + 110006, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110007, + 110007, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-border-width", + 110008, + 110035, + { + "value": "bs-modal-footer-border-width" + } + ], + [ + ")-token", + ")", + 110036, + 110036, + null + ], + [ + "whitespace-token", + " ", + 110037, + 110037, + null + ], + [ + "ident-token", + "solid", + 110038, + 110042, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 110043, + 110043, + null + ], + [ + "function-token", + "var(", + 110044, + 110047, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110048, + 110048, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110049, + 110049, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-border-color", + 110050, + 110077, + { + "value": "bs-modal-footer-border-color" + } + ], + [ + ")-token", + ")", + 110078, + 110078, + null + ], + [ + "semicolon-token", + ";", + 110079, + 110079, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 110080, + 110105, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 110106, + 110106, + null + ], + [ + "function-token", + "var(", + 110107, + 110110, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110111, + 110111, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110112, + 110112, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-inner-border-radius", + 110113, + 110140, + { + "value": "bs-modal-inner-border-radius" + } + ], + [ + ")-token", + ")", + 110141, + 110141, + null + ], + [ + "semicolon-token", + ";", + 110142, + 110142, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 110143, + 110167, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 110168, + 110168, + null + ], + [ + "function-token", + "var(", + 110169, + 110172, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110173, + 110173, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110174, + 110174, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-inner-border-radius", + 110175, + 110202, + { + "value": "bs-modal-inner-border-radius" + } + ], + [ + ")-token", + ")", + 110203, + 110203, + null + ], + [ + "}-token", + "}", + 110204, + 110204, + null + ], + [ + "delim-token", + ".", + 110205, + 110205, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 110206, + 110217, + { + "value": "modal-footer" + } + ], + [ + "delim-token", + ">", + 110218, + 110218, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 110219, + 110219, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 110220, + 110220, + null + ], + [ + "ident-token", + "margin", + 110221, + 110226, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 110227, + 110227, + null + ], + [ + "function-token", + "calc(", + 110228, + 110232, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 110233, + 110236, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110237, + 110237, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110238, + 110238, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-footer-gap", + 110239, + 110257, + { + "value": "bs-modal-footer-gap" + } + ], + [ + ")-token", + ")", + 110258, + 110258, + null + ], + [ + "whitespace-token", + " ", + 110259, + 110259, + null + ], + [ + "delim-token", + "*", + 110260, + 110260, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 110261, + 110261, + null + ], + [ + "number-token", + ".5", + 110262, + 110263, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 110264, + 110264, + null + ], + [ + "}-token", + "}", + 110265, + 110265, + null + ], + [ + "at-keyword-token", + "@media", + 110266, + 110271, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 110272, + 110272, + null + ], + [ + "(-token", + "(", + 110273, + 110273, + null + ], + [ + "ident-token", + "min-width", + 110274, + 110282, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 110283, + 110283, + null + ], + [ + "dimension-token", + "576px", + 110284, + 110288, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 110289, + 110289, + null + ], + [ + "{-token", + "{", + 110290, + 110290, + null + ], + [ + "delim-token", + ".", + 110291, + 110291, + { + "value": "." + } + ], + [ + "ident-token", + "modal", + 110292, + 110296, + { + "value": "modal" + } + ], + [ + "{-token", + "{", + 110297, + 110297, + null + ], + [ + "delim-token", + "-", + 110298, + 110298, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110299, + 110299, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-margin", + 110300, + 110314, + { + "value": "bs-modal-margin" + } + ], + [ + "colon-token", + ":", + 110315, + 110315, + null + ], + [ + "dimension-token", + "1.75rem", + 110316, + 110322, + { + "value": 1.75, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 110323, + 110323, + null + ], + [ + "delim-token", + "-", + 110324, + 110324, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110325, + 110325, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-box-shadow", + 110326, + 110344, + { + "value": "bs-modal-box-shadow" + } + ], + [ + "colon-token", + ":", + 110345, + 110345, + null + ], + [ + "number-token", + "0", + 110346, + 110346, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 110347, + 110347, + null + ], + [ + "dimension-token", + "0.5rem", + 110348, + 110353, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 110354, + 110354, + null + ], + [ + "dimension-token", + "1rem", + 110355, + 110358, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 110359, + 110359, + null + ], + [ + "function-token", + "rgba(", + 110360, + 110364, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 110365, + 110365, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 110366, + 110366, + null + ], + [ + "whitespace-token", + " ", + 110367, + 110367, + null + ], + [ + "number-token", + "0", + 110368, + 110368, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 110369, + 110369, + null + ], + [ + "whitespace-token", + " ", + 110370, + 110370, + null + ], + [ + "number-token", + "0", + 110371, + 110371, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 110372, + 110372, + null + ], + [ + "whitespace-token", + " ", + 110373, + 110373, + null + ], + [ + "number-token", + "0.15", + 110374, + 110377, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 110378, + 110378, + null + ], + [ + "}-token", + "}", + 110379, + 110379, + null + ], + [ + "delim-token", + ".", + 110380, + 110380, + { + "value": "." + } + ], + [ + "ident-token", + "modal-dialog", + 110381, + 110392, + { + "value": "modal-dialog" + } + ], + [ + "{-token", + "{", + 110393, + 110393, + null + ], + [ + "ident-token", + "max-width", + 110394, + 110402, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 110403, + 110403, + null + ], + [ + "function-token", + "var(", + 110404, + 110407, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 110408, + 110408, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110409, + 110409, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-width", + 110410, + 110423, + { + "value": "bs-modal-width" + } + ], + [ + ")-token", + ")", + 110424, + 110424, + null + ], + [ + "semicolon-token", + ";", + 110425, + 110425, + null + ], + [ + "ident-token", + "margin-right", + 110426, + 110437, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 110438, + 110438, + null + ], + [ + "ident-token", + "auto", + 110439, + 110442, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 110443, + 110443, + null + ], + [ + "ident-token", + "margin-left", + 110444, + 110454, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 110455, + 110455, + null + ], + [ + "ident-token", + "auto", + 110456, + 110459, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 110460, + 110460, + null + ], + [ + "delim-token", + ".", + 110461, + 110461, + { + "value": "." + } + ], + [ + "ident-token", + "modal-sm", + 110462, + 110469, + { + "value": "modal-sm" + } + ], + [ + "{-token", + "{", + 110470, + 110470, + null + ], + [ + "delim-token", + "-", + 110471, + 110471, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110472, + 110472, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-width", + 110473, + 110486, + { + "value": "bs-modal-width" + } + ], + [ + "colon-token", + ":", + 110487, + 110487, + null + ], + [ + "dimension-token", + "300px", + 110488, + 110492, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 110493, + 110493, + null + ], + [ + "}-token", + "}", + 110494, + 110494, + null + ], + [ + "at-keyword-token", + "@media", + 110495, + 110500, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 110501, + 110501, + null + ], + [ + "(-token", + "(", + 110502, + 110502, + null + ], + [ + "ident-token", + "min-width", + 110503, + 110511, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 110512, + 110512, + null + ], + [ + "dimension-token", + "992px", + 110513, + 110517, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 110518, + 110518, + null + ], + [ + "{-token", + "{", + 110519, + 110519, + null + ], + [ + "delim-token", + ".", + 110520, + 110520, + { + "value": "." + } + ], + [ + "ident-token", + "modal-lg", + 110521, + 110528, + { + "value": "modal-lg" + } + ], + [ + "comma-token", + ",", + 110529, + 110529, + null + ], + [ + "delim-token", + ".", + 110530, + 110530, + { + "value": "." + } + ], + [ + "ident-token", + "modal-xl", + 110531, + 110538, + { + "value": "modal-xl" + } + ], + [ + "{-token", + "{", + 110539, + 110539, + null + ], + [ + "delim-token", + "-", + 110540, + 110540, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110541, + 110541, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-width", + 110542, + 110555, + { + "value": "bs-modal-width" + } + ], + [ + "colon-token", + ":", + 110556, + 110556, + null + ], + [ + "dimension-token", + "800px", + 110557, + 110561, + { + "value": 800, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 110562, + 110562, + null + ], + [ + "}-token", + "}", + 110563, + 110563, + null + ], + [ + "at-keyword-token", + "@media", + 110564, + 110569, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 110570, + 110570, + null + ], + [ + "(-token", + "(", + 110571, + 110571, + null + ], + [ + "ident-token", + "min-width", + 110572, + 110580, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 110581, + 110581, + null + ], + [ + "dimension-token", + "1200px", + 110582, + 110587, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 110588, + 110588, + null + ], + [ + "{-token", + "{", + 110589, + 110589, + null + ], + [ + "delim-token", + ".", + 110590, + 110590, + { + "value": "." + } + ], + [ + "ident-token", + "modal-xl", + 110591, + 110598, + { + "value": "modal-xl" + } + ], + [ + "{-token", + "{", + 110599, + 110599, + null + ], + [ + "delim-token", + "-", + 110600, + 110600, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 110601, + 110601, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-modal-width", + 110602, + 110615, + { + "value": "bs-modal-width" + } + ], + [ + "colon-token", + ":", + 110616, + 110616, + null + ], + [ + "dimension-token", + "1140px", + 110617, + 110622, + { + "value": 1140, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 110623, + 110623, + null + ], + [ + "}-token", + "}", + 110624, + 110624, + null + ], + [ + "delim-token", + ".", + 110625, + 110625, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen", + 110626, + 110641, + { + "value": "modal-fullscreen" + } + ], + [ + "{-token", + "{", + 110642, + 110642, + null + ], + [ + "ident-token", + "width", + 110643, + 110647, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 110648, + 110648, + null + ], + [ + "dimension-token", + "100vw", + 110649, + 110653, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 110654, + 110654, + null + ], + [ + "ident-token", + "max-width", + 110655, + 110663, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 110664, + 110664, + null + ], + [ + "ident-token", + "none", + 110665, + 110668, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 110669, + 110669, + null + ], + [ + "ident-token", + "height", + 110670, + 110675, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 110676, + 110676, + null + ], + [ + "percentage-token", + "100%", + 110677, + 110680, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 110681, + 110681, + null + ], + [ + "ident-token", + "margin", + 110682, + 110687, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 110688, + 110688, + null + ], + [ + "number-token", + "0", + 110689, + 110689, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 110690, + 110690, + null + ], + [ + "delim-token", + ".", + 110691, + 110691, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen", + 110692, + 110707, + { + "value": "modal-fullscreen" + } + ], + [ + "whitespace-token", + " ", + 110708, + 110708, + null + ], + [ + "delim-token", + ".", + 110709, + 110709, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 110710, + 110722, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 110723, + 110723, + null + ], + [ + "ident-token", + "height", + 110724, + 110729, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 110730, + 110730, + null + ], + [ + "percentage-token", + "100%", + 110731, + 110734, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 110735, + 110735, + null + ], + [ + "ident-token", + "border", + 110736, + 110741, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 110742, + 110742, + null + ], + [ + "number-token", + "0", + 110743, + 110743, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 110744, + 110744, + null + ], + [ + "ident-token", + "border-radius", + 110745, + 110757, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 110758, + 110758, + null + ], + [ + "number-token", + "0", + 110759, + 110759, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 110760, + 110760, + null + ], + [ + "delim-token", + ".", + 110761, + 110761, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen", + 110762, + 110777, + { + "value": "modal-fullscreen" + } + ], + [ + "whitespace-token", + " ", + 110778, + 110778, + null + ], + [ + "delim-token", + ".", + 110779, + 110779, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 110780, + 110791, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 110792, + 110792, + null + ], + [ + "delim-token", + ".", + 110793, + 110793, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen", + 110794, + 110809, + { + "value": "modal-fullscreen" + } + ], + [ + "whitespace-token", + " ", + 110810, + 110810, + null + ], + [ + "delim-token", + ".", + 110811, + 110811, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 110812, + 110823, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 110824, + 110824, + null + ], + [ + "ident-token", + "border-radius", + 110825, + 110837, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 110838, + 110838, + null + ], + [ + "number-token", + "0", + 110839, + 110839, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 110840, + 110840, + null + ], + [ + "delim-token", + ".", + 110841, + 110841, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen", + 110842, + 110857, + { + "value": "modal-fullscreen" + } + ], + [ + "whitespace-token", + " ", + 110858, + 110858, + null + ], + [ + "delim-token", + ".", + 110859, + 110859, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 110860, + 110869, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 110870, + 110870, + null + ], + [ + "ident-token", + "overflow-y", + 110871, + 110880, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 110881, + 110881, + null + ], + [ + "ident-token", + "auto", + 110882, + 110885, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 110886, + 110886, + null + ], + [ + "at-keyword-token", + "@media", + 110887, + 110892, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 110893, + 110893, + null + ], + [ + "(-token", + "(", + 110894, + 110894, + null + ], + [ + "ident-token", + "max-width", + 110895, + 110903, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 110904, + 110904, + null + ], + [ + "dimension-token", + "575.98px", + 110905, + 110912, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 110913, + 110913, + null + ], + [ + "{-token", + "{", + 110914, + 110914, + null + ], + [ + "delim-token", + ".", + 110915, + 110915, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-sm-down", + 110916, + 110939, + { + "value": "modal-fullscreen-sm-down" + } + ], + [ + "{-token", + "{", + 110940, + 110940, + null + ], + [ + "ident-token", + "width", + 110941, + 110945, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 110946, + 110946, + null + ], + [ + "dimension-token", + "100vw", + 110947, + 110951, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 110952, + 110952, + null + ], + [ + "ident-token", + "max-width", + 110953, + 110961, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 110962, + 110962, + null + ], + [ + "ident-token", + "none", + 110963, + 110966, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 110967, + 110967, + null + ], + [ + "ident-token", + "height", + 110968, + 110973, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 110974, + 110974, + null + ], + [ + "percentage-token", + "100%", + 110975, + 110978, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 110979, + 110979, + null + ], + [ + "ident-token", + "margin", + 110980, + 110985, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 110986, + 110986, + null + ], + [ + "number-token", + "0", + 110987, + 110987, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 110988, + 110988, + null + ], + [ + "delim-token", + ".", + 110989, + 110989, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-sm-down", + 110990, + 111013, + { + "value": "modal-fullscreen-sm-down" + } + ], + [ + "whitespace-token", + " ", + 111014, + 111014, + null + ], + [ + "delim-token", + ".", + 111015, + 111015, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 111016, + 111028, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 111029, + 111029, + null + ], + [ + "ident-token", + "height", + 111030, + 111035, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111036, + 111036, + null + ], + [ + "percentage-token", + "100%", + 111037, + 111040, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111041, + 111041, + null + ], + [ + "ident-token", + "border", + 111042, + 111047, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 111048, + 111048, + null + ], + [ + "number-token", + "0", + 111049, + 111049, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 111050, + 111050, + null + ], + [ + "ident-token", + "border-radius", + 111051, + 111063, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111064, + 111064, + null + ], + [ + "number-token", + "0", + 111065, + 111065, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111066, + 111066, + null + ], + [ + "delim-token", + ".", + 111067, + 111067, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-sm-down", + 111068, + 111091, + { + "value": "modal-fullscreen-sm-down" + } + ], + [ + "whitespace-token", + " ", + 111092, + 111092, + null + ], + [ + "delim-token", + ".", + 111093, + 111093, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 111094, + 111105, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 111106, + 111106, + null + ], + [ + "delim-token", + ".", + 111107, + 111107, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-sm-down", + 111108, + 111131, + { + "value": "modal-fullscreen-sm-down" + } + ], + [ + "whitespace-token", + " ", + 111132, + 111132, + null + ], + [ + "delim-token", + ".", + 111133, + 111133, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 111134, + 111145, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 111146, + 111146, + null + ], + [ + "ident-token", + "border-radius", + 111147, + 111159, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111160, + 111160, + null + ], + [ + "number-token", + "0", + 111161, + 111161, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111162, + 111162, + null + ], + [ + "delim-token", + ".", + 111163, + 111163, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-sm-down", + 111164, + 111187, + { + "value": "modal-fullscreen-sm-down" + } + ], + [ + "whitespace-token", + " ", + 111188, + 111188, + null + ], + [ + "delim-token", + ".", + 111189, + 111189, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 111190, + 111199, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 111200, + 111200, + null + ], + [ + "ident-token", + "overflow-y", + 111201, + 111210, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 111211, + 111211, + null + ], + [ + "ident-token", + "auto", + 111212, + 111215, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 111216, + 111216, + null + ], + [ + "}-token", + "}", + 111217, + 111217, + null + ], + [ + "at-keyword-token", + "@media", + 111218, + 111223, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 111224, + 111224, + null + ], + [ + "(-token", + "(", + 111225, + 111225, + null + ], + [ + "ident-token", + "max-width", + 111226, + 111234, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111235, + 111235, + null + ], + [ + "dimension-token", + "767.98px", + 111236, + 111243, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 111244, + 111244, + null + ], + [ + "{-token", + "{", + 111245, + 111245, + null + ], + [ + "delim-token", + ".", + 111246, + 111246, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-md-down", + 111247, + 111270, + { + "value": "modal-fullscreen-md-down" + } + ], + [ + "{-token", + "{", + 111271, + 111271, + null + ], + [ + "ident-token", + "width", + 111272, + 111276, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 111277, + 111277, + null + ], + [ + "dimension-token", + "100vw", + 111278, + 111282, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 111283, + 111283, + null + ], + [ + "ident-token", + "max-width", + 111284, + 111292, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111293, + 111293, + null + ], + [ + "ident-token", + "none", + 111294, + 111297, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 111298, + 111298, + null + ], + [ + "ident-token", + "height", + 111299, + 111304, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111305, + 111305, + null + ], + [ + "percentage-token", + "100%", + 111306, + 111309, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111310, + 111310, + null + ], + [ + "ident-token", + "margin", + 111311, + 111316, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 111317, + 111317, + null + ], + [ + "number-token", + "0", + 111318, + 111318, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111319, + 111319, + null + ], + [ + "delim-token", + ".", + 111320, + 111320, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-md-down", + 111321, + 111344, + { + "value": "modal-fullscreen-md-down" + } + ], + [ + "whitespace-token", + " ", + 111345, + 111345, + null + ], + [ + "delim-token", + ".", + 111346, + 111346, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 111347, + 111359, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 111360, + 111360, + null + ], + [ + "ident-token", + "height", + 111361, + 111366, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111367, + 111367, + null + ], + [ + "percentage-token", + "100%", + 111368, + 111371, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111372, + 111372, + null + ], + [ + "ident-token", + "border", + 111373, + 111378, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 111379, + 111379, + null + ], + [ + "number-token", + "0", + 111380, + 111380, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 111381, + 111381, + null + ], + [ + "ident-token", + "border-radius", + 111382, + 111394, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111395, + 111395, + null + ], + [ + "number-token", + "0", + 111396, + 111396, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111397, + 111397, + null + ], + [ + "delim-token", + ".", + 111398, + 111398, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-md-down", + 111399, + 111422, + { + "value": "modal-fullscreen-md-down" + } + ], + [ + "whitespace-token", + " ", + 111423, + 111423, + null + ], + [ + "delim-token", + ".", + 111424, + 111424, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 111425, + 111436, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 111437, + 111437, + null + ], + [ + "delim-token", + ".", + 111438, + 111438, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-md-down", + 111439, + 111462, + { + "value": "modal-fullscreen-md-down" + } + ], + [ + "whitespace-token", + " ", + 111463, + 111463, + null + ], + [ + "delim-token", + ".", + 111464, + 111464, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 111465, + 111476, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 111477, + 111477, + null + ], + [ + "ident-token", + "border-radius", + 111478, + 111490, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111491, + 111491, + null + ], + [ + "number-token", + "0", + 111492, + 111492, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111493, + 111493, + null + ], + [ + "delim-token", + ".", + 111494, + 111494, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-md-down", + 111495, + 111518, + { + "value": "modal-fullscreen-md-down" + } + ], + [ + "whitespace-token", + " ", + 111519, + 111519, + null + ], + [ + "delim-token", + ".", + 111520, + 111520, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 111521, + 111530, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 111531, + 111531, + null + ], + [ + "ident-token", + "overflow-y", + 111532, + 111541, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 111542, + 111542, + null + ], + [ + "ident-token", + "auto", + 111543, + 111546, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 111547, + 111547, + null + ], + [ + "}-token", + "}", + 111548, + 111548, + null + ], + [ + "at-keyword-token", + "@media", + 111549, + 111554, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 111555, + 111555, + null + ], + [ + "(-token", + "(", + 111556, + 111556, + null + ], + [ + "ident-token", + "max-width", + 111557, + 111565, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111566, + 111566, + null + ], + [ + "dimension-token", + "991.98px", + 111567, + 111574, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 111575, + 111575, + null + ], + [ + "{-token", + "{", + 111576, + 111576, + null + ], + [ + "delim-token", + ".", + 111577, + 111577, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-lg-down", + 111578, + 111601, + { + "value": "modal-fullscreen-lg-down" + } + ], + [ + "{-token", + "{", + 111602, + 111602, + null + ], + [ + "ident-token", + "width", + 111603, + 111607, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 111608, + 111608, + null + ], + [ + "dimension-token", + "100vw", + 111609, + 111613, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 111614, + 111614, + null + ], + [ + "ident-token", + "max-width", + 111615, + 111623, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111624, + 111624, + null + ], + [ + "ident-token", + "none", + 111625, + 111628, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 111629, + 111629, + null + ], + [ + "ident-token", + "height", + 111630, + 111635, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111636, + 111636, + null + ], + [ + "percentage-token", + "100%", + 111637, + 111640, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111641, + 111641, + null + ], + [ + "ident-token", + "margin", + 111642, + 111647, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 111648, + 111648, + null + ], + [ + "number-token", + "0", + 111649, + 111649, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111650, + 111650, + null + ], + [ + "delim-token", + ".", + 111651, + 111651, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-lg-down", + 111652, + 111675, + { + "value": "modal-fullscreen-lg-down" + } + ], + [ + "whitespace-token", + " ", + 111676, + 111676, + null + ], + [ + "delim-token", + ".", + 111677, + 111677, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 111678, + 111690, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 111691, + 111691, + null + ], + [ + "ident-token", + "height", + 111692, + 111697, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111698, + 111698, + null + ], + [ + "percentage-token", + "100%", + 111699, + 111702, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111703, + 111703, + null + ], + [ + "ident-token", + "border", + 111704, + 111709, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 111710, + 111710, + null + ], + [ + "number-token", + "0", + 111711, + 111711, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 111712, + 111712, + null + ], + [ + "ident-token", + "border-radius", + 111713, + 111725, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111726, + 111726, + null + ], + [ + "number-token", + "0", + 111727, + 111727, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111728, + 111728, + null + ], + [ + "delim-token", + ".", + 111729, + 111729, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-lg-down", + 111730, + 111753, + { + "value": "modal-fullscreen-lg-down" + } + ], + [ + "whitespace-token", + " ", + 111754, + 111754, + null + ], + [ + "delim-token", + ".", + 111755, + 111755, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 111756, + 111767, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 111768, + 111768, + null + ], + [ + "delim-token", + ".", + 111769, + 111769, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-lg-down", + 111770, + 111793, + { + "value": "modal-fullscreen-lg-down" + } + ], + [ + "whitespace-token", + " ", + 111794, + 111794, + null + ], + [ + "delim-token", + ".", + 111795, + 111795, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 111796, + 111807, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 111808, + 111808, + null + ], + [ + "ident-token", + "border-radius", + 111809, + 111821, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 111822, + 111822, + null + ], + [ + "number-token", + "0", + 111823, + 111823, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111824, + 111824, + null + ], + [ + "delim-token", + ".", + 111825, + 111825, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-lg-down", + 111826, + 111849, + { + "value": "modal-fullscreen-lg-down" + } + ], + [ + "whitespace-token", + " ", + 111850, + 111850, + null + ], + [ + "delim-token", + ".", + 111851, + 111851, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 111852, + 111861, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 111862, + 111862, + null + ], + [ + "ident-token", + "overflow-y", + 111863, + 111872, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 111873, + 111873, + null + ], + [ + "ident-token", + "auto", + 111874, + 111877, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 111878, + 111878, + null + ], + [ + "}-token", + "}", + 111879, + 111879, + null + ], + [ + "at-keyword-token", + "@media", + 111880, + 111885, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 111886, + 111886, + null + ], + [ + "(-token", + "(", + 111887, + 111887, + null + ], + [ + "ident-token", + "max-width", + 111888, + 111896, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111897, + 111897, + null + ], + [ + "dimension-token", + "1199.98px", + 111898, + 111906, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 111907, + 111907, + null + ], + [ + "{-token", + "{", + 111908, + 111908, + null + ], + [ + "delim-token", + ".", + 111909, + 111909, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xl-down", + 111910, + 111933, + { + "value": "modal-fullscreen-xl-down" + } + ], + [ + "{-token", + "{", + 111934, + 111934, + null + ], + [ + "ident-token", + "width", + 111935, + 111939, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 111940, + 111940, + null + ], + [ + "dimension-token", + "100vw", + 111941, + 111945, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 111946, + 111946, + null + ], + [ + "ident-token", + "max-width", + 111947, + 111955, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 111956, + 111956, + null + ], + [ + "ident-token", + "none", + 111957, + 111960, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 111961, + 111961, + null + ], + [ + "ident-token", + "height", + 111962, + 111967, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 111968, + 111968, + null + ], + [ + "percentage-token", + "100%", + 111969, + 111972, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 111973, + 111973, + null + ], + [ + "ident-token", + "margin", + 111974, + 111979, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 111980, + 111980, + null + ], + [ + "number-token", + "0", + 111981, + 111981, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 111982, + 111982, + null + ], + [ + "delim-token", + ".", + 111983, + 111983, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xl-down", + 111984, + 112007, + { + "value": "modal-fullscreen-xl-down" + } + ], + [ + "whitespace-token", + " ", + 112008, + 112008, + null + ], + [ + "delim-token", + ".", + 112009, + 112009, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 112010, + 112022, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 112023, + 112023, + null + ], + [ + "ident-token", + "height", + 112024, + 112029, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 112030, + 112030, + null + ], + [ + "percentage-token", + "100%", + 112031, + 112034, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 112035, + 112035, + null + ], + [ + "ident-token", + "border", + 112036, + 112041, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 112042, + 112042, + null + ], + [ + "number-token", + "0", + 112043, + 112043, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 112044, + 112044, + null + ], + [ + "ident-token", + "border-radius", + 112045, + 112057, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 112058, + 112058, + null + ], + [ + "number-token", + "0", + 112059, + 112059, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 112060, + 112060, + null + ], + [ + "delim-token", + ".", + 112061, + 112061, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xl-down", + 112062, + 112085, + { + "value": "modal-fullscreen-xl-down" + } + ], + [ + "whitespace-token", + " ", + 112086, + 112086, + null + ], + [ + "delim-token", + ".", + 112087, + 112087, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 112088, + 112099, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 112100, + 112100, + null + ], + [ + "delim-token", + ".", + 112101, + 112101, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xl-down", + 112102, + 112125, + { + "value": "modal-fullscreen-xl-down" + } + ], + [ + "whitespace-token", + " ", + 112126, + 112126, + null + ], + [ + "delim-token", + ".", + 112127, + 112127, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 112128, + 112139, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 112140, + 112140, + null + ], + [ + "ident-token", + "border-radius", + 112141, + 112153, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 112154, + 112154, + null + ], + [ + "number-token", + "0", + 112155, + 112155, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 112156, + 112156, + null + ], + [ + "delim-token", + ".", + 112157, + 112157, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xl-down", + 112158, + 112181, + { + "value": "modal-fullscreen-xl-down" + } + ], + [ + "whitespace-token", + " ", + 112182, + 112182, + null + ], + [ + "delim-token", + ".", + 112183, + 112183, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 112184, + 112193, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 112194, + 112194, + null + ], + [ + "ident-token", + "overflow-y", + 112195, + 112204, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 112205, + 112205, + null + ], + [ + "ident-token", + "auto", + 112206, + 112209, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 112210, + 112210, + null + ], + [ + "}-token", + "}", + 112211, + 112211, + null + ], + [ + "at-keyword-token", + "@media", + 112212, + 112217, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 112218, + 112218, + null + ], + [ + "(-token", + "(", + 112219, + 112219, + null + ], + [ + "ident-token", + "max-width", + 112220, + 112228, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 112229, + 112229, + null + ], + [ + "dimension-token", + "1399.98px", + 112230, + 112238, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 112239, + 112239, + null + ], + [ + "{-token", + "{", + 112240, + 112240, + null + ], + [ + "delim-token", + ".", + 112241, + 112241, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xxl-down", + 112242, + 112266, + { + "value": "modal-fullscreen-xxl-down" + } + ], + [ + "{-token", + "{", + 112267, + 112267, + null + ], + [ + "ident-token", + "width", + 112268, + 112272, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 112273, + 112273, + null + ], + [ + "dimension-token", + "100vw", + 112274, + 112278, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 112279, + 112279, + null + ], + [ + "ident-token", + "max-width", + 112280, + 112288, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 112289, + 112289, + null + ], + [ + "ident-token", + "none", + 112290, + 112293, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 112294, + 112294, + null + ], + [ + "ident-token", + "height", + 112295, + 112300, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 112301, + 112301, + null + ], + [ + "percentage-token", + "100%", + 112302, + 112305, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 112306, + 112306, + null + ], + [ + "ident-token", + "margin", + 112307, + 112312, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 112313, + 112313, + null + ], + [ + "number-token", + "0", + 112314, + 112314, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 112315, + 112315, + null + ], + [ + "delim-token", + ".", + 112316, + 112316, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xxl-down", + 112317, + 112341, + { + "value": "modal-fullscreen-xxl-down" + } + ], + [ + "whitespace-token", + " ", + 112342, + 112342, + null + ], + [ + "delim-token", + ".", + 112343, + 112343, + { + "value": "." + } + ], + [ + "ident-token", + "modal-content", + 112344, + 112356, + { + "value": "modal-content" + } + ], + [ + "{-token", + "{", + 112357, + 112357, + null + ], + [ + "ident-token", + "height", + 112358, + 112363, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 112364, + 112364, + null + ], + [ + "percentage-token", + "100%", + 112365, + 112368, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 112369, + 112369, + null + ], + [ + "ident-token", + "border", + 112370, + 112375, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 112376, + 112376, + null + ], + [ + "number-token", + "0", + 112377, + 112377, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 112378, + 112378, + null + ], + [ + "ident-token", + "border-radius", + 112379, + 112391, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 112392, + 112392, + null + ], + [ + "number-token", + "0", + 112393, + 112393, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 112394, + 112394, + null + ], + [ + "delim-token", + ".", + 112395, + 112395, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xxl-down", + 112396, + 112420, + { + "value": "modal-fullscreen-xxl-down" + } + ], + [ + "whitespace-token", + " ", + 112421, + 112421, + null + ], + [ + "delim-token", + ".", + 112422, + 112422, + { + "value": "." + } + ], + [ + "ident-token", + "modal-footer", + 112423, + 112434, + { + "value": "modal-footer" + } + ], + [ + "comma-token", + ",", + 112435, + 112435, + null + ], + [ + "delim-token", + ".", + 112436, + 112436, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xxl-down", + 112437, + 112461, + { + "value": "modal-fullscreen-xxl-down" + } + ], + [ + "whitespace-token", + " ", + 112462, + 112462, + null + ], + [ + "delim-token", + ".", + 112463, + 112463, + { + "value": "." + } + ], + [ + "ident-token", + "modal-header", + 112464, + 112475, + { + "value": "modal-header" + } + ], + [ + "{-token", + "{", + 112476, + 112476, + null + ], + [ + "ident-token", + "border-radius", + 112477, + 112489, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 112490, + 112490, + null + ], + [ + "number-token", + "0", + 112491, + 112491, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 112492, + 112492, + null + ], + [ + "delim-token", + ".", + 112493, + 112493, + { + "value": "." + } + ], + [ + "ident-token", + "modal-fullscreen-xxl-down", + 112494, + 112518, + { + "value": "modal-fullscreen-xxl-down" + } + ], + [ + "whitespace-token", + " ", + 112519, + 112519, + null + ], + [ + "delim-token", + ".", + 112520, + 112520, + { + "value": "." + } + ], + [ + "ident-token", + "modal-body", + 112521, + 112530, + { + "value": "modal-body" + } + ], + [ + "{-token", + "{", + 112531, + 112531, + null + ], + [ + "ident-token", + "overflow-y", + 112532, + 112541, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 112542, + 112542, + null + ], + [ + "ident-token", + "auto", + 112543, + 112546, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 112547, + 112547, + null + ], + [ + "}-token", + "}", + 112548, + 112548, + null + ], + [ + "delim-token", + ".", + 112549, + 112549, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip", + 112550, + 112556, + { + "value": "tooltip" + } + ], + [ + "{-token", + "{", + 112557, + 112557, + null + ], + [ + "delim-token", + "-", + 112558, + 112558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112559, + 112559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-zindex", + 112560, + 112576, + { + "value": "bs-tooltip-zindex" + } + ], + [ + "colon-token", + ":", + 112577, + 112577, + null + ], + [ + "number-token", + "1080", + 112578, + 112581, + { + "value": 1080, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 112582, + 112582, + null + ], + [ + "delim-token", + "-", + 112583, + 112583, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112584, + 112584, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-max-width", + 112585, + 112604, + { + "value": "bs-tooltip-max-width" + } + ], + [ + "colon-token", + ":", + 112605, + 112605, + null + ], + [ + "dimension-token", + "200px", + 112606, + 112610, + { + "value": 200, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 112611, + 112611, + null + ], + [ + "delim-token", + "-", + 112612, + 112612, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112613, + 112613, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-padding-x", + 112614, + 112633, + { + "value": "bs-tooltip-padding-x" + } + ], + [ + "colon-token", + ":", + 112634, + 112634, + null + ], + [ + "dimension-token", + "0.5rem", + 112635, + 112640, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112641, + 112641, + null + ], + [ + "delim-token", + "-", + 112642, + 112642, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112643, + 112643, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-padding-y", + 112644, + 112663, + { + "value": "bs-tooltip-padding-y" + } + ], + [ + "colon-token", + ":", + 112664, + 112664, + null + ], + [ + "dimension-token", + "0.25rem", + 112665, + 112671, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112672, + 112672, + null + ], + [ + "delim-token", + "-", + 112673, + 112673, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112674, + 112674, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-margin", + 112675, + 112691, + { + "value": "bs-tooltip-margin" + } + ], + [ + "colon-token", + ":", + 112692, + 112692, + null + ], + [ + "whitespace-token", + " ", + 112693, + 112693, + null + ], + [ + "semicolon-token", + ";", + 112694, + 112694, + null + ], + [ + "delim-token", + "-", + 112695, + 112695, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112696, + 112696, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-font-size", + 112697, + 112716, + { + "value": "bs-tooltip-font-size" + } + ], + [ + "colon-token", + ":", + 112717, + 112717, + null + ], + [ + "dimension-token", + "0.875rem", + 112718, + 112725, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112726, + 112726, + null + ], + [ + "delim-token", + "-", + 112727, + 112727, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112728, + 112728, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-color", + 112729, + 112744, + { + "value": "bs-tooltip-color" + } + ], + [ + "colon-token", + ":", + 112745, + 112745, + null + ], + [ + "hash-token", + "#fff", + 112746, + 112749, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 112750, + 112750, + null + ], + [ + "delim-token", + "-", + 112751, + 112751, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112752, + 112752, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 112753, + 112765, + { + "value": "bs-tooltip-bg" + } + ], + [ + "colon-token", + ":", + 112766, + 112766, + null + ], + [ + "hash-token", + "#000", + 112767, + 112770, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 112771, + 112771, + null + ], + [ + "delim-token", + "-", + 112772, + 112772, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112773, + 112773, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-border-radius", + 112774, + 112797, + { + "value": "bs-tooltip-border-radius" + } + ], + [ + "colon-token", + ":", + 112798, + 112798, + null + ], + [ + "dimension-token", + "0.375rem", + 112799, + 112806, + { + "value": 0.375, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112807, + 112807, + null + ], + [ + "delim-token", + "-", + 112808, + 112808, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112809, + 112809, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-opacity", + 112810, + 112827, + { + "value": "bs-tooltip-opacity" + } + ], + [ + "colon-token", + ":", + 112828, + 112828, + null + ], + [ + "number-token", + "0.9", + 112829, + 112831, + { + "value": 0.9, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 112832, + 112832, + null + ], + [ + "delim-token", + "-", + 112833, + 112833, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112834, + 112834, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 112835, + 112856, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + "colon-token", + ":", + 112857, + 112857, + null + ], + [ + "dimension-token", + "0.8rem", + 112858, + 112863, + { + "value": 0.8, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112864, + 112864, + null + ], + [ + "delim-token", + "-", + 112865, + 112865, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112866, + 112866, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 112867, + 112889, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + "colon-token", + ":", + 112890, + 112890, + null + ], + [ + "dimension-token", + "0.4rem", + 112891, + 112896, + { + "value": 0.4, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 112897, + 112897, + null + ], + [ + "ident-token", + "z-index", + 112898, + 112904, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 112905, + 112905, + null + ], + [ + "function-token", + "var(", + 112906, + 112909, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 112910, + 112910, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112911, + 112911, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-zindex", + 112912, + 112928, + { + "value": "bs-tooltip-zindex" + } + ], + [ + ")-token", + ")", + 112929, + 112929, + null + ], + [ + "semicolon-token", + ";", + 112930, + 112930, + null + ], + [ + "ident-token", + "display", + 112931, + 112937, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 112938, + 112938, + null + ], + [ + "ident-token", + "block", + 112939, + 112943, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 112944, + 112944, + null + ], + [ + "ident-token", + "padding", + 112945, + 112951, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 112952, + 112952, + null + ], + [ + "function-token", + "var(", + 112953, + 112956, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 112957, + 112957, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112958, + 112958, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 112959, + 112981, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 112982, + 112982, + null + ], + [ + "semicolon-token", + ";", + 112983, + 112983, + null + ], + [ + "ident-token", + "margin", + 112984, + 112989, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 112990, + 112990, + null + ], + [ + "function-token", + "var(", + 112991, + 112994, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 112995, + 112995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 112996, + 112996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-margin", + 112997, + 113013, + { + "value": "bs-tooltip-margin" + } + ], + [ + ")-token", + ")", + 113014, + 113014, + null + ], + [ + "semicolon-token", + ";", + 113015, + 113015, + null + ], + [ + "ident-token", + "font-family", + 113016, + 113026, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 113027, + 113027, + null + ], + [ + "function-token", + "var(", + 113028, + 113031, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113032, + 113032, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113033, + 113033, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-sans-serif", + 113034, + 113051, + { + "value": "bs-font-sans-serif" + } + ], + [ + ")-token", + ")", + 113052, + 113052, + null + ], + [ + "semicolon-token", + ";", + 113053, + 113053, + null + ], + [ + "ident-token", + "font-style", + 113054, + 113063, + { + "value": "font-style" + } + ], + [ + "colon-token", + ":", + 113064, + 113064, + null + ], + [ + "ident-token", + "normal", + 113065, + 113070, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 113071, + 113071, + null + ], + [ + "ident-token", + "font-weight", + 113072, + 113082, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 113083, + 113083, + null + ], + [ + "number-token", + "400", + 113084, + 113086, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 113087, + 113087, + null + ], + [ + "ident-token", + "line-height", + 113088, + 113098, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 113099, + 113099, + null + ], + [ + "number-token", + "1.5", + 113100, + 113102, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 113103, + 113103, + null + ], + [ + "ident-token", + "text-align", + 113104, + 113113, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 113114, + 113114, + null + ], + [ + "ident-token", + "left", + 113115, + 113118, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 113119, + 113119, + null + ], + [ + "ident-token", + "text-align", + 113120, + 113129, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 113130, + 113130, + null + ], + [ + "ident-token", + "start", + 113131, + 113135, + { + "value": "start" + } + ], + [ + "semicolon-token", + ";", + 113136, + 113136, + null + ], + [ + "ident-token", + "text-decoration", + 113137, + 113151, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 113152, + 113152, + null + ], + [ + "ident-token", + "none", + 113153, + 113156, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 113157, + 113157, + null + ], + [ + "ident-token", + "text-shadow", + 113158, + 113168, + { + "value": "text-shadow" + } + ], + [ + "colon-token", + ":", + 113169, + 113169, + null + ], + [ + "ident-token", + "none", + 113170, + 113173, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 113174, + 113174, + null + ], + [ + "ident-token", + "text-transform", + 113175, + 113188, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 113189, + 113189, + null + ], + [ + "ident-token", + "none", + 113190, + 113193, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 113194, + 113194, + null + ], + [ + "ident-token", + "letter-spacing", + 113195, + 113208, + { + "value": "letter-spacing" + } + ], + [ + "colon-token", + ":", + 113209, + 113209, + null + ], + [ + "ident-token", + "normal", + 113210, + 113215, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 113216, + 113216, + null + ], + [ + "ident-token", + "word-break", + 113217, + 113226, + { + "value": "word-break" + } + ], + [ + "colon-token", + ":", + 113227, + 113227, + null + ], + [ + "ident-token", + "normal", + 113228, + 113233, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 113234, + 113234, + null + ], + [ + "ident-token", + "white-space", + 113235, + 113245, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 113246, + 113246, + null + ], + [ + "ident-token", + "normal", + 113247, + 113252, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 113253, + 113253, + null + ], + [ + "ident-token", + "word-spacing", + 113254, + 113265, + { + "value": "word-spacing" + } + ], + [ + "colon-token", + ":", + 113266, + 113266, + null + ], + [ + "ident-token", + "normal", + 113267, + 113272, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 113273, + 113273, + null + ], + [ + "ident-token", + "line-break", + 113274, + 113283, + { + "value": "line-break" + } + ], + [ + "colon-token", + ":", + 113284, + 113284, + null + ], + [ + "ident-token", + "auto", + 113285, + 113288, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 113289, + 113289, + null + ], + [ + "ident-token", + "font-size", + 113290, + 113298, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 113299, + 113299, + null + ], + [ + "function-token", + "var(", + 113300, + 113303, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113304, + 113304, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113305, + 113305, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-font-size", + 113306, + 113325, + { + "value": "bs-tooltip-font-size" + } + ], + [ + ")-token", + ")", + 113326, + 113326, + null + ], + [ + "semicolon-token", + ";", + 113327, + 113327, + null + ], + [ + "ident-token", + "word-wrap", + 113328, + 113336, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 113337, + 113337, + null + ], + [ + "ident-token", + "break-word", + 113338, + 113347, + { + "value": "break-word" + } + ], + [ + "semicolon-token", + ";", + 113348, + 113348, + null + ], + [ + "ident-token", + "opacity", + 113349, + 113355, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 113356, + 113356, + null + ], + [ + "number-token", + "0", + 113357, + 113357, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 113358, + 113358, + null + ], + [ + "delim-token", + ".", + 113359, + 113359, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip", + 113360, + 113366, + { + "value": "tooltip" + } + ], + [ + "delim-token", + ".", + 113367, + 113367, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 113368, + 113371, + { + "value": "show" + } + ], + [ + "{-token", + "{", + 113372, + 113372, + null + ], + [ + "ident-token", + "opacity", + 113373, + 113379, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 113380, + 113380, + null + ], + [ + "function-token", + "var(", + 113381, + 113384, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113385, + 113385, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113386, + 113386, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-opacity", + 113387, + 113404, + { + "value": "bs-tooltip-opacity" + } + ], + [ + ")-token", + ")", + 113405, + 113405, + null + ], + [ + "}-token", + "}", + 113406, + 113406, + null + ], + [ + "delim-token", + ".", + 113407, + 113407, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip", + 113408, + 113414, + { + "value": "tooltip" + } + ], + [ + "whitespace-token", + " ", + 113415, + 113415, + null + ], + [ + "delim-token", + ".", + 113416, + 113416, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113417, + 113429, + { + "value": "tooltip-arrow" + } + ], + [ + "{-token", + "{", + 113430, + 113430, + null + ], + [ + "ident-token", + "display", + 113431, + 113437, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 113438, + 113438, + null + ], + [ + "ident-token", + "block", + 113439, + 113443, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 113444, + 113444, + null + ], + [ + "ident-token", + "width", + 113445, + 113449, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 113450, + 113450, + null + ], + [ + "function-token", + "var(", + 113451, + 113454, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113455, + 113455, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113456, + 113456, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 113457, + 113478, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 113479, + 113479, + null + ], + [ + "semicolon-token", + ";", + 113480, + 113480, + null + ], + [ + "ident-token", + "height", + 113481, + 113486, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 113487, + 113487, + null + ], + [ + "function-token", + "var(", + 113488, + 113491, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113492, + 113492, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113493, + 113493, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 113494, + 113516, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 113517, + 113517, + null + ], + [ + "}-token", + "}", + 113518, + 113518, + null + ], + [ + "delim-token", + ".", + 113519, + 113519, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip", + 113520, + 113526, + { + "value": "tooltip" + } + ], + [ + "whitespace-token", + " ", + 113527, + 113527, + null + ], + [ + "delim-token", + ".", + 113528, + 113528, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113529, + 113541, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 113542, + 113542, + null + ], + [ + "colon-token", + ":", + 113543, + 113543, + null + ], + [ + "ident-token", + "before", + 113544, + 113549, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 113550, + 113550, + null + ], + [ + "ident-token", + "position", + 113551, + 113558, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 113559, + 113559, + null + ], + [ + "ident-token", + "absolute", + 113560, + 113567, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 113568, + 113568, + null + ], + [ + "ident-token", + "content", + 113569, + 113575, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 113576, + 113576, + null + ], + [ + "string-token", + "\"\"", + 113577, + 113578, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 113579, + 113579, + null + ], + [ + "ident-token", + "border-color", + 113580, + 113591, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 113592, + 113592, + null + ], + [ + "ident-token", + "transparent", + 113593, + 113603, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 113604, + 113604, + null + ], + [ + "ident-token", + "border-style", + 113605, + 113616, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 113617, + 113617, + null + ], + [ + "ident-token", + "solid", + 113618, + 113622, + { + "value": "solid" + } + ], + [ + "}-token", + "}", + 113623, + 113623, + null + ], + [ + "delim-token", + ".", + 113624, + 113624, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 113625, + 113639, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 113640, + 113640, + null + ], + [ + "ident-token", + "data-popper-placement", + 113641, + 113661, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 113662, + 113662, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 113663, + 113663, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 113664, + 113666, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 113667, + 113667, + null + ], + [ + "whitespace-token", + " ", + 113668, + 113668, + null + ], + [ + "delim-token", + ".", + 113669, + 113669, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113670, + 113682, + { + "value": "tooltip-arrow" + } + ], + [ + "comma-token", + ",", + 113683, + 113683, + null + ], + [ + "delim-token", + ".", + 113684, + 113684, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-top", + 113685, + 113698, + { + "value": "bs-tooltip-top" + } + ], + [ + "whitespace-token", + " ", + 113699, + 113699, + null + ], + [ + "delim-token", + ".", + 113700, + 113700, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113701, + 113713, + { + "value": "tooltip-arrow" + } + ], + [ + "{-token", + "{", + 113714, + 113714, + null + ], + [ + "ident-token", + "bottom", + 113715, + 113720, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 113721, + 113721, + null + ], + [ + "number-token", + "0", + 113722, + 113722, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 113723, + 113723, + null + ], + [ + "delim-token", + ".", + 113724, + 113724, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 113725, + 113739, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 113740, + 113740, + null + ], + [ + "ident-token", + "data-popper-placement", + 113741, + 113761, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 113762, + 113762, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 113763, + 113763, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 113764, + 113766, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 113767, + 113767, + null + ], + [ + "whitespace-token", + " ", + 113768, + 113768, + null + ], + [ + "delim-token", + ".", + 113769, + 113769, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113770, + 113782, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 113783, + 113783, + null + ], + [ + "colon-token", + ":", + 113784, + 113784, + null + ], + [ + "ident-token", + "before", + 113785, + 113790, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 113791, + 113791, + null + ], + [ + "delim-token", + ".", + 113792, + 113792, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-top", + 113793, + 113806, + { + "value": "bs-tooltip-top" + } + ], + [ + "whitespace-token", + " ", + 113807, + 113807, + null + ], + [ + "delim-token", + ".", + 113808, + 113808, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 113809, + 113821, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 113822, + 113822, + null + ], + [ + "colon-token", + ":", + 113823, + 113823, + null + ], + [ + "ident-token", + "before", + 113824, + 113829, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 113830, + 113830, + null + ], + [ + "ident-token", + "top", + 113831, + 113833, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 113834, + 113834, + null + ], + [ + "dimension-token", + "-1px", + 113835, + 113838, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 113839, + 113839, + null + ], + [ + "ident-token", + "border-width", + 113840, + 113851, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 113852, + 113852, + null + ], + [ + "function-token", + "var(", + 113853, + 113856, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113857, + 113857, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113858, + 113858, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 113859, + 113881, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 113882, + 113882, + null + ], + [ + "whitespace-token", + " ", + 113883, + 113883, + null + ], + [ + "function-token", + "calc(", + 113884, + 113888, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 113889, + 113892, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113893, + 113893, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113894, + 113894, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 113895, + 113916, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 113917, + 113917, + null + ], + [ + "whitespace-token", + " ", + 113918, + 113918, + null + ], + [ + "delim-token", + "*", + 113919, + 113919, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 113920, + 113920, + null + ], + [ + "number-token", + ".5", + 113921, + 113922, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 113923, + 113923, + null + ], + [ + "whitespace-token", + " ", + 113924, + 113924, + null + ], + [ + "number-token", + "0", + 113925, + 113925, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 113926, + 113926, + null + ], + [ + "ident-token", + "border-top-color", + 113927, + 113942, + { + "value": "border-top-color" + } + ], + [ + "colon-token", + ":", + 113943, + 113943, + null + ], + [ + "function-token", + "var(", + 113944, + 113947, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 113948, + 113948, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 113949, + 113949, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 113950, + 113962, + { + "value": "bs-tooltip-bg" + } + ], + [ + ")-token", + ")", + 113963, + 113963, + null + ], + [ + "}-token", + "}", + 113964, + 113964, + null + ], + [ + "delim-token", + ".", + 113965, + 113965, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 113966, + 113980, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 113981, + 113981, + null + ], + [ + "ident-token", + "data-popper-placement", + 113982, + 114002, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114003, + 114003, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114004, + 114004, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 114005, + 114009, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 114010, + 114010, + null + ], + [ + "whitespace-token", + " ", + 114011, + 114011, + null + ], + [ + "delim-token", + ".", + 114012, + 114012, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114013, + 114025, + { + "value": "tooltip-arrow" + } + ], + [ + "comma-token", + ",", + 114026, + 114026, + null + ], + [ + "delim-token", + ".", + 114027, + 114027, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-end", + 114028, + 114041, + { + "value": "bs-tooltip-end" + } + ], + [ + "whitespace-token", + " ", + 114042, + 114042, + null + ], + [ + "delim-token", + ".", + 114043, + 114043, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114044, + 114056, + { + "value": "tooltip-arrow" + } + ], + [ + "{-token", + "{", + 114057, + 114057, + null + ], + [ + "ident-token", + "left", + 114058, + 114061, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 114062, + 114062, + null + ], + [ + "number-token", + "0", + 114063, + 114063, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 114064, + 114064, + null + ], + [ + "ident-token", + "width", + 114065, + 114069, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 114070, + 114070, + null + ], + [ + "function-token", + "var(", + 114071, + 114074, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114075, + 114075, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114076, + 114076, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 114077, + 114099, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 114100, + 114100, + null + ], + [ + "semicolon-token", + ";", + 114101, + 114101, + null + ], + [ + "ident-token", + "height", + 114102, + 114107, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 114108, + 114108, + null + ], + [ + "function-token", + "var(", + 114109, + 114112, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114113, + 114113, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114114, + 114114, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 114115, + 114136, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 114137, + 114137, + null + ], + [ + "}-token", + "}", + 114138, + 114138, + null + ], + [ + "delim-token", + ".", + 114139, + 114139, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 114140, + 114154, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 114155, + 114155, + null + ], + [ + "ident-token", + "data-popper-placement", + 114156, + 114176, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114177, + 114177, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114178, + 114178, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 114179, + 114183, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 114184, + 114184, + null + ], + [ + "whitespace-token", + " ", + 114185, + 114185, + null + ], + [ + "delim-token", + ".", + 114186, + 114186, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114187, + 114199, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 114200, + 114200, + null + ], + [ + "colon-token", + ":", + 114201, + 114201, + null + ], + [ + "ident-token", + "before", + 114202, + 114207, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 114208, + 114208, + null + ], + [ + "delim-token", + ".", + 114209, + 114209, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-end", + 114210, + 114223, + { + "value": "bs-tooltip-end" + } + ], + [ + "whitespace-token", + " ", + 114224, + 114224, + null + ], + [ + "delim-token", + ".", + 114225, + 114225, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114226, + 114238, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 114239, + 114239, + null + ], + [ + "colon-token", + ":", + 114240, + 114240, + null + ], + [ + "ident-token", + "before", + 114241, + 114246, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 114247, + 114247, + null + ], + [ + "ident-token", + "right", + 114248, + 114252, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 114253, + 114253, + null + ], + [ + "dimension-token", + "-1px", + 114254, + 114257, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 114258, + 114258, + null + ], + [ + "ident-token", + "border-width", + 114259, + 114270, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 114271, + 114271, + null + ], + [ + "function-token", + "calc(", + 114272, + 114276, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 114277, + 114280, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114281, + 114281, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114282, + 114282, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 114283, + 114304, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 114305, + 114305, + null + ], + [ + "whitespace-token", + " ", + 114306, + 114306, + null + ], + [ + "delim-token", + "*", + 114307, + 114307, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 114308, + 114308, + null + ], + [ + "number-token", + ".5", + 114309, + 114310, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 114311, + 114311, + null + ], + [ + "whitespace-token", + " ", + 114312, + 114312, + null + ], + [ + "function-token", + "var(", + 114313, + 114316, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114317, + 114317, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114318, + 114318, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 114319, + 114341, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 114342, + 114342, + null + ], + [ + "whitespace-token", + " ", + 114343, + 114343, + null + ], + [ + "function-token", + "calc(", + 114344, + 114348, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 114349, + 114352, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114353, + 114353, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114354, + 114354, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 114355, + 114376, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 114377, + 114377, + null + ], + [ + "whitespace-token", + " ", + 114378, + 114378, + null + ], + [ + "delim-token", + "*", + 114379, + 114379, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 114380, + 114380, + null + ], + [ + "number-token", + ".5", + 114381, + 114382, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 114383, + 114383, + null + ], + [ + "whitespace-token", + " ", + 114384, + 114384, + null + ], + [ + "number-token", + "0", + 114385, + 114385, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 114386, + 114386, + null + ], + [ + "ident-token", + "border-right-color", + 114387, + 114404, + { + "value": "border-right-color" + } + ], + [ + "colon-token", + ":", + 114405, + 114405, + null + ], + [ + "function-token", + "var(", + 114406, + 114409, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114410, + 114410, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114411, + 114411, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 114412, + 114424, + { + "value": "bs-tooltip-bg" + } + ], + [ + ")-token", + ")", + 114425, + 114425, + null + ], + [ + "}-token", + "}", + 114426, + 114426, + null + ], + [ + "delim-token", + ".", + 114427, + 114427, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 114428, + 114442, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 114443, + 114443, + null + ], + [ + "ident-token", + "data-popper-placement", + 114444, + 114464, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114465, + 114465, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114466, + 114466, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 114467, + 114472, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 114473, + 114473, + null + ], + [ + "whitespace-token", + " ", + 114474, + 114474, + null + ], + [ + "delim-token", + ".", + 114475, + 114475, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114476, + 114488, + { + "value": "tooltip-arrow" + } + ], + [ + "comma-token", + ",", + 114489, + 114489, + null + ], + [ + "delim-token", + ".", + 114490, + 114490, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-bottom", + 114491, + 114507, + { + "value": "bs-tooltip-bottom" + } + ], + [ + "whitespace-token", + " ", + 114508, + 114508, + null + ], + [ + "delim-token", + ".", + 114509, + 114509, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114510, + 114522, + { + "value": "tooltip-arrow" + } + ], + [ + "{-token", + "{", + 114523, + 114523, + null + ], + [ + "ident-token", + "top", + 114524, + 114526, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 114527, + 114527, + null + ], + [ + "number-token", + "0", + 114528, + 114528, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 114529, + 114529, + null + ], + [ + "delim-token", + ".", + 114530, + 114530, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 114531, + 114545, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 114546, + 114546, + null + ], + [ + "ident-token", + "data-popper-placement", + 114547, + 114567, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114568, + 114568, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114569, + 114569, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 114570, + 114575, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 114576, + 114576, + null + ], + [ + "whitespace-token", + " ", + 114577, + 114577, + null + ], + [ + "delim-token", + ".", + 114578, + 114578, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114579, + 114591, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 114592, + 114592, + null + ], + [ + "colon-token", + ":", + 114593, + 114593, + null + ], + [ + "ident-token", + "before", + 114594, + 114599, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 114600, + 114600, + null + ], + [ + "delim-token", + ".", + 114601, + 114601, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-bottom", + 114602, + 114618, + { + "value": "bs-tooltip-bottom" + } + ], + [ + "whitespace-token", + " ", + 114619, + 114619, + null + ], + [ + "delim-token", + ".", + 114620, + 114620, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114621, + 114633, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 114634, + 114634, + null + ], + [ + "colon-token", + ":", + 114635, + 114635, + null + ], + [ + "ident-token", + "before", + 114636, + 114641, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 114642, + 114642, + null + ], + [ + "ident-token", + "bottom", + 114643, + 114648, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 114649, + 114649, + null + ], + [ + "dimension-token", + "-1px", + 114650, + 114653, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 114654, + 114654, + null + ], + [ + "ident-token", + "border-width", + 114655, + 114666, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 114667, + 114667, + null + ], + [ + "number-token", + "0", + 114668, + 114668, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 114669, + 114669, + null + ], + [ + "function-token", + "calc(", + 114670, + 114674, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 114675, + 114678, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114679, + 114679, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114680, + 114680, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 114681, + 114702, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 114703, + 114703, + null + ], + [ + "whitespace-token", + " ", + 114704, + 114704, + null + ], + [ + "delim-token", + "*", + 114705, + 114705, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 114706, + 114706, + null + ], + [ + "number-token", + ".5", + 114707, + 114708, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 114709, + 114709, + null + ], + [ + "whitespace-token", + " ", + 114710, + 114710, + null + ], + [ + "function-token", + "var(", + 114711, + 114714, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114715, + 114715, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114716, + 114716, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 114717, + 114739, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 114740, + 114740, + null + ], + [ + "semicolon-token", + ";", + 114741, + 114741, + null + ], + [ + "ident-token", + "border-bottom-color", + 114742, + 114760, + { + "value": "border-bottom-color" + } + ], + [ + "colon-token", + ":", + 114761, + 114761, + null + ], + [ + "function-token", + "var(", + 114762, + 114765, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114766, + 114766, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114767, + 114767, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 114768, + 114780, + { + "value": "bs-tooltip-bg" + } + ], + [ + ")-token", + ")", + 114781, + 114781, + null + ], + [ + "}-token", + "}", + 114782, + 114782, + null + ], + [ + "delim-token", + ".", + 114783, + 114783, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 114784, + 114798, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 114799, + 114799, + null + ], + [ + "ident-token", + "data-popper-placement", + 114800, + 114820, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114821, + 114821, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114822, + 114822, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 114823, + 114826, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 114827, + 114827, + null + ], + [ + "whitespace-token", + " ", + 114828, + 114828, + null + ], + [ + "delim-token", + ".", + 114829, + 114829, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114830, + 114842, + { + "value": "tooltip-arrow" + } + ], + [ + "comma-token", + ",", + 114843, + 114843, + null + ], + [ + "delim-token", + ".", + 114844, + 114844, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-start", + 114845, + 114860, + { + "value": "bs-tooltip-start" + } + ], + [ + "whitespace-token", + " ", + 114861, + 114861, + null + ], + [ + "delim-token", + ".", + 114862, + 114862, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 114863, + 114875, + { + "value": "tooltip-arrow" + } + ], + [ + "{-token", + "{", + 114876, + 114876, + null + ], + [ + "ident-token", + "right", + 114877, + 114881, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 114882, + 114882, + null + ], + [ + "number-token", + "0", + 114883, + 114883, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 114884, + 114884, + null + ], + [ + "ident-token", + "width", + 114885, + 114889, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 114890, + 114890, + null + ], + [ + "function-token", + "var(", + 114891, + 114894, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114895, + 114895, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114896, + 114896, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 114897, + 114919, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 114920, + 114920, + null + ], + [ + "semicolon-token", + ";", + 114921, + 114921, + null + ], + [ + "ident-token", + "height", + 114922, + 114927, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 114928, + 114928, + null + ], + [ + "function-token", + "var(", + 114929, + 114932, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 114933, + 114933, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 114934, + 114934, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 114935, + 114956, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 114957, + 114957, + null + ], + [ + "}-token", + "}", + 114958, + 114958, + null + ], + [ + "delim-token", + ".", + 114959, + 114959, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-auto", + 114960, + 114974, + { + "value": "bs-tooltip-auto" + } + ], + [ + "[-token", + "[", + 114975, + 114975, + null + ], + [ + "ident-token", + "data-popper-placement", + 114976, + 114996, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 114997, + 114997, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 114998, + 114998, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 114999, + 115002, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 115003, + 115003, + null + ], + [ + "whitespace-token", + " ", + 115004, + 115004, + null + ], + [ + "delim-token", + ".", + 115005, + 115005, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 115006, + 115018, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 115019, + 115019, + null + ], + [ + "colon-token", + ":", + 115020, + 115020, + null + ], + [ + "ident-token", + "before", + 115021, + 115026, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 115027, + 115027, + null + ], + [ + "delim-token", + ".", + 115028, + 115028, + { + "value": "." + } + ], + [ + "ident-token", + "bs-tooltip-start", + 115029, + 115044, + { + "value": "bs-tooltip-start" + } + ], + [ + "whitespace-token", + " ", + 115045, + 115045, + null + ], + [ + "delim-token", + ".", + 115046, + 115046, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-arrow", + 115047, + 115059, + { + "value": "tooltip-arrow" + } + ], + [ + "colon-token", + ":", + 115060, + 115060, + null + ], + [ + "colon-token", + ":", + 115061, + 115061, + null + ], + [ + "ident-token", + "before", + 115062, + 115067, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 115068, + 115068, + null + ], + [ + "ident-token", + "left", + 115069, + 115072, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 115073, + 115073, + null + ], + [ + "dimension-token", + "-1px", + 115074, + 115077, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 115078, + 115078, + null + ], + [ + "ident-token", + "border-width", + 115079, + 115090, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 115091, + 115091, + null + ], + [ + "function-token", + "calc(", + 115092, + 115096, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 115097, + 115100, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115101, + 115101, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115102, + 115102, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 115103, + 115124, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 115125, + 115125, + null + ], + [ + "whitespace-token", + " ", + 115126, + 115126, + null + ], + [ + "delim-token", + "*", + 115127, + 115127, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 115128, + 115128, + null + ], + [ + "number-token", + ".5", + 115129, + 115130, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 115131, + 115131, + null + ], + [ + "whitespace-token", + " ", + 115132, + 115132, + null + ], + [ + "number-token", + "0", + 115133, + 115133, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 115134, + 115134, + null + ], + [ + "function-token", + "calc(", + 115135, + 115139, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 115140, + 115143, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115144, + 115144, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115145, + 115145, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-width", + 115146, + 115167, + { + "value": "bs-tooltip-arrow-width" + } + ], + [ + ")-token", + ")", + 115168, + 115168, + null + ], + [ + "whitespace-token", + " ", + 115169, + 115169, + null + ], + [ + "delim-token", + "*", + 115170, + 115170, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 115171, + 115171, + null + ], + [ + "number-token", + ".5", + 115172, + 115173, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 115174, + 115174, + null + ], + [ + "whitespace-token", + " ", + 115175, + 115175, + null + ], + [ + "function-token", + "var(", + 115176, + 115179, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115180, + 115180, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115181, + 115181, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-arrow-height", + 115182, + 115204, + { + "value": "bs-tooltip-arrow-height" + } + ], + [ + ")-token", + ")", + 115205, + 115205, + null + ], + [ + "semicolon-token", + ";", + 115206, + 115206, + null + ], + [ + "ident-token", + "border-left-color", + 115207, + 115223, + { + "value": "border-left-color" + } + ], + [ + "colon-token", + ":", + 115224, + 115224, + null + ], + [ + "function-token", + "var(", + 115225, + 115228, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115229, + 115229, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115230, + 115230, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 115231, + 115243, + { + "value": "bs-tooltip-bg" + } + ], + [ + ")-token", + ")", + 115244, + 115244, + null + ], + [ + "}-token", + "}", + 115245, + 115245, + null + ], + [ + "delim-token", + ".", + 115246, + 115246, + { + "value": "." + } + ], + [ + "ident-token", + "tooltip-inner", + 115247, + 115259, + { + "value": "tooltip-inner" + } + ], + [ + "{-token", + "{", + 115260, + 115260, + null + ], + [ + "ident-token", + "max-width", + 115261, + 115269, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 115270, + 115270, + null + ], + [ + "function-token", + "var(", + 115271, + 115274, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115275, + 115275, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115276, + 115276, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-max-width", + 115277, + 115296, + { + "value": "bs-tooltip-max-width" + } + ], + [ + ")-token", + ")", + 115297, + 115297, + null + ], + [ + "semicolon-token", + ";", + 115298, + 115298, + null + ], + [ + "ident-token", + "padding", + 115299, + 115305, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 115306, + 115306, + null + ], + [ + "function-token", + "var(", + 115307, + 115310, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115311, + 115311, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115312, + 115312, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-padding-y", + 115313, + 115332, + { + "value": "bs-tooltip-padding-y" + } + ], + [ + ")-token", + ")", + 115333, + 115333, + null + ], + [ + "whitespace-token", + " ", + 115334, + 115334, + null + ], + [ + "function-token", + "var(", + 115335, + 115338, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115339, + 115339, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115340, + 115340, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-padding-x", + 115341, + 115360, + { + "value": "bs-tooltip-padding-x" + } + ], + [ + ")-token", + ")", + 115361, + 115361, + null + ], + [ + "semicolon-token", + ";", + 115362, + 115362, + null + ], + [ + "ident-token", + "color", + 115363, + 115367, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 115368, + 115368, + null + ], + [ + "function-token", + "var(", + 115369, + 115372, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115373, + 115373, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115374, + 115374, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-color", + 115375, + 115390, + { + "value": "bs-tooltip-color" + } + ], + [ + ")-token", + ")", + 115391, + 115391, + null + ], + [ + "semicolon-token", + ";", + 115392, + 115392, + null + ], + [ + "ident-token", + "text-align", + 115393, + 115402, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 115403, + 115403, + null + ], + [ + "ident-token", + "center", + 115404, + 115409, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 115410, + 115410, + null + ], + [ + "ident-token", + "background-color", + 115411, + 115426, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 115427, + 115427, + null + ], + [ + "function-token", + "var(", + 115428, + 115431, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115432, + 115432, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115433, + 115433, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-bg", + 115434, + 115446, + { + "value": "bs-tooltip-bg" + } + ], + [ + ")-token", + ")", + 115447, + 115447, + null + ], + [ + "semicolon-token", + ";", + 115448, + 115448, + null + ], + [ + "ident-token", + "border-radius", + 115449, + 115461, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 115462, + 115462, + null + ], + [ + "function-token", + "var(", + 115463, + 115466, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115467, + 115467, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115468, + 115468, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-tooltip-border-radius", + 115469, + 115492, + { + "value": "bs-tooltip-border-radius" + } + ], + [ + ")-token", + ")", + 115493, + 115493, + null + ], + [ + "}-token", + "}", + 115494, + 115494, + null + ], + [ + "delim-token", + ".", + 115495, + 115495, + { + "value": "." + } + ], + [ + "ident-token", + "popover", + 115496, + 115502, + { + "value": "popover" + } + ], + [ + "{-token", + "{", + 115503, + 115503, + null + ], + [ + "delim-token", + "-", + 115504, + 115504, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115505, + 115505, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-zindex", + 115506, + 115522, + { + "value": "bs-popover-zindex" + } + ], + [ + "colon-token", + ":", + 115523, + 115523, + null + ], + [ + "number-token", + "1070", + 115524, + 115527, + { + "value": 1070, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 115528, + 115528, + null + ], + [ + "delim-token", + "-", + 115529, + 115529, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115530, + 115530, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-max-width", + 115531, + 115550, + { + "value": "bs-popover-max-width" + } + ], + [ + "colon-token", + ":", + 115551, + 115551, + null + ], + [ + "dimension-token", + "276px", + 115552, + 115556, + { + "value": 276, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 115557, + 115557, + null + ], + [ + "delim-token", + "-", + 115558, + 115558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115559, + 115559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-font-size", + 115560, + 115579, + { + "value": "bs-popover-font-size" + } + ], + [ + "colon-token", + ":", + 115580, + 115580, + null + ], + [ + "dimension-token", + "0.875rem", + 115581, + 115588, + { + "value": 0.875, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 115589, + 115589, + null + ], + [ + "delim-token", + "-", + 115590, + 115590, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115591, + 115591, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 115592, + 115604, + { + "value": "bs-popover-bg" + } + ], + [ + "colon-token", + ":", + 115605, + 115605, + null + ], + [ + "hash-token", + "#fff", + 115606, + 115609, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 115610, + 115610, + null + ], + [ + "delim-token", + "-", + 115611, + 115611, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115612, + 115612, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 115613, + 115635, + { + "value": "bs-popover-border-width" + } + ], + [ + "colon-token", + ":", + 115636, + 115636, + null + ], + [ + "dimension-token", + "1px", + 115637, + 115639, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 115640, + 115640, + null + ], + [ + "delim-token", + "-", + 115641, + 115641, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115642, + 115642, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-color", + 115643, + 115665, + { + "value": "bs-popover-border-color" + } + ], + [ + "colon-token", + ":", + 115666, + 115666, + null + ], + [ + "function-token", + "var(", + 115667, + 115670, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 115671, + 115671, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115672, + 115672, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 115673, + 115699, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 115700, + 115700, + null + ], + [ + "semicolon-token", + ";", + 115701, + 115701, + null + ], + [ + "delim-token", + "-", + 115702, + 115702, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115703, + 115703, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-radius", + 115704, + 115727, + { + "value": "bs-popover-border-radius" + } + ], + [ + "colon-token", + ":", + 115728, + 115728, + null + ], + [ + "dimension-token", + "0.5rem", + 115729, + 115734, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 115735, + 115735, + null + ], + [ + "delim-token", + "-", + 115736, + 115736, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115737, + 115737, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-inner-border-radius", + 115738, + 115767, + { + "value": "bs-popover-inner-border-radius" + } + ], + [ + "colon-token", + ":", + 115768, + 115768, + null + ], + [ + "function-token", + "calc(", + 115769, + 115773, + { + "value": "calc" + } + ], + [ + "dimension-token", + "0.5rem", + 115774, + 115779, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 115780, + 115780, + null + ], + [ + "delim-token", + "-", + 115781, + 115781, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 115782, + 115782, + null + ], + [ + "dimension-token", + "1px", + 115783, + 115785, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 115786, + 115786, + null + ], + [ + "semicolon-token", + ";", + 115787, + 115787, + null + ], + [ + "delim-token", + "-", + 115788, + 115788, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115789, + 115789, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-box-shadow", + 115790, + 115810, + { + "value": "bs-popover-box-shadow" + } + ], + [ + "colon-token", + ":", + 115811, + 115811, + null + ], + [ + "number-token", + "0", + 115812, + 115812, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 115813, + 115813, + null + ], + [ + "dimension-token", + "0.5rem", + 115814, + 115819, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 115820, + 115820, + null + ], + [ + "dimension-token", + "1rem", + 115821, + 115824, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 115825, + 115825, + null + ], + [ + "function-token", + "rgba(", + 115826, + 115830, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 115831, + 115831, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 115832, + 115832, + null + ], + [ + "whitespace-token", + " ", + 115833, + 115833, + null + ], + [ + "number-token", + "0", + 115834, + 115834, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 115835, + 115835, + null + ], + [ + "whitespace-token", + " ", + 115836, + 115836, + null + ], + [ + "number-token", + "0", + 115837, + 115837, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 115838, + 115838, + null + ], + [ + "whitespace-token", + " ", + 115839, + 115839, + null + ], + [ + "number-token", + "0.15", + 115840, + 115843, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 115844, + 115844, + null + ], + [ + "semicolon-token", + ";", + 115845, + 115845, + null + ], + [ + "delim-token", + "-", + 115846, + 115846, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115847, + 115847, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-padding-x", + 115848, + 115874, + { + "value": "bs-popover-header-padding-x" + } + ], + [ + "colon-token", + ":", + 115875, + 115875, + null + ], + [ + "dimension-token", + "1rem", + 115876, + 115879, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 115880, + 115880, + null + ], + [ + "delim-token", + "-", + 115881, + 115881, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115882, + 115882, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-padding-y", + 115883, + 115909, + { + "value": "bs-popover-header-padding-y" + } + ], + [ + "colon-token", + ":", + 115910, + 115910, + null + ], + [ + "dimension-token", + "0.5rem", + 115911, + 115916, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 115917, + 115917, + null + ], + [ + "delim-token", + "-", + 115918, + 115918, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115919, + 115919, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-font-size", + 115920, + 115946, + { + "value": "bs-popover-header-font-size" + } + ], + [ + "colon-token", + ":", + 115947, + 115947, + null + ], + [ + "dimension-token", + "1rem", + 115948, + 115951, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 115952, + 115952, + null + ], + [ + "delim-token", + "-", + 115953, + 115953, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115954, + 115954, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-color", + 115955, + 115977, + { + "value": "bs-popover-header-color" + } + ], + [ + "colon-token", + ":", + 115978, + 115978, + null + ], + [ + "whitespace-token", + " ", + 115979, + 115979, + null + ], + [ + "semicolon-token", + ";", + 115980, + 115980, + null + ], + [ + "delim-token", + "-", + 115981, + 115981, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 115982, + 115982, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-bg", + 115983, + 116002, + { + "value": "bs-popover-header-bg" + } + ], + [ + "colon-token", + ":", + 116003, + 116003, + null + ], + [ + "hash-token", + "#f0f0f0", + 116004, + 116010, + { + "value": "f0f0f0", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 116011, + 116011, + null + ], + [ + "delim-token", + "-", + 116012, + 116012, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116013, + 116013, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-padding-x", + 116014, + 116038, + { + "value": "bs-popover-body-padding-x" + } + ], + [ + "colon-token", + ":", + 116039, + 116039, + null + ], + [ + "dimension-token", + "1rem", + 116040, + 116043, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 116044, + 116044, + null + ], + [ + "delim-token", + "-", + 116045, + 116045, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116046, + 116046, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-padding-y", + 116047, + 116071, + { + "value": "bs-popover-body-padding-y" + } + ], + [ + "colon-token", + ":", + 116072, + 116072, + null + ], + [ + "dimension-token", + "1rem", + 116073, + 116076, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 116077, + 116077, + null + ], + [ + "delim-token", + "-", + 116078, + 116078, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116079, + 116079, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-color", + 116080, + 116100, + { + "value": "bs-popover-body-color" + } + ], + [ + "colon-token", + ":", + 116101, + 116101, + null + ], + [ + "hash-token", + "#212529", + 116102, + 116108, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "semicolon-token", + ";", + 116109, + 116109, + null + ], + [ + "delim-token", + "-", + 116110, + 116110, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116111, + 116111, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 116112, + 116133, + { + "value": "bs-popover-arrow-width" + } + ], + [ + "colon-token", + ":", + 116134, + 116134, + null + ], + [ + "dimension-token", + "1rem", + 116135, + 116138, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 116139, + 116139, + null + ], + [ + "delim-token", + "-", + 116140, + 116140, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116141, + 116141, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 116142, + 116164, + { + "value": "bs-popover-arrow-height" + } + ], + [ + "colon-token", + ":", + 116165, + 116165, + null + ], + [ + "dimension-token", + "0.5rem", + 116166, + 116171, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 116172, + 116172, + null + ], + [ + "delim-token", + "-", + 116173, + 116173, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116174, + 116174, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-border", + 116175, + 116197, + { + "value": "bs-popover-arrow-border" + } + ], + [ + "colon-token", + ":", + 116198, + 116198, + null + ], + [ + "function-token", + "var(", + 116199, + 116202, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116203, + 116203, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116204, + 116204, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-color", + 116205, + 116227, + { + "value": "bs-popover-border-color" + } + ], + [ + ")-token", + ")", + 116228, + 116228, + null + ], + [ + "semicolon-token", + ";", + 116229, + 116229, + null + ], + [ + "ident-token", + "z-index", + 116230, + 116236, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 116237, + 116237, + null + ], + [ + "function-token", + "var(", + 116238, + 116241, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116242, + 116242, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116243, + 116243, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-zindex", + 116244, + 116260, + { + "value": "bs-popover-zindex" + } + ], + [ + ")-token", + ")", + 116261, + 116261, + null + ], + [ + "semicolon-token", + ";", + 116262, + 116262, + null + ], + [ + "ident-token", + "display", + 116263, + 116269, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 116270, + 116270, + null + ], + [ + "ident-token", + "block", + 116271, + 116275, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 116276, + 116276, + null + ], + [ + "ident-token", + "max-width", + 116277, + 116285, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 116286, + 116286, + null + ], + [ + "function-token", + "var(", + 116287, + 116290, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116291, + 116291, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116292, + 116292, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-max-width", + 116293, + 116312, + { + "value": "bs-popover-max-width" + } + ], + [ + ")-token", + ")", + 116313, + 116313, + null + ], + [ + "semicolon-token", + ";", + 116314, + 116314, + null + ], + [ + "ident-token", + "font-family", + 116315, + 116325, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 116326, + 116326, + null + ], + [ + "function-token", + "var(", + 116327, + 116330, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116331, + 116331, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116332, + 116332, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-sans-serif", + 116333, + 116350, + { + "value": "bs-font-sans-serif" + } + ], + [ + ")-token", + ")", + 116351, + 116351, + null + ], + [ + "semicolon-token", + ";", + 116352, + 116352, + null + ], + [ + "ident-token", + "font-style", + 116353, + 116362, + { + "value": "font-style" + } + ], + [ + "colon-token", + ":", + 116363, + 116363, + null + ], + [ + "ident-token", + "normal", + 116364, + 116369, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 116370, + 116370, + null + ], + [ + "ident-token", + "font-weight", + 116371, + 116381, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 116382, + 116382, + null + ], + [ + "number-token", + "400", + 116383, + 116385, + { + "value": 400, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 116386, + 116386, + null + ], + [ + "ident-token", + "line-height", + 116387, + 116397, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 116398, + 116398, + null + ], + [ + "number-token", + "1.5", + 116399, + 116401, + { + "value": 1.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 116402, + 116402, + null + ], + [ + "ident-token", + "text-align", + 116403, + 116412, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 116413, + 116413, + null + ], + [ + "ident-token", + "left", + 116414, + 116417, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 116418, + 116418, + null + ], + [ + "ident-token", + "text-align", + 116419, + 116428, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 116429, + 116429, + null + ], + [ + "ident-token", + "start", + 116430, + 116434, + { + "value": "start" + } + ], + [ + "semicolon-token", + ";", + 116435, + 116435, + null + ], + [ + "ident-token", + "text-decoration", + 116436, + 116450, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 116451, + 116451, + null + ], + [ + "ident-token", + "none", + 116452, + 116455, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 116456, + 116456, + null + ], + [ + "ident-token", + "text-shadow", + 116457, + 116467, + { + "value": "text-shadow" + } + ], + [ + "colon-token", + ":", + 116468, + 116468, + null + ], + [ + "ident-token", + "none", + 116469, + 116472, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 116473, + 116473, + null + ], + [ + "ident-token", + "text-transform", + 116474, + 116487, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 116488, + 116488, + null + ], + [ + "ident-token", + "none", + 116489, + 116492, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 116493, + 116493, + null + ], + [ + "ident-token", + "letter-spacing", + 116494, + 116507, + { + "value": "letter-spacing" + } + ], + [ + "colon-token", + ":", + 116508, + 116508, + null + ], + [ + "ident-token", + "normal", + 116509, + 116514, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 116515, + 116515, + null + ], + [ + "ident-token", + "word-break", + 116516, + 116525, + { + "value": "word-break" + } + ], + [ + "colon-token", + ":", + 116526, + 116526, + null + ], + [ + "ident-token", + "normal", + 116527, + 116532, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 116533, + 116533, + null + ], + [ + "ident-token", + "white-space", + 116534, + 116544, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 116545, + 116545, + null + ], + [ + "ident-token", + "normal", + 116546, + 116551, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 116552, + 116552, + null + ], + [ + "ident-token", + "word-spacing", + 116553, + 116564, + { + "value": "word-spacing" + } + ], + [ + "colon-token", + ":", + 116565, + 116565, + null + ], + [ + "ident-token", + "normal", + 116566, + 116571, + { + "value": "normal" + } + ], + [ + "semicolon-token", + ";", + 116572, + 116572, + null + ], + [ + "ident-token", + "line-break", + 116573, + 116582, + { + "value": "line-break" + } + ], + [ + "colon-token", + ":", + 116583, + 116583, + null + ], + [ + "ident-token", + "auto", + 116584, + 116587, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 116588, + 116588, + null + ], + [ + "ident-token", + "font-size", + 116589, + 116597, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 116598, + 116598, + null + ], + [ + "function-token", + "var(", + 116599, + 116602, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116603, + 116603, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116604, + 116604, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-font-size", + 116605, + 116624, + { + "value": "bs-popover-font-size" + } + ], + [ + ")-token", + ")", + 116625, + 116625, + null + ], + [ + "semicolon-token", + ";", + 116626, + 116626, + null + ], + [ + "ident-token", + "word-wrap", + 116627, + 116635, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 116636, + 116636, + null + ], + [ + "ident-token", + "break-word", + 116637, + 116646, + { + "value": "break-word" + } + ], + [ + "semicolon-token", + ";", + 116647, + 116647, + null + ], + [ + "ident-token", + "background-color", + 116648, + 116663, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 116664, + 116664, + null + ], + [ + "function-token", + "var(", + 116665, + 116668, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116669, + 116669, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116670, + 116670, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 116671, + 116683, + { + "value": "bs-popover-bg" + } + ], + [ + ")-token", + ")", + 116684, + 116684, + null + ], + [ + "semicolon-token", + ";", + 116685, + 116685, + null + ], + [ + "ident-token", + "background-clip", + 116686, + 116700, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 116701, + 116701, + null + ], + [ + "ident-token", + "padding-box", + 116702, + 116712, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 116713, + 116713, + null + ], + [ + "ident-token", + "border", + 116714, + 116719, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 116720, + 116720, + null + ], + [ + "function-token", + "var(", + 116721, + 116724, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116725, + 116725, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116726, + 116726, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 116727, + 116749, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 116750, + 116750, + null + ], + [ + "whitespace-token", + " ", + 116751, + 116751, + null + ], + [ + "ident-token", + "solid", + 116752, + 116756, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 116757, + 116757, + null + ], + [ + "function-token", + "var(", + 116758, + 116761, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116762, + 116762, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116763, + 116763, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-color", + 116764, + 116786, + { + "value": "bs-popover-border-color" + } + ], + [ + ")-token", + ")", + 116787, + 116787, + null + ], + [ + "semicolon-token", + ";", + 116788, + 116788, + null + ], + [ + "ident-token", + "border-radius", + 116789, + 116801, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 116802, + 116802, + null + ], + [ + "function-token", + "var(", + 116803, + 116806, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116807, + 116807, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116808, + 116808, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-radius", + 116809, + 116832, + { + "value": "bs-popover-border-radius" + } + ], + [ + ")-token", + ")", + 116833, + 116833, + null + ], + [ + "}-token", + "}", + 116834, + 116834, + null + ], + [ + "delim-token", + ".", + 116835, + 116835, + { + "value": "." + } + ], + [ + "ident-token", + "popover", + 116836, + 116842, + { + "value": "popover" + } + ], + [ + "whitespace-token", + " ", + 116843, + 116843, + null + ], + [ + "delim-token", + ".", + 116844, + 116844, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 116845, + 116857, + { + "value": "popover-arrow" + } + ], + [ + "{-token", + "{", + 116858, + 116858, + null + ], + [ + "ident-token", + "display", + 116859, + 116865, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 116866, + 116866, + null + ], + [ + "ident-token", + "block", + 116867, + 116871, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 116872, + 116872, + null + ], + [ + "ident-token", + "width", + 116873, + 116877, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 116878, + 116878, + null + ], + [ + "function-token", + "var(", + 116879, + 116882, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116883, + 116883, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116884, + 116884, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 116885, + 116906, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 116907, + 116907, + null + ], + [ + "semicolon-token", + ";", + 116908, + 116908, + null + ], + [ + "ident-token", + "height", + 116909, + 116914, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 116915, + 116915, + null + ], + [ + "function-token", + "var(", + 116916, + 116919, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 116920, + 116920, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 116921, + 116921, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 116922, + 116944, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 116945, + 116945, + null + ], + [ + "}-token", + "}", + 116946, + 116946, + null + ], + [ + "delim-token", + ".", + 116947, + 116947, + { + "value": "." + } + ], + [ + "ident-token", + "popover", + 116948, + 116954, + { + "value": "popover" + } + ], + [ + "whitespace-token", + " ", + 116955, + 116955, + null + ], + [ + "delim-token", + ".", + 116956, + 116956, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 116957, + 116969, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 116970, + 116970, + null + ], + [ + "colon-token", + ":", + 116971, + 116971, + null + ], + [ + "ident-token", + "after", + 116972, + 116976, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 116977, + 116977, + null + ], + [ + "delim-token", + ".", + 116978, + 116978, + { + "value": "." + } + ], + [ + "ident-token", + "popover", + 116979, + 116985, + { + "value": "popover" + } + ], + [ + "whitespace-token", + " ", + 116986, + 116986, + null + ], + [ + "delim-token", + ".", + 116987, + 116987, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 116988, + 117000, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117001, + 117001, + null + ], + [ + "colon-token", + ":", + 117002, + 117002, + null + ], + [ + "ident-token", + "before", + 117003, + 117008, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 117009, + 117009, + null + ], + [ + "ident-token", + "position", + 117010, + 117017, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 117018, + 117018, + null + ], + [ + "ident-token", + "absolute", + 117019, + 117026, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 117027, + 117027, + null + ], + [ + "ident-token", + "display", + 117028, + 117034, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 117035, + 117035, + null + ], + [ + "ident-token", + "block", + 117036, + 117040, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 117041, + 117041, + null + ], + [ + "ident-token", + "content", + 117042, + 117048, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 117049, + 117049, + null + ], + [ + "string-token", + "\"\"", + 117050, + 117051, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 117052, + 117052, + null + ], + [ + "ident-token", + "border-color", + 117053, + 117064, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 117065, + 117065, + null + ], + [ + "ident-token", + "transparent", + 117066, + 117076, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 117077, + 117077, + null + ], + [ + "ident-token", + "border-style", + 117078, + 117089, + { + "value": "border-style" + } + ], + [ + "colon-token", + ":", + 117090, + 117090, + null + ], + [ + "ident-token", + "solid", + 117091, + 117095, + { + "value": "solid" + } + ], + [ + "semicolon-token", + ";", + 117096, + 117096, + null + ], + [ + "ident-token", + "border-width", + 117097, + 117108, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 117109, + 117109, + null + ], + [ + "number-token", + "0", + 117110, + 117110, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 117111, + 117111, + null + ], + [ + "delim-token", + ".", + 117112, + 117112, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117113, + 117127, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117128, + 117128, + null + ], + [ + "ident-token", + "data-popper-placement", + 117129, + 117149, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117150, + 117150, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117151, + 117151, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 117152, + 117154, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 117155, + 117155, + null + ], + [ + "delim-token", + ">", + 117156, + 117156, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117157, + 117157, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117158, + 117170, + { + "value": "popover-arrow" + } + ], + [ + "comma-token", + ",", + 117171, + 117171, + null + ], + [ + "delim-token", + ".", + 117172, + 117172, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-top", + 117173, + 117186, + { + "value": "bs-popover-top" + } + ], + [ + "delim-token", + ">", + 117187, + 117187, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117188, + 117188, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117189, + 117201, + { + "value": "popover-arrow" + } + ], + [ + "{-token", + "{", + 117202, + 117202, + null + ], + [ + "ident-token", + "bottom", + 117203, + 117208, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 117209, + 117209, + null + ], + [ + "function-token", + "calc(", + 117210, + 117214, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 117215, + 117216, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 117217, + 117217, + null + ], + [ + "delim-token", + "*", + 117218, + 117218, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 117219, + 117219, + null + ], + [ + "(-token", + "(", + 117220, + 117220, + null + ], + [ + "function-token", + "var(", + 117221, + 117224, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117225, + 117225, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117226, + 117226, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 117227, + 117249, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 117250, + 117250, + null + ], + [ + ")-token", + ")", + 117251, + 117251, + null + ], + [ + "whitespace-token", + " ", + 117252, + 117252, + null + ], + [ + "delim-token", + "-", + 117253, + 117253, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 117254, + 117254, + null + ], + [ + "function-token", + "var(", + 117255, + 117258, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117259, + 117259, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117260, + 117260, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 117261, + 117283, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 117284, + 117284, + null + ], + [ + ")-token", + ")", + 117285, + 117285, + null + ], + [ + "}-token", + "}", + 117286, + 117286, + null + ], + [ + "delim-token", + ".", + 117287, + 117287, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117288, + 117302, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117303, + 117303, + null + ], + [ + "ident-token", + "data-popper-placement", + 117304, + 117324, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117325, + 117325, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117326, + 117326, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 117327, + 117329, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 117330, + 117330, + null + ], + [ + "delim-token", + ">", + 117331, + 117331, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117332, + 117332, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117333, + 117345, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117346, + 117346, + null + ], + [ + "colon-token", + ":", + 117347, + 117347, + null + ], + [ + "ident-token", + "after", + 117348, + 117352, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 117353, + 117353, + null + ], + [ + "delim-token", + ".", + 117354, + 117354, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117355, + 117369, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117370, + 117370, + null + ], + [ + "ident-token", + "data-popper-placement", + 117371, + 117391, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117392, + 117392, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117393, + 117393, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 117394, + 117396, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 117397, + 117397, + null + ], + [ + "delim-token", + ">", + 117398, + 117398, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117399, + 117399, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117400, + 117412, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117413, + 117413, + null + ], + [ + "colon-token", + ":", + 117414, + 117414, + null + ], + [ + "ident-token", + "before", + 117415, + 117420, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 117421, + 117421, + null + ], + [ + "delim-token", + ".", + 117422, + 117422, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-top", + 117423, + 117436, + { + "value": "bs-popover-top" + } + ], + [ + "delim-token", + ">", + 117437, + 117437, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117438, + 117438, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117439, + 117451, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117452, + 117452, + null + ], + [ + "colon-token", + ":", + 117453, + 117453, + null + ], + [ + "ident-token", + "after", + 117454, + 117458, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 117459, + 117459, + null + ], + [ + "delim-token", + ".", + 117460, + 117460, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-top", + 117461, + 117474, + { + "value": "bs-popover-top" + } + ], + [ + "delim-token", + ">", + 117475, + 117475, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117476, + 117476, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117477, + 117489, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117490, + 117490, + null + ], + [ + "colon-token", + ":", + 117491, + 117491, + null + ], + [ + "ident-token", + "before", + 117492, + 117497, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 117498, + 117498, + null + ], + [ + "ident-token", + "border-width", + 117499, + 117510, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 117511, + 117511, + null + ], + [ + "function-token", + "var(", + 117512, + 117515, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117516, + 117516, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117517, + 117517, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 117518, + 117540, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 117541, + 117541, + null + ], + [ + "whitespace-token", + " ", + 117542, + 117542, + null + ], + [ + "function-token", + "calc(", + 117543, + 117547, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 117548, + 117551, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117552, + 117552, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117553, + 117553, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 117554, + 117575, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 117576, + 117576, + null + ], + [ + "whitespace-token", + " ", + 117577, + 117577, + null + ], + [ + "delim-token", + "*", + 117578, + 117578, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 117579, + 117579, + null + ], + [ + "number-token", + ".5", + 117580, + 117581, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 117582, + 117582, + null + ], + [ + "whitespace-token", + " ", + 117583, + 117583, + null + ], + [ + "number-token", + "0", + 117584, + 117584, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 117585, + 117585, + null + ], + [ + "delim-token", + ".", + 117586, + 117586, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117587, + 117601, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117602, + 117602, + null + ], + [ + "ident-token", + "data-popper-placement", + 117603, + 117623, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117624, + 117624, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117625, + 117625, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 117626, + 117628, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 117629, + 117629, + null + ], + [ + "delim-token", + ">", + 117630, + 117630, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117631, + 117631, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117632, + 117644, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117645, + 117645, + null + ], + [ + "colon-token", + ":", + 117646, + 117646, + null + ], + [ + "ident-token", + "before", + 117647, + 117652, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 117653, + 117653, + null + ], + [ + "delim-token", + ".", + 117654, + 117654, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-top", + 117655, + 117668, + { + "value": "bs-popover-top" + } + ], + [ + "delim-token", + ">", + 117669, + 117669, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117670, + 117670, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117671, + 117683, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117684, + 117684, + null + ], + [ + "colon-token", + ":", + 117685, + 117685, + null + ], + [ + "ident-token", + "before", + 117686, + 117691, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 117692, + 117692, + null + ], + [ + "ident-token", + "bottom", + 117693, + 117698, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 117699, + 117699, + null + ], + [ + "number-token", + "0", + 117700, + 117700, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 117701, + 117701, + null + ], + [ + "ident-token", + "border-top-color", + 117702, + 117717, + { + "value": "border-top-color" + } + ], + [ + "colon-token", + ":", + 117718, + 117718, + null + ], + [ + "function-token", + "var(", + 117719, + 117722, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117723, + 117723, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117724, + 117724, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-border", + 117725, + 117747, + { + "value": "bs-popover-arrow-border" + } + ], + [ + ")-token", + ")", + 117748, + 117748, + null + ], + [ + "}-token", + "}", + 117749, + 117749, + null + ], + [ + "delim-token", + ".", + 117750, + 117750, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117751, + 117765, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117766, + 117766, + null + ], + [ + "ident-token", + "data-popper-placement", + 117767, + 117787, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117788, + 117788, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117789, + 117789, + { + "value": "=" + } + ], + [ + "ident-token", + "top", + 117790, + 117792, + { + "value": "top" + } + ], + [ + "]-token", + "]", + 117793, + 117793, + null + ], + [ + "delim-token", + ">", + 117794, + 117794, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117795, + 117795, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117796, + 117808, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117809, + 117809, + null + ], + [ + "colon-token", + ":", + 117810, + 117810, + null + ], + [ + "ident-token", + "after", + 117811, + 117815, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 117816, + 117816, + null + ], + [ + "delim-token", + ".", + 117817, + 117817, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-top", + 117818, + 117831, + { + "value": "bs-popover-top" + } + ], + [ + "delim-token", + ">", + 117832, + 117832, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117833, + 117833, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117834, + 117846, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 117847, + 117847, + null + ], + [ + "colon-token", + ":", + 117848, + 117848, + null + ], + [ + "ident-token", + "after", + 117849, + 117853, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 117854, + 117854, + null + ], + [ + "ident-token", + "bottom", + 117855, + 117860, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 117861, + 117861, + null + ], + [ + "function-token", + "var(", + 117862, + 117865, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117866, + 117866, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117867, + 117867, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 117868, + 117890, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 117891, + 117891, + null + ], + [ + "semicolon-token", + ";", + 117892, + 117892, + null + ], + [ + "ident-token", + "border-top-color", + 117893, + 117908, + { + "value": "border-top-color" + } + ], + [ + "colon-token", + ":", + 117909, + 117909, + null + ], + [ + "function-token", + "var(", + 117910, + 117913, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 117914, + 117914, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 117915, + 117915, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 117916, + 117928, + { + "value": "bs-popover-bg" + } + ], + [ + ")-token", + ")", + 117929, + 117929, + null + ], + [ + "}-token", + "}", + 117930, + 117930, + null + ], + [ + "delim-token", + ".", + 117931, + 117931, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 117932, + 117946, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 117947, + 117947, + null + ], + [ + "ident-token", + "data-popper-placement", + 117948, + 117968, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 117969, + 117969, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 117970, + 117970, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 117971, + 117975, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 117976, + 117976, + null + ], + [ + "delim-token", + ">", + 117977, + 117977, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 117978, + 117978, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 117979, + 117991, + { + "value": "popover-arrow" + } + ], + [ + "comma-token", + ",", + 117992, + 117992, + null + ], + [ + "delim-token", + ".", + 117993, + 117993, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-end", + 117994, + 118007, + { + "value": "bs-popover-end" + } + ], + [ + "delim-token", + ">", + 118008, + 118008, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118009, + 118009, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118010, + 118022, + { + "value": "popover-arrow" + } + ], + [ + "{-token", + "{", + 118023, + 118023, + null + ], + [ + "ident-token", + "left", + 118024, + 118027, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 118028, + 118028, + null + ], + [ + "function-token", + "calc(", + 118029, + 118033, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 118034, + 118035, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 118036, + 118036, + null + ], + [ + "delim-token", + "*", + 118037, + 118037, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 118038, + 118038, + null + ], + [ + "(-token", + "(", + 118039, + 118039, + null + ], + [ + "function-token", + "var(", + 118040, + 118043, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118044, + 118044, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118045, + 118045, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 118046, + 118068, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 118069, + 118069, + null + ], + [ + ")-token", + ")", + 118070, + 118070, + null + ], + [ + "whitespace-token", + " ", + 118071, + 118071, + null + ], + [ + "delim-token", + "-", + 118072, + 118072, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 118073, + 118073, + null + ], + [ + "function-token", + "var(", + 118074, + 118077, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118078, + 118078, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118079, + 118079, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 118080, + 118102, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 118103, + 118103, + null + ], + [ + ")-token", + ")", + 118104, + 118104, + null + ], + [ + "semicolon-token", + ";", + 118105, + 118105, + null + ], + [ + "ident-token", + "width", + 118106, + 118110, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 118111, + 118111, + null + ], + [ + "function-token", + "var(", + 118112, + 118115, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118116, + 118116, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118117, + 118117, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 118118, + 118140, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 118141, + 118141, + null + ], + [ + "semicolon-token", + ";", + 118142, + 118142, + null + ], + [ + "ident-token", + "height", + 118143, + 118148, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 118149, + 118149, + null + ], + [ + "function-token", + "var(", + 118150, + 118153, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118154, + 118154, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118155, + 118155, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 118156, + 118177, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 118178, + 118178, + null + ], + [ + "}-token", + "}", + 118179, + 118179, + null + ], + [ + "delim-token", + ".", + 118180, + 118180, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 118181, + 118195, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 118196, + 118196, + null + ], + [ + "ident-token", + "data-popper-placement", + 118197, + 118217, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 118218, + 118218, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 118219, + 118219, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 118220, + 118224, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 118225, + 118225, + null + ], + [ + "delim-token", + ">", + 118226, + 118226, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118227, + 118227, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118228, + 118240, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118241, + 118241, + null + ], + [ + "colon-token", + ":", + 118242, + 118242, + null + ], + [ + "ident-token", + "after", + 118243, + 118247, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 118248, + 118248, + null + ], + [ + "delim-token", + ".", + 118249, + 118249, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 118250, + 118264, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 118265, + 118265, + null + ], + [ + "ident-token", + "data-popper-placement", + 118266, + 118286, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 118287, + 118287, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 118288, + 118288, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 118289, + 118293, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 118294, + 118294, + null + ], + [ + "delim-token", + ">", + 118295, + 118295, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118296, + 118296, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118297, + 118309, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118310, + 118310, + null + ], + [ + "colon-token", + ":", + 118311, + 118311, + null + ], + [ + "ident-token", + "before", + 118312, + 118317, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 118318, + 118318, + null + ], + [ + "delim-token", + ".", + 118319, + 118319, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-end", + 118320, + 118333, + { + "value": "bs-popover-end" + } + ], + [ + "delim-token", + ">", + 118334, + 118334, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118335, + 118335, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118336, + 118348, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118349, + 118349, + null + ], + [ + "colon-token", + ":", + 118350, + 118350, + null + ], + [ + "ident-token", + "after", + 118351, + 118355, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 118356, + 118356, + null + ], + [ + "delim-token", + ".", + 118357, + 118357, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-end", + 118358, + 118371, + { + "value": "bs-popover-end" + } + ], + [ + "delim-token", + ">", + 118372, + 118372, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118373, + 118373, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118374, + 118386, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118387, + 118387, + null + ], + [ + "colon-token", + ":", + 118388, + 118388, + null + ], + [ + "ident-token", + "before", + 118389, + 118394, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 118395, + 118395, + null + ], + [ + "ident-token", + "border-width", + 118396, + 118407, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 118408, + 118408, + null + ], + [ + "function-token", + "calc(", + 118409, + 118413, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 118414, + 118417, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118418, + 118418, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118419, + 118419, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 118420, + 118441, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 118442, + 118442, + null + ], + [ + "whitespace-token", + " ", + 118443, + 118443, + null + ], + [ + "delim-token", + "*", + 118444, + 118444, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 118445, + 118445, + null + ], + [ + "number-token", + ".5", + 118446, + 118447, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 118448, + 118448, + null + ], + [ + "whitespace-token", + " ", + 118449, + 118449, + null + ], + [ + "function-token", + "var(", + 118450, + 118453, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118454, + 118454, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118455, + 118455, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 118456, + 118478, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 118479, + 118479, + null + ], + [ + "whitespace-token", + " ", + 118480, + 118480, + null + ], + [ + "function-token", + "calc(", + 118481, + 118485, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 118486, + 118489, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118490, + 118490, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118491, + 118491, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 118492, + 118513, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 118514, + 118514, + null + ], + [ + "whitespace-token", + " ", + 118515, + 118515, + null + ], + [ + "delim-token", + "*", + 118516, + 118516, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 118517, + 118517, + null + ], + [ + "number-token", + ".5", + 118518, + 118519, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 118520, + 118520, + null + ], + [ + "whitespace-token", + " ", + 118521, + 118521, + null + ], + [ + "number-token", + "0", + 118522, + 118522, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 118523, + 118523, + null + ], + [ + "delim-token", + ".", + 118524, + 118524, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 118525, + 118539, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 118540, + 118540, + null + ], + [ + "ident-token", + "data-popper-placement", + 118541, + 118561, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 118562, + 118562, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 118563, + 118563, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 118564, + 118568, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 118569, + 118569, + null + ], + [ + "delim-token", + ">", + 118570, + 118570, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118571, + 118571, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118572, + 118584, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118585, + 118585, + null + ], + [ + "colon-token", + ":", + 118586, + 118586, + null + ], + [ + "ident-token", + "before", + 118587, + 118592, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 118593, + 118593, + null + ], + [ + "delim-token", + ".", + 118594, + 118594, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-end", + 118595, + 118608, + { + "value": "bs-popover-end" + } + ], + [ + "delim-token", + ">", + 118609, + 118609, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118610, + 118610, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118611, + 118623, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118624, + 118624, + null + ], + [ + "colon-token", + ":", + 118625, + 118625, + null + ], + [ + "ident-token", + "before", + 118626, + 118631, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 118632, + 118632, + null + ], + [ + "ident-token", + "left", + 118633, + 118636, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 118637, + 118637, + null + ], + [ + "number-token", + "0", + 118638, + 118638, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 118639, + 118639, + null + ], + [ + "ident-token", + "border-right-color", + 118640, + 118657, + { + "value": "border-right-color" + } + ], + [ + "colon-token", + ":", + 118658, + 118658, + null + ], + [ + "function-token", + "var(", + 118659, + 118662, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118663, + 118663, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118664, + 118664, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-border", + 118665, + 118687, + { + "value": "bs-popover-arrow-border" + } + ], + [ + ")-token", + ")", + 118688, + 118688, + null + ], + [ + "}-token", + "}", + 118689, + 118689, + null + ], + [ + "delim-token", + ".", + 118690, + 118690, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 118691, + 118705, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 118706, + 118706, + null + ], + [ + "ident-token", + "data-popper-placement", + 118707, + 118727, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 118728, + 118728, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 118729, + 118729, + { + "value": "=" + } + ], + [ + "ident-token", + "right", + 118730, + 118734, + { + "value": "right" + } + ], + [ + "]-token", + "]", + 118735, + 118735, + null + ], + [ + "delim-token", + ">", + 118736, + 118736, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118737, + 118737, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118738, + 118750, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118751, + 118751, + null + ], + [ + "colon-token", + ":", + 118752, + 118752, + null + ], + [ + "ident-token", + "after", + 118753, + 118757, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 118758, + 118758, + null + ], + [ + "delim-token", + ".", + 118759, + 118759, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-end", + 118760, + 118773, + { + "value": "bs-popover-end" + } + ], + [ + "delim-token", + ">", + 118774, + 118774, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118775, + 118775, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118776, + 118788, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 118789, + 118789, + null + ], + [ + "colon-token", + ":", + 118790, + 118790, + null + ], + [ + "ident-token", + "after", + 118791, + 118795, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 118796, + 118796, + null + ], + [ + "ident-token", + "left", + 118797, + 118800, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 118801, + 118801, + null + ], + [ + "function-token", + "var(", + 118802, + 118805, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118806, + 118806, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118807, + 118807, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 118808, + 118830, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 118831, + 118831, + null + ], + [ + "semicolon-token", + ";", + 118832, + 118832, + null + ], + [ + "ident-token", + "border-right-color", + 118833, + 118850, + { + "value": "border-right-color" + } + ], + [ + "colon-token", + ":", + 118851, + 118851, + null + ], + [ + "function-token", + "var(", + 118852, + 118855, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118856, + 118856, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118857, + 118857, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 118858, + 118870, + { + "value": "bs-popover-bg" + } + ], + [ + ")-token", + ")", + 118871, + 118871, + null + ], + [ + "}-token", + "}", + 118872, + 118872, + null + ], + [ + "delim-token", + ".", + 118873, + 118873, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 118874, + 118888, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 118889, + 118889, + null + ], + [ + "ident-token", + "data-popper-placement", + 118890, + 118910, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 118911, + 118911, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 118912, + 118912, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 118913, + 118918, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 118919, + 118919, + null + ], + [ + "delim-token", + ">", + 118920, + 118920, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118921, + 118921, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118922, + 118934, + { + "value": "popover-arrow" + } + ], + [ + "comma-token", + ",", + 118935, + 118935, + null + ], + [ + "delim-token", + ".", + 118936, + 118936, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 118937, + 118953, + { + "value": "bs-popover-bottom" + } + ], + [ + "delim-token", + ">", + 118954, + 118954, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 118955, + 118955, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 118956, + 118968, + { + "value": "popover-arrow" + } + ], + [ + "{-token", + "{", + 118969, + 118969, + null + ], + [ + "ident-token", + "top", + 118970, + 118972, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 118973, + 118973, + null + ], + [ + "function-token", + "calc(", + 118974, + 118978, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 118979, + 118980, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 118981, + 118981, + null + ], + [ + "delim-token", + "*", + 118982, + 118982, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 118983, + 118983, + null + ], + [ + "(-token", + "(", + 118984, + 118984, + null + ], + [ + "function-token", + "var(", + 118985, + 118988, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 118989, + 118989, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 118990, + 118990, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 118991, + 119013, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 119014, + 119014, + null + ], + [ + ")-token", + ")", + 119015, + 119015, + null + ], + [ + "whitespace-token", + " ", + 119016, + 119016, + null + ], + [ + "delim-token", + "-", + 119017, + 119017, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 119018, + 119018, + null + ], + [ + "function-token", + "var(", + 119019, + 119022, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119023, + 119023, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119024, + 119024, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 119025, + 119047, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 119048, + 119048, + null + ], + [ + ")-token", + ")", + 119049, + 119049, + null + ], + [ + "}-token", + "}", + 119050, + 119050, + null + ], + [ + "delim-token", + ".", + 119051, + 119051, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 119052, + 119066, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 119067, + 119067, + null + ], + [ + "ident-token", + "data-popper-placement", + 119068, + 119088, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 119089, + 119089, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 119090, + 119090, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 119091, + 119096, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 119097, + 119097, + null + ], + [ + "delim-token", + ">", + 119098, + 119098, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119099, + 119099, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119100, + 119112, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119113, + 119113, + null + ], + [ + "colon-token", + ":", + 119114, + 119114, + null + ], + [ + "ident-token", + "after", + 119115, + 119119, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 119120, + 119120, + null + ], + [ + "delim-token", + ".", + 119121, + 119121, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 119122, + 119136, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 119137, + 119137, + null + ], + [ + "ident-token", + "data-popper-placement", + 119138, + 119158, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 119159, + 119159, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 119160, + 119160, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 119161, + 119166, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 119167, + 119167, + null + ], + [ + "delim-token", + ">", + 119168, + 119168, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119169, + 119169, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119170, + 119182, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119183, + 119183, + null + ], + [ + "colon-token", + ":", + 119184, + 119184, + null + ], + [ + "ident-token", + "before", + 119185, + 119190, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 119191, + 119191, + null + ], + [ + "delim-token", + ".", + 119192, + 119192, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 119193, + 119209, + { + "value": "bs-popover-bottom" + } + ], + [ + "delim-token", + ">", + 119210, + 119210, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119211, + 119211, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119212, + 119224, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119225, + 119225, + null + ], + [ + "colon-token", + ":", + 119226, + 119226, + null + ], + [ + "ident-token", + "after", + 119227, + 119231, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 119232, + 119232, + null + ], + [ + "delim-token", + ".", + 119233, + 119233, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 119234, + 119250, + { + "value": "bs-popover-bottom" + } + ], + [ + "delim-token", + ">", + 119251, + 119251, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119252, + 119252, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119253, + 119265, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119266, + 119266, + null + ], + [ + "colon-token", + ":", + 119267, + 119267, + null + ], + [ + "ident-token", + "before", + 119268, + 119273, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 119274, + 119274, + null + ], + [ + "ident-token", + "border-width", + 119275, + 119286, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 119287, + 119287, + null + ], + [ + "number-token", + "0", + 119288, + 119288, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 119289, + 119289, + null + ], + [ + "function-token", + "calc(", + 119290, + 119294, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 119295, + 119298, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119299, + 119299, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119300, + 119300, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 119301, + 119322, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 119323, + 119323, + null + ], + [ + "whitespace-token", + " ", + 119324, + 119324, + null + ], + [ + "delim-token", + "*", + 119325, + 119325, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 119326, + 119326, + null + ], + [ + "number-token", + ".5", + 119327, + 119328, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 119329, + 119329, + null + ], + [ + "whitespace-token", + " ", + 119330, + 119330, + null + ], + [ + "function-token", + "var(", + 119331, + 119334, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119335, + 119335, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119336, + 119336, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 119337, + 119359, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 119360, + 119360, + null + ], + [ + "}-token", + "}", + 119361, + 119361, + null + ], + [ + "delim-token", + ".", + 119362, + 119362, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 119363, + 119377, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 119378, + 119378, + null + ], + [ + "ident-token", + "data-popper-placement", + 119379, + 119399, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 119400, + 119400, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 119401, + 119401, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 119402, + 119407, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 119408, + 119408, + null + ], + [ + "delim-token", + ">", + 119409, + 119409, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119410, + 119410, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119411, + 119423, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119424, + 119424, + null + ], + [ + "colon-token", + ":", + 119425, + 119425, + null + ], + [ + "ident-token", + "before", + 119426, + 119431, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 119432, + 119432, + null + ], + [ + "delim-token", + ".", + 119433, + 119433, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 119434, + 119450, + { + "value": "bs-popover-bottom" + } + ], + [ + "delim-token", + ">", + 119451, + 119451, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119452, + 119452, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119453, + 119465, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119466, + 119466, + null + ], + [ + "colon-token", + ":", + 119467, + 119467, + null + ], + [ + "ident-token", + "before", + 119468, + 119473, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 119474, + 119474, + null + ], + [ + "ident-token", + "top", + 119475, + 119477, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 119478, + 119478, + null + ], + [ + "number-token", + "0", + 119479, + 119479, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 119480, + 119480, + null + ], + [ + "ident-token", + "border-bottom-color", + 119481, + 119499, + { + "value": "border-bottom-color" + } + ], + [ + "colon-token", + ":", + 119500, + 119500, + null + ], + [ + "function-token", + "var(", + 119501, + 119504, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119505, + 119505, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119506, + 119506, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-border", + 119507, + 119529, + { + "value": "bs-popover-arrow-border" + } + ], + [ + ")-token", + ")", + 119530, + 119530, + null + ], + [ + "}-token", + "}", + 119531, + 119531, + null + ], + [ + "delim-token", + ".", + 119532, + 119532, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 119533, + 119547, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 119548, + 119548, + null + ], + [ + "ident-token", + "data-popper-placement", + 119549, + 119569, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 119570, + 119570, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 119571, + 119571, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 119572, + 119577, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 119578, + 119578, + null + ], + [ + "delim-token", + ">", + 119579, + 119579, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119580, + 119580, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119581, + 119593, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119594, + 119594, + null + ], + [ + "colon-token", + ":", + 119595, + 119595, + null + ], + [ + "ident-token", + "after", + 119596, + 119600, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 119601, + 119601, + null + ], + [ + "delim-token", + ".", + 119602, + 119602, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 119603, + 119619, + { + "value": "bs-popover-bottom" + } + ], + [ + "delim-token", + ">", + 119620, + 119620, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 119621, + 119621, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 119622, + 119634, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 119635, + 119635, + null + ], + [ + "colon-token", + ":", + 119636, + 119636, + null + ], + [ + "ident-token", + "after", + 119637, + 119641, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 119642, + 119642, + null + ], + [ + "ident-token", + "top", + 119643, + 119645, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 119646, + 119646, + null + ], + [ + "function-token", + "var(", + 119647, + 119650, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119651, + 119651, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119652, + 119652, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 119653, + 119675, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 119676, + 119676, + null + ], + [ + "semicolon-token", + ";", + 119677, + 119677, + null + ], + [ + "ident-token", + "border-bottom-color", + 119678, + 119696, + { + "value": "border-bottom-color" + } + ], + [ + "colon-token", + ":", + 119697, + 119697, + null + ], + [ + "function-token", + "var(", + 119698, + 119701, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119702, + 119702, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119703, + 119703, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 119704, + 119716, + { + "value": "bs-popover-bg" + } + ], + [ + ")-token", + ")", + 119717, + 119717, + null + ], + [ + "}-token", + "}", + 119718, + 119718, + null + ], + [ + "delim-token", + ".", + 119719, + 119719, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 119720, + 119734, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 119735, + 119735, + null + ], + [ + "ident-token", + "data-popper-placement", + 119736, + 119756, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 119757, + 119757, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 119758, + 119758, + { + "value": "=" + } + ], + [ + "ident-token", + "bottom", + 119759, + 119764, + { + "value": "bottom" + } + ], + [ + "]-token", + "]", + 119765, + 119765, + null + ], + [ + "whitespace-token", + " ", + 119766, + 119766, + null + ], + [ + "delim-token", + ".", + 119767, + 119767, + { + "value": "." + } + ], + [ + "ident-token", + "popover-header", + 119768, + 119781, + { + "value": "popover-header" + } + ], + [ + "colon-token", + ":", + 119782, + 119782, + null + ], + [ + "colon-token", + ":", + 119783, + 119783, + null + ], + [ + "ident-token", + "before", + 119784, + 119789, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 119790, + 119790, + null + ], + [ + "delim-token", + ".", + 119791, + 119791, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-bottom", + 119792, + 119808, + { + "value": "bs-popover-bottom" + } + ], + [ + "whitespace-token", + " ", + 119809, + 119809, + null + ], + [ + "delim-token", + ".", + 119810, + 119810, + { + "value": "." + } + ], + [ + "ident-token", + "popover-header", + 119811, + 119824, + { + "value": "popover-header" + } + ], + [ + "colon-token", + ":", + 119825, + 119825, + null + ], + [ + "colon-token", + ":", + 119826, + 119826, + null + ], + [ + "ident-token", + "before", + 119827, + 119832, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 119833, + 119833, + null + ], + [ + "ident-token", + "position", + 119834, + 119841, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 119842, + 119842, + null + ], + [ + "ident-token", + "absolute", + 119843, + 119850, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 119851, + 119851, + null + ], + [ + "ident-token", + "top", + 119852, + 119854, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 119855, + 119855, + null + ], + [ + "number-token", + "0", + 119856, + 119856, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 119857, + 119857, + null + ], + [ + "ident-token", + "left", + 119858, + 119861, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 119862, + 119862, + null + ], + [ + "percentage-token", + "50%", + 119863, + 119865, + { + "value": 50 + } + ], + [ + "semicolon-token", + ";", + 119866, + 119866, + null + ], + [ + "ident-token", + "display", + 119867, + 119873, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 119874, + 119874, + null + ], + [ + "ident-token", + "block", + 119875, + 119879, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 119880, + 119880, + null + ], + [ + "ident-token", + "width", + 119881, + 119885, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 119886, + 119886, + null + ], + [ + "function-token", + "var(", + 119887, + 119890, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119891, + 119891, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119892, + 119892, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 119893, + 119914, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 119915, + 119915, + null + ], + [ + "semicolon-token", + ";", + 119916, + 119916, + null + ], + [ + "ident-token", + "margin-left", + 119917, + 119927, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 119928, + 119928, + null + ], + [ + "function-token", + "calc(", + 119929, + 119933, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 119934, + 119936, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 119937, + 119937, + null + ], + [ + "delim-token", + "*", + 119938, + 119938, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 119939, + 119939, + null + ], + [ + "function-token", + "var(", + 119940, + 119943, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 119944, + 119944, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 119945, + 119945, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 119946, + 119967, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 119968, + 119968, + null + ], + [ + ")-token", + ")", + 119969, + 119969, + null + ], + [ + "semicolon-token", + ";", + 119970, + 119970, + null + ], + [ + "ident-token", + "content", + 119971, + 119977, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 119978, + 119978, + null + ], + [ + "string-token", + "\"\"", + 119979, + 119980, + { + "value": "" + } + ], + [ + "semicolon-token", + ";", + 119981, + 119981, + null + ], + [ + "ident-token", + "border-bottom", + 119982, + 119994, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 119995, + 119995, + null + ], + [ + "function-token", + "var(", + 119996, + 119999, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120000, + 120000, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120001, + 120001, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 120002, + 120024, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 120025, + 120025, + null + ], + [ + "whitespace-token", + " ", + 120026, + 120026, + null + ], + [ + "ident-token", + "solid", + 120027, + 120031, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 120032, + 120032, + null + ], + [ + "function-token", + "var(", + 120033, + 120036, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120037, + 120037, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120038, + 120038, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-bg", + 120039, + 120058, + { + "value": "bs-popover-header-bg" + } + ], + [ + ")-token", + ")", + 120059, + 120059, + null + ], + [ + "}-token", + "}", + 120060, + 120060, + null + ], + [ + "delim-token", + ".", + 120061, + 120061, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 120062, + 120076, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 120077, + 120077, + null + ], + [ + "ident-token", + "data-popper-placement", + 120078, + 120098, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 120099, + 120099, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 120100, + 120100, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 120101, + 120104, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 120105, + 120105, + null + ], + [ + "delim-token", + ">", + 120106, + 120106, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120107, + 120107, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120108, + 120120, + { + "value": "popover-arrow" + } + ], + [ + "comma-token", + ",", + 120121, + 120121, + null + ], + [ + "delim-token", + ".", + 120122, + 120122, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-start", + 120123, + 120138, + { + "value": "bs-popover-start" + } + ], + [ + "delim-token", + ">", + 120139, + 120139, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120140, + 120140, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120141, + 120153, + { + "value": "popover-arrow" + } + ], + [ + "{-token", + "{", + 120154, + 120154, + null + ], + [ + "ident-token", + "right", + 120155, + 120159, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 120160, + 120160, + null + ], + [ + "function-token", + "calc(", + 120161, + 120165, + { + "value": "calc" + } + ], + [ + "number-token", + "-1", + 120166, + 120167, + { + "value": -1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 120168, + 120168, + null + ], + [ + "delim-token", + "*", + 120169, + 120169, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 120170, + 120170, + null + ], + [ + "(-token", + "(", + 120171, + 120171, + null + ], + [ + "function-token", + "var(", + 120172, + 120175, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120176, + 120176, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120177, + 120177, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 120178, + 120200, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 120201, + 120201, + null + ], + [ + ")-token", + ")", + 120202, + 120202, + null + ], + [ + "whitespace-token", + " ", + 120203, + 120203, + null + ], + [ + "delim-token", + "-", + 120204, + 120204, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 120205, + 120205, + null + ], + [ + "function-token", + "var(", + 120206, + 120209, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120210, + 120210, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120211, + 120211, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 120212, + 120234, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 120235, + 120235, + null + ], + [ + ")-token", + ")", + 120236, + 120236, + null + ], + [ + "semicolon-token", + ";", + 120237, + 120237, + null + ], + [ + "ident-token", + "width", + 120238, + 120242, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 120243, + 120243, + null + ], + [ + "function-token", + "var(", + 120244, + 120247, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120248, + 120248, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120249, + 120249, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 120250, + 120272, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 120273, + 120273, + null + ], + [ + "semicolon-token", + ";", + 120274, + 120274, + null + ], + [ + "ident-token", + "height", + 120275, + 120280, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 120281, + 120281, + null + ], + [ + "function-token", + "var(", + 120282, + 120285, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120286, + 120286, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120287, + 120287, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 120288, + 120309, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 120310, + 120310, + null + ], + [ + "}-token", + "}", + 120311, + 120311, + null + ], + [ + "delim-token", + ".", + 120312, + 120312, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 120313, + 120327, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 120328, + 120328, + null + ], + [ + "ident-token", + "data-popper-placement", + 120329, + 120349, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 120350, + 120350, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 120351, + 120351, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 120352, + 120355, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 120356, + 120356, + null + ], + [ + "delim-token", + ">", + 120357, + 120357, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120358, + 120358, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120359, + 120371, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120372, + 120372, + null + ], + [ + "colon-token", + ":", + 120373, + 120373, + null + ], + [ + "ident-token", + "after", + 120374, + 120378, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 120379, + 120379, + null + ], + [ + "delim-token", + ".", + 120380, + 120380, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 120381, + 120395, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 120396, + 120396, + null + ], + [ + "ident-token", + "data-popper-placement", + 120397, + 120417, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 120418, + 120418, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 120419, + 120419, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 120420, + 120423, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 120424, + 120424, + null + ], + [ + "delim-token", + ">", + 120425, + 120425, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120426, + 120426, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120427, + 120439, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120440, + 120440, + null + ], + [ + "colon-token", + ":", + 120441, + 120441, + null + ], + [ + "ident-token", + "before", + 120442, + 120447, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 120448, + 120448, + null + ], + [ + "delim-token", + ".", + 120449, + 120449, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-start", + 120450, + 120465, + { + "value": "bs-popover-start" + } + ], + [ + "delim-token", + ">", + 120466, + 120466, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120467, + 120467, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120468, + 120480, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120481, + 120481, + null + ], + [ + "colon-token", + ":", + 120482, + 120482, + null + ], + [ + "ident-token", + "after", + 120483, + 120487, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 120488, + 120488, + null + ], + [ + "delim-token", + ".", + 120489, + 120489, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-start", + 120490, + 120505, + { + "value": "bs-popover-start" + } + ], + [ + "delim-token", + ">", + 120506, + 120506, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120507, + 120507, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120508, + 120520, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120521, + 120521, + null + ], + [ + "colon-token", + ":", + 120522, + 120522, + null + ], + [ + "ident-token", + "before", + 120523, + 120528, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 120529, + 120529, + null + ], + [ + "ident-token", + "border-width", + 120530, + 120541, + { + "value": "border-width" + } + ], + [ + "colon-token", + ":", + 120542, + 120542, + null + ], + [ + "function-token", + "calc(", + 120543, + 120547, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 120548, + 120551, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120552, + 120552, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120553, + 120553, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 120554, + 120575, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 120576, + 120576, + null + ], + [ + "whitespace-token", + " ", + 120577, + 120577, + null + ], + [ + "delim-token", + "*", + 120578, + 120578, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 120579, + 120579, + null + ], + [ + "number-token", + ".5", + 120580, + 120581, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 120582, + 120582, + null + ], + [ + "whitespace-token", + " ", + 120583, + 120583, + null + ], + [ + "number-token", + "0", + 120584, + 120584, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 120585, + 120585, + null + ], + [ + "function-token", + "calc(", + 120586, + 120590, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 120591, + 120594, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120595, + 120595, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120596, + 120596, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-width", + 120597, + 120618, + { + "value": "bs-popover-arrow-width" + } + ], + [ + ")-token", + ")", + 120619, + 120619, + null + ], + [ + "whitespace-token", + " ", + 120620, + 120620, + null + ], + [ + "delim-token", + "*", + 120621, + 120621, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 120622, + 120622, + null + ], + [ + "number-token", + ".5", + 120623, + 120624, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 120625, + 120625, + null + ], + [ + "whitespace-token", + " ", + 120626, + 120626, + null + ], + [ + "function-token", + "var(", + 120627, + 120630, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120631, + 120631, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120632, + 120632, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-height", + 120633, + 120655, + { + "value": "bs-popover-arrow-height" + } + ], + [ + ")-token", + ")", + 120656, + 120656, + null + ], + [ + "}-token", + "}", + 120657, + 120657, + null + ], + [ + "delim-token", + ".", + 120658, + 120658, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 120659, + 120673, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 120674, + 120674, + null + ], + [ + "ident-token", + "data-popper-placement", + 120675, + 120695, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 120696, + 120696, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 120697, + 120697, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 120698, + 120701, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 120702, + 120702, + null + ], + [ + "delim-token", + ">", + 120703, + 120703, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120704, + 120704, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120705, + 120717, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120718, + 120718, + null + ], + [ + "colon-token", + ":", + 120719, + 120719, + null + ], + [ + "ident-token", + "before", + 120720, + 120725, + { + "value": "before" + } + ], + [ + "comma-token", + ",", + 120726, + 120726, + null + ], + [ + "delim-token", + ".", + 120727, + 120727, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-start", + 120728, + 120743, + { + "value": "bs-popover-start" + } + ], + [ + "delim-token", + ">", + 120744, + 120744, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120745, + 120745, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120746, + 120758, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120759, + 120759, + null + ], + [ + "colon-token", + ":", + 120760, + 120760, + null + ], + [ + "ident-token", + "before", + 120761, + 120766, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 120767, + 120767, + null + ], + [ + "ident-token", + "right", + 120768, + 120772, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 120773, + 120773, + null + ], + [ + "number-token", + "0", + 120774, + 120774, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 120775, + 120775, + null + ], + [ + "ident-token", + "border-left-color", + 120776, + 120792, + { + "value": "border-left-color" + } + ], + [ + "colon-token", + ":", + 120793, + 120793, + null + ], + [ + "function-token", + "var(", + 120794, + 120797, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120798, + 120798, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120799, + 120799, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-arrow-border", + 120800, + 120822, + { + "value": "bs-popover-arrow-border" + } + ], + [ + ")-token", + ")", + 120823, + 120823, + null + ], + [ + "}-token", + "}", + 120824, + 120824, + null + ], + [ + "delim-token", + ".", + 120825, + 120825, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-auto", + 120826, + 120840, + { + "value": "bs-popover-auto" + } + ], + [ + "[-token", + "[", + 120841, + 120841, + null + ], + [ + "ident-token", + "data-popper-placement", + 120842, + 120862, + { + "value": "data-popper-placement" + } + ], + [ + "delim-token", + "^", + 120863, + 120863, + { + "value": "^" + } + ], + [ + "delim-token", + "=", + 120864, + 120864, + { + "value": "=" + } + ], + [ + "ident-token", + "left", + 120865, + 120868, + { + "value": "left" + } + ], + [ + "]-token", + "]", + 120869, + 120869, + null + ], + [ + "delim-token", + ">", + 120870, + 120870, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120871, + 120871, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120872, + 120884, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120885, + 120885, + null + ], + [ + "colon-token", + ":", + 120886, + 120886, + null + ], + [ + "ident-token", + "after", + 120887, + 120891, + { + "value": "after" + } + ], + [ + "comma-token", + ",", + 120892, + 120892, + null + ], + [ + "delim-token", + ".", + 120893, + 120893, + { + "value": "." + } + ], + [ + "ident-token", + "bs-popover-start", + 120894, + 120909, + { + "value": "bs-popover-start" + } + ], + [ + "delim-token", + ">", + 120910, + 120910, + { + "value": ">" + } + ], + [ + "delim-token", + ".", + 120911, + 120911, + { + "value": "." + } + ], + [ + "ident-token", + "popover-arrow", + 120912, + 120924, + { + "value": "popover-arrow" + } + ], + [ + "colon-token", + ":", + 120925, + 120925, + null + ], + [ + "colon-token", + ":", + 120926, + 120926, + null + ], + [ + "ident-token", + "after", + 120927, + 120931, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 120932, + 120932, + null + ], + [ + "ident-token", + "right", + 120933, + 120937, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 120938, + 120938, + null + ], + [ + "function-token", + "var(", + 120939, + 120942, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120943, + 120943, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120944, + 120944, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 120945, + 120967, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 120968, + 120968, + null + ], + [ + "semicolon-token", + ";", + 120969, + 120969, + null + ], + [ + "ident-token", + "border-left-color", + 120970, + 120986, + { + "value": "border-left-color" + } + ], + [ + "colon-token", + ":", + 120987, + 120987, + null + ], + [ + "function-token", + "var(", + 120988, + 120991, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 120992, + 120992, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 120993, + 120993, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-bg", + 120994, + 121006, + { + "value": "bs-popover-bg" + } + ], + [ + ")-token", + ")", + 121007, + 121007, + null + ], + [ + "}-token", + "}", + 121008, + 121008, + null + ], + [ + "delim-token", + ".", + 121009, + 121009, + { + "value": "." + } + ], + [ + "ident-token", + "popover-header", + 121010, + 121023, + { + "value": "popover-header" + } + ], + [ + "{-token", + "{", + 121024, + 121024, + null + ], + [ + "ident-token", + "padding", + 121025, + 121031, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 121032, + 121032, + null + ], + [ + "function-token", + "var(", + 121033, + 121036, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121037, + 121037, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121038, + 121038, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-padding-y", + 121039, + 121065, + { + "value": "bs-popover-header-padding-y" + } + ], + [ + ")-token", + ")", + 121066, + 121066, + null + ], + [ + "whitespace-token", + " ", + 121067, + 121067, + null + ], + [ + "function-token", + "var(", + 121068, + 121071, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121072, + 121072, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121073, + 121073, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-padding-x", + 121074, + 121100, + { + "value": "bs-popover-header-padding-x" + } + ], + [ + ")-token", + ")", + 121101, + 121101, + null + ], + [ + "semicolon-token", + ";", + 121102, + 121102, + null + ], + [ + "ident-token", + "margin-bottom", + 121103, + 121115, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 121116, + 121116, + null + ], + [ + "number-token", + "0", + 121117, + 121117, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 121118, + 121118, + null + ], + [ + "ident-token", + "font-size", + 121119, + 121127, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 121128, + 121128, + null + ], + [ + "function-token", + "var(", + 121129, + 121132, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121133, + 121133, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121134, + 121134, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-font-size", + 121135, + 121161, + { + "value": "bs-popover-header-font-size" + } + ], + [ + ")-token", + ")", + 121162, + 121162, + null + ], + [ + "semicolon-token", + ";", + 121163, + 121163, + null + ], + [ + "ident-token", + "color", + 121164, + 121168, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 121169, + 121169, + null + ], + [ + "function-token", + "var(", + 121170, + 121173, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121174, + 121174, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121175, + 121175, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-color", + 121176, + 121198, + { + "value": "bs-popover-header-color" + } + ], + [ + ")-token", + ")", + 121199, + 121199, + null + ], + [ + "semicolon-token", + ";", + 121200, + 121200, + null + ], + [ + "ident-token", + "background-color", + 121201, + 121216, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 121217, + 121217, + null + ], + [ + "function-token", + "var(", + 121218, + 121221, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121222, + 121222, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121223, + 121223, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-header-bg", + 121224, + 121243, + { + "value": "bs-popover-header-bg" + } + ], + [ + ")-token", + ")", + 121244, + 121244, + null + ], + [ + "semicolon-token", + ";", + 121245, + 121245, + null + ], + [ + "ident-token", + "border-bottom", + 121246, + 121258, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 121259, + 121259, + null + ], + [ + "function-token", + "var(", + 121260, + 121263, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121264, + 121264, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121265, + 121265, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-width", + 121266, + 121288, + { + "value": "bs-popover-border-width" + } + ], + [ + ")-token", + ")", + 121289, + 121289, + null + ], + [ + "whitespace-token", + " ", + 121290, + 121290, + null + ], + [ + "ident-token", + "solid", + 121291, + 121295, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 121296, + 121296, + null + ], + [ + "function-token", + "var(", + 121297, + 121300, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121301, + 121301, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121302, + 121302, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-border-color", + 121303, + 121325, + { + "value": "bs-popover-border-color" + } + ], + [ + ")-token", + ")", + 121326, + 121326, + null + ], + [ + "semicolon-token", + ";", + 121327, + 121327, + null + ], + [ + "ident-token", + "border-top-left-radius", + 121328, + 121349, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 121350, + 121350, + null + ], + [ + "function-token", + "var(", + 121351, + 121354, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121355, + 121355, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121356, + 121356, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-inner-border-radius", + 121357, + 121386, + { + "value": "bs-popover-inner-border-radius" + } + ], + [ + ")-token", + ")", + 121387, + 121387, + null + ], + [ + "semicolon-token", + ";", + 121388, + 121388, + null + ], + [ + "ident-token", + "border-top-right-radius", + 121389, + 121411, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 121412, + 121412, + null + ], + [ + "function-token", + "var(", + 121413, + 121416, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121417, + 121417, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121418, + 121418, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-inner-border-radius", + 121419, + 121448, + { + "value": "bs-popover-inner-border-radius" + } + ], + [ + ")-token", + ")", + 121449, + 121449, + null + ], + [ + "}-token", + "}", + 121450, + 121450, + null + ], + [ + "delim-token", + ".", + 121451, + 121451, + { + "value": "." + } + ], + [ + "ident-token", + "popover-header", + 121452, + 121465, + { + "value": "popover-header" + } + ], + [ + "colon-token", + ":", + 121466, + 121466, + null + ], + [ + "ident-token", + "empty", + 121467, + 121471, + { + "value": "empty" + } + ], + [ + "{-token", + "{", + 121472, + 121472, + null + ], + [ + "ident-token", + "display", + 121473, + 121479, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 121480, + 121480, + null + ], + [ + "ident-token", + "none", + 121481, + 121484, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 121485, + 121485, + null + ], + [ + "delim-token", + ".", + 121486, + 121486, + { + "value": "." + } + ], + [ + "ident-token", + "popover-body", + 121487, + 121498, + { + "value": "popover-body" + } + ], + [ + "{-token", + "{", + 121499, + 121499, + null + ], + [ + "ident-token", + "padding", + 121500, + 121506, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 121507, + 121507, + null + ], + [ + "function-token", + "var(", + 121508, + 121511, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121512, + 121512, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121513, + 121513, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-padding-y", + 121514, + 121538, + { + "value": "bs-popover-body-padding-y" + } + ], + [ + ")-token", + ")", + 121539, + 121539, + null + ], + [ + "whitespace-token", + " ", + 121540, + 121540, + null + ], + [ + "function-token", + "var(", + 121541, + 121544, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121545, + 121545, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121546, + 121546, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-padding-x", + 121547, + 121571, + { + "value": "bs-popover-body-padding-x" + } + ], + [ + ")-token", + ")", + 121572, + 121572, + null + ], + [ + "semicolon-token", + ";", + 121573, + 121573, + null + ], + [ + "ident-token", + "color", + 121574, + 121578, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 121579, + 121579, + null + ], + [ + "function-token", + "var(", + 121580, + 121583, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 121584, + 121584, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 121585, + 121585, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-popover-body-color", + 121586, + 121606, + { + "value": "bs-popover-body-color" + } + ], + [ + ")-token", + ")", + 121607, + 121607, + null + ], + [ + "}-token", + "}", + 121608, + 121608, + null + ], + [ + "delim-token", + ".", + 121609, + 121609, + { + "value": "." + } + ], + [ + "ident-token", + "carousel", + 121610, + 121617, + { + "value": "carousel" + } + ], + [ + "{-token", + "{", + 121618, + 121618, + null + ], + [ + "ident-token", + "position", + 121619, + 121626, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 121627, + 121627, + null + ], + [ + "ident-token", + "relative", + 121628, + 121635, + { + "value": "relative" + } + ], + [ + "}-token", + "}", + 121636, + 121636, + null + ], + [ + "delim-token", + ".", + 121637, + 121637, + { + "value": "." + } + ], + [ + "ident-token", + "carousel", + 121638, + 121645, + { + "value": "carousel" + } + ], + [ + "delim-token", + ".", + 121646, + 121646, + { + "value": "." + } + ], + [ + "ident-token", + "pointer-event", + 121647, + 121659, + { + "value": "pointer-event" + } + ], + [ + "{-token", + "{", + 121660, + 121660, + null + ], + [ + "ident-token", + "touch-action", + 121661, + 121672, + { + "value": "touch-action" + } + ], + [ + "colon-token", + ":", + 121673, + 121673, + null + ], + [ + "ident-token", + "pan-y", + 121674, + 121678, + { + "value": "pan-y" + } + ], + [ + "}-token", + "}", + 121679, + 121679, + null + ], + [ + "delim-token", + ".", + 121680, + 121680, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-inner", + 121681, + 121694, + { + "value": "carousel-inner" + } + ], + [ + "{-token", + "{", + 121695, + 121695, + null + ], + [ + "ident-token", + "position", + 121696, + 121703, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 121704, + 121704, + null + ], + [ + "ident-token", + "relative", + 121705, + 121712, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 121713, + 121713, + null + ], + [ + "ident-token", + "width", + 121714, + 121718, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 121719, + 121719, + null + ], + [ + "percentage-token", + "100%", + 121720, + 121723, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 121724, + 121724, + null + ], + [ + "ident-token", + "overflow", + 121725, + 121732, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 121733, + 121733, + null + ], + [ + "ident-token", + "hidden", + 121734, + 121739, + { + "value": "hidden" + } + ], + [ + "}-token", + "}", + 121740, + 121740, + null + ], + [ + "delim-token", + ".", + 121741, + 121741, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-inner", + 121742, + 121755, + { + "value": "carousel-inner" + } + ], + [ + "colon-token", + ":", + 121756, + 121756, + null + ], + [ + "colon-token", + ":", + 121757, + 121757, + null + ], + [ + "ident-token", + "after", + 121758, + 121762, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 121763, + 121763, + null + ], + [ + "ident-token", + "display", + 121764, + 121770, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 121771, + 121771, + null + ], + [ + "ident-token", + "block", + 121772, + 121776, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 121777, + 121777, + null + ], + [ + "ident-token", + "clear", + 121778, + 121782, + { + "value": "clear" + } + ], + [ + "colon-token", + ":", + 121783, + 121783, + null + ], + [ + "ident-token", + "both", + 121784, + 121787, + { + "value": "both" + } + ], + [ + "semicolon-token", + ";", + 121788, + 121788, + null + ], + [ + "ident-token", + "content", + 121789, + 121795, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 121796, + 121796, + null + ], + [ + "string-token", + "\"\"", + 121797, + 121798, + { + "value": "" + } + ], + [ + "}-token", + "}", + 121799, + 121799, + null + ], + [ + "delim-token", + ".", + 121800, + 121800, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item", + 121801, + 121813, + { + "value": "carousel-item" + } + ], + [ + "{-token", + "{", + 121814, + 121814, + null + ], + [ + "ident-token", + "position", + 121815, + 121822, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 121823, + 121823, + null + ], + [ + "ident-token", + "relative", + 121824, + 121831, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 121832, + 121832, + null + ], + [ + "ident-token", + "display", + 121833, + 121839, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 121840, + 121840, + null + ], + [ + "ident-token", + "none", + 121841, + 121844, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 121845, + 121845, + null + ], + [ + "ident-token", + "float", + 121846, + 121850, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 121851, + 121851, + null + ], + [ + "ident-token", + "left", + 121852, + 121855, + { + "value": "left" + } + ], + [ + "semicolon-token", + ";", + 121856, + 121856, + null + ], + [ + "ident-token", + "width", + 121857, + 121861, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 121862, + 121862, + null + ], + [ + "percentage-token", + "100%", + 121863, + 121866, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 121867, + 121867, + null + ], + [ + "ident-token", + "margin-right", + 121868, + 121879, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 121880, + 121880, + null + ], + [ + "percentage-token", + "-100%", + 121881, + 121885, + { + "value": -100 + } + ], + [ + "semicolon-token", + ";", + 121886, + 121886, + null + ], + [ + "delim-token", + "-", + 121887, + 121887, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-backface-visibility", + 121888, + 121913, + { + "value": "webkit-backface-visibility" + } + ], + [ + "colon-token", + ":", + 121914, + 121914, + null + ], + [ + "ident-token", + "hidden", + 121915, + 121920, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 121921, + 121921, + null + ], + [ + "ident-token", + "backface-visibility", + 121922, + 121940, + { + "value": "backface-visibility" + } + ], + [ + "colon-token", + ":", + 121941, + 121941, + null + ], + [ + "ident-token", + "hidden", + 121942, + 121947, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 121948, + 121948, + null + ], + [ + "ident-token", + "transition", + 121949, + 121958, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 121959, + 121959, + null + ], + [ + "ident-token", + "transform", + 121960, + 121968, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 121969, + 121969, + null + ], + [ + "dimension-token", + ".6s", + 121970, + 121972, + { + "value": 0.6, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 121973, + 121973, + null + ], + [ + "ident-token", + "ease-in-out", + 121974, + 121984, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 121985, + 121985, + null + ], + [ + "at-keyword-token", + "@media", + 121986, + 121991, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 121992, + 121992, + null + ], + [ + "(-token", + "(", + 121993, + 121993, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 121994, + 122015, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 122016, + 122016, + null + ], + [ + "ident-token", + "reduce", + 122017, + 122022, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 122023, + 122023, + null + ], + [ + "{-token", + "{", + 122024, + 122024, + null + ], + [ + "delim-token", + ".", + 122025, + 122025, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item", + 122026, + 122038, + { + "value": "carousel-item" + } + ], + [ + "{-token", + "{", + 122039, + 122039, + null + ], + [ + "ident-token", + "transition", + 122040, + 122049, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 122050, + 122050, + null + ], + [ + "ident-token", + "none", + 122051, + 122054, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 122055, + 122055, + null + ], + [ + "}-token", + "}", + 122056, + 122056, + null + ], + [ + "delim-token", + ".", + 122057, + 122057, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-next", + 122058, + 122075, + { + "value": "carousel-item-next" + } + ], + [ + "comma-token", + ",", + 122076, + 122076, + null + ], + [ + "delim-token", + ".", + 122077, + 122077, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-prev", + 122078, + 122095, + { + "value": "carousel-item-prev" + } + ], + [ + "comma-token", + ",", + 122096, + 122096, + null + ], + [ + "delim-token", + ".", + 122097, + 122097, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item", + 122098, + 122110, + { + "value": "carousel-item" + } + ], + [ + "delim-token", + ".", + 122111, + 122111, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122112, + 122117, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 122118, + 122118, + null + ], + [ + "ident-token", + "display", + 122119, + 122125, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 122126, + 122126, + null + ], + [ + "ident-token", + "block", + 122127, + 122131, + { + "value": "block" + } + ], + [ + "}-token", + "}", + 122132, + 122132, + null + ], + [ + "delim-token", + ".", + 122133, + 122133, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122134, + 122139, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122140, + 122140, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-end", + 122141, + 122157, + { + "value": "carousel-item-end" + } + ], + [ + "comma-token", + ",", + 122158, + 122158, + null + ], + [ + "delim-token", + ".", + 122159, + 122159, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-next", + 122160, + 122177, + { + "value": "carousel-item-next" + } + ], + [ + "colon-token", + ":", + 122178, + 122178, + null + ], + [ + "function-token", + "not(", + 122179, + 122182, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 122183, + 122183, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-start", + 122184, + 122202, + { + "value": "carousel-item-start" + } + ], + [ + ")-token", + ")", + 122203, + 122203, + null + ], + [ + "{-token", + "{", + 122204, + 122204, + null + ], + [ + "ident-token", + "transform", + 122205, + 122213, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 122214, + 122214, + null + ], + [ + "function-token", + "translateX(", + 122215, + 122225, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 122226, + 122229, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 122230, + 122230, + null + ], + [ + "}-token", + "}", + 122231, + 122231, + null + ], + [ + "delim-token", + ".", + 122232, + 122232, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122233, + 122238, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122239, + 122239, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-start", + 122240, + 122258, + { + "value": "carousel-item-start" + } + ], + [ + "comma-token", + ",", + 122259, + 122259, + null + ], + [ + "delim-token", + ".", + 122260, + 122260, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-prev", + 122261, + 122278, + { + "value": "carousel-item-prev" + } + ], + [ + "colon-token", + ":", + 122279, + 122279, + null + ], + [ + "function-token", + "not(", + 122280, + 122283, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 122284, + 122284, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-end", + 122285, + 122301, + { + "value": "carousel-item-end" + } + ], + [ + ")-token", + ")", + 122302, + 122302, + null + ], + [ + "{-token", + "{", + 122303, + 122303, + null + ], + [ + "ident-token", + "transform", + 122304, + 122312, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 122313, + 122313, + null + ], + [ + "function-token", + "translateX(", + 122314, + 122324, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 122325, + 122329, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 122330, + 122330, + null + ], + [ + "}-token", + "}", + 122331, + 122331, + null + ], + [ + "delim-token", + ".", + 122332, + 122332, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122333, + 122345, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122346, + 122346, + null + ], + [ + "delim-token", + ".", + 122347, + 122347, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item", + 122348, + 122360, + { + "value": "carousel-item" + } + ], + [ + "{-token", + "{", + 122361, + 122361, + null + ], + [ + "ident-token", + "opacity", + 122362, + 122368, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 122369, + 122369, + null + ], + [ + "number-token", + "0", + 122370, + 122370, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122371, + 122371, + null + ], + [ + "ident-token", + "transition-property", + 122372, + 122390, + { + "value": "transition-property" + } + ], + [ + "colon-token", + ":", + 122391, + 122391, + null + ], + [ + "ident-token", + "opacity", + 122392, + 122398, + { + "value": "opacity" + } + ], + [ + "semicolon-token", + ";", + 122399, + 122399, + null + ], + [ + "ident-token", + "transform", + 122400, + 122408, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 122409, + 122409, + null + ], + [ + "ident-token", + "none", + 122410, + 122413, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 122414, + 122414, + null + ], + [ + "delim-token", + ".", + 122415, + 122415, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122416, + 122428, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122429, + 122429, + null + ], + [ + "delim-token", + ".", + 122430, + 122430, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-next", + 122431, + 122448, + { + "value": "carousel-item-next" + } + ], + [ + "delim-token", + ".", + 122449, + 122449, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-start", + 122450, + 122468, + { + "value": "carousel-item-start" + } + ], + [ + "comma-token", + ",", + 122469, + 122469, + null + ], + [ + "delim-token", + ".", + 122470, + 122470, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122471, + 122483, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122484, + 122484, + null + ], + [ + "delim-token", + ".", + 122485, + 122485, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-prev", + 122486, + 122503, + { + "value": "carousel-item-prev" + } + ], + [ + "delim-token", + ".", + 122504, + 122504, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-end", + 122505, + 122521, + { + "value": "carousel-item-end" + } + ], + [ + "comma-token", + ",", + 122522, + 122522, + null + ], + [ + "delim-token", + ".", + 122523, + 122523, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122524, + 122536, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122537, + 122537, + null + ], + [ + "delim-token", + ".", + 122538, + 122538, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item", + 122539, + 122551, + { + "value": "carousel-item" + } + ], + [ + "delim-token", + ".", + 122552, + 122552, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122553, + 122558, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 122559, + 122559, + null + ], + [ + "ident-token", + "z-index", + 122560, + 122566, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 122567, + 122567, + null + ], + [ + "number-token", + "1", + 122568, + 122568, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122569, + 122569, + null + ], + [ + "ident-token", + "opacity", + 122570, + 122576, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 122577, + 122577, + null + ], + [ + "number-token", + "1", + 122578, + 122578, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 122579, + 122579, + null + ], + [ + "delim-token", + ".", + 122580, + 122580, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122581, + 122593, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122594, + 122594, + null + ], + [ + "delim-token", + ".", + 122595, + 122595, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122596, + 122601, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122602, + 122602, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-end", + 122603, + 122619, + { + "value": "carousel-item-end" + } + ], + [ + "comma-token", + ",", + 122620, + 122620, + null + ], + [ + "delim-token", + ".", + 122621, + 122621, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122622, + 122634, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122635, + 122635, + null + ], + [ + "delim-token", + ".", + 122636, + 122636, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122637, + 122642, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122643, + 122643, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-start", + 122644, + 122662, + { + "value": "carousel-item-start" + } + ], + [ + "{-token", + "{", + 122663, + 122663, + null + ], + [ + "ident-token", + "z-index", + 122664, + 122670, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 122671, + 122671, + null + ], + [ + "number-token", + "0", + 122672, + 122672, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122673, + 122673, + null + ], + [ + "ident-token", + "opacity", + 122674, + 122680, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 122681, + 122681, + null + ], + [ + "number-token", + "0", + 122682, + 122682, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122683, + 122683, + null + ], + [ + "ident-token", + "transition", + 122684, + 122693, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 122694, + 122694, + null + ], + [ + "ident-token", + "opacity", + 122695, + 122701, + { + "value": "opacity" + } + ], + [ + "whitespace-token", + " ", + 122702, + 122702, + null + ], + [ + "dimension-token", + "0s", + 122703, + 122704, + { + "value": 0, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 122705, + 122705, + null + ], + [ + "dimension-token", + ".6s", + 122706, + 122708, + { + "value": 0.6, + "type": "number", + "unit": "s" + } + ], + [ + "}-token", + "}", + 122709, + 122709, + null + ], + [ + "at-keyword-token", + "@media", + 122710, + 122715, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 122716, + 122716, + null + ], + [ + "(-token", + "(", + 122717, + 122717, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 122718, + 122739, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 122740, + 122740, + null + ], + [ + "ident-token", + "reduce", + 122741, + 122746, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 122747, + 122747, + null + ], + [ + "{-token", + "{", + 122748, + 122748, + null + ], + [ + "delim-token", + ".", + 122749, + 122749, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122750, + 122762, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122763, + 122763, + null + ], + [ + "delim-token", + ".", + 122764, + 122764, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122765, + 122770, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122771, + 122771, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-end", + 122772, + 122788, + { + "value": "carousel-item-end" + } + ], + [ + "comma-token", + ",", + 122789, + 122789, + null + ], + [ + "delim-token", + ".", + 122790, + 122790, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-fade", + 122791, + 122803, + { + "value": "carousel-fade" + } + ], + [ + "whitespace-token", + " ", + 122804, + 122804, + null + ], + [ + "delim-token", + ".", + 122805, + 122805, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 122806, + 122811, + { + "value": "active" + } + ], + [ + "delim-token", + ".", + 122812, + 122812, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-item-start", + 122813, + 122831, + { + "value": "carousel-item-start" + } + ], + [ + "{-token", + "{", + 122832, + 122832, + null + ], + [ + "ident-token", + "transition", + 122833, + 122842, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 122843, + 122843, + null + ], + [ + "ident-token", + "none", + 122844, + 122847, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 122848, + 122848, + null + ], + [ + "}-token", + "}", + 122849, + 122849, + null + ], + [ + "delim-token", + ".", + 122850, + 122850, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next", + 122851, + 122871, + { + "value": "carousel-control-next" + } + ], + [ + "comma-token", + ",", + 122872, + 122872, + null + ], + [ + "delim-token", + ".", + 122873, + 122873, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev", + 122874, + 122894, + { + "value": "carousel-control-prev" + } + ], + [ + "{-token", + "{", + 122895, + 122895, + null + ], + [ + "ident-token", + "position", + 122896, + 122903, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 122904, + 122904, + null + ], + [ + "ident-token", + "absolute", + 122905, + 122912, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 122913, + 122913, + null + ], + [ + "ident-token", + "top", + 122914, + 122916, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 122917, + 122917, + null + ], + [ + "number-token", + "0", + 122918, + 122918, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122919, + 122919, + null + ], + [ + "ident-token", + "bottom", + 122920, + 122925, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 122926, + 122926, + null + ], + [ + "number-token", + "0", + 122927, + 122927, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122928, + 122928, + null + ], + [ + "ident-token", + "z-index", + 122929, + 122935, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 122936, + 122936, + null + ], + [ + "number-token", + "1", + 122937, + 122937, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 122938, + 122938, + null + ], + [ + "ident-token", + "display", + 122939, + 122945, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 122946, + 122946, + null + ], + [ + "ident-token", + "flex", + 122947, + 122950, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 122951, + 122951, + null + ], + [ + "ident-token", + "align-items", + 122952, + 122962, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 122963, + 122963, + null + ], + [ + "ident-token", + "center", + 122964, + 122969, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 122970, + 122970, + null + ], + [ + "ident-token", + "justify-content", + 122971, + 122985, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 122986, + 122986, + null + ], + [ + "ident-token", + "center", + 122987, + 122992, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 122993, + 122993, + null + ], + [ + "ident-token", + "width", + 122994, + 122998, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 122999, + 122999, + null + ], + [ + "percentage-token", + "15%", + 123000, + 123002, + { + "value": 15 + } + ], + [ + "semicolon-token", + ";", + 123003, + 123003, + null + ], + [ + "ident-token", + "padding", + 123004, + 123010, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 123011, + 123011, + null + ], + [ + "number-token", + "0", + 123012, + 123012, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 123013, + 123013, + null + ], + [ + "ident-token", + "color", + 123014, + 123018, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 123019, + 123019, + null + ], + [ + "hash-token", + "#fff", + 123020, + 123023, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 123024, + 123024, + null + ], + [ + "ident-token", + "text-align", + 123025, + 123034, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 123035, + 123035, + null + ], + [ + "ident-token", + "center", + 123036, + 123041, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 123042, + 123042, + null + ], + [ + "ident-token", + "background", + 123043, + 123052, + { + "value": "background" + } + ], + [ + "colon-token", + ":", + 123053, + 123053, + null + ], + [ + "number-token", + "0", + 123054, + 123054, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 123055, + 123055, + null + ], + [ + "number-token", + "0", + 123056, + 123056, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 123057, + 123057, + null + ], + [ + "ident-token", + "border", + 123058, + 123063, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 123064, + 123064, + null + ], + [ + "number-token", + "0", + 123065, + 123065, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 123066, + 123066, + null + ], + [ + "ident-token", + "opacity", + 123067, + 123073, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 123074, + 123074, + null + ], + [ + "number-token", + ".5", + 123075, + 123076, + { + "value": 0.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 123077, + 123077, + null + ], + [ + "ident-token", + "transition", + 123078, + 123087, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 123088, + 123088, + null + ], + [ + "ident-token", + "opacity", + 123089, + 123095, + { + "value": "opacity" + } + ], + [ + "whitespace-token", + " ", + 123096, + 123096, + null + ], + [ + "dimension-token", + ".15s", + 123097, + 123100, + { + "value": 0.15, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 123101, + 123101, + null + ], + [ + "ident-token", + "ease", + 123102, + 123105, + { + "value": "ease" + } + ], + [ + "}-token", + "}", + 123106, + 123106, + null + ], + [ + "at-keyword-token", + "@media", + 123107, + 123112, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 123113, + 123113, + null + ], + [ + "(-token", + "(", + 123114, + 123114, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 123115, + 123136, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 123137, + 123137, + null + ], + [ + "ident-token", + "reduce", + 123138, + 123143, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 123144, + 123144, + null + ], + [ + "{-token", + "{", + 123145, + 123145, + null + ], + [ + "delim-token", + ".", + 123146, + 123146, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next", + 123147, + 123167, + { + "value": "carousel-control-next" + } + ], + [ + "comma-token", + ",", + 123168, + 123168, + null + ], + [ + "delim-token", + ".", + 123169, + 123169, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev", + 123170, + 123190, + { + "value": "carousel-control-prev" + } + ], + [ + "{-token", + "{", + 123191, + 123191, + null + ], + [ + "ident-token", + "transition", + 123192, + 123201, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 123202, + 123202, + null + ], + [ + "ident-token", + "none", + 123203, + 123206, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 123207, + 123207, + null + ], + [ + "}-token", + "}", + 123208, + 123208, + null + ], + [ + "delim-token", + ".", + 123209, + 123209, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next", + 123210, + 123230, + { + "value": "carousel-control-next" + } + ], + [ + "colon-token", + ":", + 123231, + 123231, + null + ], + [ + "ident-token", + "focus", + 123232, + 123236, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 123237, + 123237, + null + ], + [ + "delim-token", + ".", + 123238, + 123238, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next", + 123239, + 123259, + { + "value": "carousel-control-next" + } + ], + [ + "colon-token", + ":", + 123260, + 123260, + null + ], + [ + "ident-token", + "hover", + 123261, + 123265, + { + "value": "hover" + } + ], + [ + "comma-token", + ",", + 123266, + 123266, + null + ], + [ + "delim-token", + ".", + 123267, + 123267, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev", + 123268, + 123288, + { + "value": "carousel-control-prev" + } + ], + [ + "colon-token", + ":", + 123289, + 123289, + null + ], + [ + "ident-token", + "focus", + 123290, + 123294, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 123295, + 123295, + null + ], + [ + "delim-token", + ".", + 123296, + 123296, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev", + 123297, + 123317, + { + "value": "carousel-control-prev" + } + ], + [ + "colon-token", + ":", + 123318, + 123318, + null + ], + [ + "ident-token", + "hover", + 123319, + 123323, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 123324, + 123324, + null + ], + [ + "ident-token", + "color", + 123325, + 123329, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 123330, + 123330, + null + ], + [ + "hash-token", + "#fff", + 123331, + 123334, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 123335, + 123335, + null + ], + [ + "ident-token", + "text-decoration", + 123336, + 123350, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 123351, + 123351, + null + ], + [ + "ident-token", + "none", + 123352, + 123355, + { + "value": "none" + } + ], + [ + "semicolon-token", + ";", + 123356, + 123356, + null + ], + [ + "ident-token", + "outline", + 123357, + 123363, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 123364, + 123364, + null + ], + [ + "number-token", + "0", + 123365, + 123365, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 123366, + 123366, + null + ], + [ + "ident-token", + "opacity", + 123367, + 123373, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 123374, + 123374, + null + ], + [ + "number-token", + ".9", + 123375, + 123376, + { + "value": 0.9, + "type": "number" + } + ], + [ + "}-token", + "}", + 123377, + 123377, + null + ], + [ + "delim-token", + ".", + 123378, + 123378, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev", + 123379, + 123399, + { + "value": "carousel-control-prev" + } + ], + [ + "{-token", + "{", + 123400, + 123400, + null + ], + [ + "ident-token", + "left", + 123401, + 123404, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 123405, + 123405, + null + ], + [ + "number-token", + "0", + 123406, + 123406, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 123407, + 123407, + null + ], + [ + "delim-token", + ".", + 123408, + 123408, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next", + 123409, + 123429, + { + "value": "carousel-control-next" + } + ], + [ + "{-token", + "{", + 123430, + 123430, + null + ], + [ + "ident-token", + "right", + 123431, + 123435, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 123436, + 123436, + null + ], + [ + "number-token", + "0", + 123437, + 123437, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 123438, + 123438, + null + ], + [ + "delim-token", + ".", + 123439, + 123439, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next-icon", + 123440, + 123465, + { + "value": "carousel-control-next-icon" + } + ], + [ + "comma-token", + ",", + 123466, + 123466, + null + ], + [ + "delim-token", + ".", + 123467, + 123467, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev-icon", + 123468, + 123493, + { + "value": "carousel-control-prev-icon" + } + ], + [ + "{-token", + "{", + 123494, + 123494, + null + ], + [ + "ident-token", + "display", + 123495, + 123501, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 123502, + 123502, + null + ], + [ + "ident-token", + "inline-block", + 123503, + 123514, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 123515, + 123515, + null + ], + [ + "ident-token", + "width", + 123516, + 123520, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 123521, + 123521, + null + ], + [ + "dimension-token", + "2rem", + 123522, + 123525, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 123526, + 123526, + null + ], + [ + "ident-token", + "height", + 123527, + 123532, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 123533, + 123533, + null + ], + [ + "dimension-token", + "2rem", + 123534, + 123537, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 123538, + 123538, + null + ], + [ + "ident-token", + "background-repeat", + 123539, + 123555, + { + "value": "background-repeat" + } + ], + [ + "colon-token", + ":", + 123556, + 123556, + null + ], + [ + "ident-token", + "no-repeat", + 123557, + 123565, + { + "value": "no-repeat" + } + ], + [ + "semicolon-token", + ";", + 123566, + 123566, + null + ], + [ + "ident-token", + "background-position", + 123567, + 123585, + { + "value": "background-position" + } + ], + [ + "colon-token", + ":", + 123586, + 123586, + null + ], + [ + "percentage-token", + "50%", + 123587, + 123589, + { + "value": 50 + } + ], + [ + "semicolon-token", + ";", + 123590, + 123590, + null + ], + [ + "ident-token", + "background-size", + 123591, + 123605, + { + "value": "background-size" + } + ], + [ + "colon-token", + ":", + 123606, + 123606, + null + ], + [ + "percentage-token", + "100%", + 123607, + 123610, + { + "value": 100 + } + ], + [ + "whitespace-token", + " ", + 123611, + 123611, + null + ], + [ + "percentage-token", + "100%", + 123612, + 123615, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 123616, + 123616, + null + ], + [ + "delim-token", + ".", + 123617, + 123617, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev-icon", + 123618, + 123643, + { + "value": "carousel-control-prev-icon" + } + ], + [ + "{-token", + "{", + 123644, + 123644, + null + ], + [ + "ident-token", + "background-image", + 123645, + 123660, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 123661, + 123661, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\")", + 123662, + 123908, + null + ], + [ + "}-token", + "}", + 123909, + 123909, + null + ], + [ + "delim-token", + ".", + 123910, + 123910, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next-icon", + 123911, + 123936, + { + "value": "carousel-control-next-icon" + } + ], + [ + "{-token", + "{", + 123937, + 123937, + null + ], + [ + "ident-token", + "background-image", + 123938, + 123953, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 123954, + 123954, + null + ], + [ + "bad-url-token", + "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + 123955, + 124202, + null + ], + [ + "}-token", + "}", + 124203, + 124203, + null + ], + [ + "delim-token", + ".", + 124204, + 124204, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-indicators", + 124205, + 124223, + { + "value": "carousel-indicators" + } + ], + [ + "{-token", + "{", + 124224, + 124224, + null + ], + [ + "ident-token", + "position", + 124225, + 124232, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 124233, + 124233, + null + ], + [ + "ident-token", + "absolute", + 124234, + 124241, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 124242, + 124242, + null + ], + [ + "ident-token", + "right", + 124243, + 124247, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 124248, + 124248, + null + ], + [ + "number-token", + "0", + 124249, + 124249, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124250, + 124250, + null + ], + [ + "ident-token", + "bottom", + 124251, + 124256, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 124257, + 124257, + null + ], + [ + "number-token", + "0", + 124258, + 124258, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124259, + 124259, + null + ], + [ + "ident-token", + "left", + 124260, + 124263, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 124264, + 124264, + null + ], + [ + "number-token", + "0", + 124265, + 124265, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124266, + 124266, + null + ], + [ + "ident-token", + "z-index", + 124267, + 124273, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 124274, + 124274, + null + ], + [ + "number-token", + "2", + 124275, + 124275, + { + "value": 2, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124276, + 124276, + null + ], + [ + "ident-token", + "display", + 124277, + 124283, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 124284, + 124284, + null + ], + [ + "ident-token", + "flex", + 124285, + 124288, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 124289, + 124289, + null + ], + [ + "ident-token", + "justify-content", + 124290, + 124304, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 124305, + 124305, + null + ], + [ + "ident-token", + "center", + 124306, + 124311, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 124312, + 124312, + null + ], + [ + "ident-token", + "padding", + 124313, + 124319, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 124320, + 124320, + null + ], + [ + "number-token", + "0", + 124321, + 124321, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124322, + 124322, + null + ], + [ + "ident-token", + "margin-right", + 124323, + 124334, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 124335, + 124335, + null + ], + [ + "percentage-token", + "15%", + 124336, + 124338, + { + "value": 15 + } + ], + [ + "semicolon-token", + ";", + 124339, + 124339, + null + ], + [ + "ident-token", + "margin-bottom", + 124340, + 124352, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 124353, + 124353, + null + ], + [ + "dimension-token", + "1rem", + 124354, + 124357, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 124358, + 124358, + null + ], + [ + "ident-token", + "margin-left", + 124359, + 124369, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 124370, + 124370, + null + ], + [ + "percentage-token", + "15%", + 124371, + 124373, + { + "value": 15 + } + ], + [ + "semicolon-token", + ";", + 124374, + 124374, + null + ], + [ + "ident-token", + "list-style", + 124375, + 124384, + { + "value": "list-style" + } + ], + [ + "colon-token", + ":", + 124385, + 124385, + null + ], + [ + "ident-token", + "none", + 124386, + 124389, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 124390, + 124390, + null + ], + [ + "delim-token", + ".", + 124391, + 124391, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-indicators", + 124392, + 124410, + { + "value": "carousel-indicators" + } + ], + [ + "whitespace-token", + " ", + 124411, + 124411, + null + ], + [ + "[-token", + "[", + 124412, + 124412, + null + ], + [ + "ident-token", + "data-bs-target", + 124413, + 124426, + { + "value": "data-bs-target" + } + ], + [ + "]-token", + "]", + 124427, + 124427, + null + ], + [ + "{-token", + "{", + 124428, + 124428, + null + ], + [ + "ident-token", + "box-sizing", + 124429, + 124438, + { + "value": "box-sizing" + } + ], + [ + "colon-token", + ":", + 124439, + 124439, + null + ], + [ + "ident-token", + "content-box", + 124440, + 124450, + { + "value": "content-box" + } + ], + [ + "semicolon-token", + ";", + 124451, + 124451, + null + ], + [ + "ident-token", + "flex", + 124452, + 124455, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 124456, + 124456, + null + ], + [ + "number-token", + "0", + 124457, + 124457, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 124458, + 124458, + null + ], + [ + "number-token", + "1", + 124459, + 124459, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 124460, + 124460, + null + ], + [ + "ident-token", + "auto", + 124461, + 124464, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 124465, + 124465, + null + ], + [ + "ident-token", + "width", + 124466, + 124470, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 124471, + 124471, + null + ], + [ + "dimension-token", + "30px", + 124472, + 124475, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 124476, + 124476, + null + ], + [ + "ident-token", + "height", + 124477, + 124482, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 124483, + 124483, + null + ], + [ + "dimension-token", + "3px", + 124484, + 124486, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 124487, + 124487, + null + ], + [ + "ident-token", + "padding", + 124488, + 124494, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 124495, + 124495, + null + ], + [ + "number-token", + "0", + 124496, + 124496, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124497, + 124497, + null + ], + [ + "ident-token", + "margin-right", + 124498, + 124509, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 124510, + 124510, + null + ], + [ + "dimension-token", + "3px", + 124511, + 124513, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 124514, + 124514, + null + ], + [ + "ident-token", + "margin-left", + 124515, + 124525, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 124526, + 124526, + null + ], + [ + "dimension-token", + "3px", + 124527, + 124529, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 124530, + 124530, + null + ], + [ + "ident-token", + "text-indent", + 124531, + 124541, + { + "value": "text-indent" + } + ], + [ + "colon-token", + ":", + 124542, + 124542, + null + ], + [ + "dimension-token", + "-999px", + 124543, + 124548, + { + "value": -999, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 124549, + 124549, + null + ], + [ + "ident-token", + "cursor", + 124550, + 124555, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 124556, + 124556, + null + ], + [ + "ident-token", + "pointer", + 124557, + 124563, + { + "value": "pointer" + } + ], + [ + "semicolon-token", + ";", + 124564, + 124564, + null + ], + [ + "ident-token", + "background-color", + 124565, + 124580, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 124581, + 124581, + null + ], + [ + "hash-token", + "#fff", + 124582, + 124585, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 124586, + 124586, + null + ], + [ + "ident-token", + "background-clip", + 124587, + 124601, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 124602, + 124602, + null + ], + [ + "ident-token", + "padding-box", + 124603, + 124613, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 124614, + 124614, + null + ], + [ + "ident-token", + "border", + 124615, + 124620, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 124621, + 124621, + null + ], + [ + "number-token", + "0", + 124622, + 124622, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 124623, + 124623, + null + ], + [ + "ident-token", + "border-top", + 124624, + 124633, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 124634, + 124634, + null + ], + [ + "dimension-token", + "10px", + 124635, + 124638, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 124639, + 124639, + null + ], + [ + "ident-token", + "solid", + 124640, + 124644, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 124645, + 124645, + null + ], + [ + "ident-token", + "transparent", + 124646, + 124656, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 124657, + 124657, + null + ], + [ + "ident-token", + "border-bottom", + 124658, + 124670, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 124671, + 124671, + null + ], + [ + "dimension-token", + "10px", + 124672, + 124675, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 124676, + 124676, + null + ], + [ + "ident-token", + "solid", + 124677, + 124681, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 124682, + 124682, + null + ], + [ + "ident-token", + "transparent", + 124683, + 124693, + { + "value": "transparent" + } + ], + [ + "semicolon-token", + ";", + 124694, + 124694, + null + ], + [ + "ident-token", + "opacity", + 124695, + 124701, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 124702, + 124702, + null + ], + [ + "number-token", + ".5", + 124703, + 124704, + { + "value": 0.5, + "type": "number" + } + ], + [ + "semicolon-token", + ";", + 124705, + 124705, + null + ], + [ + "ident-token", + "transition", + 124706, + 124715, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 124716, + 124716, + null + ], + [ + "ident-token", + "opacity", + 124717, + 124723, + { + "value": "opacity" + } + ], + [ + "whitespace-token", + " ", + 124724, + 124724, + null + ], + [ + "dimension-token", + ".6s", + 124725, + 124727, + { + "value": 0.6, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 124728, + 124728, + null + ], + [ + "ident-token", + "ease", + 124729, + 124732, + { + "value": "ease" + } + ], + [ + "}-token", + "}", + 124733, + 124733, + null + ], + [ + "at-keyword-token", + "@media", + 124734, + 124739, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 124740, + 124740, + null + ], + [ + "(-token", + "(", + 124741, + 124741, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 124742, + 124763, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 124764, + 124764, + null + ], + [ + "ident-token", + "reduce", + 124765, + 124770, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 124771, + 124771, + null + ], + [ + "{-token", + "{", + 124772, + 124772, + null + ], + [ + "delim-token", + ".", + 124773, + 124773, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-indicators", + 124774, + 124792, + { + "value": "carousel-indicators" + } + ], + [ + "whitespace-token", + " ", + 124793, + 124793, + null + ], + [ + "[-token", + "[", + 124794, + 124794, + null + ], + [ + "ident-token", + "data-bs-target", + 124795, + 124808, + { + "value": "data-bs-target" + } + ], + [ + "]-token", + "]", + 124809, + 124809, + null + ], + [ + "{-token", + "{", + 124810, + 124810, + null + ], + [ + "ident-token", + "transition", + 124811, + 124820, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 124821, + 124821, + null + ], + [ + "ident-token", + "none", + 124822, + 124825, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 124826, + 124826, + null + ], + [ + "}-token", + "}", + 124827, + 124827, + null + ], + [ + "delim-token", + ".", + 124828, + 124828, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-indicators", + 124829, + 124847, + { + "value": "carousel-indicators" + } + ], + [ + "whitespace-token", + " ", + 124848, + 124848, + null + ], + [ + "delim-token", + ".", + 124849, + 124849, + { + "value": "." + } + ], + [ + "ident-token", + "active", + 124850, + 124855, + { + "value": "active" + } + ], + [ + "{-token", + "{", + 124856, + 124856, + null + ], + [ + "ident-token", + "opacity", + 124857, + 124863, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 124864, + 124864, + null + ], + [ + "number-token", + "1", + 124865, + 124865, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 124866, + 124866, + null + ], + [ + "delim-token", + ".", + 124867, + 124867, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-caption", + 124868, + 124883, + { + "value": "carousel-caption" + } + ], + [ + "{-token", + "{", + 124884, + 124884, + null + ], + [ + "ident-token", + "position", + 124885, + 124892, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 124893, + 124893, + null + ], + [ + "ident-token", + "absolute", + 124894, + 124901, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 124902, + 124902, + null + ], + [ + "ident-token", + "right", + 124903, + 124907, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 124908, + 124908, + null + ], + [ + "percentage-token", + "15%", + 124909, + 124911, + { + "value": 15 + } + ], + [ + "semicolon-token", + ";", + 124912, + 124912, + null + ], + [ + "ident-token", + "bottom", + 124913, + 124918, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 124919, + 124919, + null + ], + [ + "dimension-token", + "1.25rem", + 124920, + 124926, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 124927, + 124927, + null + ], + [ + "ident-token", + "left", + 124928, + 124931, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 124932, + 124932, + null + ], + [ + "percentage-token", + "15%", + 124933, + 124935, + { + "value": 15 + } + ], + [ + "semicolon-token", + ";", + 124936, + 124936, + null + ], + [ + "ident-token", + "padding-top", + 124937, + 124947, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 124948, + 124948, + null + ], + [ + "dimension-token", + "1.25rem", + 124949, + 124955, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 124956, + 124956, + null + ], + [ + "ident-token", + "padding-bottom", + 124957, + 124970, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 124971, + 124971, + null + ], + [ + "dimension-token", + "1.25rem", + 124972, + 124978, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 124979, + 124979, + null + ], + [ + "ident-token", + "color", + 124980, + 124984, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 124985, + 124985, + null + ], + [ + "hash-token", + "#fff", + 124986, + 124989, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 124990, + 124990, + null + ], + [ + "ident-token", + "text-align", + 124991, + 125000, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 125001, + 125001, + null + ], + [ + "ident-token", + "center", + 125002, + 125007, + { + "value": "center" + } + ], + [ + "}-token", + "}", + 125008, + 125008, + null + ], + [ + "delim-token", + ".", + 125009, + 125009, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-dark", + 125010, + 125022, + { + "value": "carousel-dark" + } + ], + [ + "whitespace-token", + " ", + 125023, + 125023, + null + ], + [ + "delim-token", + ".", + 125024, + 125024, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-next-icon", + 125025, + 125050, + { + "value": "carousel-control-next-icon" + } + ], + [ + "comma-token", + ",", + 125051, + 125051, + null + ], + [ + "delim-token", + ".", + 125052, + 125052, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-dark", + 125053, + 125065, + { + "value": "carousel-dark" + } + ], + [ + "whitespace-token", + " ", + 125066, + 125066, + null + ], + [ + "delim-token", + ".", + 125067, + 125067, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-control-prev-icon", + 125068, + 125093, + { + "value": "carousel-control-prev-icon" + } + ], + [ + "{-token", + "{", + 125094, + 125094, + null + ], + [ + "ident-token", + "filter", + 125095, + 125100, + { + "value": "filter" + } + ], + [ + "colon-token", + ":", + 125101, + 125101, + null + ], + [ + "function-token", + "invert(", + 125102, + 125108, + { + "value": "invert" + } + ], + [ + "number-token", + "1", + 125109, + 125109, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 125110, + 125110, + null + ], + [ + "whitespace-token", + " ", + 125111, + 125111, + null + ], + [ + "function-token", + "grayscale(", + 125112, + 125121, + { + "value": "grayscale" + } + ], + [ + "number-token", + "100", + 125122, + 125124, + { + "value": 100, + "type": "integer" + } + ], + [ + ")-token", + ")", + 125125, + 125125, + null + ], + [ + "}-token", + "}", + 125126, + 125126, + null + ], + [ + "delim-token", + ".", + 125127, + 125127, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-dark", + 125128, + 125140, + { + "value": "carousel-dark" + } + ], + [ + "whitespace-token", + " ", + 125141, + 125141, + null + ], + [ + "delim-token", + ".", + 125142, + 125142, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-indicators", + 125143, + 125161, + { + "value": "carousel-indicators" + } + ], + [ + "whitespace-token", + " ", + 125162, + 125162, + null + ], + [ + "[-token", + "[", + 125163, + 125163, + null + ], + [ + "ident-token", + "data-bs-target", + 125164, + 125177, + { + "value": "data-bs-target" + } + ], + [ + "]-token", + "]", + 125178, + 125178, + null + ], + [ + "{-token", + "{", + 125179, + 125179, + null + ], + [ + "ident-token", + "background-color", + 125180, + 125195, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 125196, + 125196, + null + ], + [ + "hash-token", + "#000", + 125197, + 125200, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 125201, + 125201, + null + ], + [ + "delim-token", + ".", + 125202, + 125202, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-dark", + 125203, + 125215, + { + "value": "carousel-dark" + } + ], + [ + "whitespace-token", + " ", + 125216, + 125216, + null + ], + [ + "delim-token", + ".", + 125217, + 125217, + { + "value": "." + } + ], + [ + "ident-token", + "carousel-caption", + 125218, + 125233, + { + "value": "carousel-caption" + } + ], + [ + "{-token", + "{", + 125234, + 125234, + null + ], + [ + "ident-token", + "color", + 125235, + 125239, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 125240, + 125240, + null + ], + [ + "hash-token", + "#000", + 125241, + 125244, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 125245, + 125245, + null + ], + [ + "delim-token", + ".", + 125246, + 125246, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-border", + 125247, + 125260, + { + "value": "spinner-border" + } + ], + [ + "comma-token", + ",", + 125261, + 125261, + null + ], + [ + "delim-token", + ".", + 125262, + 125262, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-grow", + 125263, + 125274, + { + "value": "spinner-grow" + } + ], + [ + "{-token", + "{", + 125275, + 125275, + null + ], + [ + "ident-token", + "display", + 125276, + 125282, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 125283, + 125283, + null + ], + [ + "ident-token", + "inline-block", + 125284, + 125295, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 125296, + 125296, + null + ], + [ + "ident-token", + "width", + 125297, + 125301, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 125302, + 125302, + null + ], + [ + "function-token", + "var(", + 125303, + 125306, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125307, + 125307, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125308, + 125308, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-width", + 125309, + 125324, + { + "value": "bs-spinner-width" + } + ], + [ + ")-token", + ")", + 125325, + 125325, + null + ], + [ + "semicolon-token", + ";", + 125326, + 125326, + null + ], + [ + "ident-token", + "height", + 125327, + 125332, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 125333, + 125333, + null + ], + [ + "function-token", + "var(", + 125334, + 125337, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125338, + 125338, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125339, + 125339, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-height", + 125340, + 125356, + { + "value": "bs-spinner-height" + } + ], + [ + ")-token", + ")", + 125357, + 125357, + null + ], + [ + "semicolon-token", + ";", + 125358, + 125358, + null + ], + [ + "ident-token", + "vertical-align", + 125359, + 125372, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 125373, + 125373, + null + ], + [ + "function-token", + "var(", + 125374, + 125377, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125378, + 125378, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125379, + 125379, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-vertical-align", + 125380, + 125404, + { + "value": "bs-spinner-vertical-align" + } + ], + [ + ")-token", + ")", + 125405, + 125405, + null + ], + [ + "semicolon-token", + ";", + 125406, + 125406, + null + ], + [ + "ident-token", + "border-radius", + 125407, + 125419, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 125420, + 125420, + null + ], + [ + "percentage-token", + "50%", + 125421, + 125423, + { + "value": 50 + } + ], + [ + "semicolon-token", + ";", + 125424, + 125424, + null + ], + [ + "delim-token", + "-", + 125425, + 125425, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-animation", + 125426, + 125441, + { + "value": "webkit-animation" + } + ], + [ + "colon-token", + ":", + 125442, + 125442, + null + ], + [ + "function-token", + "var(", + 125443, + 125446, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125447, + 125447, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125448, + 125448, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-speed", + 125449, + 125474, + { + "value": "bs-spinner-animation-speed" + } + ], + [ + ")-token", + ")", + 125475, + 125475, + null + ], + [ + "whitespace-token", + " ", + 125476, + 125476, + null + ], + [ + "ident-token", + "linear", + 125477, + 125482, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 125483, + 125483, + null + ], + [ + "ident-token", + "infinite", + 125484, + 125491, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 125492, + 125492, + null + ], + [ + "function-token", + "var(", + 125493, + 125496, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125497, + 125497, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125498, + 125498, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-name", + 125499, + 125523, + { + "value": "bs-spinner-animation-name" + } + ], + [ + ")-token", + ")", + 125524, + 125524, + null + ], + [ + "semicolon-token", + ";", + 125525, + 125525, + null + ], + [ + "ident-token", + "animation", + 125526, + 125534, + { + "value": "animation" + } + ], + [ + "colon-token", + ":", + 125535, + 125535, + null + ], + [ + "function-token", + "var(", + 125536, + 125539, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125540, + 125540, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125541, + 125541, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-speed", + 125542, + 125567, + { + "value": "bs-spinner-animation-speed" + } + ], + [ + ")-token", + ")", + 125568, + 125568, + null + ], + [ + "whitespace-token", + " ", + 125569, + 125569, + null + ], + [ + "ident-token", + "linear", + 125570, + 125575, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 125576, + 125576, + null + ], + [ + "ident-token", + "infinite", + 125577, + 125584, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 125585, + 125585, + null + ], + [ + "function-token", + "var(", + 125586, + 125589, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125590, + 125590, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125591, + 125591, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-name", + 125592, + 125616, + { + "value": "bs-spinner-animation-name" + } + ], + [ + ")-token", + ")", + 125617, + 125617, + null + ], + [ + "}-token", + "}", + 125618, + 125618, + null + ], + [ + "at-keyword-token", + "@-webkit-keyframes", + 125619, + 125636, + { + "value": "-webkit-keyframes" + } + ], + [ + "whitespace-token", + " ", + 125637, + 125637, + null + ], + [ + "ident-token", + "spinner-border", + 125638, + 125651, + { + "value": "spinner-border" + } + ], + [ + "{-token", + "{", + 125652, + 125652, + null + ], + [ + "ident-token", + "to", + 125653, + 125654, + { + "value": "to" + } + ], + [ + "{-token", + "{", + 125655, + 125655, + null + ], + [ + "ident-token", + "transform", + 125656, + 125664, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 125665, + 125665, + null + ], + [ + "function-token", + "rotate(", + 125666, + 125672, + { + "value": "rotate" + } + ], + [ + "dimension-token", + "360deg", + 125673, + 125678, + { + "value": 360, + "type": "integer", + "unit": "deg" + } + ], + [ + ")-token", + ")", + 125679, + 125679, + null + ], + [ + "}-token", + "}", + 125680, + 125680, + null + ], + [ + "}-token", + "}", + 125681, + 125681, + null + ], + [ + "at-keyword-token", + "@keyframes", + 125682, + 125691, + { + "value": "keyframes" + } + ], + [ + "whitespace-token", + " ", + 125692, + 125692, + null + ], + [ + "ident-token", + "spinner-border", + 125693, + 125706, + { + "value": "spinner-border" + } + ], + [ + "{-token", + "{", + 125707, + 125707, + null + ], + [ + "ident-token", + "to", + 125708, + 125709, + { + "value": "to" + } + ], + [ + "{-token", + "{", + 125710, + 125710, + null + ], + [ + "ident-token", + "transform", + 125711, + 125719, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 125720, + 125720, + null + ], + [ + "function-token", + "rotate(", + 125721, + 125727, + { + "value": "rotate" + } + ], + [ + "dimension-token", + "360deg", + 125728, + 125733, + { + "value": 360, + "type": "integer", + "unit": "deg" + } + ], + [ + ")-token", + ")", + 125734, + 125734, + null + ], + [ + "}-token", + "}", + 125735, + 125735, + null + ], + [ + "}-token", + "}", + 125736, + 125736, + null + ], + [ + "delim-token", + ".", + 125737, + 125737, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-border", + 125738, + 125751, + { + "value": "spinner-border" + } + ], + [ + "{-token", + "{", + 125752, + 125752, + null + ], + [ + "delim-token", + "-", + 125753, + 125753, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125754, + 125754, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-width", + 125755, + 125770, + { + "value": "bs-spinner-width" + } + ], + [ + "colon-token", + ":", + 125771, + 125771, + null + ], + [ + "dimension-token", + "2rem", + 125772, + 125775, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 125776, + 125776, + null + ], + [ + "delim-token", + "-", + 125777, + 125777, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125778, + 125778, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-height", + 125779, + 125795, + { + "value": "bs-spinner-height" + } + ], + [ + "colon-token", + ":", + 125796, + 125796, + null + ], + [ + "dimension-token", + "2rem", + 125797, + 125800, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 125801, + 125801, + null + ], + [ + "delim-token", + "-", + 125802, + 125802, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125803, + 125803, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-vertical-align", + 125804, + 125828, + { + "value": "bs-spinner-vertical-align" + } + ], + [ + "colon-token", + ":", + 125829, + 125829, + null + ], + [ + "dimension-token", + "-0.125em", + 125830, + 125837, + { + "value": -0.125, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 125838, + 125838, + null + ], + [ + "delim-token", + "-", + 125839, + 125839, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125840, + 125840, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-border-width", + 125841, + 125863, + { + "value": "bs-spinner-border-width" + } + ], + [ + "colon-token", + ":", + 125864, + 125864, + null + ], + [ + "dimension-token", + "0.25em", + 125865, + 125870, + { + "value": 0.25, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 125871, + 125871, + null + ], + [ + "delim-token", + "-", + 125872, + 125872, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125873, + 125873, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-speed", + 125874, + 125899, + { + "value": "bs-spinner-animation-speed" + } + ], + [ + "colon-token", + ":", + 125900, + 125900, + null + ], + [ + "dimension-token", + "0.75s", + 125901, + 125905, + { + "value": 0.75, + "type": "number", + "unit": "s" + } + ], + [ + "semicolon-token", + ";", + 125906, + 125906, + null + ], + [ + "delim-token", + "-", + 125907, + 125907, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125908, + 125908, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-name", + 125909, + 125933, + { + "value": "bs-spinner-animation-name" + } + ], + [ + "colon-token", + ":", + 125934, + 125934, + null + ], + [ + "ident-token", + "spinner-border", + 125935, + 125948, + { + "value": "spinner-border" + } + ], + [ + "semicolon-token", + ";", + 125949, + 125949, + null + ], + [ + "ident-token", + "border", + 125950, + 125955, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 125956, + 125956, + null + ], + [ + "function-token", + "var(", + 125957, + 125960, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 125961, + 125961, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 125962, + 125962, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-border-width", + 125963, + 125985, + { + "value": "bs-spinner-border-width" + } + ], + [ + ")-token", + ")", + 125986, + 125986, + null + ], + [ + "whitespace-token", + " ", + 125987, + 125987, + null + ], + [ + "ident-token", + "solid", + 125988, + 125992, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 125993, + 125993, + null + ], + [ + "ident-token", + "currentcolor", + 125994, + 126005, + { + "value": "currentcolor" + } + ], + [ + "semicolon-token", + ";", + 126006, + 126006, + null + ], + [ + "ident-token", + "border-right-color", + 126007, + 126024, + { + "value": "border-right-color" + } + ], + [ + "colon-token", + ":", + 126025, + 126025, + null + ], + [ + "ident-token", + "transparent", + 126026, + 126036, + { + "value": "transparent" + } + ], + [ + "}-token", + "}", + 126037, + 126037, + null + ], + [ + "delim-token", + ".", + 126038, + 126038, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-border-sm", + 126039, + 126055, + { + "value": "spinner-border-sm" + } + ], + [ + "{-token", + "{", + 126056, + 126056, + null + ], + [ + "delim-token", + "-", + 126057, + 126057, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126058, + 126058, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-width", + 126059, + 126074, + { + "value": "bs-spinner-width" + } + ], + [ + "colon-token", + ":", + 126075, + 126075, + null + ], + [ + "dimension-token", + "1rem", + 126076, + 126079, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126080, + 126080, + null + ], + [ + "delim-token", + "-", + 126081, + 126081, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126082, + 126082, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-height", + 126083, + 126099, + { + "value": "bs-spinner-height" + } + ], + [ + "colon-token", + ":", + 126100, + 126100, + null + ], + [ + "dimension-token", + "1rem", + 126101, + 126104, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126105, + 126105, + null + ], + [ + "delim-token", + "-", + 126106, + 126106, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126107, + 126107, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-border-width", + 126108, + 126130, + { + "value": "bs-spinner-border-width" + } + ], + [ + "colon-token", + ":", + 126131, + 126131, + null + ], + [ + "dimension-token", + "0.2em", + 126132, + 126136, + { + "value": 0.2, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 126137, + 126137, + null + ], + [ + "at-keyword-token", + "@-webkit-keyframes", + 126138, + 126155, + { + "value": "-webkit-keyframes" + } + ], + [ + "whitespace-token", + " ", + 126156, + 126156, + null + ], + [ + "ident-token", + "spinner-grow", + 126157, + 126168, + { + "value": "spinner-grow" + } + ], + [ + "{-token", + "{", + 126169, + 126169, + null + ], + [ + "percentage-token", + "0%", + 126170, + 126171, + { + "value": 0 + } + ], + [ + "{-token", + "{", + 126172, + 126172, + null + ], + [ + "ident-token", + "transform", + 126173, + 126181, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 126182, + 126182, + null + ], + [ + "function-token", + "scale(", + 126183, + 126188, + { + "value": "scale" + } + ], + [ + "number-token", + "0", + 126189, + 126189, + { + "value": 0, + "type": "integer" + } + ], + [ + ")-token", + ")", + 126190, + 126190, + null + ], + [ + "}-token", + "}", + 126191, + 126191, + null + ], + [ + "percentage-token", + "50%", + 126192, + 126194, + { + "value": 50 + } + ], + [ + "{-token", + "{", + 126195, + 126195, + null + ], + [ + "ident-token", + "opacity", + 126196, + 126202, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 126203, + 126203, + null + ], + [ + "number-token", + "1", + 126204, + 126204, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 126205, + 126205, + null + ], + [ + "ident-token", + "transform", + 126206, + 126214, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 126215, + 126215, + null + ], + [ + "ident-token", + "none", + 126216, + 126219, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 126220, + 126220, + null + ], + [ + "}-token", + "}", + 126221, + 126221, + null + ], + [ + "at-keyword-token", + "@keyframes", + 126222, + 126231, + { + "value": "keyframes" + } + ], + [ + "whitespace-token", + " ", + 126232, + 126232, + null + ], + [ + "ident-token", + "spinner-grow", + 126233, + 126244, + { + "value": "spinner-grow" + } + ], + [ + "{-token", + "{", + 126245, + 126245, + null + ], + [ + "percentage-token", + "0%", + 126246, + 126247, + { + "value": 0 + } + ], + [ + "{-token", + "{", + 126248, + 126248, + null + ], + [ + "ident-token", + "transform", + 126249, + 126257, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 126258, + 126258, + null + ], + [ + "function-token", + "scale(", + 126259, + 126264, + { + "value": "scale" + } + ], + [ + "number-token", + "0", + 126265, + 126265, + { + "value": 0, + "type": "integer" + } + ], + [ + ")-token", + ")", + 126266, + 126266, + null + ], + [ + "}-token", + "}", + 126267, + 126267, + null + ], + [ + "percentage-token", + "50%", + 126268, + 126270, + { + "value": 50 + } + ], + [ + "{-token", + "{", + 126271, + 126271, + null + ], + [ + "ident-token", + "opacity", + 126272, + 126278, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 126279, + 126279, + null + ], + [ + "number-token", + "1", + 126280, + 126280, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 126281, + 126281, + null + ], + [ + "ident-token", + "transform", + 126282, + 126290, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 126291, + 126291, + null + ], + [ + "ident-token", + "none", + 126292, + 126295, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 126296, + 126296, + null + ], + [ + "}-token", + "}", + 126297, + 126297, + null + ], + [ + "delim-token", + ".", + 126298, + 126298, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-grow", + 126299, + 126310, + { + "value": "spinner-grow" + } + ], + [ + "{-token", + "{", + 126311, + 126311, + null + ], + [ + "delim-token", + "-", + 126312, + 126312, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126313, + 126313, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-width", + 126314, + 126329, + { + "value": "bs-spinner-width" + } + ], + [ + "colon-token", + ":", + 126330, + 126330, + null + ], + [ + "dimension-token", + "2rem", + 126331, + 126334, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126335, + 126335, + null + ], + [ + "delim-token", + "-", + 126336, + 126336, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126337, + 126337, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-height", + 126338, + 126354, + { + "value": "bs-spinner-height" + } + ], + [ + "colon-token", + ":", + 126355, + 126355, + null + ], + [ + "dimension-token", + "2rem", + 126356, + 126359, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126360, + 126360, + null + ], + [ + "delim-token", + "-", + 126361, + 126361, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126362, + 126362, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-vertical-align", + 126363, + 126387, + { + "value": "bs-spinner-vertical-align" + } + ], + [ + "colon-token", + ":", + 126388, + 126388, + null + ], + [ + "dimension-token", + "-0.125em", + 126389, + 126396, + { + "value": -0.125, + "type": "number", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 126397, + 126397, + null + ], + [ + "delim-token", + "-", + 126398, + 126398, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126399, + 126399, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-speed", + 126400, + 126425, + { + "value": "bs-spinner-animation-speed" + } + ], + [ + "colon-token", + ":", + 126426, + 126426, + null + ], + [ + "dimension-token", + "0.75s", + 126427, + 126431, + { + "value": 0.75, + "type": "number", + "unit": "s" + } + ], + [ + "semicolon-token", + ";", + 126432, + 126432, + null + ], + [ + "delim-token", + "-", + 126433, + 126433, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126434, + 126434, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-name", + 126435, + 126459, + { + "value": "bs-spinner-animation-name" + } + ], + [ + "colon-token", + ":", + 126460, + 126460, + null + ], + [ + "ident-token", + "spinner-grow", + 126461, + 126472, + { + "value": "spinner-grow" + } + ], + [ + "semicolon-token", + ";", + 126473, + 126473, + null + ], + [ + "ident-token", + "background-color", + 126474, + 126489, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 126490, + 126490, + null + ], + [ + "ident-token", + "currentcolor", + 126491, + 126502, + { + "value": "currentcolor" + } + ], + [ + "semicolon-token", + ";", + 126503, + 126503, + null + ], + [ + "ident-token", + "opacity", + 126504, + 126510, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 126511, + 126511, + null + ], + [ + "number-token", + "0", + 126512, + 126512, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 126513, + 126513, + null + ], + [ + "delim-token", + ".", + 126514, + 126514, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-grow-sm", + 126515, + 126529, + { + "value": "spinner-grow-sm" + } + ], + [ + "{-token", + "{", + 126530, + 126530, + null + ], + [ + "delim-token", + "-", + 126531, + 126531, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126532, + 126532, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-width", + 126533, + 126548, + { + "value": "bs-spinner-width" + } + ], + [ + "colon-token", + ":", + 126549, + 126549, + null + ], + [ + "dimension-token", + "1rem", + 126550, + 126553, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126554, + 126554, + null + ], + [ + "delim-token", + "-", + 126555, + 126555, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126556, + 126556, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-height", + 126557, + 126573, + { + "value": "bs-spinner-height" + } + ], + [ + "colon-token", + ":", + 126574, + 126574, + null + ], + [ + "dimension-token", + "1rem", + 126575, + 126578, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "}-token", + "}", + 126579, + 126579, + null + ], + [ + "at-keyword-token", + "@media", + 126580, + 126585, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 126586, + 126586, + null + ], + [ + "(-token", + "(", + 126587, + 126587, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 126588, + 126609, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 126610, + 126610, + null + ], + [ + "ident-token", + "reduce", + 126611, + 126616, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 126617, + 126617, + null + ], + [ + "{-token", + "{", + 126618, + 126618, + null + ], + [ + "delim-token", + ".", + 126619, + 126619, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-border", + 126620, + 126633, + { + "value": "spinner-border" + } + ], + [ + "comma-token", + ",", + 126634, + 126634, + null + ], + [ + "delim-token", + ".", + 126635, + 126635, + { + "value": "." + } + ], + [ + "ident-token", + "spinner-grow", + 126636, + 126647, + { + "value": "spinner-grow" + } + ], + [ + "{-token", + "{", + 126648, + 126648, + null + ], + [ + "delim-token", + "-", + 126649, + 126649, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126650, + 126650, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-spinner-animation-speed", + 126651, + 126676, + { + "value": "bs-spinner-animation-speed" + } + ], + [ + "colon-token", + ":", + 126677, + 126677, + null + ], + [ + "dimension-token", + "1.5s", + 126678, + 126681, + { + "value": 1.5, + "type": "number", + "unit": "s" + } + ], + [ + "}-token", + "}", + 126682, + 126682, + null + ], + [ + "}-token", + "}", + 126683, + 126683, + null + ], + [ + "delim-token", + ".", + 126684, + 126684, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 126685, + 126693, + { + "value": "offcanvas" + } + ], + [ + "comma-token", + ",", + 126694, + 126694, + null + ], + [ + "delim-token", + ".", + 126695, + 126695, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 126696, + 126707, + { + "value": "offcanvas-lg" + } + ], + [ + "comma-token", + ",", + 126708, + 126708, + null + ], + [ + "delim-token", + ".", + 126709, + 126709, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 126710, + 126721, + { + "value": "offcanvas-md" + } + ], + [ + "comma-token", + ",", + 126722, + 126722, + null + ], + [ + "delim-token", + ".", + 126723, + 126723, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 126724, + 126735, + { + "value": "offcanvas-sm" + } + ], + [ + "comma-token", + ",", + 126736, + 126736, + null + ], + [ + "delim-token", + ".", + 126737, + 126737, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 126738, + 126749, + { + "value": "offcanvas-xl" + } + ], + [ + "comma-token", + ",", + 126750, + 126750, + null + ], + [ + "delim-token", + ".", + 126751, + 126751, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 126752, + 126764, + { + "value": "offcanvas-xxl" + } + ], + [ + "{-token", + "{", + 126765, + 126765, + null + ], + [ + "delim-token", + "-", + 126766, + 126766, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126767, + 126767, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 126768, + 126786, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + "colon-token", + ":", + 126787, + 126787, + null + ], + [ + "number-token", + "1045", + 126788, + 126791, + { + "value": 1045, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 126792, + 126792, + null + ], + [ + "delim-token", + "-", + 126793, + 126793, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126794, + 126794, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 126795, + 126812, + { + "value": "bs-offcanvas-width" + } + ], + [ + "colon-token", + ":", + 126813, + 126813, + null + ], + [ + "dimension-token", + "400px", + 126814, + 126818, + { + "value": 400, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 126819, + 126819, + null + ], + [ + "delim-token", + "-", + 126820, + 126820, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126821, + 126821, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 126822, + 126840, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 126841, + 126841, + null + ], + [ + "dimension-token", + "30vh", + 126842, + 126845, + { + "value": 30, + "type": "integer", + "unit": "vh" + } + ], + [ + "semicolon-token", + ";", + 126846, + 126846, + null + ], + [ + "delim-token", + "-", + 126847, + 126847, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126848, + 126848, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-x", + 126849, + 126870, + { + "value": "bs-offcanvas-padding-x" + } + ], + [ + "colon-token", + ":", + 126871, + 126871, + null + ], + [ + "dimension-token", + "1rem", + 126872, + 126875, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126876, + 126876, + null + ], + [ + "delim-token", + "-", + 126877, + 126877, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126878, + 126878, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 126879, + 126900, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + "colon-token", + ":", + 126901, + 126901, + null + ], + [ + "dimension-token", + "1rem", + 126902, + 126905, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "semicolon-token", + ";", + 126906, + 126906, + null + ], + [ + "delim-token", + "-", + 126907, + 126907, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126908, + 126908, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 126909, + 126926, + { + "value": "bs-offcanvas-color" + } + ], + [ + "colon-token", + ":", + 126927, + 126927, + null + ], + [ + "whitespace-token", + " ", + 126928, + 126928, + null + ], + [ + "semicolon-token", + ";", + 126929, + 126929, + null + ], + [ + "delim-token", + "-", + 126930, + 126930, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126931, + 126931, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 126932, + 126946, + { + "value": "bs-offcanvas-bg" + } + ], + [ + "colon-token", + ":", + 126947, + 126947, + null + ], + [ + "hash-token", + "#fff", + 126948, + 126951, + { + "value": "fff", + "type": "id" + } + ], + [ + "semicolon-token", + ";", + 126952, + 126952, + null + ], + [ + "delim-token", + "-", + 126953, + 126953, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126954, + 126954, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 126955, + 126979, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 126980, + 126980, + null + ], + [ + "dimension-token", + "1px", + 126981, + 126983, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 126984, + 126984, + null + ], + [ + "delim-token", + "-", + 126985, + 126985, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 126986, + 126986, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 126987, + 127011, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + "colon-token", + ":", + 127012, + 127012, + null + ], + [ + "function-token", + "var(", + 127013, + 127016, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127017, + 127017, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127018, + 127018, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color-translucent", + 127019, + 127045, + { + "value": "bs-border-color-translucent" + } + ], + [ + ")-token", + ")", + 127046, + 127046, + null + ], + [ + "semicolon-token", + ";", + 127047, + 127047, + null + ], + [ + "delim-token", + "-", + 127048, + 127048, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127049, + 127049, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-box-shadow", + 127050, + 127072, + { + "value": "bs-offcanvas-box-shadow" + } + ], + [ + "colon-token", + ":", + 127073, + 127073, + null + ], + [ + "number-token", + "0", + 127074, + 127074, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 127075, + 127075, + null + ], + [ + "dimension-token", + "0.125rem", + 127076, + 127083, + { + "value": 0.125, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 127084, + 127084, + null + ], + [ + "dimension-token", + "0.25rem", + 127085, + 127091, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 127092, + 127092, + null + ], + [ + "function-token", + "rgba(", + 127093, + 127097, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 127098, + 127098, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 127099, + 127099, + null + ], + [ + "whitespace-token", + " ", + 127100, + 127100, + null + ], + [ + "number-token", + "0", + 127101, + 127101, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 127102, + 127102, + null + ], + [ + "whitespace-token", + " ", + 127103, + 127103, + null + ], + [ + "number-token", + "0", + 127104, + 127104, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 127105, + 127105, + null + ], + [ + "whitespace-token", + " ", + 127106, + 127106, + null + ], + [ + "number-token", + "0.075", + 127107, + 127111, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 127112, + 127112, + null + ], + [ + "}-token", + "}", + 127113, + 127113, + null + ], + [ + "at-keyword-token", + "@media", + 127114, + 127119, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 127120, + 127120, + null + ], + [ + "(-token", + "(", + 127121, + 127121, + null + ], + [ + "ident-token", + "max-width", + 127122, + 127130, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127131, + 127131, + null + ], + [ + "dimension-token", + "575.98px", + 127132, + 127139, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 127140, + 127140, + null + ], + [ + "{-token", + "{", + 127141, + 127141, + null + ], + [ + "delim-token", + ".", + 127142, + 127142, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 127143, + 127154, + { + "value": "offcanvas-sm" + } + ], + [ + "{-token", + "{", + 127155, + 127155, + null + ], + [ + "ident-token", + "position", + 127156, + 127163, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 127164, + 127164, + null + ], + [ + "ident-token", + "fixed", + 127165, + 127169, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 127170, + 127170, + null + ], + [ + "ident-token", + "bottom", + 127171, + 127176, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 127177, + 127177, + null + ], + [ + "number-token", + "0", + 127178, + 127178, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127179, + 127179, + null + ], + [ + "ident-token", + "z-index", + 127180, + 127186, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 127187, + 127187, + null + ], + [ + "function-token", + "var(", + 127188, + 127191, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127192, + 127192, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127193, + 127193, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 127194, + 127212, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 127213, + 127213, + null + ], + [ + "semicolon-token", + ";", + 127214, + 127214, + null + ], + [ + "ident-token", + "display", + 127215, + 127221, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 127222, + 127222, + null + ], + [ + "ident-token", + "flex", + 127223, + 127226, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 127227, + 127227, + null + ], + [ + "ident-token", + "flex-direction", + 127228, + 127241, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 127242, + 127242, + null + ], + [ + "ident-token", + "column", + 127243, + 127248, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 127249, + 127249, + null + ], + [ + "ident-token", + "max-width", + 127250, + 127258, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127259, + 127259, + null + ], + [ + "percentage-token", + "100%", + 127260, + 127263, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 127264, + 127264, + null + ], + [ + "ident-token", + "color", + 127265, + 127269, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 127270, + 127270, + null + ], + [ + "function-token", + "var(", + 127271, + 127274, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127275, + 127275, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127276, + 127276, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 127277, + 127294, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 127295, + 127295, + null + ], + [ + "semicolon-token", + ";", + 127296, + 127296, + null + ], + [ + "ident-token", + "visibility", + 127297, + 127306, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 127307, + 127307, + null + ], + [ + "ident-token", + "hidden", + 127308, + 127313, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 127314, + 127314, + null + ], + [ + "ident-token", + "background-color", + 127315, + 127330, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 127331, + 127331, + null + ], + [ + "function-token", + "var(", + 127332, + 127335, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127336, + 127336, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127337, + 127337, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 127338, + 127352, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 127353, + 127353, + null + ], + [ + "semicolon-token", + ";", + 127354, + 127354, + null + ], + [ + "ident-token", + "background-clip", + 127355, + 127369, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 127370, + 127370, + null + ], + [ + "ident-token", + "padding-box", + 127371, + 127381, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 127382, + 127382, + null + ], + [ + "ident-token", + "outline", + 127383, + 127389, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 127390, + 127390, + null + ], + [ + "number-token", + "0", + 127391, + 127391, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127392, + 127392, + null + ], + [ + "ident-token", + "transition", + 127393, + 127402, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 127403, + 127403, + null + ], + [ + "ident-token", + "transform", + 127404, + 127412, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 127413, + 127413, + null + ], + [ + "dimension-token", + ".3s", + 127414, + 127416, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 127417, + 127417, + null + ], + [ + "ident-token", + "ease-in-out", + 127418, + 127428, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 127429, + 127429, + null + ], + [ + "}-token", + "}", + 127430, + 127430, + null + ], + [ + "at-keyword-token", + "@media", + 127431, + 127436, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 127437, + 127437, + null + ], + [ + "(-token", + "(", + 127438, + 127438, + null + ], + [ + "ident-token", + "max-width", + 127439, + 127447, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127448, + 127448, + null + ], + [ + "dimension-token", + "575.98px", + 127449, + 127456, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 127457, + 127457, + null + ], + [ + "whitespace-token", + " ", + 127458, + 127458, + null + ], + [ + "ident-token", + "and", + 127459, + 127461, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 127462, + 127462, + null + ], + [ + "(-token", + "(", + 127463, + 127463, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 127464, + 127485, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 127486, + 127486, + null + ], + [ + "ident-token", + "reduce", + 127487, + 127492, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 127493, + 127493, + null + ], + [ + "{-token", + "{", + 127494, + 127494, + null + ], + [ + "delim-token", + ".", + 127495, + 127495, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 127496, + 127507, + { + "value": "offcanvas-sm" + } + ], + [ + "{-token", + "{", + 127508, + 127508, + null + ], + [ + "ident-token", + "transition", + 127509, + 127518, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 127519, + 127519, + null + ], + [ + "ident-token", + "none", + 127520, + 127523, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 127524, + 127524, + null + ], + [ + "}-token", + "}", + 127525, + 127525, + null + ], + [ + "at-keyword-token", + "@media", + 127526, + 127531, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 127532, + 127532, + null + ], + [ + "(-token", + "(", + 127533, + 127533, + null + ], + [ + "ident-token", + "max-width", + 127534, + 127542, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127543, + 127543, + null + ], + [ + "dimension-token", + "575.98px", + 127544, + 127551, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 127552, + 127552, + null + ], + [ + "{-token", + "{", + 127553, + 127553, + null + ], + [ + "delim-token", + ".", + 127554, + 127554, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 127555, + 127566, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 127567, + 127567, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 127568, + 127582, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 127583, + 127583, + null + ], + [ + "ident-token", + "top", + 127584, + 127586, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 127587, + 127587, + null + ], + [ + "number-token", + "0", + 127588, + 127588, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127589, + 127589, + null + ], + [ + "ident-token", + "left", + 127590, + 127593, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 127594, + 127594, + null + ], + [ + "number-token", + "0", + 127595, + 127595, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127596, + 127596, + null + ], + [ + "ident-token", + "width", + 127597, + 127601, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 127602, + 127602, + null + ], + [ + "function-token", + "var(", + 127603, + 127606, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127607, + 127607, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127608, + 127608, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 127609, + 127626, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 127627, + 127627, + null + ], + [ + "semicolon-token", + ";", + 127628, + 127628, + null + ], + [ + "ident-token", + "border-right", + 127629, + 127640, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 127641, + 127641, + null + ], + [ + "function-token", + "var(", + 127642, + 127645, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127646, + 127646, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127647, + 127647, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 127648, + 127672, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 127673, + 127673, + null + ], + [ + "whitespace-token", + " ", + 127674, + 127674, + null + ], + [ + "ident-token", + "solid", + 127675, + 127679, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 127680, + 127680, + null + ], + [ + "function-token", + "var(", + 127681, + 127684, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127685, + 127685, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127686, + 127686, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 127687, + 127711, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 127712, + 127712, + null + ], + [ + "semicolon-token", + ";", + 127713, + 127713, + null + ], + [ + "ident-token", + "transform", + 127714, + 127722, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 127723, + 127723, + null + ], + [ + "function-token", + "translateX(", + 127724, + 127734, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 127735, + 127739, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 127740, + 127740, + null + ], + [ + "}-token", + "}", + 127741, + 127741, + null + ], + [ + "}-token", + "}", + 127742, + 127742, + null + ], + [ + "at-keyword-token", + "@media", + 127743, + 127748, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 127749, + 127749, + null + ], + [ + "(-token", + "(", + 127750, + 127750, + null + ], + [ + "ident-token", + "max-width", + 127751, + 127759, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127760, + 127760, + null + ], + [ + "dimension-token", + "575.98px", + 127761, + 127768, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 127769, + 127769, + null + ], + [ + "{-token", + "{", + 127770, + 127770, + null + ], + [ + "delim-token", + ".", + 127771, + 127771, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 127772, + 127783, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 127784, + 127784, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 127785, + 127797, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 127798, + 127798, + null + ], + [ + "ident-token", + "top", + 127799, + 127801, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 127802, + 127802, + null + ], + [ + "number-token", + "0", + 127803, + 127803, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127804, + 127804, + null + ], + [ + "ident-token", + "right", + 127805, + 127809, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 127810, + 127810, + null + ], + [ + "number-token", + "0", + 127811, + 127811, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 127812, + 127812, + null + ], + [ + "ident-token", + "width", + 127813, + 127817, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 127818, + 127818, + null + ], + [ + "function-token", + "var(", + 127819, + 127822, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127823, + 127823, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127824, + 127824, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 127825, + 127842, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 127843, + 127843, + null + ], + [ + "semicolon-token", + ";", + 127844, + 127844, + null + ], + [ + "ident-token", + "border-left", + 127845, + 127855, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 127856, + 127856, + null + ], + [ + "function-token", + "var(", + 127857, + 127860, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127861, + 127861, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127862, + 127862, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 127863, + 127887, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 127888, + 127888, + null + ], + [ + "whitespace-token", + " ", + 127889, + 127889, + null + ], + [ + "ident-token", + "solid", + 127890, + 127894, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 127895, + 127895, + null + ], + [ + "function-token", + "var(", + 127896, + 127899, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 127900, + 127900, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 127901, + 127901, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 127902, + 127926, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 127927, + 127927, + null + ], + [ + "semicolon-token", + ";", + 127928, + 127928, + null + ], + [ + "ident-token", + "transform", + 127929, + 127937, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 127938, + 127938, + null + ], + [ + "function-token", + "translateX(", + 127939, + 127949, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 127950, + 127953, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 127954, + 127954, + null + ], + [ + "}-token", + "}", + 127955, + 127955, + null + ], + [ + "}-token", + "}", + 127956, + 127956, + null + ], + [ + "at-keyword-token", + "@media", + 127957, + 127962, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 127963, + 127963, + null + ], + [ + "(-token", + "(", + 127964, + 127964, + null + ], + [ + "ident-token", + "max-width", + 127965, + 127973, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 127974, + 127974, + null + ], + [ + "dimension-token", + "575.98px", + 127975, + 127982, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 127983, + 127983, + null + ], + [ + "{-token", + "{", + 127984, + 127984, + null + ], + [ + "delim-token", + ".", + 127985, + 127985, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 127986, + 127997, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 127998, + 127998, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 127999, + 128011, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 128012, + 128012, + null + ], + [ + "ident-token", + "top", + 128013, + 128015, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 128016, + 128016, + null + ], + [ + "number-token", + "0", + 128017, + 128017, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128018, + 128018, + null + ], + [ + "ident-token", + "right", + 128019, + 128023, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 128024, + 128024, + null + ], + [ + "number-token", + "0", + 128025, + 128025, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128026, + 128026, + null + ], + [ + "ident-token", + "left", + 128027, + 128030, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 128031, + 128031, + null + ], + [ + "number-token", + "0", + 128032, + 128032, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128033, + 128033, + null + ], + [ + "ident-token", + "height", + 128034, + 128039, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 128040, + 128040, + null + ], + [ + "function-token", + "var(", + 128041, + 128044, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128045, + 128045, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128046, + 128046, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 128047, + 128065, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 128066, + 128066, + null + ], + [ + "semicolon-token", + ";", + 128067, + 128067, + null + ], + [ + "ident-token", + "max-height", + 128068, + 128077, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 128078, + 128078, + null + ], + [ + "percentage-token", + "100%", + 128079, + 128082, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 128083, + 128083, + null + ], + [ + "ident-token", + "border-bottom", + 128084, + 128096, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 128097, + 128097, + null + ], + [ + "function-token", + "var(", + 128098, + 128101, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128102, + 128102, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128103, + 128103, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 128104, + 128128, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 128129, + 128129, + null + ], + [ + "whitespace-token", + " ", + 128130, + 128130, + null + ], + [ + "ident-token", + "solid", + 128131, + 128135, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 128136, + 128136, + null + ], + [ + "function-token", + "var(", + 128137, + 128140, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128141, + 128141, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128142, + 128142, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 128143, + 128167, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 128168, + 128168, + null + ], + [ + "semicolon-token", + ";", + 128169, + 128169, + null + ], + [ + "ident-token", + "transform", + 128170, + 128178, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 128179, + 128179, + null + ], + [ + "function-token", + "translateY(", + 128180, + 128190, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 128191, + 128195, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 128196, + 128196, + null + ], + [ + "}-token", + "}", + 128197, + 128197, + null + ], + [ + "}-token", + "}", + 128198, + 128198, + null + ], + [ + "at-keyword-token", + "@media", + 128199, + 128204, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 128205, + 128205, + null + ], + [ + "(-token", + "(", + 128206, + 128206, + null + ], + [ + "ident-token", + "max-width", + 128207, + 128215, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 128216, + 128216, + null + ], + [ + "dimension-token", + "575.98px", + 128217, + 128224, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 128225, + 128225, + null + ], + [ + "{-token", + "{", + 128226, + 128226, + null + ], + [ + "delim-token", + ".", + 128227, + 128227, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128228, + 128239, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128240, + 128240, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 128241, + 128256, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 128257, + 128257, + null + ], + [ + "ident-token", + "right", + 128258, + 128262, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 128263, + 128263, + null + ], + [ + "number-token", + "0", + 128264, + 128264, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128265, + 128265, + null + ], + [ + "ident-token", + "left", + 128266, + 128269, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 128270, + 128270, + null + ], + [ + "number-token", + "0", + 128271, + 128271, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128272, + 128272, + null + ], + [ + "ident-token", + "height", + 128273, + 128278, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 128279, + 128279, + null + ], + [ + "function-token", + "var(", + 128280, + 128283, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128284, + 128284, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128285, + 128285, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 128286, + 128304, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 128305, + 128305, + null + ], + [ + "semicolon-token", + ";", + 128306, + 128306, + null + ], + [ + "ident-token", + "max-height", + 128307, + 128316, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 128317, + 128317, + null + ], + [ + "percentage-token", + "100%", + 128318, + 128321, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 128322, + 128322, + null + ], + [ + "ident-token", + "border-top", + 128323, + 128332, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 128333, + 128333, + null + ], + [ + "function-token", + "var(", + 128334, + 128337, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128338, + 128338, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128339, + 128339, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 128340, + 128364, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 128365, + 128365, + null + ], + [ + "whitespace-token", + " ", + 128366, + 128366, + null + ], + [ + "ident-token", + "solid", + 128367, + 128371, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 128372, + 128372, + null + ], + [ + "function-token", + "var(", + 128373, + 128376, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 128377, + 128377, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128378, + 128378, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 128379, + 128403, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 128404, + 128404, + null + ], + [ + "semicolon-token", + ";", + 128405, + 128405, + null + ], + [ + "ident-token", + "transform", + 128406, + 128414, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 128415, + 128415, + null + ], + [ + "function-token", + "translateY(", + 128416, + 128426, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 128427, + 128430, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 128431, + 128431, + null + ], + [ + "}-token", + "}", + 128432, + 128432, + null + ], + [ + "}-token", + "}", + 128433, + 128433, + null + ], + [ + "at-keyword-token", + "@media", + 128434, + 128439, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 128440, + 128440, + null + ], + [ + "(-token", + "(", + 128441, + 128441, + null + ], + [ + "ident-token", + "max-width", + 128442, + 128450, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 128451, + 128451, + null + ], + [ + "dimension-token", + "575.98px", + 128452, + 128459, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 128460, + 128460, + null + ], + [ + "{-token", + "{", + 128461, + 128461, + null + ], + [ + "delim-token", + ".", + 128462, + 128462, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128463, + 128474, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128475, + 128475, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 128476, + 128479, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 128480, + 128480, + null + ], + [ + "function-token", + "not(", + 128481, + 128484, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 128485, + 128485, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 128486, + 128491, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 128492, + 128492, + null + ], + [ + "comma-token", + ",", + 128493, + 128493, + null + ], + [ + "delim-token", + ".", + 128494, + 128494, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128495, + 128506, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128507, + 128507, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 128508, + 128514, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 128515, + 128515, + null + ], + [ + "ident-token", + "transform", + 128516, + 128524, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 128525, + 128525, + null + ], + [ + "ident-token", + "none", + 128526, + 128529, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 128530, + 128530, + null + ], + [ + "}-token", + "}", + 128531, + 128531, + null + ], + [ + "at-keyword-token", + "@media", + 128532, + 128537, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 128538, + 128538, + null + ], + [ + "(-token", + "(", + 128539, + 128539, + null + ], + [ + "ident-token", + "max-width", + 128540, + 128548, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 128549, + 128549, + null + ], + [ + "dimension-token", + "575.98px", + 128550, + 128557, + { + "value": 575.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 128558, + 128558, + null + ], + [ + "{-token", + "{", + 128559, + 128559, + null + ], + [ + "delim-token", + ".", + 128560, + 128560, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128561, + 128572, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128573, + 128573, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 128574, + 128579, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 128580, + 128580, + null + ], + [ + "delim-token", + ".", + 128581, + 128581, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128582, + 128593, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128594, + 128594, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 128595, + 128598, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 128599, + 128599, + null + ], + [ + "delim-token", + ".", + 128600, + 128600, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128601, + 128612, + { + "value": "offcanvas-sm" + } + ], + [ + "delim-token", + ".", + 128613, + 128613, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 128614, + 128620, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 128621, + 128621, + null + ], + [ + "ident-token", + "visibility", + 128622, + 128631, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 128632, + 128632, + null + ], + [ + "ident-token", + "visible", + 128633, + 128639, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 128640, + 128640, + null + ], + [ + "}-token", + "}", + 128641, + 128641, + null + ], + [ + "at-keyword-token", + "@media", + 128642, + 128647, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 128648, + 128648, + null + ], + [ + "(-token", + "(", + 128649, + 128649, + null + ], + [ + "ident-token", + "min-width", + 128650, + 128658, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 128659, + 128659, + null + ], + [ + "dimension-token", + "576px", + 128660, + 128664, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 128665, + 128665, + null + ], + [ + "{-token", + "{", + 128666, + 128666, + null + ], + [ + "delim-token", + ".", + 128667, + 128667, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128668, + 128679, + { + "value": "offcanvas-sm" + } + ], + [ + "{-token", + "{", + 128680, + 128680, + null + ], + [ + "delim-token", + "-", + 128681, + 128681, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128682, + 128682, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 128683, + 128701, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 128702, + 128702, + null + ], + [ + "ident-token", + "auto", + 128703, + 128706, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 128707, + 128707, + null + ], + [ + "delim-token", + "-", + 128708, + 128708, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 128709, + 128709, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 128710, + 128734, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 128735, + 128735, + null + ], + [ + "number-token", + "0", + 128736, + 128736, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128737, + 128737, + null + ], + [ + "ident-token", + "background-color", + 128738, + 128753, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 128754, + 128754, + null + ], + [ + "ident-token", + "transparent", + 128755, + 128765, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 128766, + 128766, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 128767, + 128775, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 128776, + 128776, + null + ], + [ + "delim-token", + ".", + 128777, + 128777, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128778, + 128789, + { + "value": "offcanvas-sm" + } + ], + [ + "whitespace-token", + " ", + 128790, + 128790, + null + ], + [ + "delim-token", + ".", + 128791, + 128791, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 128792, + 128807, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 128808, + 128808, + null + ], + [ + "ident-token", + "display", + 128809, + 128815, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 128816, + 128816, + null + ], + [ + "ident-token", + "none", + 128817, + 128820, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 128821, + 128821, + null + ], + [ + "delim-token", + ".", + 128822, + 128822, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-sm", + 128823, + 128834, + { + "value": "offcanvas-sm" + } + ], + [ + "whitespace-token", + " ", + 128835, + 128835, + null + ], + [ + "delim-token", + ".", + 128836, + 128836, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 128837, + 128850, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 128851, + 128851, + null + ], + [ + "ident-token", + "display", + 128852, + 128858, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 128859, + 128859, + null + ], + [ + "ident-token", + "flex", + 128860, + 128863, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 128864, + 128864, + null + ], + [ + "ident-token", + "flex-grow", + 128865, + 128873, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 128874, + 128874, + null + ], + [ + "number-token", + "0", + 128875, + 128875, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128876, + 128876, + null + ], + [ + "ident-token", + "padding", + 128877, + 128883, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 128884, + 128884, + null + ], + [ + "number-token", + "0", + 128885, + 128885, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 128886, + 128886, + null + ], + [ + "ident-token", + "overflow-y", + 128887, + 128896, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 128897, + 128897, + null + ], + [ + "ident-token", + "visible", + 128898, + 128904, + { + "value": "visible" + } + ], + [ + "semicolon-token", + ";", + 128905, + 128905, + null + ], + [ + "ident-token", + "background-color", + 128906, + 128921, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 128922, + 128922, + null + ], + [ + "ident-token", + "transparent", + 128923, + 128933, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 128934, + 128934, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 128935, + 128943, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 128944, + 128944, + null + ], + [ + "}-token", + "}", + 128945, + 128945, + null + ], + [ + "at-keyword-token", + "@media", + 128946, + 128951, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 128952, + 128952, + null + ], + [ + "(-token", + "(", + 128953, + 128953, + null + ], + [ + "ident-token", + "max-width", + 128954, + 128962, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 128963, + 128963, + null + ], + [ + "dimension-token", + "767.98px", + 128964, + 128971, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 128972, + 128972, + null + ], + [ + "{-token", + "{", + 128973, + 128973, + null + ], + [ + "delim-token", + ".", + 128974, + 128974, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 128975, + 128986, + { + "value": "offcanvas-md" + } + ], + [ + "{-token", + "{", + 128987, + 128987, + null + ], + [ + "ident-token", + "position", + 128988, + 128995, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 128996, + 128996, + null + ], + [ + "ident-token", + "fixed", + 128997, + 129001, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 129002, + 129002, + null + ], + [ + "ident-token", + "bottom", + 129003, + 129008, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 129009, + 129009, + null + ], + [ + "number-token", + "0", + 129010, + 129010, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129011, + 129011, + null + ], + [ + "ident-token", + "z-index", + 129012, + 129018, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 129019, + 129019, + null + ], + [ + "function-token", + "var(", + 129020, + 129023, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129024, + 129024, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129025, + 129025, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 129026, + 129044, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 129045, + 129045, + null + ], + [ + "semicolon-token", + ";", + 129046, + 129046, + null + ], + [ + "ident-token", + "display", + 129047, + 129053, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 129054, + 129054, + null + ], + [ + "ident-token", + "flex", + 129055, + 129058, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 129059, + 129059, + null + ], + [ + "ident-token", + "flex-direction", + 129060, + 129073, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 129074, + 129074, + null + ], + [ + "ident-token", + "column", + 129075, + 129080, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 129081, + 129081, + null + ], + [ + "ident-token", + "max-width", + 129082, + 129090, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 129091, + 129091, + null + ], + [ + "percentage-token", + "100%", + 129092, + 129095, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 129096, + 129096, + null + ], + [ + "ident-token", + "color", + 129097, + 129101, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 129102, + 129102, + null + ], + [ + "function-token", + "var(", + 129103, + 129106, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129107, + 129107, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129108, + 129108, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 129109, + 129126, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 129127, + 129127, + null + ], + [ + "semicolon-token", + ";", + 129128, + 129128, + null + ], + [ + "ident-token", + "visibility", + 129129, + 129138, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 129139, + 129139, + null + ], + [ + "ident-token", + "hidden", + 129140, + 129145, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 129146, + 129146, + null + ], + [ + "ident-token", + "background-color", + 129147, + 129162, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 129163, + 129163, + null + ], + [ + "function-token", + "var(", + 129164, + 129167, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129168, + 129168, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129169, + 129169, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 129170, + 129184, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 129185, + 129185, + null + ], + [ + "semicolon-token", + ";", + 129186, + 129186, + null + ], + [ + "ident-token", + "background-clip", + 129187, + 129201, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 129202, + 129202, + null + ], + [ + "ident-token", + "padding-box", + 129203, + 129213, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 129214, + 129214, + null + ], + [ + "ident-token", + "outline", + 129215, + 129221, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 129222, + 129222, + null + ], + [ + "number-token", + "0", + 129223, + 129223, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129224, + 129224, + null + ], + [ + "ident-token", + "transition", + 129225, + 129234, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 129235, + 129235, + null + ], + [ + "ident-token", + "transform", + 129236, + 129244, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 129245, + 129245, + null + ], + [ + "dimension-token", + ".3s", + 129246, + 129248, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 129249, + 129249, + null + ], + [ + "ident-token", + "ease-in-out", + 129250, + 129260, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 129261, + 129261, + null + ], + [ + "}-token", + "}", + 129262, + 129262, + null + ], + [ + "at-keyword-token", + "@media", + 129263, + 129268, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 129269, + 129269, + null + ], + [ + "(-token", + "(", + 129270, + 129270, + null + ], + [ + "ident-token", + "max-width", + 129271, + 129279, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 129280, + 129280, + null + ], + [ + "dimension-token", + "767.98px", + 129281, + 129288, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 129289, + 129289, + null + ], + [ + "whitespace-token", + " ", + 129290, + 129290, + null + ], + [ + "ident-token", + "and", + 129291, + 129293, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 129294, + 129294, + null + ], + [ + "(-token", + "(", + 129295, + 129295, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 129296, + 129317, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 129318, + 129318, + null + ], + [ + "ident-token", + "reduce", + 129319, + 129324, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 129325, + 129325, + null + ], + [ + "{-token", + "{", + 129326, + 129326, + null + ], + [ + "delim-token", + ".", + 129327, + 129327, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 129328, + 129339, + { + "value": "offcanvas-md" + } + ], + [ + "{-token", + "{", + 129340, + 129340, + null + ], + [ + "ident-token", + "transition", + 129341, + 129350, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 129351, + 129351, + null + ], + [ + "ident-token", + "none", + 129352, + 129355, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 129356, + 129356, + null + ], + [ + "}-token", + "}", + 129357, + 129357, + null + ], + [ + "at-keyword-token", + "@media", + 129358, + 129363, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 129364, + 129364, + null + ], + [ + "(-token", + "(", + 129365, + 129365, + null + ], + [ + "ident-token", + "max-width", + 129366, + 129374, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 129375, + 129375, + null + ], + [ + "dimension-token", + "767.98px", + 129376, + 129383, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 129384, + 129384, + null + ], + [ + "{-token", + "{", + 129385, + 129385, + null + ], + [ + "delim-token", + ".", + 129386, + 129386, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 129387, + 129398, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 129399, + 129399, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 129400, + 129414, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 129415, + 129415, + null + ], + [ + "ident-token", + "top", + 129416, + 129418, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 129419, + 129419, + null + ], + [ + "number-token", + "0", + 129420, + 129420, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129421, + 129421, + null + ], + [ + "ident-token", + "left", + 129422, + 129425, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 129426, + 129426, + null + ], + [ + "number-token", + "0", + 129427, + 129427, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129428, + 129428, + null + ], + [ + "ident-token", + "width", + 129429, + 129433, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 129434, + 129434, + null + ], + [ + "function-token", + "var(", + 129435, + 129438, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129439, + 129439, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129440, + 129440, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 129441, + 129458, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 129459, + 129459, + null + ], + [ + "semicolon-token", + ";", + 129460, + 129460, + null + ], + [ + "ident-token", + "border-right", + 129461, + 129472, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 129473, + 129473, + null + ], + [ + "function-token", + "var(", + 129474, + 129477, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129478, + 129478, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129479, + 129479, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 129480, + 129504, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 129505, + 129505, + null + ], + [ + "whitespace-token", + " ", + 129506, + 129506, + null + ], + [ + "ident-token", + "solid", + 129507, + 129511, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 129512, + 129512, + null + ], + [ + "function-token", + "var(", + 129513, + 129516, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129517, + 129517, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129518, + 129518, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 129519, + 129543, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 129544, + 129544, + null + ], + [ + "semicolon-token", + ";", + 129545, + 129545, + null + ], + [ + "ident-token", + "transform", + 129546, + 129554, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 129555, + 129555, + null + ], + [ + "function-token", + "translateX(", + 129556, + 129566, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 129567, + 129571, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 129572, + 129572, + null + ], + [ + "}-token", + "}", + 129573, + 129573, + null + ], + [ + "}-token", + "}", + 129574, + 129574, + null + ], + [ + "at-keyword-token", + "@media", + 129575, + 129580, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 129581, + 129581, + null + ], + [ + "(-token", + "(", + 129582, + 129582, + null + ], + [ + "ident-token", + "max-width", + 129583, + 129591, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 129592, + 129592, + null + ], + [ + "dimension-token", + "767.98px", + 129593, + 129600, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 129601, + 129601, + null + ], + [ + "{-token", + "{", + 129602, + 129602, + null + ], + [ + "delim-token", + ".", + 129603, + 129603, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 129604, + 129615, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 129616, + 129616, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 129617, + 129629, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 129630, + 129630, + null + ], + [ + "ident-token", + "top", + 129631, + 129633, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 129634, + 129634, + null + ], + [ + "number-token", + "0", + 129635, + 129635, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129636, + 129636, + null + ], + [ + "ident-token", + "right", + 129637, + 129641, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 129642, + 129642, + null + ], + [ + "number-token", + "0", + 129643, + 129643, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129644, + 129644, + null + ], + [ + "ident-token", + "width", + 129645, + 129649, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 129650, + 129650, + null + ], + [ + "function-token", + "var(", + 129651, + 129654, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129655, + 129655, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129656, + 129656, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 129657, + 129674, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 129675, + 129675, + null + ], + [ + "semicolon-token", + ";", + 129676, + 129676, + null + ], + [ + "ident-token", + "border-left", + 129677, + 129687, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 129688, + 129688, + null + ], + [ + "function-token", + "var(", + 129689, + 129692, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129693, + 129693, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129694, + 129694, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 129695, + 129719, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 129720, + 129720, + null + ], + [ + "whitespace-token", + " ", + 129721, + 129721, + null + ], + [ + "ident-token", + "solid", + 129722, + 129726, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 129727, + 129727, + null + ], + [ + "function-token", + "var(", + 129728, + 129731, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129732, + 129732, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129733, + 129733, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 129734, + 129758, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 129759, + 129759, + null + ], + [ + "semicolon-token", + ";", + 129760, + 129760, + null + ], + [ + "ident-token", + "transform", + 129761, + 129769, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 129770, + 129770, + null + ], + [ + "function-token", + "translateX(", + 129771, + 129781, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 129782, + 129785, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 129786, + 129786, + null + ], + [ + "}-token", + "}", + 129787, + 129787, + null + ], + [ + "}-token", + "}", + 129788, + 129788, + null + ], + [ + "at-keyword-token", + "@media", + 129789, + 129794, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 129795, + 129795, + null + ], + [ + "(-token", + "(", + 129796, + 129796, + null + ], + [ + "ident-token", + "max-width", + 129797, + 129805, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 129806, + 129806, + null + ], + [ + "dimension-token", + "767.98px", + 129807, + 129814, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 129815, + 129815, + null + ], + [ + "{-token", + "{", + 129816, + 129816, + null + ], + [ + "delim-token", + ".", + 129817, + 129817, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 129818, + 129829, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 129830, + 129830, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 129831, + 129843, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 129844, + 129844, + null + ], + [ + "ident-token", + "top", + 129845, + 129847, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 129848, + 129848, + null + ], + [ + "number-token", + "0", + 129849, + 129849, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129850, + 129850, + null + ], + [ + "ident-token", + "right", + 129851, + 129855, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 129856, + 129856, + null + ], + [ + "number-token", + "0", + 129857, + 129857, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129858, + 129858, + null + ], + [ + "ident-token", + "left", + 129859, + 129862, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 129863, + 129863, + null + ], + [ + "number-token", + "0", + 129864, + 129864, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 129865, + 129865, + null + ], + [ + "ident-token", + "height", + 129866, + 129871, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 129872, + 129872, + null + ], + [ + "function-token", + "var(", + 129873, + 129876, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129877, + 129877, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129878, + 129878, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 129879, + 129897, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 129898, + 129898, + null + ], + [ + "semicolon-token", + ";", + 129899, + 129899, + null + ], + [ + "ident-token", + "max-height", + 129900, + 129909, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 129910, + 129910, + null + ], + [ + "percentage-token", + "100%", + 129911, + 129914, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 129915, + 129915, + null + ], + [ + "ident-token", + "border-bottom", + 129916, + 129928, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 129929, + 129929, + null + ], + [ + "function-token", + "var(", + 129930, + 129933, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129934, + 129934, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129935, + 129935, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 129936, + 129960, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 129961, + 129961, + null + ], + [ + "whitespace-token", + " ", + 129962, + 129962, + null + ], + [ + "ident-token", + "solid", + 129963, + 129967, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 129968, + 129968, + null + ], + [ + "function-token", + "var(", + 129969, + 129972, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 129973, + 129973, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 129974, + 129974, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 129975, + 129999, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 130000, + 130000, + null + ], + [ + "semicolon-token", + ";", + 130001, + 130001, + null + ], + [ + "ident-token", + "transform", + 130002, + 130010, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 130011, + 130011, + null + ], + [ + "function-token", + "translateY(", + 130012, + 130022, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 130023, + 130027, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 130028, + 130028, + null + ], + [ + "}-token", + "}", + 130029, + 130029, + null + ], + [ + "}-token", + "}", + 130030, + 130030, + null + ], + [ + "at-keyword-token", + "@media", + 130031, + 130036, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 130037, + 130037, + null + ], + [ + "(-token", + "(", + 130038, + 130038, + null + ], + [ + "ident-token", + "max-width", + 130039, + 130047, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 130048, + 130048, + null + ], + [ + "dimension-token", + "767.98px", + 130049, + 130056, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 130057, + 130057, + null + ], + [ + "{-token", + "{", + 130058, + 130058, + null + ], + [ + "delim-token", + ".", + 130059, + 130059, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130060, + 130071, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130072, + 130072, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 130073, + 130088, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 130089, + 130089, + null + ], + [ + "ident-token", + "right", + 130090, + 130094, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 130095, + 130095, + null + ], + [ + "number-token", + "0", + 130096, + 130096, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130097, + 130097, + null + ], + [ + "ident-token", + "left", + 130098, + 130101, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 130102, + 130102, + null + ], + [ + "number-token", + "0", + 130103, + 130103, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130104, + 130104, + null + ], + [ + "ident-token", + "height", + 130105, + 130110, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 130111, + 130111, + null + ], + [ + "function-token", + "var(", + 130112, + 130115, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 130116, + 130116, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130117, + 130117, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 130118, + 130136, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 130137, + 130137, + null + ], + [ + "semicolon-token", + ";", + 130138, + 130138, + null + ], + [ + "ident-token", + "max-height", + 130139, + 130148, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 130149, + 130149, + null + ], + [ + "percentage-token", + "100%", + 130150, + 130153, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 130154, + 130154, + null + ], + [ + "ident-token", + "border-top", + 130155, + 130164, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 130165, + 130165, + null + ], + [ + "function-token", + "var(", + 130166, + 130169, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 130170, + 130170, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130171, + 130171, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 130172, + 130196, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 130197, + 130197, + null + ], + [ + "whitespace-token", + " ", + 130198, + 130198, + null + ], + [ + "ident-token", + "solid", + 130199, + 130203, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 130204, + 130204, + null + ], + [ + "function-token", + "var(", + 130205, + 130208, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 130209, + 130209, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130210, + 130210, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 130211, + 130235, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 130236, + 130236, + null + ], + [ + "semicolon-token", + ";", + 130237, + 130237, + null + ], + [ + "ident-token", + "transform", + 130238, + 130246, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 130247, + 130247, + null + ], + [ + "function-token", + "translateY(", + 130248, + 130258, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 130259, + 130262, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 130263, + 130263, + null + ], + [ + "}-token", + "}", + 130264, + 130264, + null + ], + [ + "}-token", + "}", + 130265, + 130265, + null + ], + [ + "at-keyword-token", + "@media", + 130266, + 130271, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 130272, + 130272, + null + ], + [ + "(-token", + "(", + 130273, + 130273, + null + ], + [ + "ident-token", + "max-width", + 130274, + 130282, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 130283, + 130283, + null + ], + [ + "dimension-token", + "767.98px", + 130284, + 130291, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 130292, + 130292, + null + ], + [ + "{-token", + "{", + 130293, + 130293, + null + ], + [ + "delim-token", + ".", + 130294, + 130294, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130295, + 130306, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130307, + 130307, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 130308, + 130311, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 130312, + 130312, + null + ], + [ + "function-token", + "not(", + 130313, + 130316, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 130317, + 130317, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 130318, + 130323, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 130324, + 130324, + null + ], + [ + "comma-token", + ",", + 130325, + 130325, + null + ], + [ + "delim-token", + ".", + 130326, + 130326, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130327, + 130338, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130339, + 130339, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 130340, + 130346, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 130347, + 130347, + null + ], + [ + "ident-token", + "transform", + 130348, + 130356, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 130357, + 130357, + null + ], + [ + "ident-token", + "none", + 130358, + 130361, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 130362, + 130362, + null + ], + [ + "}-token", + "}", + 130363, + 130363, + null + ], + [ + "at-keyword-token", + "@media", + 130364, + 130369, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 130370, + 130370, + null + ], + [ + "(-token", + "(", + 130371, + 130371, + null + ], + [ + "ident-token", + "max-width", + 130372, + 130380, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 130381, + 130381, + null + ], + [ + "dimension-token", + "767.98px", + 130382, + 130389, + { + "value": 767.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 130390, + 130390, + null + ], + [ + "{-token", + "{", + 130391, + 130391, + null + ], + [ + "delim-token", + ".", + 130392, + 130392, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130393, + 130404, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130405, + 130405, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 130406, + 130411, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 130412, + 130412, + null + ], + [ + "delim-token", + ".", + 130413, + 130413, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130414, + 130425, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130426, + 130426, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 130427, + 130430, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 130431, + 130431, + null + ], + [ + "delim-token", + ".", + 130432, + 130432, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130433, + 130444, + { + "value": "offcanvas-md" + } + ], + [ + "delim-token", + ".", + 130445, + 130445, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 130446, + 130452, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 130453, + 130453, + null + ], + [ + "ident-token", + "visibility", + 130454, + 130463, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 130464, + 130464, + null + ], + [ + "ident-token", + "visible", + 130465, + 130471, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 130472, + 130472, + null + ], + [ + "}-token", + "}", + 130473, + 130473, + null + ], + [ + "at-keyword-token", + "@media", + 130474, + 130479, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 130480, + 130480, + null + ], + [ + "(-token", + "(", + 130481, + 130481, + null + ], + [ + "ident-token", + "min-width", + 130482, + 130490, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 130491, + 130491, + null + ], + [ + "dimension-token", + "768px", + 130492, + 130496, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 130497, + 130497, + null + ], + [ + "{-token", + "{", + 130498, + 130498, + null + ], + [ + "delim-token", + ".", + 130499, + 130499, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130500, + 130511, + { + "value": "offcanvas-md" + } + ], + [ + "{-token", + "{", + 130512, + 130512, + null + ], + [ + "delim-token", + "-", + 130513, + 130513, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130514, + 130514, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 130515, + 130533, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 130534, + 130534, + null + ], + [ + "ident-token", + "auto", + 130535, + 130538, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 130539, + 130539, + null + ], + [ + "delim-token", + "-", + 130540, + 130540, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130541, + 130541, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 130542, + 130566, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 130567, + 130567, + null + ], + [ + "number-token", + "0", + 130568, + 130568, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130569, + 130569, + null + ], + [ + "ident-token", + "background-color", + 130570, + 130585, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 130586, + 130586, + null + ], + [ + "ident-token", + "transparent", + 130587, + 130597, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 130598, + 130598, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 130599, + 130607, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 130608, + 130608, + null + ], + [ + "delim-token", + ".", + 130609, + 130609, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130610, + 130621, + { + "value": "offcanvas-md" + } + ], + [ + "whitespace-token", + " ", + 130622, + 130622, + null + ], + [ + "delim-token", + ".", + 130623, + 130623, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 130624, + 130639, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 130640, + 130640, + null + ], + [ + "ident-token", + "display", + 130641, + 130647, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 130648, + 130648, + null + ], + [ + "ident-token", + "none", + 130649, + 130652, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 130653, + 130653, + null + ], + [ + "delim-token", + ".", + 130654, + 130654, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-md", + 130655, + 130666, + { + "value": "offcanvas-md" + } + ], + [ + "whitespace-token", + " ", + 130667, + 130667, + null + ], + [ + "delim-token", + ".", + 130668, + 130668, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 130669, + 130682, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 130683, + 130683, + null + ], + [ + "ident-token", + "display", + 130684, + 130690, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 130691, + 130691, + null + ], + [ + "ident-token", + "flex", + 130692, + 130695, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 130696, + 130696, + null + ], + [ + "ident-token", + "flex-grow", + 130697, + 130705, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 130706, + 130706, + null + ], + [ + "number-token", + "0", + 130707, + 130707, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130708, + 130708, + null + ], + [ + "ident-token", + "padding", + 130709, + 130715, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 130716, + 130716, + null + ], + [ + "number-token", + "0", + 130717, + 130717, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130718, + 130718, + null + ], + [ + "ident-token", + "overflow-y", + 130719, + 130728, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 130729, + 130729, + null + ], + [ + "ident-token", + "visible", + 130730, + 130736, + { + "value": "visible" + } + ], + [ + "semicolon-token", + ";", + 130737, + 130737, + null + ], + [ + "ident-token", + "background-color", + 130738, + 130753, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 130754, + 130754, + null + ], + [ + "ident-token", + "transparent", + 130755, + 130765, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 130766, + 130766, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 130767, + 130775, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 130776, + 130776, + null + ], + [ + "}-token", + "}", + 130777, + 130777, + null + ], + [ + "at-keyword-token", + "@media", + 130778, + 130783, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 130784, + 130784, + null + ], + [ + "(-token", + "(", + 130785, + 130785, + null + ], + [ + "ident-token", + "max-width", + 130786, + 130794, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 130795, + 130795, + null + ], + [ + "dimension-token", + "991.98px", + 130796, + 130803, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 130804, + 130804, + null + ], + [ + "{-token", + "{", + 130805, + 130805, + null + ], + [ + "delim-token", + ".", + 130806, + 130806, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 130807, + 130818, + { + "value": "offcanvas-lg" + } + ], + [ + "{-token", + "{", + 130819, + 130819, + null + ], + [ + "ident-token", + "position", + 130820, + 130827, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 130828, + 130828, + null + ], + [ + "ident-token", + "fixed", + 130829, + 130833, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 130834, + 130834, + null + ], + [ + "ident-token", + "bottom", + 130835, + 130840, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 130841, + 130841, + null + ], + [ + "number-token", + "0", + 130842, + 130842, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 130843, + 130843, + null + ], + [ + "ident-token", + "z-index", + 130844, + 130850, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 130851, + 130851, + null + ], + [ + "function-token", + "var(", + 130852, + 130855, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 130856, + 130856, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130857, + 130857, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 130858, + 130876, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 130877, + 130877, + null + ], + [ + "semicolon-token", + ";", + 130878, + 130878, + null + ], + [ + "ident-token", + "display", + 130879, + 130885, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 130886, + 130886, + null + ], + [ + "ident-token", + "flex", + 130887, + 130890, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 130891, + 130891, + null + ], + [ + "ident-token", + "flex-direction", + 130892, + 130905, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 130906, + 130906, + null + ], + [ + "ident-token", + "column", + 130907, + 130912, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 130913, + 130913, + null + ], + [ + "ident-token", + "max-width", + 130914, + 130922, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 130923, + 130923, + null + ], + [ + "percentage-token", + "100%", + 130924, + 130927, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 130928, + 130928, + null + ], + [ + "ident-token", + "color", + 130929, + 130933, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 130934, + 130934, + null + ], + [ + "function-token", + "var(", + 130935, + 130938, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 130939, + 130939, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 130940, + 130940, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 130941, + 130958, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 130959, + 130959, + null + ], + [ + "semicolon-token", + ";", + 130960, + 130960, + null + ], + [ + "ident-token", + "visibility", + 130961, + 130970, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 130971, + 130971, + null + ], + [ + "ident-token", + "hidden", + 130972, + 130977, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 130978, + 130978, + null + ], + [ + "ident-token", + "background-color", + 130979, + 130994, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 130995, + 130995, + null + ], + [ + "function-token", + "var(", + 130996, + 130999, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131000, + 131000, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131001, + 131001, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 131002, + 131016, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 131017, + 131017, + null + ], + [ + "semicolon-token", + ";", + 131018, + 131018, + null + ], + [ + "ident-token", + "background-clip", + 131019, + 131033, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 131034, + 131034, + null + ], + [ + "ident-token", + "padding-box", + 131035, + 131045, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 131046, + 131046, + null + ], + [ + "ident-token", + "outline", + 131047, + 131053, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 131054, + 131054, + null + ], + [ + "number-token", + "0", + 131055, + 131055, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131056, + 131056, + null + ], + [ + "ident-token", + "transition", + 131057, + 131066, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 131067, + 131067, + null + ], + [ + "ident-token", + "transform", + 131068, + 131076, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 131077, + 131077, + null + ], + [ + "dimension-token", + ".3s", + 131078, + 131080, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 131081, + 131081, + null + ], + [ + "ident-token", + "ease-in-out", + 131082, + 131092, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 131093, + 131093, + null + ], + [ + "}-token", + "}", + 131094, + 131094, + null + ], + [ + "at-keyword-token", + "@media", + 131095, + 131100, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 131101, + 131101, + null + ], + [ + "(-token", + "(", + 131102, + 131102, + null + ], + [ + "ident-token", + "max-width", + 131103, + 131111, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 131112, + 131112, + null + ], + [ + "dimension-token", + "991.98px", + 131113, + 131120, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 131121, + 131121, + null + ], + [ + "whitespace-token", + " ", + 131122, + 131122, + null + ], + [ + "ident-token", + "and", + 131123, + 131125, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 131126, + 131126, + null + ], + [ + "(-token", + "(", + 131127, + 131127, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 131128, + 131149, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 131150, + 131150, + null + ], + [ + "ident-token", + "reduce", + 131151, + 131156, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 131157, + 131157, + null + ], + [ + "{-token", + "{", + 131158, + 131158, + null + ], + [ + "delim-token", + ".", + 131159, + 131159, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 131160, + 131171, + { + "value": "offcanvas-lg" + } + ], + [ + "{-token", + "{", + 131172, + 131172, + null + ], + [ + "ident-token", + "transition", + 131173, + 131182, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 131183, + 131183, + null + ], + [ + "ident-token", + "none", + 131184, + 131187, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 131188, + 131188, + null + ], + [ + "}-token", + "}", + 131189, + 131189, + null + ], + [ + "at-keyword-token", + "@media", + 131190, + 131195, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 131196, + 131196, + null + ], + [ + "(-token", + "(", + 131197, + 131197, + null + ], + [ + "ident-token", + "max-width", + 131198, + 131206, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 131207, + 131207, + null + ], + [ + "dimension-token", + "991.98px", + 131208, + 131215, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 131216, + 131216, + null + ], + [ + "{-token", + "{", + 131217, + 131217, + null + ], + [ + "delim-token", + ".", + 131218, + 131218, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 131219, + 131230, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 131231, + 131231, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 131232, + 131246, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 131247, + 131247, + null + ], + [ + "ident-token", + "top", + 131248, + 131250, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 131251, + 131251, + null + ], + [ + "number-token", + "0", + 131252, + 131252, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131253, + 131253, + null + ], + [ + "ident-token", + "left", + 131254, + 131257, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 131258, + 131258, + null + ], + [ + "number-token", + "0", + 131259, + 131259, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131260, + 131260, + null + ], + [ + "ident-token", + "width", + 131261, + 131265, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 131266, + 131266, + null + ], + [ + "function-token", + "var(", + 131267, + 131270, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131271, + 131271, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131272, + 131272, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 131273, + 131290, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 131291, + 131291, + null + ], + [ + "semicolon-token", + ";", + 131292, + 131292, + null + ], + [ + "ident-token", + "border-right", + 131293, + 131304, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 131305, + 131305, + null + ], + [ + "function-token", + "var(", + 131306, + 131309, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131310, + 131310, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131311, + 131311, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 131312, + 131336, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 131337, + 131337, + null + ], + [ + "whitespace-token", + " ", + 131338, + 131338, + null + ], + [ + "ident-token", + "solid", + 131339, + 131343, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 131344, + 131344, + null + ], + [ + "function-token", + "var(", + 131345, + 131348, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131349, + 131349, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131350, + 131350, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 131351, + 131375, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 131376, + 131376, + null + ], + [ + "semicolon-token", + ";", + 131377, + 131377, + null + ], + [ + "ident-token", + "transform", + 131378, + 131386, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 131387, + 131387, + null + ], + [ + "function-token", + "translateX(", + 131388, + 131398, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 131399, + 131403, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 131404, + 131404, + null + ], + [ + "}-token", + "}", + 131405, + 131405, + null + ], + [ + "}-token", + "}", + 131406, + 131406, + null + ], + [ + "at-keyword-token", + "@media", + 131407, + 131412, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 131413, + 131413, + null + ], + [ + "(-token", + "(", + 131414, + 131414, + null + ], + [ + "ident-token", + "max-width", + 131415, + 131423, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 131424, + 131424, + null + ], + [ + "dimension-token", + "991.98px", + 131425, + 131432, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 131433, + 131433, + null + ], + [ + "{-token", + "{", + 131434, + 131434, + null + ], + [ + "delim-token", + ".", + 131435, + 131435, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 131436, + 131447, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 131448, + 131448, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 131449, + 131461, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 131462, + 131462, + null + ], + [ + "ident-token", + "top", + 131463, + 131465, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 131466, + 131466, + null + ], + [ + "number-token", + "0", + 131467, + 131467, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131468, + 131468, + null + ], + [ + "ident-token", + "right", + 131469, + 131473, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 131474, + 131474, + null + ], + [ + "number-token", + "0", + 131475, + 131475, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131476, + 131476, + null + ], + [ + "ident-token", + "width", + 131477, + 131481, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 131482, + 131482, + null + ], + [ + "function-token", + "var(", + 131483, + 131486, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131487, + 131487, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131488, + 131488, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 131489, + 131506, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 131507, + 131507, + null + ], + [ + "semicolon-token", + ";", + 131508, + 131508, + null + ], + [ + "ident-token", + "border-left", + 131509, + 131519, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 131520, + 131520, + null + ], + [ + "function-token", + "var(", + 131521, + 131524, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131525, + 131525, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131526, + 131526, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 131527, + 131551, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 131552, + 131552, + null + ], + [ + "whitespace-token", + " ", + 131553, + 131553, + null + ], + [ + "ident-token", + "solid", + 131554, + 131558, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 131559, + 131559, + null + ], + [ + "function-token", + "var(", + 131560, + 131563, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131564, + 131564, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131565, + 131565, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 131566, + 131590, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 131591, + 131591, + null + ], + [ + "semicolon-token", + ";", + 131592, + 131592, + null + ], + [ + "ident-token", + "transform", + 131593, + 131601, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 131602, + 131602, + null + ], + [ + "function-token", + "translateX(", + 131603, + 131613, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 131614, + 131617, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 131618, + 131618, + null + ], + [ + "}-token", + "}", + 131619, + 131619, + null + ], + [ + "}-token", + "}", + 131620, + 131620, + null + ], + [ + "at-keyword-token", + "@media", + 131621, + 131626, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 131627, + 131627, + null + ], + [ + "(-token", + "(", + 131628, + 131628, + null + ], + [ + "ident-token", + "max-width", + 131629, + 131637, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 131638, + 131638, + null + ], + [ + "dimension-token", + "991.98px", + 131639, + 131646, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 131647, + 131647, + null + ], + [ + "{-token", + "{", + 131648, + 131648, + null + ], + [ + "delim-token", + ".", + 131649, + 131649, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 131650, + 131661, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 131662, + 131662, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 131663, + 131675, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 131676, + 131676, + null + ], + [ + "ident-token", + "top", + 131677, + 131679, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 131680, + 131680, + null + ], + [ + "number-token", + "0", + 131681, + 131681, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131682, + 131682, + null + ], + [ + "ident-token", + "right", + 131683, + 131687, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 131688, + 131688, + null + ], + [ + "number-token", + "0", + 131689, + 131689, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131690, + 131690, + null + ], + [ + "ident-token", + "left", + 131691, + 131694, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 131695, + 131695, + null + ], + [ + "number-token", + "0", + 131696, + 131696, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131697, + 131697, + null + ], + [ + "ident-token", + "height", + 131698, + 131703, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 131704, + 131704, + null + ], + [ + "function-token", + "var(", + 131705, + 131708, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131709, + 131709, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131710, + 131710, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 131711, + 131729, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 131730, + 131730, + null + ], + [ + "semicolon-token", + ";", + 131731, + 131731, + null + ], + [ + "ident-token", + "max-height", + 131732, + 131741, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 131742, + 131742, + null + ], + [ + "percentage-token", + "100%", + 131743, + 131746, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 131747, + 131747, + null + ], + [ + "ident-token", + "border-bottom", + 131748, + 131760, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 131761, + 131761, + null + ], + [ + "function-token", + "var(", + 131762, + 131765, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131766, + 131766, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131767, + 131767, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 131768, + 131792, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 131793, + 131793, + null + ], + [ + "whitespace-token", + " ", + 131794, + 131794, + null + ], + [ + "ident-token", + "solid", + 131795, + 131799, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 131800, + 131800, + null + ], + [ + "function-token", + "var(", + 131801, + 131804, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131805, + 131805, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131806, + 131806, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 131807, + 131831, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 131832, + 131832, + null + ], + [ + "semicolon-token", + ";", + 131833, + 131833, + null + ], + [ + "ident-token", + "transform", + 131834, + 131842, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 131843, + 131843, + null + ], + [ + "function-token", + "translateY(", + 131844, + 131854, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 131855, + 131859, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 131860, + 131860, + null + ], + [ + "}-token", + "}", + 131861, + 131861, + null + ], + [ + "}-token", + "}", + 131862, + 131862, + null + ], + [ + "at-keyword-token", + "@media", + 131863, + 131868, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 131869, + 131869, + null + ], + [ + "(-token", + "(", + 131870, + 131870, + null + ], + [ + "ident-token", + "max-width", + 131871, + 131879, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 131880, + 131880, + null + ], + [ + "dimension-token", + "991.98px", + 131881, + 131888, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 131889, + 131889, + null + ], + [ + "{-token", + "{", + 131890, + 131890, + null + ], + [ + "delim-token", + ".", + 131891, + 131891, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 131892, + 131903, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 131904, + 131904, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 131905, + 131920, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 131921, + 131921, + null + ], + [ + "ident-token", + "right", + 131922, + 131926, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 131927, + 131927, + null + ], + [ + "number-token", + "0", + 131928, + 131928, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131929, + 131929, + null + ], + [ + "ident-token", + "left", + 131930, + 131933, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 131934, + 131934, + null + ], + [ + "number-token", + "0", + 131935, + 131935, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 131936, + 131936, + null + ], + [ + "ident-token", + "height", + 131937, + 131942, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 131943, + 131943, + null + ], + [ + "function-token", + "var(", + 131944, + 131947, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 131948, + 131948, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 131949, + 131949, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 131950, + 131968, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 131969, + 131969, + null + ], + [ + "semicolon-token", + ";", + 131970, + 131970, + null + ], + [ + "ident-token", + "max-height", + 131971, + 131980, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 131981, + 131981, + null + ], + [ + "percentage-token", + "100%", + 131982, + 131985, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 131986, + 131986, + null + ], + [ + "ident-token", + "border-top", + 131987, + 131996, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 131997, + 131997, + null + ], + [ + "function-token", + "var(", + 131998, + 132001, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 132002, + 132002, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132003, + 132003, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 132004, + 132028, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 132029, + 132029, + null + ], + [ + "whitespace-token", + " ", + 132030, + 132030, + null + ], + [ + "ident-token", + "solid", + 132031, + 132035, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 132036, + 132036, + null + ], + [ + "function-token", + "var(", + 132037, + 132040, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 132041, + 132041, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132042, + 132042, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 132043, + 132067, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 132068, + 132068, + null + ], + [ + "semicolon-token", + ";", + 132069, + 132069, + null + ], + [ + "ident-token", + "transform", + 132070, + 132078, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 132079, + 132079, + null + ], + [ + "function-token", + "translateY(", + 132080, + 132090, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 132091, + 132094, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 132095, + 132095, + null + ], + [ + "}-token", + "}", + 132096, + 132096, + null + ], + [ + "}-token", + "}", + 132097, + 132097, + null + ], + [ + "at-keyword-token", + "@media", + 132098, + 132103, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 132104, + 132104, + null + ], + [ + "(-token", + "(", + 132105, + 132105, + null + ], + [ + "ident-token", + "max-width", + 132106, + 132114, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 132115, + 132115, + null + ], + [ + "dimension-token", + "991.98px", + 132116, + 132123, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 132124, + 132124, + null + ], + [ + "{-token", + "{", + 132125, + 132125, + null + ], + [ + "delim-token", + ".", + 132126, + 132126, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132127, + 132138, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 132139, + 132139, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 132140, + 132143, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 132144, + 132144, + null + ], + [ + "function-token", + "not(", + 132145, + 132148, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 132149, + 132149, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 132150, + 132155, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 132156, + 132156, + null + ], + [ + "comma-token", + ",", + 132157, + 132157, + null + ], + [ + "delim-token", + ".", + 132158, + 132158, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132159, + 132170, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 132171, + 132171, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 132172, + 132178, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 132179, + 132179, + null + ], + [ + "ident-token", + "transform", + 132180, + 132188, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 132189, + 132189, + null + ], + [ + "ident-token", + "none", + 132190, + 132193, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 132194, + 132194, + null + ], + [ + "}-token", + "}", + 132195, + 132195, + null + ], + [ + "at-keyword-token", + "@media", + 132196, + 132201, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 132202, + 132202, + null + ], + [ + "(-token", + "(", + 132203, + 132203, + null + ], + [ + "ident-token", + "max-width", + 132204, + 132212, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 132213, + 132213, + null + ], + [ + "dimension-token", + "991.98px", + 132214, + 132221, + { + "value": 991.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 132222, + 132222, + null + ], + [ + "{-token", + "{", + 132223, + 132223, + null + ], + [ + "delim-token", + ".", + 132224, + 132224, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132225, + 132236, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 132237, + 132237, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 132238, + 132243, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 132244, + 132244, + null + ], + [ + "delim-token", + ".", + 132245, + 132245, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132246, + 132257, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 132258, + 132258, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 132259, + 132262, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 132263, + 132263, + null + ], + [ + "delim-token", + ".", + 132264, + 132264, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132265, + 132276, + { + "value": "offcanvas-lg" + } + ], + [ + "delim-token", + ".", + 132277, + 132277, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 132278, + 132284, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 132285, + 132285, + null + ], + [ + "ident-token", + "visibility", + 132286, + 132295, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 132296, + 132296, + null + ], + [ + "ident-token", + "visible", + 132297, + 132303, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 132304, + 132304, + null + ], + [ + "}-token", + "}", + 132305, + 132305, + null + ], + [ + "at-keyword-token", + "@media", + 132306, + 132311, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 132312, + 132312, + null + ], + [ + "(-token", + "(", + 132313, + 132313, + null + ], + [ + "ident-token", + "min-width", + 132314, + 132322, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 132323, + 132323, + null + ], + [ + "dimension-token", + "992px", + 132324, + 132328, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 132329, + 132329, + null + ], + [ + "{-token", + "{", + 132330, + 132330, + null + ], + [ + "delim-token", + ".", + 132331, + 132331, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132332, + 132343, + { + "value": "offcanvas-lg" + } + ], + [ + "{-token", + "{", + 132344, + 132344, + null + ], + [ + "delim-token", + "-", + 132345, + 132345, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132346, + 132346, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 132347, + 132365, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 132366, + 132366, + null + ], + [ + "ident-token", + "auto", + 132367, + 132370, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 132371, + 132371, + null + ], + [ + "delim-token", + "-", + 132372, + 132372, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132373, + 132373, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 132374, + 132398, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 132399, + 132399, + null + ], + [ + "number-token", + "0", + 132400, + 132400, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 132401, + 132401, + null + ], + [ + "ident-token", + "background-color", + 132402, + 132417, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 132418, + 132418, + null + ], + [ + "ident-token", + "transparent", + 132419, + 132429, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 132430, + 132430, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 132431, + 132439, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 132440, + 132440, + null + ], + [ + "delim-token", + ".", + 132441, + 132441, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132442, + 132453, + { + "value": "offcanvas-lg" + } + ], + [ + "whitespace-token", + " ", + 132454, + 132454, + null + ], + [ + "delim-token", + ".", + 132455, + 132455, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 132456, + 132471, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 132472, + 132472, + null + ], + [ + "ident-token", + "display", + 132473, + 132479, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 132480, + 132480, + null + ], + [ + "ident-token", + "none", + 132481, + 132484, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 132485, + 132485, + null + ], + [ + "delim-token", + ".", + 132486, + 132486, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-lg", + 132487, + 132498, + { + "value": "offcanvas-lg" + } + ], + [ + "whitespace-token", + " ", + 132499, + 132499, + null + ], + [ + "delim-token", + ".", + 132500, + 132500, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 132501, + 132514, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 132515, + 132515, + null + ], + [ + "ident-token", + "display", + 132516, + 132522, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 132523, + 132523, + null + ], + [ + "ident-token", + "flex", + 132524, + 132527, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 132528, + 132528, + null + ], + [ + "ident-token", + "flex-grow", + 132529, + 132537, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 132538, + 132538, + null + ], + [ + "number-token", + "0", + 132539, + 132539, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 132540, + 132540, + null + ], + [ + "ident-token", + "padding", + 132541, + 132547, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 132548, + 132548, + null + ], + [ + "number-token", + "0", + 132549, + 132549, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 132550, + 132550, + null + ], + [ + "ident-token", + "overflow-y", + 132551, + 132560, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 132561, + 132561, + null + ], + [ + "ident-token", + "visible", + 132562, + 132568, + { + "value": "visible" + } + ], + [ + "semicolon-token", + ";", + 132569, + 132569, + null + ], + [ + "ident-token", + "background-color", + 132570, + 132585, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 132586, + 132586, + null + ], + [ + "ident-token", + "transparent", + 132587, + 132597, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 132598, + 132598, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 132599, + 132607, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 132608, + 132608, + null + ], + [ + "}-token", + "}", + 132609, + 132609, + null + ], + [ + "at-keyword-token", + "@media", + 132610, + 132615, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 132616, + 132616, + null + ], + [ + "(-token", + "(", + 132617, + 132617, + null + ], + [ + "ident-token", + "max-width", + 132618, + 132626, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 132627, + 132627, + null + ], + [ + "dimension-token", + "1199.98px", + 132628, + 132636, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 132637, + 132637, + null + ], + [ + "{-token", + "{", + 132638, + 132638, + null + ], + [ + "delim-token", + ".", + 132639, + 132639, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 132640, + 132651, + { + "value": "offcanvas-xl" + } + ], + [ + "{-token", + "{", + 132652, + 132652, + null + ], + [ + "ident-token", + "position", + 132653, + 132660, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 132661, + 132661, + null + ], + [ + "ident-token", + "fixed", + 132662, + 132666, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 132667, + 132667, + null + ], + [ + "ident-token", + "bottom", + 132668, + 132673, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 132674, + 132674, + null + ], + [ + "number-token", + "0", + 132675, + 132675, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 132676, + 132676, + null + ], + [ + "ident-token", + "z-index", + 132677, + 132683, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 132684, + 132684, + null + ], + [ + "function-token", + "var(", + 132685, + 132688, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 132689, + 132689, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132690, + 132690, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 132691, + 132709, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 132710, + 132710, + null + ], + [ + "semicolon-token", + ";", + 132711, + 132711, + null + ], + [ + "ident-token", + "display", + 132712, + 132718, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 132719, + 132719, + null + ], + [ + "ident-token", + "flex", + 132720, + 132723, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 132724, + 132724, + null + ], + [ + "ident-token", + "flex-direction", + 132725, + 132738, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 132739, + 132739, + null + ], + [ + "ident-token", + "column", + 132740, + 132745, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 132746, + 132746, + null + ], + [ + "ident-token", + "max-width", + 132747, + 132755, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 132756, + 132756, + null + ], + [ + "percentage-token", + "100%", + 132757, + 132760, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 132761, + 132761, + null + ], + [ + "ident-token", + "color", + 132762, + 132766, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 132767, + 132767, + null + ], + [ + "function-token", + "var(", + 132768, + 132771, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 132772, + 132772, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132773, + 132773, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 132774, + 132791, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 132792, + 132792, + null + ], + [ + "semicolon-token", + ";", + 132793, + 132793, + null + ], + [ + "ident-token", + "visibility", + 132794, + 132803, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 132804, + 132804, + null + ], + [ + "ident-token", + "hidden", + 132805, + 132810, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 132811, + 132811, + null + ], + [ + "ident-token", + "background-color", + 132812, + 132827, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 132828, + 132828, + null + ], + [ + "function-token", + "var(", + 132829, + 132832, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 132833, + 132833, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 132834, + 132834, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 132835, + 132849, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 132850, + 132850, + null + ], + [ + "semicolon-token", + ";", + 132851, + 132851, + null + ], + [ + "ident-token", + "background-clip", + 132852, + 132866, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 132867, + 132867, + null + ], + [ + "ident-token", + "padding-box", + 132868, + 132878, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 132879, + 132879, + null + ], + [ + "ident-token", + "outline", + 132880, + 132886, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 132887, + 132887, + null + ], + [ + "number-token", + "0", + 132888, + 132888, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 132889, + 132889, + null + ], + [ + "ident-token", + "transition", + 132890, + 132899, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 132900, + 132900, + null + ], + [ + "ident-token", + "transform", + 132901, + 132909, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 132910, + 132910, + null + ], + [ + "dimension-token", + ".3s", + 132911, + 132913, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 132914, + 132914, + null + ], + [ + "ident-token", + "ease-in-out", + 132915, + 132925, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 132926, + 132926, + null + ], + [ + "}-token", + "}", + 132927, + 132927, + null + ], + [ + "at-keyword-token", + "@media", + 132928, + 132933, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 132934, + 132934, + null + ], + [ + "(-token", + "(", + 132935, + 132935, + null + ], + [ + "ident-token", + "max-width", + 132936, + 132944, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 132945, + 132945, + null + ], + [ + "dimension-token", + "1199.98px", + 132946, + 132954, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 132955, + 132955, + null + ], + [ + "whitespace-token", + " ", + 132956, + 132956, + null + ], + [ + "ident-token", + "and", + 132957, + 132959, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 132960, + 132960, + null + ], + [ + "(-token", + "(", + 132961, + 132961, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 132962, + 132983, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 132984, + 132984, + null + ], + [ + "ident-token", + "reduce", + 132985, + 132990, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 132991, + 132991, + null + ], + [ + "{-token", + "{", + 132992, + 132992, + null + ], + [ + "delim-token", + ".", + 132993, + 132993, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 132994, + 133005, + { + "value": "offcanvas-xl" + } + ], + [ + "{-token", + "{", + 133006, + 133006, + null + ], + [ + "ident-token", + "transition", + 133007, + 133016, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 133017, + 133017, + null + ], + [ + "ident-token", + "none", + 133018, + 133021, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 133022, + 133022, + null + ], + [ + "}-token", + "}", + 133023, + 133023, + null + ], + [ + "at-keyword-token", + "@media", + 133024, + 133029, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 133030, + 133030, + null + ], + [ + "(-token", + "(", + 133031, + 133031, + null + ], + [ + "ident-token", + "max-width", + 133032, + 133040, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 133041, + 133041, + null + ], + [ + "dimension-token", + "1199.98px", + 133042, + 133050, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 133051, + 133051, + null + ], + [ + "{-token", + "{", + 133052, + 133052, + null + ], + [ + "delim-token", + ".", + 133053, + 133053, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133054, + 133065, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 133066, + 133066, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 133067, + 133081, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 133082, + 133082, + null + ], + [ + "ident-token", + "top", + 133083, + 133085, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 133086, + 133086, + null + ], + [ + "number-token", + "0", + 133087, + 133087, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133088, + 133088, + null + ], + [ + "ident-token", + "left", + 133089, + 133092, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 133093, + 133093, + null + ], + [ + "number-token", + "0", + 133094, + 133094, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133095, + 133095, + null + ], + [ + "ident-token", + "width", + 133096, + 133100, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 133101, + 133101, + null + ], + [ + "function-token", + "var(", + 133102, + 133105, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133106, + 133106, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133107, + 133107, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 133108, + 133125, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 133126, + 133126, + null + ], + [ + "semicolon-token", + ";", + 133127, + 133127, + null + ], + [ + "ident-token", + "border-right", + 133128, + 133139, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 133140, + 133140, + null + ], + [ + "function-token", + "var(", + 133141, + 133144, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133145, + 133145, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133146, + 133146, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 133147, + 133171, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 133172, + 133172, + null + ], + [ + "whitespace-token", + " ", + 133173, + 133173, + null + ], + [ + "ident-token", + "solid", + 133174, + 133178, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 133179, + 133179, + null + ], + [ + "function-token", + "var(", + 133180, + 133183, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133184, + 133184, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133185, + 133185, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 133186, + 133210, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 133211, + 133211, + null + ], + [ + "semicolon-token", + ";", + 133212, + 133212, + null + ], + [ + "ident-token", + "transform", + 133213, + 133221, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 133222, + 133222, + null + ], + [ + "function-token", + "translateX(", + 133223, + 133233, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 133234, + 133238, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 133239, + 133239, + null + ], + [ + "}-token", + "}", + 133240, + 133240, + null + ], + [ + "}-token", + "}", + 133241, + 133241, + null + ], + [ + "at-keyword-token", + "@media", + 133242, + 133247, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 133248, + 133248, + null + ], + [ + "(-token", + "(", + 133249, + 133249, + null + ], + [ + "ident-token", + "max-width", + 133250, + 133258, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 133259, + 133259, + null + ], + [ + "dimension-token", + "1199.98px", + 133260, + 133268, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 133269, + 133269, + null + ], + [ + "{-token", + "{", + 133270, + 133270, + null + ], + [ + "delim-token", + ".", + 133271, + 133271, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133272, + 133283, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 133284, + 133284, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 133285, + 133297, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 133298, + 133298, + null + ], + [ + "ident-token", + "top", + 133299, + 133301, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 133302, + 133302, + null + ], + [ + "number-token", + "0", + 133303, + 133303, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133304, + 133304, + null + ], + [ + "ident-token", + "right", + 133305, + 133309, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 133310, + 133310, + null + ], + [ + "number-token", + "0", + 133311, + 133311, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133312, + 133312, + null + ], + [ + "ident-token", + "width", + 133313, + 133317, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 133318, + 133318, + null + ], + [ + "function-token", + "var(", + 133319, + 133322, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133323, + 133323, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133324, + 133324, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 133325, + 133342, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 133343, + 133343, + null + ], + [ + "semicolon-token", + ";", + 133344, + 133344, + null + ], + [ + "ident-token", + "border-left", + 133345, + 133355, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 133356, + 133356, + null + ], + [ + "function-token", + "var(", + 133357, + 133360, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133361, + 133361, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133362, + 133362, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 133363, + 133387, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 133388, + 133388, + null + ], + [ + "whitespace-token", + " ", + 133389, + 133389, + null + ], + [ + "ident-token", + "solid", + 133390, + 133394, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 133395, + 133395, + null + ], + [ + "function-token", + "var(", + 133396, + 133399, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133400, + 133400, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133401, + 133401, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 133402, + 133426, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 133427, + 133427, + null + ], + [ + "semicolon-token", + ";", + 133428, + 133428, + null + ], + [ + "ident-token", + "transform", + 133429, + 133437, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 133438, + 133438, + null + ], + [ + "function-token", + "translateX(", + 133439, + 133449, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 133450, + 133453, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 133454, + 133454, + null + ], + [ + "}-token", + "}", + 133455, + 133455, + null + ], + [ + "}-token", + "}", + 133456, + 133456, + null + ], + [ + "at-keyword-token", + "@media", + 133457, + 133462, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 133463, + 133463, + null + ], + [ + "(-token", + "(", + 133464, + 133464, + null + ], + [ + "ident-token", + "max-width", + 133465, + 133473, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 133474, + 133474, + null + ], + [ + "dimension-token", + "1199.98px", + 133475, + 133483, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 133484, + 133484, + null + ], + [ + "{-token", + "{", + 133485, + 133485, + null + ], + [ + "delim-token", + ".", + 133486, + 133486, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133487, + 133498, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 133499, + 133499, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 133500, + 133512, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 133513, + 133513, + null + ], + [ + "ident-token", + "top", + 133514, + 133516, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 133517, + 133517, + null + ], + [ + "number-token", + "0", + 133518, + 133518, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133519, + 133519, + null + ], + [ + "ident-token", + "right", + 133520, + 133524, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 133525, + 133525, + null + ], + [ + "number-token", + "0", + 133526, + 133526, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133527, + 133527, + null + ], + [ + "ident-token", + "left", + 133528, + 133531, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 133532, + 133532, + null + ], + [ + "number-token", + "0", + 133533, + 133533, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133534, + 133534, + null + ], + [ + "ident-token", + "height", + 133535, + 133540, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 133541, + 133541, + null + ], + [ + "function-token", + "var(", + 133542, + 133545, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133546, + 133546, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133547, + 133547, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 133548, + 133566, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 133567, + 133567, + null + ], + [ + "semicolon-token", + ";", + 133568, + 133568, + null + ], + [ + "ident-token", + "max-height", + 133569, + 133578, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 133579, + 133579, + null + ], + [ + "percentage-token", + "100%", + 133580, + 133583, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 133584, + 133584, + null + ], + [ + "ident-token", + "border-bottom", + 133585, + 133597, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 133598, + 133598, + null + ], + [ + "function-token", + "var(", + 133599, + 133602, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133603, + 133603, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133604, + 133604, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 133605, + 133629, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 133630, + 133630, + null + ], + [ + "whitespace-token", + " ", + 133631, + 133631, + null + ], + [ + "ident-token", + "solid", + 133632, + 133636, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 133637, + 133637, + null + ], + [ + "function-token", + "var(", + 133638, + 133641, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133642, + 133642, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133643, + 133643, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 133644, + 133668, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 133669, + 133669, + null + ], + [ + "semicolon-token", + ";", + 133670, + 133670, + null + ], + [ + "ident-token", + "transform", + 133671, + 133679, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 133680, + 133680, + null + ], + [ + "function-token", + "translateY(", + 133681, + 133691, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 133692, + 133696, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 133697, + 133697, + null + ], + [ + "}-token", + "}", + 133698, + 133698, + null + ], + [ + "}-token", + "}", + 133699, + 133699, + null + ], + [ + "at-keyword-token", + "@media", + 133700, + 133705, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 133706, + 133706, + null + ], + [ + "(-token", + "(", + 133707, + 133707, + null + ], + [ + "ident-token", + "max-width", + 133708, + 133716, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 133717, + 133717, + null + ], + [ + "dimension-token", + "1199.98px", + 133718, + 133726, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 133727, + 133727, + null + ], + [ + "{-token", + "{", + 133728, + 133728, + null + ], + [ + "delim-token", + ".", + 133729, + 133729, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133730, + 133741, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 133742, + 133742, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 133743, + 133758, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 133759, + 133759, + null + ], + [ + "ident-token", + "right", + 133760, + 133764, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 133765, + 133765, + null + ], + [ + "number-token", + "0", + 133766, + 133766, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133767, + 133767, + null + ], + [ + "ident-token", + "left", + 133768, + 133771, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 133772, + 133772, + null + ], + [ + "number-token", + "0", + 133773, + 133773, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 133774, + 133774, + null + ], + [ + "ident-token", + "height", + 133775, + 133780, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 133781, + 133781, + null + ], + [ + "function-token", + "var(", + 133782, + 133785, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133786, + 133786, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133787, + 133787, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 133788, + 133806, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 133807, + 133807, + null + ], + [ + "semicolon-token", + ";", + 133808, + 133808, + null + ], + [ + "ident-token", + "max-height", + 133809, + 133818, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 133819, + 133819, + null + ], + [ + "percentage-token", + "100%", + 133820, + 133823, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 133824, + 133824, + null + ], + [ + "ident-token", + "border-top", + 133825, + 133834, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 133835, + 133835, + null + ], + [ + "function-token", + "var(", + 133836, + 133839, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133840, + 133840, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133841, + 133841, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 133842, + 133866, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 133867, + 133867, + null + ], + [ + "whitespace-token", + " ", + 133868, + 133868, + null + ], + [ + "ident-token", + "solid", + 133869, + 133873, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 133874, + 133874, + null + ], + [ + "function-token", + "var(", + 133875, + 133878, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 133879, + 133879, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 133880, + 133880, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 133881, + 133905, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 133906, + 133906, + null + ], + [ + "semicolon-token", + ";", + 133907, + 133907, + null + ], + [ + "ident-token", + "transform", + 133908, + 133916, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 133917, + 133917, + null + ], + [ + "function-token", + "translateY(", + 133918, + 133928, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 133929, + 133932, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 133933, + 133933, + null + ], + [ + "}-token", + "}", + 133934, + 133934, + null + ], + [ + "}-token", + "}", + 133935, + 133935, + null + ], + [ + "at-keyword-token", + "@media", + 133936, + 133941, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 133942, + 133942, + null + ], + [ + "(-token", + "(", + 133943, + 133943, + null + ], + [ + "ident-token", + "max-width", + 133944, + 133952, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 133953, + 133953, + null + ], + [ + "dimension-token", + "1199.98px", + 133954, + 133962, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 133963, + 133963, + null + ], + [ + "{-token", + "{", + 133964, + 133964, + null + ], + [ + "delim-token", + ".", + 133965, + 133965, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133966, + 133977, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 133978, + 133978, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 133979, + 133982, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 133983, + 133983, + null + ], + [ + "function-token", + "not(", + 133984, + 133987, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 133988, + 133988, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 133989, + 133994, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 133995, + 133995, + null + ], + [ + "comma-token", + ",", + 133996, + 133996, + null + ], + [ + "delim-token", + ".", + 133997, + 133997, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 133998, + 134009, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 134010, + 134010, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 134011, + 134017, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 134018, + 134018, + null + ], + [ + "ident-token", + "transform", + 134019, + 134027, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 134028, + 134028, + null + ], + [ + "ident-token", + "none", + 134029, + 134032, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 134033, + 134033, + null + ], + [ + "}-token", + "}", + 134034, + 134034, + null + ], + [ + "at-keyword-token", + "@media", + 134035, + 134040, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 134041, + 134041, + null + ], + [ + "(-token", + "(", + 134042, + 134042, + null + ], + [ + "ident-token", + "max-width", + 134043, + 134051, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 134052, + 134052, + null + ], + [ + "dimension-token", + "1199.98px", + 134053, + 134061, + { + "value": 1199.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 134062, + 134062, + null + ], + [ + "{-token", + "{", + 134063, + 134063, + null + ], + [ + "delim-token", + ".", + 134064, + 134064, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134065, + 134076, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 134077, + 134077, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 134078, + 134083, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 134084, + 134084, + null + ], + [ + "delim-token", + ".", + 134085, + 134085, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134086, + 134097, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 134098, + 134098, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 134099, + 134102, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 134103, + 134103, + null + ], + [ + "delim-token", + ".", + 134104, + 134104, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134105, + 134116, + { + "value": "offcanvas-xl" + } + ], + [ + "delim-token", + ".", + 134117, + 134117, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 134118, + 134124, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 134125, + 134125, + null + ], + [ + "ident-token", + "visibility", + 134126, + 134135, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 134136, + 134136, + null + ], + [ + "ident-token", + "visible", + 134137, + 134143, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 134144, + 134144, + null + ], + [ + "}-token", + "}", + 134145, + 134145, + null + ], + [ + "at-keyword-token", + "@media", + 134146, + 134151, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 134152, + 134152, + null + ], + [ + "(-token", + "(", + 134153, + 134153, + null + ], + [ + "ident-token", + "min-width", + 134154, + 134162, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 134163, + 134163, + null + ], + [ + "dimension-token", + "1200px", + 134164, + 134169, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 134170, + 134170, + null + ], + [ + "{-token", + "{", + 134171, + 134171, + null + ], + [ + "delim-token", + ".", + 134172, + 134172, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134173, + 134184, + { + "value": "offcanvas-xl" + } + ], + [ + "{-token", + "{", + 134185, + 134185, + null + ], + [ + "delim-token", + "-", + 134186, + 134186, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134187, + 134187, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 134188, + 134206, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 134207, + 134207, + null + ], + [ + "ident-token", + "auto", + 134208, + 134211, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 134212, + 134212, + null + ], + [ + "delim-token", + "-", + 134213, + 134213, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134214, + 134214, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 134215, + 134239, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 134240, + 134240, + null + ], + [ + "number-token", + "0", + 134241, + 134241, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134242, + 134242, + null + ], + [ + "ident-token", + "background-color", + 134243, + 134258, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 134259, + 134259, + null + ], + [ + "ident-token", + "transparent", + 134260, + 134270, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 134271, + 134271, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 134272, + 134280, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 134281, + 134281, + null + ], + [ + "delim-token", + ".", + 134282, + 134282, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134283, + 134294, + { + "value": "offcanvas-xl" + } + ], + [ + "whitespace-token", + " ", + 134295, + 134295, + null + ], + [ + "delim-token", + ".", + 134296, + 134296, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 134297, + 134312, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 134313, + 134313, + null + ], + [ + "ident-token", + "display", + 134314, + 134320, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 134321, + 134321, + null + ], + [ + "ident-token", + "none", + 134322, + 134325, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 134326, + 134326, + null + ], + [ + "delim-token", + ".", + 134327, + 134327, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xl", + 134328, + 134339, + { + "value": "offcanvas-xl" + } + ], + [ + "whitespace-token", + " ", + 134340, + 134340, + null + ], + [ + "delim-token", + ".", + 134341, + 134341, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 134342, + 134355, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 134356, + 134356, + null + ], + [ + "ident-token", + "display", + 134357, + 134363, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 134364, + 134364, + null + ], + [ + "ident-token", + "flex", + 134365, + 134368, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 134369, + 134369, + null + ], + [ + "ident-token", + "flex-grow", + 134370, + 134378, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 134379, + 134379, + null + ], + [ + "number-token", + "0", + 134380, + 134380, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134381, + 134381, + null + ], + [ + "ident-token", + "padding", + 134382, + 134388, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 134389, + 134389, + null + ], + [ + "number-token", + "0", + 134390, + 134390, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134391, + 134391, + null + ], + [ + "ident-token", + "overflow-y", + 134392, + 134401, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 134402, + 134402, + null + ], + [ + "ident-token", + "visible", + 134403, + 134409, + { + "value": "visible" + } + ], + [ + "semicolon-token", + ";", + 134410, + 134410, + null + ], + [ + "ident-token", + "background-color", + 134411, + 134426, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 134427, + 134427, + null + ], + [ + "ident-token", + "transparent", + 134428, + 134438, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 134439, + 134439, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 134440, + 134448, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 134449, + 134449, + null + ], + [ + "}-token", + "}", + 134450, + 134450, + null + ], + [ + "at-keyword-token", + "@media", + 134451, + 134456, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 134457, + 134457, + null + ], + [ + "(-token", + "(", + 134458, + 134458, + null + ], + [ + "ident-token", + "max-width", + 134459, + 134467, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 134468, + 134468, + null + ], + [ + "dimension-token", + "1399.98px", + 134469, + 134477, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 134478, + 134478, + null + ], + [ + "{-token", + "{", + 134479, + 134479, + null + ], + [ + "delim-token", + ".", + 134480, + 134480, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 134481, + 134493, + { + "value": "offcanvas-xxl" + } + ], + [ + "{-token", + "{", + 134494, + 134494, + null + ], + [ + "ident-token", + "position", + 134495, + 134502, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 134503, + 134503, + null + ], + [ + "ident-token", + "fixed", + 134504, + 134508, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 134509, + 134509, + null + ], + [ + "ident-token", + "bottom", + 134510, + 134515, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 134516, + 134516, + null + ], + [ + "number-token", + "0", + 134517, + 134517, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134518, + 134518, + null + ], + [ + "ident-token", + "z-index", + 134519, + 134525, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 134526, + 134526, + null + ], + [ + "function-token", + "var(", + 134527, + 134530, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 134531, + 134531, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134532, + 134532, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 134533, + 134551, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 134552, + 134552, + null + ], + [ + "semicolon-token", + ";", + 134553, + 134553, + null + ], + [ + "ident-token", + "display", + 134554, + 134560, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 134561, + 134561, + null + ], + [ + "ident-token", + "flex", + 134562, + 134565, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 134566, + 134566, + null + ], + [ + "ident-token", + "flex-direction", + 134567, + 134580, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 134581, + 134581, + null + ], + [ + "ident-token", + "column", + 134582, + 134587, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 134588, + 134588, + null + ], + [ + "ident-token", + "max-width", + 134589, + 134597, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 134598, + 134598, + null + ], + [ + "percentage-token", + "100%", + 134599, + 134602, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 134603, + 134603, + null + ], + [ + "ident-token", + "color", + 134604, + 134608, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 134609, + 134609, + null + ], + [ + "function-token", + "var(", + 134610, + 134613, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 134614, + 134614, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134615, + 134615, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 134616, + 134633, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 134634, + 134634, + null + ], + [ + "semicolon-token", + ";", + 134635, + 134635, + null + ], + [ + "ident-token", + "visibility", + 134636, + 134645, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 134646, + 134646, + null + ], + [ + "ident-token", + "hidden", + 134647, + 134652, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 134653, + 134653, + null + ], + [ + "ident-token", + "background-color", + 134654, + 134669, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 134670, + 134670, + null + ], + [ + "function-token", + "var(", + 134671, + 134674, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 134675, + 134675, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134676, + 134676, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 134677, + 134691, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 134692, + 134692, + null + ], + [ + "semicolon-token", + ";", + 134693, + 134693, + null + ], + [ + "ident-token", + "background-clip", + 134694, + 134708, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 134709, + 134709, + null + ], + [ + "ident-token", + "padding-box", + 134710, + 134720, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 134721, + 134721, + null + ], + [ + "ident-token", + "outline", + 134722, + 134728, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 134729, + 134729, + null + ], + [ + "number-token", + "0", + 134730, + 134730, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134731, + 134731, + null + ], + [ + "ident-token", + "transition", + 134732, + 134741, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 134742, + 134742, + null + ], + [ + "ident-token", + "transform", + 134743, + 134751, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 134752, + 134752, + null + ], + [ + "dimension-token", + ".3s", + 134753, + 134755, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 134756, + 134756, + null + ], + [ + "ident-token", + "ease-in-out", + 134757, + 134767, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 134768, + 134768, + null + ], + [ + "}-token", + "}", + 134769, + 134769, + null + ], + [ + "at-keyword-token", + "@media", + 134770, + 134775, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 134776, + 134776, + null + ], + [ + "(-token", + "(", + 134777, + 134777, + null + ], + [ + "ident-token", + "max-width", + 134778, + 134786, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 134787, + 134787, + null + ], + [ + "dimension-token", + "1399.98px", + 134788, + 134796, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 134797, + 134797, + null + ], + [ + "whitespace-token", + " ", + 134798, + 134798, + null + ], + [ + "ident-token", + "and", + 134799, + 134801, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 134802, + 134802, + null + ], + [ + "(-token", + "(", + 134803, + 134803, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 134804, + 134825, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 134826, + 134826, + null + ], + [ + "ident-token", + "reduce", + 134827, + 134832, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 134833, + 134833, + null + ], + [ + "{-token", + "{", + 134834, + 134834, + null + ], + [ + "delim-token", + ".", + 134835, + 134835, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 134836, + 134848, + { + "value": "offcanvas-xxl" + } + ], + [ + "{-token", + "{", + 134849, + 134849, + null + ], + [ + "ident-token", + "transition", + 134850, + 134859, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 134860, + 134860, + null + ], + [ + "ident-token", + "none", + 134861, + 134864, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 134865, + 134865, + null + ], + [ + "}-token", + "}", + 134866, + 134866, + null + ], + [ + "at-keyword-token", + "@media", + 134867, + 134872, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 134873, + 134873, + null + ], + [ + "(-token", + "(", + 134874, + 134874, + null + ], + [ + "ident-token", + "max-width", + 134875, + 134883, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 134884, + 134884, + null + ], + [ + "dimension-token", + "1399.98px", + 134885, + 134893, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 134894, + 134894, + null + ], + [ + "{-token", + "{", + 134895, + 134895, + null + ], + [ + "delim-token", + ".", + 134896, + 134896, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 134897, + 134909, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 134910, + 134910, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 134911, + 134925, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 134926, + 134926, + null + ], + [ + "ident-token", + "top", + 134927, + 134929, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 134930, + 134930, + null + ], + [ + "number-token", + "0", + 134931, + 134931, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134932, + 134932, + null + ], + [ + "ident-token", + "left", + 134933, + 134936, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 134937, + 134937, + null + ], + [ + "number-token", + "0", + 134938, + 134938, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 134939, + 134939, + null + ], + [ + "ident-token", + "width", + 134940, + 134944, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 134945, + 134945, + null + ], + [ + "function-token", + "var(", + 134946, + 134949, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 134950, + 134950, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134951, + 134951, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 134952, + 134969, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 134970, + 134970, + null + ], + [ + "semicolon-token", + ";", + 134971, + 134971, + null + ], + [ + "ident-token", + "border-right", + 134972, + 134983, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 134984, + 134984, + null + ], + [ + "function-token", + "var(", + 134985, + 134988, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 134989, + 134989, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 134990, + 134990, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 134991, + 135015, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 135016, + 135016, + null + ], + [ + "whitespace-token", + " ", + 135017, + 135017, + null + ], + [ + "ident-token", + "solid", + 135018, + 135022, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 135023, + 135023, + null + ], + [ + "function-token", + "var(", + 135024, + 135027, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135028, + 135028, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135029, + 135029, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 135030, + 135054, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 135055, + 135055, + null + ], + [ + "semicolon-token", + ";", + 135056, + 135056, + null + ], + [ + "ident-token", + "transform", + 135057, + 135065, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 135066, + 135066, + null + ], + [ + "function-token", + "translateX(", + 135067, + 135077, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 135078, + 135082, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 135083, + 135083, + null + ], + [ + "}-token", + "}", + 135084, + 135084, + null + ], + [ + "}-token", + "}", + 135085, + 135085, + null + ], + [ + "at-keyword-token", + "@media", + 135086, + 135091, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 135092, + 135092, + null + ], + [ + "(-token", + "(", + 135093, + 135093, + null + ], + [ + "ident-token", + "max-width", + 135094, + 135102, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 135103, + 135103, + null + ], + [ + "dimension-token", + "1399.98px", + 135104, + 135112, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 135113, + 135113, + null + ], + [ + "{-token", + "{", + 135114, + 135114, + null + ], + [ + "delim-token", + ".", + 135115, + 135115, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135116, + 135128, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135129, + 135129, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 135130, + 135142, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 135143, + 135143, + null + ], + [ + "ident-token", + "top", + 135144, + 135146, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 135147, + 135147, + null + ], + [ + "number-token", + "0", + 135148, + 135148, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135149, + 135149, + null + ], + [ + "ident-token", + "right", + 135150, + 135154, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 135155, + 135155, + null + ], + [ + "number-token", + "0", + 135156, + 135156, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135157, + 135157, + null + ], + [ + "ident-token", + "width", + 135158, + 135162, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 135163, + 135163, + null + ], + [ + "function-token", + "var(", + 135164, + 135167, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135168, + 135168, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135169, + 135169, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 135170, + 135187, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 135188, + 135188, + null + ], + [ + "semicolon-token", + ";", + 135189, + 135189, + null + ], + [ + "ident-token", + "border-left", + 135190, + 135200, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 135201, + 135201, + null + ], + [ + "function-token", + "var(", + 135202, + 135205, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135206, + 135206, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135207, + 135207, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 135208, + 135232, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 135233, + 135233, + null + ], + [ + "whitespace-token", + " ", + 135234, + 135234, + null + ], + [ + "ident-token", + "solid", + 135235, + 135239, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 135240, + 135240, + null + ], + [ + "function-token", + "var(", + 135241, + 135244, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135245, + 135245, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135246, + 135246, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 135247, + 135271, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 135272, + 135272, + null + ], + [ + "semicolon-token", + ";", + 135273, + 135273, + null + ], + [ + "ident-token", + "transform", + 135274, + 135282, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 135283, + 135283, + null + ], + [ + "function-token", + "translateX(", + 135284, + 135294, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 135295, + 135298, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 135299, + 135299, + null + ], + [ + "}-token", + "}", + 135300, + 135300, + null + ], + [ + "}-token", + "}", + 135301, + 135301, + null + ], + [ + "at-keyword-token", + "@media", + 135302, + 135307, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 135308, + 135308, + null + ], + [ + "(-token", + "(", + 135309, + 135309, + null + ], + [ + "ident-token", + "max-width", + 135310, + 135318, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 135319, + 135319, + null + ], + [ + "dimension-token", + "1399.98px", + 135320, + 135328, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 135329, + 135329, + null + ], + [ + "{-token", + "{", + 135330, + 135330, + null + ], + [ + "delim-token", + ".", + 135331, + 135331, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135332, + 135344, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135345, + 135345, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 135346, + 135358, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 135359, + 135359, + null + ], + [ + "ident-token", + "top", + 135360, + 135362, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 135363, + 135363, + null + ], + [ + "number-token", + "0", + 135364, + 135364, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135365, + 135365, + null + ], + [ + "ident-token", + "right", + 135366, + 135370, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 135371, + 135371, + null + ], + [ + "number-token", + "0", + 135372, + 135372, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135373, + 135373, + null + ], + [ + "ident-token", + "left", + 135374, + 135377, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 135378, + 135378, + null + ], + [ + "number-token", + "0", + 135379, + 135379, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135380, + 135380, + null + ], + [ + "ident-token", + "height", + 135381, + 135386, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 135387, + 135387, + null + ], + [ + "function-token", + "var(", + 135388, + 135391, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135392, + 135392, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135393, + 135393, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 135394, + 135412, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 135413, + 135413, + null + ], + [ + "semicolon-token", + ";", + 135414, + 135414, + null + ], + [ + "ident-token", + "max-height", + 135415, + 135424, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 135425, + 135425, + null + ], + [ + "percentage-token", + "100%", + 135426, + 135429, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 135430, + 135430, + null + ], + [ + "ident-token", + "border-bottom", + 135431, + 135443, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 135444, + 135444, + null + ], + [ + "function-token", + "var(", + 135445, + 135448, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135449, + 135449, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135450, + 135450, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 135451, + 135475, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 135476, + 135476, + null + ], + [ + "whitespace-token", + " ", + 135477, + 135477, + null + ], + [ + "ident-token", + "solid", + 135478, + 135482, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 135483, + 135483, + null + ], + [ + "function-token", + "var(", + 135484, + 135487, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135488, + 135488, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135489, + 135489, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 135490, + 135514, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 135515, + 135515, + null + ], + [ + "semicolon-token", + ";", + 135516, + 135516, + null + ], + [ + "ident-token", + "transform", + 135517, + 135525, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 135526, + 135526, + null + ], + [ + "function-token", + "translateY(", + 135527, + 135537, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 135538, + 135542, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 135543, + 135543, + null + ], + [ + "}-token", + "}", + 135544, + 135544, + null + ], + [ + "}-token", + "}", + 135545, + 135545, + null + ], + [ + "at-keyword-token", + "@media", + 135546, + 135551, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 135552, + 135552, + null + ], + [ + "(-token", + "(", + 135553, + 135553, + null + ], + [ + "ident-token", + "max-width", + 135554, + 135562, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 135563, + 135563, + null + ], + [ + "dimension-token", + "1399.98px", + 135564, + 135572, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 135573, + 135573, + null + ], + [ + "{-token", + "{", + 135574, + 135574, + null + ], + [ + "delim-token", + ".", + 135575, + 135575, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135576, + 135588, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135589, + 135589, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 135590, + 135605, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 135606, + 135606, + null + ], + [ + "ident-token", + "right", + 135607, + 135611, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 135612, + 135612, + null + ], + [ + "number-token", + "0", + 135613, + 135613, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135614, + 135614, + null + ], + [ + "ident-token", + "left", + 135615, + 135618, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 135619, + 135619, + null + ], + [ + "number-token", + "0", + 135620, + 135620, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 135621, + 135621, + null + ], + [ + "ident-token", + "height", + 135622, + 135627, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 135628, + 135628, + null + ], + [ + "function-token", + "var(", + 135629, + 135632, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135633, + 135633, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135634, + 135634, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 135635, + 135653, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 135654, + 135654, + null + ], + [ + "semicolon-token", + ";", + 135655, + 135655, + null + ], + [ + "ident-token", + "max-height", + 135656, + 135665, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 135666, + 135666, + null + ], + [ + "percentage-token", + "100%", + 135667, + 135670, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 135671, + 135671, + null + ], + [ + "ident-token", + "border-top", + 135672, + 135681, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 135682, + 135682, + null + ], + [ + "function-token", + "var(", + 135683, + 135686, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135687, + 135687, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135688, + 135688, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 135689, + 135713, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 135714, + 135714, + null + ], + [ + "whitespace-token", + " ", + 135715, + 135715, + null + ], + [ + "ident-token", + "solid", + 135716, + 135720, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 135721, + 135721, + null + ], + [ + "function-token", + "var(", + 135722, + 135725, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 135726, + 135726, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 135727, + 135727, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 135728, + 135752, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 135753, + 135753, + null + ], + [ + "semicolon-token", + ";", + 135754, + 135754, + null + ], + [ + "ident-token", + "transform", + 135755, + 135763, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 135764, + 135764, + null + ], + [ + "function-token", + "translateY(", + 135765, + 135775, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 135776, + 135779, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 135780, + 135780, + null + ], + [ + "}-token", + "}", + 135781, + 135781, + null + ], + [ + "}-token", + "}", + 135782, + 135782, + null + ], + [ + "at-keyword-token", + "@media", + 135783, + 135788, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 135789, + 135789, + null + ], + [ + "(-token", + "(", + 135790, + 135790, + null + ], + [ + "ident-token", + "max-width", + 135791, + 135799, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 135800, + 135800, + null + ], + [ + "dimension-token", + "1399.98px", + 135801, + 135809, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 135810, + 135810, + null + ], + [ + "{-token", + "{", + 135811, + 135811, + null + ], + [ + "delim-token", + ".", + 135812, + 135812, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135813, + 135825, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135826, + 135826, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 135827, + 135830, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 135831, + 135831, + null + ], + [ + "function-token", + "not(", + 135832, + 135835, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 135836, + 135836, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 135837, + 135842, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 135843, + 135843, + null + ], + [ + "comma-token", + ",", + 135844, + 135844, + null + ], + [ + "delim-token", + ".", + 135845, + 135845, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135846, + 135858, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135859, + 135859, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 135860, + 135866, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 135867, + 135867, + null + ], + [ + "ident-token", + "transform", + 135868, + 135876, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 135877, + 135877, + null + ], + [ + "ident-token", + "none", + 135878, + 135881, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 135882, + 135882, + null + ], + [ + "}-token", + "}", + 135883, + 135883, + null + ], + [ + "at-keyword-token", + "@media", + 135884, + 135889, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 135890, + 135890, + null + ], + [ + "(-token", + "(", + 135891, + 135891, + null + ], + [ + "ident-token", + "max-width", + 135892, + 135900, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 135901, + 135901, + null + ], + [ + "dimension-token", + "1399.98px", + 135902, + 135910, + { + "value": 1399.98, + "type": "number", + "unit": "px" + } + ], + [ + ")-token", + ")", + 135911, + 135911, + null + ], + [ + "{-token", + "{", + 135912, + 135912, + null + ], + [ + "delim-token", + ".", + 135913, + 135913, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135914, + 135926, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135927, + 135927, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 135928, + 135933, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 135934, + 135934, + null + ], + [ + "delim-token", + ".", + 135935, + 135935, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135936, + 135948, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135949, + 135949, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 135950, + 135953, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 135954, + 135954, + null + ], + [ + "delim-token", + ".", + 135955, + 135955, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 135956, + 135968, + { + "value": "offcanvas-xxl" + } + ], + [ + "delim-token", + ".", + 135969, + 135969, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 135970, + 135976, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 135977, + 135977, + null + ], + [ + "ident-token", + "visibility", + 135978, + 135987, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 135988, + 135988, + null + ], + [ + "ident-token", + "visible", + 135989, + 135995, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 135996, + 135996, + null + ], + [ + "}-token", + "}", + 135997, + 135997, + null + ], + [ + "at-keyword-token", + "@media", + 135998, + 136003, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 136004, + 136004, + null + ], + [ + "(-token", + "(", + 136005, + 136005, + null + ], + [ + "ident-token", + "min-width", + 136006, + 136014, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 136015, + 136015, + null + ], + [ + "dimension-token", + "1400px", + 136016, + 136021, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 136022, + 136022, + null + ], + [ + "{-token", + "{", + 136023, + 136023, + null + ], + [ + "delim-token", + ".", + 136024, + 136024, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 136025, + 136037, + { + "value": "offcanvas-xxl" + } + ], + [ + "{-token", + "{", + 136038, + 136038, + null + ], + [ + "delim-token", + "-", + 136039, + 136039, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136040, + 136040, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 136041, + 136059, + { + "value": "bs-offcanvas-height" + } + ], + [ + "colon-token", + ":", + 136060, + 136060, + null + ], + [ + "ident-token", + "auto", + 136061, + 136064, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 136065, + 136065, + null + ], + [ + "delim-token", + "-", + 136066, + 136066, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136067, + 136067, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 136068, + 136092, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + "colon-token", + ":", + 136093, + 136093, + null + ], + [ + "number-token", + "0", + 136094, + 136094, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136095, + 136095, + null + ], + [ + "ident-token", + "background-color", + 136096, + 136111, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 136112, + 136112, + null + ], + [ + "ident-token", + "transparent", + 136113, + 136123, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 136124, + 136124, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 136125, + 136133, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 136134, + 136134, + null + ], + [ + "delim-token", + ".", + 136135, + 136135, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 136136, + 136148, + { + "value": "offcanvas-xxl" + } + ], + [ + "whitespace-token", + " ", + 136149, + 136149, + null + ], + [ + "delim-token", + ".", + 136150, + 136150, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 136151, + 136166, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 136167, + 136167, + null + ], + [ + "ident-token", + "display", + 136168, + 136174, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 136175, + 136175, + null + ], + [ + "ident-token", + "none", + 136176, + 136179, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 136180, + 136180, + null + ], + [ + "delim-token", + ".", + 136181, + 136181, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-xxl", + 136182, + 136194, + { + "value": "offcanvas-xxl" + } + ], + [ + "whitespace-token", + " ", + 136195, + 136195, + null + ], + [ + "delim-token", + ".", + 136196, + 136196, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 136197, + 136210, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 136211, + 136211, + null + ], + [ + "ident-token", + "display", + 136212, + 136218, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 136219, + 136219, + null + ], + [ + "ident-token", + "flex", + 136220, + 136223, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 136224, + 136224, + null + ], + [ + "ident-token", + "flex-grow", + 136225, + 136233, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 136234, + 136234, + null + ], + [ + "number-token", + "0", + 136235, + 136235, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136236, + 136236, + null + ], + [ + "ident-token", + "padding", + 136237, + 136243, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 136244, + 136244, + null + ], + [ + "number-token", + "0", + 136245, + 136245, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136246, + 136246, + null + ], + [ + "ident-token", + "overflow-y", + 136247, + 136256, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 136257, + 136257, + null + ], + [ + "ident-token", + "visible", + 136258, + 136264, + { + "value": "visible" + } + ], + [ + "semicolon-token", + ";", + 136265, + 136265, + null + ], + [ + "ident-token", + "background-color", + 136266, + 136281, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 136282, + 136282, + null + ], + [ + "ident-token", + "transparent", + 136283, + 136293, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 136294, + 136294, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 136295, + 136303, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 136304, + 136304, + null + ], + [ + "}-token", + "}", + 136305, + 136305, + null + ], + [ + "delim-token", + ".", + 136306, + 136306, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 136307, + 136315, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 136316, + 136316, + null + ], + [ + "ident-token", + "position", + 136317, + 136324, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 136325, + 136325, + null + ], + [ + "ident-token", + "fixed", + 136326, + 136330, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 136331, + 136331, + null + ], + [ + "ident-token", + "bottom", + 136332, + 136337, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 136338, + 136338, + null + ], + [ + "number-token", + "0", + 136339, + 136339, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136340, + 136340, + null + ], + [ + "ident-token", + "z-index", + 136341, + 136347, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 136348, + 136348, + null + ], + [ + "function-token", + "var(", + 136349, + 136352, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136353, + 136353, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136354, + 136354, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-zindex", + 136355, + 136373, + { + "value": "bs-offcanvas-zindex" + } + ], + [ + ")-token", + ")", + 136374, + 136374, + null + ], + [ + "semicolon-token", + ";", + 136375, + 136375, + null + ], + [ + "ident-token", + "display", + 136376, + 136382, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 136383, + 136383, + null + ], + [ + "ident-token", + "flex", + 136384, + 136387, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 136388, + 136388, + null + ], + [ + "ident-token", + "flex-direction", + 136389, + 136402, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 136403, + 136403, + null + ], + [ + "ident-token", + "column", + 136404, + 136409, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 136410, + 136410, + null + ], + [ + "ident-token", + "max-width", + 136411, + 136419, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 136420, + 136420, + null + ], + [ + "percentage-token", + "100%", + 136421, + 136424, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 136425, + 136425, + null + ], + [ + "ident-token", + "color", + 136426, + 136430, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 136431, + 136431, + null + ], + [ + "function-token", + "var(", + 136432, + 136435, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136436, + 136436, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136437, + 136437, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-color", + 136438, + 136455, + { + "value": "bs-offcanvas-color" + } + ], + [ + ")-token", + ")", + 136456, + 136456, + null + ], + [ + "semicolon-token", + ";", + 136457, + 136457, + null + ], + [ + "ident-token", + "visibility", + 136458, + 136467, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 136468, + 136468, + null + ], + [ + "ident-token", + "hidden", + 136469, + 136474, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 136475, + 136475, + null + ], + [ + "ident-token", + "background-color", + 136476, + 136491, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 136492, + 136492, + null + ], + [ + "function-token", + "var(", + 136493, + 136496, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136497, + 136497, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136498, + 136498, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-bg", + 136499, + 136513, + { + "value": "bs-offcanvas-bg" + } + ], + [ + ")-token", + ")", + 136514, + 136514, + null + ], + [ + "semicolon-token", + ";", + 136515, + 136515, + null + ], + [ + "ident-token", + "background-clip", + 136516, + 136530, + { + "value": "background-clip" + } + ], + [ + "colon-token", + ":", + 136531, + 136531, + null + ], + [ + "ident-token", + "padding-box", + 136532, + 136542, + { + "value": "padding-box" + } + ], + [ + "semicolon-token", + ";", + 136543, + 136543, + null + ], + [ + "ident-token", + "outline", + 136544, + 136550, + { + "value": "outline" + } + ], + [ + "colon-token", + ":", + 136551, + 136551, + null + ], + [ + "number-token", + "0", + 136552, + 136552, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136553, + 136553, + null + ], + [ + "ident-token", + "transition", + 136554, + 136563, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 136564, + 136564, + null + ], + [ + "ident-token", + "transform", + 136565, + 136573, + { + "value": "transform" + } + ], + [ + "whitespace-token", + " ", + 136574, + 136574, + null + ], + [ + "dimension-token", + ".3s", + 136575, + 136577, + { + "value": 0.3, + "type": "number", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 136578, + 136578, + null + ], + [ + "ident-token", + "ease-in-out", + 136579, + 136589, + { + "value": "ease-in-out" + } + ], + [ + "}-token", + "}", + 136590, + 136590, + null + ], + [ + "at-keyword-token", + "@media", + 136591, + 136596, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 136597, + 136597, + null + ], + [ + "(-token", + "(", + 136598, + 136598, + null + ], + [ + "ident-token", + "prefers-reduced-motion", + 136599, + 136620, + { + "value": "prefers-reduced-motion" + } + ], + [ + "colon-token", + ":", + 136621, + 136621, + null + ], + [ + "ident-token", + "reduce", + 136622, + 136627, + { + "value": "reduce" + } + ], + [ + ")-token", + ")", + 136628, + 136628, + null + ], + [ + "{-token", + "{", + 136629, + 136629, + null + ], + [ + "delim-token", + ".", + 136630, + 136630, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 136631, + 136639, + { + "value": "offcanvas" + } + ], + [ + "{-token", + "{", + 136640, + 136640, + null + ], + [ + "ident-token", + "transition", + 136641, + 136650, + { + "value": "transition" + } + ], + [ + "colon-token", + ":", + 136651, + 136651, + null + ], + [ + "ident-token", + "none", + 136652, + 136655, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 136656, + 136656, + null + ], + [ + "}-token", + "}", + 136657, + 136657, + null + ], + [ + "delim-token", + ".", + 136658, + 136658, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 136659, + 136667, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 136668, + 136668, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-start", + 136669, + 136683, + { + "value": "offcanvas-start" + } + ], + [ + "{-token", + "{", + 136684, + 136684, + null + ], + [ + "ident-token", + "top", + 136685, + 136687, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 136688, + 136688, + null + ], + [ + "number-token", + "0", + 136689, + 136689, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136690, + 136690, + null + ], + [ + "ident-token", + "left", + 136691, + 136694, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 136695, + 136695, + null + ], + [ + "number-token", + "0", + 136696, + 136696, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136697, + 136697, + null + ], + [ + "ident-token", + "width", + 136698, + 136702, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 136703, + 136703, + null + ], + [ + "function-token", + "var(", + 136704, + 136707, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136708, + 136708, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136709, + 136709, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 136710, + 136727, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 136728, + 136728, + null + ], + [ + "semicolon-token", + ";", + 136729, + 136729, + null + ], + [ + "ident-token", + "border-right", + 136730, + 136741, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 136742, + 136742, + null + ], + [ + "function-token", + "var(", + 136743, + 136746, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136747, + 136747, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136748, + 136748, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 136749, + 136773, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 136774, + 136774, + null + ], + [ + "whitespace-token", + " ", + 136775, + 136775, + null + ], + [ + "ident-token", + "solid", + 136776, + 136780, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 136781, + 136781, + null + ], + [ + "function-token", + "var(", + 136782, + 136785, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136786, + 136786, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136787, + 136787, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 136788, + 136812, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 136813, + 136813, + null + ], + [ + "semicolon-token", + ";", + 136814, + 136814, + null + ], + [ + "ident-token", + "transform", + 136815, + 136823, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 136824, + 136824, + null + ], + [ + "function-token", + "translateX(", + 136825, + 136835, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-100%", + 136836, + 136840, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 136841, + 136841, + null + ], + [ + "}-token", + "}", + 136842, + 136842, + null + ], + [ + "delim-token", + ".", + 136843, + 136843, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 136844, + 136852, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 136853, + 136853, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-end", + 136854, + 136866, + { + "value": "offcanvas-end" + } + ], + [ + "{-token", + "{", + 136867, + 136867, + null + ], + [ + "ident-token", + "top", + 136868, + 136870, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 136871, + 136871, + null + ], + [ + "number-token", + "0", + 136872, + 136872, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136873, + 136873, + null + ], + [ + "ident-token", + "right", + 136874, + 136878, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 136879, + 136879, + null + ], + [ + "number-token", + "0", + 136880, + 136880, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 136881, + 136881, + null + ], + [ + "ident-token", + "width", + 136882, + 136886, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 136887, + 136887, + null + ], + [ + "function-token", + "var(", + 136888, + 136891, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136892, + 136892, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136893, + 136893, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-width", + 136894, + 136911, + { + "value": "bs-offcanvas-width" + } + ], + [ + ")-token", + ")", + 136912, + 136912, + null + ], + [ + "semicolon-token", + ";", + 136913, + 136913, + null + ], + [ + "ident-token", + "border-left", + 136914, + 136924, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 136925, + 136925, + null + ], + [ + "function-token", + "var(", + 136926, + 136929, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136930, + 136930, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136931, + 136931, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 136932, + 136956, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 136957, + 136957, + null + ], + [ + "whitespace-token", + " ", + 136958, + 136958, + null + ], + [ + "ident-token", + "solid", + 136959, + 136963, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 136964, + 136964, + null + ], + [ + "function-token", + "var(", + 136965, + 136968, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 136969, + 136969, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 136970, + 136970, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 136971, + 136995, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 136996, + 136996, + null + ], + [ + "semicolon-token", + ";", + 136997, + 136997, + null + ], + [ + "ident-token", + "transform", + 136998, + 137006, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 137007, + 137007, + null + ], + [ + "function-token", + "translateX(", + 137008, + 137018, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "100%", + 137019, + 137022, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 137023, + 137023, + null + ], + [ + "}-token", + "}", + 137024, + 137024, + null + ], + [ + "delim-token", + ".", + 137025, + 137025, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137026, + 137034, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137035, + 137035, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-top", + 137036, + 137048, + { + "value": "offcanvas-top" + } + ], + [ + "{-token", + "{", + 137049, + 137049, + null + ], + [ + "ident-token", + "top", + 137050, + 137052, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 137053, + 137053, + null + ], + [ + "number-token", + "0", + 137054, + 137054, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137055, + 137055, + null + ], + [ + "ident-token", + "right", + 137056, + 137060, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 137061, + 137061, + null + ], + [ + "number-token", + "0", + 137062, + 137062, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137063, + 137063, + null + ], + [ + "ident-token", + "left", + 137064, + 137067, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 137068, + 137068, + null + ], + [ + "number-token", + "0", + 137069, + 137069, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137070, + 137070, + null + ], + [ + "ident-token", + "height", + 137071, + 137076, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 137077, + 137077, + null + ], + [ + "function-token", + "var(", + 137078, + 137081, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137082, + 137082, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137083, + 137083, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 137084, + 137102, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 137103, + 137103, + null + ], + [ + "semicolon-token", + ";", + 137104, + 137104, + null + ], + [ + "ident-token", + "max-height", + 137105, + 137114, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 137115, + 137115, + null + ], + [ + "percentage-token", + "100%", + 137116, + 137119, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 137120, + 137120, + null + ], + [ + "ident-token", + "border-bottom", + 137121, + 137133, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 137134, + 137134, + null + ], + [ + "function-token", + "var(", + 137135, + 137138, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137139, + 137139, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137140, + 137140, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 137141, + 137165, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 137166, + 137166, + null + ], + [ + "whitespace-token", + " ", + 137167, + 137167, + null + ], + [ + "ident-token", + "solid", + 137168, + 137172, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 137173, + 137173, + null + ], + [ + "function-token", + "var(", + 137174, + 137177, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137178, + 137178, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137179, + 137179, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 137180, + 137204, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 137205, + 137205, + null + ], + [ + "semicolon-token", + ";", + 137206, + 137206, + null + ], + [ + "ident-token", + "transform", + 137207, + 137215, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 137216, + 137216, + null + ], + [ + "function-token", + "translateY(", + 137217, + 137227, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-100%", + 137228, + 137232, + { + "value": -100 + } + ], + [ + ")-token", + ")", + 137233, + 137233, + null + ], + [ + "}-token", + "}", + 137234, + 137234, + null + ], + [ + "delim-token", + ".", + 137235, + 137235, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137236, + 137244, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137245, + 137245, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-bottom", + 137246, + 137261, + { + "value": "offcanvas-bottom" + } + ], + [ + "{-token", + "{", + 137262, + 137262, + null + ], + [ + "ident-token", + "right", + 137263, + 137267, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 137268, + 137268, + null + ], + [ + "number-token", + "0", + 137269, + 137269, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137270, + 137270, + null + ], + [ + "ident-token", + "left", + 137271, + 137274, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 137275, + 137275, + null + ], + [ + "number-token", + "0", + 137276, + 137276, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137277, + 137277, + null + ], + [ + "ident-token", + "height", + 137278, + 137283, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 137284, + 137284, + null + ], + [ + "function-token", + "var(", + 137285, + 137288, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137289, + 137289, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137290, + 137290, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-height", + 137291, + 137309, + { + "value": "bs-offcanvas-height" + } + ], + [ + ")-token", + ")", + 137310, + 137310, + null + ], + [ + "semicolon-token", + ";", + 137311, + 137311, + null + ], + [ + "ident-token", + "max-height", + 137312, + 137321, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 137322, + 137322, + null + ], + [ + "percentage-token", + "100%", + 137323, + 137326, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 137327, + 137327, + null + ], + [ + "ident-token", + "border-top", + 137328, + 137337, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 137338, + 137338, + null + ], + [ + "function-token", + "var(", + 137339, + 137342, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137343, + 137343, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137344, + 137344, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-width", + 137345, + 137369, + { + "value": "bs-offcanvas-border-width" + } + ], + [ + ")-token", + ")", + 137370, + 137370, + null + ], + [ + "whitespace-token", + " ", + 137371, + 137371, + null + ], + [ + "ident-token", + "solid", + 137372, + 137376, + { + "value": "solid" + } + ], + [ + "whitespace-token", + " ", + 137377, + 137377, + null + ], + [ + "function-token", + "var(", + 137378, + 137381, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137382, + 137382, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137383, + 137383, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-border-color", + 137384, + 137408, + { + "value": "bs-offcanvas-border-color" + } + ], + [ + ")-token", + ")", + 137409, + 137409, + null + ], + [ + "semicolon-token", + ";", + 137410, + 137410, + null + ], + [ + "ident-token", + "transform", + 137411, + 137419, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 137420, + 137420, + null + ], + [ + "function-token", + "translateY(", + 137421, + 137431, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "100%", + 137432, + 137435, + { + "value": 100 + } + ], + [ + ")-token", + ")", + 137436, + 137436, + null + ], + [ + "}-token", + "}", + 137437, + 137437, + null + ], + [ + "delim-token", + ".", + 137438, + 137438, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137439, + 137447, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137448, + 137448, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 137449, + 137452, + { + "value": "show" + } + ], + [ + "colon-token", + ":", + 137453, + 137453, + null + ], + [ + "function-token", + "not(", + 137454, + 137457, + { + "value": "not" + } + ], + [ + "delim-token", + ".", + 137458, + 137458, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 137459, + 137464, + { + "value": "hiding" + } + ], + [ + ")-token", + ")", + 137465, + 137465, + null + ], + [ + "comma-token", + ",", + 137466, + 137466, + null + ], + [ + "delim-token", + ".", + 137467, + 137467, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137468, + 137476, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137477, + 137477, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 137478, + 137484, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 137485, + 137485, + null + ], + [ + "ident-token", + "transform", + 137486, + 137494, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 137495, + 137495, + null + ], + [ + "ident-token", + "none", + 137496, + 137499, + { + "value": "none" + } + ], + [ + "}-token", + "}", + 137500, + 137500, + null + ], + [ + "delim-token", + ".", + 137501, + 137501, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137502, + 137510, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137511, + 137511, + { + "value": "." + } + ], + [ + "ident-token", + "hiding", + 137512, + 137517, + { + "value": "hiding" + } + ], + [ + "comma-token", + ",", + 137518, + 137518, + null + ], + [ + "delim-token", + ".", + 137519, + 137519, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137520, + 137528, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137529, + 137529, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 137530, + 137533, + { + "value": "show" + } + ], + [ + "comma-token", + ",", + 137534, + 137534, + null + ], + [ + "delim-token", + ".", + 137535, + 137535, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas", + 137536, + 137544, + { + "value": "offcanvas" + } + ], + [ + "delim-token", + ".", + 137545, + 137545, + { + "value": "." + } + ], + [ + "ident-token", + "showing", + 137546, + 137552, + { + "value": "showing" + } + ], + [ + "{-token", + "{", + 137553, + 137553, + null + ], + [ + "ident-token", + "visibility", + 137554, + 137563, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 137564, + 137564, + null + ], + [ + "ident-token", + "visible", + 137565, + 137571, + { + "value": "visible" + } + ], + [ + "}-token", + "}", + 137572, + 137572, + null + ], + [ + "delim-token", + ".", + 137573, + 137573, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-backdrop", + 137574, + 137591, + { + "value": "offcanvas-backdrop" + } + ], + [ + "{-token", + "{", + 137592, + 137592, + null + ], + [ + "ident-token", + "position", + 137593, + 137600, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 137601, + 137601, + null + ], + [ + "ident-token", + "fixed", + 137602, + 137606, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 137607, + 137607, + null + ], + [ + "ident-token", + "top", + 137608, + 137610, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 137611, + 137611, + null + ], + [ + "number-token", + "0", + 137612, + 137612, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137613, + 137613, + null + ], + [ + "ident-token", + "left", + 137614, + 137617, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 137618, + 137618, + null + ], + [ + "number-token", + "0", + 137619, + 137619, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137620, + 137620, + null + ], + [ + "ident-token", + "z-index", + 137621, + 137627, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 137628, + 137628, + null + ], + [ + "number-token", + "1040", + 137629, + 137632, + { + "value": 1040, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 137633, + 137633, + null + ], + [ + "ident-token", + "width", + 137634, + 137638, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 137639, + 137639, + null + ], + [ + "dimension-token", + "100vw", + 137640, + 137644, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "semicolon-token", + ";", + 137645, + 137645, + null + ], + [ + "ident-token", + "height", + 137646, + 137651, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 137652, + 137652, + null + ], + [ + "dimension-token", + "100vh", + 137653, + 137657, + { + "value": 100, + "type": "integer", + "unit": "vh" + } + ], + [ + "semicolon-token", + ";", + 137658, + 137658, + null + ], + [ + "ident-token", + "background-color", + 137659, + 137674, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 137675, + 137675, + null + ], + [ + "hash-token", + "#000", + 137676, + 137679, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "}-token", + "}", + 137680, + 137680, + null + ], + [ + "delim-token", + ".", + 137681, + 137681, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-backdrop", + 137682, + 137699, + { + "value": "offcanvas-backdrop" + } + ], + [ + "delim-token", + ".", + 137700, + 137700, + { + "value": "." + } + ], + [ + "ident-token", + "fade", + 137701, + 137704, + { + "value": "fade" + } + ], + [ + "{-token", + "{", + 137705, + 137705, + null + ], + [ + "ident-token", + "opacity", + 137706, + 137712, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 137713, + 137713, + null + ], + [ + "number-token", + "0", + 137714, + 137714, + { + "value": 0, + "type": "integer" + } + ], + [ + "}-token", + "}", + 137715, + 137715, + null + ], + [ + "delim-token", + ".", + 137716, + 137716, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-backdrop", + 137717, + 137734, + { + "value": "offcanvas-backdrop" + } + ], + [ + "delim-token", + ".", + 137735, + 137735, + { + "value": "." + } + ], + [ + "ident-token", + "show", + 137736, + 137739, + { + "value": "show" + } + ], + [ + "{-token", + "{", + 137740, + 137740, + null + ], + [ + "ident-token", + "opacity", + 137741, + 137747, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 137748, + 137748, + null + ], + [ + "number-token", + ".5", + 137749, + 137750, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 137751, + 137751, + null + ], + [ + "delim-token", + ".", + 137752, + 137752, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 137753, + 137768, + { + "value": "offcanvas-header" + } + ], + [ + "{-token", + "{", + 137769, + 137769, + null + ], + [ + "ident-token", + "display", + 137770, + 137776, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 137777, + 137777, + null + ], + [ + "ident-token", + "flex", + 137778, + 137781, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 137782, + 137782, + null + ], + [ + "ident-token", + "align-items", + 137783, + 137793, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 137794, + 137794, + null + ], + [ + "ident-token", + "center", + 137795, + 137800, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 137801, + 137801, + null + ], + [ + "ident-token", + "justify-content", + 137802, + 137816, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 137817, + 137817, + null + ], + [ + "ident-token", + "space-between", + 137818, + 137830, + { + "value": "space-between" + } + ], + [ + "semicolon-token", + ";", + 137831, + 137831, + null + ], + [ + "ident-token", + "padding", + 137832, + 137838, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 137839, + 137839, + null + ], + [ + "function-token", + "var(", + 137840, + 137843, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137844, + 137844, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137845, + 137845, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 137846, + 137867, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + ")-token", + ")", + 137868, + 137868, + null + ], + [ + "whitespace-token", + " ", + 137869, + 137869, + null + ], + [ + "function-token", + "var(", + 137870, + 137873, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137874, + 137874, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137875, + 137875, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-x", + 137876, + 137897, + { + "value": "bs-offcanvas-padding-x" + } + ], + [ + ")-token", + ")", + 137898, + 137898, + null + ], + [ + "}-token", + "}", + 137899, + 137899, + null + ], + [ + "delim-token", + ".", + 137900, + 137900, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-header", + 137901, + 137916, + { + "value": "offcanvas-header" + } + ], + [ + "whitespace-token", + " ", + 137917, + 137917, + null + ], + [ + "delim-token", + ".", + 137918, + 137918, + { + "value": "." + } + ], + [ + "ident-token", + "btn-close", + 137919, + 137927, + { + "value": "btn-close" + } + ], + [ + "{-token", + "{", + 137928, + 137928, + null + ], + [ + "ident-token", + "padding", + 137929, + 137935, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 137936, + 137936, + null + ], + [ + "function-token", + "calc(", + 137937, + 137941, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 137942, + 137945, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137946, + 137946, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137947, + 137947, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 137948, + 137969, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + ")-token", + ")", + 137970, + 137970, + null + ], + [ + "whitespace-token", + " ", + 137971, + 137971, + null + ], + [ + "delim-token", + "*", + 137972, + 137972, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 137973, + 137973, + null + ], + [ + "number-token", + ".5", + 137974, + 137975, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 137976, + 137976, + null + ], + [ + "whitespace-token", + " ", + 137977, + 137977, + null + ], + [ + "function-token", + "calc(", + 137978, + 137982, + { + "value": "calc" + } + ], + [ + "function-token", + "var(", + 137983, + 137986, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 137987, + 137987, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 137988, + 137988, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-x", + 137989, + 138010, + { + "value": "bs-offcanvas-padding-x" + } + ], + [ + ")-token", + ")", + 138011, + 138011, + null + ], + [ + "whitespace-token", + " ", + 138012, + 138012, + null + ], + [ + "delim-token", + "*", + 138013, + 138013, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 138014, + 138014, + null + ], + [ + "number-token", + ".5", + 138015, + 138016, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 138017, + 138017, + null + ], + [ + "semicolon-token", + ";", + 138018, + 138018, + null + ], + [ + "ident-token", + "margin-top", + 138019, + 138028, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 138029, + 138029, + null + ], + [ + "function-token", + "calc(", + 138030, + 138034, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 138035, + 138037, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 138038, + 138038, + null + ], + [ + "delim-token", + "*", + 138039, + 138039, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 138040, + 138040, + null + ], + [ + "function-token", + "var(", + 138041, + 138044, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 138045, + 138045, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 138046, + 138046, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 138047, + 138068, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + ")-token", + ")", + 138069, + 138069, + null + ], + [ + ")-token", + ")", + 138070, + 138070, + null + ], + [ + "semicolon-token", + ";", + 138071, + 138071, + null + ], + [ + "ident-token", + "margin-right", + 138072, + 138083, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 138084, + 138084, + null + ], + [ + "function-token", + "calc(", + 138085, + 138089, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 138090, + 138092, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 138093, + 138093, + null + ], + [ + "delim-token", + "*", + 138094, + 138094, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 138095, + 138095, + null + ], + [ + "function-token", + "var(", + 138096, + 138099, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 138100, + 138100, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 138101, + 138101, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-x", + 138102, + 138123, + { + "value": "bs-offcanvas-padding-x" + } + ], + [ + ")-token", + ")", + 138124, + 138124, + null + ], + [ + ")-token", + ")", + 138125, + 138125, + null + ], + [ + "semicolon-token", + ";", + 138126, + 138126, + null + ], + [ + "ident-token", + "margin-bottom", + 138127, + 138139, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 138140, + 138140, + null + ], + [ + "function-token", + "calc(", + 138141, + 138145, + { + "value": "calc" + } + ], + [ + "number-token", + "-.5", + 138146, + 138148, + { + "value": -0.5, + "type": "number" + } + ], + [ + "whitespace-token", + " ", + 138149, + 138149, + null + ], + [ + "delim-token", + "*", + 138150, + 138150, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 138151, + 138151, + null + ], + [ + "function-token", + "var(", + 138152, + 138155, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 138156, + 138156, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 138157, + 138157, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 138158, + 138179, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + ")-token", + ")", + 138180, + 138180, + null + ], + [ + ")-token", + ")", + 138181, + 138181, + null + ], + [ + "}-token", + "}", + 138182, + 138182, + null + ], + [ + "delim-token", + ".", + 138183, + 138183, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-title", + 138184, + 138198, + { + "value": "offcanvas-title" + } + ], + [ + "{-token", + "{", + 138199, + 138199, + null + ], + [ + "ident-token", + "margin-bottom", + 138200, + 138212, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 138213, + 138213, + null + ], + [ + "number-token", + "0", + 138214, + 138214, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 138215, + 138215, + null + ], + [ + "ident-token", + "line-height", + 138216, + 138226, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 138227, + 138227, + null + ], + [ + "number-token", + "1.5", + 138228, + 138230, + { + "value": 1.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 138231, + 138231, + null + ], + [ + "delim-token", + ".", + 138232, + 138232, + { + "value": "." + } + ], + [ + "ident-token", + "offcanvas-body", + 138233, + 138246, + { + "value": "offcanvas-body" + } + ], + [ + "{-token", + "{", + 138247, + 138247, + null + ], + [ + "ident-token", + "flex-grow", + 138248, + 138256, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 138257, + 138257, + null + ], + [ + "number-token", + "1", + 138258, + 138258, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 138259, + 138259, + null + ], + [ + "ident-token", + "padding", + 138260, + 138266, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 138267, + 138267, + null + ], + [ + "function-token", + "var(", + 138268, + 138271, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 138272, + 138272, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 138273, + 138273, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-y", + 138274, + 138295, + { + "value": "bs-offcanvas-padding-y" + } + ], + [ + ")-token", + ")", + 138296, + 138296, + null + ], + [ + "whitespace-token", + " ", + 138297, + 138297, + null + ], + [ + "function-token", + "var(", + 138298, + 138301, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 138302, + 138302, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 138303, + 138303, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-offcanvas-padding-x", + 138304, + 138325, + { + "value": "bs-offcanvas-padding-x" + } + ], + [ + ")-token", + ")", + 138326, + 138326, + null + ], + [ + "semicolon-token", + ";", + 138327, + 138327, + null + ], + [ + "ident-token", + "overflow-y", + 138328, + 138337, + { + "value": "overflow-y" + } + ], + [ + "colon-token", + ":", + 138338, + 138338, + null + ], + [ + "ident-token", + "auto", + 138339, + 138342, + { + "value": "auto" + } + ], + [ + "}-token", + "}", + 138343, + 138343, + null + ], + [ + "delim-token", + ".", + 138344, + 138344, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder", + 138345, + 138355, + { + "value": "placeholder" + } + ], + [ + "{-token", + "{", + 138356, + 138356, + null + ], + [ + "ident-token", + "display", + 138357, + 138363, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 138364, + 138364, + null + ], + [ + "ident-token", + "inline-block", + 138365, + 138376, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 138377, + 138377, + null + ], + [ + "ident-token", + "min-height", + 138378, + 138387, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 138388, + 138388, + null + ], + [ + "dimension-token", + "1em", + 138389, + 138391, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 138392, + 138392, + null + ], + [ + "ident-token", + "vertical-align", + 138393, + 138406, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 138407, + 138407, + null + ], + [ + "ident-token", + "middle", + 138408, + 138413, + { + "value": "middle" + } + ], + [ + "semicolon-token", + ";", + 138414, + 138414, + null + ], + [ + "ident-token", + "cursor", + 138415, + 138420, + { + "value": "cursor" + } + ], + [ + "colon-token", + ":", + 138421, + 138421, + null + ], + [ + "ident-token", + "wait", + 138422, + 138425, + { + "value": "wait" + } + ], + [ + "semicolon-token", + ";", + 138426, + 138426, + null + ], + [ + "ident-token", + "background-color", + 138427, + 138442, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 138443, + 138443, + null + ], + [ + "ident-token", + "currentcolor", + 138444, + 138455, + { + "value": "currentcolor" + } + ], + [ + "semicolon-token", + ";", + 138456, + 138456, + null + ], + [ + "ident-token", + "opacity", + 138457, + 138463, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 138464, + 138464, + null + ], + [ + "number-token", + ".5", + 138465, + 138466, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 138467, + 138467, + null + ], + [ + "delim-token", + ".", + 138468, + 138468, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder", + 138469, + 138479, + { + "value": "placeholder" + } + ], + [ + "delim-token", + ".", + 138480, + 138480, + { + "value": "." + } + ], + [ + "ident-token", + "btn", + 138481, + 138483, + { + "value": "btn" + } + ], + [ + "colon-token", + ":", + 138484, + 138484, + null + ], + [ + "colon-token", + ":", + 138485, + 138485, + null + ], + [ + "ident-token", + "before", + 138486, + 138491, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 138492, + 138492, + null + ], + [ + "ident-token", + "display", + 138493, + 138499, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 138500, + 138500, + null + ], + [ + "ident-token", + "inline-block", + 138501, + 138512, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 138513, + 138513, + null + ], + [ + "ident-token", + "content", + 138514, + 138520, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 138521, + 138521, + null + ], + [ + "string-token", + "\"\"", + 138522, + 138523, + { + "value": "" + } + ], + [ + "}-token", + "}", + 138524, + 138524, + null + ], + [ + "delim-token", + ".", + 138525, + 138525, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder-xs", + 138526, + 138539, + { + "value": "placeholder-xs" + } + ], + [ + "{-token", + "{", + 138540, + 138540, + null + ], + [ + "ident-token", + "min-height", + 138541, + 138550, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 138551, + 138551, + null + ], + [ + "dimension-token", + ".6em", + 138552, + 138555, + { + "value": 0.6, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 138556, + 138556, + null + ], + [ + "delim-token", + ".", + 138557, + 138557, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder-sm", + 138558, + 138571, + { + "value": "placeholder-sm" + } + ], + [ + "{-token", + "{", + 138572, + 138572, + null + ], + [ + "ident-token", + "min-height", + 138573, + 138582, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 138583, + 138583, + null + ], + [ + "dimension-token", + ".8em", + 138584, + 138587, + { + "value": 0.8, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 138588, + 138588, + null + ], + [ + "delim-token", + ".", + 138589, + 138589, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder-lg", + 138590, + 138603, + { + "value": "placeholder-lg" + } + ], + [ + "{-token", + "{", + 138604, + 138604, + null + ], + [ + "ident-token", + "min-height", + 138605, + 138614, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 138615, + 138615, + null + ], + [ + "dimension-token", + "1.2em", + 138616, + 138620, + { + "value": 1.2, + "type": "number", + "unit": "em" + } + ], + [ + "}-token", + "}", + 138621, + 138621, + null + ], + [ + "delim-token", + ".", + 138622, + 138622, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder-glow", + 138623, + 138638, + { + "value": "placeholder-glow" + } + ], + [ + "whitespace-token", + " ", + 138639, + 138639, + null + ], + [ + "delim-token", + ".", + 138640, + 138640, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder", + 138641, + 138651, + { + "value": "placeholder" + } + ], + [ + "{-token", + "{", + 138652, + 138652, + null + ], + [ + "delim-token", + "-", + 138653, + 138653, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-animation", + 138654, + 138669, + { + "value": "webkit-animation" + } + ], + [ + "colon-token", + ":", + 138670, + 138670, + null + ], + [ + "ident-token", + "placeholder-glow", + 138671, + 138686, + { + "value": "placeholder-glow" + } + ], + [ + "whitespace-token", + " ", + 138687, + 138687, + null + ], + [ + "dimension-token", + "2s", + 138688, + 138689, + { + "value": 2, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 138690, + 138690, + null + ], + [ + "ident-token", + "ease-in-out", + 138691, + 138701, + { + "value": "ease-in-out" + } + ], + [ + "whitespace-token", + " ", + 138702, + 138702, + null + ], + [ + "ident-token", + "infinite", + 138703, + 138710, + { + "value": "infinite" + } + ], + [ + "semicolon-token", + ";", + 138711, + 138711, + null + ], + [ + "ident-token", + "animation", + 138712, + 138720, + { + "value": "animation" + } + ], + [ + "colon-token", + ":", + 138721, + 138721, + null + ], + [ + "ident-token", + "placeholder-glow", + 138722, + 138737, + { + "value": "placeholder-glow" + } + ], + [ + "whitespace-token", + " ", + 138738, + 138738, + null + ], + [ + "dimension-token", + "2s", + 138739, + 138740, + { + "value": 2, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 138741, + 138741, + null + ], + [ + "ident-token", + "ease-in-out", + 138742, + 138752, + { + "value": "ease-in-out" + } + ], + [ + "whitespace-token", + " ", + 138753, + 138753, + null + ], + [ + "ident-token", + "infinite", + 138754, + 138761, + { + "value": "infinite" + } + ], + [ + "}-token", + "}", + 138762, + 138762, + null + ], + [ + "at-keyword-token", + "@-webkit-keyframes", + 138763, + 138780, + { + "value": "-webkit-keyframes" + } + ], + [ + "whitespace-token", + " ", + 138781, + 138781, + null + ], + [ + "ident-token", + "placeholder-glow", + 138782, + 138797, + { + "value": "placeholder-glow" + } + ], + [ + "{-token", + "{", + 138798, + 138798, + null + ], + [ + "percentage-token", + "50%", + 138799, + 138801, + { + "value": 50 + } + ], + [ + "{-token", + "{", + 138802, + 138802, + null + ], + [ + "ident-token", + "opacity", + 138803, + 138809, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 138810, + 138810, + null + ], + [ + "number-token", + ".2", + 138811, + 138812, + { + "value": 0.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 138813, + 138813, + null + ], + [ + "}-token", + "}", + 138814, + 138814, + null + ], + [ + "at-keyword-token", + "@keyframes", + 138815, + 138824, + { + "value": "keyframes" + } + ], + [ + "whitespace-token", + " ", + 138825, + 138825, + null + ], + [ + "ident-token", + "placeholder-glow", + 138826, + 138841, + { + "value": "placeholder-glow" + } + ], + [ + "{-token", + "{", + 138842, + 138842, + null + ], + [ + "percentage-token", + "50%", + 138843, + 138845, + { + "value": 50 + } + ], + [ + "{-token", + "{", + 138846, + 138846, + null + ], + [ + "ident-token", + "opacity", + 138847, + 138853, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 138854, + 138854, + null + ], + [ + "number-token", + ".2", + 138855, + 138856, + { + "value": 0.2, + "type": "number" + } + ], + [ + "}-token", + "}", + 138857, + 138857, + null + ], + [ + "}-token", + "}", + 138858, + 138858, + null + ], + [ + "delim-token", + ".", + 138859, + 138859, + { + "value": "." + } + ], + [ + "ident-token", + "placeholder-wave", + 138860, + 138875, + { + "value": "placeholder-wave" + } + ], + [ + "{-token", + "{", + 138876, + 138876, + null + ], + [ + "delim-token", + "-", + 138877, + 138877, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-mask-image", + 138878, + 138894, + { + "value": "webkit-mask-image" + } + ], + [ + "colon-token", + ":", + 138895, + 138895, + null + ], + [ + "function-token", + "linear-gradient(", + 138896, + 138911, + { + "value": "linear-gradient" + } + ], + [ + "dimension-token", + "130deg", + 138912, + 138917, + { + "value": 130, + "type": "integer", + "unit": "deg" + } + ], + [ + "comma-token", + ",", + 138918, + 138918, + null + ], + [ + "hash-token", + "#000", + 138919, + 138922, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "whitespace-token", + " ", + 138923, + 138923, + null + ], + [ + "percentage-token", + "55%", + 138924, + 138926, + { + "value": 55 + } + ], + [ + "comma-token", + ",", + 138927, + 138927, + null + ], + [ + "function-token", + "rgba(", + 138928, + 138932, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 138933, + 138933, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 138934, + 138934, + null + ], + [ + "number-token", + "0", + 138935, + 138935, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 138936, + 138936, + null + ], + [ + "number-token", + "0", + 138937, + 138937, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 138938, + 138938, + null + ], + [ + "number-token", + "0.8", + 138939, + 138941, + { + "value": 0.8, + "type": "number" + } + ], + [ + ")-token", + ")", + 138942, + 138942, + null + ], + [ + "whitespace-token", + " ", + 138943, + 138943, + null + ], + [ + "percentage-token", + "75%", + 138944, + 138946, + { + "value": 75 + } + ], + [ + "comma-token", + ",", + 138947, + 138947, + null + ], + [ + "hash-token", + "#000", + 138948, + 138951, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "whitespace-token", + " ", + 138952, + 138952, + null + ], + [ + "percentage-token", + "95%", + 138953, + 138955, + { + "value": 95 + } + ], + [ + ")-token", + ")", + 138956, + 138956, + null + ], + [ + "semicolon-token", + ";", + 138957, + 138957, + null + ], + [ + "ident-token", + "mask-image", + 138958, + 138967, + { + "value": "mask-image" + } + ], + [ + "colon-token", + ":", + 138968, + 138968, + null + ], + [ + "function-token", + "linear-gradient(", + 138969, + 138984, + { + "value": "linear-gradient" + } + ], + [ + "dimension-token", + "130deg", + 138985, + 138990, + { + "value": 130, + "type": "integer", + "unit": "deg" + } + ], + [ + "comma-token", + ",", + 138991, + 138991, + null + ], + [ + "hash-token", + "#000", + 138992, + 138995, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "whitespace-token", + " ", + 138996, + 138996, + null + ], + [ + "percentage-token", + "55%", + 138997, + 138999, + { + "value": 55 + } + ], + [ + "comma-token", + ",", + 139000, + 139000, + null + ], + [ + "function-token", + "rgba(", + 139001, + 139005, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 139006, + 139006, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139007, + 139007, + null + ], + [ + "number-token", + "0", + 139008, + 139008, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139009, + 139009, + null + ], + [ + "number-token", + "0", + 139010, + 139010, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139011, + 139011, + null + ], + [ + "number-token", + "0.8", + 139012, + 139014, + { + "value": 0.8, + "type": "number" + } + ], + [ + ")-token", + ")", + 139015, + 139015, + null + ], + [ + "whitespace-token", + " ", + 139016, + 139016, + null + ], + [ + "percentage-token", + "75%", + 139017, + 139019, + { + "value": 75 + } + ], + [ + "comma-token", + ",", + 139020, + 139020, + null + ], + [ + "hash-token", + "#000", + 139021, + 139024, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "whitespace-token", + " ", + 139025, + 139025, + null + ], + [ + "percentage-token", + "95%", + 139026, + 139028, + { + "value": 95 + } + ], + [ + ")-token", + ")", + 139029, + 139029, + null + ], + [ + "semicolon-token", + ";", + 139030, + 139030, + null + ], + [ + "delim-token", + "-", + 139031, + 139031, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-mask-size", + 139032, + 139047, + { + "value": "webkit-mask-size" + } + ], + [ + "colon-token", + ":", + 139048, + 139048, + null + ], + [ + "percentage-token", + "200%", + 139049, + 139052, + { + "value": 200 + } + ], + [ + "whitespace-token", + " ", + 139053, + 139053, + null + ], + [ + "percentage-token", + "100%", + 139054, + 139057, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 139058, + 139058, + null + ], + [ + "ident-token", + "mask-size", + 139059, + 139067, + { + "value": "mask-size" + } + ], + [ + "colon-token", + ":", + 139068, + 139068, + null + ], + [ + "percentage-token", + "200%", + 139069, + 139072, + { + "value": 200 + } + ], + [ + "whitespace-token", + " ", + 139073, + 139073, + null + ], + [ + "percentage-token", + "100%", + 139074, + 139077, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 139078, + 139078, + null + ], + [ + "delim-token", + "-", + 139079, + 139079, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-animation", + 139080, + 139095, + { + "value": "webkit-animation" + } + ], + [ + "colon-token", + ":", + 139096, + 139096, + null + ], + [ + "ident-token", + "placeholder-wave", + 139097, + 139112, + { + "value": "placeholder-wave" + } + ], + [ + "whitespace-token", + " ", + 139113, + 139113, + null + ], + [ + "dimension-token", + "2s", + 139114, + 139115, + { + "value": 2, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 139116, + 139116, + null + ], + [ + "ident-token", + "linear", + 139117, + 139122, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 139123, + 139123, + null + ], + [ + "ident-token", + "infinite", + 139124, + 139131, + { + "value": "infinite" + } + ], + [ + "semicolon-token", + ";", + 139132, + 139132, + null + ], + [ + "ident-token", + "animation", + 139133, + 139141, + { + "value": "animation" + } + ], + [ + "colon-token", + ":", + 139142, + 139142, + null + ], + [ + "ident-token", + "placeholder-wave", + 139143, + 139158, + { + "value": "placeholder-wave" + } + ], + [ + "whitespace-token", + " ", + 139159, + 139159, + null + ], + [ + "dimension-token", + "2s", + 139160, + 139161, + { + "value": 2, + "type": "integer", + "unit": "s" + } + ], + [ + "whitespace-token", + " ", + 139162, + 139162, + null + ], + [ + "ident-token", + "linear", + 139163, + 139168, + { + "value": "linear" + } + ], + [ + "whitespace-token", + " ", + 139169, + 139169, + null + ], + [ + "ident-token", + "infinite", + 139170, + 139177, + { + "value": "infinite" + } + ], + [ + "}-token", + "}", + 139178, + 139178, + null + ], + [ + "at-keyword-token", + "@-webkit-keyframes", + 139179, + 139196, + { + "value": "-webkit-keyframes" + } + ], + [ + "whitespace-token", + " ", + 139197, + 139197, + null + ], + [ + "ident-token", + "placeholder-wave", + 139198, + 139213, + { + "value": "placeholder-wave" + } + ], + [ + "{-token", + "{", + 139214, + 139214, + null + ], + [ + "percentage-token", + "100%", + 139215, + 139218, + { + "value": 100 + } + ], + [ + "{-token", + "{", + 139219, + 139219, + null + ], + [ + "delim-token", + "-", + 139220, + 139220, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-mask-position", + 139221, + 139240, + { + "value": "webkit-mask-position" + } + ], + [ + "colon-token", + ":", + 139241, + 139241, + null + ], + [ + "percentage-token", + "-200%", + 139242, + 139246, + { + "value": -200 + } + ], + [ + "whitespace-token", + " ", + 139247, + 139247, + null + ], + [ + "percentage-token", + "0%", + 139248, + 139249, + { + "value": 0 + } + ], + [ + "semicolon-token", + ";", + 139250, + 139250, + null + ], + [ + "ident-token", + "mask-position", + 139251, + 139263, + { + "value": "mask-position" + } + ], + [ + "colon-token", + ":", + 139264, + 139264, + null + ], + [ + "percentage-token", + "-200%", + 139265, + 139269, + { + "value": -200 + } + ], + [ + "whitespace-token", + " ", + 139270, + 139270, + null + ], + [ + "percentage-token", + "0%", + 139271, + 139272, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 139273, + 139273, + null + ], + [ + "}-token", + "}", + 139274, + 139274, + null + ], + [ + "at-keyword-token", + "@keyframes", + 139275, + 139284, + { + "value": "keyframes" + } + ], + [ + "whitespace-token", + " ", + 139285, + 139285, + null + ], + [ + "ident-token", + "placeholder-wave", + 139286, + 139301, + { + "value": "placeholder-wave" + } + ], + [ + "{-token", + "{", + 139302, + 139302, + null + ], + [ + "percentage-token", + "100%", + 139303, + 139306, + { + "value": 100 + } + ], + [ + "{-token", + "{", + 139307, + 139307, + null + ], + [ + "delim-token", + "-", + 139308, + 139308, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-mask-position", + 139309, + 139328, + { + "value": "webkit-mask-position" + } + ], + [ + "colon-token", + ":", + 139329, + 139329, + null + ], + [ + "percentage-token", + "-200%", + 139330, + 139334, + { + "value": -200 + } + ], + [ + "whitespace-token", + " ", + 139335, + 139335, + null + ], + [ + "percentage-token", + "0%", + 139336, + 139337, + { + "value": 0 + } + ], + [ + "semicolon-token", + ";", + 139338, + 139338, + null + ], + [ + "ident-token", + "mask-position", + 139339, + 139351, + { + "value": "mask-position" + } + ], + [ + "colon-token", + ":", + 139352, + 139352, + null + ], + [ + "percentage-token", + "-200%", + 139353, + 139357, + { + "value": -200 + } + ], + [ + "whitespace-token", + " ", + 139358, + 139358, + null + ], + [ + "percentage-token", + "0%", + 139359, + 139360, + { + "value": 0 + } + ], + [ + "}-token", + "}", + 139361, + 139361, + null + ], + [ + "}-token", + "}", + 139362, + 139362, + null + ], + [ + "delim-token", + ".", + 139363, + 139363, + { + "value": "." + } + ], + [ + "ident-token", + "clearfix", + 139364, + 139371, + { + "value": "clearfix" + } + ], + [ + "colon-token", + ":", + 139372, + 139372, + null + ], + [ + "colon-token", + ":", + 139373, + 139373, + null + ], + [ + "ident-token", + "after", + 139374, + 139378, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 139379, + 139379, + null + ], + [ + "ident-token", + "display", + 139380, + 139386, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 139387, + 139387, + null + ], + [ + "ident-token", + "block", + 139388, + 139392, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 139393, + 139393, + null + ], + [ + "ident-token", + "clear", + 139394, + 139398, + { + "value": "clear" + } + ], + [ + "colon-token", + ":", + 139399, + 139399, + null + ], + [ + "ident-token", + "both", + 139400, + 139403, + { + "value": "both" + } + ], + [ + "semicolon-token", + ";", + 139404, + 139404, + null + ], + [ + "ident-token", + "content", + 139405, + 139411, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 139412, + 139412, + null + ], + [ + "string-token", + "\"\"", + 139413, + 139414, + { + "value": "" + } + ], + [ + "}-token", + "}", + 139415, + 139415, + null + ], + [ + "delim-token", + ".", + 139416, + 139416, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-primary", + 139417, + 139431, + { + "value": "text-bg-primary" + } + ], + [ + "{-token", + "{", + 139432, + 139432, + null + ], + [ + "ident-token", + "color", + 139433, + 139437, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139438, + 139438, + null + ], + [ + "hash-token", + "#fff", + 139439, + 139442, + { + "value": "fff", + "type": "id" + } + ], + [ + "delim-token", + "!", + 139443, + 139443, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139444, + 139452, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139453, + 139453, + null + ], + [ + "ident-token", + "background-color", + 139454, + 139469, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139470, + 139470, + null + ], + [ + "function-token", + "RGBA(", + 139471, + 139475, + { + "value": "RGBA" + } + ], + [ + "number-token", + "13", + 139476, + 139477, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139478, + 139478, + null + ], + [ + "number-token", + "110", + 139479, + 139481, + { + "value": 110, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139482, + 139482, + null + ], + [ + "number-token", + "253", + 139483, + 139485, + { + "value": 253, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139486, + 139486, + null + ], + [ + "function-token", + "var(", + 139487, + 139490, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 139491, + 139491, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 139492, + 139492, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 139493, + 139505, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 139506, + 139506, + null + ], + [ + "number-token", + "1", + 139507, + 139507, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 139508, + 139508, + null + ], + [ + ")-token", + ")", + 139509, + 139509, + null + ], + [ + "delim-token", + "!", + 139510, + 139510, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139511, + 139519, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 139520, + 139520, + null + ], + [ + "delim-token", + ".", + 139521, + 139521, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-secondary", + 139522, + 139538, + { + "value": "text-bg-secondary" + } + ], + [ + "{-token", + "{", + 139539, + 139539, + null + ], + [ + "ident-token", + "color", + 139540, + 139544, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139545, + 139545, + null + ], + [ + "hash-token", + "#fff", + 139546, + 139549, + { + "value": "fff", + "type": "id" + } + ], + [ + "delim-token", + "!", + 139550, + 139550, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139551, + 139559, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139560, + 139560, + null + ], + [ + "ident-token", + "background-color", + 139561, + 139576, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139577, + 139577, + null + ], + [ + "function-token", + "RGBA(", + 139578, + 139582, + { + "value": "RGBA" + } + ], + [ + "number-token", + "108", + 139583, + 139585, + { + "value": 108, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139586, + 139586, + null + ], + [ + "number-token", + "117", + 139587, + 139589, + { + "value": 117, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139590, + 139590, + null + ], + [ + "number-token", + "125", + 139591, + 139593, + { + "value": 125, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139594, + 139594, + null + ], + [ + "function-token", + "var(", + 139595, + 139598, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 139599, + 139599, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 139600, + 139600, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 139601, + 139613, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 139614, + 139614, + null + ], + [ + "number-token", + "1", + 139615, + 139615, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 139616, + 139616, + null + ], + [ + ")-token", + ")", + 139617, + 139617, + null + ], + [ + "delim-token", + "!", + 139618, + 139618, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139619, + 139627, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 139628, + 139628, + null + ], + [ + "delim-token", + ".", + 139629, + 139629, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-success", + 139630, + 139644, + { + "value": "text-bg-success" + } + ], + [ + "{-token", + "{", + 139645, + 139645, + null + ], + [ + "ident-token", + "color", + 139646, + 139650, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139651, + 139651, + null + ], + [ + "hash-token", + "#fff", + 139652, + 139655, + { + "value": "fff", + "type": "id" + } + ], + [ + "delim-token", + "!", + 139656, + 139656, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139657, + 139665, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139666, + 139666, + null + ], + [ + "ident-token", + "background-color", + 139667, + 139682, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139683, + 139683, + null + ], + [ + "function-token", + "RGBA(", + 139684, + 139688, + { + "value": "RGBA" + } + ], + [ + "number-token", + "25", + 139689, + 139690, + { + "value": 25, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139691, + 139691, + null + ], + [ + "number-token", + "135", + 139692, + 139694, + { + "value": 135, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139695, + 139695, + null + ], + [ + "number-token", + "84", + 139696, + 139697, + { + "value": 84, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139698, + 139698, + null + ], + [ + "function-token", + "var(", + 139699, + 139702, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 139703, + 139703, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 139704, + 139704, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 139705, + 139717, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 139718, + 139718, + null + ], + [ + "number-token", + "1", + 139719, + 139719, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 139720, + 139720, + null + ], + [ + ")-token", + ")", + 139721, + 139721, + null + ], + [ + "delim-token", + "!", + 139722, + 139722, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139723, + 139731, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 139732, + 139732, + null + ], + [ + "delim-token", + ".", + 139733, + 139733, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-info", + 139734, + 139745, + { + "value": "text-bg-info" + } + ], + [ + "{-token", + "{", + 139746, + 139746, + null + ], + [ + "ident-token", + "color", + 139747, + 139751, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139752, + 139752, + null + ], + [ + "hash-token", + "#000", + 139753, + 139756, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 139757, + 139757, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139758, + 139766, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139767, + 139767, + null + ], + [ + "ident-token", + "background-color", + 139768, + 139783, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139784, + 139784, + null + ], + [ + "function-token", + "RGBA(", + 139785, + 139789, + { + "value": "RGBA" + } + ], + [ + "number-token", + "13", + 139790, + 139791, + { + "value": 13, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139792, + 139792, + null + ], + [ + "number-token", + "202", + 139793, + 139795, + { + "value": 202, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139796, + 139796, + null + ], + [ + "number-token", + "240", + 139797, + 139799, + { + "value": 240, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139800, + 139800, + null + ], + [ + "function-token", + "var(", + 139801, + 139804, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 139805, + 139805, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 139806, + 139806, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 139807, + 139819, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 139820, + 139820, + null + ], + [ + "number-token", + "1", + 139821, + 139821, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 139822, + 139822, + null + ], + [ + ")-token", + ")", + 139823, + 139823, + null + ], + [ + "delim-token", + "!", + 139824, + 139824, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139825, + 139833, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 139834, + 139834, + null + ], + [ + "delim-token", + ".", + 139835, + 139835, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-warning", + 139836, + 139850, + { + "value": "text-bg-warning" + } + ], + [ + "{-token", + "{", + 139851, + 139851, + null + ], + [ + "ident-token", + "color", + 139852, + 139856, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139857, + 139857, + null + ], + [ + "hash-token", + "#000", + 139858, + 139861, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 139862, + 139862, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139863, + 139871, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139872, + 139872, + null + ], + [ + "ident-token", + "background-color", + 139873, + 139888, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139889, + 139889, + null + ], + [ + "function-token", + "RGBA(", + 139890, + 139894, + { + "value": "RGBA" + } + ], + [ + "number-token", + "255", + 139895, + 139897, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139898, + 139898, + null + ], + [ + "number-token", + "193", + 139899, + 139901, + { + "value": 193, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139902, + 139902, + null + ], + [ + "number-token", + "7", + 139903, + 139903, + { + "value": 7, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 139904, + 139904, + null + ], + [ + "function-token", + "var(", + 139905, + 139908, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 139909, + 139909, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 139910, + 139910, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 139911, + 139923, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 139924, + 139924, + null + ], + [ + "number-token", + "1", + 139925, + 139925, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 139926, + 139926, + null + ], + [ + ")-token", + ")", + 139927, + 139927, + null + ], + [ + "delim-token", + "!", + 139928, + 139928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139929, + 139937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 139938, + 139938, + null + ], + [ + "delim-token", + ".", + 139939, + 139939, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-danger", + 139940, + 139953, + { + "value": "text-bg-danger" + } + ], + [ + "{-token", + "{", + 139954, + 139954, + null + ], + [ + "ident-token", + "color", + 139955, + 139959, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 139960, + 139960, + null + ], + [ + "hash-token", + "#fff", + 139961, + 139964, + { + "value": "fff", + "type": "id" + } + ], + [ + "delim-token", + "!", + 139965, + 139965, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 139966, + 139974, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 139975, + 139975, + null + ], + [ + "ident-token", + "background-color", + 139976, + 139991, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 139992, + 139992, + null + ], + [ + "function-token", + "RGBA(", + 139993, + 139997, + { + "value": "RGBA" + } + ], + [ + "number-token", + "220", + 139998, + 140000, + { + "value": 220, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140001, + 140001, + null + ], + [ + "number-token", + "53", + 140002, + 140003, + { + "value": 53, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140004, + 140004, + null + ], + [ + "number-token", + "69", + 140005, + 140006, + { + "value": 69, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140007, + 140007, + null + ], + [ + "function-token", + "var(", + 140008, + 140011, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 140012, + 140012, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 140013, + 140013, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 140014, + 140026, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 140027, + 140027, + null + ], + [ + "number-token", + "1", + 140028, + 140028, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 140029, + 140029, + null + ], + [ + ")-token", + ")", + 140030, + 140030, + null + ], + [ + "delim-token", + "!", + 140031, + 140031, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140032, + 140040, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140041, + 140041, + null + ], + [ + "delim-token", + ".", + 140042, + 140042, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-light", + 140043, + 140055, + { + "value": "text-bg-light" + } + ], + [ + "{-token", + "{", + 140056, + 140056, + null + ], + [ + "ident-token", + "color", + 140057, + 140061, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140062, + 140062, + null + ], + [ + "hash-token", + "#000", + 140063, + 140066, + { + "value": "000", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140067, + 140067, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140068, + 140076, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 140077, + 140077, + null + ], + [ + "ident-token", + "background-color", + 140078, + 140093, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 140094, + 140094, + null + ], + [ + "function-token", + "RGBA(", + 140095, + 140099, + { + "value": "RGBA" + } + ], + [ + "number-token", + "248", + 140100, + 140102, + { + "value": 248, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140103, + 140103, + null + ], + [ + "number-token", + "249", + 140104, + 140106, + { + "value": 249, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140107, + 140107, + null + ], + [ + "number-token", + "250", + 140108, + 140110, + { + "value": 250, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140111, + 140111, + null + ], + [ + "function-token", + "var(", + 140112, + 140115, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 140116, + 140116, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 140117, + 140117, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 140118, + 140130, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 140131, + 140131, + null + ], + [ + "number-token", + "1", + 140132, + 140132, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 140133, + 140133, + null + ], + [ + ")-token", + ")", + 140134, + 140134, + null + ], + [ + "delim-token", + "!", + 140135, + 140135, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140136, + 140144, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140145, + 140145, + null + ], + [ + "delim-token", + ".", + 140146, + 140146, + { + "value": "." + } + ], + [ + "ident-token", + "text-bg-dark", + 140147, + 140158, + { + "value": "text-bg-dark" + } + ], + [ + "{-token", + "{", + 140159, + 140159, + null + ], + [ + "ident-token", + "color", + 140160, + 140164, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140165, + 140165, + null + ], + [ + "hash-token", + "#fff", + 140166, + 140169, + { + "value": "fff", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140170, + 140170, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140171, + 140179, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 140180, + 140180, + null + ], + [ + "ident-token", + "background-color", + 140181, + 140196, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 140197, + 140197, + null + ], + [ + "function-token", + "RGBA(", + 140198, + 140202, + { + "value": "RGBA" + } + ], + [ + "number-token", + "33", + 140203, + 140204, + { + "value": 33, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140205, + 140205, + null + ], + [ + "number-token", + "37", + 140206, + 140207, + { + "value": 37, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140208, + 140208, + null + ], + [ + "number-token", + "41", + 140209, + 140210, + { + "value": 41, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 140211, + 140211, + null + ], + [ + "function-token", + "var(", + 140212, + 140215, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 140216, + 140216, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 140217, + 140217, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 140218, + 140230, + { + "value": "bs-bg-opacity" + } + ], + [ + "comma-token", + ",", + 140231, + 140231, + null + ], + [ + "number-token", + "1", + 140232, + 140232, + { + "value": 1, + "type": "integer" + } + ], + [ + ")-token", + ")", + 140233, + 140233, + null + ], + [ + ")-token", + ")", + 140234, + 140234, + null + ], + [ + "delim-token", + "!", + 140235, + 140235, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140236, + 140244, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140245, + 140245, + null + ], + [ + "delim-token", + ".", + 140246, + 140246, + { + "value": "." + } + ], + [ + "ident-token", + "link-primary", + 140247, + 140258, + { + "value": "link-primary" + } + ], + [ + "{-token", + "{", + 140259, + 140259, + null + ], + [ + "ident-token", + "color", + 140260, + 140264, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140265, + 140265, + null + ], + [ + "hash-token", + "#0d6efd", + 140266, + 140272, + { + "value": "0d6efd", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140273, + 140273, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140274, + 140282, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140283, + 140283, + null + ], + [ + "delim-token", + ".", + 140284, + 140284, + { + "value": "." + } + ], + [ + "ident-token", + "link-primary", + 140285, + 140296, + { + "value": "link-primary" + } + ], + [ + "colon-token", + ":", + 140297, + 140297, + null + ], + [ + "ident-token", + "focus", + 140298, + 140302, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140303, + 140303, + null + ], + [ + "delim-token", + ".", + 140304, + 140304, + { + "value": "." + } + ], + [ + "ident-token", + "link-primary", + 140305, + 140316, + { + "value": "link-primary" + } + ], + [ + "colon-token", + ":", + 140317, + 140317, + null + ], + [ + "ident-token", + "hover", + 140318, + 140322, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140323, + 140323, + null + ], + [ + "ident-token", + "color", + 140324, + 140328, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140329, + 140329, + null + ], + [ + "hash-token", + "#0a58ca", + 140330, + 140336, + { + "value": "0a58ca", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140337, + 140337, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140338, + 140346, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140347, + 140347, + null + ], + [ + "delim-token", + ".", + 140348, + 140348, + { + "value": "." + } + ], + [ + "ident-token", + "link-secondary", + 140349, + 140362, + { + "value": "link-secondary" + } + ], + [ + "{-token", + "{", + 140363, + 140363, + null + ], + [ + "ident-token", + "color", + 140364, + 140368, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140369, + 140369, + null + ], + [ + "hash-token", + "#6c757d", + 140370, + 140376, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140377, + 140377, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140378, + 140386, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140387, + 140387, + null + ], + [ + "delim-token", + ".", + 140388, + 140388, + { + "value": "." + } + ], + [ + "ident-token", + "link-secondary", + 140389, + 140402, + { + "value": "link-secondary" + } + ], + [ + "colon-token", + ":", + 140403, + 140403, + null + ], + [ + "ident-token", + "focus", + 140404, + 140408, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140409, + 140409, + null + ], + [ + "delim-token", + ".", + 140410, + 140410, + { + "value": "." + } + ], + [ + "ident-token", + "link-secondary", + 140411, + 140424, + { + "value": "link-secondary" + } + ], + [ + "colon-token", + ":", + 140425, + 140425, + null + ], + [ + "ident-token", + "hover", + 140426, + 140430, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140431, + 140431, + null + ], + [ + "ident-token", + "color", + 140432, + 140436, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140437, + 140437, + null + ], + [ + "hash-token", + "#565e64", + 140438, + 140444, + { + "value": "565e64", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140445, + 140445, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140446, + 140454, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140455, + 140455, + null + ], + [ + "delim-token", + ".", + 140456, + 140456, + { + "value": "." + } + ], + [ + "ident-token", + "link-success", + 140457, + 140468, + { + "value": "link-success" + } + ], + [ + "{-token", + "{", + 140469, + 140469, + null + ], + [ + "ident-token", + "color", + 140470, + 140474, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140475, + 140475, + null + ], + [ + "hash-token", + "#198754", + 140476, + 140482, + { + "value": "198754", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140483, + 140483, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140484, + 140492, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140493, + 140493, + null + ], + [ + "delim-token", + ".", + 140494, + 140494, + { + "value": "." + } + ], + [ + "ident-token", + "link-success", + 140495, + 140506, + { + "value": "link-success" + } + ], + [ + "colon-token", + ":", + 140507, + 140507, + null + ], + [ + "ident-token", + "focus", + 140508, + 140512, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140513, + 140513, + null + ], + [ + "delim-token", + ".", + 140514, + 140514, + { + "value": "." + } + ], + [ + "ident-token", + "link-success", + 140515, + 140526, + { + "value": "link-success" + } + ], + [ + "colon-token", + ":", + 140527, + 140527, + null + ], + [ + "ident-token", + "hover", + 140528, + 140532, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140533, + 140533, + null + ], + [ + "ident-token", + "color", + 140534, + 140538, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140539, + 140539, + null + ], + [ + "hash-token", + "#146c43", + 140540, + 140546, + { + "value": "146c43", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140547, + 140547, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140548, + 140556, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140557, + 140557, + null + ], + [ + "delim-token", + ".", + 140558, + 140558, + { + "value": "." + } + ], + [ + "ident-token", + "link-info", + 140559, + 140567, + { + "value": "link-info" + } + ], + [ + "{-token", + "{", + 140568, + 140568, + null + ], + [ + "ident-token", + "color", + 140569, + 140573, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140574, + 140574, + null + ], + [ + "hash-token", + "#0dcaf0", + 140575, + 140581, + { + "value": "0dcaf0", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140582, + 140582, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140583, + 140591, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140592, + 140592, + null + ], + [ + "delim-token", + ".", + 140593, + 140593, + { + "value": "." + } + ], + [ + "ident-token", + "link-info", + 140594, + 140602, + { + "value": "link-info" + } + ], + [ + "colon-token", + ":", + 140603, + 140603, + null + ], + [ + "ident-token", + "focus", + 140604, + 140608, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140609, + 140609, + null + ], + [ + "delim-token", + ".", + 140610, + 140610, + { + "value": "." + } + ], + [ + "ident-token", + "link-info", + 140611, + 140619, + { + "value": "link-info" + } + ], + [ + "colon-token", + ":", + 140620, + 140620, + null + ], + [ + "ident-token", + "hover", + 140621, + 140625, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140626, + 140626, + null + ], + [ + "ident-token", + "color", + 140627, + 140631, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140632, + 140632, + null + ], + [ + "hash-token", + "#3dd5f3", + 140633, + 140639, + { + "value": "3dd5f3", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140640, + 140640, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140641, + 140649, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140650, + 140650, + null + ], + [ + "delim-token", + ".", + 140651, + 140651, + { + "value": "." + } + ], + [ + "ident-token", + "link-warning", + 140652, + 140663, + { + "value": "link-warning" + } + ], + [ + "{-token", + "{", + 140664, + 140664, + null + ], + [ + "ident-token", + "color", + 140665, + 140669, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140670, + 140670, + null + ], + [ + "hash-token", + "#ffc107", + 140671, + 140677, + { + "value": "ffc107", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140678, + 140678, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140679, + 140687, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140688, + 140688, + null + ], + [ + "delim-token", + ".", + 140689, + 140689, + { + "value": "." + } + ], + [ + "ident-token", + "link-warning", + 140690, + 140701, + { + "value": "link-warning" + } + ], + [ + "colon-token", + ":", + 140702, + 140702, + null + ], + [ + "ident-token", + "focus", + 140703, + 140707, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140708, + 140708, + null + ], + [ + "delim-token", + ".", + 140709, + 140709, + { + "value": "." + } + ], + [ + "ident-token", + "link-warning", + 140710, + 140721, + { + "value": "link-warning" + } + ], + [ + "colon-token", + ":", + 140722, + 140722, + null + ], + [ + "ident-token", + "hover", + 140723, + 140727, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140728, + 140728, + null + ], + [ + "ident-token", + "color", + 140729, + 140733, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140734, + 140734, + null + ], + [ + "hash-token", + "#ffcd39", + 140735, + 140741, + { + "value": "ffcd39", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140742, + 140742, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140743, + 140751, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140752, + 140752, + null + ], + [ + "delim-token", + ".", + 140753, + 140753, + { + "value": "." + } + ], + [ + "ident-token", + "link-danger", + 140754, + 140764, + { + "value": "link-danger" + } + ], + [ + "{-token", + "{", + 140765, + 140765, + null + ], + [ + "ident-token", + "color", + 140766, + 140770, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140771, + 140771, + null + ], + [ + "hash-token", + "#dc3545", + 140772, + 140778, + { + "value": "dc3545", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140779, + 140779, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140780, + 140788, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140789, + 140789, + null + ], + [ + "delim-token", + ".", + 140790, + 140790, + { + "value": "." + } + ], + [ + "ident-token", + "link-danger", + 140791, + 140801, + { + "value": "link-danger" + } + ], + [ + "colon-token", + ":", + 140802, + 140802, + null + ], + [ + "ident-token", + "focus", + 140803, + 140807, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140808, + 140808, + null + ], + [ + "delim-token", + ".", + 140809, + 140809, + { + "value": "." + } + ], + [ + "ident-token", + "link-danger", + 140810, + 140820, + { + "value": "link-danger" + } + ], + [ + "colon-token", + ":", + 140821, + 140821, + null + ], + [ + "ident-token", + "hover", + 140822, + 140826, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140827, + 140827, + null + ], + [ + "ident-token", + "color", + 140828, + 140832, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140833, + 140833, + null + ], + [ + "hash-token", + "#b02a37", + 140834, + 140840, + { + "value": "b02a37", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140841, + 140841, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140842, + 140850, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140851, + 140851, + null + ], + [ + "delim-token", + ".", + 140852, + 140852, + { + "value": "." + } + ], + [ + "ident-token", + "link-light", + 140853, + 140862, + { + "value": "link-light" + } + ], + [ + "{-token", + "{", + 140863, + 140863, + null + ], + [ + "ident-token", + "color", + 140864, + 140868, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140869, + 140869, + null + ], + [ + "hash-token", + "#f8f9fa", + 140870, + 140876, + { + "value": "f8f9fa", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140877, + 140877, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140878, + 140886, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140887, + 140887, + null + ], + [ + "delim-token", + ".", + 140888, + 140888, + { + "value": "." + } + ], + [ + "ident-token", + "link-light", + 140889, + 140898, + { + "value": "link-light" + } + ], + [ + "colon-token", + ":", + 140899, + 140899, + null + ], + [ + "ident-token", + "focus", + 140900, + 140904, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140905, + 140905, + null + ], + [ + "delim-token", + ".", + 140906, + 140906, + { + "value": "." + } + ], + [ + "ident-token", + "link-light", + 140907, + 140916, + { + "value": "link-light" + } + ], + [ + "colon-token", + ":", + 140917, + 140917, + null + ], + [ + "ident-token", + "hover", + 140918, + 140922, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 140923, + 140923, + null + ], + [ + "ident-token", + "color", + 140924, + 140928, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140929, + 140929, + null + ], + [ + "hash-token", + "#f9fafb", + 140930, + 140936, + { + "value": "f9fafb", + "type": "id" + } + ], + [ + "delim-token", + "!", + 140937, + 140937, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140938, + 140946, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140947, + 140947, + null + ], + [ + "delim-token", + ".", + 140948, + 140948, + { + "value": "." + } + ], + [ + "ident-token", + "link-dark", + 140949, + 140957, + { + "value": "link-dark" + } + ], + [ + "{-token", + "{", + 140958, + 140958, + null + ], + [ + "ident-token", + "color", + 140959, + 140963, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 140964, + 140964, + null + ], + [ + "hash-token", + "#212529", + 140965, + 140971, + { + "value": "212529", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 140972, + 140972, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 140973, + 140981, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 140982, + 140982, + null + ], + [ + "delim-token", + ".", + 140983, + 140983, + { + "value": "." + } + ], + [ + "ident-token", + "link-dark", + 140984, + 140992, + { + "value": "link-dark" + } + ], + [ + "colon-token", + ":", + 140993, + 140993, + null + ], + [ + "ident-token", + "focus", + 140994, + 140998, + { + "value": "focus" + } + ], + [ + "comma-token", + ",", + 140999, + 140999, + null + ], + [ + "delim-token", + ".", + 141000, + 141000, + { + "value": "." + } + ], + [ + "ident-token", + "link-dark", + 141001, + 141009, + { + "value": "link-dark" + } + ], + [ + "colon-token", + ":", + 141010, + 141010, + null + ], + [ + "ident-token", + "hover", + 141011, + 141015, + { + "value": "hover" + } + ], + [ + "{-token", + "{", + 141016, + 141016, + null + ], + [ + "ident-token", + "color", + 141017, + 141021, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 141022, + 141022, + null + ], + [ + "hash-token", + "#1a1e21", + 141023, + 141029, + { + "value": "1a1e21", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 141030, + 141030, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 141031, + 141039, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 141040, + 141040, + null + ], + [ + "delim-token", + ".", + 141041, + 141041, + { + "value": "." + } + ], + [ + "ident-token", + "ratio", + 141042, + 141046, + { + "value": "ratio" + } + ], + [ + "{-token", + "{", + 141047, + 141047, + null + ], + [ + "ident-token", + "position", + 141048, + 141055, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141056, + 141056, + null + ], + [ + "ident-token", + "relative", + 141057, + 141064, + { + "value": "relative" + } + ], + [ + "semicolon-token", + ";", + 141065, + 141065, + null + ], + [ + "ident-token", + "width", + 141066, + 141070, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 141071, + 141071, + null + ], + [ + "percentage-token", + "100%", + 141072, + 141075, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 141076, + 141076, + null + ], + [ + "delim-token", + ".", + 141077, + 141077, + { + "value": "." + } + ], + [ + "ident-token", + "ratio", + 141078, + 141082, + { + "value": "ratio" + } + ], + [ + "colon-token", + ":", + 141083, + 141083, + null + ], + [ + "colon-token", + ":", + 141084, + 141084, + null + ], + [ + "ident-token", + "before", + 141085, + 141090, + { + "value": "before" + } + ], + [ + "{-token", + "{", + 141091, + 141091, + null + ], + [ + "ident-token", + "display", + 141092, + 141098, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 141099, + 141099, + null + ], + [ + "ident-token", + "block", + 141100, + 141104, + { + "value": "block" + } + ], + [ + "semicolon-token", + ";", + 141105, + 141105, + null + ], + [ + "ident-token", + "padding-top", + 141106, + 141116, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 141117, + 141117, + null + ], + [ + "function-token", + "var(", + 141118, + 141121, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 141122, + 141122, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 141123, + 141123, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-aspect-ratio", + 141124, + 141138, + { + "value": "bs-aspect-ratio" + } + ], + [ + ")-token", + ")", + 141139, + 141139, + null + ], + [ + "semicolon-token", + ";", + 141140, + 141140, + null + ], + [ + "ident-token", + "content", + 141141, + 141147, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 141148, + 141148, + null + ], + [ + "string-token", + "\"\"", + 141149, + 141150, + { + "value": "" + } + ], + [ + "}-token", + "}", + 141151, + 141151, + null + ], + [ + "delim-token", + ".", + 141152, + 141152, + { + "value": "." + } + ], + [ + "ident-token", + "ratio", + 141153, + 141157, + { + "value": "ratio" + } + ], + [ + "delim-token", + ">", + 141158, + 141158, + { + "value": ">" + } + ], + [ + "delim-token", + "*", + 141159, + 141159, + { + "value": "*" + } + ], + [ + "{-token", + "{", + 141160, + 141160, + null + ], + [ + "ident-token", + "position", + 141161, + 141168, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141169, + 141169, + null + ], + [ + "ident-token", + "absolute", + 141170, + 141177, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 141178, + 141178, + null + ], + [ + "ident-token", + "top", + 141179, + 141181, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 141182, + 141182, + null + ], + [ + "number-token", + "0", + 141183, + 141183, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141184, + 141184, + null + ], + [ + "ident-token", + "left", + 141185, + 141188, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 141189, + 141189, + null + ], + [ + "number-token", + "0", + 141190, + 141190, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141191, + 141191, + null + ], + [ + "ident-token", + "width", + 141192, + 141196, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 141197, + 141197, + null + ], + [ + "percentage-token", + "100%", + 141198, + 141201, + { + "value": 100 + } + ], + [ + "semicolon-token", + ";", + 141202, + 141202, + null + ], + [ + "ident-token", + "height", + 141203, + 141208, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 141209, + 141209, + null + ], + [ + "percentage-token", + "100%", + 141210, + 141213, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 141214, + 141214, + null + ], + [ + "delim-token", + ".", + 141215, + 141215, + { + "value": "." + } + ], + [ + "ident-token", + "ratio-1x1", + 141216, + 141224, + { + "value": "ratio-1x1" + } + ], + [ + "{-token", + "{", + 141225, + 141225, + null + ], + [ + "delim-token", + "-", + 141226, + 141226, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 141227, + 141227, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-aspect-ratio", + 141228, + 141242, + { + "value": "bs-aspect-ratio" + } + ], + [ + "colon-token", + ":", + 141243, + 141243, + null + ], + [ + "percentage-token", + "100%", + 141244, + 141247, + { + "value": 100 + } + ], + [ + "}-token", + "}", + 141248, + 141248, + null + ], + [ + "delim-token", + ".", + 141249, + 141249, + { + "value": "." + } + ], + [ + "ident-token", + "ratio-4x3", + 141250, + 141258, + { + "value": "ratio-4x3" + } + ], + [ + "{-token", + "{", + 141259, + 141259, + null + ], + [ + "delim-token", + "-", + 141260, + 141260, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 141261, + 141261, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-aspect-ratio", + 141262, + 141276, + { + "value": "bs-aspect-ratio" + } + ], + [ + "colon-token", + ":", + 141277, + 141277, + null + ], + [ + "percentage-token", + "75%", + 141278, + 141280, + { + "value": 75 + } + ], + [ + "}-token", + "}", + 141281, + 141281, + null + ], + [ + "delim-token", + ".", + 141282, + 141282, + { + "value": "." + } + ], + [ + "ident-token", + "ratio-16x9", + 141283, + 141292, + { + "value": "ratio-16x9" + } + ], + [ + "{-token", + "{", + 141293, + 141293, + null + ], + [ + "delim-token", + "-", + 141294, + 141294, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 141295, + 141295, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-aspect-ratio", + 141296, + 141310, + { + "value": "bs-aspect-ratio" + } + ], + [ + "colon-token", + ":", + 141311, + 141311, + null + ], + [ + "percentage-token", + "56.25%", + 141312, + 141317, + { + "value": 56.25 + } + ], + [ + "}-token", + "}", + 141318, + 141318, + null + ], + [ + "delim-token", + ".", + 141319, + 141319, + { + "value": "." + } + ], + [ + "ident-token", + "ratio-21x9", + 141320, + 141329, + { + "value": "ratio-21x9" + } + ], + [ + "{-token", + "{", + 141330, + 141330, + null + ], + [ + "delim-token", + "-", + 141331, + 141331, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 141332, + 141332, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-aspect-ratio", + 141333, + 141347, + { + "value": "bs-aspect-ratio" + } + ], + [ + "colon-token", + ":", + 141348, + 141348, + null + ], + [ + "percentage-token", + "42.8571428571%", + 141349, + 141362, + { + "value": 42.8571428571 + } + ], + [ + "}-token", + "}", + 141363, + 141363, + null + ], + [ + "delim-token", + ".", + 141364, + 141364, + { + "value": "." + } + ], + [ + "ident-token", + "fixed-top", + 141365, + 141373, + { + "value": "fixed-top" + } + ], + [ + "{-token", + "{", + 141374, + 141374, + null + ], + [ + "ident-token", + "position", + 141375, + 141382, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141383, + 141383, + null + ], + [ + "ident-token", + "fixed", + 141384, + 141388, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 141389, + 141389, + null + ], + [ + "ident-token", + "top", + 141390, + 141392, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 141393, + 141393, + null + ], + [ + "number-token", + "0", + 141394, + 141394, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141395, + 141395, + null + ], + [ + "ident-token", + "right", + 141396, + 141400, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 141401, + 141401, + null + ], + [ + "number-token", + "0", + 141402, + 141402, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141403, + 141403, + null + ], + [ + "ident-token", + "left", + 141404, + 141407, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 141408, + 141408, + null + ], + [ + "number-token", + "0", + 141409, + 141409, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141410, + 141410, + null + ], + [ + "ident-token", + "z-index", + 141411, + 141417, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141418, + 141418, + null + ], + [ + "number-token", + "1030", + 141419, + 141422, + { + "value": 1030, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141423, + 141423, + null + ], + [ + "delim-token", + ".", + 141424, + 141424, + { + "value": "." + } + ], + [ + "ident-token", + "fixed-bottom", + 141425, + 141436, + { + "value": "fixed-bottom" + } + ], + [ + "{-token", + "{", + 141437, + 141437, + null + ], + [ + "ident-token", + "position", + 141438, + 141445, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141446, + 141446, + null + ], + [ + "ident-token", + "fixed", + 141447, + 141451, + { + "value": "fixed" + } + ], + [ + "semicolon-token", + ";", + 141452, + 141452, + null + ], + [ + "ident-token", + "right", + 141453, + 141457, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 141458, + 141458, + null + ], + [ + "number-token", + "0", + 141459, + 141459, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141460, + 141460, + null + ], + [ + "ident-token", + "bottom", + 141461, + 141466, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 141467, + 141467, + null + ], + [ + "number-token", + "0", + 141468, + 141468, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141469, + 141469, + null + ], + [ + "ident-token", + "left", + 141470, + 141473, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 141474, + 141474, + null + ], + [ + "number-token", + "0", + 141475, + 141475, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141476, + 141476, + null + ], + [ + "ident-token", + "z-index", + 141477, + 141483, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141484, + 141484, + null + ], + [ + "number-token", + "1030", + 141485, + 141488, + { + "value": 1030, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141489, + 141489, + null + ], + [ + "delim-token", + ".", + 141490, + 141490, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-top", + 141491, + 141500, + { + "value": "sticky-top" + } + ], + [ + "{-token", + "{", + 141501, + 141501, + null + ], + [ + "ident-token", + "position", + 141502, + 141509, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141510, + 141510, + null + ], + [ + "delim-token", + "-", + 141511, + 141511, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141512, + 141524, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141525, + 141525, + null + ], + [ + "ident-token", + "position", + 141526, + 141533, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141534, + 141534, + null + ], + [ + "ident-token", + "sticky", + 141535, + 141540, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141541, + 141541, + null + ], + [ + "ident-token", + "top", + 141542, + 141544, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 141545, + 141545, + null + ], + [ + "number-token", + "0", + 141546, + 141546, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141547, + 141547, + null + ], + [ + "ident-token", + "z-index", + 141548, + 141554, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141555, + 141555, + null + ], + [ + "number-token", + "1020", + 141556, + 141559, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141560, + 141560, + null + ], + [ + "delim-token", + ".", + 141561, + 141561, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-bottom", + 141562, + 141574, + { + "value": "sticky-bottom" + } + ], + [ + "{-token", + "{", + 141575, + 141575, + null + ], + [ + "ident-token", + "position", + 141576, + 141583, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141584, + 141584, + null + ], + [ + "delim-token", + "-", + 141585, + 141585, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141586, + 141598, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141599, + 141599, + null + ], + [ + "ident-token", + "position", + 141600, + 141607, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141608, + 141608, + null + ], + [ + "ident-token", + "sticky", + 141609, + 141614, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141615, + 141615, + null + ], + [ + "ident-token", + "bottom", + 141616, + 141621, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 141622, + 141622, + null + ], + [ + "number-token", + "0", + 141623, + 141623, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141624, + 141624, + null + ], + [ + "ident-token", + "z-index", + 141625, + 141631, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141632, + 141632, + null + ], + [ + "number-token", + "1020", + 141633, + 141636, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141637, + 141637, + null + ], + [ + "at-keyword-token", + "@media", + 141638, + 141643, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 141644, + 141644, + null + ], + [ + "(-token", + "(", + 141645, + 141645, + null + ], + [ + "ident-token", + "min-width", + 141646, + 141654, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 141655, + 141655, + null + ], + [ + "dimension-token", + "576px", + 141656, + 141660, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 141661, + 141661, + null + ], + [ + "{-token", + "{", + 141662, + 141662, + null + ], + [ + "delim-token", + ".", + 141663, + 141663, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-sm-top", + 141664, + 141676, + { + "value": "sticky-sm-top" + } + ], + [ + "{-token", + "{", + 141677, + 141677, + null + ], + [ + "ident-token", + "position", + 141678, + 141685, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141686, + 141686, + null + ], + [ + "delim-token", + "-", + 141687, + 141687, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141688, + 141700, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141701, + 141701, + null + ], + [ + "ident-token", + "position", + 141702, + 141709, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141710, + 141710, + null + ], + [ + "ident-token", + "sticky", + 141711, + 141716, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141717, + 141717, + null + ], + [ + "ident-token", + "top", + 141718, + 141720, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 141721, + 141721, + null + ], + [ + "number-token", + "0", + 141722, + 141722, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141723, + 141723, + null + ], + [ + "ident-token", + "z-index", + 141724, + 141730, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141731, + 141731, + null + ], + [ + "number-token", + "1020", + 141732, + 141735, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141736, + 141736, + null + ], + [ + "delim-token", + ".", + 141737, + 141737, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-sm-bottom", + 141738, + 141753, + { + "value": "sticky-sm-bottom" + } + ], + [ + "{-token", + "{", + 141754, + 141754, + null + ], + [ + "ident-token", + "position", + 141755, + 141762, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141763, + 141763, + null + ], + [ + "delim-token", + "-", + 141764, + 141764, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141765, + 141777, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141778, + 141778, + null + ], + [ + "ident-token", + "position", + 141779, + 141786, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141787, + 141787, + null + ], + [ + "ident-token", + "sticky", + 141788, + 141793, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141794, + 141794, + null + ], + [ + "ident-token", + "bottom", + 141795, + 141800, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 141801, + 141801, + null + ], + [ + "number-token", + "0", + 141802, + 141802, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141803, + 141803, + null + ], + [ + "ident-token", + "z-index", + 141804, + 141810, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141811, + 141811, + null + ], + [ + "number-token", + "1020", + 141812, + 141815, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141816, + 141816, + null + ], + [ + "}-token", + "}", + 141817, + 141817, + null + ], + [ + "at-keyword-token", + "@media", + 141818, + 141823, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 141824, + 141824, + null + ], + [ + "(-token", + "(", + 141825, + 141825, + null + ], + [ + "ident-token", + "min-width", + 141826, + 141834, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 141835, + 141835, + null + ], + [ + "dimension-token", + "768px", + 141836, + 141840, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 141841, + 141841, + null + ], + [ + "{-token", + "{", + 141842, + 141842, + null + ], + [ + "delim-token", + ".", + 141843, + 141843, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-md-top", + 141844, + 141856, + { + "value": "sticky-md-top" + } + ], + [ + "{-token", + "{", + 141857, + 141857, + null + ], + [ + "ident-token", + "position", + 141858, + 141865, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141866, + 141866, + null + ], + [ + "delim-token", + "-", + 141867, + 141867, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141868, + 141880, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141881, + 141881, + null + ], + [ + "ident-token", + "position", + 141882, + 141889, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141890, + 141890, + null + ], + [ + "ident-token", + "sticky", + 141891, + 141896, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141897, + 141897, + null + ], + [ + "ident-token", + "top", + 141898, + 141900, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 141901, + 141901, + null + ], + [ + "number-token", + "0", + 141902, + 141902, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141903, + 141903, + null + ], + [ + "ident-token", + "z-index", + 141904, + 141910, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141911, + 141911, + null + ], + [ + "number-token", + "1020", + 141912, + 141915, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141916, + 141916, + null + ], + [ + "delim-token", + ".", + 141917, + 141917, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-md-bottom", + 141918, + 141933, + { + "value": "sticky-md-bottom" + } + ], + [ + "{-token", + "{", + 141934, + 141934, + null + ], + [ + "ident-token", + "position", + 141935, + 141942, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141943, + 141943, + null + ], + [ + "delim-token", + "-", + 141944, + 141944, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 141945, + 141957, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 141958, + 141958, + null + ], + [ + "ident-token", + "position", + 141959, + 141966, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 141967, + 141967, + null + ], + [ + "ident-token", + "sticky", + 141968, + 141973, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 141974, + 141974, + null + ], + [ + "ident-token", + "bottom", + 141975, + 141980, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 141981, + 141981, + null + ], + [ + "number-token", + "0", + 141982, + 141982, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 141983, + 141983, + null + ], + [ + "ident-token", + "z-index", + 141984, + 141990, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 141991, + 141991, + null + ], + [ + "number-token", + "1020", + 141992, + 141995, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 141996, + 141996, + null + ], + [ + "}-token", + "}", + 141997, + 141997, + null + ], + [ + "at-keyword-token", + "@media", + 141998, + 142003, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 142004, + 142004, + null + ], + [ + "(-token", + "(", + 142005, + 142005, + null + ], + [ + "ident-token", + "min-width", + 142006, + 142014, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 142015, + 142015, + null + ], + [ + "dimension-token", + "992px", + 142016, + 142020, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 142021, + 142021, + null + ], + [ + "{-token", + "{", + 142022, + 142022, + null + ], + [ + "delim-token", + ".", + 142023, + 142023, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-lg-top", + 142024, + 142036, + { + "value": "sticky-lg-top" + } + ], + [ + "{-token", + "{", + 142037, + 142037, + null + ], + [ + "ident-token", + "position", + 142038, + 142045, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142046, + 142046, + null + ], + [ + "delim-token", + "-", + 142047, + 142047, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142048, + 142060, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142061, + 142061, + null + ], + [ + "ident-token", + "position", + 142062, + 142069, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142070, + 142070, + null + ], + [ + "ident-token", + "sticky", + 142071, + 142076, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142077, + 142077, + null + ], + [ + "ident-token", + "top", + 142078, + 142080, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 142081, + 142081, + null + ], + [ + "number-token", + "0", + 142082, + 142082, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142083, + 142083, + null + ], + [ + "ident-token", + "z-index", + 142084, + 142090, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142091, + 142091, + null + ], + [ + "number-token", + "1020", + 142092, + 142095, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142096, + 142096, + null + ], + [ + "delim-token", + ".", + 142097, + 142097, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-lg-bottom", + 142098, + 142113, + { + "value": "sticky-lg-bottom" + } + ], + [ + "{-token", + "{", + 142114, + 142114, + null + ], + [ + "ident-token", + "position", + 142115, + 142122, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142123, + 142123, + null + ], + [ + "delim-token", + "-", + 142124, + 142124, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142125, + 142137, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142138, + 142138, + null + ], + [ + "ident-token", + "position", + 142139, + 142146, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142147, + 142147, + null + ], + [ + "ident-token", + "sticky", + 142148, + 142153, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142154, + 142154, + null + ], + [ + "ident-token", + "bottom", + 142155, + 142160, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 142161, + 142161, + null + ], + [ + "number-token", + "0", + 142162, + 142162, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142163, + 142163, + null + ], + [ + "ident-token", + "z-index", + 142164, + 142170, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142171, + 142171, + null + ], + [ + "number-token", + "1020", + 142172, + 142175, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142176, + 142176, + null + ], + [ + "}-token", + "}", + 142177, + 142177, + null + ], + [ + "at-keyword-token", + "@media", + 142178, + 142183, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 142184, + 142184, + null + ], + [ + "(-token", + "(", + 142185, + 142185, + null + ], + [ + "ident-token", + "min-width", + 142186, + 142194, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 142195, + 142195, + null + ], + [ + "dimension-token", + "1200px", + 142196, + 142201, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 142202, + 142202, + null + ], + [ + "{-token", + "{", + 142203, + 142203, + null + ], + [ + "delim-token", + ".", + 142204, + 142204, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-xl-top", + 142205, + 142217, + { + "value": "sticky-xl-top" + } + ], + [ + "{-token", + "{", + 142218, + 142218, + null + ], + [ + "ident-token", + "position", + 142219, + 142226, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142227, + 142227, + null + ], + [ + "delim-token", + "-", + 142228, + 142228, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142229, + 142241, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142242, + 142242, + null + ], + [ + "ident-token", + "position", + 142243, + 142250, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142251, + 142251, + null + ], + [ + "ident-token", + "sticky", + 142252, + 142257, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142258, + 142258, + null + ], + [ + "ident-token", + "top", + 142259, + 142261, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 142262, + 142262, + null + ], + [ + "number-token", + "0", + 142263, + 142263, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142264, + 142264, + null + ], + [ + "ident-token", + "z-index", + 142265, + 142271, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142272, + 142272, + null + ], + [ + "number-token", + "1020", + 142273, + 142276, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142277, + 142277, + null + ], + [ + "delim-token", + ".", + 142278, + 142278, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-xl-bottom", + 142279, + 142294, + { + "value": "sticky-xl-bottom" + } + ], + [ + "{-token", + "{", + 142295, + 142295, + null + ], + [ + "ident-token", + "position", + 142296, + 142303, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142304, + 142304, + null + ], + [ + "delim-token", + "-", + 142305, + 142305, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142306, + 142318, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142319, + 142319, + null + ], + [ + "ident-token", + "position", + 142320, + 142327, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142328, + 142328, + null + ], + [ + "ident-token", + "sticky", + 142329, + 142334, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142335, + 142335, + null + ], + [ + "ident-token", + "bottom", + 142336, + 142341, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 142342, + 142342, + null + ], + [ + "number-token", + "0", + 142343, + 142343, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142344, + 142344, + null + ], + [ + "ident-token", + "z-index", + 142345, + 142351, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142352, + 142352, + null + ], + [ + "number-token", + "1020", + 142353, + 142356, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142357, + 142357, + null + ], + [ + "}-token", + "}", + 142358, + 142358, + null + ], + [ + "at-keyword-token", + "@media", + 142359, + 142364, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 142365, + 142365, + null + ], + [ + "(-token", + "(", + 142366, + 142366, + null + ], + [ + "ident-token", + "min-width", + 142367, + 142375, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 142376, + 142376, + null + ], + [ + "dimension-token", + "1400px", + 142377, + 142382, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 142383, + 142383, + null + ], + [ + "{-token", + "{", + 142384, + 142384, + null + ], + [ + "delim-token", + ".", + 142385, + 142385, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-xxl-top", + 142386, + 142399, + { + "value": "sticky-xxl-top" + } + ], + [ + "{-token", + "{", + 142400, + 142400, + null + ], + [ + "ident-token", + "position", + 142401, + 142408, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142409, + 142409, + null + ], + [ + "delim-token", + "-", + 142410, + 142410, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142411, + 142423, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142424, + 142424, + null + ], + [ + "ident-token", + "position", + 142425, + 142432, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142433, + 142433, + null + ], + [ + "ident-token", + "sticky", + 142434, + 142439, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142440, + 142440, + null + ], + [ + "ident-token", + "top", + 142441, + 142443, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 142444, + 142444, + null + ], + [ + "number-token", + "0", + 142445, + 142445, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142446, + 142446, + null + ], + [ + "ident-token", + "z-index", + 142447, + 142453, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142454, + 142454, + null + ], + [ + "number-token", + "1020", + 142455, + 142458, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142459, + 142459, + null + ], + [ + "delim-token", + ".", + 142460, + 142460, + { + "value": "." + } + ], + [ + "ident-token", + "sticky-xxl-bottom", + 142461, + 142477, + { + "value": "sticky-xxl-bottom" + } + ], + [ + "{-token", + "{", + 142478, + 142478, + null + ], + [ + "ident-token", + "position", + 142479, + 142486, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142487, + 142487, + null + ], + [ + "delim-token", + "-", + 142488, + 142488, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 142489, + 142501, + { + "value": "webkit-sticky" + } + ], + [ + "semicolon-token", + ";", + 142502, + 142502, + null + ], + [ + "ident-token", + "position", + 142503, + 142510, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142511, + 142511, + null + ], + [ + "ident-token", + "sticky", + 142512, + 142517, + { + "value": "sticky" + } + ], + [ + "semicolon-token", + ";", + 142518, + 142518, + null + ], + [ + "ident-token", + "bottom", + 142519, + 142524, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 142525, + 142525, + null + ], + [ + "number-token", + "0", + 142526, + 142526, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 142527, + 142527, + null + ], + [ + "ident-token", + "z-index", + 142528, + 142534, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 142535, + 142535, + null + ], + [ + "number-token", + "1020", + 142536, + 142539, + { + "value": 1020, + "type": "integer" + } + ], + [ + "}-token", + "}", + 142540, + 142540, + null + ], + [ + "}-token", + "}", + 142541, + 142541, + null + ], + [ + "delim-token", + ".", + 142542, + 142542, + { + "value": "." + } + ], + [ + "ident-token", + "hstack", + 142543, + 142548, + { + "value": "hstack" + } + ], + [ + "{-token", + "{", + 142549, + 142549, + null + ], + [ + "ident-token", + "display", + 142550, + 142556, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 142557, + 142557, + null + ], + [ + "ident-token", + "flex", + 142558, + 142561, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 142562, + 142562, + null + ], + [ + "ident-token", + "flex-direction", + 142563, + 142576, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 142577, + 142577, + null + ], + [ + "ident-token", + "row", + 142578, + 142580, + { + "value": "row" + } + ], + [ + "semicolon-token", + ";", + 142581, + 142581, + null + ], + [ + "ident-token", + "align-items", + 142582, + 142592, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 142593, + 142593, + null + ], + [ + "ident-token", + "center", + 142594, + 142599, + { + "value": "center" + } + ], + [ + "semicolon-token", + ";", + 142600, + 142600, + null + ], + [ + "ident-token", + "align-self", + 142601, + 142610, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 142611, + 142611, + null + ], + [ + "ident-token", + "stretch", + 142612, + 142618, + { + "value": "stretch" + } + ], + [ + "}-token", + "}", + 142619, + 142619, + null + ], + [ + "delim-token", + ".", + 142620, + 142620, + { + "value": "." + } + ], + [ + "ident-token", + "vstack", + 142621, + 142626, + { + "value": "vstack" + } + ], + [ + "{-token", + "{", + 142627, + 142627, + null + ], + [ + "ident-token", + "display", + 142628, + 142634, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 142635, + 142635, + null + ], + [ + "ident-token", + "flex", + 142636, + 142639, + { + "value": "flex" + } + ], + [ + "semicolon-token", + ";", + 142640, + 142640, + null + ], + [ + "ident-token", + "flex", + 142641, + 142644, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 142645, + 142645, + null + ], + [ + "number-token", + "1", + 142646, + 142646, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 142647, + 142647, + null + ], + [ + "number-token", + "1", + 142648, + 142648, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 142649, + 142649, + null + ], + [ + "ident-token", + "auto", + 142650, + 142653, + { + "value": "auto" + } + ], + [ + "semicolon-token", + ";", + 142654, + 142654, + null + ], + [ + "ident-token", + "flex-direction", + 142655, + 142668, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 142669, + 142669, + null + ], + [ + "ident-token", + "column", + 142670, + 142675, + { + "value": "column" + } + ], + [ + "semicolon-token", + ";", + 142676, + 142676, + null + ], + [ + "ident-token", + "align-self", + 142677, + 142686, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 142687, + 142687, + null + ], + [ + "ident-token", + "stretch", + 142688, + 142694, + { + "value": "stretch" + } + ], + [ + "}-token", + "}", + 142695, + 142695, + null + ], + [ + "delim-token", + ".", + 142696, + 142696, + { + "value": "." + } + ], + [ + "ident-token", + "visually-hidden", + 142697, + 142711, + { + "value": "visually-hidden" + } + ], + [ + "comma-token", + ",", + 142712, + 142712, + null + ], + [ + "delim-token", + ".", + 142713, + 142713, + { + "value": "." + } + ], + [ + "ident-token", + "visually-hidden-focusable", + 142714, + 142738, + { + "value": "visually-hidden-focusable" + } + ], + [ + "colon-token", + ":", + 142739, + 142739, + null + ], + [ + "function-token", + "not(", + 142740, + 142743, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 142744, + 142744, + null + ], + [ + "ident-token", + "focus", + 142745, + 142749, + { + "value": "focus" + } + ], + [ + ")-token", + ")", + 142750, + 142750, + null + ], + [ + "colon-token", + ":", + 142751, + 142751, + null + ], + [ + "function-token", + "not(", + 142752, + 142755, + { + "value": "not" + } + ], + [ + "colon-token", + ":", + 142756, + 142756, + null + ], + [ + "ident-token", + "focus-within", + 142757, + 142768, + { + "value": "focus-within" + } + ], + [ + ")-token", + ")", + 142769, + 142769, + null + ], + [ + "{-token", + "{", + 142770, + 142770, + null + ], + [ + "ident-token", + "position", + 142771, + 142778, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 142779, + 142779, + null + ], + [ + "ident-token", + "absolute", + 142780, + 142787, + { + "value": "absolute" + } + ], + [ + "delim-token", + "!", + 142788, + 142788, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142789, + 142797, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142798, + 142798, + null + ], + [ + "ident-token", + "width", + 142799, + 142803, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 142804, + 142804, + null + ], + [ + "dimension-token", + "1px", + 142805, + 142807, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "delim-token", + "!", + 142808, + 142808, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142809, + 142817, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142818, + 142818, + null + ], + [ + "ident-token", + "height", + 142819, + 142824, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 142825, + 142825, + null + ], + [ + "dimension-token", + "1px", + 142826, + 142828, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "delim-token", + "!", + 142829, + 142829, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142830, + 142838, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142839, + 142839, + null + ], + [ + "ident-token", + "padding", + 142840, + 142846, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 142847, + 142847, + null + ], + [ + "number-token", + "0", + 142848, + 142848, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 142849, + 142849, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142850, + 142858, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142859, + 142859, + null + ], + [ + "ident-token", + "margin", + 142860, + 142865, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 142866, + 142866, + null + ], + [ + "dimension-token", + "-1px", + 142867, + 142870, + { + "value": -1, + "type": "integer", + "unit": "px" + } + ], + [ + "delim-token", + "!", + 142871, + 142871, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142872, + 142880, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142881, + 142881, + null + ], + [ + "ident-token", + "overflow", + 142882, + 142889, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 142890, + 142890, + null + ], + [ + "ident-token", + "hidden", + 142891, + 142896, + { + "value": "hidden" + } + ], + [ + "delim-token", + "!", + 142897, + 142897, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142898, + 142906, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142907, + 142907, + null + ], + [ + "ident-token", + "clip", + 142908, + 142911, + { + "value": "clip" + } + ], + [ + "colon-token", + ":", + 142912, + 142912, + null + ], + [ + "function-token", + "rect(", + 142913, + 142917, + { + "value": "rect" + } + ], + [ + "number-token", + "0", + 142918, + 142918, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 142919, + 142919, + null + ], + [ + "number-token", + "0", + 142920, + 142920, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 142921, + 142921, + null + ], + [ + "number-token", + "0", + 142922, + 142922, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 142923, + 142923, + null + ], + [ + "number-token", + "0", + 142924, + 142924, + { + "value": 0, + "type": "integer" + } + ], + [ + ")-token", + ")", + 142925, + 142925, + null + ], + [ + "delim-token", + "!", + 142926, + 142926, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142927, + 142935, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142936, + 142936, + null + ], + [ + "ident-token", + "white-space", + 142937, + 142947, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 142948, + 142948, + null + ], + [ + "ident-token", + "nowrap", + 142949, + 142954, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 142955, + 142955, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142956, + 142964, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 142965, + 142965, + null + ], + [ + "ident-token", + "border", + 142966, + 142971, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 142972, + 142972, + null + ], + [ + "number-token", + "0", + 142973, + 142973, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 142974, + 142974, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 142975, + 142983, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 142984, + 142984, + null + ], + [ + "delim-token", + ".", + 142985, + 142985, + { + "value": "." + } + ], + [ + "ident-token", + "stretched-link", + 142986, + 142999, + { + "value": "stretched-link" + } + ], + [ + "colon-token", + ":", + 143000, + 143000, + null + ], + [ + "colon-token", + ":", + 143001, + 143001, + null + ], + [ + "ident-token", + "after", + 143002, + 143006, + { + "value": "after" + } + ], + [ + "{-token", + "{", + 143007, + 143007, + null + ], + [ + "ident-token", + "position", + 143008, + 143015, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 143016, + 143016, + null + ], + [ + "ident-token", + "absolute", + 143017, + 143024, + { + "value": "absolute" + } + ], + [ + "semicolon-token", + ";", + 143025, + 143025, + null + ], + [ + "ident-token", + "top", + 143026, + 143028, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 143029, + 143029, + null + ], + [ + "number-token", + "0", + 143030, + 143030, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 143031, + 143031, + null + ], + [ + "ident-token", + "right", + 143032, + 143036, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 143037, + 143037, + null + ], + [ + "number-token", + "0", + 143038, + 143038, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 143039, + 143039, + null + ], + [ + "ident-token", + "bottom", + 143040, + 143045, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 143046, + 143046, + null + ], + [ + "number-token", + "0", + 143047, + 143047, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 143048, + 143048, + null + ], + [ + "ident-token", + "left", + 143049, + 143052, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 143053, + 143053, + null + ], + [ + "number-token", + "0", + 143054, + 143054, + { + "value": 0, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 143055, + 143055, + null + ], + [ + "ident-token", + "z-index", + 143056, + 143062, + { + "value": "z-index" + } + ], + [ + "colon-token", + ":", + 143063, + 143063, + null + ], + [ + "number-token", + "1", + 143064, + 143064, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 143065, + 143065, + null + ], + [ + "ident-token", + "content", + 143066, + 143072, + { + "value": "content" + } + ], + [ + "colon-token", + ":", + 143073, + 143073, + null + ], + [ + "string-token", + "\"\"", + 143074, + 143075, + { + "value": "" + } + ], + [ + "}-token", + "}", + 143076, + 143076, + null + ], + [ + "delim-token", + ".", + 143077, + 143077, + { + "value": "." + } + ], + [ + "ident-token", + "text-truncate", + 143078, + 143090, + { + "value": "text-truncate" + } + ], + [ + "{-token", + "{", + 143091, + 143091, + null + ], + [ + "ident-token", + "overflow", + 143092, + 143099, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 143100, + 143100, + null + ], + [ + "ident-token", + "hidden", + 143101, + 143106, + { + "value": "hidden" + } + ], + [ + "semicolon-token", + ";", + 143107, + 143107, + null + ], + [ + "ident-token", + "text-overflow", + 143108, + 143120, + { + "value": "text-overflow" + } + ], + [ + "colon-token", + ":", + 143121, + 143121, + null + ], + [ + "ident-token", + "ellipsis", + 143122, + 143129, + { + "value": "ellipsis" + } + ], + [ + "semicolon-token", + ";", + 143130, + 143130, + null + ], + [ + "ident-token", + "white-space", + 143131, + 143141, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 143142, + 143142, + null + ], + [ + "ident-token", + "nowrap", + 143143, + 143148, + { + "value": "nowrap" + } + ], + [ + "}-token", + "}", + 143149, + 143149, + null + ], + [ + "delim-token", + ".", + 143150, + 143150, + { + "value": "." + } + ], + [ + "ident-token", + "vr", + 143151, + 143152, + { + "value": "vr" + } + ], + [ + "{-token", + "{", + 143153, + 143153, + null + ], + [ + "ident-token", + "display", + 143154, + 143160, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 143161, + 143161, + null + ], + [ + "ident-token", + "inline-block", + 143162, + 143173, + { + "value": "inline-block" + } + ], + [ + "semicolon-token", + ";", + 143174, + 143174, + null + ], + [ + "ident-token", + "align-self", + 143175, + 143184, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 143185, + 143185, + null + ], + [ + "ident-token", + "stretch", + 143186, + 143192, + { + "value": "stretch" + } + ], + [ + "semicolon-token", + ";", + 143193, + 143193, + null + ], + [ + "ident-token", + "width", + 143194, + 143198, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 143199, + 143199, + null + ], + [ + "dimension-token", + "1px", + 143200, + 143202, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "semicolon-token", + ";", + 143203, + 143203, + null + ], + [ + "ident-token", + "min-height", + 143204, + 143213, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 143214, + 143214, + null + ], + [ + "dimension-token", + "1em", + 143215, + 143217, + { + "value": 1, + "type": "integer", + "unit": "em" + } + ], + [ + "semicolon-token", + ";", + 143218, + 143218, + null + ], + [ + "ident-token", + "background-color", + 143219, + 143234, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 143235, + 143235, + null + ], + [ + "ident-token", + "currentcolor", + 143236, + 143247, + { + "value": "currentcolor" + } + ], + [ + "semicolon-token", + ";", + 143248, + 143248, + null + ], + [ + "ident-token", + "opacity", + 143249, + 143255, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143256, + 143256, + null + ], + [ + "number-token", + ".25", + 143257, + 143259, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 143260, + 143260, + null + ], + [ + "delim-token", + ".", + 143261, + 143261, + { + "value": "." + } + ], + [ + "ident-token", + "align-baseline", + 143262, + 143275, + { + "value": "align-baseline" + } + ], + [ + "{-token", + "{", + 143276, + 143276, + null + ], + [ + "ident-token", + "vertical-align", + 143277, + 143290, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143291, + 143291, + null + ], + [ + "ident-token", + "baseline", + 143292, + 143299, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 143300, + 143300, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143301, + 143309, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143310, + 143310, + null + ], + [ + "delim-token", + ".", + 143311, + 143311, + { + "value": "." + } + ], + [ + "ident-token", + "align-top", + 143312, + 143320, + { + "value": "align-top" + } + ], + [ + "{-token", + "{", + 143321, + 143321, + null + ], + [ + "ident-token", + "vertical-align", + 143322, + 143335, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143336, + 143336, + null + ], + [ + "ident-token", + "top", + 143337, + 143339, + { + "value": "top" + } + ], + [ + "delim-token", + "!", + 143340, + 143340, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143341, + 143349, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143350, + 143350, + null + ], + [ + "delim-token", + ".", + 143351, + 143351, + { + "value": "." + } + ], + [ + "ident-token", + "align-middle", + 143352, + 143363, + { + "value": "align-middle" + } + ], + [ + "{-token", + "{", + 143364, + 143364, + null + ], + [ + "ident-token", + "vertical-align", + 143365, + 143378, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143379, + 143379, + null + ], + [ + "ident-token", + "middle", + 143380, + 143385, + { + "value": "middle" + } + ], + [ + "delim-token", + "!", + 143386, + 143386, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143387, + 143395, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143396, + 143396, + null + ], + [ + "delim-token", + ".", + 143397, + 143397, + { + "value": "." + } + ], + [ + "ident-token", + "align-bottom", + 143398, + 143409, + { + "value": "align-bottom" + } + ], + [ + "{-token", + "{", + 143410, + 143410, + null + ], + [ + "ident-token", + "vertical-align", + 143411, + 143424, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143425, + 143425, + null + ], + [ + "ident-token", + "bottom", + 143426, + 143431, + { + "value": "bottom" + } + ], + [ + "delim-token", + "!", + 143432, + 143432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143433, + 143441, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143442, + 143442, + null + ], + [ + "delim-token", + ".", + 143443, + 143443, + { + "value": "." + } + ], + [ + "ident-token", + "align-text-bottom", + 143444, + 143460, + { + "value": "align-text-bottom" + } + ], + [ + "{-token", + "{", + 143461, + 143461, + null + ], + [ + "ident-token", + "vertical-align", + 143462, + 143475, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143476, + 143476, + null + ], + [ + "ident-token", + "text-bottom", + 143477, + 143487, + { + "value": "text-bottom" + } + ], + [ + "delim-token", + "!", + 143488, + 143488, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143489, + 143497, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143498, + 143498, + null + ], + [ + "delim-token", + ".", + 143499, + 143499, + { + "value": "." + } + ], + [ + "ident-token", + "align-text-top", + 143500, + 143513, + { + "value": "align-text-top" + } + ], + [ + "{-token", + "{", + 143514, + 143514, + null + ], + [ + "ident-token", + "vertical-align", + 143515, + 143528, + { + "value": "vertical-align" + } + ], + [ + "colon-token", + ":", + 143529, + 143529, + null + ], + [ + "ident-token", + "text-top", + 143530, + 143537, + { + "value": "text-top" + } + ], + [ + "delim-token", + "!", + 143538, + 143538, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143539, + 143547, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143548, + 143548, + null + ], + [ + "delim-token", + ".", + 143549, + 143549, + { + "value": "." + } + ], + [ + "ident-token", + "float-start", + 143550, + 143560, + { + "value": "float-start" + } + ], + [ + "{-token", + "{", + 143561, + 143561, + null + ], + [ + "ident-token", + "float", + 143562, + 143566, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 143567, + 143567, + null + ], + [ + "ident-token", + "left", + 143568, + 143571, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 143572, + 143572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143573, + 143581, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143582, + 143582, + null + ], + [ + "delim-token", + ".", + 143583, + 143583, + { + "value": "." + } + ], + [ + "ident-token", + "float-end", + 143584, + 143592, + { + "value": "float-end" + } + ], + [ + "{-token", + "{", + 143593, + 143593, + null + ], + [ + "ident-token", + "float", + 143594, + 143598, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 143599, + 143599, + null + ], + [ + "ident-token", + "right", + 143600, + 143604, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 143605, + 143605, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143606, + 143614, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143615, + 143615, + null + ], + [ + "delim-token", + ".", + 143616, + 143616, + { + "value": "." + } + ], + [ + "ident-token", + "float-none", + 143617, + 143626, + { + "value": "float-none" + } + ], + [ + "{-token", + "{", + 143627, + 143627, + null + ], + [ + "ident-token", + "float", + 143628, + 143632, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 143633, + 143633, + null + ], + [ + "ident-token", + "none", + 143634, + 143637, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 143638, + 143638, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143639, + 143647, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143648, + 143648, + null + ], + [ + "delim-token", + ".", + 143649, + 143649, + { + "value": "." + } + ], + [ + "ident-token", + "opacity-0", + 143650, + 143658, + { + "value": "opacity-0" + } + ], + [ + "{-token", + "{", + 143659, + 143659, + null + ], + [ + "ident-token", + "opacity", + 143660, + 143666, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143667, + 143667, + null + ], + [ + "number-token", + "0", + 143668, + 143668, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 143669, + 143669, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143670, + 143678, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143679, + 143679, + null + ], + [ + "delim-token", + ".", + 143680, + 143680, + { + "value": "." + } + ], + [ + "ident-token", + "opacity-25", + 143681, + 143690, + { + "value": "opacity-25" + } + ], + [ + "{-token", + "{", + 143691, + 143691, + null + ], + [ + "ident-token", + "opacity", + 143692, + 143698, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143699, + 143699, + null + ], + [ + "number-token", + ".25", + 143700, + 143702, + { + "value": 0.25, + "type": "number" + } + ], + [ + "delim-token", + "!", + 143703, + 143703, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143704, + 143712, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143713, + 143713, + null + ], + [ + "delim-token", + ".", + 143714, + 143714, + { + "value": "." + } + ], + [ + "ident-token", + "opacity-50", + 143715, + 143724, + { + "value": "opacity-50" + } + ], + [ + "{-token", + "{", + 143725, + 143725, + null + ], + [ + "ident-token", + "opacity", + 143726, + 143732, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143733, + 143733, + null + ], + [ + "number-token", + ".5", + 143734, + 143735, + { + "value": 0.5, + "type": "number" + } + ], + [ + "delim-token", + "!", + 143736, + 143736, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143737, + 143745, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143746, + 143746, + null + ], + [ + "delim-token", + ".", + 143747, + 143747, + { + "value": "." + } + ], + [ + "ident-token", + "opacity-75", + 143748, + 143757, + { + "value": "opacity-75" + } + ], + [ + "{-token", + "{", + 143758, + 143758, + null + ], + [ + "ident-token", + "opacity", + 143759, + 143765, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143766, + 143766, + null + ], + [ + "number-token", + ".75", + 143767, + 143769, + { + "value": 0.75, + "type": "number" + } + ], + [ + "delim-token", + "!", + 143770, + 143770, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143771, + 143779, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143780, + 143780, + null + ], + [ + "delim-token", + ".", + 143781, + 143781, + { + "value": "." + } + ], + [ + "ident-token", + "opacity-100", + 143782, + 143792, + { + "value": "opacity-100" + } + ], + [ + "{-token", + "{", + 143793, + 143793, + null + ], + [ + "ident-token", + "opacity", + 143794, + 143800, + { + "value": "opacity" + } + ], + [ + "colon-token", + ":", + 143801, + 143801, + null + ], + [ + "number-token", + "1", + 143802, + 143802, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 143803, + 143803, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143804, + 143812, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143813, + 143813, + null + ], + [ + "delim-token", + ".", + 143814, + 143814, + { + "value": "." + } + ], + [ + "ident-token", + "overflow-auto", + 143815, + 143827, + { + "value": "overflow-auto" + } + ], + [ + "{-token", + "{", + 143828, + 143828, + null + ], + [ + "ident-token", + "overflow", + 143829, + 143836, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 143837, + 143837, + null + ], + [ + "ident-token", + "auto", + 143838, + 143841, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 143842, + 143842, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143843, + 143851, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143852, + 143852, + null + ], + [ + "delim-token", + ".", + 143853, + 143853, + { + "value": "." + } + ], + [ + "ident-token", + "overflow-hidden", + 143854, + 143868, + { + "value": "overflow-hidden" + } + ], + [ + "{-token", + "{", + 143869, + 143869, + null + ], + [ + "ident-token", + "overflow", + 143870, + 143877, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 143878, + 143878, + null + ], + [ + "ident-token", + "hidden", + 143879, + 143884, + { + "value": "hidden" + } + ], + [ + "delim-token", + "!", + 143885, + 143885, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143886, + 143894, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143895, + 143895, + null + ], + [ + "delim-token", + ".", + 143896, + 143896, + { + "value": "." + } + ], + [ + "ident-token", + "overflow-visible", + 143897, + 143912, + { + "value": "overflow-visible" + } + ], + [ + "{-token", + "{", + 143913, + 143913, + null + ], + [ + "ident-token", + "overflow", + 143914, + 143921, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 143922, + 143922, + null + ], + [ + "ident-token", + "visible", + 143923, + 143929, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 143930, + 143930, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143931, + 143939, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143940, + 143940, + null + ], + [ + "delim-token", + ".", + 143941, + 143941, + { + "value": "." + } + ], + [ + "ident-token", + "overflow-scroll", + 143942, + 143956, + { + "value": "overflow-scroll" + } + ], + [ + "{-token", + "{", + 143957, + 143957, + null + ], + [ + "ident-token", + "overflow", + 143958, + 143965, + { + "value": "overflow" + } + ], + [ + "colon-token", + ":", + 143966, + 143966, + null + ], + [ + "ident-token", + "scroll", + 143967, + 143972, + { + "value": "scroll" + } + ], + [ + "delim-token", + "!", + 143973, + 143973, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 143974, + 143982, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 143983, + 143983, + null + ], + [ + "delim-token", + ".", + 143984, + 143984, + { + "value": "." + } + ], + [ + "ident-token", + "d-inline", + 143985, + 143992, + { + "value": "d-inline" + } + ], + [ + "{-token", + "{", + 143993, + 143993, + null + ], + [ + "ident-token", + "display", + 143994, + 144000, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144001, + 144001, + null + ], + [ + "ident-token", + "inline", + 144002, + 144007, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 144008, + 144008, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144009, + 144017, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144018, + 144018, + null + ], + [ + "delim-token", + ".", + 144019, + 144019, + { + "value": "." + } + ], + [ + "ident-token", + "d-inline-block", + 144020, + 144033, + { + "value": "d-inline-block" + } + ], + [ + "{-token", + "{", + 144034, + 144034, + null + ], + [ + "ident-token", + "display", + 144035, + 144041, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144042, + 144042, + null + ], + [ + "ident-token", + "inline-block", + 144043, + 144054, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 144055, + 144055, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144056, + 144064, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144065, + 144065, + null + ], + [ + "delim-token", + ".", + 144066, + 144066, + { + "value": "." + } + ], + [ + "ident-token", + "d-block", + 144067, + 144073, + { + "value": "d-block" + } + ], + [ + "{-token", + "{", + 144074, + 144074, + null + ], + [ + "ident-token", + "display", + 144075, + 144081, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144082, + 144082, + null + ], + [ + "ident-token", + "block", + 144083, + 144087, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 144088, + 144088, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144089, + 144097, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144098, + 144098, + null + ], + [ + "delim-token", + ".", + 144099, + 144099, + { + "value": "." + } + ], + [ + "ident-token", + "d-grid", + 144100, + 144105, + { + "value": "d-grid" + } + ], + [ + "{-token", + "{", + 144106, + 144106, + null + ], + [ + "ident-token", + "display", + 144107, + 144113, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144114, + 144114, + null + ], + [ + "ident-token", + "grid", + 144115, + 144118, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 144119, + 144119, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144120, + 144128, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144129, + 144129, + null + ], + [ + "delim-token", + ".", + 144130, + 144130, + { + "value": "." + } + ], + [ + "ident-token", + "d-table", + 144131, + 144137, + { + "value": "d-table" + } + ], + [ + "{-token", + "{", + 144138, + 144138, + null + ], + [ + "ident-token", + "display", + 144139, + 144145, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144146, + 144146, + null + ], + [ + "ident-token", + "table", + 144147, + 144151, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 144152, + 144152, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144153, + 144161, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144162, + 144162, + null + ], + [ + "delim-token", + ".", + 144163, + 144163, + { + "value": "." + } + ], + [ + "ident-token", + "d-table-row", + 144164, + 144174, + { + "value": "d-table-row" + } + ], + [ + "{-token", + "{", + 144175, + 144175, + null + ], + [ + "ident-token", + "display", + 144176, + 144182, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144183, + 144183, + null + ], + [ + "ident-token", + "table-row", + 144184, + 144192, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 144193, + 144193, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144194, + 144202, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144203, + 144203, + null + ], + [ + "delim-token", + ".", + 144204, + 144204, + { + "value": "." + } + ], + [ + "ident-token", + "d-table-cell", + 144205, + 144216, + { + "value": "d-table-cell" + } + ], + [ + "{-token", + "{", + 144217, + 144217, + null + ], + [ + "ident-token", + "display", + 144218, + 144224, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144225, + 144225, + null + ], + [ + "ident-token", + "table-cell", + 144226, + 144235, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 144236, + 144236, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144237, + 144245, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144246, + 144246, + null + ], + [ + "delim-token", + ".", + 144247, + 144247, + { + "value": "." + } + ], + [ + "ident-token", + "d-flex", + 144248, + 144253, + { + "value": "d-flex" + } + ], + [ + "{-token", + "{", + 144254, + 144254, + null + ], + [ + "ident-token", + "display", + 144255, + 144261, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144262, + 144262, + null + ], + [ + "ident-token", + "flex", + 144263, + 144266, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 144267, + 144267, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144268, + 144276, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144277, + 144277, + null + ], + [ + "delim-token", + ".", + 144278, + 144278, + { + "value": "." + } + ], + [ + "ident-token", + "d-inline-flex", + 144279, + 144291, + { + "value": "d-inline-flex" + } + ], + [ + "{-token", + "{", + 144292, + 144292, + null + ], + [ + "ident-token", + "display", + 144293, + 144299, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144300, + 144300, + null + ], + [ + "ident-token", + "inline-flex", + 144301, + 144311, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 144312, + 144312, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144313, + 144321, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144322, + 144322, + null + ], + [ + "delim-token", + ".", + 144323, + 144323, + { + "value": "." + } + ], + [ + "ident-token", + "d-none", + 144324, + 144329, + { + "value": "d-none" + } + ], + [ + "{-token", + "{", + 144330, + 144330, + null + ], + [ + "ident-token", + "display", + 144331, + 144337, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 144338, + 144338, + null + ], + [ + "ident-token", + "none", + 144339, + 144342, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 144343, + 144343, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144344, + 144352, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144353, + 144353, + null + ], + [ + "delim-token", + ".", + 144354, + 144354, + { + "value": "." + } + ], + [ + "ident-token", + "shadow", + 144355, + 144360, + { + "value": "shadow" + } + ], + [ + "{-token", + "{", + 144361, + 144361, + null + ], + [ + "ident-token", + "box-shadow", + 144362, + 144371, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 144372, + 144372, + null + ], + [ + "number-token", + "0", + 144373, + 144373, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 144374, + 144374, + null + ], + [ + "dimension-token", + ".5rem", + 144375, + 144379, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144380, + 144380, + null + ], + [ + "dimension-token", + "1rem", + 144381, + 144384, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144385, + 144385, + null + ], + [ + "function-token", + "rgba(", + 144386, + 144390, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 144391, + 144391, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144392, + 144392, + null + ], + [ + "number-token", + "0", + 144393, + 144393, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144394, + 144394, + null + ], + [ + "number-token", + "0", + 144395, + 144395, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144396, + 144396, + null + ], + [ + "number-token", + ".15", + 144397, + 144399, + { + "value": 0.15, + "type": "number" + } + ], + [ + ")-token", + ")", + 144400, + 144400, + null + ], + [ + "delim-token", + "!", + 144401, + 144401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144402, + 144410, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144411, + 144411, + null + ], + [ + "delim-token", + ".", + 144412, + 144412, + { + "value": "." + } + ], + [ + "ident-token", + "shadow-sm", + 144413, + 144421, + { + "value": "shadow-sm" + } + ], + [ + "{-token", + "{", + 144422, + 144422, + null + ], + [ + "ident-token", + "box-shadow", + 144423, + 144432, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 144433, + 144433, + null + ], + [ + "number-token", + "0", + 144434, + 144434, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 144435, + 144435, + null + ], + [ + "dimension-token", + ".125rem", + 144436, + 144442, + { + "value": 0.125, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144443, + 144443, + null + ], + [ + "dimension-token", + ".25rem", + 144444, + 144449, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144450, + 144450, + null + ], + [ + "function-token", + "rgba(", + 144451, + 144455, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 144456, + 144456, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144457, + 144457, + null + ], + [ + "number-token", + "0", + 144458, + 144458, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144459, + 144459, + null + ], + [ + "number-token", + "0", + 144460, + 144460, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144461, + 144461, + null + ], + [ + "number-token", + ".075", + 144462, + 144465, + { + "value": 0.075, + "type": "number" + } + ], + [ + ")-token", + ")", + 144466, + 144466, + null + ], + [ + "delim-token", + "!", + 144467, + 144467, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144468, + 144476, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144477, + 144477, + null + ], + [ + "delim-token", + ".", + 144478, + 144478, + { + "value": "." + } + ], + [ + "ident-token", + "shadow-lg", + 144479, + 144487, + { + "value": "shadow-lg" + } + ], + [ + "{-token", + "{", + 144488, + 144488, + null + ], + [ + "ident-token", + "box-shadow", + 144489, + 144498, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 144499, + 144499, + null + ], + [ + "number-token", + "0", + 144500, + 144500, + { + "value": 0, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 144501, + 144501, + null + ], + [ + "dimension-token", + "1rem", + 144502, + 144505, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144506, + 144506, + null + ], + [ + "dimension-token", + "3rem", + 144507, + 144510, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 144511, + 144511, + null + ], + [ + "function-token", + "rgba(", + 144512, + 144516, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 144517, + 144517, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144518, + 144518, + null + ], + [ + "number-token", + "0", + 144519, + 144519, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144520, + 144520, + null + ], + [ + "number-token", + "0", + 144521, + 144521, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 144522, + 144522, + null + ], + [ + "number-token", + ".175", + 144523, + 144526, + { + "value": 0.175, + "type": "number" + } + ], + [ + ")-token", + ")", + 144527, + 144527, + null + ], + [ + "delim-token", + "!", + 144528, + 144528, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144529, + 144537, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144538, + 144538, + null + ], + [ + "delim-token", + ".", + 144539, + 144539, + { + "value": "." + } + ], + [ + "ident-token", + "shadow-none", + 144540, + 144550, + { + "value": "shadow-none" + } + ], + [ + "{-token", + "{", + 144551, + 144551, + null + ], + [ + "ident-token", + "box-shadow", + 144552, + 144561, + { + "value": "box-shadow" + } + ], + [ + "colon-token", + ":", + 144562, + 144562, + null + ], + [ + "ident-token", + "none", + 144563, + 144566, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 144567, + 144567, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144568, + 144576, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144577, + 144577, + null + ], + [ + "delim-token", + ".", + 144578, + 144578, + { + "value": "." + } + ], + [ + "ident-token", + "position-static", + 144579, + 144593, + { + "value": "position-static" + } + ], + [ + "{-token", + "{", + 144594, + 144594, + null + ], + [ + "ident-token", + "position", + 144595, + 144602, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144603, + 144603, + null + ], + [ + "ident-token", + "static", + 144604, + 144609, + { + "value": "static" + } + ], + [ + "delim-token", + "!", + 144610, + 144610, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144611, + 144619, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144620, + 144620, + null + ], + [ + "delim-token", + ".", + 144621, + 144621, + { + "value": "." + } + ], + [ + "ident-token", + "position-relative", + 144622, + 144638, + { + "value": "position-relative" + } + ], + [ + "{-token", + "{", + 144639, + 144639, + null + ], + [ + "ident-token", + "position", + 144640, + 144647, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144648, + 144648, + null + ], + [ + "ident-token", + "relative", + 144649, + 144656, + { + "value": "relative" + } + ], + [ + "delim-token", + "!", + 144657, + 144657, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144658, + 144666, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144667, + 144667, + null + ], + [ + "delim-token", + ".", + 144668, + 144668, + { + "value": "." + } + ], + [ + "ident-token", + "position-absolute", + 144669, + 144685, + { + "value": "position-absolute" + } + ], + [ + "{-token", + "{", + 144686, + 144686, + null + ], + [ + "ident-token", + "position", + 144687, + 144694, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144695, + 144695, + null + ], + [ + "ident-token", + "absolute", + 144696, + 144703, + { + "value": "absolute" + } + ], + [ + "delim-token", + "!", + 144704, + 144704, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144705, + 144713, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144714, + 144714, + null + ], + [ + "delim-token", + ".", + 144715, + 144715, + { + "value": "." + } + ], + [ + "ident-token", + "position-fixed", + 144716, + 144729, + { + "value": "position-fixed" + } + ], + [ + "{-token", + "{", + 144730, + 144730, + null + ], + [ + "ident-token", + "position", + 144731, + 144738, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144739, + 144739, + null + ], + [ + "ident-token", + "fixed", + 144740, + 144744, + { + "value": "fixed" + } + ], + [ + "delim-token", + "!", + 144745, + 144745, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144746, + 144754, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144755, + 144755, + null + ], + [ + "delim-token", + ".", + 144756, + 144756, + { + "value": "." + } + ], + [ + "ident-token", + "position-sticky", + 144757, + 144771, + { + "value": "position-sticky" + } + ], + [ + "{-token", + "{", + 144772, + 144772, + null + ], + [ + "ident-token", + "position", + 144773, + 144780, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144781, + 144781, + null + ], + [ + "delim-token", + "-", + 144782, + 144782, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-sticky", + 144783, + 144795, + { + "value": "webkit-sticky" + } + ], + [ + "delim-token", + "!", + 144796, + 144796, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144797, + 144805, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 144806, + 144806, + null + ], + [ + "ident-token", + "position", + 144807, + 144814, + { + "value": "position" + } + ], + [ + "colon-token", + ":", + 144815, + 144815, + null + ], + [ + "ident-token", + "sticky", + 144816, + 144821, + { + "value": "sticky" + } + ], + [ + "delim-token", + "!", + 144822, + 144822, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144823, + 144831, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144832, + 144832, + null + ], + [ + "delim-token", + ".", + 144833, + 144833, + { + "value": "." + } + ], + [ + "ident-token", + "top-0", + 144834, + 144838, + { + "value": "top-0" + } + ], + [ + "{-token", + "{", + 144839, + 144839, + null + ], + [ + "ident-token", + "top", + 144840, + 144842, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 144843, + 144843, + null + ], + [ + "number-token", + "0", + 144844, + 144844, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 144845, + 144845, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144846, + 144854, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144855, + 144855, + null + ], + [ + "delim-token", + ".", + 144856, + 144856, + { + "value": "." + } + ], + [ + "ident-token", + "top-50", + 144857, + 144862, + { + "value": "top-50" + } + ], + [ + "{-token", + "{", + 144863, + 144863, + null + ], + [ + "ident-token", + "top", + 144864, + 144866, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 144867, + 144867, + null + ], + [ + "percentage-token", + "50%", + 144868, + 144870, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 144871, + 144871, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144872, + 144880, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144881, + 144881, + null + ], + [ + "delim-token", + ".", + 144882, + 144882, + { + "value": "." + } + ], + [ + "ident-token", + "top-100", + 144883, + 144889, + { + "value": "top-100" + } + ], + [ + "{-token", + "{", + 144890, + 144890, + null + ], + [ + "ident-token", + "top", + 144891, + 144893, + { + "value": "top" + } + ], + [ + "colon-token", + ":", + 144894, + 144894, + null + ], + [ + "percentage-token", + "100%", + 144895, + 144898, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 144899, + 144899, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144900, + 144908, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144909, + 144909, + null + ], + [ + "delim-token", + ".", + 144910, + 144910, + { + "value": "." + } + ], + [ + "ident-token", + "bottom-0", + 144911, + 144918, + { + "value": "bottom-0" + } + ], + [ + "{-token", + "{", + 144919, + 144919, + null + ], + [ + "ident-token", + "bottom", + 144920, + 144925, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 144926, + 144926, + null + ], + [ + "number-token", + "0", + 144927, + 144927, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 144928, + 144928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144929, + 144937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144938, + 144938, + null + ], + [ + "delim-token", + ".", + 144939, + 144939, + { + "value": "." + } + ], + [ + "ident-token", + "bottom-50", + 144940, + 144948, + { + "value": "bottom-50" + } + ], + [ + "{-token", + "{", + 144949, + 144949, + null + ], + [ + "ident-token", + "bottom", + 144950, + 144955, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 144956, + 144956, + null + ], + [ + "percentage-token", + "50%", + 144957, + 144959, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 144960, + 144960, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144961, + 144969, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 144970, + 144970, + null + ], + [ + "delim-token", + ".", + 144971, + 144971, + { + "value": "." + } + ], + [ + "ident-token", + "bottom-100", + 144972, + 144981, + { + "value": "bottom-100" + } + ], + [ + "{-token", + "{", + 144982, + 144982, + null + ], + [ + "ident-token", + "bottom", + 144983, + 144988, + { + "value": "bottom" + } + ], + [ + "colon-token", + ":", + 144989, + 144989, + null + ], + [ + "percentage-token", + "100%", + 144990, + 144993, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 144994, + 144994, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 144995, + 145003, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145004, + 145004, + null + ], + [ + "delim-token", + ".", + 145005, + 145005, + { + "value": "." + } + ], + [ + "ident-token", + "start-0", + 145006, + 145012, + { + "value": "start-0" + } + ], + [ + "{-token", + "{", + 145013, + 145013, + null + ], + [ + "ident-token", + "left", + 145014, + 145017, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 145018, + 145018, + null + ], + [ + "number-token", + "0", + 145019, + 145019, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145020, + 145020, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145021, + 145029, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145030, + 145030, + null + ], + [ + "delim-token", + ".", + 145031, + 145031, + { + "value": "." + } + ], + [ + "ident-token", + "start-50", + 145032, + 145039, + { + "value": "start-50" + } + ], + [ + "{-token", + "{", + 145040, + 145040, + null + ], + [ + "ident-token", + "left", + 145041, + 145044, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 145045, + 145045, + null + ], + [ + "percentage-token", + "50%", + 145046, + 145048, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 145049, + 145049, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145050, + 145058, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145059, + 145059, + null + ], + [ + "delim-token", + ".", + 145060, + 145060, + { + "value": "." + } + ], + [ + "ident-token", + "start-100", + 145061, + 145069, + { + "value": "start-100" + } + ], + [ + "{-token", + "{", + 145070, + 145070, + null + ], + [ + "ident-token", + "left", + 145071, + 145074, + { + "value": "left" + } + ], + [ + "colon-token", + ":", + 145075, + 145075, + null + ], + [ + "percentage-token", + "100%", + 145076, + 145079, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 145080, + 145080, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145081, + 145089, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145090, + 145090, + null + ], + [ + "delim-token", + ".", + 145091, + 145091, + { + "value": "." + } + ], + [ + "ident-token", + "end-0", + 145092, + 145096, + { + "value": "end-0" + } + ], + [ + "{-token", + "{", + 145097, + 145097, + null + ], + [ + "ident-token", + "right", + 145098, + 145102, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 145103, + 145103, + null + ], + [ + "number-token", + "0", + 145104, + 145104, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145105, + 145105, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145106, + 145114, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145115, + 145115, + null + ], + [ + "delim-token", + ".", + 145116, + 145116, + { + "value": "." + } + ], + [ + "ident-token", + "end-50", + 145117, + 145122, + { + "value": "end-50" + } + ], + [ + "{-token", + "{", + 145123, + 145123, + null + ], + [ + "ident-token", + "right", + 145124, + 145128, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 145129, + 145129, + null + ], + [ + "percentage-token", + "50%", + 145130, + 145132, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 145133, + 145133, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145134, + 145142, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145143, + 145143, + null + ], + [ + "delim-token", + ".", + 145144, + 145144, + { + "value": "." + } + ], + [ + "ident-token", + "end-100", + 145145, + 145151, + { + "value": "end-100" + } + ], + [ + "{-token", + "{", + 145152, + 145152, + null + ], + [ + "ident-token", + "right", + 145153, + 145157, + { + "value": "right" + } + ], + [ + "colon-token", + ":", + 145158, + 145158, + null + ], + [ + "percentage-token", + "100%", + 145159, + 145162, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 145163, + 145163, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145164, + 145172, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145173, + 145173, + null + ], + [ + "delim-token", + ".", + 145174, + 145174, + { + "value": "." + } + ], + [ + "ident-token", + "translate-middle", + 145175, + 145190, + { + "value": "translate-middle" + } + ], + [ + "{-token", + "{", + 145191, + 145191, + null + ], + [ + "ident-token", + "transform", + 145192, + 145200, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 145201, + 145201, + null + ], + [ + "function-token", + "translate(", + 145202, + 145211, + { + "value": "translate" + } + ], + [ + "percentage-token", + "-50%", + 145212, + 145215, + { + "value": -50 + } + ], + [ + "comma-token", + ",", + 145216, + 145216, + null + ], + [ + "percentage-token", + "-50%", + 145217, + 145220, + { + "value": -50 + } + ], + [ + ")-token", + ")", + 145221, + 145221, + null + ], + [ + "delim-token", + "!", + 145222, + 145222, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145223, + 145231, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145232, + 145232, + null + ], + [ + "delim-token", + ".", + 145233, + 145233, + { + "value": "." + } + ], + [ + "ident-token", + "translate-middle-x", + 145234, + 145251, + { + "value": "translate-middle-x" + } + ], + [ + "{-token", + "{", + 145252, + 145252, + null + ], + [ + "ident-token", + "transform", + 145253, + 145261, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 145262, + 145262, + null + ], + [ + "function-token", + "translateX(", + 145263, + 145273, + { + "value": "translateX" + } + ], + [ + "percentage-token", + "-50%", + 145274, + 145277, + { + "value": -50 + } + ], + [ + ")-token", + ")", + 145278, + 145278, + null + ], + [ + "delim-token", + "!", + 145279, + 145279, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145280, + 145288, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145289, + 145289, + null + ], + [ + "delim-token", + ".", + 145290, + 145290, + { + "value": "." + } + ], + [ + "ident-token", + "translate-middle-y", + 145291, + 145308, + { + "value": "translate-middle-y" + } + ], + [ + "{-token", + "{", + 145309, + 145309, + null + ], + [ + "ident-token", + "transform", + 145310, + 145318, + { + "value": "transform" + } + ], + [ + "colon-token", + ":", + 145319, + 145319, + null + ], + [ + "function-token", + "translateY(", + 145320, + 145330, + { + "value": "translateY" + } + ], + [ + "percentage-token", + "-50%", + 145331, + 145334, + { + "value": -50 + } + ], + [ + ")-token", + ")", + 145335, + 145335, + null + ], + [ + "delim-token", + "!", + 145336, + 145336, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145337, + 145345, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145346, + 145346, + null + ], + [ + "delim-token", + ".", + 145347, + 145347, + { + "value": "." + } + ], + [ + "ident-token", + "border", + 145348, + 145353, + { + "value": "border" + } + ], + [ + "{-token", + "{", + 145354, + 145354, + null + ], + [ + "ident-token", + "border", + 145355, + 145360, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 145361, + 145361, + null + ], + [ + "function-token", + "var(", + 145362, + 145365, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145366, + 145366, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145367, + 145367, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 145368, + 145382, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 145383, + 145383, + null + ], + [ + "whitespace-token", + " ", + 145384, + 145384, + null + ], + [ + "function-token", + "var(", + 145385, + 145388, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145389, + 145389, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145390, + 145390, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 145391, + 145405, + { + "value": "bs-border-style" + } + ], + [ + ")-token", + ")", + 145406, + 145406, + null + ], + [ + "whitespace-token", + " ", + 145407, + 145407, + null + ], + [ + "function-token", + "var(", + 145408, + 145411, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145412, + 145412, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145413, + 145413, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 145414, + 145428, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 145429, + 145429, + null + ], + [ + "delim-token", + "!", + 145430, + 145430, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145431, + 145439, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145440, + 145440, + null + ], + [ + "delim-token", + ".", + 145441, + 145441, + { + "value": "." + } + ], + [ + "ident-token", + "border-0", + 145442, + 145449, + { + "value": "border-0" + } + ], + [ + "{-token", + "{", + 145450, + 145450, + null + ], + [ + "ident-token", + "border", + 145451, + 145456, + { + "value": "border" + } + ], + [ + "colon-token", + ":", + 145457, + 145457, + null + ], + [ + "number-token", + "0", + 145458, + 145458, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145459, + 145459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145460, + 145468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145469, + 145469, + null + ], + [ + "delim-token", + ".", + 145470, + 145470, + { + "value": "." + } + ], + [ + "ident-token", + "border-top", + 145471, + 145480, + { + "value": "border-top" + } + ], + [ + "{-token", + "{", + 145481, + 145481, + null + ], + [ + "ident-token", + "border-top", + 145482, + 145491, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 145492, + 145492, + null + ], + [ + "function-token", + "var(", + 145493, + 145496, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145497, + 145497, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145498, + 145498, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 145499, + 145513, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 145514, + 145514, + null + ], + [ + "whitespace-token", + " ", + 145515, + 145515, + null + ], + [ + "function-token", + "var(", + 145516, + 145519, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145520, + 145520, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145521, + 145521, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 145522, + 145536, + { + "value": "bs-border-style" + } + ], + [ + ")-token", + ")", + 145537, + 145537, + null + ], + [ + "whitespace-token", + " ", + 145538, + 145538, + null + ], + [ + "function-token", + "var(", + 145539, + 145542, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145543, + 145543, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145544, + 145544, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 145545, + 145559, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 145560, + 145560, + null + ], + [ + "delim-token", + "!", + 145561, + 145561, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145562, + 145570, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145571, + 145571, + null + ], + [ + "delim-token", + ".", + 145572, + 145572, + { + "value": "." + } + ], + [ + "ident-token", + "border-top-0", + 145573, + 145584, + { + "value": "border-top-0" + } + ], + [ + "{-token", + "{", + 145585, + 145585, + null + ], + [ + "ident-token", + "border-top", + 145586, + 145595, + { + "value": "border-top" + } + ], + [ + "colon-token", + ":", + 145596, + 145596, + null + ], + [ + "number-token", + "0", + 145597, + 145597, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145598, + 145598, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145599, + 145607, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145608, + 145608, + null + ], + [ + "delim-token", + ".", + 145609, + 145609, + { + "value": "." + } + ], + [ + "ident-token", + "border-end", + 145610, + 145619, + { + "value": "border-end" + } + ], + [ + "{-token", + "{", + 145620, + 145620, + null + ], + [ + "ident-token", + "border-right", + 145621, + 145632, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 145633, + 145633, + null + ], + [ + "function-token", + "var(", + 145634, + 145637, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145638, + 145638, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145639, + 145639, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 145640, + 145654, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 145655, + 145655, + null + ], + [ + "whitespace-token", + " ", + 145656, + 145656, + null + ], + [ + "function-token", + "var(", + 145657, + 145660, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145661, + 145661, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145662, + 145662, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 145663, + 145677, + { + "value": "bs-border-style" + } + ], + [ + ")-token", + ")", + 145678, + 145678, + null + ], + [ + "whitespace-token", + " ", + 145679, + 145679, + null + ], + [ + "function-token", + "var(", + 145680, + 145683, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145684, + 145684, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145685, + 145685, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 145686, + 145700, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 145701, + 145701, + null + ], + [ + "delim-token", + "!", + 145702, + 145702, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145703, + 145711, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145712, + 145712, + null + ], + [ + "delim-token", + ".", + 145713, + 145713, + { + "value": "." + } + ], + [ + "ident-token", + "border-end-0", + 145714, + 145725, + { + "value": "border-end-0" + } + ], + [ + "{-token", + "{", + 145726, + 145726, + null + ], + [ + "ident-token", + "border-right", + 145727, + 145738, + { + "value": "border-right" + } + ], + [ + "colon-token", + ":", + 145739, + 145739, + null + ], + [ + "number-token", + "0", + 145740, + 145740, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145741, + 145741, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145742, + 145750, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145751, + 145751, + null + ], + [ + "delim-token", + ".", + 145752, + 145752, + { + "value": "." + } + ], + [ + "ident-token", + "border-bottom", + 145753, + 145765, + { + "value": "border-bottom" + } + ], + [ + "{-token", + "{", + 145766, + 145766, + null + ], + [ + "ident-token", + "border-bottom", + 145767, + 145779, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 145780, + 145780, + null + ], + [ + "function-token", + "var(", + 145781, + 145784, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145785, + 145785, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145786, + 145786, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 145787, + 145801, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 145802, + 145802, + null + ], + [ + "whitespace-token", + " ", + 145803, + 145803, + null + ], + [ + "function-token", + "var(", + 145804, + 145807, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145808, + 145808, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145809, + 145809, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 145810, + 145824, + { + "value": "bs-border-style" + } + ], + [ + ")-token", + ")", + 145825, + 145825, + null + ], + [ + "whitespace-token", + " ", + 145826, + 145826, + null + ], + [ + "function-token", + "var(", + 145827, + 145830, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145831, + 145831, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145832, + 145832, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 145833, + 145847, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 145848, + 145848, + null + ], + [ + "delim-token", + "!", + 145849, + 145849, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145850, + 145858, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145859, + 145859, + null + ], + [ + "delim-token", + ".", + 145860, + 145860, + { + "value": "." + } + ], + [ + "ident-token", + "border-bottom-0", + 145861, + 145875, + { + "value": "border-bottom-0" + } + ], + [ + "{-token", + "{", + 145876, + 145876, + null + ], + [ + "ident-token", + "border-bottom", + 145877, + 145889, + { + "value": "border-bottom" + } + ], + [ + "colon-token", + ":", + 145890, + 145890, + null + ], + [ + "number-token", + "0", + 145891, + 145891, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 145892, + 145892, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145893, + 145901, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 145902, + 145902, + null + ], + [ + "delim-token", + ".", + 145903, + 145903, + { + "value": "." + } + ], + [ + "ident-token", + "border-start", + 145904, + 145915, + { + "value": "border-start" + } + ], + [ + "{-token", + "{", + 145916, + 145916, + null + ], + [ + "ident-token", + "border-left", + 145917, + 145927, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 145928, + 145928, + null + ], + [ + "function-token", + "var(", + 145929, + 145932, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145933, + 145933, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145934, + 145934, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 145935, + 145949, + { + "value": "bs-border-width" + } + ], + [ + ")-token", + ")", + 145950, + 145950, + null + ], + [ + "whitespace-token", + " ", + 145951, + 145951, + null + ], + [ + "function-token", + "var(", + 145952, + 145955, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145956, + 145956, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145957, + 145957, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-style", + 145958, + 145972, + { + "value": "bs-border-style" + } + ], + [ + ")-token", + ")", + 145973, + 145973, + null + ], + [ + "whitespace-token", + " ", + 145974, + 145974, + null + ], + [ + "function-token", + "var(", + 145975, + 145978, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 145979, + 145979, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 145980, + 145980, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-color", + 145981, + 145995, + { + "value": "bs-border-color" + } + ], + [ + ")-token", + ")", + 145996, + 145996, + null + ], + [ + "delim-token", + "!", + 145997, + 145997, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 145998, + 146006, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146007, + 146007, + null + ], + [ + "delim-token", + ".", + 146008, + 146008, + { + "value": "." + } + ], + [ + "ident-token", + "border-start-0", + 146009, + 146022, + { + "value": "border-start-0" + } + ], + [ + "{-token", + "{", + 146023, + 146023, + null + ], + [ + "ident-token", + "border-left", + 146024, + 146034, + { + "value": "border-left" + } + ], + [ + "colon-token", + ":", + 146035, + 146035, + null + ], + [ + "number-token", + "0", + 146036, + 146036, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 146037, + 146037, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146038, + 146046, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146047, + 146047, + null + ], + [ + "delim-token", + ".", + 146048, + 146048, + { + "value": "." + } + ], + [ + "ident-token", + "border-primary", + 146049, + 146062, + { + "value": "border-primary" + } + ], + [ + "{-token", + "{", + 146063, + 146063, + null + ], + [ + "delim-token", + "-", + 146064, + 146064, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146065, + 146065, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146066, + 146082, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146083, + 146083, + null + ], + [ + "number-token", + "1", + 146084, + 146084, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146085, + 146085, + null + ], + [ + "ident-token", + "border-color", + 146086, + 146097, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146098, + 146098, + null + ], + [ + "function-token", + "rgba(", + 146099, + 146103, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146104, + 146107, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146108, + 146108, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146109, + 146109, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-primary-rgb", + 146110, + 146123, + { + "value": "bs-primary-rgb" + } + ], + [ + ")-token", + ")", + 146124, + 146124, + null + ], + [ + "comma-token", + ",", + 146125, + 146125, + null + ], + [ + "function-token", + "var(", + 146126, + 146129, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146130, + 146130, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146131, + 146131, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146132, + 146148, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146149, + 146149, + null + ], + [ + ")-token", + ")", + 146150, + 146150, + null + ], + [ + "delim-token", + "!", + 146151, + 146151, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146152, + 146160, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146161, + 146161, + null + ], + [ + "delim-token", + ".", + 146162, + 146162, + { + "value": "." + } + ], + [ + "ident-token", + "border-secondary", + 146163, + 146178, + { + "value": "border-secondary" + } + ], + [ + "{-token", + "{", + 146179, + 146179, + null + ], + [ + "delim-token", + "-", + 146180, + 146180, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146181, + 146181, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146182, + 146198, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146199, + 146199, + null + ], + [ + "number-token", + "1", + 146200, + 146200, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146201, + 146201, + null + ], + [ + "ident-token", + "border-color", + 146202, + 146213, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146214, + 146214, + null + ], + [ + "function-token", + "rgba(", + 146215, + 146219, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146220, + 146223, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146224, + 146224, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146225, + 146225, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-secondary-rgb", + 146226, + 146241, + { + "value": "bs-secondary-rgb" + } + ], + [ + ")-token", + ")", + 146242, + 146242, + null + ], + [ + "comma-token", + ",", + 146243, + 146243, + null + ], + [ + "function-token", + "var(", + 146244, + 146247, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146248, + 146248, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146249, + 146249, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146250, + 146266, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146267, + 146267, + null + ], + [ + ")-token", + ")", + 146268, + 146268, + null + ], + [ + "delim-token", + "!", + 146269, + 146269, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146270, + 146278, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146279, + 146279, + null + ], + [ + "delim-token", + ".", + 146280, + 146280, + { + "value": "." + } + ], + [ + "ident-token", + "border-success", + 146281, + 146294, + { + "value": "border-success" + } + ], + [ + "{-token", + "{", + 146295, + 146295, + null + ], + [ + "delim-token", + "-", + 146296, + 146296, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146297, + 146297, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146298, + 146314, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146315, + 146315, + null + ], + [ + "number-token", + "1", + 146316, + 146316, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146317, + 146317, + null + ], + [ + "ident-token", + "border-color", + 146318, + 146329, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146330, + 146330, + null + ], + [ + "function-token", + "rgba(", + 146331, + 146335, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146336, + 146339, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146340, + 146340, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146341, + 146341, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-success-rgb", + 146342, + 146355, + { + "value": "bs-success-rgb" + } + ], + [ + ")-token", + ")", + 146356, + 146356, + null + ], + [ + "comma-token", + ",", + 146357, + 146357, + null + ], + [ + "function-token", + "var(", + 146358, + 146361, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146362, + 146362, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146363, + 146363, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146364, + 146380, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146381, + 146381, + null + ], + [ + ")-token", + ")", + 146382, + 146382, + null + ], + [ + "delim-token", + "!", + 146383, + 146383, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146384, + 146392, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146393, + 146393, + null + ], + [ + "delim-token", + ".", + 146394, + 146394, + { + "value": "." + } + ], + [ + "ident-token", + "border-info", + 146395, + 146405, + { + "value": "border-info" + } + ], + [ + "{-token", + "{", + 146406, + 146406, + null + ], + [ + "delim-token", + "-", + 146407, + 146407, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146408, + 146408, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146409, + 146425, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146426, + 146426, + null + ], + [ + "number-token", + "1", + 146427, + 146427, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146428, + 146428, + null + ], + [ + "ident-token", + "border-color", + 146429, + 146440, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146441, + 146441, + null + ], + [ + "function-token", + "rgba(", + 146442, + 146446, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146447, + 146450, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146451, + 146451, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146452, + 146452, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-info-rgb", + 146453, + 146463, + { + "value": "bs-info-rgb" + } + ], + [ + ")-token", + ")", + 146464, + 146464, + null + ], + [ + "comma-token", + ",", + 146465, + 146465, + null + ], + [ + "function-token", + "var(", + 146466, + 146469, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146470, + 146470, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146471, + 146471, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146472, + 146488, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146489, + 146489, + null + ], + [ + ")-token", + ")", + 146490, + 146490, + null + ], + [ + "delim-token", + "!", + 146491, + 146491, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146492, + 146500, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146501, + 146501, + null + ], + [ + "delim-token", + ".", + 146502, + 146502, + { + "value": "." + } + ], + [ + "ident-token", + "border-warning", + 146503, + 146516, + { + "value": "border-warning" + } + ], + [ + "{-token", + "{", + 146517, + 146517, + null + ], + [ + "delim-token", + "-", + 146518, + 146518, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146519, + 146519, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146520, + 146536, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146537, + 146537, + null + ], + [ + "number-token", + "1", + 146538, + 146538, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146539, + 146539, + null + ], + [ + "ident-token", + "border-color", + 146540, + 146551, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146552, + 146552, + null + ], + [ + "function-token", + "rgba(", + 146553, + 146557, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146558, + 146561, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146562, + 146562, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146563, + 146563, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-warning-rgb", + 146564, + 146577, + { + "value": "bs-warning-rgb" + } + ], + [ + ")-token", + ")", + 146578, + 146578, + null + ], + [ + "comma-token", + ",", + 146579, + 146579, + null + ], + [ + "function-token", + "var(", + 146580, + 146583, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146584, + 146584, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146585, + 146585, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146586, + 146602, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146603, + 146603, + null + ], + [ + ")-token", + ")", + 146604, + 146604, + null + ], + [ + "delim-token", + "!", + 146605, + 146605, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146606, + 146614, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146615, + 146615, + null + ], + [ + "delim-token", + ".", + 146616, + 146616, + { + "value": "." + } + ], + [ + "ident-token", + "border-danger", + 146617, + 146629, + { + "value": "border-danger" + } + ], + [ + "{-token", + "{", + 146630, + 146630, + null + ], + [ + "delim-token", + "-", + 146631, + 146631, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146632, + 146632, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146633, + 146649, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146650, + 146650, + null + ], + [ + "number-token", + "1", + 146651, + 146651, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146652, + 146652, + null + ], + [ + "ident-token", + "border-color", + 146653, + 146664, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146665, + 146665, + null + ], + [ + "function-token", + "rgba(", + 146666, + 146670, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146671, + 146674, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146675, + 146675, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146676, + 146676, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-danger-rgb", + 146677, + 146689, + { + "value": "bs-danger-rgb" + } + ], + [ + ")-token", + ")", + 146690, + 146690, + null + ], + [ + "comma-token", + ",", + 146691, + 146691, + null + ], + [ + "function-token", + "var(", + 146692, + 146695, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146696, + 146696, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146697, + 146697, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146698, + 146714, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146715, + 146715, + null + ], + [ + ")-token", + ")", + 146716, + 146716, + null + ], + [ + "delim-token", + "!", + 146717, + 146717, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146718, + 146726, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146727, + 146727, + null + ], + [ + "delim-token", + ".", + 146728, + 146728, + { + "value": "." + } + ], + [ + "ident-token", + "border-light", + 146729, + 146740, + { + "value": "border-light" + } + ], + [ + "{-token", + "{", + 146741, + 146741, + null + ], + [ + "delim-token", + "-", + 146742, + 146742, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146743, + 146743, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146744, + 146760, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146761, + 146761, + null + ], + [ + "number-token", + "1", + 146762, + 146762, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146763, + 146763, + null + ], + [ + "ident-token", + "border-color", + 146764, + 146775, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146776, + 146776, + null + ], + [ + "function-token", + "rgba(", + 146777, + 146781, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146782, + 146785, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146786, + 146786, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146787, + 146787, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-light-rgb", + 146788, + 146799, + { + "value": "bs-light-rgb" + } + ], + [ + ")-token", + ")", + 146800, + 146800, + null + ], + [ + "comma-token", + ",", + 146801, + 146801, + null + ], + [ + "function-token", + "var(", + 146802, + 146805, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146806, + 146806, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146807, + 146807, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146808, + 146824, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146825, + 146825, + null + ], + [ + ")-token", + ")", + 146826, + 146826, + null + ], + [ + "delim-token", + "!", + 146827, + 146827, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146828, + 146836, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146837, + 146837, + null + ], + [ + "delim-token", + ".", + 146838, + 146838, + { + "value": "." + } + ], + [ + "ident-token", + "border-dark", + 146839, + 146849, + { + "value": "border-dark" + } + ], + [ + "{-token", + "{", + 146850, + 146850, + null + ], + [ + "delim-token", + "-", + 146851, + 146851, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146852, + 146852, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146853, + 146869, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146870, + 146870, + null + ], + [ + "number-token", + "1", + 146871, + 146871, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146872, + 146872, + null + ], + [ + "ident-token", + "border-color", + 146873, + 146884, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146885, + 146885, + null + ], + [ + "function-token", + "rgba(", + 146886, + 146890, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 146891, + 146894, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146895, + 146895, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146896, + 146896, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dark-rgb", + 146897, + 146907, + { + "value": "bs-dark-rgb" + } + ], + [ + ")-token", + ")", + 146908, + 146908, + null + ], + [ + "comma-token", + ",", + 146909, + 146909, + null + ], + [ + "function-token", + "var(", + 146910, + 146913, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 146914, + 146914, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146915, + 146915, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146916, + 146932, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 146933, + 146933, + null + ], + [ + ")-token", + ")", + 146934, + 146934, + null + ], + [ + "delim-token", + "!", + 146935, + 146935, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 146936, + 146944, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 146945, + 146945, + null + ], + [ + "delim-token", + ".", + 146946, + 146946, + { + "value": "." + } + ], + [ + "ident-token", + "border-white", + 146947, + 146958, + { + "value": "border-white" + } + ], + [ + "{-token", + "{", + 146959, + 146959, + null + ], + [ + "delim-token", + "-", + 146960, + 146960, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 146961, + 146961, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 146962, + 146978, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 146979, + 146979, + null + ], + [ + "number-token", + "1", + 146980, + 146980, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 146981, + 146981, + null + ], + [ + "ident-token", + "border-color", + 146982, + 146993, + { + "value": "border-color" + } + ], + [ + "colon-token", + ":", + 146994, + 146994, + null + ], + [ + "function-token", + "rgba(", + 146995, + 146999, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 147000, + 147003, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 147004, + 147004, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147005, + 147005, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-white-rgb", + 147006, + 147017, + { + "value": "bs-white-rgb" + } + ], + [ + ")-token", + ")", + 147018, + 147018, + null + ], + [ + "comma-token", + ",", + 147019, + 147019, + null + ], + [ + "function-token", + "var(", + 147020, + 147023, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 147024, + 147024, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147025, + 147025, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147026, + 147042, + { + "value": "bs-border-opacity" + } + ], + [ + ")-token", + ")", + 147043, + 147043, + null + ], + [ + ")-token", + ")", + 147044, + 147044, + null + ], + [ + "delim-token", + "!", + 147045, + 147045, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147046, + 147054, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147055, + 147055, + null + ], + [ + "delim-token", + ".", + 147056, + 147056, + { + "value": "." + } + ], + [ + "ident-token", + "border-1", + 147057, + 147064, + { + "value": "border-1" + } + ], + [ + "{-token", + "{", + 147065, + 147065, + null + ], + [ + "delim-token", + "-", + 147066, + 147066, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147067, + 147067, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 147068, + 147082, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 147083, + 147083, + null + ], + [ + "dimension-token", + "1px", + 147084, + 147086, + { + "value": 1, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 147087, + 147087, + null + ], + [ + "delim-token", + ".", + 147088, + 147088, + { + "value": "." + } + ], + [ + "ident-token", + "border-2", + 147089, + 147096, + { + "value": "border-2" + } + ], + [ + "{-token", + "{", + 147097, + 147097, + null + ], + [ + "delim-token", + "-", + 147098, + 147098, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147099, + 147099, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 147100, + 147114, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 147115, + 147115, + null + ], + [ + "dimension-token", + "2px", + 147116, + 147118, + { + "value": 2, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 147119, + 147119, + null + ], + [ + "delim-token", + ".", + 147120, + 147120, + { + "value": "." + } + ], + [ + "ident-token", + "border-3", + 147121, + 147128, + { + "value": "border-3" + } + ], + [ + "{-token", + "{", + 147129, + 147129, + null + ], + [ + "delim-token", + "-", + 147130, + 147130, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147131, + 147131, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 147132, + 147146, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 147147, + 147147, + null + ], + [ + "dimension-token", + "3px", + 147148, + 147150, + { + "value": 3, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 147151, + 147151, + null + ], + [ + "delim-token", + ".", + 147152, + 147152, + { + "value": "." + } + ], + [ + "ident-token", + "border-4", + 147153, + 147160, + { + "value": "border-4" + } + ], + [ + "{-token", + "{", + 147161, + 147161, + null + ], + [ + "delim-token", + "-", + 147162, + 147162, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147163, + 147163, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 147164, + 147178, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 147179, + 147179, + null + ], + [ + "dimension-token", + "4px", + 147180, + 147182, + { + "value": 4, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 147183, + 147183, + null + ], + [ + "delim-token", + ".", + 147184, + 147184, + { + "value": "." + } + ], + [ + "ident-token", + "border-5", + 147185, + 147192, + { + "value": "border-5" + } + ], + [ + "{-token", + "{", + 147193, + 147193, + null + ], + [ + "delim-token", + "-", + 147194, + 147194, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147195, + 147195, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-width", + 147196, + 147210, + { + "value": "bs-border-width" + } + ], + [ + "colon-token", + ":", + 147211, + 147211, + null + ], + [ + "dimension-token", + "5px", + 147212, + 147214, + { + "value": 5, + "type": "integer", + "unit": "px" + } + ], + [ + "}-token", + "}", + 147215, + 147215, + null + ], + [ + "delim-token", + ".", + 147216, + 147216, + { + "value": "." + } + ], + [ + "ident-token", + "border-opacity-10", + 147217, + 147233, + { + "value": "border-opacity-10" + } + ], + [ + "{-token", + "{", + 147234, + 147234, + null + ], + [ + "delim-token", + "-", + 147235, + 147235, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147236, + 147236, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147237, + 147253, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 147254, + 147254, + null + ], + [ + "number-token", + "0.1", + 147255, + 147257, + { + "value": 0.1, + "type": "number" + } + ], + [ + "}-token", + "}", + 147258, + 147258, + null + ], + [ + "delim-token", + ".", + 147259, + 147259, + { + "value": "." + } + ], + [ + "ident-token", + "border-opacity-25", + 147260, + 147276, + { + "value": "border-opacity-25" + } + ], + [ + "{-token", + "{", + 147277, + 147277, + null + ], + [ + "delim-token", + "-", + 147278, + 147278, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147279, + 147279, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147280, + 147296, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 147297, + 147297, + null + ], + [ + "number-token", + "0.25", + 147298, + 147301, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 147302, + 147302, + null + ], + [ + "delim-token", + ".", + 147303, + 147303, + { + "value": "." + } + ], + [ + "ident-token", + "border-opacity-50", + 147304, + 147320, + { + "value": "border-opacity-50" + } + ], + [ + "{-token", + "{", + 147321, + 147321, + null + ], + [ + "delim-token", + "-", + 147322, + 147322, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147323, + 147323, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147324, + 147340, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 147341, + 147341, + null + ], + [ + "number-token", + "0.5", + 147342, + 147344, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 147345, + 147345, + null + ], + [ + "delim-token", + ".", + 147346, + 147346, + { + "value": "." + } + ], + [ + "ident-token", + "border-opacity-75", + 147347, + 147363, + { + "value": "border-opacity-75" + } + ], + [ + "{-token", + "{", + 147364, + 147364, + null + ], + [ + "delim-token", + "-", + 147365, + 147365, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147366, + 147366, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147367, + 147383, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 147384, + 147384, + null + ], + [ + "number-token", + "0.75", + 147385, + 147388, + { + "value": 0.75, + "type": "number" + } + ], + [ + "}-token", + "}", + 147389, + 147389, + null + ], + [ + "delim-token", + ".", + 147390, + 147390, + { + "value": "." + } + ], + [ + "ident-token", + "border-opacity-100", + 147391, + 147408, + { + "value": "border-opacity-100" + } + ], + [ + "{-token", + "{", + 147409, + 147409, + null + ], + [ + "delim-token", + "-", + 147410, + 147410, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 147411, + 147411, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-opacity", + 147412, + 147428, + { + "value": "bs-border-opacity" + } + ], + [ + "colon-token", + ":", + 147429, + 147429, + null + ], + [ + "number-token", + "1", + 147430, + 147430, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 147431, + 147431, + null + ], + [ + "delim-token", + ".", + 147432, + 147432, + { + "value": "." + } + ], + [ + "ident-token", + "w-25", + 147433, + 147436, + { + "value": "w-25" + } + ], + [ + "{-token", + "{", + 147437, + 147437, + null + ], + [ + "ident-token", + "width", + 147438, + 147442, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147443, + 147443, + null + ], + [ + "percentage-token", + "25%", + 147444, + 147446, + { + "value": 25 + } + ], + [ + "delim-token", + "!", + 147447, + 147447, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147448, + 147456, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147457, + 147457, + null + ], + [ + "delim-token", + ".", + 147458, + 147458, + { + "value": "." + } + ], + [ + "ident-token", + "w-50", + 147459, + 147462, + { + "value": "w-50" + } + ], + [ + "{-token", + "{", + 147463, + 147463, + null + ], + [ + "ident-token", + "width", + 147464, + 147468, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147469, + 147469, + null + ], + [ + "percentage-token", + "50%", + 147470, + 147472, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 147473, + 147473, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147474, + 147482, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147483, + 147483, + null + ], + [ + "delim-token", + ".", + 147484, + 147484, + { + "value": "." + } + ], + [ + "ident-token", + "w-75", + 147485, + 147488, + { + "value": "w-75" + } + ], + [ + "{-token", + "{", + 147489, + 147489, + null + ], + [ + "ident-token", + "width", + 147490, + 147494, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147495, + 147495, + null + ], + [ + "percentage-token", + "75%", + 147496, + 147498, + { + "value": 75 + } + ], + [ + "delim-token", + "!", + 147499, + 147499, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147500, + 147508, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147509, + 147509, + null + ], + [ + "delim-token", + ".", + 147510, + 147510, + { + "value": "." + } + ], + [ + "ident-token", + "w-100", + 147511, + 147515, + { + "value": "w-100" + } + ], + [ + "{-token", + "{", + 147516, + 147516, + null + ], + [ + "ident-token", + "width", + 147517, + 147521, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147522, + 147522, + null + ], + [ + "percentage-token", + "100%", + 147523, + 147526, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 147527, + 147527, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147528, + 147536, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147537, + 147537, + null + ], + [ + "delim-token", + ".", + 147538, + 147538, + { + "value": "." + } + ], + [ + "ident-token", + "w-auto", + 147539, + 147544, + { + "value": "w-auto" + } + ], + [ + "{-token", + "{", + 147545, + 147545, + null + ], + [ + "ident-token", + "width", + 147546, + 147550, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147551, + 147551, + null + ], + [ + "ident-token", + "auto", + 147552, + 147555, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 147556, + 147556, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147557, + 147565, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147566, + 147566, + null + ], + [ + "delim-token", + ".", + 147567, + 147567, + { + "value": "." + } + ], + [ + "ident-token", + "mw-100", + 147568, + 147573, + { + "value": "mw-100" + } + ], + [ + "{-token", + "{", + 147574, + 147574, + null + ], + [ + "ident-token", + "max-width", + 147575, + 147583, + { + "value": "max-width" + } + ], + [ + "colon-token", + ":", + 147584, + 147584, + null + ], + [ + "percentage-token", + "100%", + 147585, + 147588, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 147589, + 147589, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147590, + 147598, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147599, + 147599, + null + ], + [ + "delim-token", + ".", + 147600, + 147600, + { + "value": "." + } + ], + [ + "ident-token", + "vw-100", + 147601, + 147606, + { + "value": "vw-100" + } + ], + [ + "{-token", + "{", + 147607, + 147607, + null + ], + [ + "ident-token", + "width", + 147608, + 147612, + { + "value": "width" + } + ], + [ + "colon-token", + ":", + 147613, + 147613, + null + ], + [ + "dimension-token", + "100vw", + 147614, + 147618, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "delim-token", + "!", + 147619, + 147619, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147620, + 147628, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147629, + 147629, + null + ], + [ + "delim-token", + ".", + 147630, + 147630, + { + "value": "." + } + ], + [ + "ident-token", + "min-vw-100", + 147631, + 147640, + { + "value": "min-vw-100" + } + ], + [ + "{-token", + "{", + 147641, + 147641, + null + ], + [ + "ident-token", + "min-width", + 147642, + 147650, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 147651, + 147651, + null + ], + [ + "dimension-token", + "100vw", + 147652, + 147656, + { + "value": 100, + "type": "integer", + "unit": "vw" + } + ], + [ + "delim-token", + "!", + 147657, + 147657, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147658, + 147666, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147667, + 147667, + null + ], + [ + "delim-token", + ".", + 147668, + 147668, + { + "value": "." + } + ], + [ + "ident-token", + "h-25", + 147669, + 147672, + { + "value": "h-25" + } + ], + [ + "{-token", + "{", + 147673, + 147673, + null + ], + [ + "ident-token", + "height", + 147674, + 147679, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147680, + 147680, + null + ], + [ + "percentage-token", + "25%", + 147681, + 147683, + { + "value": 25 + } + ], + [ + "delim-token", + "!", + 147684, + 147684, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147685, + 147693, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147694, + 147694, + null + ], + [ + "delim-token", + ".", + 147695, + 147695, + { + "value": "." + } + ], + [ + "ident-token", + "h-50", + 147696, + 147699, + { + "value": "h-50" + } + ], + [ + "{-token", + "{", + 147700, + 147700, + null + ], + [ + "ident-token", + "height", + 147701, + 147706, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147707, + 147707, + null + ], + [ + "percentage-token", + "50%", + 147708, + 147710, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 147711, + 147711, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147712, + 147720, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147721, + 147721, + null + ], + [ + "delim-token", + ".", + 147722, + 147722, + { + "value": "." + } + ], + [ + "ident-token", + "h-75", + 147723, + 147726, + { + "value": "h-75" + } + ], + [ + "{-token", + "{", + 147727, + 147727, + null + ], + [ + "ident-token", + "height", + 147728, + 147733, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147734, + 147734, + null + ], + [ + "percentage-token", + "75%", + 147735, + 147737, + { + "value": 75 + } + ], + [ + "delim-token", + "!", + 147738, + 147738, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147739, + 147747, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147748, + 147748, + null + ], + [ + "delim-token", + ".", + 147749, + 147749, + { + "value": "." + } + ], + [ + "ident-token", + "h-100", + 147750, + 147754, + { + "value": "h-100" + } + ], + [ + "{-token", + "{", + 147755, + 147755, + null + ], + [ + "ident-token", + "height", + 147756, + 147761, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147762, + 147762, + null + ], + [ + "percentage-token", + "100%", + 147763, + 147766, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 147767, + 147767, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147768, + 147776, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147777, + 147777, + null + ], + [ + "delim-token", + ".", + 147778, + 147778, + { + "value": "." + } + ], + [ + "ident-token", + "h-auto", + 147779, + 147784, + { + "value": "h-auto" + } + ], + [ + "{-token", + "{", + 147785, + 147785, + null + ], + [ + "ident-token", + "height", + 147786, + 147791, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147792, + 147792, + null + ], + [ + "ident-token", + "auto", + 147793, + 147796, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 147797, + 147797, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147798, + 147806, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147807, + 147807, + null + ], + [ + "delim-token", + ".", + 147808, + 147808, + { + "value": "." + } + ], + [ + "ident-token", + "mh-100", + 147809, + 147814, + { + "value": "mh-100" + } + ], + [ + "{-token", + "{", + 147815, + 147815, + null + ], + [ + "ident-token", + "max-height", + 147816, + 147825, + { + "value": "max-height" + } + ], + [ + "colon-token", + ":", + 147826, + 147826, + null + ], + [ + "percentage-token", + "100%", + 147827, + 147830, + { + "value": 100 + } + ], + [ + "delim-token", + "!", + 147831, + 147831, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147832, + 147840, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147841, + 147841, + null + ], + [ + "delim-token", + ".", + 147842, + 147842, + { + "value": "." + } + ], + [ + "ident-token", + "vh-100", + 147843, + 147848, + { + "value": "vh-100" + } + ], + [ + "{-token", + "{", + 147849, + 147849, + null + ], + [ + "ident-token", + "height", + 147850, + 147855, + { + "value": "height" + } + ], + [ + "colon-token", + ":", + 147856, + 147856, + null + ], + [ + "dimension-token", + "100vh", + 147857, + 147861, + { + "value": 100, + "type": "integer", + "unit": "vh" + } + ], + [ + "delim-token", + "!", + 147862, + 147862, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147863, + 147871, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147872, + 147872, + null + ], + [ + "delim-token", + ".", + 147873, + 147873, + { + "value": "." + } + ], + [ + "ident-token", + "min-vh-100", + 147874, + 147883, + { + "value": "min-vh-100" + } + ], + [ + "{-token", + "{", + 147884, + 147884, + null + ], + [ + "ident-token", + "min-height", + 147885, + 147894, + { + "value": "min-height" + } + ], + [ + "colon-token", + ":", + 147895, + 147895, + null + ], + [ + "dimension-token", + "100vh", + 147896, + 147900, + { + "value": 100, + "type": "integer", + "unit": "vh" + } + ], + [ + "delim-token", + "!", + 147901, + 147901, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147902, + 147910, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147911, + 147911, + null + ], + [ + "delim-token", + ".", + 147912, + 147912, + { + "value": "." + } + ], + [ + "ident-token", + "flex-fill", + 147913, + 147921, + { + "value": "flex-fill" + } + ], + [ + "{-token", + "{", + 147922, + 147922, + null + ], + [ + "ident-token", + "flex", + 147923, + 147926, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 147927, + 147927, + null + ], + [ + "number-token", + "1", + 147928, + 147928, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 147929, + 147929, + null + ], + [ + "number-token", + "1", + 147930, + 147930, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 147931, + 147931, + null + ], + [ + "ident-token", + "auto", + 147932, + 147935, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 147936, + 147936, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147937, + 147945, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147946, + 147946, + null + ], + [ + "delim-token", + ".", + 147947, + 147947, + { + "value": "." + } + ], + [ + "ident-token", + "flex-row", + 147948, + 147955, + { + "value": "flex-row" + } + ], + [ + "{-token", + "{", + 147956, + 147956, + null + ], + [ + "ident-token", + "flex-direction", + 147957, + 147970, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 147971, + 147971, + null + ], + [ + "ident-token", + "row", + 147972, + 147974, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 147975, + 147975, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 147976, + 147984, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 147985, + 147985, + null + ], + [ + "delim-token", + ".", + 147986, + 147986, + { + "value": "." + } + ], + [ + "ident-token", + "flex-column", + 147987, + 147997, + { + "value": "flex-column" + } + ], + [ + "{-token", + "{", + 147998, + 147998, + null + ], + [ + "ident-token", + "flex-direction", + 147999, + 148012, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 148013, + 148013, + null + ], + [ + "ident-token", + "column", + 148014, + 148019, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 148020, + 148020, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148021, + 148029, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148030, + 148030, + null + ], + [ + "delim-token", + ".", + 148031, + 148031, + { + "value": "." + } + ], + [ + "ident-token", + "flex-row-reverse", + 148032, + 148047, + { + "value": "flex-row-reverse" + } + ], + [ + "{-token", + "{", + 148048, + 148048, + null + ], + [ + "ident-token", + "flex-direction", + 148049, + 148062, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 148063, + 148063, + null + ], + [ + "ident-token", + "row-reverse", + 148064, + 148074, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 148075, + 148075, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148076, + 148084, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148085, + 148085, + null + ], + [ + "delim-token", + ".", + 148086, + 148086, + { + "value": "." + } + ], + [ + "ident-token", + "flex-column-reverse", + 148087, + 148105, + { + "value": "flex-column-reverse" + } + ], + [ + "{-token", + "{", + 148106, + 148106, + null + ], + [ + "ident-token", + "flex-direction", + 148107, + 148120, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 148121, + 148121, + null + ], + [ + "ident-token", + "column-reverse", + 148122, + 148135, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 148136, + 148136, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148137, + 148145, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148146, + 148146, + null + ], + [ + "delim-token", + ".", + 148147, + 148147, + { + "value": "." + } + ], + [ + "ident-token", + "flex-grow-0", + 148148, + 148158, + { + "value": "flex-grow-0" + } + ], + [ + "{-token", + "{", + 148159, + 148159, + null + ], + [ + "ident-token", + "flex-grow", + 148160, + 148168, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 148169, + 148169, + null + ], + [ + "number-token", + "0", + 148170, + 148170, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 148171, + 148171, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148172, + 148180, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148181, + 148181, + null + ], + [ + "delim-token", + ".", + 148182, + 148182, + { + "value": "." + } + ], + [ + "ident-token", + "flex-grow-1", + 148183, + 148193, + { + "value": "flex-grow-1" + } + ], + [ + "{-token", + "{", + 148194, + 148194, + null + ], + [ + "ident-token", + "flex-grow", + 148195, + 148203, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 148204, + 148204, + null + ], + [ + "number-token", + "1", + 148205, + 148205, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 148206, + 148206, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148207, + 148215, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148216, + 148216, + null + ], + [ + "delim-token", + ".", + 148217, + 148217, + { + "value": "." + } + ], + [ + "ident-token", + "flex-shrink-0", + 148218, + 148230, + { + "value": "flex-shrink-0" + } + ], + [ + "{-token", + "{", + 148231, + 148231, + null + ], + [ + "ident-token", + "flex-shrink", + 148232, + 148242, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 148243, + 148243, + null + ], + [ + "number-token", + "0", + 148244, + 148244, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 148245, + 148245, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148246, + 148254, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148255, + 148255, + null + ], + [ + "delim-token", + ".", + 148256, + 148256, + { + "value": "." + } + ], + [ + "ident-token", + "flex-shrink-1", + 148257, + 148269, + { + "value": "flex-shrink-1" + } + ], + [ + "{-token", + "{", + 148270, + 148270, + null + ], + [ + "ident-token", + "flex-shrink", + 148271, + 148281, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 148282, + 148282, + null + ], + [ + "number-token", + "1", + 148283, + 148283, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 148284, + 148284, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148285, + 148293, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148294, + 148294, + null + ], + [ + "delim-token", + ".", + 148295, + 148295, + { + "value": "." + } + ], + [ + "ident-token", + "flex-wrap", + 148296, + 148304, + { + "value": "flex-wrap" + } + ], + [ + "{-token", + "{", + 148305, + 148305, + null + ], + [ + "ident-token", + "flex-wrap", + 148306, + 148314, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 148315, + 148315, + null + ], + [ + "ident-token", + "wrap", + 148316, + 148319, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 148320, + 148320, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148321, + 148329, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148330, + 148330, + null + ], + [ + "delim-token", + ".", + 148331, + 148331, + { + "value": "." + } + ], + [ + "ident-token", + "flex-nowrap", + 148332, + 148342, + { + "value": "flex-nowrap" + } + ], + [ + "{-token", + "{", + 148343, + 148343, + null + ], + [ + "ident-token", + "flex-wrap", + 148344, + 148352, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 148353, + 148353, + null + ], + [ + "ident-token", + "nowrap", + 148354, + 148359, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 148360, + 148360, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148361, + 148369, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148370, + 148370, + null + ], + [ + "delim-token", + ".", + 148371, + 148371, + { + "value": "." + } + ], + [ + "ident-token", + "flex-wrap-reverse", + 148372, + 148388, + { + "value": "flex-wrap-reverse" + } + ], + [ + "{-token", + "{", + 148389, + 148389, + null + ], + [ + "ident-token", + "flex-wrap", + 148390, + 148398, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 148399, + 148399, + null + ], + [ + "ident-token", + "wrap-reverse", + 148400, + 148411, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 148412, + 148412, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148413, + 148421, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148422, + 148422, + null + ], + [ + "delim-token", + ".", + 148423, + 148423, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-start", + 148424, + 148444, + { + "value": "justify-content-start" + } + ], + [ + "{-token", + "{", + 148445, + 148445, + null + ], + [ + "ident-token", + "justify-content", + 148446, + 148460, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148461, + 148461, + null + ], + [ + "ident-token", + "flex-start", + 148462, + 148471, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 148472, + 148472, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148473, + 148481, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148482, + 148482, + null + ], + [ + "delim-token", + ".", + 148483, + 148483, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-end", + 148484, + 148502, + { + "value": "justify-content-end" + } + ], + [ + "{-token", + "{", + 148503, + 148503, + null + ], + [ + "ident-token", + "justify-content", + 148504, + 148518, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148519, + 148519, + null + ], + [ + "ident-token", + "flex-end", + 148520, + 148527, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 148528, + 148528, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148529, + 148537, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148538, + 148538, + null + ], + [ + "delim-token", + ".", + 148539, + 148539, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-center", + 148540, + 148561, + { + "value": "justify-content-center" + } + ], + [ + "{-token", + "{", + 148562, + 148562, + null + ], + [ + "ident-token", + "justify-content", + 148563, + 148577, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148578, + 148578, + null + ], + [ + "ident-token", + "center", + 148579, + 148584, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 148585, + 148585, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148586, + 148594, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148595, + 148595, + null + ], + [ + "delim-token", + ".", + 148596, + 148596, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-between", + 148597, + 148619, + { + "value": "justify-content-between" + } + ], + [ + "{-token", + "{", + 148620, + 148620, + null + ], + [ + "ident-token", + "justify-content", + 148621, + 148635, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148636, + 148636, + null + ], + [ + "ident-token", + "space-between", + 148637, + 148649, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 148650, + 148650, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148651, + 148659, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148660, + 148660, + null + ], + [ + "delim-token", + ".", + 148661, + 148661, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-around", + 148662, + 148683, + { + "value": "justify-content-around" + } + ], + [ + "{-token", + "{", + 148684, + 148684, + null + ], + [ + "ident-token", + "justify-content", + 148685, + 148699, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148700, + 148700, + null + ], + [ + "ident-token", + "space-around", + 148701, + 148712, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 148713, + 148713, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148714, + 148722, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148723, + 148723, + null + ], + [ + "delim-token", + ".", + 148724, + 148724, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-evenly", + 148725, + 148746, + { + "value": "justify-content-evenly" + } + ], + [ + "{-token", + "{", + 148747, + 148747, + null + ], + [ + "ident-token", + "justify-content", + 148748, + 148762, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 148763, + 148763, + null + ], + [ + "ident-token", + "space-evenly", + 148764, + 148775, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 148776, + 148776, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148777, + 148785, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148786, + 148786, + null + ], + [ + "delim-token", + ".", + 148787, + 148787, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-start", + 148788, + 148804, + { + "value": "align-items-start" + } + ], + [ + "{-token", + "{", + 148805, + 148805, + null + ], + [ + "ident-token", + "align-items", + 148806, + 148816, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 148817, + 148817, + null + ], + [ + "ident-token", + "flex-start", + 148818, + 148827, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 148828, + 148828, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148829, + 148837, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148838, + 148838, + null + ], + [ + "delim-token", + ".", + 148839, + 148839, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-end", + 148840, + 148854, + { + "value": "align-items-end" + } + ], + [ + "{-token", + "{", + 148855, + 148855, + null + ], + [ + "ident-token", + "align-items", + 148856, + 148866, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 148867, + 148867, + null + ], + [ + "ident-token", + "flex-end", + 148868, + 148875, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 148876, + 148876, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148877, + 148885, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148886, + 148886, + null + ], + [ + "delim-token", + ".", + 148887, + 148887, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-center", + 148888, + 148905, + { + "value": "align-items-center" + } + ], + [ + "{-token", + "{", + 148906, + 148906, + null + ], + [ + "ident-token", + "align-items", + 148907, + 148917, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 148918, + 148918, + null + ], + [ + "ident-token", + "center", + 148919, + 148924, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 148925, + 148925, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148926, + 148934, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148935, + 148935, + null + ], + [ + "delim-token", + ".", + 148936, + 148936, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-baseline", + 148937, + 148956, + { + "value": "align-items-baseline" + } + ], + [ + "{-token", + "{", + 148957, + 148957, + null + ], + [ + "ident-token", + "align-items", + 148958, + 148968, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 148969, + 148969, + null + ], + [ + "ident-token", + "baseline", + 148970, + 148977, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 148978, + 148978, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 148979, + 148987, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 148988, + 148988, + null + ], + [ + "delim-token", + ".", + 148989, + 148989, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-stretch", + 148990, + 149008, + { + "value": "align-items-stretch" + } + ], + [ + "{-token", + "{", + 149009, + 149009, + null + ], + [ + "ident-token", + "align-items", + 149010, + 149020, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 149021, + 149021, + null + ], + [ + "ident-token", + "stretch", + 149022, + 149028, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 149029, + 149029, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149030, + 149038, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149039, + 149039, + null + ], + [ + "delim-token", + ".", + 149040, + 149040, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-start", + 149041, + 149059, + { + "value": "align-content-start" + } + ], + [ + "{-token", + "{", + 149060, + 149060, + null + ], + [ + "ident-token", + "align-content", + 149061, + 149073, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149074, + 149074, + null + ], + [ + "ident-token", + "flex-start", + 149075, + 149084, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 149085, + 149085, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149086, + 149094, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149095, + 149095, + null + ], + [ + "delim-token", + ".", + 149096, + 149096, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-end", + 149097, + 149113, + { + "value": "align-content-end" + } + ], + [ + "{-token", + "{", + 149114, + 149114, + null + ], + [ + "ident-token", + "align-content", + 149115, + 149127, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149128, + 149128, + null + ], + [ + "ident-token", + "flex-end", + 149129, + 149136, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 149137, + 149137, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149138, + 149146, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149147, + 149147, + null + ], + [ + "delim-token", + ".", + 149148, + 149148, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-center", + 149149, + 149168, + { + "value": "align-content-center" + } + ], + [ + "{-token", + "{", + 149169, + 149169, + null + ], + [ + "ident-token", + "align-content", + 149170, + 149182, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149183, + 149183, + null + ], + [ + "ident-token", + "center", + 149184, + 149189, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 149190, + 149190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149191, + 149199, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149200, + 149200, + null + ], + [ + "delim-token", + ".", + 149201, + 149201, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-between", + 149202, + 149222, + { + "value": "align-content-between" + } + ], + [ + "{-token", + "{", + 149223, + 149223, + null + ], + [ + "ident-token", + "align-content", + 149224, + 149236, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149237, + 149237, + null + ], + [ + "ident-token", + "space-between", + 149238, + 149250, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 149251, + 149251, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149252, + 149260, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149261, + 149261, + null + ], + [ + "delim-token", + ".", + 149262, + 149262, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-around", + 149263, + 149282, + { + "value": "align-content-around" + } + ], + [ + "{-token", + "{", + 149283, + 149283, + null + ], + [ + "ident-token", + "align-content", + 149284, + 149296, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149297, + 149297, + null + ], + [ + "ident-token", + "space-around", + 149298, + 149309, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 149310, + 149310, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149311, + 149319, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149320, + 149320, + null + ], + [ + "delim-token", + ".", + 149321, + 149321, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-stretch", + 149322, + 149342, + { + "value": "align-content-stretch" + } + ], + [ + "{-token", + "{", + 149343, + 149343, + null + ], + [ + "ident-token", + "align-content", + 149344, + 149356, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 149357, + 149357, + null + ], + [ + "ident-token", + "stretch", + 149358, + 149364, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 149365, + 149365, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149366, + 149374, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149375, + 149375, + null + ], + [ + "delim-token", + ".", + 149376, + 149376, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-auto", + 149377, + 149391, + { + "value": "align-self-auto" + } + ], + [ + "{-token", + "{", + 149392, + 149392, + null + ], + [ + "ident-token", + "align-self", + 149393, + 149402, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149403, + 149403, + null + ], + [ + "ident-token", + "auto", + 149404, + 149407, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 149408, + 149408, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149409, + 149417, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149418, + 149418, + null + ], + [ + "delim-token", + ".", + 149419, + 149419, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-start", + 149420, + 149435, + { + "value": "align-self-start" + } + ], + [ + "{-token", + "{", + 149436, + 149436, + null + ], + [ + "ident-token", + "align-self", + 149437, + 149446, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149447, + 149447, + null + ], + [ + "ident-token", + "flex-start", + 149448, + 149457, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 149458, + 149458, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149459, + 149467, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149468, + 149468, + null + ], + [ + "delim-token", + ".", + 149469, + 149469, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-end", + 149470, + 149483, + { + "value": "align-self-end" + } + ], + [ + "{-token", + "{", + 149484, + 149484, + null + ], + [ + "ident-token", + "align-self", + 149485, + 149494, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149495, + 149495, + null + ], + [ + "ident-token", + "flex-end", + 149496, + 149503, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 149504, + 149504, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149505, + 149513, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149514, + 149514, + null + ], + [ + "delim-token", + ".", + 149515, + 149515, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-center", + 149516, + 149532, + { + "value": "align-self-center" + } + ], + [ + "{-token", + "{", + 149533, + 149533, + null + ], + [ + "ident-token", + "align-self", + 149534, + 149543, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149544, + 149544, + null + ], + [ + "ident-token", + "center", + 149545, + 149550, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 149551, + 149551, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149552, + 149560, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149561, + 149561, + null + ], + [ + "delim-token", + ".", + 149562, + 149562, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-baseline", + 149563, + 149581, + { + "value": "align-self-baseline" + } + ], + [ + "{-token", + "{", + 149582, + 149582, + null + ], + [ + "ident-token", + "align-self", + 149583, + 149592, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149593, + 149593, + null + ], + [ + "ident-token", + "baseline", + 149594, + 149601, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 149602, + 149602, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149603, + 149611, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149612, + 149612, + null + ], + [ + "delim-token", + ".", + 149613, + 149613, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-stretch", + 149614, + 149631, + { + "value": "align-self-stretch" + } + ], + [ + "{-token", + "{", + 149632, + 149632, + null + ], + [ + "ident-token", + "align-self", + 149633, + 149642, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 149643, + 149643, + null + ], + [ + "ident-token", + "stretch", + 149644, + 149650, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 149651, + 149651, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149652, + 149660, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149661, + 149661, + null + ], + [ + "delim-token", + ".", + 149662, + 149662, + { + "value": "." + } + ], + [ + "ident-token", + "order-first", + 149663, + 149673, + { + "value": "order-first" + } + ], + [ + "{-token", + "{", + 149674, + 149674, + null + ], + [ + "ident-token", + "order", + 149675, + 149679, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149680, + 149680, + null + ], + [ + "number-token", + "-1", + 149681, + 149682, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149683, + 149683, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149684, + 149692, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149693, + 149693, + null + ], + [ + "delim-token", + ".", + 149694, + 149694, + { + "value": "." + } + ], + [ + "ident-token", + "order-0", + 149695, + 149701, + { + "value": "order-0" + } + ], + [ + "{-token", + "{", + 149702, + 149702, + null + ], + [ + "ident-token", + "order", + 149703, + 149707, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149708, + 149708, + null + ], + [ + "number-token", + "0", + 149709, + 149709, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149710, + 149710, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149711, + 149719, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149720, + 149720, + null + ], + [ + "delim-token", + ".", + 149721, + 149721, + { + "value": "." + } + ], + [ + "ident-token", + "order-1", + 149722, + 149728, + { + "value": "order-1" + } + ], + [ + "{-token", + "{", + 149729, + 149729, + null + ], + [ + "ident-token", + "order", + 149730, + 149734, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149735, + 149735, + null + ], + [ + "number-token", + "1", + 149736, + 149736, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149737, + 149737, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149738, + 149746, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149747, + 149747, + null + ], + [ + "delim-token", + ".", + 149748, + 149748, + { + "value": "." + } + ], + [ + "ident-token", + "order-2", + 149749, + 149755, + { + "value": "order-2" + } + ], + [ + "{-token", + "{", + 149756, + 149756, + null + ], + [ + "ident-token", + "order", + 149757, + 149761, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149762, + 149762, + null + ], + [ + "number-token", + "2", + 149763, + 149763, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149764, + 149764, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149765, + 149773, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149774, + 149774, + null + ], + [ + "delim-token", + ".", + 149775, + 149775, + { + "value": "." + } + ], + [ + "ident-token", + "order-3", + 149776, + 149782, + { + "value": "order-3" + } + ], + [ + "{-token", + "{", + 149783, + 149783, + null + ], + [ + "ident-token", + "order", + 149784, + 149788, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149789, + 149789, + null + ], + [ + "number-token", + "3", + 149790, + 149790, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149791, + 149791, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149792, + 149800, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149801, + 149801, + null + ], + [ + "delim-token", + ".", + 149802, + 149802, + { + "value": "." + } + ], + [ + "ident-token", + "order-4", + 149803, + 149809, + { + "value": "order-4" + } + ], + [ + "{-token", + "{", + 149810, + 149810, + null + ], + [ + "ident-token", + "order", + 149811, + 149815, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149816, + 149816, + null + ], + [ + "number-token", + "4", + 149817, + 149817, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149818, + 149818, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149819, + 149827, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149828, + 149828, + null + ], + [ + "delim-token", + ".", + 149829, + 149829, + { + "value": "." + } + ], + [ + "ident-token", + "order-5", + 149830, + 149836, + { + "value": "order-5" + } + ], + [ + "{-token", + "{", + 149837, + 149837, + null + ], + [ + "ident-token", + "order", + 149838, + 149842, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149843, + 149843, + null + ], + [ + "number-token", + "5", + 149844, + 149844, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149845, + 149845, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149846, + 149854, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149855, + 149855, + null + ], + [ + "delim-token", + ".", + 149856, + 149856, + { + "value": "." + } + ], + [ + "ident-token", + "order-last", + 149857, + 149866, + { + "value": "order-last" + } + ], + [ + "{-token", + "{", + 149867, + 149867, + null + ], + [ + "ident-token", + "order", + 149868, + 149872, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 149873, + 149873, + null + ], + [ + "number-token", + "6", + 149874, + 149874, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149875, + 149875, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149876, + 149884, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149885, + 149885, + null + ], + [ + "delim-token", + ".", + 149886, + 149886, + { + "value": "." + } + ], + [ + "ident-token", + "m-0", + 149887, + 149889, + { + "value": "m-0" + } + ], + [ + "{-token", + "{", + 149890, + 149890, + null + ], + [ + "ident-token", + "margin", + 149891, + 149896, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 149897, + 149897, + null + ], + [ + "number-token", + "0", + 149898, + 149898, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 149899, + 149899, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149900, + 149908, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149909, + 149909, + null + ], + [ + "delim-token", + ".", + 149910, + 149910, + { + "value": "." + } + ], + [ + "ident-token", + "m-1", + 149911, + 149913, + { + "value": "m-1" + } + ], + [ + "{-token", + "{", + 149914, + 149914, + null + ], + [ + "ident-token", + "margin", + 149915, + 149920, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 149921, + 149921, + null + ], + [ + "dimension-token", + ".25rem", + 149922, + 149927, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 149928, + 149928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149929, + 149937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149938, + 149938, + null + ], + [ + "delim-token", + ".", + 149939, + 149939, + { + "value": "." + } + ], + [ + "ident-token", + "m-2", + 149940, + 149942, + { + "value": "m-2" + } + ], + [ + "{-token", + "{", + 149943, + 149943, + null + ], + [ + "ident-token", + "margin", + 149944, + 149949, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 149950, + 149950, + null + ], + [ + "dimension-token", + ".5rem", + 149951, + 149955, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 149956, + 149956, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149957, + 149965, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149966, + 149966, + null + ], + [ + "delim-token", + ".", + 149967, + 149967, + { + "value": "." + } + ], + [ + "ident-token", + "m-3", + 149968, + 149970, + { + "value": "m-3" + } + ], + [ + "{-token", + "{", + 149971, + 149971, + null + ], + [ + "ident-token", + "margin", + 149972, + 149977, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 149978, + 149978, + null + ], + [ + "dimension-token", + "1rem", + 149979, + 149982, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 149983, + 149983, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 149984, + 149992, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 149993, + 149993, + null + ], + [ + "delim-token", + ".", + 149994, + 149994, + { + "value": "." + } + ], + [ + "ident-token", + "m-4", + 149995, + 149997, + { + "value": "m-4" + } + ], + [ + "{-token", + "{", + 149998, + 149998, + null + ], + [ + "ident-token", + "margin", + 149999, + 150004, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 150005, + 150005, + null + ], + [ + "dimension-token", + "1.5rem", + 150006, + 150011, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150012, + 150012, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150013, + 150021, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150022, + 150022, + null + ], + [ + "delim-token", + ".", + 150023, + 150023, + { + "value": "." + } + ], + [ + "ident-token", + "m-5", + 150024, + 150026, + { + "value": "m-5" + } + ], + [ + "{-token", + "{", + 150027, + 150027, + null + ], + [ + "ident-token", + "margin", + 150028, + 150033, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 150034, + 150034, + null + ], + [ + "dimension-token", + "3rem", + 150035, + 150038, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150039, + 150039, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150040, + 150048, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150049, + 150049, + null + ], + [ + "delim-token", + ".", + 150050, + 150050, + { + "value": "." + } + ], + [ + "ident-token", + "m-auto", + 150051, + 150056, + { + "value": "m-auto" + } + ], + [ + "{-token", + "{", + 150057, + 150057, + null + ], + [ + "ident-token", + "margin", + 150058, + 150063, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 150064, + 150064, + null + ], + [ + "ident-token", + "auto", + 150065, + 150068, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 150069, + 150069, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150070, + 150078, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150079, + 150079, + null + ], + [ + "delim-token", + ".", + 150080, + 150080, + { + "value": "." + } + ], + [ + "ident-token", + "mx-0", + 150081, + 150084, + { + "value": "mx-0" + } + ], + [ + "{-token", + "{", + 150085, + 150085, + null + ], + [ + "ident-token", + "margin-right", + 150086, + 150097, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150098, + 150098, + null + ], + [ + "number-token", + "0", + 150099, + 150099, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 150100, + 150100, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150101, + 150109, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150110, + 150110, + null + ], + [ + "ident-token", + "margin-left", + 150111, + 150121, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150122, + 150122, + null + ], + [ + "number-token", + "0", + 150123, + 150123, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 150124, + 150124, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150125, + 150133, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150134, + 150134, + null + ], + [ + "delim-token", + ".", + 150135, + 150135, + { + "value": "." + } + ], + [ + "ident-token", + "mx-1", + 150136, + 150139, + { + "value": "mx-1" + } + ], + [ + "{-token", + "{", + 150140, + 150140, + null + ], + [ + "ident-token", + "margin-right", + 150141, + 150152, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150153, + 150153, + null + ], + [ + "dimension-token", + ".25rem", + 150154, + 150159, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150160, + 150160, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150161, + 150169, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150170, + 150170, + null + ], + [ + "ident-token", + "margin-left", + 150171, + 150181, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150182, + 150182, + null + ], + [ + "dimension-token", + ".25rem", + 150183, + 150188, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150189, + 150189, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150190, + 150198, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150199, + 150199, + null + ], + [ + "delim-token", + ".", + 150200, + 150200, + { + "value": "." + } + ], + [ + "ident-token", + "mx-2", + 150201, + 150204, + { + "value": "mx-2" + } + ], + [ + "{-token", + "{", + 150205, + 150205, + null + ], + [ + "ident-token", + "margin-right", + 150206, + 150217, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150218, + 150218, + null + ], + [ + "dimension-token", + ".5rem", + 150219, + 150223, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150224, + 150224, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150225, + 150233, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150234, + 150234, + null + ], + [ + "ident-token", + "margin-left", + 150235, + 150245, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150246, + 150246, + null + ], + [ + "dimension-token", + ".5rem", + 150247, + 150251, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150252, + 150252, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150253, + 150261, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150262, + 150262, + null + ], + [ + "delim-token", + ".", + 150263, + 150263, + { + "value": "." + } + ], + [ + "ident-token", + "mx-3", + 150264, + 150267, + { + "value": "mx-3" + } + ], + [ + "{-token", + "{", + 150268, + 150268, + null + ], + [ + "ident-token", + "margin-right", + 150269, + 150280, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150281, + 150281, + null + ], + [ + "dimension-token", + "1rem", + 150282, + 150285, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150286, + 150286, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150287, + 150295, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150296, + 150296, + null + ], + [ + "ident-token", + "margin-left", + 150297, + 150307, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150308, + 150308, + null + ], + [ + "dimension-token", + "1rem", + 150309, + 150312, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150313, + 150313, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150314, + 150322, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150323, + 150323, + null + ], + [ + "delim-token", + ".", + 150324, + 150324, + { + "value": "." + } + ], + [ + "ident-token", + "mx-4", + 150325, + 150328, + { + "value": "mx-4" + } + ], + [ + "{-token", + "{", + 150329, + 150329, + null + ], + [ + "ident-token", + "margin-right", + 150330, + 150341, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150342, + 150342, + null + ], + [ + "dimension-token", + "1.5rem", + 150343, + 150348, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150349, + 150349, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150350, + 150358, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150359, + 150359, + null + ], + [ + "ident-token", + "margin-left", + 150360, + 150370, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150371, + 150371, + null + ], + [ + "dimension-token", + "1.5rem", + 150372, + 150377, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150378, + 150378, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150379, + 150387, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150388, + 150388, + null + ], + [ + "delim-token", + ".", + 150389, + 150389, + { + "value": "." + } + ], + [ + "ident-token", + "mx-5", + 150390, + 150393, + { + "value": "mx-5" + } + ], + [ + "{-token", + "{", + 150394, + 150394, + null + ], + [ + "ident-token", + "margin-right", + 150395, + 150406, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150407, + 150407, + null + ], + [ + "dimension-token", + "3rem", + 150408, + 150411, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150412, + 150412, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150413, + 150421, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150422, + 150422, + null + ], + [ + "ident-token", + "margin-left", + 150423, + 150433, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150434, + 150434, + null + ], + [ + "dimension-token", + "3rem", + 150435, + 150438, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150439, + 150439, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150440, + 150448, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150449, + 150449, + null + ], + [ + "delim-token", + ".", + 150450, + 150450, + { + "value": "." + } + ], + [ + "ident-token", + "mx-auto", + 150451, + 150457, + { + "value": "mx-auto" + } + ], + [ + "{-token", + "{", + 150458, + 150458, + null + ], + [ + "ident-token", + "margin-right", + 150459, + 150470, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 150471, + 150471, + null + ], + [ + "ident-token", + "auto", + 150472, + 150475, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 150476, + 150476, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150477, + 150485, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150486, + 150486, + null + ], + [ + "ident-token", + "margin-left", + 150487, + 150497, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 150498, + 150498, + null + ], + [ + "ident-token", + "auto", + 150499, + 150502, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 150503, + 150503, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150504, + 150512, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150513, + 150513, + null + ], + [ + "delim-token", + ".", + 150514, + 150514, + { + "value": "." + } + ], + [ + "ident-token", + "my-0", + 150515, + 150518, + { + "value": "my-0" + } + ], + [ + "{-token", + "{", + 150519, + 150519, + null + ], + [ + "ident-token", + "margin-top", + 150520, + 150529, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150530, + 150530, + null + ], + [ + "number-token", + "0", + 150531, + 150531, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 150532, + 150532, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150533, + 150541, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150542, + 150542, + null + ], + [ + "ident-token", + "margin-bottom", + 150543, + 150555, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150556, + 150556, + null + ], + [ + "number-token", + "0", + 150557, + 150557, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 150558, + 150558, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150559, + 150567, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150568, + 150568, + null + ], + [ + "delim-token", + ".", + 150569, + 150569, + { + "value": "." + } + ], + [ + "ident-token", + "my-1", + 150570, + 150573, + { + "value": "my-1" + } + ], + [ + "{-token", + "{", + 150574, + 150574, + null + ], + [ + "ident-token", + "margin-top", + 150575, + 150584, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150585, + 150585, + null + ], + [ + "dimension-token", + ".25rem", + 150586, + 150591, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150592, + 150592, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150593, + 150601, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150602, + 150602, + null + ], + [ + "ident-token", + "margin-bottom", + 150603, + 150615, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150616, + 150616, + null + ], + [ + "dimension-token", + ".25rem", + 150617, + 150622, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150623, + 150623, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150624, + 150632, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150633, + 150633, + null + ], + [ + "delim-token", + ".", + 150634, + 150634, + { + "value": "." + } + ], + [ + "ident-token", + "my-2", + 150635, + 150638, + { + "value": "my-2" + } + ], + [ + "{-token", + "{", + 150639, + 150639, + null + ], + [ + "ident-token", + "margin-top", + 150640, + 150649, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150650, + 150650, + null + ], + [ + "dimension-token", + ".5rem", + 150651, + 150655, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150656, + 150656, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150657, + 150665, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150666, + 150666, + null + ], + [ + "ident-token", + "margin-bottom", + 150667, + 150679, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150680, + 150680, + null + ], + [ + "dimension-token", + ".5rem", + 150681, + 150685, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150686, + 150686, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150687, + 150695, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150696, + 150696, + null + ], + [ + "delim-token", + ".", + 150697, + 150697, + { + "value": "." + } + ], + [ + "ident-token", + "my-3", + 150698, + 150701, + { + "value": "my-3" + } + ], + [ + "{-token", + "{", + 150702, + 150702, + null + ], + [ + "ident-token", + "margin-top", + 150703, + 150712, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150713, + 150713, + null + ], + [ + "dimension-token", + "1rem", + 150714, + 150717, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150718, + 150718, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150719, + 150727, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150728, + 150728, + null + ], + [ + "ident-token", + "margin-bottom", + 150729, + 150741, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150742, + 150742, + null + ], + [ + "dimension-token", + "1rem", + 150743, + 150746, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150747, + 150747, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150748, + 150756, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150757, + 150757, + null + ], + [ + "delim-token", + ".", + 150758, + 150758, + { + "value": "." + } + ], + [ + "ident-token", + "my-4", + 150759, + 150762, + { + "value": "my-4" + } + ], + [ + "{-token", + "{", + 150763, + 150763, + null + ], + [ + "ident-token", + "margin-top", + 150764, + 150773, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150774, + 150774, + null + ], + [ + "dimension-token", + "1.5rem", + 150775, + 150780, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150781, + 150781, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150782, + 150790, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150791, + 150791, + null + ], + [ + "ident-token", + "margin-bottom", + 150792, + 150804, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150805, + 150805, + null + ], + [ + "dimension-token", + "1.5rem", + 150806, + 150811, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150812, + 150812, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150813, + 150821, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150822, + 150822, + null + ], + [ + "delim-token", + ".", + 150823, + 150823, + { + "value": "." + } + ], + [ + "ident-token", + "my-5", + 150824, + 150827, + { + "value": "my-5" + } + ], + [ + "{-token", + "{", + 150828, + 150828, + null + ], + [ + "ident-token", + "margin-top", + 150829, + 150838, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150839, + 150839, + null + ], + [ + "dimension-token", + "3rem", + 150840, + 150843, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150844, + 150844, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150845, + 150853, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150854, + 150854, + null + ], + [ + "ident-token", + "margin-bottom", + 150855, + 150867, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150868, + 150868, + null + ], + [ + "dimension-token", + "3rem", + 150869, + 150872, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 150873, + 150873, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150874, + 150882, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150883, + 150883, + null + ], + [ + "delim-token", + ".", + 150884, + 150884, + { + "value": "." + } + ], + [ + "ident-token", + "my-auto", + 150885, + 150891, + { + "value": "my-auto" + } + ], + [ + "{-token", + "{", + 150892, + 150892, + null + ], + [ + "ident-token", + "margin-top", + 150893, + 150902, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150903, + 150903, + null + ], + [ + "ident-token", + "auto", + 150904, + 150907, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 150908, + 150908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150909, + 150917, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 150918, + 150918, + null + ], + [ + "ident-token", + "margin-bottom", + 150919, + 150931, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 150932, + 150932, + null + ], + [ + "ident-token", + "auto", + 150933, + 150936, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 150937, + 150937, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150938, + 150946, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150947, + 150947, + null + ], + [ + "delim-token", + ".", + 150948, + 150948, + { + "value": "." + } + ], + [ + "ident-token", + "mt-0", + 150949, + 150952, + { + "value": "mt-0" + } + ], + [ + "{-token", + "{", + 150953, + 150953, + null + ], + [ + "ident-token", + "margin-top", + 150954, + 150963, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150964, + 150964, + null + ], + [ + "number-token", + "0", + 150965, + 150965, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 150966, + 150966, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 150967, + 150975, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 150976, + 150976, + null + ], + [ + "delim-token", + ".", + 150977, + 150977, + { + "value": "." + } + ], + [ + "ident-token", + "mt-1", + 150978, + 150981, + { + "value": "mt-1" + } + ], + [ + "{-token", + "{", + 150982, + 150982, + null + ], + [ + "ident-token", + "margin-top", + 150983, + 150992, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 150993, + 150993, + null + ], + [ + "dimension-token", + ".25rem", + 150994, + 150999, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151000, + 151000, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151001, + 151009, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151010, + 151010, + null + ], + [ + "delim-token", + ".", + 151011, + 151011, + { + "value": "." + } + ], + [ + "ident-token", + "mt-2", + 151012, + 151015, + { + "value": "mt-2" + } + ], + [ + "{-token", + "{", + 151016, + 151016, + null + ], + [ + "ident-token", + "margin-top", + 151017, + 151026, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 151027, + 151027, + null + ], + [ + "dimension-token", + ".5rem", + 151028, + 151032, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151033, + 151033, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151034, + 151042, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151043, + 151043, + null + ], + [ + "delim-token", + ".", + 151044, + 151044, + { + "value": "." + } + ], + [ + "ident-token", + "mt-3", + 151045, + 151048, + { + "value": "mt-3" + } + ], + [ + "{-token", + "{", + 151049, + 151049, + null + ], + [ + "ident-token", + "margin-top", + 151050, + 151059, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 151060, + 151060, + null + ], + [ + "dimension-token", + "1rem", + 151061, + 151064, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151065, + 151065, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151066, + 151074, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151075, + 151075, + null + ], + [ + "delim-token", + ".", + 151076, + 151076, + { + "value": "." + } + ], + [ + "ident-token", + "mt-4", + 151077, + 151080, + { + "value": "mt-4" + } + ], + [ + "{-token", + "{", + 151081, + 151081, + null + ], + [ + "ident-token", + "margin-top", + 151082, + 151091, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 151092, + 151092, + null + ], + [ + "dimension-token", + "1.5rem", + 151093, + 151098, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151099, + 151099, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151100, + 151108, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151109, + 151109, + null + ], + [ + "delim-token", + ".", + 151110, + 151110, + { + "value": "." + } + ], + [ + "ident-token", + "mt-5", + 151111, + 151114, + { + "value": "mt-5" + } + ], + [ + "{-token", + "{", + 151115, + 151115, + null + ], + [ + "ident-token", + "margin-top", + 151116, + 151125, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 151126, + 151126, + null + ], + [ + "dimension-token", + "3rem", + 151127, + 151130, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151131, + 151131, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151132, + 151140, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151141, + 151141, + null + ], + [ + "delim-token", + ".", + 151142, + 151142, + { + "value": "." + } + ], + [ + "ident-token", + "mt-auto", + 151143, + 151149, + { + "value": "mt-auto" + } + ], + [ + "{-token", + "{", + 151150, + 151150, + null + ], + [ + "ident-token", + "margin-top", + 151151, + 151160, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 151161, + 151161, + null + ], + [ + "ident-token", + "auto", + 151162, + 151165, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 151166, + 151166, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151167, + 151175, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151176, + 151176, + null + ], + [ + "delim-token", + ".", + 151177, + 151177, + { + "value": "." + } + ], + [ + "ident-token", + "me-0", + 151178, + 151181, + { + "value": "me-0" + } + ], + [ + "{-token", + "{", + 151182, + 151182, + null + ], + [ + "ident-token", + "margin-right", + 151183, + 151194, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151195, + 151195, + null + ], + [ + "number-token", + "0", + 151196, + 151196, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 151197, + 151197, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151198, + 151206, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151207, + 151207, + null + ], + [ + "delim-token", + ".", + 151208, + 151208, + { + "value": "." + } + ], + [ + "ident-token", + "me-1", + 151209, + 151212, + { + "value": "me-1" + } + ], + [ + "{-token", + "{", + 151213, + 151213, + null + ], + [ + "ident-token", + "margin-right", + 151214, + 151225, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151226, + 151226, + null + ], + [ + "dimension-token", + ".25rem", + 151227, + 151232, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151233, + 151233, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151234, + 151242, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151243, + 151243, + null + ], + [ + "delim-token", + ".", + 151244, + 151244, + { + "value": "." + } + ], + [ + "ident-token", + "me-2", + 151245, + 151248, + { + "value": "me-2" + } + ], + [ + "{-token", + "{", + 151249, + 151249, + null + ], + [ + "ident-token", + "margin-right", + 151250, + 151261, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151262, + 151262, + null + ], + [ + "dimension-token", + ".5rem", + 151263, + 151267, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151268, + 151268, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151269, + 151277, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151278, + 151278, + null + ], + [ + "delim-token", + ".", + 151279, + 151279, + { + "value": "." + } + ], + [ + "ident-token", + "me-3", + 151280, + 151283, + { + "value": "me-3" + } + ], + [ + "{-token", + "{", + 151284, + 151284, + null + ], + [ + "ident-token", + "margin-right", + 151285, + 151296, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151297, + 151297, + null + ], + [ + "dimension-token", + "1rem", + 151298, + 151301, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151302, + 151302, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151303, + 151311, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151312, + 151312, + null + ], + [ + "delim-token", + ".", + 151313, + 151313, + { + "value": "." + } + ], + [ + "ident-token", + "me-4", + 151314, + 151317, + { + "value": "me-4" + } + ], + [ + "{-token", + "{", + 151318, + 151318, + null + ], + [ + "ident-token", + "margin-right", + 151319, + 151330, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151331, + 151331, + null + ], + [ + "dimension-token", + "1.5rem", + 151332, + 151337, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151338, + 151338, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151339, + 151347, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151348, + 151348, + null + ], + [ + "delim-token", + ".", + 151349, + 151349, + { + "value": "." + } + ], + [ + "ident-token", + "me-5", + 151350, + 151353, + { + "value": "me-5" + } + ], + [ + "{-token", + "{", + 151354, + 151354, + null + ], + [ + "ident-token", + "margin-right", + 151355, + 151366, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151367, + 151367, + null + ], + [ + "dimension-token", + "3rem", + 151368, + 151371, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151372, + 151372, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151373, + 151381, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151382, + 151382, + null + ], + [ + "delim-token", + ".", + 151383, + 151383, + { + "value": "." + } + ], + [ + "ident-token", + "me-auto", + 151384, + 151390, + { + "value": "me-auto" + } + ], + [ + "{-token", + "{", + 151391, + 151391, + null + ], + [ + "ident-token", + "margin-right", + 151392, + 151403, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 151404, + 151404, + null + ], + [ + "ident-token", + "auto", + 151405, + 151408, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 151409, + 151409, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151410, + 151418, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151419, + 151419, + null + ], + [ + "delim-token", + ".", + 151420, + 151420, + { + "value": "." + } + ], + [ + "ident-token", + "mb-0", + 151421, + 151424, + { + "value": "mb-0" + } + ], + [ + "{-token", + "{", + 151425, + 151425, + null + ], + [ + "ident-token", + "margin-bottom", + 151426, + 151438, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151439, + 151439, + null + ], + [ + "number-token", + "0", + 151440, + 151440, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 151441, + 151441, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151442, + 151450, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151451, + 151451, + null + ], + [ + "delim-token", + ".", + 151452, + 151452, + { + "value": "." + } + ], + [ + "ident-token", + "mb-1", + 151453, + 151456, + { + "value": "mb-1" + } + ], + [ + "{-token", + "{", + 151457, + 151457, + null + ], + [ + "ident-token", + "margin-bottom", + 151458, + 151470, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151471, + 151471, + null + ], + [ + "dimension-token", + ".25rem", + 151472, + 151477, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151478, + 151478, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151479, + 151487, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151488, + 151488, + null + ], + [ + "delim-token", + ".", + 151489, + 151489, + { + "value": "." + } + ], + [ + "ident-token", + "mb-2", + 151490, + 151493, + { + "value": "mb-2" + } + ], + [ + "{-token", + "{", + 151494, + 151494, + null + ], + [ + "ident-token", + "margin-bottom", + 151495, + 151507, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151508, + 151508, + null + ], + [ + "dimension-token", + ".5rem", + 151509, + 151513, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151514, + 151514, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151515, + 151523, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151524, + 151524, + null + ], + [ + "delim-token", + ".", + 151525, + 151525, + { + "value": "." + } + ], + [ + "ident-token", + "mb-3", + 151526, + 151529, + { + "value": "mb-3" + } + ], + [ + "{-token", + "{", + 151530, + 151530, + null + ], + [ + "ident-token", + "margin-bottom", + 151531, + 151543, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151544, + 151544, + null + ], + [ + "dimension-token", + "1rem", + 151545, + 151548, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151549, + 151549, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151550, + 151558, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151559, + 151559, + null + ], + [ + "delim-token", + ".", + 151560, + 151560, + { + "value": "." + } + ], + [ + "ident-token", + "mb-4", + 151561, + 151564, + { + "value": "mb-4" + } + ], + [ + "{-token", + "{", + 151565, + 151565, + null + ], + [ + "ident-token", + "margin-bottom", + 151566, + 151578, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151579, + 151579, + null + ], + [ + "dimension-token", + "1.5rem", + 151580, + 151585, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151586, + 151586, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151587, + 151595, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151596, + 151596, + null + ], + [ + "delim-token", + ".", + 151597, + 151597, + { + "value": "." + } + ], + [ + "ident-token", + "mb-5", + 151598, + 151601, + { + "value": "mb-5" + } + ], + [ + "{-token", + "{", + 151602, + 151602, + null + ], + [ + "ident-token", + "margin-bottom", + 151603, + 151615, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151616, + 151616, + null + ], + [ + "dimension-token", + "3rem", + 151617, + 151620, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151621, + 151621, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151622, + 151630, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151631, + 151631, + null + ], + [ + "delim-token", + ".", + 151632, + 151632, + { + "value": "." + } + ], + [ + "ident-token", + "mb-auto", + 151633, + 151639, + { + "value": "mb-auto" + } + ], + [ + "{-token", + "{", + 151640, + 151640, + null + ], + [ + "ident-token", + "margin-bottom", + 151641, + 151653, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 151654, + 151654, + null + ], + [ + "ident-token", + "auto", + 151655, + 151658, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 151659, + 151659, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151660, + 151668, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151669, + 151669, + null + ], + [ + "delim-token", + ".", + 151670, + 151670, + { + "value": "." + } + ], + [ + "ident-token", + "ms-0", + 151671, + 151674, + { + "value": "ms-0" + } + ], + [ + "{-token", + "{", + 151675, + 151675, + null + ], + [ + "ident-token", + "margin-left", + 151676, + 151686, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151687, + 151687, + null + ], + [ + "number-token", + "0", + 151688, + 151688, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 151689, + 151689, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151690, + 151698, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151699, + 151699, + null + ], + [ + "delim-token", + ".", + 151700, + 151700, + { + "value": "." + } + ], + [ + "ident-token", + "ms-1", + 151701, + 151704, + { + "value": "ms-1" + } + ], + [ + "{-token", + "{", + 151705, + 151705, + null + ], + [ + "ident-token", + "margin-left", + 151706, + 151716, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151717, + 151717, + null + ], + [ + "dimension-token", + ".25rem", + 151718, + 151723, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151724, + 151724, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151725, + 151733, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151734, + 151734, + null + ], + [ + "delim-token", + ".", + 151735, + 151735, + { + "value": "." + } + ], + [ + "ident-token", + "ms-2", + 151736, + 151739, + { + "value": "ms-2" + } + ], + [ + "{-token", + "{", + 151740, + 151740, + null + ], + [ + "ident-token", + "margin-left", + 151741, + 151751, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151752, + 151752, + null + ], + [ + "dimension-token", + ".5rem", + 151753, + 151757, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151758, + 151758, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151759, + 151767, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151768, + 151768, + null + ], + [ + "delim-token", + ".", + 151769, + 151769, + { + "value": "." + } + ], + [ + "ident-token", + "ms-3", + 151770, + 151773, + { + "value": "ms-3" + } + ], + [ + "{-token", + "{", + 151774, + 151774, + null + ], + [ + "ident-token", + "margin-left", + 151775, + 151785, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151786, + 151786, + null + ], + [ + "dimension-token", + "1rem", + 151787, + 151790, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151791, + 151791, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151792, + 151800, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151801, + 151801, + null + ], + [ + "delim-token", + ".", + 151802, + 151802, + { + "value": "." + } + ], + [ + "ident-token", + "ms-4", + 151803, + 151806, + { + "value": "ms-4" + } + ], + [ + "{-token", + "{", + 151807, + 151807, + null + ], + [ + "ident-token", + "margin-left", + 151808, + 151818, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151819, + 151819, + null + ], + [ + "dimension-token", + "1.5rem", + 151820, + 151825, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151826, + 151826, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151827, + 151835, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151836, + 151836, + null + ], + [ + "delim-token", + ".", + 151837, + 151837, + { + "value": "." + } + ], + [ + "ident-token", + "ms-5", + 151838, + 151841, + { + "value": "ms-5" + } + ], + [ + "{-token", + "{", + 151842, + 151842, + null + ], + [ + "ident-token", + "margin-left", + 151843, + 151853, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151854, + 151854, + null + ], + [ + "dimension-token", + "3rem", + 151855, + 151858, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151859, + 151859, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151860, + 151868, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151869, + 151869, + null + ], + [ + "delim-token", + ".", + 151870, + 151870, + { + "value": "." + } + ], + [ + "ident-token", + "ms-auto", + 151871, + 151877, + { + "value": "ms-auto" + } + ], + [ + "{-token", + "{", + 151878, + 151878, + null + ], + [ + "ident-token", + "margin-left", + 151879, + 151889, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 151890, + 151890, + null + ], + [ + "ident-token", + "auto", + 151891, + 151894, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 151895, + 151895, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151896, + 151904, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151905, + 151905, + null + ], + [ + "delim-token", + ".", + 151906, + 151906, + { + "value": "." + } + ], + [ + "ident-token", + "p-0", + 151907, + 151909, + { + "value": "p-0" + } + ], + [ + "{-token", + "{", + 151910, + 151910, + null + ], + [ + "ident-token", + "padding", + 151911, + 151917, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 151918, + 151918, + null + ], + [ + "number-token", + "0", + 151919, + 151919, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 151920, + 151920, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151921, + 151929, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151930, + 151930, + null + ], + [ + "delim-token", + ".", + 151931, + 151931, + { + "value": "." + } + ], + [ + "ident-token", + "p-1", + 151932, + 151934, + { + "value": "p-1" + } + ], + [ + "{-token", + "{", + 151935, + 151935, + null + ], + [ + "ident-token", + "padding", + 151936, + 151942, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 151943, + 151943, + null + ], + [ + "dimension-token", + ".25rem", + 151944, + 151949, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151950, + 151950, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151951, + 151959, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151960, + 151960, + null + ], + [ + "delim-token", + ".", + 151961, + 151961, + { + "value": "." + } + ], + [ + "ident-token", + "p-2", + 151962, + 151964, + { + "value": "p-2" + } + ], + [ + "{-token", + "{", + 151965, + 151965, + null + ], + [ + "ident-token", + "padding", + 151966, + 151972, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 151973, + 151973, + null + ], + [ + "dimension-token", + ".5rem", + 151974, + 151978, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 151979, + 151979, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 151980, + 151988, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 151989, + 151989, + null + ], + [ + "delim-token", + ".", + 151990, + 151990, + { + "value": "." + } + ], + [ + "ident-token", + "p-3", + 151991, + 151993, + { + "value": "p-3" + } + ], + [ + "{-token", + "{", + 151994, + 151994, + null + ], + [ + "ident-token", + "padding", + 151995, + 152001, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 152002, + 152002, + null + ], + [ + "dimension-token", + "1rem", + 152003, + 152006, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152007, + 152007, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152008, + 152016, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152017, + 152017, + null + ], + [ + "delim-token", + ".", + 152018, + 152018, + { + "value": "." + } + ], + [ + "ident-token", + "p-4", + 152019, + 152021, + { + "value": "p-4" + } + ], + [ + "{-token", + "{", + 152022, + 152022, + null + ], + [ + "ident-token", + "padding", + 152023, + 152029, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 152030, + 152030, + null + ], + [ + "dimension-token", + "1.5rem", + 152031, + 152036, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152037, + 152037, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152038, + 152046, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152047, + 152047, + null + ], + [ + "delim-token", + ".", + 152048, + 152048, + { + "value": "." + } + ], + [ + "ident-token", + "p-5", + 152049, + 152051, + { + "value": "p-5" + } + ], + [ + "{-token", + "{", + 152052, + 152052, + null + ], + [ + "ident-token", + "padding", + 152053, + 152059, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 152060, + 152060, + null + ], + [ + "dimension-token", + "3rem", + 152061, + 152064, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152065, + 152065, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152066, + 152074, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152075, + 152075, + null + ], + [ + "delim-token", + ".", + 152076, + 152076, + { + "value": "." + } + ], + [ + "ident-token", + "px-0", + 152077, + 152080, + { + "value": "px-0" + } + ], + [ + "{-token", + "{", + 152081, + 152081, + null + ], + [ + "ident-token", + "padding-right", + 152082, + 152094, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152095, + 152095, + null + ], + [ + "number-token", + "0", + 152096, + 152096, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 152097, + 152097, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152098, + 152106, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152107, + 152107, + null + ], + [ + "ident-token", + "padding-left", + 152108, + 152119, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152120, + 152120, + null + ], + [ + "number-token", + "0", + 152121, + 152121, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 152122, + 152122, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152123, + 152131, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152132, + 152132, + null + ], + [ + "delim-token", + ".", + 152133, + 152133, + { + "value": "." + } + ], + [ + "ident-token", + "px-1", + 152134, + 152137, + { + "value": "px-1" + } + ], + [ + "{-token", + "{", + 152138, + 152138, + null + ], + [ + "ident-token", + "padding-right", + 152139, + 152151, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152152, + 152152, + null + ], + [ + "dimension-token", + ".25rem", + 152153, + 152158, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152159, + 152159, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152160, + 152168, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152169, + 152169, + null + ], + [ + "ident-token", + "padding-left", + 152170, + 152181, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152182, + 152182, + null + ], + [ + "dimension-token", + ".25rem", + 152183, + 152188, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152189, + 152189, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152190, + 152198, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152199, + 152199, + null + ], + [ + "delim-token", + ".", + 152200, + 152200, + { + "value": "." + } + ], + [ + "ident-token", + "px-2", + 152201, + 152204, + { + "value": "px-2" + } + ], + [ + "{-token", + "{", + 152205, + 152205, + null + ], + [ + "ident-token", + "padding-right", + 152206, + 152218, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152219, + 152219, + null + ], + [ + "dimension-token", + ".5rem", + 152220, + 152224, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152225, + 152225, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152226, + 152234, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152235, + 152235, + null + ], + [ + "ident-token", + "padding-left", + 152236, + 152247, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152248, + 152248, + null + ], + [ + "dimension-token", + ".5rem", + 152249, + 152253, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152254, + 152254, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152255, + 152263, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152264, + 152264, + null + ], + [ + "delim-token", + ".", + 152265, + 152265, + { + "value": "." + } + ], + [ + "ident-token", + "px-3", + 152266, + 152269, + { + "value": "px-3" + } + ], + [ + "{-token", + "{", + 152270, + 152270, + null + ], + [ + "ident-token", + "padding-right", + 152271, + 152283, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152284, + 152284, + null + ], + [ + "dimension-token", + "1rem", + 152285, + 152288, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152289, + 152289, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152290, + 152298, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152299, + 152299, + null + ], + [ + "ident-token", + "padding-left", + 152300, + 152311, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152312, + 152312, + null + ], + [ + "dimension-token", + "1rem", + 152313, + 152316, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152317, + 152317, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152318, + 152326, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152327, + 152327, + null + ], + [ + "delim-token", + ".", + 152328, + 152328, + { + "value": "." + } + ], + [ + "ident-token", + "px-4", + 152329, + 152332, + { + "value": "px-4" + } + ], + [ + "{-token", + "{", + 152333, + 152333, + null + ], + [ + "ident-token", + "padding-right", + 152334, + 152346, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152347, + 152347, + null + ], + [ + "dimension-token", + "1.5rem", + 152348, + 152353, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152354, + 152354, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152355, + 152363, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152364, + 152364, + null + ], + [ + "ident-token", + "padding-left", + 152365, + 152376, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152377, + 152377, + null + ], + [ + "dimension-token", + "1.5rem", + 152378, + 152383, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152384, + 152384, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152385, + 152393, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152394, + 152394, + null + ], + [ + "delim-token", + ".", + 152395, + 152395, + { + "value": "." + } + ], + [ + "ident-token", + "px-5", + 152396, + 152399, + { + "value": "px-5" + } + ], + [ + "{-token", + "{", + 152400, + 152400, + null + ], + [ + "ident-token", + "padding-right", + 152401, + 152413, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 152414, + 152414, + null + ], + [ + "dimension-token", + "3rem", + 152415, + 152418, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152419, + 152419, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152420, + 152428, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152429, + 152429, + null + ], + [ + "ident-token", + "padding-left", + 152430, + 152441, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 152442, + 152442, + null + ], + [ + "dimension-token", + "3rem", + 152443, + 152446, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152447, + 152447, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152448, + 152456, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152457, + 152457, + null + ], + [ + "delim-token", + ".", + 152458, + 152458, + { + "value": "." + } + ], + [ + "ident-token", + "py-0", + 152459, + 152462, + { + "value": "py-0" + } + ], + [ + "{-token", + "{", + 152463, + 152463, + null + ], + [ + "ident-token", + "padding-top", + 152464, + 152474, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152475, + 152475, + null + ], + [ + "number-token", + "0", + 152476, + 152476, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 152477, + 152477, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152478, + 152486, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152487, + 152487, + null + ], + [ + "ident-token", + "padding-bottom", + 152488, + 152501, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152502, + 152502, + null + ], + [ + "number-token", + "0", + 152503, + 152503, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 152504, + 152504, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152505, + 152513, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152514, + 152514, + null + ], + [ + "delim-token", + ".", + 152515, + 152515, + { + "value": "." + } + ], + [ + "ident-token", + "py-1", + 152516, + 152519, + { + "value": "py-1" + } + ], + [ + "{-token", + "{", + 152520, + 152520, + null + ], + [ + "ident-token", + "padding-top", + 152521, + 152531, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152532, + 152532, + null + ], + [ + "dimension-token", + ".25rem", + 152533, + 152538, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152539, + 152539, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152540, + 152548, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152549, + 152549, + null + ], + [ + "ident-token", + "padding-bottom", + 152550, + 152563, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152564, + 152564, + null + ], + [ + "dimension-token", + ".25rem", + 152565, + 152570, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152571, + 152571, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152572, + 152580, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152581, + 152581, + null + ], + [ + "delim-token", + ".", + 152582, + 152582, + { + "value": "." + } + ], + [ + "ident-token", + "py-2", + 152583, + 152586, + { + "value": "py-2" + } + ], + [ + "{-token", + "{", + 152587, + 152587, + null + ], + [ + "ident-token", + "padding-top", + 152588, + 152598, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152599, + 152599, + null + ], + [ + "dimension-token", + ".5rem", + 152600, + 152604, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152605, + 152605, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152606, + 152614, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152615, + 152615, + null + ], + [ + "ident-token", + "padding-bottom", + 152616, + 152629, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152630, + 152630, + null + ], + [ + "dimension-token", + ".5rem", + 152631, + 152635, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152636, + 152636, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152637, + 152645, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152646, + 152646, + null + ], + [ + "delim-token", + ".", + 152647, + 152647, + { + "value": "." + } + ], + [ + "ident-token", + "py-3", + 152648, + 152651, + { + "value": "py-3" + } + ], + [ + "{-token", + "{", + 152652, + 152652, + null + ], + [ + "ident-token", + "padding-top", + 152653, + 152663, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152664, + 152664, + null + ], + [ + "dimension-token", + "1rem", + 152665, + 152668, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152669, + 152669, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152670, + 152678, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152679, + 152679, + null + ], + [ + "ident-token", + "padding-bottom", + 152680, + 152693, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152694, + 152694, + null + ], + [ + "dimension-token", + "1rem", + 152695, + 152698, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152699, + 152699, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152700, + 152708, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152709, + 152709, + null + ], + [ + "delim-token", + ".", + 152710, + 152710, + { + "value": "." + } + ], + [ + "ident-token", + "py-4", + 152711, + 152714, + { + "value": "py-4" + } + ], + [ + "{-token", + "{", + 152715, + 152715, + null + ], + [ + "ident-token", + "padding-top", + 152716, + 152726, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152727, + 152727, + null + ], + [ + "dimension-token", + "1.5rem", + 152728, + 152733, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152734, + 152734, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152735, + 152743, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152744, + 152744, + null + ], + [ + "ident-token", + "padding-bottom", + 152745, + 152758, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152759, + 152759, + null + ], + [ + "dimension-token", + "1.5rem", + 152760, + 152765, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152766, + 152766, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152767, + 152775, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152776, + 152776, + null + ], + [ + "delim-token", + ".", + 152777, + 152777, + { + "value": "." + } + ], + [ + "ident-token", + "py-5", + 152778, + 152781, + { + "value": "py-5" + } + ], + [ + "{-token", + "{", + 152782, + 152782, + null + ], + [ + "ident-token", + "padding-top", + 152783, + 152793, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152794, + 152794, + null + ], + [ + "dimension-token", + "3rem", + 152795, + 152798, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152799, + 152799, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152800, + 152808, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 152809, + 152809, + null + ], + [ + "ident-token", + "padding-bottom", + 152810, + 152823, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 152824, + 152824, + null + ], + [ + "dimension-token", + "3rem", + 152825, + 152828, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152829, + 152829, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152830, + 152838, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152839, + 152839, + null + ], + [ + "delim-token", + ".", + 152840, + 152840, + { + "value": "." + } + ], + [ + "ident-token", + "pt-0", + 152841, + 152844, + { + "value": "pt-0" + } + ], + [ + "{-token", + "{", + 152845, + 152845, + null + ], + [ + "ident-token", + "padding-top", + 152846, + 152856, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152857, + 152857, + null + ], + [ + "number-token", + "0", + 152858, + 152858, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 152859, + 152859, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152860, + 152868, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152869, + 152869, + null + ], + [ + "delim-token", + ".", + 152870, + 152870, + { + "value": "." + } + ], + [ + "ident-token", + "pt-1", + 152871, + 152874, + { + "value": "pt-1" + } + ], + [ + "{-token", + "{", + 152875, + 152875, + null + ], + [ + "ident-token", + "padding-top", + 152876, + 152886, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152887, + 152887, + null + ], + [ + "dimension-token", + ".25rem", + 152888, + 152893, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152894, + 152894, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152895, + 152903, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152904, + 152904, + null + ], + [ + "delim-token", + ".", + 152905, + 152905, + { + "value": "." + } + ], + [ + "ident-token", + "pt-2", + 152906, + 152909, + { + "value": "pt-2" + } + ], + [ + "{-token", + "{", + 152910, + 152910, + null + ], + [ + "ident-token", + "padding-top", + 152911, + 152921, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152922, + 152922, + null + ], + [ + "dimension-token", + ".5rem", + 152923, + 152927, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152928, + 152928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152929, + 152937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152938, + 152938, + null + ], + [ + "delim-token", + ".", + 152939, + 152939, + { + "value": "." + } + ], + [ + "ident-token", + "pt-3", + 152940, + 152943, + { + "value": "pt-3" + } + ], + [ + "{-token", + "{", + 152944, + 152944, + null + ], + [ + "ident-token", + "padding-top", + 152945, + 152955, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152956, + 152956, + null + ], + [ + "dimension-token", + "1rem", + 152957, + 152960, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152961, + 152961, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152962, + 152970, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 152971, + 152971, + null + ], + [ + "delim-token", + ".", + 152972, + 152972, + { + "value": "." + } + ], + [ + "ident-token", + "pt-4", + 152973, + 152976, + { + "value": "pt-4" + } + ], + [ + "{-token", + "{", + 152977, + 152977, + null + ], + [ + "ident-token", + "padding-top", + 152978, + 152988, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 152989, + 152989, + null + ], + [ + "dimension-token", + "1.5rem", + 152990, + 152995, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 152996, + 152996, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 152997, + 153005, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153006, + 153006, + null + ], + [ + "delim-token", + ".", + 153007, + 153007, + { + "value": "." + } + ], + [ + "ident-token", + "pt-5", + 153008, + 153011, + { + "value": "pt-5" + } + ], + [ + "{-token", + "{", + 153012, + 153012, + null + ], + [ + "ident-token", + "padding-top", + 153013, + 153023, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 153024, + 153024, + null + ], + [ + "dimension-token", + "3rem", + 153025, + 153028, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153029, + 153029, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153030, + 153038, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153039, + 153039, + null + ], + [ + "delim-token", + ".", + 153040, + 153040, + { + "value": "." + } + ], + [ + "ident-token", + "pe-0", + 153041, + 153044, + { + "value": "pe-0" + } + ], + [ + "{-token", + "{", + 153045, + 153045, + null + ], + [ + "ident-token", + "padding-right", + 153046, + 153058, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153059, + 153059, + null + ], + [ + "number-token", + "0", + 153060, + 153060, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 153061, + 153061, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153062, + 153070, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153071, + 153071, + null + ], + [ + "delim-token", + ".", + 153072, + 153072, + { + "value": "." + } + ], + [ + "ident-token", + "pe-1", + 153073, + 153076, + { + "value": "pe-1" + } + ], + [ + "{-token", + "{", + 153077, + 153077, + null + ], + [ + "ident-token", + "padding-right", + 153078, + 153090, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153091, + 153091, + null + ], + [ + "dimension-token", + ".25rem", + 153092, + 153097, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153098, + 153098, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153099, + 153107, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153108, + 153108, + null + ], + [ + "delim-token", + ".", + 153109, + 153109, + { + "value": "." + } + ], + [ + "ident-token", + "pe-2", + 153110, + 153113, + { + "value": "pe-2" + } + ], + [ + "{-token", + "{", + 153114, + 153114, + null + ], + [ + "ident-token", + "padding-right", + 153115, + 153127, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153128, + 153128, + null + ], + [ + "dimension-token", + ".5rem", + 153129, + 153133, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153134, + 153134, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153135, + 153143, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153144, + 153144, + null + ], + [ + "delim-token", + ".", + 153145, + 153145, + { + "value": "." + } + ], + [ + "ident-token", + "pe-3", + 153146, + 153149, + { + "value": "pe-3" + } + ], + [ + "{-token", + "{", + 153150, + 153150, + null + ], + [ + "ident-token", + "padding-right", + 153151, + 153163, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153164, + 153164, + null + ], + [ + "dimension-token", + "1rem", + 153165, + 153168, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153169, + 153169, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153170, + 153178, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153179, + 153179, + null + ], + [ + "delim-token", + ".", + 153180, + 153180, + { + "value": "." + } + ], + [ + "ident-token", + "pe-4", + 153181, + 153184, + { + "value": "pe-4" + } + ], + [ + "{-token", + "{", + 153185, + 153185, + null + ], + [ + "ident-token", + "padding-right", + 153186, + 153198, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153199, + 153199, + null + ], + [ + "dimension-token", + "1.5rem", + 153200, + 153205, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153206, + 153206, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153207, + 153215, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153216, + 153216, + null + ], + [ + "delim-token", + ".", + 153217, + 153217, + { + "value": "." + } + ], + [ + "ident-token", + "pe-5", + 153218, + 153221, + { + "value": "pe-5" + } + ], + [ + "{-token", + "{", + 153222, + 153222, + null + ], + [ + "ident-token", + "padding-right", + 153223, + 153235, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 153236, + 153236, + null + ], + [ + "dimension-token", + "3rem", + 153237, + 153240, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153241, + 153241, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153242, + 153250, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153251, + 153251, + null + ], + [ + "delim-token", + ".", + 153252, + 153252, + { + "value": "." + } + ], + [ + "ident-token", + "pb-0", + 153253, + 153256, + { + "value": "pb-0" + } + ], + [ + "{-token", + "{", + 153257, + 153257, + null + ], + [ + "ident-token", + "padding-bottom", + 153258, + 153271, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153272, + 153272, + null + ], + [ + "number-token", + "0", + 153273, + 153273, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 153274, + 153274, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153275, + 153283, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153284, + 153284, + null + ], + [ + "delim-token", + ".", + 153285, + 153285, + { + "value": "." + } + ], + [ + "ident-token", + "pb-1", + 153286, + 153289, + { + "value": "pb-1" + } + ], + [ + "{-token", + "{", + 153290, + 153290, + null + ], + [ + "ident-token", + "padding-bottom", + 153291, + 153304, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153305, + 153305, + null + ], + [ + "dimension-token", + ".25rem", + 153306, + 153311, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153312, + 153312, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153313, + 153321, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153322, + 153322, + null + ], + [ + "delim-token", + ".", + 153323, + 153323, + { + "value": "." + } + ], + [ + "ident-token", + "pb-2", + 153324, + 153327, + { + "value": "pb-2" + } + ], + [ + "{-token", + "{", + 153328, + 153328, + null + ], + [ + "ident-token", + "padding-bottom", + 153329, + 153342, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153343, + 153343, + null + ], + [ + "dimension-token", + ".5rem", + 153344, + 153348, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153349, + 153349, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153350, + 153358, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153359, + 153359, + null + ], + [ + "delim-token", + ".", + 153360, + 153360, + { + "value": "." + } + ], + [ + "ident-token", + "pb-3", + 153361, + 153364, + { + "value": "pb-3" + } + ], + [ + "{-token", + "{", + 153365, + 153365, + null + ], + [ + "ident-token", + "padding-bottom", + 153366, + 153379, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153380, + 153380, + null + ], + [ + "dimension-token", + "1rem", + 153381, + 153384, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153385, + 153385, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153386, + 153394, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153395, + 153395, + null + ], + [ + "delim-token", + ".", + 153396, + 153396, + { + "value": "." + } + ], + [ + "ident-token", + "pb-4", + 153397, + 153400, + { + "value": "pb-4" + } + ], + [ + "{-token", + "{", + 153401, + 153401, + null + ], + [ + "ident-token", + "padding-bottom", + 153402, + 153415, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153416, + 153416, + null + ], + [ + "dimension-token", + "1.5rem", + 153417, + 153422, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153423, + 153423, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153424, + 153432, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153433, + 153433, + null + ], + [ + "delim-token", + ".", + 153434, + 153434, + { + "value": "." + } + ], + [ + "ident-token", + "pb-5", + 153435, + 153438, + { + "value": "pb-5" + } + ], + [ + "{-token", + "{", + 153439, + 153439, + null + ], + [ + "ident-token", + "padding-bottom", + 153440, + 153453, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 153454, + 153454, + null + ], + [ + "dimension-token", + "3rem", + 153455, + 153458, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153459, + 153459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153460, + 153468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153469, + 153469, + null + ], + [ + "delim-token", + ".", + 153470, + 153470, + { + "value": "." + } + ], + [ + "ident-token", + "ps-0", + 153471, + 153474, + { + "value": "ps-0" + } + ], + [ + "{-token", + "{", + 153475, + 153475, + null + ], + [ + "ident-token", + "padding-left", + 153476, + 153487, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153488, + 153488, + null + ], + [ + "number-token", + "0", + 153489, + 153489, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 153490, + 153490, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153491, + 153499, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153500, + 153500, + null + ], + [ + "delim-token", + ".", + 153501, + 153501, + { + "value": "." + } + ], + [ + "ident-token", + "ps-1", + 153502, + 153505, + { + "value": "ps-1" + } + ], + [ + "{-token", + "{", + 153506, + 153506, + null + ], + [ + "ident-token", + "padding-left", + 153507, + 153518, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153519, + 153519, + null + ], + [ + "dimension-token", + ".25rem", + 153520, + 153525, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153526, + 153526, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153527, + 153535, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153536, + 153536, + null + ], + [ + "delim-token", + ".", + 153537, + 153537, + { + "value": "." + } + ], + [ + "ident-token", + "ps-2", + 153538, + 153541, + { + "value": "ps-2" + } + ], + [ + "{-token", + "{", + 153542, + 153542, + null + ], + [ + "ident-token", + "padding-left", + 153543, + 153554, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153555, + 153555, + null + ], + [ + "dimension-token", + ".5rem", + 153556, + 153560, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153561, + 153561, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153562, + 153570, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153571, + 153571, + null + ], + [ + "delim-token", + ".", + 153572, + 153572, + { + "value": "." + } + ], + [ + "ident-token", + "ps-3", + 153573, + 153576, + { + "value": "ps-3" + } + ], + [ + "{-token", + "{", + 153577, + 153577, + null + ], + [ + "ident-token", + "padding-left", + 153578, + 153589, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153590, + 153590, + null + ], + [ + "dimension-token", + "1rem", + 153591, + 153594, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153595, + 153595, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153596, + 153604, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153605, + 153605, + null + ], + [ + "delim-token", + ".", + 153606, + 153606, + { + "value": "." + } + ], + [ + "ident-token", + "ps-4", + 153607, + 153610, + { + "value": "ps-4" + } + ], + [ + "{-token", + "{", + 153611, + 153611, + null + ], + [ + "ident-token", + "padding-left", + 153612, + 153623, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153624, + 153624, + null + ], + [ + "dimension-token", + "1.5rem", + 153625, + 153630, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153631, + 153631, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153632, + 153640, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153641, + 153641, + null + ], + [ + "delim-token", + ".", + 153642, + 153642, + { + "value": "." + } + ], + [ + "ident-token", + "ps-5", + 153643, + 153646, + { + "value": "ps-5" + } + ], + [ + "{-token", + "{", + 153647, + 153647, + null + ], + [ + "ident-token", + "padding-left", + 153648, + 153659, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 153660, + 153660, + null + ], + [ + "dimension-token", + "3rem", + 153661, + 153664, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153665, + 153665, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153666, + 153674, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153675, + 153675, + null + ], + [ + "delim-token", + ".", + 153676, + 153676, + { + "value": "." + } + ], + [ + "ident-token", + "gap-0", + 153677, + 153681, + { + "value": "gap-0" + } + ], + [ + "{-token", + "{", + 153682, + 153682, + null + ], + [ + "ident-token", + "gap", + 153683, + 153685, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153686, + 153686, + null + ], + [ + "number-token", + "0", + 153687, + 153687, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 153688, + 153688, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153689, + 153697, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153698, + 153698, + null + ], + [ + "delim-token", + ".", + 153699, + 153699, + { + "value": "." + } + ], + [ + "ident-token", + "gap-1", + 153700, + 153704, + { + "value": "gap-1" + } + ], + [ + "{-token", + "{", + 153705, + 153705, + null + ], + [ + "ident-token", + "gap", + 153706, + 153708, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153709, + 153709, + null + ], + [ + "dimension-token", + ".25rem", + 153710, + 153715, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153716, + 153716, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153717, + 153725, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153726, + 153726, + null + ], + [ + "delim-token", + ".", + 153727, + 153727, + { + "value": "." + } + ], + [ + "ident-token", + "gap-2", + 153728, + 153732, + { + "value": "gap-2" + } + ], + [ + "{-token", + "{", + 153733, + 153733, + null + ], + [ + "ident-token", + "gap", + 153734, + 153736, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153737, + 153737, + null + ], + [ + "dimension-token", + ".5rem", + 153738, + 153742, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153743, + 153743, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153744, + 153752, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153753, + 153753, + null + ], + [ + "delim-token", + ".", + 153754, + 153754, + { + "value": "." + } + ], + [ + "ident-token", + "gap-3", + 153755, + 153759, + { + "value": "gap-3" + } + ], + [ + "{-token", + "{", + 153760, + 153760, + null + ], + [ + "ident-token", + "gap", + 153761, + 153763, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153764, + 153764, + null + ], + [ + "dimension-token", + "1rem", + 153765, + 153768, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153769, + 153769, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153770, + 153778, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153779, + 153779, + null + ], + [ + "delim-token", + ".", + 153780, + 153780, + { + "value": "." + } + ], + [ + "ident-token", + "gap-4", + 153781, + 153785, + { + "value": "gap-4" + } + ], + [ + "{-token", + "{", + 153786, + 153786, + null + ], + [ + "ident-token", + "gap", + 153787, + 153789, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153790, + 153790, + null + ], + [ + "dimension-token", + "1.5rem", + 153791, + 153796, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153797, + 153797, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153798, + 153806, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153807, + 153807, + null + ], + [ + "delim-token", + ".", + 153808, + 153808, + { + "value": "." + } + ], + [ + "ident-token", + "gap-5", + 153809, + 153813, + { + "value": "gap-5" + } + ], + [ + "{-token", + "{", + 153814, + 153814, + null + ], + [ + "ident-token", + "gap", + 153815, + 153817, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 153818, + 153818, + null + ], + [ + "dimension-token", + "3rem", + 153819, + 153822, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 153823, + 153823, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153824, + 153832, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153833, + 153833, + null + ], + [ + "delim-token", + ".", + 153834, + 153834, + { + "value": "." + } + ], + [ + "ident-token", + "font-monospace", + 153835, + 153848, + { + "value": "font-monospace" + } + ], + [ + "{-token", + "{", + 153849, + 153849, + null + ], + [ + "ident-token", + "font-family", + 153850, + 153860, + { + "value": "font-family" + } + ], + [ + "colon-token", + ":", + 153861, + 153861, + null + ], + [ + "function-token", + "var(", + 153862, + 153865, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 153866, + 153866, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 153867, + 153867, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-font-monospace", + 153868, + 153884, + { + "value": "bs-font-monospace" + } + ], + [ + ")-token", + ")", + 153885, + 153885, + null + ], + [ + "delim-token", + "!", + 153886, + 153886, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153887, + 153895, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153896, + 153896, + null + ], + [ + "delim-token", + ".", + 153897, + 153897, + { + "value": "." + } + ], + [ + "ident-token", + "fs-1", + 153898, + 153901, + { + "value": "fs-1" + } + ], + [ + "{-token", + "{", + 153902, + 153902, + null + ], + [ + "ident-token", + "font-size", + 153903, + 153911, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 153912, + 153912, + null + ], + [ + "function-token", + "calc(", + 153913, + 153917, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.375rem", + 153918, + 153925, + { + "value": 1.375, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 153926, + 153926, + null + ], + [ + "delim-token", + "+", + 153927, + 153927, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 153928, + 153928, + null + ], + [ + "dimension-token", + "1.5vw", + 153929, + 153933, + { + "value": 1.5, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 153934, + 153934, + null + ], + [ + "delim-token", + "!", + 153935, + 153935, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153936, + 153944, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153945, + 153945, + null + ], + [ + "delim-token", + ".", + 153946, + 153946, + { + "value": "." + } + ], + [ + "ident-token", + "fs-2", + 153947, + 153950, + { + "value": "fs-2" + } + ], + [ + "{-token", + "{", + 153951, + 153951, + null + ], + [ + "ident-token", + "font-size", + 153952, + 153960, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 153961, + 153961, + null + ], + [ + "function-token", + "calc(", + 153962, + 153966, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.325rem", + 153967, + 153974, + { + "value": 1.325, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 153975, + 153975, + null + ], + [ + "delim-token", + "+", + 153976, + 153976, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 153977, + 153977, + null + ], + [ + "dimension-token", + ".9vw", + 153978, + 153981, + { + "value": 0.9, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 153982, + 153982, + null + ], + [ + "delim-token", + "!", + 153983, + 153983, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 153984, + 153992, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 153993, + 153993, + null + ], + [ + "delim-token", + ".", + 153994, + 153994, + { + "value": "." + } + ], + [ + "ident-token", + "fs-3", + 153995, + 153998, + { + "value": "fs-3" + } + ], + [ + "{-token", + "{", + 153999, + 153999, + null + ], + [ + "ident-token", + "font-size", + 154000, + 154008, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 154009, + 154009, + null + ], + [ + "function-token", + "calc(", + 154010, + 154014, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.3rem", + 154015, + 154020, + { + "value": 1.3, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 154021, + 154021, + null + ], + [ + "delim-token", + "+", + 154022, + 154022, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 154023, + 154023, + null + ], + [ + "dimension-token", + ".6vw", + 154024, + 154027, + { + "value": 0.6, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 154028, + 154028, + null + ], + [ + "delim-token", + "!", + 154029, + 154029, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154030, + 154038, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154039, + 154039, + null + ], + [ + "delim-token", + ".", + 154040, + 154040, + { + "value": "." + } + ], + [ + "ident-token", + "fs-4", + 154041, + 154044, + { + "value": "fs-4" + } + ], + [ + "{-token", + "{", + 154045, + 154045, + null + ], + [ + "ident-token", + "font-size", + 154046, + 154054, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 154055, + 154055, + null + ], + [ + "function-token", + "calc(", + 154056, + 154060, + { + "value": "calc" + } + ], + [ + "dimension-token", + "1.275rem", + 154061, + 154068, + { + "value": 1.275, + "type": "number", + "unit": "rem" + } + ], + [ + "whitespace-token", + " ", + 154069, + 154069, + null + ], + [ + "delim-token", + "+", + 154070, + 154070, + { + "value": "+" + } + ], + [ + "whitespace-token", + " ", + 154071, + 154071, + null + ], + [ + "dimension-token", + ".3vw", + 154072, + 154075, + { + "value": 0.3, + "type": "number", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 154076, + 154076, + null + ], + [ + "delim-token", + "!", + 154077, + 154077, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154078, + 154086, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154087, + 154087, + null + ], + [ + "delim-token", + ".", + 154088, + 154088, + { + "value": "." + } + ], + [ + "ident-token", + "fs-5", + 154089, + 154092, + { + "value": "fs-5" + } + ], + [ + "{-token", + "{", + 154093, + 154093, + null + ], + [ + "ident-token", + "font-size", + 154094, + 154102, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 154103, + 154103, + null + ], + [ + "dimension-token", + "1.25rem", + 154104, + 154110, + { + "value": 1.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 154111, + 154111, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154112, + 154120, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154121, + 154121, + null + ], + [ + "delim-token", + ".", + 154122, + 154122, + { + "value": "." + } + ], + [ + "ident-token", + "fs-6", + 154123, + 154126, + { + "value": "fs-6" + } + ], + [ + "{-token", + "{", + 154127, + 154127, + null + ], + [ + "ident-token", + "font-size", + 154128, + 154136, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 154137, + 154137, + null + ], + [ + "dimension-token", + "1rem", + 154138, + 154141, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 154142, + 154142, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154143, + 154151, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154152, + 154152, + null + ], + [ + "delim-token", + ".", + 154153, + 154153, + { + "value": "." + } + ], + [ + "ident-token", + "fst-italic", + 154154, + 154163, + { + "value": "fst-italic" + } + ], + [ + "{-token", + "{", + 154164, + 154164, + null + ], + [ + "ident-token", + "font-style", + 154165, + 154174, + { + "value": "font-style" + } + ], + [ + "colon-token", + ":", + 154175, + 154175, + null + ], + [ + "ident-token", + "italic", + 154176, + 154181, + { + "value": "italic" + } + ], + [ + "delim-token", + "!", + 154182, + 154182, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154183, + 154191, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154192, + 154192, + null + ], + [ + "delim-token", + ".", + 154193, + 154193, + { + "value": "." + } + ], + [ + "ident-token", + "fst-normal", + 154194, + 154203, + { + "value": "fst-normal" + } + ], + [ + "{-token", + "{", + 154204, + 154204, + null + ], + [ + "ident-token", + "font-style", + 154205, + 154214, + { + "value": "font-style" + } + ], + [ + "colon-token", + ":", + 154215, + 154215, + null + ], + [ + "ident-token", + "normal", + 154216, + 154221, + { + "value": "normal" + } + ], + [ + "delim-token", + "!", + 154222, + 154222, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154223, + 154231, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154232, + 154232, + null + ], + [ + "delim-token", + ".", + 154233, + 154233, + { + "value": "." + } + ], + [ + "ident-token", + "fw-light", + 154234, + 154241, + { + "value": "fw-light" + } + ], + [ + "{-token", + "{", + 154242, + 154242, + null + ], + [ + "ident-token", + "font-weight", + 154243, + 154253, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154254, + 154254, + null + ], + [ + "number-token", + "300", + 154255, + 154257, + { + "value": 300, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154258, + 154258, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154259, + 154267, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154268, + 154268, + null + ], + [ + "delim-token", + ".", + 154269, + 154269, + { + "value": "." + } + ], + [ + "ident-token", + "fw-lighter", + 154270, + 154279, + { + "value": "fw-lighter" + } + ], + [ + "{-token", + "{", + 154280, + 154280, + null + ], + [ + "ident-token", + "font-weight", + 154281, + 154291, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154292, + 154292, + null + ], + [ + "ident-token", + "lighter", + 154293, + 154299, + { + "value": "lighter" + } + ], + [ + "delim-token", + "!", + 154300, + 154300, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154301, + 154309, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154310, + 154310, + null + ], + [ + "delim-token", + ".", + 154311, + 154311, + { + "value": "." + } + ], + [ + "ident-token", + "fw-normal", + 154312, + 154320, + { + "value": "fw-normal" + } + ], + [ + "{-token", + "{", + 154321, + 154321, + null + ], + [ + "ident-token", + "font-weight", + 154322, + 154332, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154333, + 154333, + null + ], + [ + "number-token", + "400", + 154334, + 154336, + { + "value": 400, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154337, + 154337, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154338, + 154346, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154347, + 154347, + null + ], + [ + "delim-token", + ".", + 154348, + 154348, + { + "value": "." + } + ], + [ + "ident-token", + "fw-bold", + 154349, + 154355, + { + "value": "fw-bold" + } + ], + [ + "{-token", + "{", + 154356, + 154356, + null + ], + [ + "ident-token", + "font-weight", + 154357, + 154367, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154368, + 154368, + null + ], + [ + "number-token", + "700", + 154369, + 154371, + { + "value": 700, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154372, + 154372, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154373, + 154381, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154382, + 154382, + null + ], + [ + "delim-token", + ".", + 154383, + 154383, + { + "value": "." + } + ], + [ + "ident-token", + "fw-semibold", + 154384, + 154394, + { + "value": "fw-semibold" + } + ], + [ + "{-token", + "{", + 154395, + 154395, + null + ], + [ + "ident-token", + "font-weight", + 154396, + 154406, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154407, + 154407, + null + ], + [ + "number-token", + "600", + 154408, + 154410, + { + "value": 600, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154411, + 154411, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154412, + 154420, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154421, + 154421, + null + ], + [ + "delim-token", + ".", + 154422, + 154422, + { + "value": "." + } + ], + [ + "ident-token", + "fw-bolder", + 154423, + 154431, + { + "value": "fw-bolder" + } + ], + [ + "{-token", + "{", + 154432, + 154432, + null + ], + [ + "ident-token", + "font-weight", + 154433, + 154443, + { + "value": "font-weight" + } + ], + [ + "colon-token", + ":", + 154444, + 154444, + null + ], + [ + "ident-token", + "bolder", + 154445, + 154450, + { + "value": "bolder" + } + ], + [ + "delim-token", + "!", + 154451, + 154451, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154452, + 154460, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154461, + 154461, + null + ], + [ + "delim-token", + ".", + 154462, + 154462, + { + "value": "." + } + ], + [ + "ident-token", + "lh-1", + 154463, + 154466, + { + "value": "lh-1" + } + ], + [ + "{-token", + "{", + 154467, + 154467, + null + ], + [ + "ident-token", + "line-height", + 154468, + 154478, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 154479, + 154479, + null + ], + [ + "number-token", + "1", + 154480, + 154480, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154481, + 154481, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154482, + 154490, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154491, + 154491, + null + ], + [ + "delim-token", + ".", + 154492, + 154492, + { + "value": "." + } + ], + [ + "ident-token", + "lh-sm", + 154493, + 154497, + { + "value": "lh-sm" + } + ], + [ + "{-token", + "{", + 154498, + 154498, + null + ], + [ + "ident-token", + "line-height", + 154499, + 154509, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 154510, + 154510, + null + ], + [ + "number-token", + "1.25", + 154511, + 154514, + { + "value": 1.25, + "type": "number" + } + ], + [ + "delim-token", + "!", + 154515, + 154515, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154516, + 154524, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154525, + 154525, + null + ], + [ + "delim-token", + ".", + 154526, + 154526, + { + "value": "." + } + ], + [ + "ident-token", + "lh-base", + 154527, + 154533, + { + "value": "lh-base" + } + ], + [ + "{-token", + "{", + 154534, + 154534, + null + ], + [ + "ident-token", + "line-height", + 154535, + 154545, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 154546, + 154546, + null + ], + [ + "number-token", + "1.5", + 154547, + 154549, + { + "value": 1.5, + "type": "number" + } + ], + [ + "delim-token", + "!", + 154550, + 154550, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154551, + 154559, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154560, + 154560, + null + ], + [ + "delim-token", + ".", + 154561, + 154561, + { + "value": "." + } + ], + [ + "ident-token", + "lh-lg", + 154562, + 154566, + { + "value": "lh-lg" + } + ], + [ + "{-token", + "{", + 154567, + 154567, + null + ], + [ + "ident-token", + "line-height", + 154568, + 154578, + { + "value": "line-height" + } + ], + [ + "colon-token", + ":", + 154579, + 154579, + null + ], + [ + "number-token", + "2", + 154580, + 154580, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 154581, + 154581, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154582, + 154590, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154591, + 154591, + null + ], + [ + "delim-token", + ".", + 154592, + 154592, + { + "value": "." + } + ], + [ + "ident-token", + "text-start", + 154593, + 154602, + { + "value": "text-start" + } + ], + [ + "{-token", + "{", + 154603, + 154603, + null + ], + [ + "ident-token", + "text-align", + 154604, + 154613, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 154614, + 154614, + null + ], + [ + "ident-token", + "left", + 154615, + 154618, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 154619, + 154619, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154620, + 154628, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154629, + 154629, + null + ], + [ + "delim-token", + ".", + 154630, + 154630, + { + "value": "." + } + ], + [ + "ident-token", + "text-end", + 154631, + 154638, + { + "value": "text-end" + } + ], + [ + "{-token", + "{", + 154639, + 154639, + null + ], + [ + "ident-token", + "text-align", + 154640, + 154649, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 154650, + 154650, + null + ], + [ + "ident-token", + "right", + 154651, + 154655, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 154656, + 154656, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154657, + 154665, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154666, + 154666, + null + ], + [ + "delim-token", + ".", + 154667, + 154667, + { + "value": "." + } + ], + [ + "ident-token", + "text-center", + 154668, + 154678, + { + "value": "text-center" + } + ], + [ + "{-token", + "{", + 154679, + 154679, + null + ], + [ + "ident-token", + "text-align", + 154680, + 154689, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 154690, + 154690, + null + ], + [ + "ident-token", + "center", + 154691, + 154696, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 154697, + 154697, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154698, + 154706, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154707, + 154707, + null + ], + [ + "delim-token", + ".", + 154708, + 154708, + { + "value": "." + } + ], + [ + "ident-token", + "text-decoration-none", + 154709, + 154728, + { + "value": "text-decoration-none" + } + ], + [ + "{-token", + "{", + 154729, + 154729, + null + ], + [ + "ident-token", + "text-decoration", + 154730, + 154744, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 154745, + 154745, + null + ], + [ + "ident-token", + "none", + 154746, + 154749, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 154750, + 154750, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154751, + 154759, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154760, + 154760, + null + ], + [ + "delim-token", + ".", + 154761, + 154761, + { + "value": "." + } + ], + [ + "ident-token", + "text-decoration-underline", + 154762, + 154786, + { + "value": "text-decoration-underline" + } + ], + [ + "{-token", + "{", + 154787, + 154787, + null + ], + [ + "ident-token", + "text-decoration", + 154788, + 154802, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 154803, + 154803, + null + ], + [ + "ident-token", + "underline", + 154804, + 154812, + { + "value": "underline" + } + ], + [ + "delim-token", + "!", + 154813, + 154813, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154814, + 154822, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154823, + 154823, + null + ], + [ + "delim-token", + ".", + 154824, + 154824, + { + "value": "." + } + ], + [ + "ident-token", + "text-decoration-line-through", + 154825, + 154852, + { + "value": "text-decoration-line-through" + } + ], + [ + "{-token", + "{", + 154853, + 154853, + null + ], + [ + "ident-token", + "text-decoration", + 154854, + 154868, + { + "value": "text-decoration" + } + ], + [ + "colon-token", + ":", + 154869, + 154869, + null + ], + [ + "ident-token", + "line-through", + 154870, + 154881, + { + "value": "line-through" + } + ], + [ + "delim-token", + "!", + 154882, + 154882, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154883, + 154891, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154892, + 154892, + null + ], + [ + "delim-token", + ".", + 154893, + 154893, + { + "value": "." + } + ], + [ + "ident-token", + "text-lowercase", + 154894, + 154907, + { + "value": "text-lowercase" + } + ], + [ + "{-token", + "{", + 154908, + 154908, + null + ], + [ + "ident-token", + "text-transform", + 154909, + 154922, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 154923, + 154923, + null + ], + [ + "ident-token", + "lowercase", + 154924, + 154932, + { + "value": "lowercase" + } + ], + [ + "delim-token", + "!", + 154933, + 154933, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154934, + 154942, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154943, + 154943, + null + ], + [ + "delim-token", + ".", + 154944, + 154944, + { + "value": "." + } + ], + [ + "ident-token", + "text-uppercase", + 154945, + 154958, + { + "value": "text-uppercase" + } + ], + [ + "{-token", + "{", + 154959, + 154959, + null + ], + [ + "ident-token", + "text-transform", + 154960, + 154973, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 154974, + 154974, + null + ], + [ + "ident-token", + "uppercase", + 154975, + 154983, + { + "value": "uppercase" + } + ], + [ + "delim-token", + "!", + 154984, + 154984, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 154985, + 154993, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 154994, + 154994, + null + ], + [ + "delim-token", + ".", + 154995, + 154995, + { + "value": "." + } + ], + [ + "ident-token", + "text-capitalize", + 154996, + 155010, + { + "value": "text-capitalize" + } + ], + [ + "{-token", + "{", + 155011, + 155011, + null + ], + [ + "ident-token", + "text-transform", + 155012, + 155025, + { + "value": "text-transform" + } + ], + [ + "colon-token", + ":", + 155026, + 155026, + null + ], + [ + "ident-token", + "capitalize", + 155027, + 155036, + { + "value": "capitalize" + } + ], + [ + "delim-token", + "!", + 155037, + 155037, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155038, + 155046, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155047, + 155047, + null + ], + [ + "delim-token", + ".", + 155048, + 155048, + { + "value": "." + } + ], + [ + "ident-token", + "text-wrap", + 155049, + 155057, + { + "value": "text-wrap" + } + ], + [ + "{-token", + "{", + 155058, + 155058, + null + ], + [ + "ident-token", + "white-space", + 155059, + 155069, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 155070, + 155070, + null + ], + [ + "ident-token", + "normal", + 155071, + 155076, + { + "value": "normal" + } + ], + [ + "delim-token", + "!", + 155077, + 155077, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155078, + 155086, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155087, + 155087, + null + ], + [ + "delim-token", + ".", + 155088, + 155088, + { + "value": "." + } + ], + [ + "ident-token", + "text-nowrap", + 155089, + 155099, + { + "value": "text-nowrap" + } + ], + [ + "{-token", + "{", + 155100, + 155100, + null + ], + [ + "ident-token", + "white-space", + 155101, + 155111, + { + "value": "white-space" + } + ], + [ + "colon-token", + ":", + 155112, + 155112, + null + ], + [ + "ident-token", + "nowrap", + 155113, + 155118, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 155119, + 155119, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155120, + 155128, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155129, + 155129, + null + ], + [ + "delim-token", + ".", + 155130, + 155130, + { + "value": "." + } + ], + [ + "ident-token", + "text-break", + 155131, + 155140, + { + "value": "text-break" + } + ], + [ + "{-token", + "{", + 155141, + 155141, + null + ], + [ + "ident-token", + "word-wrap", + 155142, + 155150, + { + "value": "word-wrap" + } + ], + [ + "colon-token", + ":", + 155151, + 155151, + null + ], + [ + "ident-token", + "break-word", + 155152, + 155161, + { + "value": "break-word" + } + ], + [ + "delim-token", + "!", + 155162, + 155162, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155163, + 155171, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 155172, + 155172, + null + ], + [ + "ident-token", + "word-break", + 155173, + 155182, + { + "value": "word-break" + } + ], + [ + "colon-token", + ":", + 155183, + 155183, + null + ], + [ + "ident-token", + "break-word", + 155184, + 155193, + { + "value": "break-word" + } + ], + [ + "delim-token", + "!", + 155194, + 155194, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155195, + 155203, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155204, + 155204, + null + ], + [ + "delim-token", + ".", + 155205, + 155205, + { + "value": "." + } + ], + [ + "ident-token", + "text-primary", + 155206, + 155217, + { + "value": "text-primary" + } + ], + [ + "{-token", + "{", + 155218, + 155218, + null + ], + [ + "delim-token", + "-", + 155219, + 155219, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155220, + 155220, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155221, + 155235, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155236, + 155236, + null + ], + [ + "number-token", + "1", + 155237, + 155237, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155238, + 155238, + null + ], + [ + "ident-token", + "color", + 155239, + 155243, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155244, + 155244, + null + ], + [ + "function-token", + "rgba(", + 155245, + 155249, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155250, + 155253, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155254, + 155254, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155255, + 155255, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-primary-rgb", + 155256, + 155269, + { + "value": "bs-primary-rgb" + } + ], + [ + ")-token", + ")", + 155270, + 155270, + null + ], + [ + "comma-token", + ",", + 155271, + 155271, + null + ], + [ + "function-token", + "var(", + 155272, + 155275, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155276, + 155276, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155277, + 155277, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155278, + 155292, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155293, + 155293, + null + ], + [ + ")-token", + ")", + 155294, + 155294, + null + ], + [ + "delim-token", + "!", + 155295, + 155295, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155296, + 155304, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155305, + 155305, + null + ], + [ + "delim-token", + ".", + 155306, + 155306, + { + "value": "." + } + ], + [ + "ident-token", + "text-secondary", + 155307, + 155320, + { + "value": "text-secondary" + } + ], + [ + "{-token", + "{", + 155321, + 155321, + null + ], + [ + "delim-token", + "-", + 155322, + 155322, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155323, + 155323, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155324, + 155338, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155339, + 155339, + null + ], + [ + "number-token", + "1", + 155340, + 155340, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155341, + 155341, + null + ], + [ + "ident-token", + "color", + 155342, + 155346, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155347, + 155347, + null + ], + [ + "function-token", + "rgba(", + 155348, + 155352, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155353, + 155356, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155357, + 155357, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155358, + 155358, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-secondary-rgb", + 155359, + 155374, + { + "value": "bs-secondary-rgb" + } + ], + [ + ")-token", + ")", + 155375, + 155375, + null + ], + [ + "comma-token", + ",", + 155376, + 155376, + null + ], + [ + "function-token", + "var(", + 155377, + 155380, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155381, + 155381, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155382, + 155382, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155383, + 155397, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155398, + 155398, + null + ], + [ + ")-token", + ")", + 155399, + 155399, + null + ], + [ + "delim-token", + "!", + 155400, + 155400, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155401, + 155409, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155410, + 155410, + null + ], + [ + "delim-token", + ".", + 155411, + 155411, + { + "value": "." + } + ], + [ + "ident-token", + "text-success", + 155412, + 155423, + { + "value": "text-success" + } + ], + [ + "{-token", + "{", + 155424, + 155424, + null + ], + [ + "delim-token", + "-", + 155425, + 155425, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155426, + 155426, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155427, + 155441, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155442, + 155442, + null + ], + [ + "number-token", + "1", + 155443, + 155443, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155444, + 155444, + null + ], + [ + "ident-token", + "color", + 155445, + 155449, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155450, + 155450, + null + ], + [ + "function-token", + "rgba(", + 155451, + 155455, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155456, + 155459, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155460, + 155460, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155461, + 155461, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-success-rgb", + 155462, + 155475, + { + "value": "bs-success-rgb" + } + ], + [ + ")-token", + ")", + 155476, + 155476, + null + ], + [ + "comma-token", + ",", + 155477, + 155477, + null + ], + [ + "function-token", + "var(", + 155478, + 155481, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155482, + 155482, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155483, + 155483, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155484, + 155498, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155499, + 155499, + null + ], + [ + ")-token", + ")", + 155500, + 155500, + null + ], + [ + "delim-token", + "!", + 155501, + 155501, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155502, + 155510, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155511, + 155511, + null + ], + [ + "delim-token", + ".", + 155512, + 155512, + { + "value": "." + } + ], + [ + "ident-token", + "text-info", + 155513, + 155521, + { + "value": "text-info" + } + ], + [ + "{-token", + "{", + 155522, + 155522, + null + ], + [ + "delim-token", + "-", + 155523, + 155523, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155524, + 155524, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155525, + 155539, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155540, + 155540, + null + ], + [ + "number-token", + "1", + 155541, + 155541, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155542, + 155542, + null + ], + [ + "ident-token", + "color", + 155543, + 155547, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155548, + 155548, + null + ], + [ + "function-token", + "rgba(", + 155549, + 155553, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155554, + 155557, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155558, + 155558, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155559, + 155559, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-info-rgb", + 155560, + 155570, + { + "value": "bs-info-rgb" + } + ], + [ + ")-token", + ")", + 155571, + 155571, + null + ], + [ + "comma-token", + ",", + 155572, + 155572, + null + ], + [ + "function-token", + "var(", + 155573, + 155576, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155577, + 155577, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155578, + 155578, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155579, + 155593, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155594, + 155594, + null + ], + [ + ")-token", + ")", + 155595, + 155595, + null + ], + [ + "delim-token", + "!", + 155596, + 155596, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155597, + 155605, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155606, + 155606, + null + ], + [ + "delim-token", + ".", + 155607, + 155607, + { + "value": "." + } + ], + [ + "ident-token", + "text-warning", + 155608, + 155619, + { + "value": "text-warning" + } + ], + [ + "{-token", + "{", + 155620, + 155620, + null + ], + [ + "delim-token", + "-", + 155621, + 155621, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155622, + 155622, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155623, + 155637, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155638, + 155638, + null + ], + [ + "number-token", + "1", + 155639, + 155639, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155640, + 155640, + null + ], + [ + "ident-token", + "color", + 155641, + 155645, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155646, + 155646, + null + ], + [ + "function-token", + "rgba(", + 155647, + 155651, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155652, + 155655, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155656, + 155656, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155657, + 155657, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-warning-rgb", + 155658, + 155671, + { + "value": "bs-warning-rgb" + } + ], + [ + ")-token", + ")", + 155672, + 155672, + null + ], + [ + "comma-token", + ",", + 155673, + 155673, + null + ], + [ + "function-token", + "var(", + 155674, + 155677, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155678, + 155678, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155679, + 155679, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155680, + 155694, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155695, + 155695, + null + ], + [ + ")-token", + ")", + 155696, + 155696, + null + ], + [ + "delim-token", + "!", + 155697, + 155697, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155698, + 155706, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155707, + 155707, + null + ], + [ + "delim-token", + ".", + 155708, + 155708, + { + "value": "." + } + ], + [ + "ident-token", + "text-danger", + 155709, + 155719, + { + "value": "text-danger" + } + ], + [ + "{-token", + "{", + 155720, + 155720, + null + ], + [ + "delim-token", + "-", + 155721, + 155721, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155722, + 155722, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155723, + 155737, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155738, + 155738, + null + ], + [ + "number-token", + "1", + 155739, + 155739, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155740, + 155740, + null + ], + [ + "ident-token", + "color", + 155741, + 155745, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155746, + 155746, + null + ], + [ + "function-token", + "rgba(", + 155747, + 155751, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155752, + 155755, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155756, + 155756, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155757, + 155757, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-danger-rgb", + 155758, + 155770, + { + "value": "bs-danger-rgb" + } + ], + [ + ")-token", + ")", + 155771, + 155771, + null + ], + [ + "comma-token", + ",", + 155772, + 155772, + null + ], + [ + "function-token", + "var(", + 155773, + 155776, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155777, + 155777, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155778, + 155778, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155779, + 155793, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155794, + 155794, + null + ], + [ + ")-token", + ")", + 155795, + 155795, + null + ], + [ + "delim-token", + "!", + 155796, + 155796, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155797, + 155805, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155806, + 155806, + null + ], + [ + "delim-token", + ".", + 155807, + 155807, + { + "value": "." + } + ], + [ + "ident-token", + "text-light", + 155808, + 155817, + { + "value": "text-light" + } + ], + [ + "{-token", + "{", + 155818, + 155818, + null + ], + [ + "delim-token", + "-", + 155819, + 155819, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155820, + 155820, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155821, + 155835, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155836, + 155836, + null + ], + [ + "number-token", + "1", + 155837, + 155837, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155838, + 155838, + null + ], + [ + "ident-token", + "color", + 155839, + 155843, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155844, + 155844, + null + ], + [ + "function-token", + "rgba(", + 155845, + 155849, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155850, + 155853, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155854, + 155854, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155855, + 155855, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-light-rgb", + 155856, + 155867, + { + "value": "bs-light-rgb" + } + ], + [ + ")-token", + ")", + 155868, + 155868, + null + ], + [ + "comma-token", + ",", + 155869, + 155869, + null + ], + [ + "function-token", + "var(", + 155870, + 155873, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155874, + 155874, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155875, + 155875, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155876, + 155890, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155891, + 155891, + null + ], + [ + ")-token", + ")", + 155892, + 155892, + null + ], + [ + "delim-token", + "!", + 155893, + 155893, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155894, + 155902, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155903, + 155903, + null + ], + [ + "delim-token", + ".", + 155904, + 155904, + { + "value": "." + } + ], + [ + "ident-token", + "text-dark", + 155905, + 155913, + { + "value": "text-dark" + } + ], + [ + "{-token", + "{", + 155914, + 155914, + null + ], + [ + "delim-token", + "-", + 155915, + 155915, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155916, + 155916, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155917, + 155931, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 155932, + 155932, + null + ], + [ + "number-token", + "1", + 155933, + 155933, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 155934, + 155934, + null + ], + [ + "ident-token", + "color", + 155935, + 155939, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 155940, + 155940, + null + ], + [ + "function-token", + "rgba(", + 155941, + 155945, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 155946, + 155949, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155950, + 155950, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155951, + 155951, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dark-rgb", + 155952, + 155962, + { + "value": "bs-dark-rgb" + } + ], + [ + ")-token", + ")", + 155963, + 155963, + null + ], + [ + "comma-token", + ",", + 155964, + 155964, + null + ], + [ + "function-token", + "var(", + 155965, + 155968, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 155969, + 155969, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 155970, + 155970, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 155971, + 155985, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 155986, + 155986, + null + ], + [ + ")-token", + ")", + 155987, + 155987, + null + ], + [ + "delim-token", + "!", + 155988, + 155988, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 155989, + 155997, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 155998, + 155998, + null + ], + [ + "delim-token", + ".", + 155999, + 155999, + { + "value": "." + } + ], + [ + "ident-token", + "text-black", + 156000, + 156009, + { + "value": "text-black" + } + ], + [ + "{-token", + "{", + 156010, + 156010, + null + ], + [ + "delim-token", + "-", + 156011, + 156011, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156012, + 156012, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156013, + 156027, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156028, + 156028, + null + ], + [ + "number-token", + "1", + 156029, + 156029, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156030, + 156030, + null + ], + [ + "ident-token", + "color", + 156031, + 156035, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156036, + 156036, + null + ], + [ + "function-token", + "rgba(", + 156037, + 156041, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156042, + 156045, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156046, + 156046, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156047, + 156047, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-black-rgb", + 156048, + 156059, + { + "value": "bs-black-rgb" + } + ], + [ + ")-token", + ")", + 156060, + 156060, + null + ], + [ + "comma-token", + ",", + 156061, + 156061, + null + ], + [ + "function-token", + "var(", + 156062, + 156065, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156066, + 156066, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156067, + 156067, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156068, + 156082, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 156083, + 156083, + null + ], + [ + ")-token", + ")", + 156084, + 156084, + null + ], + [ + "delim-token", + "!", + 156085, + 156085, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156086, + 156094, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156095, + 156095, + null + ], + [ + "delim-token", + ".", + 156096, + 156096, + { + "value": "." + } + ], + [ + "ident-token", + "text-white", + 156097, + 156106, + { + "value": "text-white" + } + ], + [ + "{-token", + "{", + 156107, + 156107, + null + ], + [ + "delim-token", + "-", + 156108, + 156108, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156109, + 156109, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156110, + 156124, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156125, + 156125, + null + ], + [ + "number-token", + "1", + 156126, + 156126, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156127, + 156127, + null + ], + [ + "ident-token", + "color", + 156128, + 156132, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156133, + 156133, + null + ], + [ + "function-token", + "rgba(", + 156134, + 156138, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156139, + 156142, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156143, + 156143, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156144, + 156144, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-white-rgb", + 156145, + 156156, + { + "value": "bs-white-rgb" + } + ], + [ + ")-token", + ")", + 156157, + 156157, + null + ], + [ + "comma-token", + ",", + 156158, + 156158, + null + ], + [ + "function-token", + "var(", + 156159, + 156162, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156163, + 156163, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156164, + 156164, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156165, + 156179, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 156180, + 156180, + null + ], + [ + ")-token", + ")", + 156181, + 156181, + null + ], + [ + "delim-token", + "!", + 156182, + 156182, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156183, + 156191, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156192, + 156192, + null + ], + [ + "delim-token", + ".", + 156193, + 156193, + { + "value": "." + } + ], + [ + "ident-token", + "text-body", + 156194, + 156202, + { + "value": "text-body" + } + ], + [ + "{-token", + "{", + 156203, + 156203, + null + ], + [ + "delim-token", + "-", + 156204, + 156204, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156205, + 156205, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156206, + 156220, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156221, + 156221, + null + ], + [ + "number-token", + "1", + 156222, + 156222, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156223, + 156223, + null + ], + [ + "ident-token", + "color", + 156224, + 156228, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156229, + 156229, + null + ], + [ + "function-token", + "rgba(", + 156230, + 156234, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156235, + 156238, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156239, + 156239, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156240, + 156240, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-color-rgb", + 156241, + 156257, + { + "value": "bs-body-color-rgb" + } + ], + [ + ")-token", + ")", + 156258, + 156258, + null + ], + [ + "comma-token", + ",", + 156259, + 156259, + null + ], + [ + "function-token", + "var(", + 156260, + 156263, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156264, + 156264, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156265, + 156265, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156266, + 156280, + { + "value": "bs-text-opacity" + } + ], + [ + ")-token", + ")", + 156281, + 156281, + null + ], + [ + ")-token", + ")", + 156282, + 156282, + null + ], + [ + "delim-token", + "!", + 156283, + 156283, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156284, + 156292, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156293, + 156293, + null + ], + [ + "delim-token", + ".", + 156294, + 156294, + { + "value": "." + } + ], + [ + "ident-token", + "text-muted", + 156295, + 156304, + { + "value": "text-muted" + } + ], + [ + "{-token", + "{", + 156305, + 156305, + null + ], + [ + "delim-token", + "-", + 156306, + 156306, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156307, + 156307, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156308, + 156322, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156323, + 156323, + null + ], + [ + "number-token", + "1", + 156324, + 156324, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156325, + 156325, + null + ], + [ + "ident-token", + "color", + 156326, + 156330, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156331, + 156331, + null + ], + [ + "hash-token", + "#6c757d", + 156332, + 156338, + { + "value": "6c757d", + "type": "unrestricted" + } + ], + [ + "delim-token", + "!", + 156339, + 156339, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156340, + 156348, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156349, + 156349, + null + ], + [ + "delim-token", + ".", + 156350, + 156350, + { + "value": "." + } + ], + [ + "ident-token", + "text-black-50", + 156351, + 156363, + { + "value": "text-black-50" + } + ], + [ + "{-token", + "{", + 156364, + 156364, + null + ], + [ + "delim-token", + "-", + 156365, + 156365, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156366, + 156366, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156367, + 156381, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156382, + 156382, + null + ], + [ + "number-token", + "1", + 156383, + 156383, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156384, + 156384, + null + ], + [ + "ident-token", + "color", + 156385, + 156389, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156390, + 156390, + null + ], + [ + "function-token", + "rgba(", + 156391, + 156395, + { + "value": "rgba" + } + ], + [ + "number-token", + "0", + 156396, + 156396, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156397, + 156397, + null + ], + [ + "number-token", + "0", + 156398, + 156398, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156399, + 156399, + null + ], + [ + "number-token", + "0", + 156400, + 156400, + { + "value": 0, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156401, + 156401, + null + ], + [ + "number-token", + ".5", + 156402, + 156403, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 156404, + 156404, + null + ], + [ + "delim-token", + "!", + 156405, + 156405, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156406, + 156414, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156415, + 156415, + null + ], + [ + "delim-token", + ".", + 156416, + 156416, + { + "value": "." + } + ], + [ + "ident-token", + "text-white-50", + 156417, + 156429, + { + "value": "text-white-50" + } + ], + [ + "{-token", + "{", + 156430, + 156430, + null + ], + [ + "delim-token", + "-", + 156431, + 156431, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156432, + 156432, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156433, + 156447, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156448, + 156448, + null + ], + [ + "number-token", + "1", + 156449, + 156449, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156450, + 156450, + null + ], + [ + "ident-token", + "color", + 156451, + 156455, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156456, + 156456, + null + ], + [ + "function-token", + "rgba(", + 156457, + 156461, + { + "value": "rgba" + } + ], + [ + "number-token", + "255", + 156462, + 156464, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156465, + 156465, + null + ], + [ + "number-token", + "255", + 156466, + 156468, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156469, + 156469, + null + ], + [ + "number-token", + "255", + 156470, + 156472, + { + "value": 255, + "type": "integer" + } + ], + [ + "comma-token", + ",", + 156473, + 156473, + null + ], + [ + "number-token", + ".5", + 156474, + 156475, + { + "value": 0.5, + "type": "number" + } + ], + [ + ")-token", + ")", + 156476, + 156476, + null + ], + [ + "delim-token", + "!", + 156477, + 156477, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156478, + 156486, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156487, + 156487, + null + ], + [ + "delim-token", + ".", + 156488, + 156488, + { + "value": "." + } + ], + [ + "ident-token", + "text-reset", + 156489, + 156498, + { + "value": "text-reset" + } + ], + [ + "{-token", + "{", + 156499, + 156499, + null + ], + [ + "delim-token", + "-", + 156500, + 156500, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156501, + 156501, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156502, + 156516, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156517, + 156517, + null + ], + [ + "number-token", + "1", + 156518, + 156518, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156519, + 156519, + null + ], + [ + "ident-token", + "color", + 156520, + 156524, + { + "value": "color" + } + ], + [ + "colon-token", + ":", + 156525, + 156525, + null + ], + [ + "ident-token", + "inherit", + 156526, + 156532, + { + "value": "inherit" + } + ], + [ + "delim-token", + "!", + 156533, + 156533, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156534, + 156542, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156543, + 156543, + null + ], + [ + "delim-token", + ".", + 156544, + 156544, + { + "value": "." + } + ], + [ + "ident-token", + "text-opacity-25", + 156545, + 156559, + { + "value": "text-opacity-25" + } + ], + [ + "{-token", + "{", + 156560, + 156560, + null + ], + [ + "delim-token", + "-", + 156561, + 156561, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156562, + 156562, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156563, + 156577, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156578, + 156578, + null + ], + [ + "number-token", + "0.25", + 156579, + 156582, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 156583, + 156583, + null + ], + [ + "delim-token", + ".", + 156584, + 156584, + { + "value": "." + } + ], + [ + "ident-token", + "text-opacity-50", + 156585, + 156599, + { + "value": "text-opacity-50" + } + ], + [ + "{-token", + "{", + 156600, + 156600, + null + ], + [ + "delim-token", + "-", + 156601, + 156601, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156602, + 156602, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156603, + 156617, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156618, + 156618, + null + ], + [ + "number-token", + "0.5", + 156619, + 156621, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 156622, + 156622, + null + ], + [ + "delim-token", + ".", + 156623, + 156623, + { + "value": "." + } + ], + [ + "ident-token", + "text-opacity-75", + 156624, + 156638, + { + "value": "text-opacity-75" + } + ], + [ + "{-token", + "{", + 156639, + 156639, + null + ], + [ + "delim-token", + "-", + 156640, + 156640, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156641, + 156641, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156642, + 156656, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156657, + 156657, + null + ], + [ + "number-token", + "0.75", + 156658, + 156661, + { + "value": 0.75, + "type": "number" + } + ], + [ + "}-token", + "}", + 156662, + 156662, + null + ], + [ + "delim-token", + ".", + 156663, + 156663, + { + "value": "." + } + ], + [ + "ident-token", + "text-opacity-100", + 156664, + 156679, + { + "value": "text-opacity-100" + } + ], + [ + "{-token", + "{", + 156680, + 156680, + null + ], + [ + "delim-token", + "-", + 156681, + 156681, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156682, + 156682, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-text-opacity", + 156683, + 156697, + { + "value": "bs-text-opacity" + } + ], + [ + "colon-token", + ":", + 156698, + 156698, + null + ], + [ + "number-token", + "1", + 156699, + 156699, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 156700, + 156700, + null + ], + [ + "delim-token", + ".", + 156701, + 156701, + { + "value": "." + } + ], + [ + "ident-token", + "bg-primary", + 156702, + 156711, + { + "value": "bg-primary" + } + ], + [ + "{-token", + "{", + 156712, + 156712, + null + ], + [ + "delim-token", + "-", + 156713, + 156713, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156714, + 156714, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156715, + 156727, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 156728, + 156728, + null + ], + [ + "number-token", + "1", + 156729, + 156729, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156730, + 156730, + null + ], + [ + "ident-token", + "background-color", + 156731, + 156746, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 156747, + 156747, + null + ], + [ + "function-token", + "rgba(", + 156748, + 156752, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156753, + 156756, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156757, + 156757, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156758, + 156758, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-primary-rgb", + 156759, + 156772, + { + "value": "bs-primary-rgb" + } + ], + [ + ")-token", + ")", + 156773, + 156773, + null + ], + [ + "comma-token", + ",", + 156774, + 156774, + null + ], + [ + "function-token", + "var(", + 156775, + 156778, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156779, + 156779, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156780, + 156780, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156781, + 156793, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 156794, + 156794, + null + ], + [ + ")-token", + ")", + 156795, + 156795, + null + ], + [ + "delim-token", + "!", + 156796, + 156796, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156797, + 156805, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156806, + 156806, + null + ], + [ + "delim-token", + ".", + 156807, + 156807, + { + "value": "." + } + ], + [ + "ident-token", + "bg-secondary", + 156808, + 156819, + { + "value": "bg-secondary" + } + ], + [ + "{-token", + "{", + 156820, + 156820, + null + ], + [ + "delim-token", + "-", + 156821, + 156821, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156822, + 156822, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156823, + 156835, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 156836, + 156836, + null + ], + [ + "number-token", + "1", + 156837, + 156837, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156838, + 156838, + null + ], + [ + "ident-token", + "background-color", + 156839, + 156854, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 156855, + 156855, + null + ], + [ + "function-token", + "rgba(", + 156856, + 156860, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156861, + 156864, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156865, + 156865, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156866, + 156866, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-secondary-rgb", + 156867, + 156882, + { + "value": "bs-secondary-rgb" + } + ], + [ + ")-token", + ")", + 156883, + 156883, + null + ], + [ + "comma-token", + ",", + 156884, + 156884, + null + ], + [ + "function-token", + "var(", + 156885, + 156888, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156889, + 156889, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156890, + 156890, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156891, + 156903, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 156904, + 156904, + null + ], + [ + ")-token", + ")", + 156905, + 156905, + null + ], + [ + "delim-token", + "!", + 156906, + 156906, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 156907, + 156915, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 156916, + 156916, + null + ], + [ + "delim-token", + ".", + 156917, + 156917, + { + "value": "." + } + ], + [ + "ident-token", + "bg-success", + 156918, + 156927, + { + "value": "bg-success" + } + ], + [ + "{-token", + "{", + 156928, + 156928, + null + ], + [ + "delim-token", + "-", + 156929, + 156929, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156930, + 156930, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156931, + 156943, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 156944, + 156944, + null + ], + [ + "number-token", + "1", + 156945, + 156945, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 156946, + 156946, + null + ], + [ + "ident-token", + "background-color", + 156947, + 156962, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 156963, + 156963, + null + ], + [ + "function-token", + "rgba(", + 156964, + 156968, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 156969, + 156972, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156973, + 156973, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156974, + 156974, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-success-rgb", + 156975, + 156988, + { + "value": "bs-success-rgb" + } + ], + [ + ")-token", + ")", + 156989, + 156989, + null + ], + [ + "comma-token", + ",", + 156990, + 156990, + null + ], + [ + "function-token", + "var(", + 156991, + 156994, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 156995, + 156995, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 156996, + 156996, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 156997, + 157009, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157010, + 157010, + null + ], + [ + ")-token", + ")", + 157011, + 157011, + null + ], + [ + "delim-token", + "!", + 157012, + 157012, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157013, + 157021, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157022, + 157022, + null + ], + [ + "delim-token", + ".", + 157023, + 157023, + { + "value": "." + } + ], + [ + "ident-token", + "bg-info", + 157024, + 157030, + { + "value": "bg-info" + } + ], + [ + "{-token", + "{", + 157031, + 157031, + null + ], + [ + "delim-token", + "-", + 157032, + 157032, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157033, + 157033, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157034, + 157046, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157047, + 157047, + null + ], + [ + "number-token", + "1", + 157048, + 157048, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157049, + 157049, + null + ], + [ + "ident-token", + "background-color", + 157050, + 157065, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157066, + 157066, + null + ], + [ + "function-token", + "rgba(", + 157067, + 157071, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157072, + 157075, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157076, + 157076, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157077, + 157077, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-info-rgb", + 157078, + 157088, + { + "value": "bs-info-rgb" + } + ], + [ + ")-token", + ")", + 157089, + 157089, + null + ], + [ + "comma-token", + ",", + 157090, + 157090, + null + ], + [ + "function-token", + "var(", + 157091, + 157094, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157095, + 157095, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157096, + 157096, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157097, + 157109, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157110, + 157110, + null + ], + [ + ")-token", + ")", + 157111, + 157111, + null + ], + [ + "delim-token", + "!", + 157112, + 157112, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157113, + 157121, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157122, + 157122, + null + ], + [ + "delim-token", + ".", + 157123, + 157123, + { + "value": "." + } + ], + [ + "ident-token", + "bg-warning", + 157124, + 157133, + { + "value": "bg-warning" + } + ], + [ + "{-token", + "{", + 157134, + 157134, + null + ], + [ + "delim-token", + "-", + 157135, + 157135, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157136, + 157136, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157137, + 157149, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157150, + 157150, + null + ], + [ + "number-token", + "1", + 157151, + 157151, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157152, + 157152, + null + ], + [ + "ident-token", + "background-color", + 157153, + 157168, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157169, + 157169, + null + ], + [ + "function-token", + "rgba(", + 157170, + 157174, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157175, + 157178, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157179, + 157179, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157180, + 157180, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-warning-rgb", + 157181, + 157194, + { + "value": "bs-warning-rgb" + } + ], + [ + ")-token", + ")", + 157195, + 157195, + null + ], + [ + "comma-token", + ",", + 157196, + 157196, + null + ], + [ + "function-token", + "var(", + 157197, + 157200, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157201, + 157201, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157202, + 157202, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157203, + 157215, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157216, + 157216, + null + ], + [ + ")-token", + ")", + 157217, + 157217, + null + ], + [ + "delim-token", + "!", + 157218, + 157218, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157219, + 157227, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157228, + 157228, + null + ], + [ + "delim-token", + ".", + 157229, + 157229, + { + "value": "." + } + ], + [ + "ident-token", + "bg-danger", + 157230, + 157238, + { + "value": "bg-danger" + } + ], + [ + "{-token", + "{", + 157239, + 157239, + null + ], + [ + "delim-token", + "-", + 157240, + 157240, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157241, + 157241, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157242, + 157254, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157255, + 157255, + null + ], + [ + "number-token", + "1", + 157256, + 157256, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157257, + 157257, + null + ], + [ + "ident-token", + "background-color", + 157258, + 157273, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157274, + 157274, + null + ], + [ + "function-token", + "rgba(", + 157275, + 157279, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157280, + 157283, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157284, + 157284, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157285, + 157285, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-danger-rgb", + 157286, + 157298, + { + "value": "bs-danger-rgb" + } + ], + [ + ")-token", + ")", + 157299, + 157299, + null + ], + [ + "comma-token", + ",", + 157300, + 157300, + null + ], + [ + "function-token", + "var(", + 157301, + 157304, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157305, + 157305, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157306, + 157306, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157307, + 157319, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157320, + 157320, + null + ], + [ + ")-token", + ")", + 157321, + 157321, + null + ], + [ + "delim-token", + "!", + 157322, + 157322, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157323, + 157331, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157332, + 157332, + null + ], + [ + "delim-token", + ".", + 157333, + 157333, + { + "value": "." + } + ], + [ + "ident-token", + "bg-light", + 157334, + 157341, + { + "value": "bg-light" + } + ], + [ + "{-token", + "{", + 157342, + 157342, + null + ], + [ + "delim-token", + "-", + 157343, + 157343, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157344, + 157344, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157345, + 157357, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157358, + 157358, + null + ], + [ + "number-token", + "1", + 157359, + 157359, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157360, + 157360, + null + ], + [ + "ident-token", + "background-color", + 157361, + 157376, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157377, + 157377, + null + ], + [ + "function-token", + "rgba(", + 157378, + 157382, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157383, + 157386, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157387, + 157387, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157388, + 157388, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-light-rgb", + 157389, + 157400, + { + "value": "bs-light-rgb" + } + ], + [ + ")-token", + ")", + 157401, + 157401, + null + ], + [ + "comma-token", + ",", + 157402, + 157402, + null + ], + [ + "function-token", + "var(", + 157403, + 157406, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157407, + 157407, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157408, + 157408, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157409, + 157421, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157422, + 157422, + null + ], + [ + ")-token", + ")", + 157423, + 157423, + null + ], + [ + "delim-token", + "!", + 157424, + 157424, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157425, + 157433, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157434, + 157434, + null + ], + [ + "delim-token", + ".", + 157435, + 157435, + { + "value": "." + } + ], + [ + "ident-token", + "bg-dark", + 157436, + 157442, + { + "value": "bg-dark" + } + ], + [ + "{-token", + "{", + 157443, + 157443, + null + ], + [ + "delim-token", + "-", + 157444, + 157444, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157445, + 157445, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157446, + 157458, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157459, + 157459, + null + ], + [ + "number-token", + "1", + 157460, + 157460, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157461, + 157461, + null + ], + [ + "ident-token", + "background-color", + 157462, + 157477, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157478, + 157478, + null + ], + [ + "function-token", + "rgba(", + 157479, + 157483, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157484, + 157487, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157488, + 157488, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157489, + 157489, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-dark-rgb", + 157490, + 157500, + { + "value": "bs-dark-rgb" + } + ], + [ + ")-token", + ")", + 157501, + 157501, + null + ], + [ + "comma-token", + ",", + 157502, + 157502, + null + ], + [ + "function-token", + "var(", + 157503, + 157506, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157507, + 157507, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157508, + 157508, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157509, + 157521, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157522, + 157522, + null + ], + [ + ")-token", + ")", + 157523, + 157523, + null + ], + [ + "delim-token", + "!", + 157524, + 157524, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157525, + 157533, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157534, + 157534, + null + ], + [ + "delim-token", + ".", + 157535, + 157535, + { + "value": "." + } + ], + [ + "ident-token", + "bg-black", + 157536, + 157543, + { + "value": "bg-black" + } + ], + [ + "{-token", + "{", + 157544, + 157544, + null + ], + [ + "delim-token", + "-", + 157545, + 157545, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157546, + 157546, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157547, + 157559, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157560, + 157560, + null + ], + [ + "number-token", + "1", + 157561, + 157561, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157562, + 157562, + null + ], + [ + "ident-token", + "background-color", + 157563, + 157578, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157579, + 157579, + null + ], + [ + "function-token", + "rgba(", + 157580, + 157584, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157585, + 157588, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157589, + 157589, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157590, + 157590, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-black-rgb", + 157591, + 157602, + { + "value": "bs-black-rgb" + } + ], + [ + ")-token", + ")", + 157603, + 157603, + null + ], + [ + "comma-token", + ",", + 157604, + 157604, + null + ], + [ + "function-token", + "var(", + 157605, + 157608, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157609, + 157609, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157610, + 157610, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157611, + 157623, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157624, + 157624, + null + ], + [ + ")-token", + ")", + 157625, + 157625, + null + ], + [ + "delim-token", + "!", + 157626, + 157626, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157627, + 157635, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157636, + 157636, + null + ], + [ + "delim-token", + ".", + 157637, + 157637, + { + "value": "." + } + ], + [ + "ident-token", + "bg-white", + 157638, + 157645, + { + "value": "bg-white" + } + ], + [ + "{-token", + "{", + 157646, + 157646, + null + ], + [ + "delim-token", + "-", + 157647, + 157647, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157648, + 157648, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157649, + 157661, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157662, + 157662, + null + ], + [ + "number-token", + "1", + 157663, + 157663, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157664, + 157664, + null + ], + [ + "ident-token", + "background-color", + 157665, + 157680, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157681, + 157681, + null + ], + [ + "function-token", + "rgba(", + 157682, + 157686, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157687, + 157690, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157691, + 157691, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157692, + 157692, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-white-rgb", + 157693, + 157704, + { + "value": "bs-white-rgb" + } + ], + [ + ")-token", + ")", + 157705, + 157705, + null + ], + [ + "comma-token", + ",", + 157706, + 157706, + null + ], + [ + "function-token", + "var(", + 157707, + 157710, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157711, + 157711, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157712, + 157712, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157713, + 157725, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157726, + 157726, + null + ], + [ + ")-token", + ")", + 157727, + 157727, + null + ], + [ + "delim-token", + "!", + 157728, + 157728, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157729, + 157737, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157738, + 157738, + null + ], + [ + "delim-token", + ".", + 157739, + 157739, + { + "value": "." + } + ], + [ + "ident-token", + "bg-body", + 157740, + 157746, + { + "value": "bg-body" + } + ], + [ + "{-token", + "{", + 157747, + 157747, + null + ], + [ + "delim-token", + "-", + 157748, + 157748, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157749, + 157749, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157750, + 157762, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157763, + 157763, + null + ], + [ + "number-token", + "1", + 157764, + 157764, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157765, + 157765, + null + ], + [ + "ident-token", + "background-color", + 157766, + 157781, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157782, + 157782, + null + ], + [ + "function-token", + "rgba(", + 157783, + 157787, + { + "value": "rgba" + } + ], + [ + "function-token", + "var(", + 157788, + 157791, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157792, + 157792, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157793, + 157793, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-body-bg-rgb", + 157794, + 157807, + { + "value": "bs-body-bg-rgb" + } + ], + [ + ")-token", + ")", + 157808, + 157808, + null + ], + [ + "comma-token", + ",", + 157809, + 157809, + null + ], + [ + "function-token", + "var(", + 157810, + 157813, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 157814, + 157814, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157815, + 157815, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157816, + 157828, + { + "value": "bs-bg-opacity" + } + ], + [ + ")-token", + ")", + 157829, + 157829, + null + ], + [ + ")-token", + ")", + 157830, + 157830, + null + ], + [ + "delim-token", + "!", + 157831, + 157831, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157832, + 157840, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157841, + 157841, + null + ], + [ + "delim-token", + ".", + 157842, + 157842, + { + "value": "." + } + ], + [ + "ident-token", + "bg-transparent", + 157843, + 157856, + { + "value": "bg-transparent" + } + ], + [ + "{-token", + "{", + 157857, + 157857, + null + ], + [ + "delim-token", + "-", + 157858, + 157858, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157859, + 157859, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157860, + 157872, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157873, + 157873, + null + ], + [ + "number-token", + "1", + 157874, + 157874, + { + "value": 1, + "type": "integer" + } + ], + [ + "semicolon-token", + ";", + 157875, + 157875, + null + ], + [ + "ident-token", + "background-color", + 157876, + 157891, + { + "value": "background-color" + } + ], + [ + "colon-token", + ":", + 157892, + 157892, + null + ], + [ + "ident-token", + "transparent", + 157893, + 157903, + { + "value": "transparent" + } + ], + [ + "delim-token", + "!", + 157904, + 157904, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 157905, + 157913, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 157914, + 157914, + null + ], + [ + "delim-token", + ".", + 157915, + 157915, + { + "value": "." + } + ], + [ + "ident-token", + "bg-opacity-10", + 157916, + 157928, + { + "value": "bg-opacity-10" + } + ], + [ + "{-token", + "{", + 157929, + 157929, + null + ], + [ + "delim-token", + "-", + 157930, + 157930, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157931, + 157931, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157932, + 157944, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157945, + 157945, + null + ], + [ + "number-token", + "0.1", + 157946, + 157948, + { + "value": 0.1, + "type": "number" + } + ], + [ + "}-token", + "}", + 157949, + 157949, + null + ], + [ + "delim-token", + ".", + 157950, + 157950, + { + "value": "." + } + ], + [ + "ident-token", + "bg-opacity-25", + 157951, + 157963, + { + "value": "bg-opacity-25" + } + ], + [ + "{-token", + "{", + 157964, + 157964, + null + ], + [ + "delim-token", + "-", + 157965, + 157965, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 157966, + 157966, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 157967, + 157979, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 157980, + 157980, + null + ], + [ + "number-token", + "0.25", + 157981, + 157984, + { + "value": 0.25, + "type": "number" + } + ], + [ + "}-token", + "}", + 157985, + 157985, + null + ], + [ + "delim-token", + ".", + 157986, + 157986, + { + "value": "." + } + ], + [ + "ident-token", + "bg-opacity-50", + 157987, + 157999, + { + "value": "bg-opacity-50" + } + ], + [ + "{-token", + "{", + 158000, + 158000, + null + ], + [ + "delim-token", + "-", + 158001, + 158001, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158002, + 158002, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 158003, + 158015, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 158016, + 158016, + null + ], + [ + "number-token", + "0.5", + 158017, + 158019, + { + "value": 0.5, + "type": "number" + } + ], + [ + "}-token", + "}", + 158020, + 158020, + null + ], + [ + "delim-token", + ".", + 158021, + 158021, + { + "value": "." + } + ], + [ + "ident-token", + "bg-opacity-75", + 158022, + 158034, + { + "value": "bg-opacity-75" + } + ], + [ + "{-token", + "{", + 158035, + 158035, + null + ], + [ + "delim-token", + "-", + 158036, + 158036, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158037, + 158037, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 158038, + 158050, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 158051, + 158051, + null + ], + [ + "number-token", + "0.75", + 158052, + 158055, + { + "value": 0.75, + "type": "number" + } + ], + [ + "}-token", + "}", + 158056, + 158056, + null + ], + [ + "delim-token", + ".", + 158057, + 158057, + { + "value": "." + } + ], + [ + "ident-token", + "bg-opacity-100", + 158058, + 158071, + { + "value": "bg-opacity-100" + } + ], + [ + "{-token", + "{", + 158072, + 158072, + null + ], + [ + "delim-token", + "-", + 158073, + 158073, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158074, + 158074, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-bg-opacity", + 158075, + 158087, + { + "value": "bs-bg-opacity" + } + ], + [ + "colon-token", + ":", + 158088, + 158088, + null + ], + [ + "number-token", + "1", + 158089, + 158089, + { + "value": 1, + "type": "integer" + } + ], + [ + "}-token", + "}", + 158090, + 158090, + null + ], + [ + "delim-token", + ".", + 158091, + 158091, + { + "value": "." + } + ], + [ + "ident-token", + "bg-gradient", + 158092, + 158102, + { + "value": "bg-gradient" + } + ], + [ + "{-token", + "{", + 158103, + 158103, + null + ], + [ + "ident-token", + "background-image", + 158104, + 158119, + { + "value": "background-image" + } + ], + [ + "colon-token", + ":", + 158120, + 158120, + null + ], + [ + "function-token", + "var(", + 158121, + 158124, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158125, + 158125, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158126, + 158126, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-gradient", + 158127, + 158137, + { + "value": "bs-gradient" + } + ], + [ + ")-token", + ")", + 158138, + 158138, + null + ], + [ + "delim-token", + "!", + 158139, + 158139, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158140, + 158148, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158149, + 158149, + null + ], + [ + "delim-token", + ".", + 158150, + 158150, + { + "value": "." + } + ], + [ + "ident-token", + "user-select-all", + 158151, + 158165, + { + "value": "user-select-all" + } + ], + [ + "{-token", + "{", + 158166, + 158166, + null + ], + [ + "delim-token", + "-", + 158167, + 158167, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-user-select", + 158168, + 158185, + { + "value": "webkit-user-select" + } + ], + [ + "colon-token", + ":", + 158186, + 158186, + null + ], + [ + "ident-token", + "all", + 158187, + 158189, + { + "value": "all" + } + ], + [ + "delim-token", + "!", + 158190, + 158190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158191, + 158199, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158200, + 158200, + null + ], + [ + "delim-token", + "-", + 158201, + 158201, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-user-select", + 158202, + 158216, + { + "value": "moz-user-select" + } + ], + [ + "colon-token", + ":", + 158217, + 158217, + null + ], + [ + "ident-token", + "all", + 158218, + 158220, + { + "value": "all" + } + ], + [ + "delim-token", + "!", + 158221, + 158221, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158222, + 158230, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158231, + 158231, + null + ], + [ + "ident-token", + "user-select", + 158232, + 158242, + { + "value": "user-select" + } + ], + [ + "colon-token", + ":", + 158243, + 158243, + null + ], + [ + "ident-token", + "all", + 158244, + 158246, + { + "value": "all" + } + ], + [ + "delim-token", + "!", + 158247, + 158247, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158248, + 158256, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158257, + 158257, + null + ], + [ + "delim-token", + ".", + 158258, + 158258, + { + "value": "." + } + ], + [ + "ident-token", + "user-select-auto", + 158259, + 158274, + { + "value": "user-select-auto" + } + ], + [ + "{-token", + "{", + 158275, + 158275, + null + ], + [ + "delim-token", + "-", + 158276, + 158276, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-user-select", + 158277, + 158294, + { + "value": "webkit-user-select" + } + ], + [ + "colon-token", + ":", + 158295, + 158295, + null + ], + [ + "ident-token", + "auto", + 158296, + 158299, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 158300, + 158300, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158301, + 158309, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158310, + 158310, + null + ], + [ + "delim-token", + "-", + 158311, + 158311, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-user-select", + 158312, + 158326, + { + "value": "moz-user-select" + } + ], + [ + "colon-token", + ":", + 158327, + 158327, + null + ], + [ + "ident-token", + "auto", + 158328, + 158331, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 158332, + 158332, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158333, + 158341, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158342, + 158342, + null + ], + [ + "ident-token", + "user-select", + 158343, + 158353, + { + "value": "user-select" + } + ], + [ + "colon-token", + ":", + 158354, + 158354, + null + ], + [ + "ident-token", + "auto", + 158355, + 158358, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 158359, + 158359, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158360, + 158368, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158369, + 158369, + null + ], + [ + "delim-token", + ".", + 158370, + 158370, + { + "value": "." + } + ], + [ + "ident-token", + "user-select-none", + 158371, + 158386, + { + "value": "user-select-none" + } + ], + [ + "{-token", + "{", + 158387, + 158387, + null + ], + [ + "delim-token", + "-", + 158388, + 158388, + { + "value": "-" + } + ], + [ + "ident-token", + "webkit-user-select", + 158389, + 158406, + { + "value": "webkit-user-select" + } + ], + [ + "colon-token", + ":", + 158407, + 158407, + null + ], + [ + "ident-token", + "none", + 158408, + 158411, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 158412, + 158412, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158413, + 158421, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158422, + 158422, + null + ], + [ + "delim-token", + "-", + 158423, + 158423, + { + "value": "-" + } + ], + [ + "ident-token", + "moz-user-select", + 158424, + 158438, + { + "value": "moz-user-select" + } + ], + [ + "colon-token", + ":", + 158439, + 158439, + null + ], + [ + "ident-token", + "none", + 158440, + 158443, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 158444, + 158444, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158445, + 158453, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 158454, + 158454, + null + ], + [ + "ident-token", + "user-select", + 158455, + 158465, + { + "value": "user-select" + } + ], + [ + "colon-token", + ":", + 158466, + 158466, + null + ], + [ + "ident-token", + "none", + 158467, + 158470, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 158471, + 158471, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158472, + 158480, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158481, + 158481, + null + ], + [ + "delim-token", + ".", + 158482, + 158482, + { + "value": "." + } + ], + [ + "ident-token", + "pe-none", + 158483, + 158489, + { + "value": "pe-none" + } + ], + [ + "{-token", + "{", + 158490, + 158490, + null + ], + [ + "ident-token", + "pointer-events", + 158491, + 158504, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 158505, + 158505, + null + ], + [ + "ident-token", + "none", + 158506, + 158509, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 158510, + 158510, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158511, + 158519, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158520, + 158520, + null + ], + [ + "delim-token", + ".", + 158521, + 158521, + { + "value": "." + } + ], + [ + "ident-token", + "pe-auto", + 158522, + 158528, + { + "value": "pe-auto" + } + ], + [ + "{-token", + "{", + 158529, + 158529, + null + ], + [ + "ident-token", + "pointer-events", + 158530, + 158543, + { + "value": "pointer-events" + } + ], + [ + "colon-token", + ":", + 158544, + 158544, + null + ], + [ + "ident-token", + "auto", + 158545, + 158548, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 158549, + 158549, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158550, + 158558, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158559, + 158559, + null + ], + [ + "delim-token", + ".", + 158560, + 158560, + { + "value": "." + } + ], + [ + "ident-token", + "rounded", + 158561, + 158567, + { + "value": "rounded" + } + ], + [ + "{-token", + "{", + 158568, + 158568, + null + ], + [ + "ident-token", + "border-radius", + 158569, + 158581, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158582, + 158582, + null + ], + [ + "function-token", + "var(", + 158583, + 158586, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158587, + 158587, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158588, + 158588, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 158589, + 158604, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 158605, + 158605, + null + ], + [ + "delim-token", + "!", + 158606, + 158606, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158607, + 158615, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158616, + 158616, + null + ], + [ + "delim-token", + ".", + 158617, + 158617, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-0", + 158618, + 158626, + { + "value": "rounded-0" + } + ], + [ + "{-token", + "{", + 158627, + 158627, + null + ], + [ + "ident-token", + "border-radius", + 158628, + 158640, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158641, + 158641, + null + ], + [ + "number-token", + "0", + 158642, + 158642, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 158643, + 158643, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158644, + 158652, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158653, + 158653, + null + ], + [ + "delim-token", + ".", + 158654, + 158654, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-1", + 158655, + 158663, + { + "value": "rounded-1" + } + ], + [ + "{-token", + "{", + 158664, + 158664, + null + ], + [ + "ident-token", + "border-radius", + 158665, + 158677, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158678, + 158678, + null + ], + [ + "function-token", + "var(", + 158679, + 158682, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158683, + 158683, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158684, + 158684, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-sm", + 158685, + 158703, + { + "value": "bs-border-radius-sm" + } + ], + [ + ")-token", + ")", + 158704, + 158704, + null + ], + [ + "delim-token", + "!", + 158705, + 158705, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158706, + 158714, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158715, + 158715, + null + ], + [ + "delim-token", + ".", + 158716, + 158716, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-2", + 158717, + 158725, + { + "value": "rounded-2" + } + ], + [ + "{-token", + "{", + 158726, + 158726, + null + ], + [ + "ident-token", + "border-radius", + 158727, + 158739, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158740, + 158740, + null + ], + [ + "function-token", + "var(", + 158741, + 158744, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158745, + 158745, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158746, + 158746, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 158747, + 158762, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 158763, + 158763, + null + ], + [ + "delim-token", + "!", + 158764, + 158764, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158765, + 158773, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158774, + 158774, + null + ], + [ + "delim-token", + ".", + 158775, + 158775, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-3", + 158776, + 158784, + { + "value": "rounded-3" + } + ], + [ + "{-token", + "{", + 158785, + 158785, + null + ], + [ + "ident-token", + "border-radius", + 158786, + 158798, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158799, + 158799, + null + ], + [ + "function-token", + "var(", + 158800, + 158803, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158804, + 158804, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158805, + 158805, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-lg", + 158806, + 158824, + { + "value": "bs-border-radius-lg" + } + ], + [ + ")-token", + ")", + 158825, + 158825, + null + ], + [ + "delim-token", + "!", + 158826, + 158826, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158827, + 158835, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158836, + 158836, + null + ], + [ + "delim-token", + ".", + 158837, + 158837, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-4", + 158838, + 158846, + { + "value": "rounded-4" + } + ], + [ + "{-token", + "{", + 158847, + 158847, + null + ], + [ + "ident-token", + "border-radius", + 158848, + 158860, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158861, + 158861, + null + ], + [ + "function-token", + "var(", + 158862, + 158865, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158866, + 158866, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158867, + 158867, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-xl", + 158868, + 158886, + { + "value": "bs-border-radius-xl" + } + ], + [ + ")-token", + ")", + 158887, + 158887, + null + ], + [ + "delim-token", + "!", + 158888, + 158888, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158889, + 158897, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158898, + 158898, + null + ], + [ + "delim-token", + ".", + 158899, + 158899, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-5", + 158900, + 158908, + { + "value": "rounded-5" + } + ], + [ + "{-token", + "{", + 158909, + 158909, + null + ], + [ + "ident-token", + "border-radius", + 158910, + 158922, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158923, + 158923, + null + ], + [ + "function-token", + "var(", + 158924, + 158927, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 158928, + 158928, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 158929, + 158929, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-2xl", + 158930, + 158949, + { + "value": "bs-border-radius-2xl" + } + ], + [ + ")-token", + ")", + 158950, + 158950, + null + ], + [ + "delim-token", + "!", + 158951, + 158951, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158952, + 158960, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 158961, + 158961, + null + ], + [ + "delim-token", + ".", + 158962, + 158962, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-circle", + 158963, + 158976, + { + "value": "rounded-circle" + } + ], + [ + "{-token", + "{", + 158977, + 158977, + null + ], + [ + "ident-token", + "border-radius", + 158978, + 158990, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 158991, + 158991, + null + ], + [ + "percentage-token", + "50%", + 158992, + 158994, + { + "value": 50 + } + ], + [ + "delim-token", + "!", + 158995, + 158995, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 158996, + 159004, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159005, + 159005, + null + ], + [ + "delim-token", + ".", + 159006, + 159006, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-pill", + 159007, + 159018, + { + "value": "rounded-pill" + } + ], + [ + "{-token", + "{", + 159019, + 159019, + null + ], + [ + "ident-token", + "border-radius", + 159020, + 159032, + { + "value": "border-radius" + } + ], + [ + "colon-token", + ":", + 159033, + 159033, + null + ], + [ + "function-token", + "var(", + 159034, + 159037, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159038, + 159038, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159039, + 159039, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius-pill", + 159040, + 159060, + { + "value": "bs-border-radius-pill" + } + ], + [ + ")-token", + ")", + 159061, + 159061, + null + ], + [ + "delim-token", + "!", + 159062, + 159062, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159063, + 159071, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159072, + 159072, + null + ], + [ + "delim-token", + ".", + 159073, + 159073, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-top", + 159074, + 159084, + { + "value": "rounded-top" + } + ], + [ + "{-token", + "{", + 159085, + 159085, + null + ], + [ + "ident-token", + "border-top-left-radius", + 159086, + 159107, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 159108, + 159108, + null + ], + [ + "function-token", + "var(", + 159109, + 159112, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159113, + 159113, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159114, + 159114, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159115, + 159130, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159131, + 159131, + null + ], + [ + "delim-token", + "!", + 159132, + 159132, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159133, + 159141, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 159142, + 159142, + null + ], + [ + "ident-token", + "border-top-right-radius", + 159143, + 159165, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 159166, + 159166, + null + ], + [ + "function-token", + "var(", + 159167, + 159170, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159171, + 159171, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159172, + 159172, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159173, + 159188, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159189, + 159189, + null + ], + [ + "delim-token", + "!", + 159190, + 159190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159191, + 159199, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159200, + 159200, + null + ], + [ + "delim-token", + ".", + 159201, + 159201, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-end", + 159202, + 159212, + { + "value": "rounded-end" + } + ], + [ + "{-token", + "{", + 159213, + 159213, + null + ], + [ + "ident-token", + "border-top-right-radius", + 159214, + 159236, + { + "value": "border-top-right-radius" + } + ], + [ + "colon-token", + ":", + 159237, + 159237, + null + ], + [ + "function-token", + "var(", + 159238, + 159241, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159242, + 159242, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159243, + 159243, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159244, + 159259, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159260, + 159260, + null + ], + [ + "delim-token", + "!", + 159261, + 159261, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159262, + 159270, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 159271, + 159271, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 159272, + 159297, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 159298, + 159298, + null + ], + [ + "function-token", + "var(", + 159299, + 159302, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159303, + 159303, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159304, + 159304, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159305, + 159320, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159321, + 159321, + null + ], + [ + "delim-token", + "!", + 159322, + 159322, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159323, + 159331, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159332, + 159332, + null + ], + [ + "delim-token", + ".", + 159333, + 159333, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-bottom", + 159334, + 159347, + { + "value": "rounded-bottom" + } + ], + [ + "{-token", + "{", + 159348, + 159348, + null + ], + [ + "ident-token", + "border-bottom-right-radius", + 159349, + 159374, + { + "value": "border-bottom-right-radius" + } + ], + [ + "colon-token", + ":", + 159375, + 159375, + null + ], + [ + "function-token", + "var(", + 159376, + 159379, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159380, + 159380, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159381, + 159381, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159382, + 159397, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159398, + 159398, + null + ], + [ + "delim-token", + "!", + 159399, + 159399, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159400, + 159408, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 159409, + 159409, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 159410, + 159434, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 159435, + 159435, + null + ], + [ + "function-token", + "var(", + 159436, + 159439, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159440, + 159440, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159441, + 159441, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159442, + 159457, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159458, + 159458, + null + ], + [ + "delim-token", + "!", + 159459, + 159459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159460, + 159468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159469, + 159469, + null + ], + [ + "delim-token", + ".", + 159470, + 159470, + { + "value": "." + } + ], + [ + "ident-token", + "rounded-start", + 159471, + 159483, + { + "value": "rounded-start" + } + ], + [ + "{-token", + "{", + 159484, + 159484, + null + ], + [ + "ident-token", + "border-bottom-left-radius", + 159485, + 159509, + { + "value": "border-bottom-left-radius" + } + ], + [ + "colon-token", + ":", + 159510, + 159510, + null + ], + [ + "function-token", + "var(", + 159511, + 159514, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159515, + 159515, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159516, + 159516, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159517, + 159532, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159533, + 159533, + null + ], + [ + "delim-token", + "!", + 159534, + 159534, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159535, + 159543, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 159544, + 159544, + null + ], + [ + "ident-token", + "border-top-left-radius", + 159545, + 159566, + { + "value": "border-top-left-radius" + } + ], + [ + "colon-token", + ":", + 159567, + 159567, + null + ], + [ + "function-token", + "var(", + 159568, + 159571, + { + "value": "var" + } + ], + [ + "delim-token", + "-", + 159572, + 159572, + { + "value": "-" + } + ], + [ + "delim-token", + "-", + 159573, + 159573, + { + "value": "-" + } + ], + [ + "ident-token", + "bs-border-radius", + 159574, + 159589, + { + "value": "bs-border-radius" + } + ], + [ + ")-token", + ")", + 159590, + 159590, + null + ], + [ + "delim-token", + "!", + 159591, + 159591, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159592, + 159600, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159601, + 159601, + null + ], + [ + "delim-token", + ".", + 159602, + 159602, + { + "value": "." + } + ], + [ + "ident-token", + "visible", + 159603, + 159609, + { + "value": "visible" + } + ], + [ + "{-token", + "{", + 159610, + 159610, + null + ], + [ + "ident-token", + "visibility", + 159611, + 159620, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 159621, + 159621, + null + ], + [ + "ident-token", + "visible", + 159622, + 159628, + { + "value": "visible" + } + ], + [ + "delim-token", + "!", + 159629, + 159629, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159630, + 159638, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159639, + 159639, + null + ], + [ + "delim-token", + ".", + 159640, + 159640, + { + "value": "." + } + ], + [ + "ident-token", + "invisible", + 159641, + 159649, + { + "value": "invisible" + } + ], + [ + "{-token", + "{", + 159650, + 159650, + null + ], + [ + "ident-token", + "visibility", + 159651, + 159660, + { + "value": "visibility" + } + ], + [ + "colon-token", + ":", + 159661, + 159661, + null + ], + [ + "ident-token", + "hidden", + 159662, + 159667, + { + "value": "hidden" + } + ], + [ + "delim-token", + "!", + 159668, + 159668, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159669, + 159677, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159678, + 159678, + null + ], + [ + "at-keyword-token", + "@media", + 159679, + 159684, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 159685, + 159685, + null + ], + [ + "(-token", + "(", + 159686, + 159686, + null + ], + [ + "ident-token", + "min-width", + 159687, + 159695, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 159696, + 159696, + null + ], + [ + "dimension-token", + "576px", + 159697, + 159701, + { + "value": 576, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 159702, + 159702, + null + ], + [ + "{-token", + "{", + 159703, + 159703, + null + ], + [ + "delim-token", + ".", + 159704, + 159704, + { + "value": "." + } + ], + [ + "ident-token", + "float-sm-start", + 159705, + 159718, + { + "value": "float-sm-start" + } + ], + [ + "{-token", + "{", + 159719, + 159719, + null + ], + [ + "ident-token", + "float", + 159720, + 159724, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 159725, + 159725, + null + ], + [ + "ident-token", + "left", + 159726, + 159729, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 159730, + 159730, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159731, + 159739, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159740, + 159740, + null + ], + [ + "delim-token", + ".", + 159741, + 159741, + { + "value": "." + } + ], + [ + "ident-token", + "float-sm-end", + 159742, + 159753, + { + "value": "float-sm-end" + } + ], + [ + "{-token", + "{", + 159754, + 159754, + null + ], + [ + "ident-token", + "float", + 159755, + 159759, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 159760, + 159760, + null + ], + [ + "ident-token", + "right", + 159761, + 159765, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 159766, + 159766, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159767, + 159775, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159776, + 159776, + null + ], + [ + "delim-token", + ".", + 159777, + 159777, + { + "value": "." + } + ], + [ + "ident-token", + "float-sm-none", + 159778, + 159790, + { + "value": "float-sm-none" + } + ], + [ + "{-token", + "{", + 159791, + 159791, + null + ], + [ + "ident-token", + "float", + 159792, + 159796, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 159797, + 159797, + null + ], + [ + "ident-token", + "none", + 159798, + 159801, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 159802, + 159802, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159803, + 159811, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159812, + 159812, + null + ], + [ + "delim-token", + ".", + 159813, + 159813, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-inline", + 159814, + 159824, + { + "value": "d-sm-inline" + } + ], + [ + "{-token", + "{", + 159825, + 159825, + null + ], + [ + "ident-token", + "display", + 159826, + 159832, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 159833, + 159833, + null + ], + [ + "ident-token", + "inline", + 159834, + 159839, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 159840, + 159840, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159841, + 159849, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159850, + 159850, + null + ], + [ + "delim-token", + ".", + 159851, + 159851, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-inline-block", + 159852, + 159868, + { + "value": "d-sm-inline-block" + } + ], + [ + "{-token", + "{", + 159869, + 159869, + null + ], + [ + "ident-token", + "display", + 159870, + 159876, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 159877, + 159877, + null + ], + [ + "ident-token", + "inline-block", + 159878, + 159889, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 159890, + 159890, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159891, + 159899, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159900, + 159900, + null + ], + [ + "delim-token", + ".", + 159901, + 159901, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-block", + 159902, + 159911, + { + "value": "d-sm-block" + } + ], + [ + "{-token", + "{", + 159912, + 159912, + null + ], + [ + "ident-token", + "display", + 159913, + 159919, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 159920, + 159920, + null + ], + [ + "ident-token", + "block", + 159921, + 159925, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 159926, + 159926, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159927, + 159935, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159936, + 159936, + null + ], + [ + "delim-token", + ".", + 159937, + 159937, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-grid", + 159938, + 159946, + { + "value": "d-sm-grid" + } + ], + [ + "{-token", + "{", + 159947, + 159947, + null + ], + [ + "ident-token", + "display", + 159948, + 159954, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 159955, + 159955, + null + ], + [ + "ident-token", + "grid", + 159956, + 159959, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 159960, + 159960, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159961, + 159969, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 159970, + 159970, + null + ], + [ + "delim-token", + ".", + 159971, + 159971, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-table", + 159972, + 159981, + { + "value": "d-sm-table" + } + ], + [ + "{-token", + "{", + 159982, + 159982, + null + ], + [ + "ident-token", + "display", + 159983, + 159989, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 159990, + 159990, + null + ], + [ + "ident-token", + "table", + 159991, + 159995, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 159996, + 159996, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 159997, + 160005, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160006, + 160006, + null + ], + [ + "delim-token", + ".", + 160007, + 160007, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-table-row", + 160008, + 160021, + { + "value": "d-sm-table-row" + } + ], + [ + "{-token", + "{", + 160022, + 160022, + null + ], + [ + "ident-token", + "display", + 160023, + 160029, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 160030, + 160030, + null + ], + [ + "ident-token", + "table-row", + 160031, + 160039, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 160040, + 160040, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160041, + 160049, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160050, + 160050, + null + ], + [ + "delim-token", + ".", + 160051, + 160051, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-table-cell", + 160052, + 160066, + { + "value": "d-sm-table-cell" + } + ], + [ + "{-token", + "{", + 160067, + 160067, + null + ], + [ + "ident-token", + "display", + 160068, + 160074, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 160075, + 160075, + null + ], + [ + "ident-token", + "table-cell", + 160076, + 160085, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 160086, + 160086, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160087, + 160095, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160096, + 160096, + null + ], + [ + "delim-token", + ".", + 160097, + 160097, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-flex", + 160098, + 160106, + { + "value": "d-sm-flex" + } + ], + [ + "{-token", + "{", + 160107, + 160107, + null + ], + [ + "ident-token", + "display", + 160108, + 160114, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 160115, + 160115, + null + ], + [ + "ident-token", + "flex", + 160116, + 160119, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 160120, + 160120, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160121, + 160129, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160130, + 160130, + null + ], + [ + "delim-token", + ".", + 160131, + 160131, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-inline-flex", + 160132, + 160147, + { + "value": "d-sm-inline-flex" + } + ], + [ + "{-token", + "{", + 160148, + 160148, + null + ], + [ + "ident-token", + "display", + 160149, + 160155, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 160156, + 160156, + null + ], + [ + "ident-token", + "inline-flex", + 160157, + 160167, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 160168, + 160168, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160169, + 160177, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160178, + 160178, + null + ], + [ + "delim-token", + ".", + 160179, + 160179, + { + "value": "." + } + ], + [ + "ident-token", + "d-sm-none", + 160180, + 160188, + { + "value": "d-sm-none" + } + ], + [ + "{-token", + "{", + 160189, + 160189, + null + ], + [ + "ident-token", + "display", + 160190, + 160196, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 160197, + 160197, + null + ], + [ + "ident-token", + "none", + 160198, + 160201, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 160202, + 160202, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160203, + 160211, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160212, + 160212, + null + ], + [ + "delim-token", + ".", + 160213, + 160213, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-fill", + 160214, + 160225, + { + "value": "flex-sm-fill" + } + ], + [ + "{-token", + "{", + 160226, + 160226, + null + ], + [ + "ident-token", + "flex", + 160227, + 160230, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 160231, + 160231, + null + ], + [ + "number-token", + "1", + 160232, + 160232, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 160233, + 160233, + null + ], + [ + "number-token", + "1", + 160234, + 160234, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 160235, + 160235, + null + ], + [ + "ident-token", + "auto", + 160236, + 160239, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 160240, + 160240, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160241, + 160249, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160250, + 160250, + null + ], + [ + "delim-token", + ".", + 160251, + 160251, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-row", + 160252, + 160262, + { + "value": "flex-sm-row" + } + ], + [ + "{-token", + "{", + 160263, + 160263, + null + ], + [ + "ident-token", + "flex-direction", + 160264, + 160277, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 160278, + 160278, + null + ], + [ + "ident-token", + "row", + 160279, + 160281, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 160282, + 160282, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160283, + 160291, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160292, + 160292, + null + ], + [ + "delim-token", + ".", + 160293, + 160293, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-column", + 160294, + 160307, + { + "value": "flex-sm-column" + } + ], + [ + "{-token", + "{", + 160308, + 160308, + null + ], + [ + "ident-token", + "flex-direction", + 160309, + 160322, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 160323, + 160323, + null + ], + [ + "ident-token", + "column", + 160324, + 160329, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 160330, + 160330, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160331, + 160339, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160340, + 160340, + null + ], + [ + "delim-token", + ".", + 160341, + 160341, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-row-reverse", + 160342, + 160360, + { + "value": "flex-sm-row-reverse" + } + ], + [ + "{-token", + "{", + 160361, + 160361, + null + ], + [ + "ident-token", + "flex-direction", + 160362, + 160375, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 160376, + 160376, + null + ], + [ + "ident-token", + "row-reverse", + 160377, + 160387, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 160388, + 160388, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160389, + 160397, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160398, + 160398, + null + ], + [ + "delim-token", + ".", + 160399, + 160399, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-column-reverse", + 160400, + 160421, + { + "value": "flex-sm-column-reverse" + } + ], + [ + "{-token", + "{", + 160422, + 160422, + null + ], + [ + "ident-token", + "flex-direction", + 160423, + 160436, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 160437, + 160437, + null + ], + [ + "ident-token", + "column-reverse", + 160438, + 160451, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 160452, + 160452, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160453, + 160461, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160462, + 160462, + null + ], + [ + "delim-token", + ".", + 160463, + 160463, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-grow-0", + 160464, + 160477, + { + "value": "flex-sm-grow-0" + } + ], + [ + "{-token", + "{", + 160478, + 160478, + null + ], + [ + "ident-token", + "flex-grow", + 160479, + 160487, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 160488, + 160488, + null + ], + [ + "number-token", + "0", + 160489, + 160489, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 160490, + 160490, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160491, + 160499, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160500, + 160500, + null + ], + [ + "delim-token", + ".", + 160501, + 160501, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-grow-1", + 160502, + 160515, + { + "value": "flex-sm-grow-1" + } + ], + [ + "{-token", + "{", + 160516, + 160516, + null + ], + [ + "ident-token", + "flex-grow", + 160517, + 160525, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 160526, + 160526, + null + ], + [ + "number-token", + "1", + 160527, + 160527, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 160528, + 160528, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160529, + 160537, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160538, + 160538, + null + ], + [ + "delim-token", + ".", + 160539, + 160539, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-shrink-0", + 160540, + 160555, + { + "value": "flex-sm-shrink-0" + } + ], + [ + "{-token", + "{", + 160556, + 160556, + null + ], + [ + "ident-token", + "flex-shrink", + 160557, + 160567, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 160568, + 160568, + null + ], + [ + "number-token", + "0", + 160569, + 160569, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 160570, + 160570, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160571, + 160579, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160580, + 160580, + null + ], + [ + "delim-token", + ".", + 160581, + 160581, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-shrink-1", + 160582, + 160597, + { + "value": "flex-sm-shrink-1" + } + ], + [ + "{-token", + "{", + 160598, + 160598, + null + ], + [ + "ident-token", + "flex-shrink", + 160599, + 160609, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 160610, + 160610, + null + ], + [ + "number-token", + "1", + 160611, + 160611, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 160612, + 160612, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160613, + 160621, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160622, + 160622, + null + ], + [ + "delim-token", + ".", + 160623, + 160623, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-wrap", + 160624, + 160635, + { + "value": "flex-sm-wrap" + } + ], + [ + "{-token", + "{", + 160636, + 160636, + null + ], + [ + "ident-token", + "flex-wrap", + 160637, + 160645, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 160646, + 160646, + null + ], + [ + "ident-token", + "wrap", + 160647, + 160650, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 160651, + 160651, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160652, + 160660, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160661, + 160661, + null + ], + [ + "delim-token", + ".", + 160662, + 160662, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-nowrap", + 160663, + 160676, + { + "value": "flex-sm-nowrap" + } + ], + [ + "{-token", + "{", + 160677, + 160677, + null + ], + [ + "ident-token", + "flex-wrap", + 160678, + 160686, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 160687, + 160687, + null + ], + [ + "ident-token", + "nowrap", + 160688, + 160693, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 160694, + 160694, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160695, + 160703, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160704, + 160704, + null + ], + [ + "delim-token", + ".", + 160705, + 160705, + { + "value": "." + } + ], + [ + "ident-token", + "flex-sm-wrap-reverse", + 160706, + 160725, + { + "value": "flex-sm-wrap-reverse" + } + ], + [ + "{-token", + "{", + 160726, + 160726, + null + ], + [ + "ident-token", + "flex-wrap", + 160727, + 160735, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 160736, + 160736, + null + ], + [ + "ident-token", + "wrap-reverse", + 160737, + 160748, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 160749, + 160749, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160750, + 160758, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160759, + 160759, + null + ], + [ + "delim-token", + ".", + 160760, + 160760, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-start", + 160761, + 160784, + { + "value": "justify-content-sm-start" + } + ], + [ + "{-token", + "{", + 160785, + 160785, + null + ], + [ + "ident-token", + "justify-content", + 160786, + 160800, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 160801, + 160801, + null + ], + [ + "ident-token", + "flex-start", + 160802, + 160811, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 160812, + 160812, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160813, + 160821, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160822, + 160822, + null + ], + [ + "delim-token", + ".", + 160823, + 160823, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-end", + 160824, + 160845, + { + "value": "justify-content-sm-end" + } + ], + [ + "{-token", + "{", + 160846, + 160846, + null + ], + [ + "ident-token", + "justify-content", + 160847, + 160861, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 160862, + 160862, + null + ], + [ + "ident-token", + "flex-end", + 160863, + 160870, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 160871, + 160871, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160872, + 160880, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160881, + 160881, + null + ], + [ + "delim-token", + ".", + 160882, + 160882, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-center", + 160883, + 160907, + { + "value": "justify-content-sm-center" + } + ], + [ + "{-token", + "{", + 160908, + 160908, + null + ], + [ + "ident-token", + "justify-content", + 160909, + 160923, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 160924, + 160924, + null + ], + [ + "ident-token", + "center", + 160925, + 160930, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 160931, + 160931, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 160932, + 160940, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 160941, + 160941, + null + ], + [ + "delim-token", + ".", + 160942, + 160942, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-between", + 160943, + 160968, + { + "value": "justify-content-sm-between" + } + ], + [ + "{-token", + "{", + 160969, + 160969, + null + ], + [ + "ident-token", + "justify-content", + 160970, + 160984, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 160985, + 160985, + null + ], + [ + "ident-token", + "space-between", + 160986, + 160998, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 160999, + 160999, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161000, + 161008, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161009, + 161009, + null + ], + [ + "delim-token", + ".", + 161010, + 161010, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-around", + 161011, + 161035, + { + "value": "justify-content-sm-around" + } + ], + [ + "{-token", + "{", + 161036, + 161036, + null + ], + [ + "ident-token", + "justify-content", + 161037, + 161051, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 161052, + 161052, + null + ], + [ + "ident-token", + "space-around", + 161053, + 161064, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 161065, + 161065, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161066, + 161074, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161075, + 161075, + null + ], + [ + "delim-token", + ".", + 161076, + 161076, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-sm-evenly", + 161077, + 161101, + { + "value": "justify-content-sm-evenly" + } + ], + [ + "{-token", + "{", + 161102, + 161102, + null + ], + [ + "ident-token", + "justify-content", + 161103, + 161117, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 161118, + 161118, + null + ], + [ + "ident-token", + "space-evenly", + 161119, + 161130, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 161131, + 161131, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161132, + 161140, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161141, + 161141, + null + ], + [ + "delim-token", + ".", + 161142, + 161142, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-sm-start", + 161143, + 161162, + { + "value": "align-items-sm-start" + } + ], + [ + "{-token", + "{", + 161163, + 161163, + null + ], + [ + "ident-token", + "align-items", + 161164, + 161174, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 161175, + 161175, + null + ], + [ + "ident-token", + "flex-start", + 161176, + 161185, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 161186, + 161186, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161187, + 161195, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161196, + 161196, + null + ], + [ + "delim-token", + ".", + 161197, + 161197, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-sm-end", + 161198, + 161215, + { + "value": "align-items-sm-end" + } + ], + [ + "{-token", + "{", + 161216, + 161216, + null + ], + [ + "ident-token", + "align-items", + 161217, + 161227, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 161228, + 161228, + null + ], + [ + "ident-token", + "flex-end", + 161229, + 161236, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 161237, + 161237, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161238, + 161246, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161247, + 161247, + null + ], + [ + "delim-token", + ".", + 161248, + 161248, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-sm-center", + 161249, + 161269, + { + "value": "align-items-sm-center" + } + ], + [ + "{-token", + "{", + 161270, + 161270, + null + ], + [ + "ident-token", + "align-items", + 161271, + 161281, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 161282, + 161282, + null + ], + [ + "ident-token", + "center", + 161283, + 161288, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 161289, + 161289, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161290, + 161298, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161299, + 161299, + null + ], + [ + "delim-token", + ".", + 161300, + 161300, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-sm-baseline", + 161301, + 161323, + { + "value": "align-items-sm-baseline" + } + ], + [ + "{-token", + "{", + 161324, + 161324, + null + ], + [ + "ident-token", + "align-items", + 161325, + 161335, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 161336, + 161336, + null + ], + [ + "ident-token", + "baseline", + 161337, + 161344, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 161345, + 161345, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161346, + 161354, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161355, + 161355, + null + ], + [ + "delim-token", + ".", + 161356, + 161356, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-sm-stretch", + 161357, + 161378, + { + "value": "align-items-sm-stretch" + } + ], + [ + "{-token", + "{", + 161379, + 161379, + null + ], + [ + "ident-token", + "align-items", + 161380, + 161390, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 161391, + 161391, + null + ], + [ + "ident-token", + "stretch", + 161392, + 161398, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 161399, + 161399, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161400, + 161408, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161409, + 161409, + null + ], + [ + "delim-token", + ".", + 161410, + 161410, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-start", + 161411, + 161432, + { + "value": "align-content-sm-start" + } + ], + [ + "{-token", + "{", + 161433, + 161433, + null + ], + [ + "ident-token", + "align-content", + 161434, + 161446, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161447, + 161447, + null + ], + [ + "ident-token", + "flex-start", + 161448, + 161457, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 161458, + 161458, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161459, + 161467, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161468, + 161468, + null + ], + [ + "delim-token", + ".", + 161469, + 161469, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-end", + 161470, + 161489, + { + "value": "align-content-sm-end" + } + ], + [ + "{-token", + "{", + 161490, + 161490, + null + ], + [ + "ident-token", + "align-content", + 161491, + 161503, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161504, + 161504, + null + ], + [ + "ident-token", + "flex-end", + 161505, + 161512, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 161513, + 161513, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161514, + 161522, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161523, + 161523, + null + ], + [ + "delim-token", + ".", + 161524, + 161524, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-center", + 161525, + 161547, + { + "value": "align-content-sm-center" + } + ], + [ + "{-token", + "{", + 161548, + 161548, + null + ], + [ + "ident-token", + "align-content", + 161549, + 161561, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161562, + 161562, + null + ], + [ + "ident-token", + "center", + 161563, + 161568, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 161569, + 161569, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161570, + 161578, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161579, + 161579, + null + ], + [ + "delim-token", + ".", + 161580, + 161580, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-between", + 161581, + 161604, + { + "value": "align-content-sm-between" + } + ], + [ + "{-token", + "{", + 161605, + 161605, + null + ], + [ + "ident-token", + "align-content", + 161606, + 161618, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161619, + 161619, + null + ], + [ + "ident-token", + "space-between", + 161620, + 161632, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 161633, + 161633, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161634, + 161642, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161643, + 161643, + null + ], + [ + "delim-token", + ".", + 161644, + 161644, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-around", + 161645, + 161667, + { + "value": "align-content-sm-around" + } + ], + [ + "{-token", + "{", + 161668, + 161668, + null + ], + [ + "ident-token", + "align-content", + 161669, + 161681, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161682, + 161682, + null + ], + [ + "ident-token", + "space-around", + 161683, + 161694, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 161695, + 161695, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161696, + 161704, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161705, + 161705, + null + ], + [ + "delim-token", + ".", + 161706, + 161706, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-sm-stretch", + 161707, + 161730, + { + "value": "align-content-sm-stretch" + } + ], + [ + "{-token", + "{", + 161731, + 161731, + null + ], + [ + "ident-token", + "align-content", + 161732, + 161744, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 161745, + 161745, + null + ], + [ + "ident-token", + "stretch", + 161746, + 161752, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 161753, + 161753, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161754, + 161762, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161763, + 161763, + null + ], + [ + "delim-token", + ".", + 161764, + 161764, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-auto", + 161765, + 161782, + { + "value": "align-self-sm-auto" + } + ], + [ + "{-token", + "{", + 161783, + 161783, + null + ], + [ + "ident-token", + "align-self", + 161784, + 161793, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 161794, + 161794, + null + ], + [ + "ident-token", + "auto", + 161795, + 161798, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 161799, + 161799, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161800, + 161808, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161809, + 161809, + null + ], + [ + "delim-token", + ".", + 161810, + 161810, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-start", + 161811, + 161829, + { + "value": "align-self-sm-start" + } + ], + [ + "{-token", + "{", + 161830, + 161830, + null + ], + [ + "ident-token", + "align-self", + 161831, + 161840, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 161841, + 161841, + null + ], + [ + "ident-token", + "flex-start", + 161842, + 161851, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 161852, + 161852, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161853, + 161861, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161862, + 161862, + null + ], + [ + "delim-token", + ".", + 161863, + 161863, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-end", + 161864, + 161880, + { + "value": "align-self-sm-end" + } + ], + [ + "{-token", + "{", + 161881, + 161881, + null + ], + [ + "ident-token", + "align-self", + 161882, + 161891, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 161892, + 161892, + null + ], + [ + "ident-token", + "flex-end", + 161893, + 161900, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 161901, + 161901, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161902, + 161910, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161911, + 161911, + null + ], + [ + "delim-token", + ".", + 161912, + 161912, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-center", + 161913, + 161932, + { + "value": "align-self-sm-center" + } + ], + [ + "{-token", + "{", + 161933, + 161933, + null + ], + [ + "ident-token", + "align-self", + 161934, + 161943, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 161944, + 161944, + null + ], + [ + "ident-token", + "center", + 161945, + 161950, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 161951, + 161951, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 161952, + 161960, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 161961, + 161961, + null + ], + [ + "delim-token", + ".", + 161962, + 161962, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-baseline", + 161963, + 161984, + { + "value": "align-self-sm-baseline" + } + ], + [ + "{-token", + "{", + 161985, + 161985, + null + ], + [ + "ident-token", + "align-self", + 161986, + 161995, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 161996, + 161996, + null + ], + [ + "ident-token", + "baseline", + 161997, + 162004, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 162005, + 162005, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162006, + 162014, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162015, + 162015, + null + ], + [ + "delim-token", + ".", + 162016, + 162016, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-sm-stretch", + 162017, + 162037, + { + "value": "align-self-sm-stretch" + } + ], + [ + "{-token", + "{", + 162038, + 162038, + null + ], + [ + "ident-token", + "align-self", + 162039, + 162048, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 162049, + 162049, + null + ], + [ + "ident-token", + "stretch", + 162050, + 162056, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 162057, + 162057, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162058, + 162066, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162067, + 162067, + null + ], + [ + "delim-token", + ".", + 162068, + 162068, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-first", + 162069, + 162082, + { + "value": "order-sm-first" + } + ], + [ + "{-token", + "{", + 162083, + 162083, + null + ], + [ + "ident-token", + "order", + 162084, + 162088, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162089, + 162089, + null + ], + [ + "number-token", + "-1", + 162090, + 162091, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162092, + 162092, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162093, + 162101, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162102, + 162102, + null + ], + [ + "delim-token", + ".", + 162103, + 162103, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-0", + 162104, + 162113, + { + "value": "order-sm-0" + } + ], + [ + "{-token", + "{", + 162114, + 162114, + null + ], + [ + "ident-token", + "order", + 162115, + 162119, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162120, + 162120, + null + ], + [ + "number-token", + "0", + 162121, + 162121, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162122, + 162122, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162123, + 162131, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162132, + 162132, + null + ], + [ + "delim-token", + ".", + 162133, + 162133, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-1", + 162134, + 162143, + { + "value": "order-sm-1" + } + ], + [ + "{-token", + "{", + 162144, + 162144, + null + ], + [ + "ident-token", + "order", + 162145, + 162149, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162150, + 162150, + null + ], + [ + "number-token", + "1", + 162151, + 162151, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162152, + 162152, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162153, + 162161, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162162, + 162162, + null + ], + [ + "delim-token", + ".", + 162163, + 162163, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-2", + 162164, + 162173, + { + "value": "order-sm-2" + } + ], + [ + "{-token", + "{", + 162174, + 162174, + null + ], + [ + "ident-token", + "order", + 162175, + 162179, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162180, + 162180, + null + ], + [ + "number-token", + "2", + 162181, + 162181, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162182, + 162182, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162183, + 162191, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162192, + 162192, + null + ], + [ + "delim-token", + ".", + 162193, + 162193, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-3", + 162194, + 162203, + { + "value": "order-sm-3" + } + ], + [ + "{-token", + "{", + 162204, + 162204, + null + ], + [ + "ident-token", + "order", + 162205, + 162209, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162210, + 162210, + null + ], + [ + "number-token", + "3", + 162211, + 162211, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162212, + 162212, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162213, + 162221, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162222, + 162222, + null + ], + [ + "delim-token", + ".", + 162223, + 162223, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-4", + 162224, + 162233, + { + "value": "order-sm-4" + } + ], + [ + "{-token", + "{", + 162234, + 162234, + null + ], + [ + "ident-token", + "order", + 162235, + 162239, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162240, + 162240, + null + ], + [ + "number-token", + "4", + 162241, + 162241, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162242, + 162242, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162243, + 162251, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162252, + 162252, + null + ], + [ + "delim-token", + ".", + 162253, + 162253, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-5", + 162254, + 162263, + { + "value": "order-sm-5" + } + ], + [ + "{-token", + "{", + 162264, + 162264, + null + ], + [ + "ident-token", + "order", + 162265, + 162269, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162270, + 162270, + null + ], + [ + "number-token", + "5", + 162271, + 162271, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162272, + 162272, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162273, + 162281, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162282, + 162282, + null + ], + [ + "delim-token", + ".", + 162283, + 162283, + { + "value": "." + } + ], + [ + "ident-token", + "order-sm-last", + 162284, + 162296, + { + "value": "order-sm-last" + } + ], + [ + "{-token", + "{", + 162297, + 162297, + null + ], + [ + "ident-token", + "order", + 162298, + 162302, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 162303, + 162303, + null + ], + [ + "number-token", + "6", + 162304, + 162304, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162305, + 162305, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162306, + 162314, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162315, + 162315, + null + ], + [ + "delim-token", + ".", + 162316, + 162316, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-0", + 162317, + 162322, + { + "value": "m-sm-0" + } + ], + [ + "{-token", + "{", + 162323, + 162323, + null + ], + [ + "ident-token", + "margin", + 162324, + 162329, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162330, + 162330, + null + ], + [ + "number-token", + "0", + 162331, + 162331, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162332, + 162332, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162333, + 162341, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162342, + 162342, + null + ], + [ + "delim-token", + ".", + 162343, + 162343, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-1", + 162344, + 162349, + { + "value": "m-sm-1" + } + ], + [ + "{-token", + "{", + 162350, + 162350, + null + ], + [ + "ident-token", + "margin", + 162351, + 162356, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162357, + 162357, + null + ], + [ + "dimension-token", + ".25rem", + 162358, + 162363, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162364, + 162364, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162365, + 162373, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162374, + 162374, + null + ], + [ + "delim-token", + ".", + 162375, + 162375, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-2", + 162376, + 162381, + { + "value": "m-sm-2" + } + ], + [ + "{-token", + "{", + 162382, + 162382, + null + ], + [ + "ident-token", + "margin", + 162383, + 162388, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162389, + 162389, + null + ], + [ + "dimension-token", + ".5rem", + 162390, + 162394, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162395, + 162395, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162396, + 162404, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162405, + 162405, + null + ], + [ + "delim-token", + ".", + 162406, + 162406, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-3", + 162407, + 162412, + { + "value": "m-sm-3" + } + ], + [ + "{-token", + "{", + 162413, + 162413, + null + ], + [ + "ident-token", + "margin", + 162414, + 162419, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162420, + 162420, + null + ], + [ + "dimension-token", + "1rem", + 162421, + 162424, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162425, + 162425, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162426, + 162434, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162435, + 162435, + null + ], + [ + "delim-token", + ".", + 162436, + 162436, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-4", + 162437, + 162442, + { + "value": "m-sm-4" + } + ], + [ + "{-token", + "{", + 162443, + 162443, + null + ], + [ + "ident-token", + "margin", + 162444, + 162449, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162450, + 162450, + null + ], + [ + "dimension-token", + "1.5rem", + 162451, + 162456, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162457, + 162457, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162458, + 162466, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162467, + 162467, + null + ], + [ + "delim-token", + ".", + 162468, + 162468, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-5", + 162469, + 162474, + { + "value": "m-sm-5" + } + ], + [ + "{-token", + "{", + 162475, + 162475, + null + ], + [ + "ident-token", + "margin", + 162476, + 162481, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162482, + 162482, + null + ], + [ + "dimension-token", + "3rem", + 162483, + 162486, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162487, + 162487, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162488, + 162496, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162497, + 162497, + null + ], + [ + "delim-token", + ".", + 162498, + 162498, + { + "value": "." + } + ], + [ + "ident-token", + "m-sm-auto", + 162499, + 162507, + { + "value": "m-sm-auto" + } + ], + [ + "{-token", + "{", + 162508, + 162508, + null + ], + [ + "ident-token", + "margin", + 162509, + 162514, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 162515, + 162515, + null + ], + [ + "ident-token", + "auto", + 162516, + 162519, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 162520, + 162520, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162521, + 162529, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162530, + 162530, + null + ], + [ + "delim-token", + ".", + 162531, + 162531, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-0", + 162532, + 162538, + { + "value": "mx-sm-0" + } + ], + [ + "{-token", + "{", + 162539, + 162539, + null + ], + [ + "ident-token", + "margin-right", + 162540, + 162551, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162552, + 162552, + null + ], + [ + "number-token", + "0", + 162553, + 162553, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162554, + 162554, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162555, + 162563, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162564, + 162564, + null + ], + [ + "ident-token", + "margin-left", + 162565, + 162575, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162576, + 162576, + null + ], + [ + "number-token", + "0", + 162577, + 162577, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 162578, + 162578, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162579, + 162587, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162588, + 162588, + null + ], + [ + "delim-token", + ".", + 162589, + 162589, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-1", + 162590, + 162596, + { + "value": "mx-sm-1" + } + ], + [ + "{-token", + "{", + 162597, + 162597, + null + ], + [ + "ident-token", + "margin-right", + 162598, + 162609, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162610, + 162610, + null + ], + [ + "dimension-token", + ".25rem", + 162611, + 162616, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162617, + 162617, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162618, + 162626, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162627, + 162627, + null + ], + [ + "ident-token", + "margin-left", + 162628, + 162638, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162639, + 162639, + null + ], + [ + "dimension-token", + ".25rem", + 162640, + 162645, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162646, + 162646, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162647, + 162655, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162656, + 162656, + null + ], + [ + "delim-token", + ".", + 162657, + 162657, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-2", + 162658, + 162664, + { + "value": "mx-sm-2" + } + ], + [ + "{-token", + "{", + 162665, + 162665, + null + ], + [ + "ident-token", + "margin-right", + 162666, + 162677, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162678, + 162678, + null + ], + [ + "dimension-token", + ".5rem", + 162679, + 162683, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162684, + 162684, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162685, + 162693, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162694, + 162694, + null + ], + [ + "ident-token", + "margin-left", + 162695, + 162705, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162706, + 162706, + null + ], + [ + "dimension-token", + ".5rem", + 162707, + 162711, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162712, + 162712, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162713, + 162721, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162722, + 162722, + null + ], + [ + "delim-token", + ".", + 162723, + 162723, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-3", + 162724, + 162730, + { + "value": "mx-sm-3" + } + ], + [ + "{-token", + "{", + 162731, + 162731, + null + ], + [ + "ident-token", + "margin-right", + 162732, + 162743, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162744, + 162744, + null + ], + [ + "dimension-token", + "1rem", + 162745, + 162748, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162749, + 162749, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162750, + 162758, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162759, + 162759, + null + ], + [ + "ident-token", + "margin-left", + 162760, + 162770, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162771, + 162771, + null + ], + [ + "dimension-token", + "1rem", + 162772, + 162775, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162776, + 162776, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162777, + 162785, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162786, + 162786, + null + ], + [ + "delim-token", + ".", + 162787, + 162787, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-4", + 162788, + 162794, + { + "value": "mx-sm-4" + } + ], + [ + "{-token", + "{", + 162795, + 162795, + null + ], + [ + "ident-token", + "margin-right", + 162796, + 162807, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162808, + 162808, + null + ], + [ + "dimension-token", + "1.5rem", + 162809, + 162814, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162815, + 162815, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162816, + 162824, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162825, + 162825, + null + ], + [ + "ident-token", + "margin-left", + 162826, + 162836, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162837, + 162837, + null + ], + [ + "dimension-token", + "1.5rem", + 162838, + 162843, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162844, + 162844, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162845, + 162853, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162854, + 162854, + null + ], + [ + "delim-token", + ".", + 162855, + 162855, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-5", + 162856, + 162862, + { + "value": "mx-sm-5" + } + ], + [ + "{-token", + "{", + 162863, + 162863, + null + ], + [ + "ident-token", + "margin-right", + 162864, + 162875, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162876, + 162876, + null + ], + [ + "dimension-token", + "3rem", + 162877, + 162880, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162881, + 162881, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162882, + 162890, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162891, + 162891, + null + ], + [ + "ident-token", + "margin-left", + 162892, + 162902, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162903, + 162903, + null + ], + [ + "dimension-token", + "3rem", + 162904, + 162907, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 162908, + 162908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162909, + 162917, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162918, + 162918, + null + ], + [ + "delim-token", + ".", + 162919, + 162919, + { + "value": "." + } + ], + [ + "ident-token", + "mx-sm-auto", + 162920, + 162929, + { + "value": "mx-sm-auto" + } + ], + [ + "{-token", + "{", + 162930, + 162930, + null + ], + [ + "ident-token", + "margin-right", + 162931, + 162942, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 162943, + 162943, + null + ], + [ + "ident-token", + "auto", + 162944, + 162947, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 162948, + 162948, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162949, + 162957, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 162958, + 162958, + null + ], + [ + "ident-token", + "margin-left", + 162959, + 162969, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 162970, + 162970, + null + ], + [ + "ident-token", + "auto", + 162971, + 162974, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 162975, + 162975, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 162976, + 162984, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 162985, + 162985, + null + ], + [ + "delim-token", + ".", + 162986, + 162986, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-0", + 162987, + 162993, + { + "value": "my-sm-0" + } + ], + [ + "{-token", + "{", + 162994, + 162994, + null + ], + [ + "ident-token", + "margin-top", + 162995, + 163004, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163005, + 163005, + null + ], + [ + "number-token", + "0", + 163006, + 163006, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 163007, + 163007, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163008, + 163016, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163017, + 163017, + null + ], + [ + "ident-token", + "margin-bottom", + 163018, + 163030, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163031, + 163031, + null + ], + [ + "number-token", + "0", + 163032, + 163032, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 163033, + 163033, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163034, + 163042, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163043, + 163043, + null + ], + [ + "delim-token", + ".", + 163044, + 163044, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-1", + 163045, + 163051, + { + "value": "my-sm-1" + } + ], + [ + "{-token", + "{", + 163052, + 163052, + null + ], + [ + "ident-token", + "margin-top", + 163053, + 163062, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163063, + 163063, + null + ], + [ + "dimension-token", + ".25rem", + 163064, + 163069, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163070, + 163070, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163071, + 163079, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163080, + 163080, + null + ], + [ + "ident-token", + "margin-bottom", + 163081, + 163093, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163094, + 163094, + null + ], + [ + "dimension-token", + ".25rem", + 163095, + 163100, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163101, + 163101, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163102, + 163110, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163111, + 163111, + null + ], + [ + "delim-token", + ".", + 163112, + 163112, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-2", + 163113, + 163119, + { + "value": "my-sm-2" + } + ], + [ + "{-token", + "{", + 163120, + 163120, + null + ], + [ + "ident-token", + "margin-top", + 163121, + 163130, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163131, + 163131, + null + ], + [ + "dimension-token", + ".5rem", + 163132, + 163136, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163137, + 163137, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163138, + 163146, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163147, + 163147, + null + ], + [ + "ident-token", + "margin-bottom", + 163148, + 163160, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163161, + 163161, + null + ], + [ + "dimension-token", + ".5rem", + 163162, + 163166, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163167, + 163167, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163168, + 163176, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163177, + 163177, + null + ], + [ + "delim-token", + ".", + 163178, + 163178, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-3", + 163179, + 163185, + { + "value": "my-sm-3" + } + ], + [ + "{-token", + "{", + 163186, + 163186, + null + ], + [ + "ident-token", + "margin-top", + 163187, + 163196, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163197, + 163197, + null + ], + [ + "dimension-token", + "1rem", + 163198, + 163201, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163202, + 163202, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163203, + 163211, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163212, + 163212, + null + ], + [ + "ident-token", + "margin-bottom", + 163213, + 163225, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163226, + 163226, + null + ], + [ + "dimension-token", + "1rem", + 163227, + 163230, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163231, + 163231, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163232, + 163240, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163241, + 163241, + null + ], + [ + "delim-token", + ".", + 163242, + 163242, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-4", + 163243, + 163249, + { + "value": "my-sm-4" + } + ], + [ + "{-token", + "{", + 163250, + 163250, + null + ], + [ + "ident-token", + "margin-top", + 163251, + 163260, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163261, + 163261, + null + ], + [ + "dimension-token", + "1.5rem", + 163262, + 163267, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163268, + 163268, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163269, + 163277, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163278, + 163278, + null + ], + [ + "ident-token", + "margin-bottom", + 163279, + 163291, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163292, + 163292, + null + ], + [ + "dimension-token", + "1.5rem", + 163293, + 163298, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163299, + 163299, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163300, + 163308, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163309, + 163309, + null + ], + [ + "delim-token", + ".", + 163310, + 163310, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-5", + 163311, + 163317, + { + "value": "my-sm-5" + } + ], + [ + "{-token", + "{", + 163318, + 163318, + null + ], + [ + "ident-token", + "margin-top", + 163319, + 163328, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163329, + 163329, + null + ], + [ + "dimension-token", + "3rem", + 163330, + 163333, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163334, + 163334, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163335, + 163343, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163344, + 163344, + null + ], + [ + "ident-token", + "margin-bottom", + 163345, + 163357, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163358, + 163358, + null + ], + [ + "dimension-token", + "3rem", + 163359, + 163362, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163363, + 163363, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163364, + 163372, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163373, + 163373, + null + ], + [ + "delim-token", + ".", + 163374, + 163374, + { + "value": "." + } + ], + [ + "ident-token", + "my-sm-auto", + 163375, + 163384, + { + "value": "my-sm-auto" + } + ], + [ + "{-token", + "{", + 163385, + 163385, + null + ], + [ + "ident-token", + "margin-top", + 163386, + 163395, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163396, + 163396, + null + ], + [ + "ident-token", + "auto", + 163397, + 163400, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 163401, + 163401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163402, + 163410, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 163411, + 163411, + null + ], + [ + "ident-token", + "margin-bottom", + 163412, + 163424, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163425, + 163425, + null + ], + [ + "ident-token", + "auto", + 163426, + 163429, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 163430, + 163430, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163431, + 163439, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163440, + 163440, + null + ], + [ + "delim-token", + ".", + 163441, + 163441, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-0", + 163442, + 163448, + { + "value": "mt-sm-0" + } + ], + [ + "{-token", + "{", + 163449, + 163449, + null + ], + [ + "ident-token", + "margin-top", + 163450, + 163459, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163460, + 163460, + null + ], + [ + "number-token", + "0", + 163461, + 163461, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 163462, + 163462, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163463, + 163471, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163472, + 163472, + null + ], + [ + "delim-token", + ".", + 163473, + 163473, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-1", + 163474, + 163480, + { + "value": "mt-sm-1" + } + ], + [ + "{-token", + "{", + 163481, + 163481, + null + ], + [ + "ident-token", + "margin-top", + 163482, + 163491, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163492, + 163492, + null + ], + [ + "dimension-token", + ".25rem", + 163493, + 163498, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163499, + 163499, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163500, + 163508, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163509, + 163509, + null + ], + [ + "delim-token", + ".", + 163510, + 163510, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-2", + 163511, + 163517, + { + "value": "mt-sm-2" + } + ], + [ + "{-token", + "{", + 163518, + 163518, + null + ], + [ + "ident-token", + "margin-top", + 163519, + 163528, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163529, + 163529, + null + ], + [ + "dimension-token", + ".5rem", + 163530, + 163534, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163535, + 163535, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163536, + 163544, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163545, + 163545, + null + ], + [ + "delim-token", + ".", + 163546, + 163546, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-3", + 163547, + 163553, + { + "value": "mt-sm-3" + } + ], + [ + "{-token", + "{", + 163554, + 163554, + null + ], + [ + "ident-token", + "margin-top", + 163555, + 163564, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163565, + 163565, + null + ], + [ + "dimension-token", + "1rem", + 163566, + 163569, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163570, + 163570, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163571, + 163579, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163580, + 163580, + null + ], + [ + "delim-token", + ".", + 163581, + 163581, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-4", + 163582, + 163588, + { + "value": "mt-sm-4" + } + ], + [ + "{-token", + "{", + 163589, + 163589, + null + ], + [ + "ident-token", + "margin-top", + 163590, + 163599, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163600, + 163600, + null + ], + [ + "dimension-token", + "1.5rem", + 163601, + 163606, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163607, + 163607, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163608, + 163616, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163617, + 163617, + null + ], + [ + "delim-token", + ".", + 163618, + 163618, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-5", + 163619, + 163625, + { + "value": "mt-sm-5" + } + ], + [ + "{-token", + "{", + 163626, + 163626, + null + ], + [ + "ident-token", + "margin-top", + 163627, + 163636, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163637, + 163637, + null + ], + [ + "dimension-token", + "3rem", + 163638, + 163641, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163642, + 163642, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163643, + 163651, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163652, + 163652, + null + ], + [ + "delim-token", + ".", + 163653, + 163653, + { + "value": "." + } + ], + [ + "ident-token", + "mt-sm-auto", + 163654, + 163663, + { + "value": "mt-sm-auto" + } + ], + [ + "{-token", + "{", + 163664, + 163664, + null + ], + [ + "ident-token", + "margin-top", + 163665, + 163674, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 163675, + 163675, + null + ], + [ + "ident-token", + "auto", + 163676, + 163679, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 163680, + 163680, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163681, + 163689, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163690, + 163690, + null + ], + [ + "delim-token", + ".", + 163691, + 163691, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-0", + 163692, + 163698, + { + "value": "me-sm-0" + } + ], + [ + "{-token", + "{", + 163699, + 163699, + null + ], + [ + "ident-token", + "margin-right", + 163700, + 163711, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163712, + 163712, + null + ], + [ + "number-token", + "0", + 163713, + 163713, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 163714, + 163714, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163715, + 163723, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163724, + 163724, + null + ], + [ + "delim-token", + ".", + 163725, + 163725, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-1", + 163726, + 163732, + { + "value": "me-sm-1" + } + ], + [ + "{-token", + "{", + 163733, + 163733, + null + ], + [ + "ident-token", + "margin-right", + 163734, + 163745, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163746, + 163746, + null + ], + [ + "dimension-token", + ".25rem", + 163747, + 163752, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163753, + 163753, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163754, + 163762, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163763, + 163763, + null + ], + [ + "delim-token", + ".", + 163764, + 163764, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-2", + 163765, + 163771, + { + "value": "me-sm-2" + } + ], + [ + "{-token", + "{", + 163772, + 163772, + null + ], + [ + "ident-token", + "margin-right", + 163773, + 163784, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163785, + 163785, + null + ], + [ + "dimension-token", + ".5rem", + 163786, + 163790, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163791, + 163791, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163792, + 163800, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163801, + 163801, + null + ], + [ + "delim-token", + ".", + 163802, + 163802, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-3", + 163803, + 163809, + { + "value": "me-sm-3" + } + ], + [ + "{-token", + "{", + 163810, + 163810, + null + ], + [ + "ident-token", + "margin-right", + 163811, + 163822, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163823, + 163823, + null + ], + [ + "dimension-token", + "1rem", + 163824, + 163827, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163828, + 163828, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163829, + 163837, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163838, + 163838, + null + ], + [ + "delim-token", + ".", + 163839, + 163839, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-4", + 163840, + 163846, + { + "value": "me-sm-4" + } + ], + [ + "{-token", + "{", + 163847, + 163847, + null + ], + [ + "ident-token", + "margin-right", + 163848, + 163859, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163860, + 163860, + null + ], + [ + "dimension-token", + "1.5rem", + 163861, + 163866, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163867, + 163867, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163868, + 163876, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163877, + 163877, + null + ], + [ + "delim-token", + ".", + 163878, + 163878, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-5", + 163879, + 163885, + { + "value": "me-sm-5" + } + ], + [ + "{-token", + "{", + 163886, + 163886, + null + ], + [ + "ident-token", + "margin-right", + 163887, + 163898, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163899, + 163899, + null + ], + [ + "dimension-token", + "3rem", + 163900, + 163903, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 163904, + 163904, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163905, + 163913, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163914, + 163914, + null + ], + [ + "delim-token", + ".", + 163915, + 163915, + { + "value": "." + } + ], + [ + "ident-token", + "me-sm-auto", + 163916, + 163925, + { + "value": "me-sm-auto" + } + ], + [ + "{-token", + "{", + 163926, + 163926, + null + ], + [ + "ident-token", + "margin-right", + 163927, + 163938, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 163939, + 163939, + null + ], + [ + "ident-token", + "auto", + 163940, + 163943, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 163944, + 163944, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163945, + 163953, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163954, + 163954, + null + ], + [ + "delim-token", + ".", + 163955, + 163955, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-0", + 163956, + 163962, + { + "value": "mb-sm-0" + } + ], + [ + "{-token", + "{", + 163963, + 163963, + null + ], + [ + "ident-token", + "margin-bottom", + 163964, + 163976, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 163977, + 163977, + null + ], + [ + "number-token", + "0", + 163978, + 163978, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 163979, + 163979, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 163980, + 163988, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 163989, + 163989, + null + ], + [ + "delim-token", + ".", + 163990, + 163990, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-1", + 163991, + 163997, + { + "value": "mb-sm-1" + } + ], + [ + "{-token", + "{", + 163998, + 163998, + null + ], + [ + "ident-token", + "margin-bottom", + 163999, + 164011, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164012, + 164012, + null + ], + [ + "dimension-token", + ".25rem", + 164013, + 164018, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164019, + 164019, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164020, + 164028, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164029, + 164029, + null + ], + [ + "delim-token", + ".", + 164030, + 164030, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-2", + 164031, + 164037, + { + "value": "mb-sm-2" + } + ], + [ + "{-token", + "{", + 164038, + 164038, + null + ], + [ + "ident-token", + "margin-bottom", + 164039, + 164051, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164052, + 164052, + null + ], + [ + "dimension-token", + ".5rem", + 164053, + 164057, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164058, + 164058, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164059, + 164067, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164068, + 164068, + null + ], + [ + "delim-token", + ".", + 164069, + 164069, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-3", + 164070, + 164076, + { + "value": "mb-sm-3" + } + ], + [ + "{-token", + "{", + 164077, + 164077, + null + ], + [ + "ident-token", + "margin-bottom", + 164078, + 164090, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164091, + 164091, + null + ], + [ + "dimension-token", + "1rem", + 164092, + 164095, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164096, + 164096, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164097, + 164105, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164106, + 164106, + null + ], + [ + "delim-token", + ".", + 164107, + 164107, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-4", + 164108, + 164114, + { + "value": "mb-sm-4" + } + ], + [ + "{-token", + "{", + 164115, + 164115, + null + ], + [ + "ident-token", + "margin-bottom", + 164116, + 164128, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164129, + 164129, + null + ], + [ + "dimension-token", + "1.5rem", + 164130, + 164135, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164136, + 164136, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164137, + 164145, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164146, + 164146, + null + ], + [ + "delim-token", + ".", + 164147, + 164147, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-5", + 164148, + 164154, + { + "value": "mb-sm-5" + } + ], + [ + "{-token", + "{", + 164155, + 164155, + null + ], + [ + "ident-token", + "margin-bottom", + 164156, + 164168, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164169, + 164169, + null + ], + [ + "dimension-token", + "3rem", + 164170, + 164173, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164174, + 164174, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164175, + 164183, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164184, + 164184, + null + ], + [ + "delim-token", + ".", + 164185, + 164185, + { + "value": "." + } + ], + [ + "ident-token", + "mb-sm-auto", + 164186, + 164195, + { + "value": "mb-sm-auto" + } + ], + [ + "{-token", + "{", + 164196, + 164196, + null + ], + [ + "ident-token", + "margin-bottom", + 164197, + 164209, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 164210, + 164210, + null + ], + [ + "ident-token", + "auto", + 164211, + 164214, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 164215, + 164215, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164216, + 164224, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164225, + 164225, + null + ], + [ + "delim-token", + ".", + 164226, + 164226, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-0", + 164227, + 164233, + { + "value": "ms-sm-0" + } + ], + [ + "{-token", + "{", + 164234, + 164234, + null + ], + [ + "ident-token", + "margin-left", + 164235, + 164245, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164246, + 164246, + null + ], + [ + "number-token", + "0", + 164247, + 164247, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 164248, + 164248, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164249, + 164257, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164258, + 164258, + null + ], + [ + "delim-token", + ".", + 164259, + 164259, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-1", + 164260, + 164266, + { + "value": "ms-sm-1" + } + ], + [ + "{-token", + "{", + 164267, + 164267, + null + ], + [ + "ident-token", + "margin-left", + 164268, + 164278, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164279, + 164279, + null + ], + [ + "dimension-token", + ".25rem", + 164280, + 164285, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164286, + 164286, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164287, + 164295, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164296, + 164296, + null + ], + [ + "delim-token", + ".", + 164297, + 164297, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-2", + 164298, + 164304, + { + "value": "ms-sm-2" + } + ], + [ + "{-token", + "{", + 164305, + 164305, + null + ], + [ + "ident-token", + "margin-left", + 164306, + 164316, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164317, + 164317, + null + ], + [ + "dimension-token", + ".5rem", + 164318, + 164322, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164323, + 164323, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164324, + 164332, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164333, + 164333, + null + ], + [ + "delim-token", + ".", + 164334, + 164334, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-3", + 164335, + 164341, + { + "value": "ms-sm-3" + } + ], + [ + "{-token", + "{", + 164342, + 164342, + null + ], + [ + "ident-token", + "margin-left", + 164343, + 164353, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164354, + 164354, + null + ], + [ + "dimension-token", + "1rem", + 164355, + 164358, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164359, + 164359, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164360, + 164368, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164369, + 164369, + null + ], + [ + "delim-token", + ".", + 164370, + 164370, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-4", + 164371, + 164377, + { + "value": "ms-sm-4" + } + ], + [ + "{-token", + "{", + 164378, + 164378, + null + ], + [ + "ident-token", + "margin-left", + 164379, + 164389, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164390, + 164390, + null + ], + [ + "dimension-token", + "1.5rem", + 164391, + 164396, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164397, + 164397, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164398, + 164406, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164407, + 164407, + null + ], + [ + "delim-token", + ".", + 164408, + 164408, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-5", + 164409, + 164415, + { + "value": "ms-sm-5" + } + ], + [ + "{-token", + "{", + 164416, + 164416, + null + ], + [ + "ident-token", + "margin-left", + 164417, + 164427, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164428, + 164428, + null + ], + [ + "dimension-token", + "3rem", + 164429, + 164432, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164433, + 164433, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164434, + 164442, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164443, + 164443, + null + ], + [ + "delim-token", + ".", + 164444, + 164444, + { + "value": "." + } + ], + [ + "ident-token", + "ms-sm-auto", + 164445, + 164454, + { + "value": "ms-sm-auto" + } + ], + [ + "{-token", + "{", + 164455, + 164455, + null + ], + [ + "ident-token", + "margin-left", + 164456, + 164466, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 164467, + 164467, + null + ], + [ + "ident-token", + "auto", + 164468, + 164471, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 164472, + 164472, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164473, + 164481, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164482, + 164482, + null + ], + [ + "delim-token", + ".", + 164483, + 164483, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-0", + 164484, + 164489, + { + "value": "p-sm-0" + } + ], + [ + "{-token", + "{", + 164490, + 164490, + null + ], + [ + "ident-token", + "padding", + 164491, + 164497, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164498, + 164498, + null + ], + [ + "number-token", + "0", + 164499, + 164499, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 164500, + 164500, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164501, + 164509, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164510, + 164510, + null + ], + [ + "delim-token", + ".", + 164511, + 164511, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-1", + 164512, + 164517, + { + "value": "p-sm-1" + } + ], + [ + "{-token", + "{", + 164518, + 164518, + null + ], + [ + "ident-token", + "padding", + 164519, + 164525, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164526, + 164526, + null + ], + [ + "dimension-token", + ".25rem", + 164527, + 164532, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164533, + 164533, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164534, + 164542, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164543, + 164543, + null + ], + [ + "delim-token", + ".", + 164544, + 164544, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-2", + 164545, + 164550, + { + "value": "p-sm-2" + } + ], + [ + "{-token", + "{", + 164551, + 164551, + null + ], + [ + "ident-token", + "padding", + 164552, + 164558, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164559, + 164559, + null + ], + [ + "dimension-token", + ".5rem", + 164560, + 164564, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164565, + 164565, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164566, + 164574, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164575, + 164575, + null + ], + [ + "delim-token", + ".", + 164576, + 164576, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-3", + 164577, + 164582, + { + "value": "p-sm-3" + } + ], + [ + "{-token", + "{", + 164583, + 164583, + null + ], + [ + "ident-token", + "padding", + 164584, + 164590, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164591, + 164591, + null + ], + [ + "dimension-token", + "1rem", + 164592, + 164595, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164596, + 164596, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164597, + 164605, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164606, + 164606, + null + ], + [ + "delim-token", + ".", + 164607, + 164607, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-4", + 164608, + 164613, + { + "value": "p-sm-4" + } + ], + [ + "{-token", + "{", + 164614, + 164614, + null + ], + [ + "ident-token", + "padding", + 164615, + 164621, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164622, + 164622, + null + ], + [ + "dimension-token", + "1.5rem", + 164623, + 164628, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164629, + 164629, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164630, + 164638, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164639, + 164639, + null + ], + [ + "delim-token", + ".", + 164640, + 164640, + { + "value": "." + } + ], + [ + "ident-token", + "p-sm-5", + 164641, + 164646, + { + "value": "p-sm-5" + } + ], + [ + "{-token", + "{", + 164647, + 164647, + null + ], + [ + "ident-token", + "padding", + 164648, + 164654, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 164655, + 164655, + null + ], + [ + "dimension-token", + "3rem", + 164656, + 164659, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164660, + 164660, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164661, + 164669, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164670, + 164670, + null + ], + [ + "delim-token", + ".", + 164671, + 164671, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-0", + 164672, + 164678, + { + "value": "px-sm-0" + } + ], + [ + "{-token", + "{", + 164679, + 164679, + null + ], + [ + "ident-token", + "padding-right", + 164680, + 164692, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 164693, + 164693, + null + ], + [ + "number-token", + "0", + 164694, + 164694, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 164695, + 164695, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164696, + 164704, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 164705, + 164705, + null + ], + [ + "ident-token", + "padding-left", + 164706, + 164717, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 164718, + 164718, + null + ], + [ + "number-token", + "0", + 164719, + 164719, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 164720, + 164720, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164721, + 164729, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164730, + 164730, + null + ], + [ + "delim-token", + ".", + 164731, + 164731, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-1", + 164732, + 164738, + { + "value": "px-sm-1" + } + ], + [ + "{-token", + "{", + 164739, + 164739, + null + ], + [ + "ident-token", + "padding-right", + 164740, + 164752, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 164753, + 164753, + null + ], + [ + "dimension-token", + ".25rem", + 164754, + 164759, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164760, + 164760, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164761, + 164769, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 164770, + 164770, + null + ], + [ + "ident-token", + "padding-left", + 164771, + 164782, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 164783, + 164783, + null + ], + [ + "dimension-token", + ".25rem", + 164784, + 164789, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164790, + 164790, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164791, + 164799, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164800, + 164800, + null + ], + [ + "delim-token", + ".", + 164801, + 164801, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-2", + 164802, + 164808, + { + "value": "px-sm-2" + } + ], + [ + "{-token", + "{", + 164809, + 164809, + null + ], + [ + "ident-token", + "padding-right", + 164810, + 164822, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 164823, + 164823, + null + ], + [ + "dimension-token", + ".5rem", + 164824, + 164828, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164829, + 164829, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164830, + 164838, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 164839, + 164839, + null + ], + [ + "ident-token", + "padding-left", + 164840, + 164851, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 164852, + 164852, + null + ], + [ + "dimension-token", + ".5rem", + 164853, + 164857, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164858, + 164858, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164859, + 164867, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164868, + 164868, + null + ], + [ + "delim-token", + ".", + 164869, + 164869, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-3", + 164870, + 164876, + { + "value": "px-sm-3" + } + ], + [ + "{-token", + "{", + 164877, + 164877, + null + ], + [ + "ident-token", + "padding-right", + 164878, + 164890, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 164891, + 164891, + null + ], + [ + "dimension-token", + "1rem", + 164892, + 164895, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164896, + 164896, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164897, + 164905, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 164906, + 164906, + null + ], + [ + "ident-token", + "padding-left", + 164907, + 164918, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 164919, + 164919, + null + ], + [ + "dimension-token", + "1rem", + 164920, + 164923, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164924, + 164924, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164925, + 164933, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 164934, + 164934, + null + ], + [ + "delim-token", + ".", + 164935, + 164935, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-4", + 164936, + 164942, + { + "value": "px-sm-4" + } + ], + [ + "{-token", + "{", + 164943, + 164943, + null + ], + [ + "ident-token", + "padding-right", + 164944, + 164956, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 164957, + 164957, + null + ], + [ + "dimension-token", + "1.5rem", + 164958, + 164963, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164964, + 164964, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164965, + 164973, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 164974, + 164974, + null + ], + [ + "ident-token", + "padding-left", + 164975, + 164986, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 164987, + 164987, + null + ], + [ + "dimension-token", + "1.5rem", + 164988, + 164993, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 164994, + 164994, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 164995, + 165003, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165004, + 165004, + null + ], + [ + "delim-token", + ".", + 165005, + 165005, + { + "value": "." + } + ], + [ + "ident-token", + "px-sm-5", + 165006, + 165012, + { + "value": "px-sm-5" + } + ], + [ + "{-token", + "{", + 165013, + 165013, + null + ], + [ + "ident-token", + "padding-right", + 165014, + 165026, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165027, + 165027, + null + ], + [ + "dimension-token", + "3rem", + 165028, + 165031, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165032, + 165032, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165033, + 165041, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165042, + 165042, + null + ], + [ + "ident-token", + "padding-left", + 165043, + 165054, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 165055, + 165055, + null + ], + [ + "dimension-token", + "3rem", + 165056, + 165059, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165060, + 165060, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165061, + 165069, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165070, + 165070, + null + ], + [ + "delim-token", + ".", + 165071, + 165071, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-0", + 165072, + 165078, + { + "value": "py-sm-0" + } + ], + [ + "{-token", + "{", + 165079, + 165079, + null + ], + [ + "ident-token", + "padding-top", + 165080, + 165090, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165091, + 165091, + null + ], + [ + "number-token", + "0", + 165092, + 165092, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 165093, + 165093, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165094, + 165102, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165103, + 165103, + null + ], + [ + "ident-token", + "padding-bottom", + 165104, + 165117, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165118, + 165118, + null + ], + [ + "number-token", + "0", + 165119, + 165119, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 165120, + 165120, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165121, + 165129, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165130, + 165130, + null + ], + [ + "delim-token", + ".", + 165131, + 165131, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-1", + 165132, + 165138, + { + "value": "py-sm-1" + } + ], + [ + "{-token", + "{", + 165139, + 165139, + null + ], + [ + "ident-token", + "padding-top", + 165140, + 165150, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165151, + 165151, + null + ], + [ + "dimension-token", + ".25rem", + 165152, + 165157, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165158, + 165158, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165159, + 165167, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165168, + 165168, + null + ], + [ + "ident-token", + "padding-bottom", + 165169, + 165182, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165183, + 165183, + null + ], + [ + "dimension-token", + ".25rem", + 165184, + 165189, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165190, + 165190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165191, + 165199, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165200, + 165200, + null + ], + [ + "delim-token", + ".", + 165201, + 165201, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-2", + 165202, + 165208, + { + "value": "py-sm-2" + } + ], + [ + "{-token", + "{", + 165209, + 165209, + null + ], + [ + "ident-token", + "padding-top", + 165210, + 165220, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165221, + 165221, + null + ], + [ + "dimension-token", + ".5rem", + 165222, + 165226, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165227, + 165227, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165228, + 165236, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165237, + 165237, + null + ], + [ + "ident-token", + "padding-bottom", + 165238, + 165251, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165252, + 165252, + null + ], + [ + "dimension-token", + ".5rem", + 165253, + 165257, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165258, + 165258, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165259, + 165267, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165268, + 165268, + null + ], + [ + "delim-token", + ".", + 165269, + 165269, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-3", + 165270, + 165276, + { + "value": "py-sm-3" + } + ], + [ + "{-token", + "{", + 165277, + 165277, + null + ], + [ + "ident-token", + "padding-top", + 165278, + 165288, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165289, + 165289, + null + ], + [ + "dimension-token", + "1rem", + 165290, + 165293, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165294, + 165294, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165295, + 165303, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165304, + 165304, + null + ], + [ + "ident-token", + "padding-bottom", + 165305, + 165318, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165319, + 165319, + null + ], + [ + "dimension-token", + "1rem", + 165320, + 165323, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165324, + 165324, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165325, + 165333, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165334, + 165334, + null + ], + [ + "delim-token", + ".", + 165335, + 165335, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-4", + 165336, + 165342, + { + "value": "py-sm-4" + } + ], + [ + "{-token", + "{", + 165343, + 165343, + null + ], + [ + "ident-token", + "padding-top", + 165344, + 165354, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165355, + 165355, + null + ], + [ + "dimension-token", + "1.5rem", + 165356, + 165361, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165362, + 165362, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165363, + 165371, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165372, + 165372, + null + ], + [ + "ident-token", + "padding-bottom", + 165373, + 165386, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165387, + 165387, + null + ], + [ + "dimension-token", + "1.5rem", + 165388, + 165393, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165394, + 165394, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165395, + 165403, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165404, + 165404, + null + ], + [ + "delim-token", + ".", + 165405, + 165405, + { + "value": "." + } + ], + [ + "ident-token", + "py-sm-5", + 165406, + 165412, + { + "value": "py-sm-5" + } + ], + [ + "{-token", + "{", + 165413, + 165413, + null + ], + [ + "ident-token", + "padding-top", + 165414, + 165424, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165425, + 165425, + null + ], + [ + "dimension-token", + "3rem", + 165426, + 165429, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165430, + 165430, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165431, + 165439, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 165440, + 165440, + null + ], + [ + "ident-token", + "padding-bottom", + 165441, + 165454, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165455, + 165455, + null + ], + [ + "dimension-token", + "3rem", + 165456, + 165459, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165460, + 165460, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165461, + 165469, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165470, + 165470, + null + ], + [ + "delim-token", + ".", + 165471, + 165471, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-0", + 165472, + 165478, + { + "value": "pt-sm-0" + } + ], + [ + "{-token", + "{", + 165479, + 165479, + null + ], + [ + "ident-token", + "padding-top", + 165480, + 165490, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165491, + 165491, + null + ], + [ + "number-token", + "0", + 165492, + 165492, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 165493, + 165493, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165494, + 165502, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165503, + 165503, + null + ], + [ + "delim-token", + ".", + 165504, + 165504, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-1", + 165505, + 165511, + { + "value": "pt-sm-1" + } + ], + [ + "{-token", + "{", + 165512, + 165512, + null + ], + [ + "ident-token", + "padding-top", + 165513, + 165523, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165524, + 165524, + null + ], + [ + "dimension-token", + ".25rem", + 165525, + 165530, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165531, + 165531, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165532, + 165540, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165541, + 165541, + null + ], + [ + "delim-token", + ".", + 165542, + 165542, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-2", + 165543, + 165549, + { + "value": "pt-sm-2" + } + ], + [ + "{-token", + "{", + 165550, + 165550, + null + ], + [ + "ident-token", + "padding-top", + 165551, + 165561, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165562, + 165562, + null + ], + [ + "dimension-token", + ".5rem", + 165563, + 165567, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165568, + 165568, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165569, + 165577, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165578, + 165578, + null + ], + [ + "delim-token", + ".", + 165579, + 165579, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-3", + 165580, + 165586, + { + "value": "pt-sm-3" + } + ], + [ + "{-token", + "{", + 165587, + 165587, + null + ], + [ + "ident-token", + "padding-top", + 165588, + 165598, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165599, + 165599, + null + ], + [ + "dimension-token", + "1rem", + 165600, + 165603, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165604, + 165604, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165605, + 165613, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165614, + 165614, + null + ], + [ + "delim-token", + ".", + 165615, + 165615, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-4", + 165616, + 165622, + { + "value": "pt-sm-4" + } + ], + [ + "{-token", + "{", + 165623, + 165623, + null + ], + [ + "ident-token", + "padding-top", + 165624, + 165634, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165635, + 165635, + null + ], + [ + "dimension-token", + "1.5rem", + 165636, + 165641, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165642, + 165642, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165643, + 165651, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165652, + 165652, + null + ], + [ + "delim-token", + ".", + 165653, + 165653, + { + "value": "." + } + ], + [ + "ident-token", + "pt-sm-5", + 165654, + 165660, + { + "value": "pt-sm-5" + } + ], + [ + "{-token", + "{", + 165661, + 165661, + null + ], + [ + "ident-token", + "padding-top", + 165662, + 165672, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 165673, + 165673, + null + ], + [ + "dimension-token", + "3rem", + 165674, + 165677, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165678, + 165678, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165679, + 165687, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165688, + 165688, + null + ], + [ + "delim-token", + ".", + 165689, + 165689, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-0", + 165690, + 165696, + { + "value": "pe-sm-0" + } + ], + [ + "{-token", + "{", + 165697, + 165697, + null + ], + [ + "ident-token", + "padding-right", + 165698, + 165710, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165711, + 165711, + null + ], + [ + "number-token", + "0", + 165712, + 165712, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 165713, + 165713, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165714, + 165722, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165723, + 165723, + null + ], + [ + "delim-token", + ".", + 165724, + 165724, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-1", + 165725, + 165731, + { + "value": "pe-sm-1" + } + ], + [ + "{-token", + "{", + 165732, + 165732, + null + ], + [ + "ident-token", + "padding-right", + 165733, + 165745, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165746, + 165746, + null + ], + [ + "dimension-token", + ".25rem", + 165747, + 165752, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165753, + 165753, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165754, + 165762, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165763, + 165763, + null + ], + [ + "delim-token", + ".", + 165764, + 165764, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-2", + 165765, + 165771, + { + "value": "pe-sm-2" + } + ], + [ + "{-token", + "{", + 165772, + 165772, + null + ], + [ + "ident-token", + "padding-right", + 165773, + 165785, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165786, + 165786, + null + ], + [ + "dimension-token", + ".5rem", + 165787, + 165791, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165792, + 165792, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165793, + 165801, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165802, + 165802, + null + ], + [ + "delim-token", + ".", + 165803, + 165803, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-3", + 165804, + 165810, + { + "value": "pe-sm-3" + } + ], + [ + "{-token", + "{", + 165811, + 165811, + null + ], + [ + "ident-token", + "padding-right", + 165812, + 165824, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165825, + 165825, + null + ], + [ + "dimension-token", + "1rem", + 165826, + 165829, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165830, + 165830, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165831, + 165839, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165840, + 165840, + null + ], + [ + "delim-token", + ".", + 165841, + 165841, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-4", + 165842, + 165848, + { + "value": "pe-sm-4" + } + ], + [ + "{-token", + "{", + 165849, + 165849, + null + ], + [ + "ident-token", + "padding-right", + 165850, + 165862, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165863, + 165863, + null + ], + [ + "dimension-token", + "1.5rem", + 165864, + 165869, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165870, + 165870, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165871, + 165879, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165880, + 165880, + null + ], + [ + "delim-token", + ".", + 165881, + 165881, + { + "value": "." + } + ], + [ + "ident-token", + "pe-sm-5", + 165882, + 165888, + { + "value": "pe-sm-5" + } + ], + [ + "{-token", + "{", + 165889, + 165889, + null + ], + [ + "ident-token", + "padding-right", + 165890, + 165902, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 165903, + 165903, + null + ], + [ + "dimension-token", + "3rem", + 165904, + 165907, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165908, + 165908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165909, + 165917, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165918, + 165918, + null + ], + [ + "delim-token", + ".", + 165919, + 165919, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-0", + 165920, + 165926, + { + "value": "pb-sm-0" + } + ], + [ + "{-token", + "{", + 165927, + 165927, + null + ], + [ + "ident-token", + "padding-bottom", + 165928, + 165941, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165942, + 165942, + null + ], + [ + "number-token", + "0", + 165943, + 165943, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 165944, + 165944, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165945, + 165953, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165954, + 165954, + null + ], + [ + "delim-token", + ".", + 165955, + 165955, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-1", + 165956, + 165962, + { + "value": "pb-sm-1" + } + ], + [ + "{-token", + "{", + 165963, + 165963, + null + ], + [ + "ident-token", + "padding-bottom", + 165964, + 165977, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 165978, + 165978, + null + ], + [ + "dimension-token", + ".25rem", + 165979, + 165984, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 165985, + 165985, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 165986, + 165994, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 165995, + 165995, + null + ], + [ + "delim-token", + ".", + 165996, + 165996, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-2", + 165997, + 166003, + { + "value": "pb-sm-2" + } + ], + [ + "{-token", + "{", + 166004, + 166004, + null + ], + [ + "ident-token", + "padding-bottom", + 166005, + 166018, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 166019, + 166019, + null + ], + [ + "dimension-token", + ".5rem", + 166020, + 166024, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166025, + 166025, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166026, + 166034, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166035, + 166035, + null + ], + [ + "delim-token", + ".", + 166036, + 166036, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-3", + 166037, + 166043, + { + "value": "pb-sm-3" + } + ], + [ + "{-token", + "{", + 166044, + 166044, + null + ], + [ + "ident-token", + "padding-bottom", + 166045, + 166058, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 166059, + 166059, + null + ], + [ + "dimension-token", + "1rem", + 166060, + 166063, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166064, + 166064, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166065, + 166073, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166074, + 166074, + null + ], + [ + "delim-token", + ".", + 166075, + 166075, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-4", + 166076, + 166082, + { + "value": "pb-sm-4" + } + ], + [ + "{-token", + "{", + 166083, + 166083, + null + ], + [ + "ident-token", + "padding-bottom", + 166084, + 166097, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 166098, + 166098, + null + ], + [ + "dimension-token", + "1.5rem", + 166099, + 166104, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166105, + 166105, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166106, + 166114, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166115, + 166115, + null + ], + [ + "delim-token", + ".", + 166116, + 166116, + { + "value": "." + } + ], + [ + "ident-token", + "pb-sm-5", + 166117, + 166123, + { + "value": "pb-sm-5" + } + ], + [ + "{-token", + "{", + 166124, + 166124, + null + ], + [ + "ident-token", + "padding-bottom", + 166125, + 166138, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 166139, + 166139, + null + ], + [ + "dimension-token", + "3rem", + 166140, + 166143, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166144, + 166144, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166145, + 166153, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166154, + 166154, + null + ], + [ + "delim-token", + ".", + 166155, + 166155, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-0", + 166156, + 166162, + { + "value": "ps-sm-0" + } + ], + [ + "{-token", + "{", + 166163, + 166163, + null + ], + [ + "ident-token", + "padding-left", + 166164, + 166175, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166176, + 166176, + null + ], + [ + "number-token", + "0", + 166177, + 166177, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 166178, + 166178, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166179, + 166187, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166188, + 166188, + null + ], + [ + "delim-token", + ".", + 166189, + 166189, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-1", + 166190, + 166196, + { + "value": "ps-sm-1" + } + ], + [ + "{-token", + "{", + 166197, + 166197, + null + ], + [ + "ident-token", + "padding-left", + 166198, + 166209, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166210, + 166210, + null + ], + [ + "dimension-token", + ".25rem", + 166211, + 166216, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166217, + 166217, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166218, + 166226, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166227, + 166227, + null + ], + [ + "delim-token", + ".", + 166228, + 166228, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-2", + 166229, + 166235, + { + "value": "ps-sm-2" + } + ], + [ + "{-token", + "{", + 166236, + 166236, + null + ], + [ + "ident-token", + "padding-left", + 166237, + 166248, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166249, + 166249, + null + ], + [ + "dimension-token", + ".5rem", + 166250, + 166254, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166255, + 166255, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166256, + 166264, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166265, + 166265, + null + ], + [ + "delim-token", + ".", + 166266, + 166266, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-3", + 166267, + 166273, + { + "value": "ps-sm-3" + } + ], + [ + "{-token", + "{", + 166274, + 166274, + null + ], + [ + "ident-token", + "padding-left", + 166275, + 166286, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166287, + 166287, + null + ], + [ + "dimension-token", + "1rem", + 166288, + 166291, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166292, + 166292, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166293, + 166301, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166302, + 166302, + null + ], + [ + "delim-token", + ".", + 166303, + 166303, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-4", + 166304, + 166310, + { + "value": "ps-sm-4" + } + ], + [ + "{-token", + "{", + 166311, + 166311, + null + ], + [ + "ident-token", + "padding-left", + 166312, + 166323, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166324, + 166324, + null + ], + [ + "dimension-token", + "1.5rem", + 166325, + 166330, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166331, + 166331, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166332, + 166340, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166341, + 166341, + null + ], + [ + "delim-token", + ".", + 166342, + 166342, + { + "value": "." + } + ], + [ + "ident-token", + "ps-sm-5", + 166343, + 166349, + { + "value": "ps-sm-5" + } + ], + [ + "{-token", + "{", + 166350, + 166350, + null + ], + [ + "ident-token", + "padding-left", + 166351, + 166362, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 166363, + 166363, + null + ], + [ + "dimension-token", + "3rem", + 166364, + 166367, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166368, + 166368, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166369, + 166377, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166378, + 166378, + null + ], + [ + "delim-token", + ".", + 166379, + 166379, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-0", + 166380, + 166387, + { + "value": "gap-sm-0" + } + ], + [ + "{-token", + "{", + 166388, + 166388, + null + ], + [ + "ident-token", + "gap", + 166389, + 166391, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166392, + 166392, + null + ], + [ + "number-token", + "0", + 166393, + 166393, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 166394, + 166394, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166395, + 166403, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166404, + 166404, + null + ], + [ + "delim-token", + ".", + 166405, + 166405, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-1", + 166406, + 166413, + { + "value": "gap-sm-1" + } + ], + [ + "{-token", + "{", + 166414, + 166414, + null + ], + [ + "ident-token", + "gap", + 166415, + 166417, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166418, + 166418, + null + ], + [ + "dimension-token", + ".25rem", + 166419, + 166424, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166425, + 166425, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166426, + 166434, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166435, + 166435, + null + ], + [ + "delim-token", + ".", + 166436, + 166436, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-2", + 166437, + 166444, + { + "value": "gap-sm-2" + } + ], + [ + "{-token", + "{", + 166445, + 166445, + null + ], + [ + "ident-token", + "gap", + 166446, + 166448, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166449, + 166449, + null + ], + [ + "dimension-token", + ".5rem", + 166450, + 166454, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166455, + 166455, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166456, + 166464, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166465, + 166465, + null + ], + [ + "delim-token", + ".", + 166466, + 166466, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-3", + 166467, + 166474, + { + "value": "gap-sm-3" + } + ], + [ + "{-token", + "{", + 166475, + 166475, + null + ], + [ + "ident-token", + "gap", + 166476, + 166478, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166479, + 166479, + null + ], + [ + "dimension-token", + "1rem", + 166480, + 166483, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166484, + 166484, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166485, + 166493, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166494, + 166494, + null + ], + [ + "delim-token", + ".", + 166495, + 166495, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-4", + 166496, + 166503, + { + "value": "gap-sm-4" + } + ], + [ + "{-token", + "{", + 166504, + 166504, + null + ], + [ + "ident-token", + "gap", + 166505, + 166507, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166508, + 166508, + null + ], + [ + "dimension-token", + "1.5rem", + 166509, + 166514, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166515, + 166515, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166516, + 166524, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166525, + 166525, + null + ], + [ + "delim-token", + ".", + 166526, + 166526, + { + "value": "." + } + ], + [ + "ident-token", + "gap-sm-5", + 166527, + 166534, + { + "value": "gap-sm-5" + } + ], + [ + "{-token", + "{", + 166535, + 166535, + null + ], + [ + "ident-token", + "gap", + 166536, + 166538, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 166539, + 166539, + null + ], + [ + "dimension-token", + "3rem", + 166540, + 166543, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 166544, + 166544, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166545, + 166553, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166554, + 166554, + null + ], + [ + "delim-token", + ".", + 166555, + 166555, + { + "value": "." + } + ], + [ + "ident-token", + "text-sm-start", + 166556, + 166568, + { + "value": "text-sm-start" + } + ], + [ + "{-token", + "{", + 166569, + 166569, + null + ], + [ + "ident-token", + "text-align", + 166570, + 166579, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 166580, + 166580, + null + ], + [ + "ident-token", + "left", + 166581, + 166584, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 166585, + 166585, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166586, + 166594, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166595, + 166595, + null + ], + [ + "delim-token", + ".", + 166596, + 166596, + { + "value": "." + } + ], + [ + "ident-token", + "text-sm-end", + 166597, + 166607, + { + "value": "text-sm-end" + } + ], + [ + "{-token", + "{", + 166608, + 166608, + null + ], + [ + "ident-token", + "text-align", + 166609, + 166618, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 166619, + 166619, + null + ], + [ + "ident-token", + "right", + 166620, + 166624, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 166625, + 166625, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166626, + 166634, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166635, + 166635, + null + ], + [ + "delim-token", + ".", + 166636, + 166636, + { + "value": "." + } + ], + [ + "ident-token", + "text-sm-center", + 166637, + 166650, + { + "value": "text-sm-center" + } + ], + [ + "{-token", + "{", + 166651, + 166651, + null + ], + [ + "ident-token", + "text-align", + 166652, + 166661, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 166662, + 166662, + null + ], + [ + "ident-token", + "center", + 166663, + 166668, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 166669, + 166669, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166670, + 166678, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166679, + 166679, + null + ], + [ + "}-token", + "}", + 166680, + 166680, + null + ], + [ + "at-keyword-token", + "@media", + 166681, + 166686, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 166687, + 166687, + null + ], + [ + "(-token", + "(", + 166688, + 166688, + null + ], + [ + "ident-token", + "min-width", + 166689, + 166697, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 166698, + 166698, + null + ], + [ + "dimension-token", + "768px", + 166699, + 166703, + { + "value": 768, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 166704, + 166704, + null + ], + [ + "{-token", + "{", + 166705, + 166705, + null + ], + [ + "delim-token", + ".", + 166706, + 166706, + { + "value": "." + } + ], + [ + "ident-token", + "float-md-start", + 166707, + 166720, + { + "value": "float-md-start" + } + ], + [ + "{-token", + "{", + 166721, + 166721, + null + ], + [ + "ident-token", + "float", + 166722, + 166726, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 166727, + 166727, + null + ], + [ + "ident-token", + "left", + 166728, + 166731, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 166732, + 166732, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166733, + 166741, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166742, + 166742, + null + ], + [ + "delim-token", + ".", + 166743, + 166743, + { + "value": "." + } + ], + [ + "ident-token", + "float-md-end", + 166744, + 166755, + { + "value": "float-md-end" + } + ], + [ + "{-token", + "{", + 166756, + 166756, + null + ], + [ + "ident-token", + "float", + 166757, + 166761, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 166762, + 166762, + null + ], + [ + "ident-token", + "right", + 166763, + 166767, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 166768, + 166768, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166769, + 166777, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166778, + 166778, + null + ], + [ + "delim-token", + ".", + 166779, + 166779, + { + "value": "." + } + ], + [ + "ident-token", + "float-md-none", + 166780, + 166792, + { + "value": "float-md-none" + } + ], + [ + "{-token", + "{", + 166793, + 166793, + null + ], + [ + "ident-token", + "float", + 166794, + 166798, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 166799, + 166799, + null + ], + [ + "ident-token", + "none", + 166800, + 166803, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 166804, + 166804, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166805, + 166813, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166814, + 166814, + null + ], + [ + "delim-token", + ".", + 166815, + 166815, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-inline", + 166816, + 166826, + { + "value": "d-md-inline" + } + ], + [ + "{-token", + "{", + 166827, + 166827, + null + ], + [ + "ident-token", + "display", + 166828, + 166834, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 166835, + 166835, + null + ], + [ + "ident-token", + "inline", + 166836, + 166841, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 166842, + 166842, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166843, + 166851, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166852, + 166852, + null + ], + [ + "delim-token", + ".", + 166853, + 166853, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-inline-block", + 166854, + 166870, + { + "value": "d-md-inline-block" + } + ], + [ + "{-token", + "{", + 166871, + 166871, + null + ], + [ + "ident-token", + "display", + 166872, + 166878, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 166879, + 166879, + null + ], + [ + "ident-token", + "inline-block", + 166880, + 166891, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 166892, + 166892, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166893, + 166901, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166902, + 166902, + null + ], + [ + "delim-token", + ".", + 166903, + 166903, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-block", + 166904, + 166913, + { + "value": "d-md-block" + } + ], + [ + "{-token", + "{", + 166914, + 166914, + null + ], + [ + "ident-token", + "display", + 166915, + 166921, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 166922, + 166922, + null + ], + [ + "ident-token", + "block", + 166923, + 166927, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 166928, + 166928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166929, + 166937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166938, + 166938, + null + ], + [ + "delim-token", + ".", + 166939, + 166939, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-grid", + 166940, + 166948, + { + "value": "d-md-grid" + } + ], + [ + "{-token", + "{", + 166949, + 166949, + null + ], + [ + "ident-token", + "display", + 166950, + 166956, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 166957, + 166957, + null + ], + [ + "ident-token", + "grid", + 166958, + 166961, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 166962, + 166962, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166963, + 166971, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 166972, + 166972, + null + ], + [ + "delim-token", + ".", + 166973, + 166973, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-table", + 166974, + 166983, + { + "value": "d-md-table" + } + ], + [ + "{-token", + "{", + 166984, + 166984, + null + ], + [ + "ident-token", + "display", + 166985, + 166991, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 166992, + 166992, + null + ], + [ + "ident-token", + "table", + 166993, + 166997, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 166998, + 166998, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 166999, + 167007, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167008, + 167008, + null + ], + [ + "delim-token", + ".", + 167009, + 167009, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-table-row", + 167010, + 167023, + { + "value": "d-md-table-row" + } + ], + [ + "{-token", + "{", + 167024, + 167024, + null + ], + [ + "ident-token", + "display", + 167025, + 167031, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 167032, + 167032, + null + ], + [ + "ident-token", + "table-row", + 167033, + 167041, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 167042, + 167042, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167043, + 167051, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167052, + 167052, + null + ], + [ + "delim-token", + ".", + 167053, + 167053, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-table-cell", + 167054, + 167068, + { + "value": "d-md-table-cell" + } + ], + [ + "{-token", + "{", + 167069, + 167069, + null + ], + [ + "ident-token", + "display", + 167070, + 167076, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 167077, + 167077, + null + ], + [ + "ident-token", + "table-cell", + 167078, + 167087, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 167088, + 167088, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167089, + 167097, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167098, + 167098, + null + ], + [ + "delim-token", + ".", + 167099, + 167099, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-flex", + 167100, + 167108, + { + "value": "d-md-flex" + } + ], + [ + "{-token", + "{", + 167109, + 167109, + null + ], + [ + "ident-token", + "display", + 167110, + 167116, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 167117, + 167117, + null + ], + [ + "ident-token", + "flex", + 167118, + 167121, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 167122, + 167122, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167123, + 167131, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167132, + 167132, + null + ], + [ + "delim-token", + ".", + 167133, + 167133, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-inline-flex", + 167134, + 167149, + { + "value": "d-md-inline-flex" + } + ], + [ + "{-token", + "{", + 167150, + 167150, + null + ], + [ + "ident-token", + "display", + 167151, + 167157, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 167158, + 167158, + null + ], + [ + "ident-token", + "inline-flex", + 167159, + 167169, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 167170, + 167170, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167171, + 167179, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167180, + 167180, + null + ], + [ + "delim-token", + ".", + 167181, + 167181, + { + "value": "." + } + ], + [ + "ident-token", + "d-md-none", + 167182, + 167190, + { + "value": "d-md-none" + } + ], + [ + "{-token", + "{", + 167191, + 167191, + null + ], + [ + "ident-token", + "display", + 167192, + 167198, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 167199, + 167199, + null + ], + [ + "ident-token", + "none", + 167200, + 167203, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 167204, + 167204, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167205, + 167213, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167214, + 167214, + null + ], + [ + "delim-token", + ".", + 167215, + 167215, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-fill", + 167216, + 167227, + { + "value": "flex-md-fill" + } + ], + [ + "{-token", + "{", + 167228, + 167228, + null + ], + [ + "ident-token", + "flex", + 167229, + 167232, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 167233, + 167233, + null + ], + [ + "number-token", + "1", + 167234, + 167234, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 167235, + 167235, + null + ], + [ + "number-token", + "1", + 167236, + 167236, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 167237, + 167237, + null + ], + [ + "ident-token", + "auto", + 167238, + 167241, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 167242, + 167242, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167243, + 167251, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167252, + 167252, + null + ], + [ + "delim-token", + ".", + 167253, + 167253, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-row", + 167254, + 167264, + { + "value": "flex-md-row" + } + ], + [ + "{-token", + "{", + 167265, + 167265, + null + ], + [ + "ident-token", + "flex-direction", + 167266, + 167279, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 167280, + 167280, + null + ], + [ + "ident-token", + "row", + 167281, + 167283, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 167284, + 167284, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167285, + 167293, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167294, + 167294, + null + ], + [ + "delim-token", + ".", + 167295, + 167295, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-column", + 167296, + 167309, + { + "value": "flex-md-column" + } + ], + [ + "{-token", + "{", + 167310, + 167310, + null + ], + [ + "ident-token", + "flex-direction", + 167311, + 167324, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 167325, + 167325, + null + ], + [ + "ident-token", + "column", + 167326, + 167331, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 167332, + 167332, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167333, + 167341, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167342, + 167342, + null + ], + [ + "delim-token", + ".", + 167343, + 167343, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-row-reverse", + 167344, + 167362, + { + "value": "flex-md-row-reverse" + } + ], + [ + "{-token", + "{", + 167363, + 167363, + null + ], + [ + "ident-token", + "flex-direction", + 167364, + 167377, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 167378, + 167378, + null + ], + [ + "ident-token", + "row-reverse", + 167379, + 167389, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 167390, + 167390, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167391, + 167399, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167400, + 167400, + null + ], + [ + "delim-token", + ".", + 167401, + 167401, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-column-reverse", + 167402, + 167423, + { + "value": "flex-md-column-reverse" + } + ], + [ + "{-token", + "{", + 167424, + 167424, + null + ], + [ + "ident-token", + "flex-direction", + 167425, + 167438, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 167439, + 167439, + null + ], + [ + "ident-token", + "column-reverse", + 167440, + 167453, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 167454, + 167454, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167455, + 167463, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167464, + 167464, + null + ], + [ + "delim-token", + ".", + 167465, + 167465, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-grow-0", + 167466, + 167479, + { + "value": "flex-md-grow-0" + } + ], + [ + "{-token", + "{", + 167480, + 167480, + null + ], + [ + "ident-token", + "flex-grow", + 167481, + 167489, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 167490, + 167490, + null + ], + [ + "number-token", + "0", + 167491, + 167491, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 167492, + 167492, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167493, + 167501, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167502, + 167502, + null + ], + [ + "delim-token", + ".", + 167503, + 167503, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-grow-1", + 167504, + 167517, + { + "value": "flex-md-grow-1" + } + ], + [ + "{-token", + "{", + 167518, + 167518, + null + ], + [ + "ident-token", + "flex-grow", + 167519, + 167527, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 167528, + 167528, + null + ], + [ + "number-token", + "1", + 167529, + 167529, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 167530, + 167530, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167531, + 167539, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167540, + 167540, + null + ], + [ + "delim-token", + ".", + 167541, + 167541, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-shrink-0", + 167542, + 167557, + { + "value": "flex-md-shrink-0" + } + ], + [ + "{-token", + "{", + 167558, + 167558, + null + ], + [ + "ident-token", + "flex-shrink", + 167559, + 167569, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 167570, + 167570, + null + ], + [ + "number-token", + "0", + 167571, + 167571, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 167572, + 167572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167573, + 167581, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167582, + 167582, + null + ], + [ + "delim-token", + ".", + 167583, + 167583, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-shrink-1", + 167584, + 167599, + { + "value": "flex-md-shrink-1" + } + ], + [ + "{-token", + "{", + 167600, + 167600, + null + ], + [ + "ident-token", + "flex-shrink", + 167601, + 167611, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 167612, + 167612, + null + ], + [ + "number-token", + "1", + 167613, + 167613, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 167614, + 167614, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167615, + 167623, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167624, + 167624, + null + ], + [ + "delim-token", + ".", + 167625, + 167625, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-wrap", + 167626, + 167637, + { + "value": "flex-md-wrap" + } + ], + [ + "{-token", + "{", + 167638, + 167638, + null + ], + [ + "ident-token", + "flex-wrap", + 167639, + 167647, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 167648, + 167648, + null + ], + [ + "ident-token", + "wrap", + 167649, + 167652, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 167653, + 167653, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167654, + 167662, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167663, + 167663, + null + ], + [ + "delim-token", + ".", + 167664, + 167664, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-nowrap", + 167665, + 167678, + { + "value": "flex-md-nowrap" + } + ], + [ + "{-token", + "{", + 167679, + 167679, + null + ], + [ + "ident-token", + "flex-wrap", + 167680, + 167688, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 167689, + 167689, + null + ], + [ + "ident-token", + "nowrap", + 167690, + 167695, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 167696, + 167696, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167697, + 167705, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167706, + 167706, + null + ], + [ + "delim-token", + ".", + 167707, + 167707, + { + "value": "." + } + ], + [ + "ident-token", + "flex-md-wrap-reverse", + 167708, + 167727, + { + "value": "flex-md-wrap-reverse" + } + ], + [ + "{-token", + "{", + 167728, + 167728, + null + ], + [ + "ident-token", + "flex-wrap", + 167729, + 167737, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 167738, + 167738, + null + ], + [ + "ident-token", + "wrap-reverse", + 167739, + 167750, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 167751, + 167751, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167752, + 167760, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167761, + 167761, + null + ], + [ + "delim-token", + ".", + 167762, + 167762, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-start", + 167763, + 167786, + { + "value": "justify-content-md-start" + } + ], + [ + "{-token", + "{", + 167787, + 167787, + null + ], + [ + "ident-token", + "justify-content", + 167788, + 167802, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 167803, + 167803, + null + ], + [ + "ident-token", + "flex-start", + 167804, + 167813, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 167814, + 167814, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167815, + 167823, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167824, + 167824, + null + ], + [ + "delim-token", + ".", + 167825, + 167825, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-end", + 167826, + 167847, + { + "value": "justify-content-md-end" + } + ], + [ + "{-token", + "{", + 167848, + 167848, + null + ], + [ + "ident-token", + "justify-content", + 167849, + 167863, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 167864, + 167864, + null + ], + [ + "ident-token", + "flex-end", + 167865, + 167872, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 167873, + 167873, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167874, + 167882, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167883, + 167883, + null + ], + [ + "delim-token", + ".", + 167884, + 167884, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-center", + 167885, + 167909, + { + "value": "justify-content-md-center" + } + ], + [ + "{-token", + "{", + 167910, + 167910, + null + ], + [ + "ident-token", + "justify-content", + 167911, + 167925, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 167926, + 167926, + null + ], + [ + "ident-token", + "center", + 167927, + 167932, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 167933, + 167933, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 167934, + 167942, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 167943, + 167943, + null + ], + [ + "delim-token", + ".", + 167944, + 167944, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-between", + 167945, + 167970, + { + "value": "justify-content-md-between" + } + ], + [ + "{-token", + "{", + 167971, + 167971, + null + ], + [ + "ident-token", + "justify-content", + 167972, + 167986, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 167987, + 167987, + null + ], + [ + "ident-token", + "space-between", + 167988, + 168000, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 168001, + 168001, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168002, + 168010, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168011, + 168011, + null + ], + [ + "delim-token", + ".", + 168012, + 168012, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-around", + 168013, + 168037, + { + "value": "justify-content-md-around" + } + ], + [ + "{-token", + "{", + 168038, + 168038, + null + ], + [ + "ident-token", + "justify-content", + 168039, + 168053, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 168054, + 168054, + null + ], + [ + "ident-token", + "space-around", + 168055, + 168066, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 168067, + 168067, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168068, + 168076, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168077, + 168077, + null + ], + [ + "delim-token", + ".", + 168078, + 168078, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-md-evenly", + 168079, + 168103, + { + "value": "justify-content-md-evenly" + } + ], + [ + "{-token", + "{", + 168104, + 168104, + null + ], + [ + "ident-token", + "justify-content", + 168105, + 168119, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 168120, + 168120, + null + ], + [ + "ident-token", + "space-evenly", + 168121, + 168132, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 168133, + 168133, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168134, + 168142, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168143, + 168143, + null + ], + [ + "delim-token", + ".", + 168144, + 168144, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-md-start", + 168145, + 168164, + { + "value": "align-items-md-start" + } + ], + [ + "{-token", + "{", + 168165, + 168165, + null + ], + [ + "ident-token", + "align-items", + 168166, + 168176, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 168177, + 168177, + null + ], + [ + "ident-token", + "flex-start", + 168178, + 168187, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 168188, + 168188, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168189, + 168197, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168198, + 168198, + null + ], + [ + "delim-token", + ".", + 168199, + 168199, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-md-end", + 168200, + 168217, + { + "value": "align-items-md-end" + } + ], + [ + "{-token", + "{", + 168218, + 168218, + null + ], + [ + "ident-token", + "align-items", + 168219, + 168229, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 168230, + 168230, + null + ], + [ + "ident-token", + "flex-end", + 168231, + 168238, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 168239, + 168239, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168240, + 168248, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168249, + 168249, + null + ], + [ + "delim-token", + ".", + 168250, + 168250, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-md-center", + 168251, + 168271, + { + "value": "align-items-md-center" + } + ], + [ + "{-token", + "{", + 168272, + 168272, + null + ], + [ + "ident-token", + "align-items", + 168273, + 168283, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 168284, + 168284, + null + ], + [ + "ident-token", + "center", + 168285, + 168290, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 168291, + 168291, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168292, + 168300, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168301, + 168301, + null + ], + [ + "delim-token", + ".", + 168302, + 168302, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-md-baseline", + 168303, + 168325, + { + "value": "align-items-md-baseline" + } + ], + [ + "{-token", + "{", + 168326, + 168326, + null + ], + [ + "ident-token", + "align-items", + 168327, + 168337, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 168338, + 168338, + null + ], + [ + "ident-token", + "baseline", + 168339, + 168346, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 168347, + 168347, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168348, + 168356, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168357, + 168357, + null + ], + [ + "delim-token", + ".", + 168358, + 168358, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-md-stretch", + 168359, + 168380, + { + "value": "align-items-md-stretch" + } + ], + [ + "{-token", + "{", + 168381, + 168381, + null + ], + [ + "ident-token", + "align-items", + 168382, + 168392, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 168393, + 168393, + null + ], + [ + "ident-token", + "stretch", + 168394, + 168400, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 168401, + 168401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168402, + 168410, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168411, + 168411, + null + ], + [ + "delim-token", + ".", + 168412, + 168412, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-start", + 168413, + 168434, + { + "value": "align-content-md-start" + } + ], + [ + "{-token", + "{", + 168435, + 168435, + null + ], + [ + "ident-token", + "align-content", + 168436, + 168448, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168449, + 168449, + null + ], + [ + "ident-token", + "flex-start", + 168450, + 168459, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 168460, + 168460, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168461, + 168469, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168470, + 168470, + null + ], + [ + "delim-token", + ".", + 168471, + 168471, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-end", + 168472, + 168491, + { + "value": "align-content-md-end" + } + ], + [ + "{-token", + "{", + 168492, + 168492, + null + ], + [ + "ident-token", + "align-content", + 168493, + 168505, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168506, + 168506, + null + ], + [ + "ident-token", + "flex-end", + 168507, + 168514, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 168515, + 168515, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168516, + 168524, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168525, + 168525, + null + ], + [ + "delim-token", + ".", + 168526, + 168526, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-center", + 168527, + 168549, + { + "value": "align-content-md-center" + } + ], + [ + "{-token", + "{", + 168550, + 168550, + null + ], + [ + "ident-token", + "align-content", + 168551, + 168563, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168564, + 168564, + null + ], + [ + "ident-token", + "center", + 168565, + 168570, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 168571, + 168571, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168572, + 168580, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168581, + 168581, + null + ], + [ + "delim-token", + ".", + 168582, + 168582, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-between", + 168583, + 168606, + { + "value": "align-content-md-between" + } + ], + [ + "{-token", + "{", + 168607, + 168607, + null + ], + [ + "ident-token", + "align-content", + 168608, + 168620, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168621, + 168621, + null + ], + [ + "ident-token", + "space-between", + 168622, + 168634, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 168635, + 168635, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168636, + 168644, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168645, + 168645, + null + ], + [ + "delim-token", + ".", + 168646, + 168646, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-around", + 168647, + 168669, + { + "value": "align-content-md-around" + } + ], + [ + "{-token", + "{", + 168670, + 168670, + null + ], + [ + "ident-token", + "align-content", + 168671, + 168683, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168684, + 168684, + null + ], + [ + "ident-token", + "space-around", + 168685, + 168696, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 168697, + 168697, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168698, + 168706, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168707, + 168707, + null + ], + [ + "delim-token", + ".", + 168708, + 168708, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-md-stretch", + 168709, + 168732, + { + "value": "align-content-md-stretch" + } + ], + [ + "{-token", + "{", + 168733, + 168733, + null + ], + [ + "ident-token", + "align-content", + 168734, + 168746, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 168747, + 168747, + null + ], + [ + "ident-token", + "stretch", + 168748, + 168754, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 168755, + 168755, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168756, + 168764, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168765, + 168765, + null + ], + [ + "delim-token", + ".", + 168766, + 168766, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-auto", + 168767, + 168784, + { + "value": "align-self-md-auto" + } + ], + [ + "{-token", + "{", + 168785, + 168785, + null + ], + [ + "ident-token", + "align-self", + 168786, + 168795, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 168796, + 168796, + null + ], + [ + "ident-token", + "auto", + 168797, + 168800, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 168801, + 168801, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168802, + 168810, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168811, + 168811, + null + ], + [ + "delim-token", + ".", + 168812, + 168812, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-start", + 168813, + 168831, + { + "value": "align-self-md-start" + } + ], + [ + "{-token", + "{", + 168832, + 168832, + null + ], + [ + "ident-token", + "align-self", + 168833, + 168842, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 168843, + 168843, + null + ], + [ + "ident-token", + "flex-start", + 168844, + 168853, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 168854, + 168854, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168855, + 168863, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168864, + 168864, + null + ], + [ + "delim-token", + ".", + 168865, + 168865, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-end", + 168866, + 168882, + { + "value": "align-self-md-end" + } + ], + [ + "{-token", + "{", + 168883, + 168883, + null + ], + [ + "ident-token", + "align-self", + 168884, + 168893, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 168894, + 168894, + null + ], + [ + "ident-token", + "flex-end", + 168895, + 168902, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 168903, + 168903, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168904, + 168912, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168913, + 168913, + null + ], + [ + "delim-token", + ".", + 168914, + 168914, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-center", + 168915, + 168934, + { + "value": "align-self-md-center" + } + ], + [ + "{-token", + "{", + 168935, + 168935, + null + ], + [ + "ident-token", + "align-self", + 168936, + 168945, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 168946, + 168946, + null + ], + [ + "ident-token", + "center", + 168947, + 168952, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 168953, + 168953, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 168954, + 168962, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 168963, + 168963, + null + ], + [ + "delim-token", + ".", + 168964, + 168964, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-baseline", + 168965, + 168986, + { + "value": "align-self-md-baseline" + } + ], + [ + "{-token", + "{", + 168987, + 168987, + null + ], + [ + "ident-token", + "align-self", + 168988, + 168997, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 168998, + 168998, + null + ], + [ + "ident-token", + "baseline", + 168999, + 169006, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 169007, + 169007, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169008, + 169016, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169017, + 169017, + null + ], + [ + "delim-token", + ".", + 169018, + 169018, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-md-stretch", + 169019, + 169039, + { + "value": "align-self-md-stretch" + } + ], + [ + "{-token", + "{", + 169040, + 169040, + null + ], + [ + "ident-token", + "align-self", + 169041, + 169050, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 169051, + 169051, + null + ], + [ + "ident-token", + "stretch", + 169052, + 169058, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 169059, + 169059, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169060, + 169068, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169069, + 169069, + null + ], + [ + "delim-token", + ".", + 169070, + 169070, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-first", + 169071, + 169084, + { + "value": "order-md-first" + } + ], + [ + "{-token", + "{", + 169085, + 169085, + null + ], + [ + "ident-token", + "order", + 169086, + 169090, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169091, + 169091, + null + ], + [ + "number-token", + "-1", + 169092, + 169093, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169094, + 169094, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169095, + 169103, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169104, + 169104, + null + ], + [ + "delim-token", + ".", + 169105, + 169105, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-0", + 169106, + 169115, + { + "value": "order-md-0" + } + ], + [ + "{-token", + "{", + 169116, + 169116, + null + ], + [ + "ident-token", + "order", + 169117, + 169121, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169122, + 169122, + null + ], + [ + "number-token", + "0", + 169123, + 169123, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169124, + 169124, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169125, + 169133, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169134, + 169134, + null + ], + [ + "delim-token", + ".", + 169135, + 169135, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-1", + 169136, + 169145, + { + "value": "order-md-1" + } + ], + [ + "{-token", + "{", + 169146, + 169146, + null + ], + [ + "ident-token", + "order", + 169147, + 169151, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169152, + 169152, + null + ], + [ + "number-token", + "1", + 169153, + 169153, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169154, + 169154, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169155, + 169163, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169164, + 169164, + null + ], + [ + "delim-token", + ".", + 169165, + 169165, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-2", + 169166, + 169175, + { + "value": "order-md-2" + } + ], + [ + "{-token", + "{", + 169176, + 169176, + null + ], + [ + "ident-token", + "order", + 169177, + 169181, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169182, + 169182, + null + ], + [ + "number-token", + "2", + 169183, + 169183, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169184, + 169184, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169185, + 169193, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169194, + 169194, + null + ], + [ + "delim-token", + ".", + 169195, + 169195, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-3", + 169196, + 169205, + { + "value": "order-md-3" + } + ], + [ + "{-token", + "{", + 169206, + 169206, + null + ], + [ + "ident-token", + "order", + 169207, + 169211, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169212, + 169212, + null + ], + [ + "number-token", + "3", + 169213, + 169213, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169214, + 169214, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169215, + 169223, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169224, + 169224, + null + ], + [ + "delim-token", + ".", + 169225, + 169225, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-4", + 169226, + 169235, + { + "value": "order-md-4" + } + ], + [ + "{-token", + "{", + 169236, + 169236, + null + ], + [ + "ident-token", + "order", + 169237, + 169241, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169242, + 169242, + null + ], + [ + "number-token", + "4", + 169243, + 169243, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169244, + 169244, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169245, + 169253, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169254, + 169254, + null + ], + [ + "delim-token", + ".", + 169255, + 169255, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-5", + 169256, + 169265, + { + "value": "order-md-5" + } + ], + [ + "{-token", + "{", + 169266, + 169266, + null + ], + [ + "ident-token", + "order", + 169267, + 169271, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169272, + 169272, + null + ], + [ + "number-token", + "5", + 169273, + 169273, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169274, + 169274, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169275, + 169283, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169284, + 169284, + null + ], + [ + "delim-token", + ".", + 169285, + 169285, + { + "value": "." + } + ], + [ + "ident-token", + "order-md-last", + 169286, + 169298, + { + "value": "order-md-last" + } + ], + [ + "{-token", + "{", + 169299, + 169299, + null + ], + [ + "ident-token", + "order", + 169300, + 169304, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 169305, + 169305, + null + ], + [ + "number-token", + "6", + 169306, + 169306, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169307, + 169307, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169308, + 169316, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169317, + 169317, + null + ], + [ + "delim-token", + ".", + 169318, + 169318, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-0", + 169319, + 169324, + { + "value": "m-md-0" + } + ], + [ + "{-token", + "{", + 169325, + 169325, + null + ], + [ + "ident-token", + "margin", + 169326, + 169331, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169332, + 169332, + null + ], + [ + "number-token", + "0", + 169333, + 169333, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169334, + 169334, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169335, + 169343, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169344, + 169344, + null + ], + [ + "delim-token", + ".", + 169345, + 169345, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-1", + 169346, + 169351, + { + "value": "m-md-1" + } + ], + [ + "{-token", + "{", + 169352, + 169352, + null + ], + [ + "ident-token", + "margin", + 169353, + 169358, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169359, + 169359, + null + ], + [ + "dimension-token", + ".25rem", + 169360, + 169365, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169366, + 169366, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169367, + 169375, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169376, + 169376, + null + ], + [ + "delim-token", + ".", + 169377, + 169377, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-2", + 169378, + 169383, + { + "value": "m-md-2" + } + ], + [ + "{-token", + "{", + 169384, + 169384, + null + ], + [ + "ident-token", + "margin", + 169385, + 169390, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169391, + 169391, + null + ], + [ + "dimension-token", + ".5rem", + 169392, + 169396, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169397, + 169397, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169398, + 169406, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169407, + 169407, + null + ], + [ + "delim-token", + ".", + 169408, + 169408, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-3", + 169409, + 169414, + { + "value": "m-md-3" + } + ], + [ + "{-token", + "{", + 169415, + 169415, + null + ], + [ + "ident-token", + "margin", + 169416, + 169421, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169422, + 169422, + null + ], + [ + "dimension-token", + "1rem", + 169423, + 169426, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169427, + 169427, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169428, + 169436, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169437, + 169437, + null + ], + [ + "delim-token", + ".", + 169438, + 169438, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-4", + 169439, + 169444, + { + "value": "m-md-4" + } + ], + [ + "{-token", + "{", + 169445, + 169445, + null + ], + [ + "ident-token", + "margin", + 169446, + 169451, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169452, + 169452, + null + ], + [ + "dimension-token", + "1.5rem", + 169453, + 169458, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169459, + 169459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169460, + 169468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169469, + 169469, + null + ], + [ + "delim-token", + ".", + 169470, + 169470, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-5", + 169471, + 169476, + { + "value": "m-md-5" + } + ], + [ + "{-token", + "{", + 169477, + 169477, + null + ], + [ + "ident-token", + "margin", + 169478, + 169483, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169484, + 169484, + null + ], + [ + "dimension-token", + "3rem", + 169485, + 169488, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169489, + 169489, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169490, + 169498, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169499, + 169499, + null + ], + [ + "delim-token", + ".", + 169500, + 169500, + { + "value": "." + } + ], + [ + "ident-token", + "m-md-auto", + 169501, + 169509, + { + "value": "m-md-auto" + } + ], + [ + "{-token", + "{", + 169510, + 169510, + null + ], + [ + "ident-token", + "margin", + 169511, + 169516, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 169517, + 169517, + null + ], + [ + "ident-token", + "auto", + 169518, + 169521, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 169522, + 169522, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169523, + 169531, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169532, + 169532, + null + ], + [ + "delim-token", + ".", + 169533, + 169533, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-0", + 169534, + 169540, + { + "value": "mx-md-0" + } + ], + [ + "{-token", + "{", + 169541, + 169541, + null + ], + [ + "ident-token", + "margin-right", + 169542, + 169553, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169554, + 169554, + null + ], + [ + "number-token", + "0", + 169555, + 169555, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169556, + 169556, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169557, + 169565, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169566, + 169566, + null + ], + [ + "ident-token", + "margin-left", + 169567, + 169577, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169578, + 169578, + null + ], + [ + "number-token", + "0", + 169579, + 169579, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 169580, + 169580, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169581, + 169589, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169590, + 169590, + null + ], + [ + "delim-token", + ".", + 169591, + 169591, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-1", + 169592, + 169598, + { + "value": "mx-md-1" + } + ], + [ + "{-token", + "{", + 169599, + 169599, + null + ], + [ + "ident-token", + "margin-right", + 169600, + 169611, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169612, + 169612, + null + ], + [ + "dimension-token", + ".25rem", + 169613, + 169618, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169619, + 169619, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169620, + 169628, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169629, + 169629, + null + ], + [ + "ident-token", + "margin-left", + 169630, + 169640, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169641, + 169641, + null + ], + [ + "dimension-token", + ".25rem", + 169642, + 169647, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169648, + 169648, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169649, + 169657, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169658, + 169658, + null + ], + [ + "delim-token", + ".", + 169659, + 169659, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-2", + 169660, + 169666, + { + "value": "mx-md-2" + } + ], + [ + "{-token", + "{", + 169667, + 169667, + null + ], + [ + "ident-token", + "margin-right", + 169668, + 169679, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169680, + 169680, + null + ], + [ + "dimension-token", + ".5rem", + 169681, + 169685, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169686, + 169686, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169687, + 169695, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169696, + 169696, + null + ], + [ + "ident-token", + "margin-left", + 169697, + 169707, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169708, + 169708, + null + ], + [ + "dimension-token", + ".5rem", + 169709, + 169713, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169714, + 169714, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169715, + 169723, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169724, + 169724, + null + ], + [ + "delim-token", + ".", + 169725, + 169725, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-3", + 169726, + 169732, + { + "value": "mx-md-3" + } + ], + [ + "{-token", + "{", + 169733, + 169733, + null + ], + [ + "ident-token", + "margin-right", + 169734, + 169745, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169746, + 169746, + null + ], + [ + "dimension-token", + "1rem", + 169747, + 169750, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169751, + 169751, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169752, + 169760, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169761, + 169761, + null + ], + [ + "ident-token", + "margin-left", + 169762, + 169772, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169773, + 169773, + null + ], + [ + "dimension-token", + "1rem", + 169774, + 169777, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169778, + 169778, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169779, + 169787, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169788, + 169788, + null + ], + [ + "delim-token", + ".", + 169789, + 169789, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-4", + 169790, + 169796, + { + "value": "mx-md-4" + } + ], + [ + "{-token", + "{", + 169797, + 169797, + null + ], + [ + "ident-token", + "margin-right", + 169798, + 169809, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169810, + 169810, + null + ], + [ + "dimension-token", + "1.5rem", + 169811, + 169816, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169817, + 169817, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169818, + 169826, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169827, + 169827, + null + ], + [ + "ident-token", + "margin-left", + 169828, + 169838, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169839, + 169839, + null + ], + [ + "dimension-token", + "1.5rem", + 169840, + 169845, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169846, + 169846, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169847, + 169855, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169856, + 169856, + null + ], + [ + "delim-token", + ".", + 169857, + 169857, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-5", + 169858, + 169864, + { + "value": "mx-md-5" + } + ], + [ + "{-token", + "{", + 169865, + 169865, + null + ], + [ + "ident-token", + "margin-right", + 169866, + 169877, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169878, + 169878, + null + ], + [ + "dimension-token", + "3rem", + 169879, + 169882, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169883, + 169883, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169884, + 169892, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169893, + 169893, + null + ], + [ + "ident-token", + "margin-left", + 169894, + 169904, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169905, + 169905, + null + ], + [ + "dimension-token", + "3rem", + 169906, + 169909, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 169910, + 169910, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169911, + 169919, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169920, + 169920, + null + ], + [ + "delim-token", + ".", + 169921, + 169921, + { + "value": "." + } + ], + [ + "ident-token", + "mx-md-auto", + 169922, + 169931, + { + "value": "mx-md-auto" + } + ], + [ + "{-token", + "{", + 169932, + 169932, + null + ], + [ + "ident-token", + "margin-right", + 169933, + 169944, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 169945, + 169945, + null + ], + [ + "ident-token", + "auto", + 169946, + 169949, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 169950, + 169950, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169951, + 169959, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 169960, + 169960, + null + ], + [ + "ident-token", + "margin-left", + 169961, + 169971, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 169972, + 169972, + null + ], + [ + "ident-token", + "auto", + 169973, + 169976, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 169977, + 169977, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 169978, + 169986, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 169987, + 169987, + null + ], + [ + "delim-token", + ".", + 169988, + 169988, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-0", + 169989, + 169995, + { + "value": "my-md-0" + } + ], + [ + "{-token", + "{", + 169996, + 169996, + null + ], + [ + "ident-token", + "margin-top", + 169997, + 170006, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170007, + 170007, + null + ], + [ + "number-token", + "0", + 170008, + 170008, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 170009, + 170009, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170010, + 170018, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170019, + 170019, + null + ], + [ + "ident-token", + "margin-bottom", + 170020, + 170032, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170033, + 170033, + null + ], + [ + "number-token", + "0", + 170034, + 170034, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 170035, + 170035, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170036, + 170044, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170045, + 170045, + null + ], + [ + "delim-token", + ".", + 170046, + 170046, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-1", + 170047, + 170053, + { + "value": "my-md-1" + } + ], + [ + "{-token", + "{", + 170054, + 170054, + null + ], + [ + "ident-token", + "margin-top", + 170055, + 170064, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170065, + 170065, + null + ], + [ + "dimension-token", + ".25rem", + 170066, + 170071, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170072, + 170072, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170073, + 170081, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170082, + 170082, + null + ], + [ + "ident-token", + "margin-bottom", + 170083, + 170095, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170096, + 170096, + null + ], + [ + "dimension-token", + ".25rem", + 170097, + 170102, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170103, + 170103, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170104, + 170112, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170113, + 170113, + null + ], + [ + "delim-token", + ".", + 170114, + 170114, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-2", + 170115, + 170121, + { + "value": "my-md-2" + } + ], + [ + "{-token", + "{", + 170122, + 170122, + null + ], + [ + "ident-token", + "margin-top", + 170123, + 170132, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170133, + 170133, + null + ], + [ + "dimension-token", + ".5rem", + 170134, + 170138, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170139, + 170139, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170140, + 170148, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170149, + 170149, + null + ], + [ + "ident-token", + "margin-bottom", + 170150, + 170162, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170163, + 170163, + null + ], + [ + "dimension-token", + ".5rem", + 170164, + 170168, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170169, + 170169, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170170, + 170178, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170179, + 170179, + null + ], + [ + "delim-token", + ".", + 170180, + 170180, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-3", + 170181, + 170187, + { + "value": "my-md-3" + } + ], + [ + "{-token", + "{", + 170188, + 170188, + null + ], + [ + "ident-token", + "margin-top", + 170189, + 170198, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170199, + 170199, + null + ], + [ + "dimension-token", + "1rem", + 170200, + 170203, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170204, + 170204, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170205, + 170213, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170214, + 170214, + null + ], + [ + "ident-token", + "margin-bottom", + 170215, + 170227, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170228, + 170228, + null + ], + [ + "dimension-token", + "1rem", + 170229, + 170232, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170233, + 170233, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170234, + 170242, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170243, + 170243, + null + ], + [ + "delim-token", + ".", + 170244, + 170244, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-4", + 170245, + 170251, + { + "value": "my-md-4" + } + ], + [ + "{-token", + "{", + 170252, + 170252, + null + ], + [ + "ident-token", + "margin-top", + 170253, + 170262, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170263, + 170263, + null + ], + [ + "dimension-token", + "1.5rem", + 170264, + 170269, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170270, + 170270, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170271, + 170279, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170280, + 170280, + null + ], + [ + "ident-token", + "margin-bottom", + 170281, + 170293, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170294, + 170294, + null + ], + [ + "dimension-token", + "1.5rem", + 170295, + 170300, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170301, + 170301, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170302, + 170310, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170311, + 170311, + null + ], + [ + "delim-token", + ".", + 170312, + 170312, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-5", + 170313, + 170319, + { + "value": "my-md-5" + } + ], + [ + "{-token", + "{", + 170320, + 170320, + null + ], + [ + "ident-token", + "margin-top", + 170321, + 170330, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170331, + 170331, + null + ], + [ + "dimension-token", + "3rem", + 170332, + 170335, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170336, + 170336, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170337, + 170345, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170346, + 170346, + null + ], + [ + "ident-token", + "margin-bottom", + 170347, + 170359, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170360, + 170360, + null + ], + [ + "dimension-token", + "3rem", + 170361, + 170364, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170365, + 170365, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170366, + 170374, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170375, + 170375, + null + ], + [ + "delim-token", + ".", + 170376, + 170376, + { + "value": "." + } + ], + [ + "ident-token", + "my-md-auto", + 170377, + 170386, + { + "value": "my-md-auto" + } + ], + [ + "{-token", + "{", + 170387, + 170387, + null + ], + [ + "ident-token", + "margin-top", + 170388, + 170397, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170398, + 170398, + null + ], + [ + "ident-token", + "auto", + 170399, + 170402, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 170403, + 170403, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170404, + 170412, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 170413, + 170413, + null + ], + [ + "ident-token", + "margin-bottom", + 170414, + 170426, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170427, + 170427, + null + ], + [ + "ident-token", + "auto", + 170428, + 170431, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 170432, + 170432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170433, + 170441, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170442, + 170442, + null + ], + [ + "delim-token", + ".", + 170443, + 170443, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-0", + 170444, + 170450, + { + "value": "mt-md-0" + } + ], + [ + "{-token", + "{", + 170451, + 170451, + null + ], + [ + "ident-token", + "margin-top", + 170452, + 170461, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170462, + 170462, + null + ], + [ + "number-token", + "0", + 170463, + 170463, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 170464, + 170464, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170465, + 170473, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170474, + 170474, + null + ], + [ + "delim-token", + ".", + 170475, + 170475, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-1", + 170476, + 170482, + { + "value": "mt-md-1" + } + ], + [ + "{-token", + "{", + 170483, + 170483, + null + ], + [ + "ident-token", + "margin-top", + 170484, + 170493, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170494, + 170494, + null + ], + [ + "dimension-token", + ".25rem", + 170495, + 170500, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170501, + 170501, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170502, + 170510, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170511, + 170511, + null + ], + [ + "delim-token", + ".", + 170512, + 170512, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-2", + 170513, + 170519, + { + "value": "mt-md-2" + } + ], + [ + "{-token", + "{", + 170520, + 170520, + null + ], + [ + "ident-token", + "margin-top", + 170521, + 170530, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170531, + 170531, + null + ], + [ + "dimension-token", + ".5rem", + 170532, + 170536, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170537, + 170537, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170538, + 170546, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170547, + 170547, + null + ], + [ + "delim-token", + ".", + 170548, + 170548, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-3", + 170549, + 170555, + { + "value": "mt-md-3" + } + ], + [ + "{-token", + "{", + 170556, + 170556, + null + ], + [ + "ident-token", + "margin-top", + 170557, + 170566, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170567, + 170567, + null + ], + [ + "dimension-token", + "1rem", + 170568, + 170571, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170572, + 170572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170573, + 170581, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170582, + 170582, + null + ], + [ + "delim-token", + ".", + 170583, + 170583, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-4", + 170584, + 170590, + { + "value": "mt-md-4" + } + ], + [ + "{-token", + "{", + 170591, + 170591, + null + ], + [ + "ident-token", + "margin-top", + 170592, + 170601, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170602, + 170602, + null + ], + [ + "dimension-token", + "1.5rem", + 170603, + 170608, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170609, + 170609, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170610, + 170618, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170619, + 170619, + null + ], + [ + "delim-token", + ".", + 170620, + 170620, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-5", + 170621, + 170627, + { + "value": "mt-md-5" + } + ], + [ + "{-token", + "{", + 170628, + 170628, + null + ], + [ + "ident-token", + "margin-top", + 170629, + 170638, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170639, + 170639, + null + ], + [ + "dimension-token", + "3rem", + 170640, + 170643, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170644, + 170644, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170645, + 170653, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170654, + 170654, + null + ], + [ + "delim-token", + ".", + 170655, + 170655, + { + "value": "." + } + ], + [ + "ident-token", + "mt-md-auto", + 170656, + 170665, + { + "value": "mt-md-auto" + } + ], + [ + "{-token", + "{", + 170666, + 170666, + null + ], + [ + "ident-token", + "margin-top", + 170667, + 170676, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 170677, + 170677, + null + ], + [ + "ident-token", + "auto", + 170678, + 170681, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 170682, + 170682, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170683, + 170691, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170692, + 170692, + null + ], + [ + "delim-token", + ".", + 170693, + 170693, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-0", + 170694, + 170700, + { + "value": "me-md-0" + } + ], + [ + "{-token", + "{", + 170701, + 170701, + null + ], + [ + "ident-token", + "margin-right", + 170702, + 170713, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170714, + 170714, + null + ], + [ + "number-token", + "0", + 170715, + 170715, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 170716, + 170716, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170717, + 170725, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170726, + 170726, + null + ], + [ + "delim-token", + ".", + 170727, + 170727, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-1", + 170728, + 170734, + { + "value": "me-md-1" + } + ], + [ + "{-token", + "{", + 170735, + 170735, + null + ], + [ + "ident-token", + "margin-right", + 170736, + 170747, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170748, + 170748, + null + ], + [ + "dimension-token", + ".25rem", + 170749, + 170754, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170755, + 170755, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170756, + 170764, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170765, + 170765, + null + ], + [ + "delim-token", + ".", + 170766, + 170766, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-2", + 170767, + 170773, + { + "value": "me-md-2" + } + ], + [ + "{-token", + "{", + 170774, + 170774, + null + ], + [ + "ident-token", + "margin-right", + 170775, + 170786, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170787, + 170787, + null + ], + [ + "dimension-token", + ".5rem", + 170788, + 170792, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170793, + 170793, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170794, + 170802, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170803, + 170803, + null + ], + [ + "delim-token", + ".", + 170804, + 170804, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-3", + 170805, + 170811, + { + "value": "me-md-3" + } + ], + [ + "{-token", + "{", + 170812, + 170812, + null + ], + [ + "ident-token", + "margin-right", + 170813, + 170824, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170825, + 170825, + null + ], + [ + "dimension-token", + "1rem", + 170826, + 170829, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170830, + 170830, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170831, + 170839, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170840, + 170840, + null + ], + [ + "delim-token", + ".", + 170841, + 170841, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-4", + 170842, + 170848, + { + "value": "me-md-4" + } + ], + [ + "{-token", + "{", + 170849, + 170849, + null + ], + [ + "ident-token", + "margin-right", + 170850, + 170861, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170862, + 170862, + null + ], + [ + "dimension-token", + "1.5rem", + 170863, + 170868, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170869, + 170869, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170870, + 170878, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170879, + 170879, + null + ], + [ + "delim-token", + ".", + 170880, + 170880, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-5", + 170881, + 170887, + { + "value": "me-md-5" + } + ], + [ + "{-token", + "{", + 170888, + 170888, + null + ], + [ + "ident-token", + "margin-right", + 170889, + 170900, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170901, + 170901, + null + ], + [ + "dimension-token", + "3rem", + 170902, + 170905, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 170906, + 170906, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170907, + 170915, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170916, + 170916, + null + ], + [ + "delim-token", + ".", + 170917, + 170917, + { + "value": "." + } + ], + [ + "ident-token", + "me-md-auto", + 170918, + 170927, + { + "value": "me-md-auto" + } + ], + [ + "{-token", + "{", + 170928, + 170928, + null + ], + [ + "ident-token", + "margin-right", + 170929, + 170940, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 170941, + 170941, + null + ], + [ + "ident-token", + "auto", + 170942, + 170945, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 170946, + 170946, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170947, + 170955, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170956, + 170956, + null + ], + [ + "delim-token", + ".", + 170957, + 170957, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-0", + 170958, + 170964, + { + "value": "mb-md-0" + } + ], + [ + "{-token", + "{", + 170965, + 170965, + null + ], + [ + "ident-token", + "margin-bottom", + 170966, + 170978, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 170979, + 170979, + null + ], + [ + "number-token", + "0", + 170980, + 170980, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 170981, + 170981, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 170982, + 170990, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 170991, + 170991, + null + ], + [ + "delim-token", + ".", + 170992, + 170992, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-1", + 170993, + 170999, + { + "value": "mb-md-1" + } + ], + [ + "{-token", + "{", + 171000, + 171000, + null + ], + [ + "ident-token", + "margin-bottom", + 171001, + 171013, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171014, + 171014, + null + ], + [ + "dimension-token", + ".25rem", + 171015, + 171020, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171021, + 171021, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171022, + 171030, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171031, + 171031, + null + ], + [ + "delim-token", + ".", + 171032, + 171032, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-2", + 171033, + 171039, + { + "value": "mb-md-2" + } + ], + [ + "{-token", + "{", + 171040, + 171040, + null + ], + [ + "ident-token", + "margin-bottom", + 171041, + 171053, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171054, + 171054, + null + ], + [ + "dimension-token", + ".5rem", + 171055, + 171059, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171060, + 171060, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171061, + 171069, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171070, + 171070, + null + ], + [ + "delim-token", + ".", + 171071, + 171071, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-3", + 171072, + 171078, + { + "value": "mb-md-3" + } + ], + [ + "{-token", + "{", + 171079, + 171079, + null + ], + [ + "ident-token", + "margin-bottom", + 171080, + 171092, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171093, + 171093, + null + ], + [ + "dimension-token", + "1rem", + 171094, + 171097, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171098, + 171098, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171099, + 171107, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171108, + 171108, + null + ], + [ + "delim-token", + ".", + 171109, + 171109, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-4", + 171110, + 171116, + { + "value": "mb-md-4" + } + ], + [ + "{-token", + "{", + 171117, + 171117, + null + ], + [ + "ident-token", + "margin-bottom", + 171118, + 171130, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171131, + 171131, + null + ], + [ + "dimension-token", + "1.5rem", + 171132, + 171137, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171138, + 171138, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171139, + 171147, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171148, + 171148, + null + ], + [ + "delim-token", + ".", + 171149, + 171149, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-5", + 171150, + 171156, + { + "value": "mb-md-5" + } + ], + [ + "{-token", + "{", + 171157, + 171157, + null + ], + [ + "ident-token", + "margin-bottom", + 171158, + 171170, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171171, + 171171, + null + ], + [ + "dimension-token", + "3rem", + 171172, + 171175, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171176, + 171176, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171177, + 171185, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171186, + 171186, + null + ], + [ + "delim-token", + ".", + 171187, + 171187, + { + "value": "." + } + ], + [ + "ident-token", + "mb-md-auto", + 171188, + 171197, + { + "value": "mb-md-auto" + } + ], + [ + "{-token", + "{", + 171198, + 171198, + null + ], + [ + "ident-token", + "margin-bottom", + 171199, + 171211, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 171212, + 171212, + null + ], + [ + "ident-token", + "auto", + 171213, + 171216, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 171217, + 171217, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171218, + 171226, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171227, + 171227, + null + ], + [ + "delim-token", + ".", + 171228, + 171228, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-0", + 171229, + 171235, + { + "value": "ms-md-0" + } + ], + [ + "{-token", + "{", + 171236, + 171236, + null + ], + [ + "ident-token", + "margin-left", + 171237, + 171247, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171248, + 171248, + null + ], + [ + "number-token", + "0", + 171249, + 171249, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 171250, + 171250, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171251, + 171259, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171260, + 171260, + null + ], + [ + "delim-token", + ".", + 171261, + 171261, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-1", + 171262, + 171268, + { + "value": "ms-md-1" + } + ], + [ + "{-token", + "{", + 171269, + 171269, + null + ], + [ + "ident-token", + "margin-left", + 171270, + 171280, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171281, + 171281, + null + ], + [ + "dimension-token", + ".25rem", + 171282, + 171287, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171288, + 171288, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171289, + 171297, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171298, + 171298, + null + ], + [ + "delim-token", + ".", + 171299, + 171299, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-2", + 171300, + 171306, + { + "value": "ms-md-2" + } + ], + [ + "{-token", + "{", + 171307, + 171307, + null + ], + [ + "ident-token", + "margin-left", + 171308, + 171318, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171319, + 171319, + null + ], + [ + "dimension-token", + ".5rem", + 171320, + 171324, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171325, + 171325, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171326, + 171334, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171335, + 171335, + null + ], + [ + "delim-token", + ".", + 171336, + 171336, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-3", + 171337, + 171343, + { + "value": "ms-md-3" + } + ], + [ + "{-token", + "{", + 171344, + 171344, + null + ], + [ + "ident-token", + "margin-left", + 171345, + 171355, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171356, + 171356, + null + ], + [ + "dimension-token", + "1rem", + 171357, + 171360, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171361, + 171361, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171362, + 171370, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171371, + 171371, + null + ], + [ + "delim-token", + ".", + 171372, + 171372, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-4", + 171373, + 171379, + { + "value": "ms-md-4" + } + ], + [ + "{-token", + "{", + 171380, + 171380, + null + ], + [ + "ident-token", + "margin-left", + 171381, + 171391, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171392, + 171392, + null + ], + [ + "dimension-token", + "1.5rem", + 171393, + 171398, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171399, + 171399, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171400, + 171408, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171409, + 171409, + null + ], + [ + "delim-token", + ".", + 171410, + 171410, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-5", + 171411, + 171417, + { + "value": "ms-md-5" + } + ], + [ + "{-token", + "{", + 171418, + 171418, + null + ], + [ + "ident-token", + "margin-left", + 171419, + 171429, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171430, + 171430, + null + ], + [ + "dimension-token", + "3rem", + 171431, + 171434, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171435, + 171435, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171436, + 171444, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171445, + 171445, + null + ], + [ + "delim-token", + ".", + 171446, + 171446, + { + "value": "." + } + ], + [ + "ident-token", + "ms-md-auto", + 171447, + 171456, + { + "value": "ms-md-auto" + } + ], + [ + "{-token", + "{", + 171457, + 171457, + null + ], + [ + "ident-token", + "margin-left", + 171458, + 171468, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 171469, + 171469, + null + ], + [ + "ident-token", + "auto", + 171470, + 171473, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 171474, + 171474, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171475, + 171483, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171484, + 171484, + null + ], + [ + "delim-token", + ".", + 171485, + 171485, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-0", + 171486, + 171491, + { + "value": "p-md-0" + } + ], + [ + "{-token", + "{", + 171492, + 171492, + null + ], + [ + "ident-token", + "padding", + 171493, + 171499, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171500, + 171500, + null + ], + [ + "number-token", + "0", + 171501, + 171501, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 171502, + 171502, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171503, + 171511, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171512, + 171512, + null + ], + [ + "delim-token", + ".", + 171513, + 171513, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-1", + 171514, + 171519, + { + "value": "p-md-1" + } + ], + [ + "{-token", + "{", + 171520, + 171520, + null + ], + [ + "ident-token", + "padding", + 171521, + 171527, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171528, + 171528, + null + ], + [ + "dimension-token", + ".25rem", + 171529, + 171534, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171535, + 171535, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171536, + 171544, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171545, + 171545, + null + ], + [ + "delim-token", + ".", + 171546, + 171546, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-2", + 171547, + 171552, + { + "value": "p-md-2" + } + ], + [ + "{-token", + "{", + 171553, + 171553, + null + ], + [ + "ident-token", + "padding", + 171554, + 171560, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171561, + 171561, + null + ], + [ + "dimension-token", + ".5rem", + 171562, + 171566, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171567, + 171567, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171568, + 171576, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171577, + 171577, + null + ], + [ + "delim-token", + ".", + 171578, + 171578, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-3", + 171579, + 171584, + { + "value": "p-md-3" + } + ], + [ + "{-token", + "{", + 171585, + 171585, + null + ], + [ + "ident-token", + "padding", + 171586, + 171592, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171593, + 171593, + null + ], + [ + "dimension-token", + "1rem", + 171594, + 171597, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171598, + 171598, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171599, + 171607, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171608, + 171608, + null + ], + [ + "delim-token", + ".", + 171609, + 171609, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-4", + 171610, + 171615, + { + "value": "p-md-4" + } + ], + [ + "{-token", + "{", + 171616, + 171616, + null + ], + [ + "ident-token", + "padding", + 171617, + 171623, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171624, + 171624, + null + ], + [ + "dimension-token", + "1.5rem", + 171625, + 171630, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171631, + 171631, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171632, + 171640, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171641, + 171641, + null + ], + [ + "delim-token", + ".", + 171642, + 171642, + { + "value": "." + } + ], + [ + "ident-token", + "p-md-5", + 171643, + 171648, + { + "value": "p-md-5" + } + ], + [ + "{-token", + "{", + 171649, + 171649, + null + ], + [ + "ident-token", + "padding", + 171650, + 171656, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 171657, + 171657, + null + ], + [ + "dimension-token", + "3rem", + 171658, + 171661, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171662, + 171662, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171663, + 171671, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171672, + 171672, + null + ], + [ + "delim-token", + ".", + 171673, + 171673, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-0", + 171674, + 171680, + { + "value": "px-md-0" + } + ], + [ + "{-token", + "{", + 171681, + 171681, + null + ], + [ + "ident-token", + "padding-right", + 171682, + 171694, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 171695, + 171695, + null + ], + [ + "number-token", + "0", + 171696, + 171696, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 171697, + 171697, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171698, + 171706, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 171707, + 171707, + null + ], + [ + "ident-token", + "padding-left", + 171708, + 171719, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 171720, + 171720, + null + ], + [ + "number-token", + "0", + 171721, + 171721, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 171722, + 171722, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171723, + 171731, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171732, + 171732, + null + ], + [ + "delim-token", + ".", + 171733, + 171733, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-1", + 171734, + 171740, + { + "value": "px-md-1" + } + ], + [ + "{-token", + "{", + 171741, + 171741, + null + ], + [ + "ident-token", + "padding-right", + 171742, + 171754, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 171755, + 171755, + null + ], + [ + "dimension-token", + ".25rem", + 171756, + 171761, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171762, + 171762, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171763, + 171771, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 171772, + 171772, + null + ], + [ + "ident-token", + "padding-left", + 171773, + 171784, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 171785, + 171785, + null + ], + [ + "dimension-token", + ".25rem", + 171786, + 171791, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171792, + 171792, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171793, + 171801, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171802, + 171802, + null + ], + [ + "delim-token", + ".", + 171803, + 171803, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-2", + 171804, + 171810, + { + "value": "px-md-2" + } + ], + [ + "{-token", + "{", + 171811, + 171811, + null + ], + [ + "ident-token", + "padding-right", + 171812, + 171824, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 171825, + 171825, + null + ], + [ + "dimension-token", + ".5rem", + 171826, + 171830, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171831, + 171831, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171832, + 171840, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 171841, + 171841, + null + ], + [ + "ident-token", + "padding-left", + 171842, + 171853, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 171854, + 171854, + null + ], + [ + "dimension-token", + ".5rem", + 171855, + 171859, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171860, + 171860, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171861, + 171869, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171870, + 171870, + null + ], + [ + "delim-token", + ".", + 171871, + 171871, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-3", + 171872, + 171878, + { + "value": "px-md-3" + } + ], + [ + "{-token", + "{", + 171879, + 171879, + null + ], + [ + "ident-token", + "padding-right", + 171880, + 171892, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 171893, + 171893, + null + ], + [ + "dimension-token", + "1rem", + 171894, + 171897, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171898, + 171898, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171899, + 171907, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 171908, + 171908, + null + ], + [ + "ident-token", + "padding-left", + 171909, + 171920, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 171921, + 171921, + null + ], + [ + "dimension-token", + "1rem", + 171922, + 171925, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171926, + 171926, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171927, + 171935, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 171936, + 171936, + null + ], + [ + "delim-token", + ".", + 171937, + 171937, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-4", + 171938, + 171944, + { + "value": "px-md-4" + } + ], + [ + "{-token", + "{", + 171945, + 171945, + null + ], + [ + "ident-token", + "padding-right", + 171946, + 171958, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 171959, + 171959, + null + ], + [ + "dimension-token", + "1.5rem", + 171960, + 171965, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171966, + 171966, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171967, + 171975, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 171976, + 171976, + null + ], + [ + "ident-token", + "padding-left", + 171977, + 171988, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 171989, + 171989, + null + ], + [ + "dimension-token", + "1.5rem", + 171990, + 171995, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 171996, + 171996, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 171997, + 172005, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172006, + 172006, + null + ], + [ + "delim-token", + ".", + 172007, + 172007, + { + "value": "." + } + ], + [ + "ident-token", + "px-md-5", + 172008, + 172014, + { + "value": "px-md-5" + } + ], + [ + "{-token", + "{", + 172015, + 172015, + null + ], + [ + "ident-token", + "padding-right", + 172016, + 172028, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172029, + 172029, + null + ], + [ + "dimension-token", + "3rem", + 172030, + 172033, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172034, + 172034, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172035, + 172043, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172044, + 172044, + null + ], + [ + "ident-token", + "padding-left", + 172045, + 172056, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 172057, + 172057, + null + ], + [ + "dimension-token", + "3rem", + 172058, + 172061, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172062, + 172062, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172063, + 172071, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172072, + 172072, + null + ], + [ + "delim-token", + ".", + 172073, + 172073, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-0", + 172074, + 172080, + { + "value": "py-md-0" + } + ], + [ + "{-token", + "{", + 172081, + 172081, + null + ], + [ + "ident-token", + "padding-top", + 172082, + 172092, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172093, + 172093, + null + ], + [ + "number-token", + "0", + 172094, + 172094, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 172095, + 172095, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172096, + 172104, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172105, + 172105, + null + ], + [ + "ident-token", + "padding-bottom", + 172106, + 172119, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172120, + 172120, + null + ], + [ + "number-token", + "0", + 172121, + 172121, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 172122, + 172122, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172123, + 172131, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172132, + 172132, + null + ], + [ + "delim-token", + ".", + 172133, + 172133, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-1", + 172134, + 172140, + { + "value": "py-md-1" + } + ], + [ + "{-token", + "{", + 172141, + 172141, + null + ], + [ + "ident-token", + "padding-top", + 172142, + 172152, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172153, + 172153, + null + ], + [ + "dimension-token", + ".25rem", + 172154, + 172159, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172160, + 172160, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172161, + 172169, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172170, + 172170, + null + ], + [ + "ident-token", + "padding-bottom", + 172171, + 172184, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172185, + 172185, + null + ], + [ + "dimension-token", + ".25rem", + 172186, + 172191, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172192, + 172192, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172193, + 172201, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172202, + 172202, + null + ], + [ + "delim-token", + ".", + 172203, + 172203, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-2", + 172204, + 172210, + { + "value": "py-md-2" + } + ], + [ + "{-token", + "{", + 172211, + 172211, + null + ], + [ + "ident-token", + "padding-top", + 172212, + 172222, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172223, + 172223, + null + ], + [ + "dimension-token", + ".5rem", + 172224, + 172228, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172229, + 172229, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172230, + 172238, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172239, + 172239, + null + ], + [ + "ident-token", + "padding-bottom", + 172240, + 172253, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172254, + 172254, + null + ], + [ + "dimension-token", + ".5rem", + 172255, + 172259, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172260, + 172260, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172261, + 172269, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172270, + 172270, + null + ], + [ + "delim-token", + ".", + 172271, + 172271, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-3", + 172272, + 172278, + { + "value": "py-md-3" + } + ], + [ + "{-token", + "{", + 172279, + 172279, + null + ], + [ + "ident-token", + "padding-top", + 172280, + 172290, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172291, + 172291, + null + ], + [ + "dimension-token", + "1rem", + 172292, + 172295, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172296, + 172296, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172297, + 172305, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172306, + 172306, + null + ], + [ + "ident-token", + "padding-bottom", + 172307, + 172320, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172321, + 172321, + null + ], + [ + "dimension-token", + "1rem", + 172322, + 172325, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172326, + 172326, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172327, + 172335, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172336, + 172336, + null + ], + [ + "delim-token", + ".", + 172337, + 172337, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-4", + 172338, + 172344, + { + "value": "py-md-4" + } + ], + [ + "{-token", + "{", + 172345, + 172345, + null + ], + [ + "ident-token", + "padding-top", + 172346, + 172356, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172357, + 172357, + null + ], + [ + "dimension-token", + "1.5rem", + 172358, + 172363, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172364, + 172364, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172365, + 172373, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172374, + 172374, + null + ], + [ + "ident-token", + "padding-bottom", + 172375, + 172388, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172389, + 172389, + null + ], + [ + "dimension-token", + "1.5rem", + 172390, + 172395, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172396, + 172396, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172397, + 172405, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172406, + 172406, + null + ], + [ + "delim-token", + ".", + 172407, + 172407, + { + "value": "." + } + ], + [ + "ident-token", + "py-md-5", + 172408, + 172414, + { + "value": "py-md-5" + } + ], + [ + "{-token", + "{", + 172415, + 172415, + null + ], + [ + "ident-token", + "padding-top", + 172416, + 172426, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172427, + 172427, + null + ], + [ + "dimension-token", + "3rem", + 172428, + 172431, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172432, + 172432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172433, + 172441, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 172442, + 172442, + null + ], + [ + "ident-token", + "padding-bottom", + 172443, + 172456, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172457, + 172457, + null + ], + [ + "dimension-token", + "3rem", + 172458, + 172461, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172462, + 172462, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172463, + 172471, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172472, + 172472, + null + ], + [ + "delim-token", + ".", + 172473, + 172473, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-0", + 172474, + 172480, + { + "value": "pt-md-0" + } + ], + [ + "{-token", + "{", + 172481, + 172481, + null + ], + [ + "ident-token", + "padding-top", + 172482, + 172492, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172493, + 172493, + null + ], + [ + "number-token", + "0", + 172494, + 172494, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 172495, + 172495, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172496, + 172504, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172505, + 172505, + null + ], + [ + "delim-token", + ".", + 172506, + 172506, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-1", + 172507, + 172513, + { + "value": "pt-md-1" + } + ], + [ + "{-token", + "{", + 172514, + 172514, + null + ], + [ + "ident-token", + "padding-top", + 172515, + 172525, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172526, + 172526, + null + ], + [ + "dimension-token", + ".25rem", + 172527, + 172532, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172533, + 172533, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172534, + 172542, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172543, + 172543, + null + ], + [ + "delim-token", + ".", + 172544, + 172544, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-2", + 172545, + 172551, + { + "value": "pt-md-2" + } + ], + [ + "{-token", + "{", + 172552, + 172552, + null + ], + [ + "ident-token", + "padding-top", + 172553, + 172563, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172564, + 172564, + null + ], + [ + "dimension-token", + ".5rem", + 172565, + 172569, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172570, + 172570, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172571, + 172579, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172580, + 172580, + null + ], + [ + "delim-token", + ".", + 172581, + 172581, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-3", + 172582, + 172588, + { + "value": "pt-md-3" + } + ], + [ + "{-token", + "{", + 172589, + 172589, + null + ], + [ + "ident-token", + "padding-top", + 172590, + 172600, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172601, + 172601, + null + ], + [ + "dimension-token", + "1rem", + 172602, + 172605, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172606, + 172606, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172607, + 172615, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172616, + 172616, + null + ], + [ + "delim-token", + ".", + 172617, + 172617, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-4", + 172618, + 172624, + { + "value": "pt-md-4" + } + ], + [ + "{-token", + "{", + 172625, + 172625, + null + ], + [ + "ident-token", + "padding-top", + 172626, + 172636, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172637, + 172637, + null + ], + [ + "dimension-token", + "1.5rem", + 172638, + 172643, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172644, + 172644, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172645, + 172653, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172654, + 172654, + null + ], + [ + "delim-token", + ".", + 172655, + 172655, + { + "value": "." + } + ], + [ + "ident-token", + "pt-md-5", + 172656, + 172662, + { + "value": "pt-md-5" + } + ], + [ + "{-token", + "{", + 172663, + 172663, + null + ], + [ + "ident-token", + "padding-top", + 172664, + 172674, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 172675, + 172675, + null + ], + [ + "dimension-token", + "3rem", + 172676, + 172679, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172680, + 172680, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172681, + 172689, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172690, + 172690, + null + ], + [ + "delim-token", + ".", + 172691, + 172691, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-0", + 172692, + 172698, + { + "value": "pe-md-0" + } + ], + [ + "{-token", + "{", + 172699, + 172699, + null + ], + [ + "ident-token", + "padding-right", + 172700, + 172712, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172713, + 172713, + null + ], + [ + "number-token", + "0", + 172714, + 172714, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 172715, + 172715, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172716, + 172724, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172725, + 172725, + null + ], + [ + "delim-token", + ".", + 172726, + 172726, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-1", + 172727, + 172733, + { + "value": "pe-md-1" + } + ], + [ + "{-token", + "{", + 172734, + 172734, + null + ], + [ + "ident-token", + "padding-right", + 172735, + 172747, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172748, + 172748, + null + ], + [ + "dimension-token", + ".25rem", + 172749, + 172754, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172755, + 172755, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172756, + 172764, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172765, + 172765, + null + ], + [ + "delim-token", + ".", + 172766, + 172766, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-2", + 172767, + 172773, + { + "value": "pe-md-2" + } + ], + [ + "{-token", + "{", + 172774, + 172774, + null + ], + [ + "ident-token", + "padding-right", + 172775, + 172787, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172788, + 172788, + null + ], + [ + "dimension-token", + ".5rem", + 172789, + 172793, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172794, + 172794, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172795, + 172803, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172804, + 172804, + null + ], + [ + "delim-token", + ".", + 172805, + 172805, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-3", + 172806, + 172812, + { + "value": "pe-md-3" + } + ], + [ + "{-token", + "{", + 172813, + 172813, + null + ], + [ + "ident-token", + "padding-right", + 172814, + 172826, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172827, + 172827, + null + ], + [ + "dimension-token", + "1rem", + 172828, + 172831, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172832, + 172832, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172833, + 172841, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172842, + 172842, + null + ], + [ + "delim-token", + ".", + 172843, + 172843, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-4", + 172844, + 172850, + { + "value": "pe-md-4" + } + ], + [ + "{-token", + "{", + 172851, + 172851, + null + ], + [ + "ident-token", + "padding-right", + 172852, + 172864, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172865, + 172865, + null + ], + [ + "dimension-token", + "1.5rem", + 172866, + 172871, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172872, + 172872, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172873, + 172881, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172882, + 172882, + null + ], + [ + "delim-token", + ".", + 172883, + 172883, + { + "value": "." + } + ], + [ + "ident-token", + "pe-md-5", + 172884, + 172890, + { + "value": "pe-md-5" + } + ], + [ + "{-token", + "{", + 172891, + 172891, + null + ], + [ + "ident-token", + "padding-right", + 172892, + 172904, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 172905, + 172905, + null + ], + [ + "dimension-token", + "3rem", + 172906, + 172909, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172910, + 172910, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172911, + 172919, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172920, + 172920, + null + ], + [ + "delim-token", + ".", + 172921, + 172921, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-0", + 172922, + 172928, + { + "value": "pb-md-0" + } + ], + [ + "{-token", + "{", + 172929, + 172929, + null + ], + [ + "ident-token", + "padding-bottom", + 172930, + 172943, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172944, + 172944, + null + ], + [ + "number-token", + "0", + 172945, + 172945, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 172946, + 172946, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172947, + 172955, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172956, + 172956, + null + ], + [ + "delim-token", + ".", + 172957, + 172957, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-1", + 172958, + 172964, + { + "value": "pb-md-1" + } + ], + [ + "{-token", + "{", + 172965, + 172965, + null + ], + [ + "ident-token", + "padding-bottom", + 172966, + 172979, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 172980, + 172980, + null + ], + [ + "dimension-token", + ".25rem", + 172981, + 172986, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 172987, + 172987, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 172988, + 172996, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 172997, + 172997, + null + ], + [ + "delim-token", + ".", + 172998, + 172998, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-2", + 172999, + 173005, + { + "value": "pb-md-2" + } + ], + [ + "{-token", + "{", + 173006, + 173006, + null + ], + [ + "ident-token", + "padding-bottom", + 173007, + 173020, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 173021, + 173021, + null + ], + [ + "dimension-token", + ".5rem", + 173022, + 173026, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173027, + 173027, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173028, + 173036, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173037, + 173037, + null + ], + [ + "delim-token", + ".", + 173038, + 173038, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-3", + 173039, + 173045, + { + "value": "pb-md-3" + } + ], + [ + "{-token", + "{", + 173046, + 173046, + null + ], + [ + "ident-token", + "padding-bottom", + 173047, + 173060, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 173061, + 173061, + null + ], + [ + "dimension-token", + "1rem", + 173062, + 173065, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173066, + 173066, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173067, + 173075, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173076, + 173076, + null + ], + [ + "delim-token", + ".", + 173077, + 173077, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-4", + 173078, + 173084, + { + "value": "pb-md-4" + } + ], + [ + "{-token", + "{", + 173085, + 173085, + null + ], + [ + "ident-token", + "padding-bottom", + 173086, + 173099, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 173100, + 173100, + null + ], + [ + "dimension-token", + "1.5rem", + 173101, + 173106, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173107, + 173107, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173108, + 173116, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173117, + 173117, + null + ], + [ + "delim-token", + ".", + 173118, + 173118, + { + "value": "." + } + ], + [ + "ident-token", + "pb-md-5", + 173119, + 173125, + { + "value": "pb-md-5" + } + ], + [ + "{-token", + "{", + 173126, + 173126, + null + ], + [ + "ident-token", + "padding-bottom", + 173127, + 173140, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 173141, + 173141, + null + ], + [ + "dimension-token", + "3rem", + 173142, + 173145, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173146, + 173146, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173147, + 173155, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173156, + 173156, + null + ], + [ + "delim-token", + ".", + 173157, + 173157, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-0", + 173158, + 173164, + { + "value": "ps-md-0" + } + ], + [ + "{-token", + "{", + 173165, + 173165, + null + ], + [ + "ident-token", + "padding-left", + 173166, + 173177, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173178, + 173178, + null + ], + [ + "number-token", + "0", + 173179, + 173179, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 173180, + 173180, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173181, + 173189, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173190, + 173190, + null + ], + [ + "delim-token", + ".", + 173191, + 173191, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-1", + 173192, + 173198, + { + "value": "ps-md-1" + } + ], + [ + "{-token", + "{", + 173199, + 173199, + null + ], + [ + "ident-token", + "padding-left", + 173200, + 173211, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173212, + 173212, + null + ], + [ + "dimension-token", + ".25rem", + 173213, + 173218, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173219, + 173219, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173220, + 173228, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173229, + 173229, + null + ], + [ + "delim-token", + ".", + 173230, + 173230, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-2", + 173231, + 173237, + { + "value": "ps-md-2" + } + ], + [ + "{-token", + "{", + 173238, + 173238, + null + ], + [ + "ident-token", + "padding-left", + 173239, + 173250, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173251, + 173251, + null + ], + [ + "dimension-token", + ".5rem", + 173252, + 173256, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173257, + 173257, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173258, + 173266, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173267, + 173267, + null + ], + [ + "delim-token", + ".", + 173268, + 173268, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-3", + 173269, + 173275, + { + "value": "ps-md-3" + } + ], + [ + "{-token", + "{", + 173276, + 173276, + null + ], + [ + "ident-token", + "padding-left", + 173277, + 173288, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173289, + 173289, + null + ], + [ + "dimension-token", + "1rem", + 173290, + 173293, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173294, + 173294, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173295, + 173303, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173304, + 173304, + null + ], + [ + "delim-token", + ".", + 173305, + 173305, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-4", + 173306, + 173312, + { + "value": "ps-md-4" + } + ], + [ + "{-token", + "{", + 173313, + 173313, + null + ], + [ + "ident-token", + "padding-left", + 173314, + 173325, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173326, + 173326, + null + ], + [ + "dimension-token", + "1.5rem", + 173327, + 173332, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173333, + 173333, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173334, + 173342, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173343, + 173343, + null + ], + [ + "delim-token", + ".", + 173344, + 173344, + { + "value": "." + } + ], + [ + "ident-token", + "ps-md-5", + 173345, + 173351, + { + "value": "ps-md-5" + } + ], + [ + "{-token", + "{", + 173352, + 173352, + null + ], + [ + "ident-token", + "padding-left", + 173353, + 173364, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 173365, + 173365, + null + ], + [ + "dimension-token", + "3rem", + 173366, + 173369, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173370, + 173370, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173371, + 173379, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173380, + 173380, + null + ], + [ + "delim-token", + ".", + 173381, + 173381, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-0", + 173382, + 173389, + { + "value": "gap-md-0" + } + ], + [ + "{-token", + "{", + 173390, + 173390, + null + ], + [ + "ident-token", + "gap", + 173391, + 173393, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173394, + 173394, + null + ], + [ + "number-token", + "0", + 173395, + 173395, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 173396, + 173396, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173397, + 173405, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173406, + 173406, + null + ], + [ + "delim-token", + ".", + 173407, + 173407, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-1", + 173408, + 173415, + { + "value": "gap-md-1" + } + ], + [ + "{-token", + "{", + 173416, + 173416, + null + ], + [ + "ident-token", + "gap", + 173417, + 173419, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173420, + 173420, + null + ], + [ + "dimension-token", + ".25rem", + 173421, + 173426, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173427, + 173427, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173428, + 173436, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173437, + 173437, + null + ], + [ + "delim-token", + ".", + 173438, + 173438, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-2", + 173439, + 173446, + { + "value": "gap-md-2" + } + ], + [ + "{-token", + "{", + 173447, + 173447, + null + ], + [ + "ident-token", + "gap", + 173448, + 173450, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173451, + 173451, + null + ], + [ + "dimension-token", + ".5rem", + 173452, + 173456, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173457, + 173457, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173458, + 173466, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173467, + 173467, + null + ], + [ + "delim-token", + ".", + 173468, + 173468, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-3", + 173469, + 173476, + { + "value": "gap-md-3" + } + ], + [ + "{-token", + "{", + 173477, + 173477, + null + ], + [ + "ident-token", + "gap", + 173478, + 173480, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173481, + 173481, + null + ], + [ + "dimension-token", + "1rem", + 173482, + 173485, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173486, + 173486, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173487, + 173495, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173496, + 173496, + null + ], + [ + "delim-token", + ".", + 173497, + 173497, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-4", + 173498, + 173505, + { + "value": "gap-md-4" + } + ], + [ + "{-token", + "{", + 173506, + 173506, + null + ], + [ + "ident-token", + "gap", + 173507, + 173509, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173510, + 173510, + null + ], + [ + "dimension-token", + "1.5rem", + 173511, + 173516, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173517, + 173517, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173518, + 173526, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173527, + 173527, + null + ], + [ + "delim-token", + ".", + 173528, + 173528, + { + "value": "." + } + ], + [ + "ident-token", + "gap-md-5", + 173529, + 173536, + { + "value": "gap-md-5" + } + ], + [ + "{-token", + "{", + 173537, + 173537, + null + ], + [ + "ident-token", + "gap", + 173538, + 173540, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 173541, + 173541, + null + ], + [ + "dimension-token", + "3rem", + 173542, + 173545, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 173546, + 173546, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173547, + 173555, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173556, + 173556, + null + ], + [ + "delim-token", + ".", + 173557, + 173557, + { + "value": "." + } + ], + [ + "ident-token", + "text-md-start", + 173558, + 173570, + { + "value": "text-md-start" + } + ], + [ + "{-token", + "{", + 173571, + 173571, + null + ], + [ + "ident-token", + "text-align", + 173572, + 173581, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 173582, + 173582, + null + ], + [ + "ident-token", + "left", + 173583, + 173586, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 173587, + 173587, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173588, + 173596, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173597, + 173597, + null + ], + [ + "delim-token", + ".", + 173598, + 173598, + { + "value": "." + } + ], + [ + "ident-token", + "text-md-end", + 173599, + 173609, + { + "value": "text-md-end" + } + ], + [ + "{-token", + "{", + 173610, + 173610, + null + ], + [ + "ident-token", + "text-align", + 173611, + 173620, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 173621, + 173621, + null + ], + [ + "ident-token", + "right", + 173622, + 173626, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 173627, + 173627, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173628, + 173636, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173637, + 173637, + null + ], + [ + "delim-token", + ".", + 173638, + 173638, + { + "value": "." + } + ], + [ + "ident-token", + "text-md-center", + 173639, + 173652, + { + "value": "text-md-center" + } + ], + [ + "{-token", + "{", + 173653, + 173653, + null + ], + [ + "ident-token", + "text-align", + 173654, + 173663, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 173664, + 173664, + null + ], + [ + "ident-token", + "center", + 173665, + 173670, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 173671, + 173671, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173672, + 173680, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173681, + 173681, + null + ], + [ + "}-token", + "}", + 173682, + 173682, + null + ], + [ + "at-keyword-token", + "@media", + 173683, + 173688, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 173689, + 173689, + null + ], + [ + "(-token", + "(", + 173690, + 173690, + null + ], + [ + "ident-token", + "min-width", + 173691, + 173699, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 173700, + 173700, + null + ], + [ + "dimension-token", + "992px", + 173701, + 173705, + { + "value": 992, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 173706, + 173706, + null + ], + [ + "{-token", + "{", + 173707, + 173707, + null + ], + [ + "delim-token", + ".", + 173708, + 173708, + { + "value": "." + } + ], + [ + "ident-token", + "float-lg-start", + 173709, + 173722, + { + "value": "float-lg-start" + } + ], + [ + "{-token", + "{", + 173723, + 173723, + null + ], + [ + "ident-token", + "float", + 173724, + 173728, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 173729, + 173729, + null + ], + [ + "ident-token", + "left", + 173730, + 173733, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 173734, + 173734, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173735, + 173743, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173744, + 173744, + null + ], + [ + "delim-token", + ".", + 173745, + 173745, + { + "value": "." + } + ], + [ + "ident-token", + "float-lg-end", + 173746, + 173757, + { + "value": "float-lg-end" + } + ], + [ + "{-token", + "{", + 173758, + 173758, + null + ], + [ + "ident-token", + "float", + 173759, + 173763, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 173764, + 173764, + null + ], + [ + "ident-token", + "right", + 173765, + 173769, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 173770, + 173770, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173771, + 173779, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173780, + 173780, + null + ], + [ + "delim-token", + ".", + 173781, + 173781, + { + "value": "." + } + ], + [ + "ident-token", + "float-lg-none", + 173782, + 173794, + { + "value": "float-lg-none" + } + ], + [ + "{-token", + "{", + 173795, + 173795, + null + ], + [ + "ident-token", + "float", + 173796, + 173800, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 173801, + 173801, + null + ], + [ + "ident-token", + "none", + 173802, + 173805, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 173806, + 173806, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173807, + 173815, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173816, + 173816, + null + ], + [ + "delim-token", + ".", + 173817, + 173817, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-inline", + 173818, + 173828, + { + "value": "d-lg-inline" + } + ], + [ + "{-token", + "{", + 173829, + 173829, + null + ], + [ + "ident-token", + "display", + 173830, + 173836, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 173837, + 173837, + null + ], + [ + "ident-token", + "inline", + 173838, + 173843, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 173844, + 173844, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173845, + 173853, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173854, + 173854, + null + ], + [ + "delim-token", + ".", + 173855, + 173855, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-inline-block", + 173856, + 173872, + { + "value": "d-lg-inline-block" + } + ], + [ + "{-token", + "{", + 173873, + 173873, + null + ], + [ + "ident-token", + "display", + 173874, + 173880, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 173881, + 173881, + null + ], + [ + "ident-token", + "inline-block", + 173882, + 173893, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 173894, + 173894, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173895, + 173903, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173904, + 173904, + null + ], + [ + "delim-token", + ".", + 173905, + 173905, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-block", + 173906, + 173915, + { + "value": "d-lg-block" + } + ], + [ + "{-token", + "{", + 173916, + 173916, + null + ], + [ + "ident-token", + "display", + 173917, + 173923, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 173924, + 173924, + null + ], + [ + "ident-token", + "block", + 173925, + 173929, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 173930, + 173930, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173931, + 173939, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173940, + 173940, + null + ], + [ + "delim-token", + ".", + 173941, + 173941, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-grid", + 173942, + 173950, + { + "value": "d-lg-grid" + } + ], + [ + "{-token", + "{", + 173951, + 173951, + null + ], + [ + "ident-token", + "display", + 173952, + 173958, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 173959, + 173959, + null + ], + [ + "ident-token", + "grid", + 173960, + 173963, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 173964, + 173964, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 173965, + 173973, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 173974, + 173974, + null + ], + [ + "delim-token", + ".", + 173975, + 173975, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-table", + 173976, + 173985, + { + "value": "d-lg-table" + } + ], + [ + "{-token", + "{", + 173986, + 173986, + null + ], + [ + "ident-token", + "display", + 173987, + 173993, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 173994, + 173994, + null + ], + [ + "ident-token", + "table", + 173995, + 173999, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 174000, + 174000, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174001, + 174009, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174010, + 174010, + null + ], + [ + "delim-token", + ".", + 174011, + 174011, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-table-row", + 174012, + 174025, + { + "value": "d-lg-table-row" + } + ], + [ + "{-token", + "{", + 174026, + 174026, + null + ], + [ + "ident-token", + "display", + 174027, + 174033, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 174034, + 174034, + null + ], + [ + "ident-token", + "table-row", + 174035, + 174043, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 174044, + 174044, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174045, + 174053, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174054, + 174054, + null + ], + [ + "delim-token", + ".", + 174055, + 174055, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-table-cell", + 174056, + 174070, + { + "value": "d-lg-table-cell" + } + ], + [ + "{-token", + "{", + 174071, + 174071, + null + ], + [ + "ident-token", + "display", + 174072, + 174078, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 174079, + 174079, + null + ], + [ + "ident-token", + "table-cell", + 174080, + 174089, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 174090, + 174090, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174091, + 174099, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174100, + 174100, + null + ], + [ + "delim-token", + ".", + 174101, + 174101, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-flex", + 174102, + 174110, + { + "value": "d-lg-flex" + } + ], + [ + "{-token", + "{", + 174111, + 174111, + null + ], + [ + "ident-token", + "display", + 174112, + 174118, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 174119, + 174119, + null + ], + [ + "ident-token", + "flex", + 174120, + 174123, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 174124, + 174124, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174125, + 174133, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174134, + 174134, + null + ], + [ + "delim-token", + ".", + 174135, + 174135, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-inline-flex", + 174136, + 174151, + { + "value": "d-lg-inline-flex" + } + ], + [ + "{-token", + "{", + 174152, + 174152, + null + ], + [ + "ident-token", + "display", + 174153, + 174159, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 174160, + 174160, + null + ], + [ + "ident-token", + "inline-flex", + 174161, + 174171, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 174172, + 174172, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174173, + 174181, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174182, + 174182, + null + ], + [ + "delim-token", + ".", + 174183, + 174183, + { + "value": "." + } + ], + [ + "ident-token", + "d-lg-none", + 174184, + 174192, + { + "value": "d-lg-none" + } + ], + [ + "{-token", + "{", + 174193, + 174193, + null + ], + [ + "ident-token", + "display", + 174194, + 174200, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 174201, + 174201, + null + ], + [ + "ident-token", + "none", + 174202, + 174205, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 174206, + 174206, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174207, + 174215, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174216, + 174216, + null + ], + [ + "delim-token", + ".", + 174217, + 174217, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-fill", + 174218, + 174229, + { + "value": "flex-lg-fill" + } + ], + [ + "{-token", + "{", + 174230, + 174230, + null + ], + [ + "ident-token", + "flex", + 174231, + 174234, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 174235, + 174235, + null + ], + [ + "number-token", + "1", + 174236, + 174236, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 174237, + 174237, + null + ], + [ + "number-token", + "1", + 174238, + 174238, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 174239, + 174239, + null + ], + [ + "ident-token", + "auto", + 174240, + 174243, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 174244, + 174244, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174245, + 174253, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174254, + 174254, + null + ], + [ + "delim-token", + ".", + 174255, + 174255, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-row", + 174256, + 174266, + { + "value": "flex-lg-row" + } + ], + [ + "{-token", + "{", + 174267, + 174267, + null + ], + [ + "ident-token", + "flex-direction", + 174268, + 174281, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 174282, + 174282, + null + ], + [ + "ident-token", + "row", + 174283, + 174285, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 174286, + 174286, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174287, + 174295, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174296, + 174296, + null + ], + [ + "delim-token", + ".", + 174297, + 174297, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-column", + 174298, + 174311, + { + "value": "flex-lg-column" + } + ], + [ + "{-token", + "{", + 174312, + 174312, + null + ], + [ + "ident-token", + "flex-direction", + 174313, + 174326, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 174327, + 174327, + null + ], + [ + "ident-token", + "column", + 174328, + 174333, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 174334, + 174334, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174335, + 174343, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174344, + 174344, + null + ], + [ + "delim-token", + ".", + 174345, + 174345, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-row-reverse", + 174346, + 174364, + { + "value": "flex-lg-row-reverse" + } + ], + [ + "{-token", + "{", + 174365, + 174365, + null + ], + [ + "ident-token", + "flex-direction", + 174366, + 174379, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 174380, + 174380, + null + ], + [ + "ident-token", + "row-reverse", + 174381, + 174391, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 174392, + 174392, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174393, + 174401, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174402, + 174402, + null + ], + [ + "delim-token", + ".", + 174403, + 174403, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-column-reverse", + 174404, + 174425, + { + "value": "flex-lg-column-reverse" + } + ], + [ + "{-token", + "{", + 174426, + 174426, + null + ], + [ + "ident-token", + "flex-direction", + 174427, + 174440, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 174441, + 174441, + null + ], + [ + "ident-token", + "column-reverse", + 174442, + 174455, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 174456, + 174456, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174457, + 174465, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174466, + 174466, + null + ], + [ + "delim-token", + ".", + 174467, + 174467, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-grow-0", + 174468, + 174481, + { + "value": "flex-lg-grow-0" + } + ], + [ + "{-token", + "{", + 174482, + 174482, + null + ], + [ + "ident-token", + "flex-grow", + 174483, + 174491, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 174492, + 174492, + null + ], + [ + "number-token", + "0", + 174493, + 174493, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 174494, + 174494, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174495, + 174503, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174504, + 174504, + null + ], + [ + "delim-token", + ".", + 174505, + 174505, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-grow-1", + 174506, + 174519, + { + "value": "flex-lg-grow-1" + } + ], + [ + "{-token", + "{", + 174520, + 174520, + null + ], + [ + "ident-token", + "flex-grow", + 174521, + 174529, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 174530, + 174530, + null + ], + [ + "number-token", + "1", + 174531, + 174531, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 174532, + 174532, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174533, + 174541, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174542, + 174542, + null + ], + [ + "delim-token", + ".", + 174543, + 174543, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-shrink-0", + 174544, + 174559, + { + "value": "flex-lg-shrink-0" + } + ], + [ + "{-token", + "{", + 174560, + 174560, + null + ], + [ + "ident-token", + "flex-shrink", + 174561, + 174571, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 174572, + 174572, + null + ], + [ + "number-token", + "0", + 174573, + 174573, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 174574, + 174574, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174575, + 174583, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174584, + 174584, + null + ], + [ + "delim-token", + ".", + 174585, + 174585, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-shrink-1", + 174586, + 174601, + { + "value": "flex-lg-shrink-1" + } + ], + [ + "{-token", + "{", + 174602, + 174602, + null + ], + [ + "ident-token", + "flex-shrink", + 174603, + 174613, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 174614, + 174614, + null + ], + [ + "number-token", + "1", + 174615, + 174615, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 174616, + 174616, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174617, + 174625, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174626, + 174626, + null + ], + [ + "delim-token", + ".", + 174627, + 174627, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-wrap", + 174628, + 174639, + { + "value": "flex-lg-wrap" + } + ], + [ + "{-token", + "{", + 174640, + 174640, + null + ], + [ + "ident-token", + "flex-wrap", + 174641, + 174649, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 174650, + 174650, + null + ], + [ + "ident-token", + "wrap", + 174651, + 174654, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 174655, + 174655, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174656, + 174664, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174665, + 174665, + null + ], + [ + "delim-token", + ".", + 174666, + 174666, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-nowrap", + 174667, + 174680, + { + "value": "flex-lg-nowrap" + } + ], + [ + "{-token", + "{", + 174681, + 174681, + null + ], + [ + "ident-token", + "flex-wrap", + 174682, + 174690, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 174691, + 174691, + null + ], + [ + "ident-token", + "nowrap", + 174692, + 174697, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 174698, + 174698, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174699, + 174707, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174708, + 174708, + null + ], + [ + "delim-token", + ".", + 174709, + 174709, + { + "value": "." + } + ], + [ + "ident-token", + "flex-lg-wrap-reverse", + 174710, + 174729, + { + "value": "flex-lg-wrap-reverse" + } + ], + [ + "{-token", + "{", + 174730, + 174730, + null + ], + [ + "ident-token", + "flex-wrap", + 174731, + 174739, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 174740, + 174740, + null + ], + [ + "ident-token", + "wrap-reverse", + 174741, + 174752, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 174753, + 174753, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174754, + 174762, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174763, + 174763, + null + ], + [ + "delim-token", + ".", + 174764, + 174764, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-start", + 174765, + 174788, + { + "value": "justify-content-lg-start" + } + ], + [ + "{-token", + "{", + 174789, + 174789, + null + ], + [ + "ident-token", + "justify-content", + 174790, + 174804, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 174805, + 174805, + null + ], + [ + "ident-token", + "flex-start", + 174806, + 174815, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 174816, + 174816, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174817, + 174825, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174826, + 174826, + null + ], + [ + "delim-token", + ".", + 174827, + 174827, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-end", + 174828, + 174849, + { + "value": "justify-content-lg-end" + } + ], + [ + "{-token", + "{", + 174850, + 174850, + null + ], + [ + "ident-token", + "justify-content", + 174851, + 174865, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 174866, + 174866, + null + ], + [ + "ident-token", + "flex-end", + 174867, + 174874, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 174875, + 174875, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174876, + 174884, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174885, + 174885, + null + ], + [ + "delim-token", + ".", + 174886, + 174886, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-center", + 174887, + 174911, + { + "value": "justify-content-lg-center" + } + ], + [ + "{-token", + "{", + 174912, + 174912, + null + ], + [ + "ident-token", + "justify-content", + 174913, + 174927, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 174928, + 174928, + null + ], + [ + "ident-token", + "center", + 174929, + 174934, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 174935, + 174935, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 174936, + 174944, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 174945, + 174945, + null + ], + [ + "delim-token", + ".", + 174946, + 174946, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-between", + 174947, + 174972, + { + "value": "justify-content-lg-between" + } + ], + [ + "{-token", + "{", + 174973, + 174973, + null + ], + [ + "ident-token", + "justify-content", + 174974, + 174988, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 174989, + 174989, + null + ], + [ + "ident-token", + "space-between", + 174990, + 175002, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 175003, + 175003, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175004, + 175012, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175013, + 175013, + null + ], + [ + "delim-token", + ".", + 175014, + 175014, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-around", + 175015, + 175039, + { + "value": "justify-content-lg-around" + } + ], + [ + "{-token", + "{", + 175040, + 175040, + null + ], + [ + "ident-token", + "justify-content", + 175041, + 175055, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 175056, + 175056, + null + ], + [ + "ident-token", + "space-around", + 175057, + 175068, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 175069, + 175069, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175070, + 175078, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175079, + 175079, + null + ], + [ + "delim-token", + ".", + 175080, + 175080, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-lg-evenly", + 175081, + 175105, + { + "value": "justify-content-lg-evenly" + } + ], + [ + "{-token", + "{", + 175106, + 175106, + null + ], + [ + "ident-token", + "justify-content", + 175107, + 175121, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 175122, + 175122, + null + ], + [ + "ident-token", + "space-evenly", + 175123, + 175134, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 175135, + 175135, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175136, + 175144, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175145, + 175145, + null + ], + [ + "delim-token", + ".", + 175146, + 175146, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-lg-start", + 175147, + 175166, + { + "value": "align-items-lg-start" + } + ], + [ + "{-token", + "{", + 175167, + 175167, + null + ], + [ + "ident-token", + "align-items", + 175168, + 175178, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 175179, + 175179, + null + ], + [ + "ident-token", + "flex-start", + 175180, + 175189, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 175190, + 175190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175191, + 175199, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175200, + 175200, + null + ], + [ + "delim-token", + ".", + 175201, + 175201, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-lg-end", + 175202, + 175219, + { + "value": "align-items-lg-end" + } + ], + [ + "{-token", + "{", + 175220, + 175220, + null + ], + [ + "ident-token", + "align-items", + 175221, + 175231, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 175232, + 175232, + null + ], + [ + "ident-token", + "flex-end", + 175233, + 175240, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 175241, + 175241, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175242, + 175250, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175251, + 175251, + null + ], + [ + "delim-token", + ".", + 175252, + 175252, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-lg-center", + 175253, + 175273, + { + "value": "align-items-lg-center" + } + ], + [ + "{-token", + "{", + 175274, + 175274, + null + ], + [ + "ident-token", + "align-items", + 175275, + 175285, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 175286, + 175286, + null + ], + [ + "ident-token", + "center", + 175287, + 175292, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 175293, + 175293, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175294, + 175302, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175303, + 175303, + null + ], + [ + "delim-token", + ".", + 175304, + 175304, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-lg-baseline", + 175305, + 175327, + { + "value": "align-items-lg-baseline" + } + ], + [ + "{-token", + "{", + 175328, + 175328, + null + ], + [ + "ident-token", + "align-items", + 175329, + 175339, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 175340, + 175340, + null + ], + [ + "ident-token", + "baseline", + 175341, + 175348, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 175349, + 175349, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175350, + 175358, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175359, + 175359, + null + ], + [ + "delim-token", + ".", + 175360, + 175360, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-lg-stretch", + 175361, + 175382, + { + "value": "align-items-lg-stretch" + } + ], + [ + "{-token", + "{", + 175383, + 175383, + null + ], + [ + "ident-token", + "align-items", + 175384, + 175394, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 175395, + 175395, + null + ], + [ + "ident-token", + "stretch", + 175396, + 175402, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 175403, + 175403, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175404, + 175412, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175413, + 175413, + null + ], + [ + "delim-token", + ".", + 175414, + 175414, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-start", + 175415, + 175436, + { + "value": "align-content-lg-start" + } + ], + [ + "{-token", + "{", + 175437, + 175437, + null + ], + [ + "ident-token", + "align-content", + 175438, + 175450, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175451, + 175451, + null + ], + [ + "ident-token", + "flex-start", + 175452, + 175461, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 175462, + 175462, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175463, + 175471, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175472, + 175472, + null + ], + [ + "delim-token", + ".", + 175473, + 175473, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-end", + 175474, + 175493, + { + "value": "align-content-lg-end" + } + ], + [ + "{-token", + "{", + 175494, + 175494, + null + ], + [ + "ident-token", + "align-content", + 175495, + 175507, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175508, + 175508, + null + ], + [ + "ident-token", + "flex-end", + 175509, + 175516, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 175517, + 175517, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175518, + 175526, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175527, + 175527, + null + ], + [ + "delim-token", + ".", + 175528, + 175528, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-center", + 175529, + 175551, + { + "value": "align-content-lg-center" + } + ], + [ + "{-token", + "{", + 175552, + 175552, + null + ], + [ + "ident-token", + "align-content", + 175553, + 175565, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175566, + 175566, + null + ], + [ + "ident-token", + "center", + 175567, + 175572, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 175573, + 175573, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175574, + 175582, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175583, + 175583, + null + ], + [ + "delim-token", + ".", + 175584, + 175584, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-between", + 175585, + 175608, + { + "value": "align-content-lg-between" + } + ], + [ + "{-token", + "{", + 175609, + 175609, + null + ], + [ + "ident-token", + "align-content", + 175610, + 175622, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175623, + 175623, + null + ], + [ + "ident-token", + "space-between", + 175624, + 175636, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 175637, + 175637, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175638, + 175646, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175647, + 175647, + null + ], + [ + "delim-token", + ".", + 175648, + 175648, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-around", + 175649, + 175671, + { + "value": "align-content-lg-around" + } + ], + [ + "{-token", + "{", + 175672, + 175672, + null + ], + [ + "ident-token", + "align-content", + 175673, + 175685, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175686, + 175686, + null + ], + [ + "ident-token", + "space-around", + 175687, + 175698, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 175699, + 175699, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175700, + 175708, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175709, + 175709, + null + ], + [ + "delim-token", + ".", + 175710, + 175710, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-lg-stretch", + 175711, + 175734, + { + "value": "align-content-lg-stretch" + } + ], + [ + "{-token", + "{", + 175735, + 175735, + null + ], + [ + "ident-token", + "align-content", + 175736, + 175748, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 175749, + 175749, + null + ], + [ + "ident-token", + "stretch", + 175750, + 175756, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 175757, + 175757, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175758, + 175766, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175767, + 175767, + null + ], + [ + "delim-token", + ".", + 175768, + 175768, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-auto", + 175769, + 175786, + { + "value": "align-self-lg-auto" + } + ], + [ + "{-token", + "{", + 175787, + 175787, + null + ], + [ + "ident-token", + "align-self", + 175788, + 175797, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 175798, + 175798, + null + ], + [ + "ident-token", + "auto", + 175799, + 175802, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 175803, + 175803, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175804, + 175812, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175813, + 175813, + null + ], + [ + "delim-token", + ".", + 175814, + 175814, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-start", + 175815, + 175833, + { + "value": "align-self-lg-start" + } + ], + [ + "{-token", + "{", + 175834, + 175834, + null + ], + [ + "ident-token", + "align-self", + 175835, + 175844, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 175845, + 175845, + null + ], + [ + "ident-token", + "flex-start", + 175846, + 175855, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 175856, + 175856, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175857, + 175865, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175866, + 175866, + null + ], + [ + "delim-token", + ".", + 175867, + 175867, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-end", + 175868, + 175884, + { + "value": "align-self-lg-end" + } + ], + [ + "{-token", + "{", + 175885, + 175885, + null + ], + [ + "ident-token", + "align-self", + 175886, + 175895, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 175896, + 175896, + null + ], + [ + "ident-token", + "flex-end", + 175897, + 175904, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 175905, + 175905, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175906, + 175914, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175915, + 175915, + null + ], + [ + "delim-token", + ".", + 175916, + 175916, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-center", + 175917, + 175936, + { + "value": "align-self-lg-center" + } + ], + [ + "{-token", + "{", + 175937, + 175937, + null + ], + [ + "ident-token", + "align-self", + 175938, + 175947, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 175948, + 175948, + null + ], + [ + "ident-token", + "center", + 175949, + 175954, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 175955, + 175955, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 175956, + 175964, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 175965, + 175965, + null + ], + [ + "delim-token", + ".", + 175966, + 175966, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-baseline", + 175967, + 175988, + { + "value": "align-self-lg-baseline" + } + ], + [ + "{-token", + "{", + 175989, + 175989, + null + ], + [ + "ident-token", + "align-self", + 175990, + 175999, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 176000, + 176000, + null + ], + [ + "ident-token", + "baseline", + 176001, + 176008, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 176009, + 176009, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176010, + 176018, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176019, + 176019, + null + ], + [ + "delim-token", + ".", + 176020, + 176020, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-lg-stretch", + 176021, + 176041, + { + "value": "align-self-lg-stretch" + } + ], + [ + "{-token", + "{", + 176042, + 176042, + null + ], + [ + "ident-token", + "align-self", + 176043, + 176052, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 176053, + 176053, + null + ], + [ + "ident-token", + "stretch", + 176054, + 176060, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 176061, + 176061, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176062, + 176070, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176071, + 176071, + null + ], + [ + "delim-token", + ".", + 176072, + 176072, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-first", + 176073, + 176086, + { + "value": "order-lg-first" + } + ], + [ + "{-token", + "{", + 176087, + 176087, + null + ], + [ + "ident-token", + "order", + 176088, + 176092, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176093, + 176093, + null + ], + [ + "number-token", + "-1", + 176094, + 176095, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176096, + 176096, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176097, + 176105, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176106, + 176106, + null + ], + [ + "delim-token", + ".", + 176107, + 176107, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-0", + 176108, + 176117, + { + "value": "order-lg-0" + } + ], + [ + "{-token", + "{", + 176118, + 176118, + null + ], + [ + "ident-token", + "order", + 176119, + 176123, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176124, + 176124, + null + ], + [ + "number-token", + "0", + 176125, + 176125, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176126, + 176126, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176127, + 176135, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176136, + 176136, + null + ], + [ + "delim-token", + ".", + 176137, + 176137, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-1", + 176138, + 176147, + { + "value": "order-lg-1" + } + ], + [ + "{-token", + "{", + 176148, + 176148, + null + ], + [ + "ident-token", + "order", + 176149, + 176153, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176154, + 176154, + null + ], + [ + "number-token", + "1", + 176155, + 176155, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176156, + 176156, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176157, + 176165, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176166, + 176166, + null + ], + [ + "delim-token", + ".", + 176167, + 176167, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-2", + 176168, + 176177, + { + "value": "order-lg-2" + } + ], + [ + "{-token", + "{", + 176178, + 176178, + null + ], + [ + "ident-token", + "order", + 176179, + 176183, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176184, + 176184, + null + ], + [ + "number-token", + "2", + 176185, + 176185, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176186, + 176186, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176187, + 176195, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176196, + 176196, + null + ], + [ + "delim-token", + ".", + 176197, + 176197, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-3", + 176198, + 176207, + { + "value": "order-lg-3" + } + ], + [ + "{-token", + "{", + 176208, + 176208, + null + ], + [ + "ident-token", + "order", + 176209, + 176213, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176214, + 176214, + null + ], + [ + "number-token", + "3", + 176215, + 176215, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176216, + 176216, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176217, + 176225, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176226, + 176226, + null + ], + [ + "delim-token", + ".", + 176227, + 176227, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-4", + 176228, + 176237, + { + "value": "order-lg-4" + } + ], + [ + "{-token", + "{", + 176238, + 176238, + null + ], + [ + "ident-token", + "order", + 176239, + 176243, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176244, + 176244, + null + ], + [ + "number-token", + "4", + 176245, + 176245, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176246, + 176246, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176247, + 176255, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176256, + 176256, + null + ], + [ + "delim-token", + ".", + 176257, + 176257, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-5", + 176258, + 176267, + { + "value": "order-lg-5" + } + ], + [ + "{-token", + "{", + 176268, + 176268, + null + ], + [ + "ident-token", + "order", + 176269, + 176273, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176274, + 176274, + null + ], + [ + "number-token", + "5", + 176275, + 176275, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176276, + 176276, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176277, + 176285, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176286, + 176286, + null + ], + [ + "delim-token", + ".", + 176287, + 176287, + { + "value": "." + } + ], + [ + "ident-token", + "order-lg-last", + 176288, + 176300, + { + "value": "order-lg-last" + } + ], + [ + "{-token", + "{", + 176301, + 176301, + null + ], + [ + "ident-token", + "order", + 176302, + 176306, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 176307, + 176307, + null + ], + [ + "number-token", + "6", + 176308, + 176308, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176309, + 176309, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176310, + 176318, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176319, + 176319, + null + ], + [ + "delim-token", + ".", + 176320, + 176320, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-0", + 176321, + 176326, + { + "value": "m-lg-0" + } + ], + [ + "{-token", + "{", + 176327, + 176327, + null + ], + [ + "ident-token", + "margin", + 176328, + 176333, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176334, + 176334, + null + ], + [ + "number-token", + "0", + 176335, + 176335, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176336, + 176336, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176337, + 176345, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176346, + 176346, + null + ], + [ + "delim-token", + ".", + 176347, + 176347, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-1", + 176348, + 176353, + { + "value": "m-lg-1" + } + ], + [ + "{-token", + "{", + 176354, + 176354, + null + ], + [ + "ident-token", + "margin", + 176355, + 176360, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176361, + 176361, + null + ], + [ + "dimension-token", + ".25rem", + 176362, + 176367, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176368, + 176368, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176369, + 176377, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176378, + 176378, + null + ], + [ + "delim-token", + ".", + 176379, + 176379, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-2", + 176380, + 176385, + { + "value": "m-lg-2" + } + ], + [ + "{-token", + "{", + 176386, + 176386, + null + ], + [ + "ident-token", + "margin", + 176387, + 176392, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176393, + 176393, + null + ], + [ + "dimension-token", + ".5rem", + 176394, + 176398, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176399, + 176399, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176400, + 176408, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176409, + 176409, + null + ], + [ + "delim-token", + ".", + 176410, + 176410, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-3", + 176411, + 176416, + { + "value": "m-lg-3" + } + ], + [ + "{-token", + "{", + 176417, + 176417, + null + ], + [ + "ident-token", + "margin", + 176418, + 176423, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176424, + 176424, + null + ], + [ + "dimension-token", + "1rem", + 176425, + 176428, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176429, + 176429, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176430, + 176438, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176439, + 176439, + null + ], + [ + "delim-token", + ".", + 176440, + 176440, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-4", + 176441, + 176446, + { + "value": "m-lg-4" + } + ], + [ + "{-token", + "{", + 176447, + 176447, + null + ], + [ + "ident-token", + "margin", + 176448, + 176453, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176454, + 176454, + null + ], + [ + "dimension-token", + "1.5rem", + 176455, + 176460, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176461, + 176461, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176462, + 176470, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176471, + 176471, + null + ], + [ + "delim-token", + ".", + 176472, + 176472, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-5", + 176473, + 176478, + { + "value": "m-lg-5" + } + ], + [ + "{-token", + "{", + 176479, + 176479, + null + ], + [ + "ident-token", + "margin", + 176480, + 176485, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176486, + 176486, + null + ], + [ + "dimension-token", + "3rem", + 176487, + 176490, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176491, + 176491, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176492, + 176500, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176501, + 176501, + null + ], + [ + "delim-token", + ".", + 176502, + 176502, + { + "value": "." + } + ], + [ + "ident-token", + "m-lg-auto", + 176503, + 176511, + { + "value": "m-lg-auto" + } + ], + [ + "{-token", + "{", + 176512, + 176512, + null + ], + [ + "ident-token", + "margin", + 176513, + 176518, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 176519, + 176519, + null + ], + [ + "ident-token", + "auto", + 176520, + 176523, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 176524, + 176524, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176525, + 176533, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176534, + 176534, + null + ], + [ + "delim-token", + ".", + 176535, + 176535, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-0", + 176536, + 176542, + { + "value": "mx-lg-0" + } + ], + [ + "{-token", + "{", + 176543, + 176543, + null + ], + [ + "ident-token", + "margin-right", + 176544, + 176555, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176556, + 176556, + null + ], + [ + "number-token", + "0", + 176557, + 176557, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176558, + 176558, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176559, + 176567, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176568, + 176568, + null + ], + [ + "ident-token", + "margin-left", + 176569, + 176579, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176580, + 176580, + null + ], + [ + "number-token", + "0", + 176581, + 176581, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 176582, + 176582, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176583, + 176591, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176592, + 176592, + null + ], + [ + "delim-token", + ".", + 176593, + 176593, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-1", + 176594, + 176600, + { + "value": "mx-lg-1" + } + ], + [ + "{-token", + "{", + 176601, + 176601, + null + ], + [ + "ident-token", + "margin-right", + 176602, + 176613, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176614, + 176614, + null + ], + [ + "dimension-token", + ".25rem", + 176615, + 176620, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176621, + 176621, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176622, + 176630, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176631, + 176631, + null + ], + [ + "ident-token", + "margin-left", + 176632, + 176642, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176643, + 176643, + null + ], + [ + "dimension-token", + ".25rem", + 176644, + 176649, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176650, + 176650, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176651, + 176659, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176660, + 176660, + null + ], + [ + "delim-token", + ".", + 176661, + 176661, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-2", + 176662, + 176668, + { + "value": "mx-lg-2" + } + ], + [ + "{-token", + "{", + 176669, + 176669, + null + ], + [ + "ident-token", + "margin-right", + 176670, + 176681, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176682, + 176682, + null + ], + [ + "dimension-token", + ".5rem", + 176683, + 176687, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176688, + 176688, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176689, + 176697, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176698, + 176698, + null + ], + [ + "ident-token", + "margin-left", + 176699, + 176709, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176710, + 176710, + null + ], + [ + "dimension-token", + ".5rem", + 176711, + 176715, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176716, + 176716, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176717, + 176725, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176726, + 176726, + null + ], + [ + "delim-token", + ".", + 176727, + 176727, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-3", + 176728, + 176734, + { + "value": "mx-lg-3" + } + ], + [ + "{-token", + "{", + 176735, + 176735, + null + ], + [ + "ident-token", + "margin-right", + 176736, + 176747, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176748, + 176748, + null + ], + [ + "dimension-token", + "1rem", + 176749, + 176752, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176753, + 176753, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176754, + 176762, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176763, + 176763, + null + ], + [ + "ident-token", + "margin-left", + 176764, + 176774, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176775, + 176775, + null + ], + [ + "dimension-token", + "1rem", + 176776, + 176779, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176780, + 176780, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176781, + 176789, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176790, + 176790, + null + ], + [ + "delim-token", + ".", + 176791, + 176791, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-4", + 176792, + 176798, + { + "value": "mx-lg-4" + } + ], + [ + "{-token", + "{", + 176799, + 176799, + null + ], + [ + "ident-token", + "margin-right", + 176800, + 176811, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176812, + 176812, + null + ], + [ + "dimension-token", + "1.5rem", + 176813, + 176818, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176819, + 176819, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176820, + 176828, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176829, + 176829, + null + ], + [ + "ident-token", + "margin-left", + 176830, + 176840, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176841, + 176841, + null + ], + [ + "dimension-token", + "1.5rem", + 176842, + 176847, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176848, + 176848, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176849, + 176857, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176858, + 176858, + null + ], + [ + "delim-token", + ".", + 176859, + 176859, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-5", + 176860, + 176866, + { + "value": "mx-lg-5" + } + ], + [ + "{-token", + "{", + 176867, + 176867, + null + ], + [ + "ident-token", + "margin-right", + 176868, + 176879, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176880, + 176880, + null + ], + [ + "dimension-token", + "3rem", + 176881, + 176884, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176885, + 176885, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176886, + 176894, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176895, + 176895, + null + ], + [ + "ident-token", + "margin-left", + 176896, + 176906, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176907, + 176907, + null + ], + [ + "dimension-token", + "3rem", + 176908, + 176911, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 176912, + 176912, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176913, + 176921, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176922, + 176922, + null + ], + [ + "delim-token", + ".", + 176923, + 176923, + { + "value": "." + } + ], + [ + "ident-token", + "mx-lg-auto", + 176924, + 176933, + { + "value": "mx-lg-auto" + } + ], + [ + "{-token", + "{", + 176934, + 176934, + null + ], + [ + "ident-token", + "margin-right", + 176935, + 176946, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 176947, + 176947, + null + ], + [ + "ident-token", + "auto", + 176948, + 176951, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 176952, + 176952, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176953, + 176961, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 176962, + 176962, + null + ], + [ + "ident-token", + "margin-left", + 176963, + 176973, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 176974, + 176974, + null + ], + [ + "ident-token", + "auto", + 176975, + 176978, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 176979, + 176979, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 176980, + 176988, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 176989, + 176989, + null + ], + [ + "delim-token", + ".", + 176990, + 176990, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-0", + 176991, + 176997, + { + "value": "my-lg-0" + } + ], + [ + "{-token", + "{", + 176998, + 176998, + null + ], + [ + "ident-token", + "margin-top", + 176999, + 177008, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177009, + 177009, + null + ], + [ + "number-token", + "0", + 177010, + 177010, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 177011, + 177011, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177012, + 177020, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177021, + 177021, + null + ], + [ + "ident-token", + "margin-bottom", + 177022, + 177034, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177035, + 177035, + null + ], + [ + "number-token", + "0", + 177036, + 177036, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 177037, + 177037, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177038, + 177046, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177047, + 177047, + null + ], + [ + "delim-token", + ".", + 177048, + 177048, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-1", + 177049, + 177055, + { + "value": "my-lg-1" + } + ], + [ + "{-token", + "{", + 177056, + 177056, + null + ], + [ + "ident-token", + "margin-top", + 177057, + 177066, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177067, + 177067, + null + ], + [ + "dimension-token", + ".25rem", + 177068, + 177073, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177074, + 177074, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177075, + 177083, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177084, + 177084, + null + ], + [ + "ident-token", + "margin-bottom", + 177085, + 177097, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177098, + 177098, + null + ], + [ + "dimension-token", + ".25rem", + 177099, + 177104, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177105, + 177105, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177106, + 177114, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177115, + 177115, + null + ], + [ + "delim-token", + ".", + 177116, + 177116, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-2", + 177117, + 177123, + { + "value": "my-lg-2" + } + ], + [ + "{-token", + "{", + 177124, + 177124, + null + ], + [ + "ident-token", + "margin-top", + 177125, + 177134, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177135, + 177135, + null + ], + [ + "dimension-token", + ".5rem", + 177136, + 177140, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177141, + 177141, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177142, + 177150, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177151, + 177151, + null + ], + [ + "ident-token", + "margin-bottom", + 177152, + 177164, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177165, + 177165, + null + ], + [ + "dimension-token", + ".5rem", + 177166, + 177170, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177171, + 177171, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177172, + 177180, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177181, + 177181, + null + ], + [ + "delim-token", + ".", + 177182, + 177182, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-3", + 177183, + 177189, + { + "value": "my-lg-3" + } + ], + [ + "{-token", + "{", + 177190, + 177190, + null + ], + [ + "ident-token", + "margin-top", + 177191, + 177200, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177201, + 177201, + null + ], + [ + "dimension-token", + "1rem", + 177202, + 177205, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177206, + 177206, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177207, + 177215, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177216, + 177216, + null + ], + [ + "ident-token", + "margin-bottom", + 177217, + 177229, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177230, + 177230, + null + ], + [ + "dimension-token", + "1rem", + 177231, + 177234, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177235, + 177235, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177236, + 177244, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177245, + 177245, + null + ], + [ + "delim-token", + ".", + 177246, + 177246, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-4", + 177247, + 177253, + { + "value": "my-lg-4" + } + ], + [ + "{-token", + "{", + 177254, + 177254, + null + ], + [ + "ident-token", + "margin-top", + 177255, + 177264, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177265, + 177265, + null + ], + [ + "dimension-token", + "1.5rem", + 177266, + 177271, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177272, + 177272, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177273, + 177281, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177282, + 177282, + null + ], + [ + "ident-token", + "margin-bottom", + 177283, + 177295, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177296, + 177296, + null + ], + [ + "dimension-token", + "1.5rem", + 177297, + 177302, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177303, + 177303, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177304, + 177312, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177313, + 177313, + null + ], + [ + "delim-token", + ".", + 177314, + 177314, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-5", + 177315, + 177321, + { + "value": "my-lg-5" + } + ], + [ + "{-token", + "{", + 177322, + 177322, + null + ], + [ + "ident-token", + "margin-top", + 177323, + 177332, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177333, + 177333, + null + ], + [ + "dimension-token", + "3rem", + 177334, + 177337, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177338, + 177338, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177339, + 177347, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177348, + 177348, + null + ], + [ + "ident-token", + "margin-bottom", + 177349, + 177361, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177362, + 177362, + null + ], + [ + "dimension-token", + "3rem", + 177363, + 177366, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177367, + 177367, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177368, + 177376, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177377, + 177377, + null + ], + [ + "delim-token", + ".", + 177378, + 177378, + { + "value": "." + } + ], + [ + "ident-token", + "my-lg-auto", + 177379, + 177388, + { + "value": "my-lg-auto" + } + ], + [ + "{-token", + "{", + 177389, + 177389, + null + ], + [ + "ident-token", + "margin-top", + 177390, + 177399, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177400, + 177400, + null + ], + [ + "ident-token", + "auto", + 177401, + 177404, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 177405, + 177405, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177406, + 177414, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 177415, + 177415, + null + ], + [ + "ident-token", + "margin-bottom", + 177416, + 177428, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177429, + 177429, + null + ], + [ + "ident-token", + "auto", + 177430, + 177433, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 177434, + 177434, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177435, + 177443, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177444, + 177444, + null + ], + [ + "delim-token", + ".", + 177445, + 177445, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-0", + 177446, + 177452, + { + "value": "mt-lg-0" + } + ], + [ + "{-token", + "{", + 177453, + 177453, + null + ], + [ + "ident-token", + "margin-top", + 177454, + 177463, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177464, + 177464, + null + ], + [ + "number-token", + "0", + 177465, + 177465, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 177466, + 177466, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177467, + 177475, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177476, + 177476, + null + ], + [ + "delim-token", + ".", + 177477, + 177477, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-1", + 177478, + 177484, + { + "value": "mt-lg-1" + } + ], + [ + "{-token", + "{", + 177485, + 177485, + null + ], + [ + "ident-token", + "margin-top", + 177486, + 177495, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177496, + 177496, + null + ], + [ + "dimension-token", + ".25rem", + 177497, + 177502, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177503, + 177503, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177504, + 177512, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177513, + 177513, + null + ], + [ + "delim-token", + ".", + 177514, + 177514, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-2", + 177515, + 177521, + { + "value": "mt-lg-2" + } + ], + [ + "{-token", + "{", + 177522, + 177522, + null + ], + [ + "ident-token", + "margin-top", + 177523, + 177532, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177533, + 177533, + null + ], + [ + "dimension-token", + ".5rem", + 177534, + 177538, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177539, + 177539, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177540, + 177548, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177549, + 177549, + null + ], + [ + "delim-token", + ".", + 177550, + 177550, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-3", + 177551, + 177557, + { + "value": "mt-lg-3" + } + ], + [ + "{-token", + "{", + 177558, + 177558, + null + ], + [ + "ident-token", + "margin-top", + 177559, + 177568, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177569, + 177569, + null + ], + [ + "dimension-token", + "1rem", + 177570, + 177573, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177574, + 177574, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177575, + 177583, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177584, + 177584, + null + ], + [ + "delim-token", + ".", + 177585, + 177585, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-4", + 177586, + 177592, + { + "value": "mt-lg-4" + } + ], + [ + "{-token", + "{", + 177593, + 177593, + null + ], + [ + "ident-token", + "margin-top", + 177594, + 177603, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177604, + 177604, + null + ], + [ + "dimension-token", + "1.5rem", + 177605, + 177610, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177611, + 177611, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177612, + 177620, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177621, + 177621, + null + ], + [ + "delim-token", + ".", + 177622, + 177622, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-5", + 177623, + 177629, + { + "value": "mt-lg-5" + } + ], + [ + "{-token", + "{", + 177630, + 177630, + null + ], + [ + "ident-token", + "margin-top", + 177631, + 177640, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177641, + 177641, + null + ], + [ + "dimension-token", + "3rem", + 177642, + 177645, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177646, + 177646, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177647, + 177655, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177656, + 177656, + null + ], + [ + "delim-token", + ".", + 177657, + 177657, + { + "value": "." + } + ], + [ + "ident-token", + "mt-lg-auto", + 177658, + 177667, + { + "value": "mt-lg-auto" + } + ], + [ + "{-token", + "{", + 177668, + 177668, + null + ], + [ + "ident-token", + "margin-top", + 177669, + 177678, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 177679, + 177679, + null + ], + [ + "ident-token", + "auto", + 177680, + 177683, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 177684, + 177684, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177685, + 177693, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177694, + 177694, + null + ], + [ + "delim-token", + ".", + 177695, + 177695, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-0", + 177696, + 177702, + { + "value": "me-lg-0" + } + ], + [ + "{-token", + "{", + 177703, + 177703, + null + ], + [ + "ident-token", + "margin-right", + 177704, + 177715, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177716, + 177716, + null + ], + [ + "number-token", + "0", + 177717, + 177717, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 177718, + 177718, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177719, + 177727, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177728, + 177728, + null + ], + [ + "delim-token", + ".", + 177729, + 177729, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-1", + 177730, + 177736, + { + "value": "me-lg-1" + } + ], + [ + "{-token", + "{", + 177737, + 177737, + null + ], + [ + "ident-token", + "margin-right", + 177738, + 177749, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177750, + 177750, + null + ], + [ + "dimension-token", + ".25rem", + 177751, + 177756, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177757, + 177757, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177758, + 177766, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177767, + 177767, + null + ], + [ + "delim-token", + ".", + 177768, + 177768, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-2", + 177769, + 177775, + { + "value": "me-lg-2" + } + ], + [ + "{-token", + "{", + 177776, + 177776, + null + ], + [ + "ident-token", + "margin-right", + 177777, + 177788, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177789, + 177789, + null + ], + [ + "dimension-token", + ".5rem", + 177790, + 177794, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177795, + 177795, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177796, + 177804, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177805, + 177805, + null + ], + [ + "delim-token", + ".", + 177806, + 177806, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-3", + 177807, + 177813, + { + "value": "me-lg-3" + } + ], + [ + "{-token", + "{", + 177814, + 177814, + null + ], + [ + "ident-token", + "margin-right", + 177815, + 177826, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177827, + 177827, + null + ], + [ + "dimension-token", + "1rem", + 177828, + 177831, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177832, + 177832, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177833, + 177841, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177842, + 177842, + null + ], + [ + "delim-token", + ".", + 177843, + 177843, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-4", + 177844, + 177850, + { + "value": "me-lg-4" + } + ], + [ + "{-token", + "{", + 177851, + 177851, + null + ], + [ + "ident-token", + "margin-right", + 177852, + 177863, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177864, + 177864, + null + ], + [ + "dimension-token", + "1.5rem", + 177865, + 177870, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177871, + 177871, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177872, + 177880, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177881, + 177881, + null + ], + [ + "delim-token", + ".", + 177882, + 177882, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-5", + 177883, + 177889, + { + "value": "me-lg-5" + } + ], + [ + "{-token", + "{", + 177890, + 177890, + null + ], + [ + "ident-token", + "margin-right", + 177891, + 177902, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177903, + 177903, + null + ], + [ + "dimension-token", + "3rem", + 177904, + 177907, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 177908, + 177908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177909, + 177917, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177918, + 177918, + null + ], + [ + "delim-token", + ".", + 177919, + 177919, + { + "value": "." + } + ], + [ + "ident-token", + "me-lg-auto", + 177920, + 177929, + { + "value": "me-lg-auto" + } + ], + [ + "{-token", + "{", + 177930, + 177930, + null + ], + [ + "ident-token", + "margin-right", + 177931, + 177942, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 177943, + 177943, + null + ], + [ + "ident-token", + "auto", + 177944, + 177947, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 177948, + 177948, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177949, + 177957, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177958, + 177958, + null + ], + [ + "delim-token", + ".", + 177959, + 177959, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-0", + 177960, + 177966, + { + "value": "mb-lg-0" + } + ], + [ + "{-token", + "{", + 177967, + 177967, + null + ], + [ + "ident-token", + "margin-bottom", + 177968, + 177980, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 177981, + 177981, + null + ], + [ + "number-token", + "0", + 177982, + 177982, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 177983, + 177983, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 177984, + 177992, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 177993, + 177993, + null + ], + [ + "delim-token", + ".", + 177994, + 177994, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-1", + 177995, + 178001, + { + "value": "mb-lg-1" + } + ], + [ + "{-token", + "{", + 178002, + 178002, + null + ], + [ + "ident-token", + "margin-bottom", + 178003, + 178015, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178016, + 178016, + null + ], + [ + "dimension-token", + ".25rem", + 178017, + 178022, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178023, + 178023, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178024, + 178032, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178033, + 178033, + null + ], + [ + "delim-token", + ".", + 178034, + 178034, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-2", + 178035, + 178041, + { + "value": "mb-lg-2" + } + ], + [ + "{-token", + "{", + 178042, + 178042, + null + ], + [ + "ident-token", + "margin-bottom", + 178043, + 178055, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178056, + 178056, + null + ], + [ + "dimension-token", + ".5rem", + 178057, + 178061, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178062, + 178062, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178063, + 178071, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178072, + 178072, + null + ], + [ + "delim-token", + ".", + 178073, + 178073, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-3", + 178074, + 178080, + { + "value": "mb-lg-3" + } + ], + [ + "{-token", + "{", + 178081, + 178081, + null + ], + [ + "ident-token", + "margin-bottom", + 178082, + 178094, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178095, + 178095, + null + ], + [ + "dimension-token", + "1rem", + 178096, + 178099, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178100, + 178100, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178101, + 178109, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178110, + 178110, + null + ], + [ + "delim-token", + ".", + 178111, + 178111, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-4", + 178112, + 178118, + { + "value": "mb-lg-4" + } + ], + [ + "{-token", + "{", + 178119, + 178119, + null + ], + [ + "ident-token", + "margin-bottom", + 178120, + 178132, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178133, + 178133, + null + ], + [ + "dimension-token", + "1.5rem", + 178134, + 178139, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178140, + 178140, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178141, + 178149, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178150, + 178150, + null + ], + [ + "delim-token", + ".", + 178151, + 178151, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-5", + 178152, + 178158, + { + "value": "mb-lg-5" + } + ], + [ + "{-token", + "{", + 178159, + 178159, + null + ], + [ + "ident-token", + "margin-bottom", + 178160, + 178172, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178173, + 178173, + null + ], + [ + "dimension-token", + "3rem", + 178174, + 178177, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178178, + 178178, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178179, + 178187, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178188, + 178188, + null + ], + [ + "delim-token", + ".", + 178189, + 178189, + { + "value": "." + } + ], + [ + "ident-token", + "mb-lg-auto", + 178190, + 178199, + { + "value": "mb-lg-auto" + } + ], + [ + "{-token", + "{", + 178200, + 178200, + null + ], + [ + "ident-token", + "margin-bottom", + 178201, + 178213, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 178214, + 178214, + null + ], + [ + "ident-token", + "auto", + 178215, + 178218, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 178219, + 178219, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178220, + 178228, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178229, + 178229, + null + ], + [ + "delim-token", + ".", + 178230, + 178230, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-0", + 178231, + 178237, + { + "value": "ms-lg-0" + } + ], + [ + "{-token", + "{", + 178238, + 178238, + null + ], + [ + "ident-token", + "margin-left", + 178239, + 178249, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178250, + 178250, + null + ], + [ + "number-token", + "0", + 178251, + 178251, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 178252, + 178252, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178253, + 178261, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178262, + 178262, + null + ], + [ + "delim-token", + ".", + 178263, + 178263, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-1", + 178264, + 178270, + { + "value": "ms-lg-1" + } + ], + [ + "{-token", + "{", + 178271, + 178271, + null + ], + [ + "ident-token", + "margin-left", + 178272, + 178282, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178283, + 178283, + null + ], + [ + "dimension-token", + ".25rem", + 178284, + 178289, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178290, + 178290, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178291, + 178299, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178300, + 178300, + null + ], + [ + "delim-token", + ".", + 178301, + 178301, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-2", + 178302, + 178308, + { + "value": "ms-lg-2" + } + ], + [ + "{-token", + "{", + 178309, + 178309, + null + ], + [ + "ident-token", + "margin-left", + 178310, + 178320, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178321, + 178321, + null + ], + [ + "dimension-token", + ".5rem", + 178322, + 178326, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178327, + 178327, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178328, + 178336, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178337, + 178337, + null + ], + [ + "delim-token", + ".", + 178338, + 178338, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-3", + 178339, + 178345, + { + "value": "ms-lg-3" + } + ], + [ + "{-token", + "{", + 178346, + 178346, + null + ], + [ + "ident-token", + "margin-left", + 178347, + 178357, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178358, + 178358, + null + ], + [ + "dimension-token", + "1rem", + 178359, + 178362, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178363, + 178363, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178364, + 178372, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178373, + 178373, + null + ], + [ + "delim-token", + ".", + 178374, + 178374, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-4", + 178375, + 178381, + { + "value": "ms-lg-4" + } + ], + [ + "{-token", + "{", + 178382, + 178382, + null + ], + [ + "ident-token", + "margin-left", + 178383, + 178393, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178394, + 178394, + null + ], + [ + "dimension-token", + "1.5rem", + 178395, + 178400, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178401, + 178401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178402, + 178410, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178411, + 178411, + null + ], + [ + "delim-token", + ".", + 178412, + 178412, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-5", + 178413, + 178419, + { + "value": "ms-lg-5" + } + ], + [ + "{-token", + "{", + 178420, + 178420, + null + ], + [ + "ident-token", + "margin-left", + 178421, + 178431, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178432, + 178432, + null + ], + [ + "dimension-token", + "3rem", + 178433, + 178436, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178437, + 178437, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178438, + 178446, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178447, + 178447, + null + ], + [ + "delim-token", + ".", + 178448, + 178448, + { + "value": "." + } + ], + [ + "ident-token", + "ms-lg-auto", + 178449, + 178458, + { + "value": "ms-lg-auto" + } + ], + [ + "{-token", + "{", + 178459, + 178459, + null + ], + [ + "ident-token", + "margin-left", + 178460, + 178470, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 178471, + 178471, + null + ], + [ + "ident-token", + "auto", + 178472, + 178475, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 178476, + 178476, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178477, + 178485, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178486, + 178486, + null + ], + [ + "delim-token", + ".", + 178487, + 178487, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-0", + 178488, + 178493, + { + "value": "p-lg-0" + } + ], + [ + "{-token", + "{", + 178494, + 178494, + null + ], + [ + "ident-token", + "padding", + 178495, + 178501, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178502, + 178502, + null + ], + [ + "number-token", + "0", + 178503, + 178503, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 178504, + 178504, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178505, + 178513, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178514, + 178514, + null + ], + [ + "delim-token", + ".", + 178515, + 178515, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-1", + 178516, + 178521, + { + "value": "p-lg-1" + } + ], + [ + "{-token", + "{", + 178522, + 178522, + null + ], + [ + "ident-token", + "padding", + 178523, + 178529, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178530, + 178530, + null + ], + [ + "dimension-token", + ".25rem", + 178531, + 178536, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178537, + 178537, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178538, + 178546, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178547, + 178547, + null + ], + [ + "delim-token", + ".", + 178548, + 178548, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-2", + 178549, + 178554, + { + "value": "p-lg-2" + } + ], + [ + "{-token", + "{", + 178555, + 178555, + null + ], + [ + "ident-token", + "padding", + 178556, + 178562, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178563, + 178563, + null + ], + [ + "dimension-token", + ".5rem", + 178564, + 178568, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178569, + 178569, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178570, + 178578, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178579, + 178579, + null + ], + [ + "delim-token", + ".", + 178580, + 178580, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-3", + 178581, + 178586, + { + "value": "p-lg-3" + } + ], + [ + "{-token", + "{", + 178587, + 178587, + null + ], + [ + "ident-token", + "padding", + 178588, + 178594, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178595, + 178595, + null + ], + [ + "dimension-token", + "1rem", + 178596, + 178599, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178600, + 178600, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178601, + 178609, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178610, + 178610, + null + ], + [ + "delim-token", + ".", + 178611, + 178611, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-4", + 178612, + 178617, + { + "value": "p-lg-4" + } + ], + [ + "{-token", + "{", + 178618, + 178618, + null + ], + [ + "ident-token", + "padding", + 178619, + 178625, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178626, + 178626, + null + ], + [ + "dimension-token", + "1.5rem", + 178627, + 178632, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178633, + 178633, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178634, + 178642, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178643, + 178643, + null + ], + [ + "delim-token", + ".", + 178644, + 178644, + { + "value": "." + } + ], + [ + "ident-token", + "p-lg-5", + 178645, + 178650, + { + "value": "p-lg-5" + } + ], + [ + "{-token", + "{", + 178651, + 178651, + null + ], + [ + "ident-token", + "padding", + 178652, + 178658, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 178659, + 178659, + null + ], + [ + "dimension-token", + "3rem", + 178660, + 178663, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178664, + 178664, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178665, + 178673, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178674, + 178674, + null + ], + [ + "delim-token", + ".", + 178675, + 178675, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-0", + 178676, + 178682, + { + "value": "px-lg-0" + } + ], + [ + "{-token", + "{", + 178683, + 178683, + null + ], + [ + "ident-token", + "padding-right", + 178684, + 178696, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 178697, + 178697, + null + ], + [ + "number-token", + "0", + 178698, + 178698, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 178699, + 178699, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178700, + 178708, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 178709, + 178709, + null + ], + [ + "ident-token", + "padding-left", + 178710, + 178721, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 178722, + 178722, + null + ], + [ + "number-token", + "0", + 178723, + 178723, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 178724, + 178724, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178725, + 178733, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178734, + 178734, + null + ], + [ + "delim-token", + ".", + 178735, + 178735, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-1", + 178736, + 178742, + { + "value": "px-lg-1" + } + ], + [ + "{-token", + "{", + 178743, + 178743, + null + ], + [ + "ident-token", + "padding-right", + 178744, + 178756, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 178757, + 178757, + null + ], + [ + "dimension-token", + ".25rem", + 178758, + 178763, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178764, + 178764, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178765, + 178773, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 178774, + 178774, + null + ], + [ + "ident-token", + "padding-left", + 178775, + 178786, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 178787, + 178787, + null + ], + [ + "dimension-token", + ".25rem", + 178788, + 178793, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178794, + 178794, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178795, + 178803, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178804, + 178804, + null + ], + [ + "delim-token", + ".", + 178805, + 178805, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-2", + 178806, + 178812, + { + "value": "px-lg-2" + } + ], + [ + "{-token", + "{", + 178813, + 178813, + null + ], + [ + "ident-token", + "padding-right", + 178814, + 178826, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 178827, + 178827, + null + ], + [ + "dimension-token", + ".5rem", + 178828, + 178832, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178833, + 178833, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178834, + 178842, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 178843, + 178843, + null + ], + [ + "ident-token", + "padding-left", + 178844, + 178855, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 178856, + 178856, + null + ], + [ + "dimension-token", + ".5rem", + 178857, + 178861, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178862, + 178862, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178863, + 178871, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178872, + 178872, + null + ], + [ + "delim-token", + ".", + 178873, + 178873, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-3", + 178874, + 178880, + { + "value": "px-lg-3" + } + ], + [ + "{-token", + "{", + 178881, + 178881, + null + ], + [ + "ident-token", + "padding-right", + 178882, + 178894, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 178895, + 178895, + null + ], + [ + "dimension-token", + "1rem", + 178896, + 178899, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178900, + 178900, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178901, + 178909, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 178910, + 178910, + null + ], + [ + "ident-token", + "padding-left", + 178911, + 178922, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 178923, + 178923, + null + ], + [ + "dimension-token", + "1rem", + 178924, + 178927, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178928, + 178928, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178929, + 178937, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 178938, + 178938, + null + ], + [ + "delim-token", + ".", + 178939, + 178939, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-4", + 178940, + 178946, + { + "value": "px-lg-4" + } + ], + [ + "{-token", + "{", + 178947, + 178947, + null + ], + [ + "ident-token", + "padding-right", + 178948, + 178960, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 178961, + 178961, + null + ], + [ + "dimension-token", + "1.5rem", + 178962, + 178967, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178968, + 178968, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178969, + 178977, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 178978, + 178978, + null + ], + [ + "ident-token", + "padding-left", + 178979, + 178990, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 178991, + 178991, + null + ], + [ + "dimension-token", + "1.5rem", + 178992, + 178997, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 178998, + 178998, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 178999, + 179007, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179008, + 179008, + null + ], + [ + "delim-token", + ".", + 179009, + 179009, + { + "value": "." + } + ], + [ + "ident-token", + "px-lg-5", + 179010, + 179016, + { + "value": "px-lg-5" + } + ], + [ + "{-token", + "{", + 179017, + 179017, + null + ], + [ + "ident-token", + "padding-right", + 179018, + 179030, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179031, + 179031, + null + ], + [ + "dimension-token", + "3rem", + 179032, + 179035, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179036, + 179036, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179037, + 179045, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179046, + 179046, + null + ], + [ + "ident-token", + "padding-left", + 179047, + 179058, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 179059, + 179059, + null + ], + [ + "dimension-token", + "3rem", + 179060, + 179063, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179064, + 179064, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179065, + 179073, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179074, + 179074, + null + ], + [ + "delim-token", + ".", + 179075, + 179075, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-0", + 179076, + 179082, + { + "value": "py-lg-0" + } + ], + [ + "{-token", + "{", + 179083, + 179083, + null + ], + [ + "ident-token", + "padding-top", + 179084, + 179094, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179095, + 179095, + null + ], + [ + "number-token", + "0", + 179096, + 179096, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 179097, + 179097, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179098, + 179106, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179107, + 179107, + null + ], + [ + "ident-token", + "padding-bottom", + 179108, + 179121, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179122, + 179122, + null + ], + [ + "number-token", + "0", + 179123, + 179123, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 179124, + 179124, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179125, + 179133, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179134, + 179134, + null + ], + [ + "delim-token", + ".", + 179135, + 179135, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-1", + 179136, + 179142, + { + "value": "py-lg-1" + } + ], + [ + "{-token", + "{", + 179143, + 179143, + null + ], + [ + "ident-token", + "padding-top", + 179144, + 179154, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179155, + 179155, + null + ], + [ + "dimension-token", + ".25rem", + 179156, + 179161, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179162, + 179162, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179163, + 179171, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179172, + 179172, + null + ], + [ + "ident-token", + "padding-bottom", + 179173, + 179186, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179187, + 179187, + null + ], + [ + "dimension-token", + ".25rem", + 179188, + 179193, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179194, + 179194, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179195, + 179203, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179204, + 179204, + null + ], + [ + "delim-token", + ".", + 179205, + 179205, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-2", + 179206, + 179212, + { + "value": "py-lg-2" + } + ], + [ + "{-token", + "{", + 179213, + 179213, + null + ], + [ + "ident-token", + "padding-top", + 179214, + 179224, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179225, + 179225, + null + ], + [ + "dimension-token", + ".5rem", + 179226, + 179230, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179231, + 179231, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179232, + 179240, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179241, + 179241, + null + ], + [ + "ident-token", + "padding-bottom", + 179242, + 179255, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179256, + 179256, + null + ], + [ + "dimension-token", + ".5rem", + 179257, + 179261, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179262, + 179262, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179263, + 179271, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179272, + 179272, + null + ], + [ + "delim-token", + ".", + 179273, + 179273, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-3", + 179274, + 179280, + { + "value": "py-lg-3" + } + ], + [ + "{-token", + "{", + 179281, + 179281, + null + ], + [ + "ident-token", + "padding-top", + 179282, + 179292, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179293, + 179293, + null + ], + [ + "dimension-token", + "1rem", + 179294, + 179297, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179298, + 179298, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179299, + 179307, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179308, + 179308, + null + ], + [ + "ident-token", + "padding-bottom", + 179309, + 179322, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179323, + 179323, + null + ], + [ + "dimension-token", + "1rem", + 179324, + 179327, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179328, + 179328, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179329, + 179337, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179338, + 179338, + null + ], + [ + "delim-token", + ".", + 179339, + 179339, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-4", + 179340, + 179346, + { + "value": "py-lg-4" + } + ], + [ + "{-token", + "{", + 179347, + 179347, + null + ], + [ + "ident-token", + "padding-top", + 179348, + 179358, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179359, + 179359, + null + ], + [ + "dimension-token", + "1.5rem", + 179360, + 179365, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179366, + 179366, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179367, + 179375, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179376, + 179376, + null + ], + [ + "ident-token", + "padding-bottom", + 179377, + 179390, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179391, + 179391, + null + ], + [ + "dimension-token", + "1.5rem", + 179392, + 179397, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179398, + 179398, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179399, + 179407, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179408, + 179408, + null + ], + [ + "delim-token", + ".", + 179409, + 179409, + { + "value": "." + } + ], + [ + "ident-token", + "py-lg-5", + 179410, + 179416, + { + "value": "py-lg-5" + } + ], + [ + "{-token", + "{", + 179417, + 179417, + null + ], + [ + "ident-token", + "padding-top", + 179418, + 179428, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179429, + 179429, + null + ], + [ + "dimension-token", + "3rem", + 179430, + 179433, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179434, + 179434, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179435, + 179443, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 179444, + 179444, + null + ], + [ + "ident-token", + "padding-bottom", + 179445, + 179458, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179459, + 179459, + null + ], + [ + "dimension-token", + "3rem", + 179460, + 179463, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179464, + 179464, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179465, + 179473, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179474, + 179474, + null + ], + [ + "delim-token", + ".", + 179475, + 179475, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-0", + 179476, + 179482, + { + "value": "pt-lg-0" + } + ], + [ + "{-token", + "{", + 179483, + 179483, + null + ], + [ + "ident-token", + "padding-top", + 179484, + 179494, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179495, + 179495, + null + ], + [ + "number-token", + "0", + 179496, + 179496, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 179497, + 179497, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179498, + 179506, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179507, + 179507, + null + ], + [ + "delim-token", + ".", + 179508, + 179508, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-1", + 179509, + 179515, + { + "value": "pt-lg-1" + } + ], + [ + "{-token", + "{", + 179516, + 179516, + null + ], + [ + "ident-token", + "padding-top", + 179517, + 179527, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179528, + 179528, + null + ], + [ + "dimension-token", + ".25rem", + 179529, + 179534, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179535, + 179535, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179536, + 179544, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179545, + 179545, + null + ], + [ + "delim-token", + ".", + 179546, + 179546, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-2", + 179547, + 179553, + { + "value": "pt-lg-2" + } + ], + [ + "{-token", + "{", + 179554, + 179554, + null + ], + [ + "ident-token", + "padding-top", + 179555, + 179565, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179566, + 179566, + null + ], + [ + "dimension-token", + ".5rem", + 179567, + 179571, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179572, + 179572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179573, + 179581, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179582, + 179582, + null + ], + [ + "delim-token", + ".", + 179583, + 179583, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-3", + 179584, + 179590, + { + "value": "pt-lg-3" + } + ], + [ + "{-token", + "{", + 179591, + 179591, + null + ], + [ + "ident-token", + "padding-top", + 179592, + 179602, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179603, + 179603, + null + ], + [ + "dimension-token", + "1rem", + 179604, + 179607, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179608, + 179608, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179609, + 179617, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179618, + 179618, + null + ], + [ + "delim-token", + ".", + 179619, + 179619, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-4", + 179620, + 179626, + { + "value": "pt-lg-4" + } + ], + [ + "{-token", + "{", + 179627, + 179627, + null + ], + [ + "ident-token", + "padding-top", + 179628, + 179638, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179639, + 179639, + null + ], + [ + "dimension-token", + "1.5rem", + 179640, + 179645, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179646, + 179646, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179647, + 179655, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179656, + 179656, + null + ], + [ + "delim-token", + ".", + 179657, + 179657, + { + "value": "." + } + ], + [ + "ident-token", + "pt-lg-5", + 179658, + 179664, + { + "value": "pt-lg-5" + } + ], + [ + "{-token", + "{", + 179665, + 179665, + null + ], + [ + "ident-token", + "padding-top", + 179666, + 179676, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 179677, + 179677, + null + ], + [ + "dimension-token", + "3rem", + 179678, + 179681, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179682, + 179682, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179683, + 179691, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179692, + 179692, + null + ], + [ + "delim-token", + ".", + 179693, + 179693, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-0", + 179694, + 179700, + { + "value": "pe-lg-0" + } + ], + [ + "{-token", + "{", + 179701, + 179701, + null + ], + [ + "ident-token", + "padding-right", + 179702, + 179714, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179715, + 179715, + null + ], + [ + "number-token", + "0", + 179716, + 179716, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 179717, + 179717, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179718, + 179726, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179727, + 179727, + null + ], + [ + "delim-token", + ".", + 179728, + 179728, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-1", + 179729, + 179735, + { + "value": "pe-lg-1" + } + ], + [ + "{-token", + "{", + 179736, + 179736, + null + ], + [ + "ident-token", + "padding-right", + 179737, + 179749, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179750, + 179750, + null + ], + [ + "dimension-token", + ".25rem", + 179751, + 179756, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179757, + 179757, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179758, + 179766, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179767, + 179767, + null + ], + [ + "delim-token", + ".", + 179768, + 179768, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-2", + 179769, + 179775, + { + "value": "pe-lg-2" + } + ], + [ + "{-token", + "{", + 179776, + 179776, + null + ], + [ + "ident-token", + "padding-right", + 179777, + 179789, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179790, + 179790, + null + ], + [ + "dimension-token", + ".5rem", + 179791, + 179795, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179796, + 179796, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179797, + 179805, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179806, + 179806, + null + ], + [ + "delim-token", + ".", + 179807, + 179807, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-3", + 179808, + 179814, + { + "value": "pe-lg-3" + } + ], + [ + "{-token", + "{", + 179815, + 179815, + null + ], + [ + "ident-token", + "padding-right", + 179816, + 179828, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179829, + 179829, + null + ], + [ + "dimension-token", + "1rem", + 179830, + 179833, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179834, + 179834, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179835, + 179843, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179844, + 179844, + null + ], + [ + "delim-token", + ".", + 179845, + 179845, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-4", + 179846, + 179852, + { + "value": "pe-lg-4" + } + ], + [ + "{-token", + "{", + 179853, + 179853, + null + ], + [ + "ident-token", + "padding-right", + 179854, + 179866, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179867, + 179867, + null + ], + [ + "dimension-token", + "1.5rem", + 179868, + 179873, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179874, + 179874, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179875, + 179883, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179884, + 179884, + null + ], + [ + "delim-token", + ".", + 179885, + 179885, + { + "value": "." + } + ], + [ + "ident-token", + "pe-lg-5", + 179886, + 179892, + { + "value": "pe-lg-5" + } + ], + [ + "{-token", + "{", + 179893, + 179893, + null + ], + [ + "ident-token", + "padding-right", + 179894, + 179906, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 179907, + 179907, + null + ], + [ + "dimension-token", + "3rem", + 179908, + 179911, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179912, + 179912, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179913, + 179921, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179922, + 179922, + null + ], + [ + "delim-token", + ".", + 179923, + 179923, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-0", + 179924, + 179930, + { + "value": "pb-lg-0" + } + ], + [ + "{-token", + "{", + 179931, + 179931, + null + ], + [ + "ident-token", + "padding-bottom", + 179932, + 179945, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179946, + 179946, + null + ], + [ + "number-token", + "0", + 179947, + 179947, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 179948, + 179948, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179949, + 179957, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179958, + 179958, + null + ], + [ + "delim-token", + ".", + 179959, + 179959, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-1", + 179960, + 179966, + { + "value": "pb-lg-1" + } + ], + [ + "{-token", + "{", + 179967, + 179967, + null + ], + [ + "ident-token", + "padding-bottom", + 179968, + 179981, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 179982, + 179982, + null + ], + [ + "dimension-token", + ".25rem", + 179983, + 179988, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 179989, + 179989, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 179990, + 179998, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 179999, + 179999, + null + ], + [ + "delim-token", + ".", + 180000, + 180000, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-2", + 180001, + 180007, + { + "value": "pb-lg-2" + } + ], + [ + "{-token", + "{", + 180008, + 180008, + null + ], + [ + "ident-token", + "padding-bottom", + 180009, + 180022, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 180023, + 180023, + null + ], + [ + "dimension-token", + ".5rem", + 180024, + 180028, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180029, + 180029, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180030, + 180038, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180039, + 180039, + null + ], + [ + "delim-token", + ".", + 180040, + 180040, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-3", + 180041, + 180047, + { + "value": "pb-lg-3" + } + ], + [ + "{-token", + "{", + 180048, + 180048, + null + ], + [ + "ident-token", + "padding-bottom", + 180049, + 180062, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 180063, + 180063, + null + ], + [ + "dimension-token", + "1rem", + 180064, + 180067, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180068, + 180068, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180069, + 180077, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180078, + 180078, + null + ], + [ + "delim-token", + ".", + 180079, + 180079, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-4", + 180080, + 180086, + { + "value": "pb-lg-4" + } + ], + [ + "{-token", + "{", + 180087, + 180087, + null + ], + [ + "ident-token", + "padding-bottom", + 180088, + 180101, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 180102, + 180102, + null + ], + [ + "dimension-token", + "1.5rem", + 180103, + 180108, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180109, + 180109, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180110, + 180118, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180119, + 180119, + null + ], + [ + "delim-token", + ".", + 180120, + 180120, + { + "value": "." + } + ], + [ + "ident-token", + "pb-lg-5", + 180121, + 180127, + { + "value": "pb-lg-5" + } + ], + [ + "{-token", + "{", + 180128, + 180128, + null + ], + [ + "ident-token", + "padding-bottom", + 180129, + 180142, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 180143, + 180143, + null + ], + [ + "dimension-token", + "3rem", + 180144, + 180147, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180148, + 180148, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180149, + 180157, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180158, + 180158, + null + ], + [ + "delim-token", + ".", + 180159, + 180159, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-0", + 180160, + 180166, + { + "value": "ps-lg-0" + } + ], + [ + "{-token", + "{", + 180167, + 180167, + null + ], + [ + "ident-token", + "padding-left", + 180168, + 180179, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180180, + 180180, + null + ], + [ + "number-token", + "0", + 180181, + 180181, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 180182, + 180182, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180183, + 180191, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180192, + 180192, + null + ], + [ + "delim-token", + ".", + 180193, + 180193, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-1", + 180194, + 180200, + { + "value": "ps-lg-1" + } + ], + [ + "{-token", + "{", + 180201, + 180201, + null + ], + [ + "ident-token", + "padding-left", + 180202, + 180213, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180214, + 180214, + null + ], + [ + "dimension-token", + ".25rem", + 180215, + 180220, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180221, + 180221, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180222, + 180230, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180231, + 180231, + null + ], + [ + "delim-token", + ".", + 180232, + 180232, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-2", + 180233, + 180239, + { + "value": "ps-lg-2" + } + ], + [ + "{-token", + "{", + 180240, + 180240, + null + ], + [ + "ident-token", + "padding-left", + 180241, + 180252, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180253, + 180253, + null + ], + [ + "dimension-token", + ".5rem", + 180254, + 180258, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180259, + 180259, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180260, + 180268, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180269, + 180269, + null + ], + [ + "delim-token", + ".", + 180270, + 180270, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-3", + 180271, + 180277, + { + "value": "ps-lg-3" + } + ], + [ + "{-token", + "{", + 180278, + 180278, + null + ], + [ + "ident-token", + "padding-left", + 180279, + 180290, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180291, + 180291, + null + ], + [ + "dimension-token", + "1rem", + 180292, + 180295, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180296, + 180296, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180297, + 180305, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180306, + 180306, + null + ], + [ + "delim-token", + ".", + 180307, + 180307, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-4", + 180308, + 180314, + { + "value": "ps-lg-4" + } + ], + [ + "{-token", + "{", + 180315, + 180315, + null + ], + [ + "ident-token", + "padding-left", + 180316, + 180327, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180328, + 180328, + null + ], + [ + "dimension-token", + "1.5rem", + 180329, + 180334, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180335, + 180335, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180336, + 180344, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180345, + 180345, + null + ], + [ + "delim-token", + ".", + 180346, + 180346, + { + "value": "." + } + ], + [ + "ident-token", + "ps-lg-5", + 180347, + 180353, + { + "value": "ps-lg-5" + } + ], + [ + "{-token", + "{", + 180354, + 180354, + null + ], + [ + "ident-token", + "padding-left", + 180355, + 180366, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 180367, + 180367, + null + ], + [ + "dimension-token", + "3rem", + 180368, + 180371, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180372, + 180372, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180373, + 180381, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180382, + 180382, + null + ], + [ + "delim-token", + ".", + 180383, + 180383, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-0", + 180384, + 180391, + { + "value": "gap-lg-0" + } + ], + [ + "{-token", + "{", + 180392, + 180392, + null + ], + [ + "ident-token", + "gap", + 180393, + 180395, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180396, + 180396, + null + ], + [ + "number-token", + "0", + 180397, + 180397, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 180398, + 180398, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180399, + 180407, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180408, + 180408, + null + ], + [ + "delim-token", + ".", + 180409, + 180409, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-1", + 180410, + 180417, + { + "value": "gap-lg-1" + } + ], + [ + "{-token", + "{", + 180418, + 180418, + null + ], + [ + "ident-token", + "gap", + 180419, + 180421, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180422, + 180422, + null + ], + [ + "dimension-token", + ".25rem", + 180423, + 180428, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180429, + 180429, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180430, + 180438, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180439, + 180439, + null + ], + [ + "delim-token", + ".", + 180440, + 180440, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-2", + 180441, + 180448, + { + "value": "gap-lg-2" + } + ], + [ + "{-token", + "{", + 180449, + 180449, + null + ], + [ + "ident-token", + "gap", + 180450, + 180452, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180453, + 180453, + null + ], + [ + "dimension-token", + ".5rem", + 180454, + 180458, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180459, + 180459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180460, + 180468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180469, + 180469, + null + ], + [ + "delim-token", + ".", + 180470, + 180470, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-3", + 180471, + 180478, + { + "value": "gap-lg-3" + } + ], + [ + "{-token", + "{", + 180479, + 180479, + null + ], + [ + "ident-token", + "gap", + 180480, + 180482, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180483, + 180483, + null + ], + [ + "dimension-token", + "1rem", + 180484, + 180487, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180488, + 180488, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180489, + 180497, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180498, + 180498, + null + ], + [ + "delim-token", + ".", + 180499, + 180499, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-4", + 180500, + 180507, + { + "value": "gap-lg-4" + } + ], + [ + "{-token", + "{", + 180508, + 180508, + null + ], + [ + "ident-token", + "gap", + 180509, + 180511, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180512, + 180512, + null + ], + [ + "dimension-token", + "1.5rem", + 180513, + 180518, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180519, + 180519, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180520, + 180528, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180529, + 180529, + null + ], + [ + "delim-token", + ".", + 180530, + 180530, + { + "value": "." + } + ], + [ + "ident-token", + "gap-lg-5", + 180531, + 180538, + { + "value": "gap-lg-5" + } + ], + [ + "{-token", + "{", + 180539, + 180539, + null + ], + [ + "ident-token", + "gap", + 180540, + 180542, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 180543, + 180543, + null + ], + [ + "dimension-token", + "3rem", + 180544, + 180547, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 180548, + 180548, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180549, + 180557, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180558, + 180558, + null + ], + [ + "delim-token", + ".", + 180559, + 180559, + { + "value": "." + } + ], + [ + "ident-token", + "text-lg-start", + 180560, + 180572, + { + "value": "text-lg-start" + } + ], + [ + "{-token", + "{", + 180573, + 180573, + null + ], + [ + "ident-token", + "text-align", + 180574, + 180583, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 180584, + 180584, + null + ], + [ + "ident-token", + "left", + 180585, + 180588, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 180589, + 180589, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180590, + 180598, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180599, + 180599, + null + ], + [ + "delim-token", + ".", + 180600, + 180600, + { + "value": "." + } + ], + [ + "ident-token", + "text-lg-end", + 180601, + 180611, + { + "value": "text-lg-end" + } + ], + [ + "{-token", + "{", + 180612, + 180612, + null + ], + [ + "ident-token", + "text-align", + 180613, + 180622, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 180623, + 180623, + null + ], + [ + "ident-token", + "right", + 180624, + 180628, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 180629, + 180629, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180630, + 180638, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180639, + 180639, + null + ], + [ + "delim-token", + ".", + 180640, + 180640, + { + "value": "." + } + ], + [ + "ident-token", + "text-lg-center", + 180641, + 180654, + { + "value": "text-lg-center" + } + ], + [ + "{-token", + "{", + 180655, + 180655, + null + ], + [ + "ident-token", + "text-align", + 180656, + 180665, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 180666, + 180666, + null + ], + [ + "ident-token", + "center", + 180667, + 180672, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 180673, + 180673, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180674, + 180682, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180683, + 180683, + null + ], + [ + "}-token", + "}", + 180684, + 180684, + null + ], + [ + "at-keyword-token", + "@media", + 180685, + 180690, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 180691, + 180691, + null + ], + [ + "(-token", + "(", + 180692, + 180692, + null + ], + [ + "ident-token", + "min-width", + 180693, + 180701, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 180702, + 180702, + null + ], + [ + "dimension-token", + "1200px", + 180703, + 180708, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 180709, + 180709, + null + ], + [ + "{-token", + "{", + 180710, + 180710, + null + ], + [ + "delim-token", + ".", + 180711, + 180711, + { + "value": "." + } + ], + [ + "ident-token", + "float-xl-start", + 180712, + 180725, + { + "value": "float-xl-start" + } + ], + [ + "{-token", + "{", + 180726, + 180726, + null + ], + [ + "ident-token", + "float", + 180727, + 180731, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 180732, + 180732, + null + ], + [ + "ident-token", + "left", + 180733, + 180736, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 180737, + 180737, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180738, + 180746, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180747, + 180747, + null + ], + [ + "delim-token", + ".", + 180748, + 180748, + { + "value": "." + } + ], + [ + "ident-token", + "float-xl-end", + 180749, + 180760, + { + "value": "float-xl-end" + } + ], + [ + "{-token", + "{", + 180761, + 180761, + null + ], + [ + "ident-token", + "float", + 180762, + 180766, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 180767, + 180767, + null + ], + [ + "ident-token", + "right", + 180768, + 180772, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 180773, + 180773, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180774, + 180782, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180783, + 180783, + null + ], + [ + "delim-token", + ".", + 180784, + 180784, + { + "value": "." + } + ], + [ + "ident-token", + "float-xl-none", + 180785, + 180797, + { + "value": "float-xl-none" + } + ], + [ + "{-token", + "{", + 180798, + 180798, + null + ], + [ + "ident-token", + "float", + 180799, + 180803, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 180804, + 180804, + null + ], + [ + "ident-token", + "none", + 180805, + 180808, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 180809, + 180809, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180810, + 180818, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180819, + 180819, + null + ], + [ + "delim-token", + ".", + 180820, + 180820, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-inline", + 180821, + 180831, + { + "value": "d-xl-inline" + } + ], + [ + "{-token", + "{", + 180832, + 180832, + null + ], + [ + "ident-token", + "display", + 180833, + 180839, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 180840, + 180840, + null + ], + [ + "ident-token", + "inline", + 180841, + 180846, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 180847, + 180847, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180848, + 180856, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180857, + 180857, + null + ], + [ + "delim-token", + ".", + 180858, + 180858, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-inline-block", + 180859, + 180875, + { + "value": "d-xl-inline-block" + } + ], + [ + "{-token", + "{", + 180876, + 180876, + null + ], + [ + "ident-token", + "display", + 180877, + 180883, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 180884, + 180884, + null + ], + [ + "ident-token", + "inline-block", + 180885, + 180896, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 180897, + 180897, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180898, + 180906, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180907, + 180907, + null + ], + [ + "delim-token", + ".", + 180908, + 180908, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-block", + 180909, + 180918, + { + "value": "d-xl-block" + } + ], + [ + "{-token", + "{", + 180919, + 180919, + null + ], + [ + "ident-token", + "display", + 180920, + 180926, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 180927, + 180927, + null + ], + [ + "ident-token", + "block", + 180928, + 180932, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 180933, + 180933, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180934, + 180942, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180943, + 180943, + null + ], + [ + "delim-token", + ".", + 180944, + 180944, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-grid", + 180945, + 180953, + { + "value": "d-xl-grid" + } + ], + [ + "{-token", + "{", + 180954, + 180954, + null + ], + [ + "ident-token", + "display", + 180955, + 180961, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 180962, + 180962, + null + ], + [ + "ident-token", + "grid", + 180963, + 180966, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 180967, + 180967, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 180968, + 180976, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 180977, + 180977, + null + ], + [ + "delim-token", + ".", + 180978, + 180978, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-table", + 180979, + 180988, + { + "value": "d-xl-table" + } + ], + [ + "{-token", + "{", + 180989, + 180989, + null + ], + [ + "ident-token", + "display", + 180990, + 180996, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 180997, + 180997, + null + ], + [ + "ident-token", + "table", + 180998, + 181002, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 181003, + 181003, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181004, + 181012, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181013, + 181013, + null + ], + [ + "delim-token", + ".", + 181014, + 181014, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-table-row", + 181015, + 181028, + { + "value": "d-xl-table-row" + } + ], + [ + "{-token", + "{", + 181029, + 181029, + null + ], + [ + "ident-token", + "display", + 181030, + 181036, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 181037, + 181037, + null + ], + [ + "ident-token", + "table-row", + 181038, + 181046, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 181047, + 181047, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181048, + 181056, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181057, + 181057, + null + ], + [ + "delim-token", + ".", + 181058, + 181058, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-table-cell", + 181059, + 181073, + { + "value": "d-xl-table-cell" + } + ], + [ + "{-token", + "{", + 181074, + 181074, + null + ], + [ + "ident-token", + "display", + 181075, + 181081, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 181082, + 181082, + null + ], + [ + "ident-token", + "table-cell", + 181083, + 181092, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 181093, + 181093, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181094, + 181102, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181103, + 181103, + null + ], + [ + "delim-token", + ".", + 181104, + 181104, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-flex", + 181105, + 181113, + { + "value": "d-xl-flex" + } + ], + [ + "{-token", + "{", + 181114, + 181114, + null + ], + [ + "ident-token", + "display", + 181115, + 181121, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 181122, + 181122, + null + ], + [ + "ident-token", + "flex", + 181123, + 181126, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 181127, + 181127, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181128, + 181136, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181137, + 181137, + null + ], + [ + "delim-token", + ".", + 181138, + 181138, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-inline-flex", + 181139, + 181154, + { + "value": "d-xl-inline-flex" + } + ], + [ + "{-token", + "{", + 181155, + 181155, + null + ], + [ + "ident-token", + "display", + 181156, + 181162, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 181163, + 181163, + null + ], + [ + "ident-token", + "inline-flex", + 181164, + 181174, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 181175, + 181175, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181176, + 181184, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181185, + 181185, + null + ], + [ + "delim-token", + ".", + 181186, + 181186, + { + "value": "." + } + ], + [ + "ident-token", + "d-xl-none", + 181187, + 181195, + { + "value": "d-xl-none" + } + ], + [ + "{-token", + "{", + 181196, + 181196, + null + ], + [ + "ident-token", + "display", + 181197, + 181203, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 181204, + 181204, + null + ], + [ + "ident-token", + "none", + 181205, + 181208, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 181209, + 181209, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181210, + 181218, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181219, + 181219, + null + ], + [ + "delim-token", + ".", + 181220, + 181220, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-fill", + 181221, + 181232, + { + "value": "flex-xl-fill" + } + ], + [ + "{-token", + "{", + 181233, + 181233, + null + ], + [ + "ident-token", + "flex", + 181234, + 181237, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 181238, + 181238, + null + ], + [ + "number-token", + "1", + 181239, + 181239, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 181240, + 181240, + null + ], + [ + "number-token", + "1", + 181241, + 181241, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 181242, + 181242, + null + ], + [ + "ident-token", + "auto", + 181243, + 181246, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 181247, + 181247, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181248, + 181256, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181257, + 181257, + null + ], + [ + "delim-token", + ".", + 181258, + 181258, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-row", + 181259, + 181269, + { + "value": "flex-xl-row" + } + ], + [ + "{-token", + "{", + 181270, + 181270, + null + ], + [ + "ident-token", + "flex-direction", + 181271, + 181284, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 181285, + 181285, + null + ], + [ + "ident-token", + "row", + 181286, + 181288, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 181289, + 181289, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181290, + 181298, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181299, + 181299, + null + ], + [ + "delim-token", + ".", + 181300, + 181300, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-column", + 181301, + 181314, + { + "value": "flex-xl-column" + } + ], + [ + "{-token", + "{", + 181315, + 181315, + null + ], + [ + "ident-token", + "flex-direction", + 181316, + 181329, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 181330, + 181330, + null + ], + [ + "ident-token", + "column", + 181331, + 181336, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 181337, + 181337, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181338, + 181346, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181347, + 181347, + null + ], + [ + "delim-token", + ".", + 181348, + 181348, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-row-reverse", + 181349, + 181367, + { + "value": "flex-xl-row-reverse" + } + ], + [ + "{-token", + "{", + 181368, + 181368, + null + ], + [ + "ident-token", + "flex-direction", + 181369, + 181382, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 181383, + 181383, + null + ], + [ + "ident-token", + "row-reverse", + 181384, + 181394, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 181395, + 181395, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181396, + 181404, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181405, + 181405, + null + ], + [ + "delim-token", + ".", + 181406, + 181406, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-column-reverse", + 181407, + 181428, + { + "value": "flex-xl-column-reverse" + } + ], + [ + "{-token", + "{", + 181429, + 181429, + null + ], + [ + "ident-token", + "flex-direction", + 181430, + 181443, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 181444, + 181444, + null + ], + [ + "ident-token", + "column-reverse", + 181445, + 181458, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 181459, + 181459, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181460, + 181468, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181469, + 181469, + null + ], + [ + "delim-token", + ".", + 181470, + 181470, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-grow-0", + 181471, + 181484, + { + "value": "flex-xl-grow-0" + } + ], + [ + "{-token", + "{", + 181485, + 181485, + null + ], + [ + "ident-token", + "flex-grow", + 181486, + 181494, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 181495, + 181495, + null + ], + [ + "number-token", + "0", + 181496, + 181496, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 181497, + 181497, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181498, + 181506, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181507, + 181507, + null + ], + [ + "delim-token", + ".", + 181508, + 181508, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-grow-1", + 181509, + 181522, + { + "value": "flex-xl-grow-1" + } + ], + [ + "{-token", + "{", + 181523, + 181523, + null + ], + [ + "ident-token", + "flex-grow", + 181524, + 181532, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 181533, + 181533, + null + ], + [ + "number-token", + "1", + 181534, + 181534, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 181535, + 181535, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181536, + 181544, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181545, + 181545, + null + ], + [ + "delim-token", + ".", + 181546, + 181546, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-shrink-0", + 181547, + 181562, + { + "value": "flex-xl-shrink-0" + } + ], + [ + "{-token", + "{", + 181563, + 181563, + null + ], + [ + "ident-token", + "flex-shrink", + 181564, + 181574, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 181575, + 181575, + null + ], + [ + "number-token", + "0", + 181576, + 181576, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 181577, + 181577, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181578, + 181586, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181587, + 181587, + null + ], + [ + "delim-token", + ".", + 181588, + 181588, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-shrink-1", + 181589, + 181604, + { + "value": "flex-xl-shrink-1" + } + ], + [ + "{-token", + "{", + 181605, + 181605, + null + ], + [ + "ident-token", + "flex-shrink", + 181606, + 181616, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 181617, + 181617, + null + ], + [ + "number-token", + "1", + 181618, + 181618, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 181619, + 181619, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181620, + 181628, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181629, + 181629, + null + ], + [ + "delim-token", + ".", + 181630, + 181630, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-wrap", + 181631, + 181642, + { + "value": "flex-xl-wrap" + } + ], + [ + "{-token", + "{", + 181643, + 181643, + null + ], + [ + "ident-token", + "flex-wrap", + 181644, + 181652, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 181653, + 181653, + null + ], + [ + "ident-token", + "wrap", + 181654, + 181657, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 181658, + 181658, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181659, + 181667, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181668, + 181668, + null + ], + [ + "delim-token", + ".", + 181669, + 181669, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-nowrap", + 181670, + 181683, + { + "value": "flex-xl-nowrap" + } + ], + [ + "{-token", + "{", + 181684, + 181684, + null + ], + [ + "ident-token", + "flex-wrap", + 181685, + 181693, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 181694, + 181694, + null + ], + [ + "ident-token", + "nowrap", + 181695, + 181700, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 181701, + 181701, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181702, + 181710, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181711, + 181711, + null + ], + [ + "delim-token", + ".", + 181712, + 181712, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xl-wrap-reverse", + 181713, + 181732, + { + "value": "flex-xl-wrap-reverse" + } + ], + [ + "{-token", + "{", + 181733, + 181733, + null + ], + [ + "ident-token", + "flex-wrap", + 181734, + 181742, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 181743, + 181743, + null + ], + [ + "ident-token", + "wrap-reverse", + 181744, + 181755, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 181756, + 181756, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181757, + 181765, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181766, + 181766, + null + ], + [ + "delim-token", + ".", + 181767, + 181767, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-start", + 181768, + 181791, + { + "value": "justify-content-xl-start" + } + ], + [ + "{-token", + "{", + 181792, + 181792, + null + ], + [ + "ident-token", + "justify-content", + 181793, + 181807, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 181808, + 181808, + null + ], + [ + "ident-token", + "flex-start", + 181809, + 181818, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 181819, + 181819, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181820, + 181828, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181829, + 181829, + null + ], + [ + "delim-token", + ".", + 181830, + 181830, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-end", + 181831, + 181852, + { + "value": "justify-content-xl-end" + } + ], + [ + "{-token", + "{", + 181853, + 181853, + null + ], + [ + "ident-token", + "justify-content", + 181854, + 181868, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 181869, + 181869, + null + ], + [ + "ident-token", + "flex-end", + 181870, + 181877, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 181878, + 181878, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181879, + 181887, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181888, + 181888, + null + ], + [ + "delim-token", + ".", + 181889, + 181889, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-center", + 181890, + 181914, + { + "value": "justify-content-xl-center" + } + ], + [ + "{-token", + "{", + 181915, + 181915, + null + ], + [ + "ident-token", + "justify-content", + 181916, + 181930, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 181931, + 181931, + null + ], + [ + "ident-token", + "center", + 181932, + 181937, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 181938, + 181938, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 181939, + 181947, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 181948, + 181948, + null + ], + [ + "delim-token", + ".", + 181949, + 181949, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-between", + 181950, + 181975, + { + "value": "justify-content-xl-between" + } + ], + [ + "{-token", + "{", + 181976, + 181976, + null + ], + [ + "ident-token", + "justify-content", + 181977, + 181991, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 181992, + 181992, + null + ], + [ + "ident-token", + "space-between", + 181993, + 182005, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 182006, + 182006, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182007, + 182015, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182016, + 182016, + null + ], + [ + "delim-token", + ".", + 182017, + 182017, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-around", + 182018, + 182042, + { + "value": "justify-content-xl-around" + } + ], + [ + "{-token", + "{", + 182043, + 182043, + null + ], + [ + "ident-token", + "justify-content", + 182044, + 182058, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 182059, + 182059, + null + ], + [ + "ident-token", + "space-around", + 182060, + 182071, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 182072, + 182072, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182073, + 182081, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182082, + 182082, + null + ], + [ + "delim-token", + ".", + 182083, + 182083, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xl-evenly", + 182084, + 182108, + { + "value": "justify-content-xl-evenly" + } + ], + [ + "{-token", + "{", + 182109, + 182109, + null + ], + [ + "ident-token", + "justify-content", + 182110, + 182124, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 182125, + 182125, + null + ], + [ + "ident-token", + "space-evenly", + 182126, + 182137, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 182138, + 182138, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182139, + 182147, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182148, + 182148, + null + ], + [ + "delim-token", + ".", + 182149, + 182149, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xl-start", + 182150, + 182169, + { + "value": "align-items-xl-start" + } + ], + [ + "{-token", + "{", + 182170, + 182170, + null + ], + [ + "ident-token", + "align-items", + 182171, + 182181, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 182182, + 182182, + null + ], + [ + "ident-token", + "flex-start", + 182183, + 182192, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 182193, + 182193, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182194, + 182202, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182203, + 182203, + null + ], + [ + "delim-token", + ".", + 182204, + 182204, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xl-end", + 182205, + 182222, + { + "value": "align-items-xl-end" + } + ], + [ + "{-token", + "{", + 182223, + 182223, + null + ], + [ + "ident-token", + "align-items", + 182224, + 182234, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 182235, + 182235, + null + ], + [ + "ident-token", + "flex-end", + 182236, + 182243, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 182244, + 182244, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182245, + 182253, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182254, + 182254, + null + ], + [ + "delim-token", + ".", + 182255, + 182255, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xl-center", + 182256, + 182276, + { + "value": "align-items-xl-center" + } + ], + [ + "{-token", + "{", + 182277, + 182277, + null + ], + [ + "ident-token", + "align-items", + 182278, + 182288, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 182289, + 182289, + null + ], + [ + "ident-token", + "center", + 182290, + 182295, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 182296, + 182296, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182297, + 182305, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182306, + 182306, + null + ], + [ + "delim-token", + ".", + 182307, + 182307, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xl-baseline", + 182308, + 182330, + { + "value": "align-items-xl-baseline" + } + ], + [ + "{-token", + "{", + 182331, + 182331, + null + ], + [ + "ident-token", + "align-items", + 182332, + 182342, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 182343, + 182343, + null + ], + [ + "ident-token", + "baseline", + 182344, + 182351, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 182352, + 182352, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182353, + 182361, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182362, + 182362, + null + ], + [ + "delim-token", + ".", + 182363, + 182363, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xl-stretch", + 182364, + 182385, + { + "value": "align-items-xl-stretch" + } + ], + [ + "{-token", + "{", + 182386, + 182386, + null + ], + [ + "ident-token", + "align-items", + 182387, + 182397, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 182398, + 182398, + null + ], + [ + "ident-token", + "stretch", + 182399, + 182405, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 182406, + 182406, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182407, + 182415, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182416, + 182416, + null + ], + [ + "delim-token", + ".", + 182417, + 182417, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-start", + 182418, + 182439, + { + "value": "align-content-xl-start" + } + ], + [ + "{-token", + "{", + 182440, + 182440, + null + ], + [ + "ident-token", + "align-content", + 182441, + 182453, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182454, + 182454, + null + ], + [ + "ident-token", + "flex-start", + 182455, + 182464, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 182465, + 182465, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182466, + 182474, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182475, + 182475, + null + ], + [ + "delim-token", + ".", + 182476, + 182476, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-end", + 182477, + 182496, + { + "value": "align-content-xl-end" + } + ], + [ + "{-token", + "{", + 182497, + 182497, + null + ], + [ + "ident-token", + "align-content", + 182498, + 182510, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182511, + 182511, + null + ], + [ + "ident-token", + "flex-end", + 182512, + 182519, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 182520, + 182520, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182521, + 182529, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182530, + 182530, + null + ], + [ + "delim-token", + ".", + 182531, + 182531, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-center", + 182532, + 182554, + { + "value": "align-content-xl-center" + } + ], + [ + "{-token", + "{", + 182555, + 182555, + null + ], + [ + "ident-token", + "align-content", + 182556, + 182568, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182569, + 182569, + null + ], + [ + "ident-token", + "center", + 182570, + 182575, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 182576, + 182576, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182577, + 182585, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182586, + 182586, + null + ], + [ + "delim-token", + ".", + 182587, + 182587, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-between", + 182588, + 182611, + { + "value": "align-content-xl-between" + } + ], + [ + "{-token", + "{", + 182612, + 182612, + null + ], + [ + "ident-token", + "align-content", + 182613, + 182625, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182626, + 182626, + null + ], + [ + "ident-token", + "space-between", + 182627, + 182639, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 182640, + 182640, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182641, + 182649, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182650, + 182650, + null + ], + [ + "delim-token", + ".", + 182651, + 182651, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-around", + 182652, + 182674, + { + "value": "align-content-xl-around" + } + ], + [ + "{-token", + "{", + 182675, + 182675, + null + ], + [ + "ident-token", + "align-content", + 182676, + 182688, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182689, + 182689, + null + ], + [ + "ident-token", + "space-around", + 182690, + 182701, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 182702, + 182702, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182703, + 182711, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182712, + 182712, + null + ], + [ + "delim-token", + ".", + 182713, + 182713, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xl-stretch", + 182714, + 182737, + { + "value": "align-content-xl-stretch" + } + ], + [ + "{-token", + "{", + 182738, + 182738, + null + ], + [ + "ident-token", + "align-content", + 182739, + 182751, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 182752, + 182752, + null + ], + [ + "ident-token", + "stretch", + 182753, + 182759, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 182760, + 182760, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182761, + 182769, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182770, + 182770, + null + ], + [ + "delim-token", + ".", + 182771, + 182771, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-auto", + 182772, + 182789, + { + "value": "align-self-xl-auto" + } + ], + [ + "{-token", + "{", + 182790, + 182790, + null + ], + [ + "ident-token", + "align-self", + 182791, + 182800, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 182801, + 182801, + null + ], + [ + "ident-token", + "auto", + 182802, + 182805, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 182806, + 182806, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182807, + 182815, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182816, + 182816, + null + ], + [ + "delim-token", + ".", + 182817, + 182817, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-start", + 182818, + 182836, + { + "value": "align-self-xl-start" + } + ], + [ + "{-token", + "{", + 182837, + 182837, + null + ], + [ + "ident-token", + "align-self", + 182838, + 182847, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 182848, + 182848, + null + ], + [ + "ident-token", + "flex-start", + 182849, + 182858, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 182859, + 182859, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182860, + 182868, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182869, + 182869, + null + ], + [ + "delim-token", + ".", + 182870, + 182870, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-end", + 182871, + 182887, + { + "value": "align-self-xl-end" + } + ], + [ + "{-token", + "{", + 182888, + 182888, + null + ], + [ + "ident-token", + "align-self", + 182889, + 182898, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 182899, + 182899, + null + ], + [ + "ident-token", + "flex-end", + 182900, + 182907, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 182908, + 182908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182909, + 182917, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182918, + 182918, + null + ], + [ + "delim-token", + ".", + 182919, + 182919, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-center", + 182920, + 182939, + { + "value": "align-self-xl-center" + } + ], + [ + "{-token", + "{", + 182940, + 182940, + null + ], + [ + "ident-token", + "align-self", + 182941, + 182950, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 182951, + 182951, + null + ], + [ + "ident-token", + "center", + 182952, + 182957, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 182958, + 182958, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 182959, + 182967, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 182968, + 182968, + null + ], + [ + "delim-token", + ".", + 182969, + 182969, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-baseline", + 182970, + 182991, + { + "value": "align-self-xl-baseline" + } + ], + [ + "{-token", + "{", + 182992, + 182992, + null + ], + [ + "ident-token", + "align-self", + 182993, + 183002, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 183003, + 183003, + null + ], + [ + "ident-token", + "baseline", + 183004, + 183011, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 183012, + 183012, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183013, + 183021, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183022, + 183022, + null + ], + [ + "delim-token", + ".", + 183023, + 183023, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xl-stretch", + 183024, + 183044, + { + "value": "align-self-xl-stretch" + } + ], + [ + "{-token", + "{", + 183045, + 183045, + null + ], + [ + "ident-token", + "align-self", + 183046, + 183055, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 183056, + 183056, + null + ], + [ + "ident-token", + "stretch", + 183057, + 183063, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 183064, + 183064, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183065, + 183073, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183074, + 183074, + null + ], + [ + "delim-token", + ".", + 183075, + 183075, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-first", + 183076, + 183089, + { + "value": "order-xl-first" + } + ], + [ + "{-token", + "{", + 183090, + 183090, + null + ], + [ + "ident-token", + "order", + 183091, + 183095, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183096, + 183096, + null + ], + [ + "number-token", + "-1", + 183097, + 183098, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183099, + 183099, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183100, + 183108, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183109, + 183109, + null + ], + [ + "delim-token", + ".", + 183110, + 183110, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-0", + 183111, + 183120, + { + "value": "order-xl-0" + } + ], + [ + "{-token", + "{", + 183121, + 183121, + null + ], + [ + "ident-token", + "order", + 183122, + 183126, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183127, + 183127, + null + ], + [ + "number-token", + "0", + 183128, + 183128, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183129, + 183129, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183130, + 183138, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183139, + 183139, + null + ], + [ + "delim-token", + ".", + 183140, + 183140, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-1", + 183141, + 183150, + { + "value": "order-xl-1" + } + ], + [ + "{-token", + "{", + 183151, + 183151, + null + ], + [ + "ident-token", + "order", + 183152, + 183156, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183157, + 183157, + null + ], + [ + "number-token", + "1", + 183158, + 183158, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183159, + 183159, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183160, + 183168, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183169, + 183169, + null + ], + [ + "delim-token", + ".", + 183170, + 183170, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-2", + 183171, + 183180, + { + "value": "order-xl-2" + } + ], + [ + "{-token", + "{", + 183181, + 183181, + null + ], + [ + "ident-token", + "order", + 183182, + 183186, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183187, + 183187, + null + ], + [ + "number-token", + "2", + 183188, + 183188, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183189, + 183189, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183190, + 183198, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183199, + 183199, + null + ], + [ + "delim-token", + ".", + 183200, + 183200, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-3", + 183201, + 183210, + { + "value": "order-xl-3" + } + ], + [ + "{-token", + "{", + 183211, + 183211, + null + ], + [ + "ident-token", + "order", + 183212, + 183216, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183217, + 183217, + null + ], + [ + "number-token", + "3", + 183218, + 183218, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183219, + 183219, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183220, + 183228, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183229, + 183229, + null + ], + [ + "delim-token", + ".", + 183230, + 183230, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-4", + 183231, + 183240, + { + "value": "order-xl-4" + } + ], + [ + "{-token", + "{", + 183241, + 183241, + null + ], + [ + "ident-token", + "order", + 183242, + 183246, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183247, + 183247, + null + ], + [ + "number-token", + "4", + 183248, + 183248, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183249, + 183249, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183250, + 183258, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183259, + 183259, + null + ], + [ + "delim-token", + ".", + 183260, + 183260, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-5", + 183261, + 183270, + { + "value": "order-xl-5" + } + ], + [ + "{-token", + "{", + 183271, + 183271, + null + ], + [ + "ident-token", + "order", + 183272, + 183276, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183277, + 183277, + null + ], + [ + "number-token", + "5", + 183278, + 183278, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183279, + 183279, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183280, + 183288, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183289, + 183289, + null + ], + [ + "delim-token", + ".", + 183290, + 183290, + { + "value": "." + } + ], + [ + "ident-token", + "order-xl-last", + 183291, + 183303, + { + "value": "order-xl-last" + } + ], + [ + "{-token", + "{", + 183304, + 183304, + null + ], + [ + "ident-token", + "order", + 183305, + 183309, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 183310, + 183310, + null + ], + [ + "number-token", + "6", + 183311, + 183311, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183312, + 183312, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183313, + 183321, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183322, + 183322, + null + ], + [ + "delim-token", + ".", + 183323, + 183323, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-0", + 183324, + 183329, + { + "value": "m-xl-0" + } + ], + [ + "{-token", + "{", + 183330, + 183330, + null + ], + [ + "ident-token", + "margin", + 183331, + 183336, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183337, + 183337, + null + ], + [ + "number-token", + "0", + 183338, + 183338, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183339, + 183339, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183340, + 183348, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183349, + 183349, + null + ], + [ + "delim-token", + ".", + 183350, + 183350, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-1", + 183351, + 183356, + { + "value": "m-xl-1" + } + ], + [ + "{-token", + "{", + 183357, + 183357, + null + ], + [ + "ident-token", + "margin", + 183358, + 183363, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183364, + 183364, + null + ], + [ + "dimension-token", + ".25rem", + 183365, + 183370, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183371, + 183371, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183372, + 183380, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183381, + 183381, + null + ], + [ + "delim-token", + ".", + 183382, + 183382, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-2", + 183383, + 183388, + { + "value": "m-xl-2" + } + ], + [ + "{-token", + "{", + 183389, + 183389, + null + ], + [ + "ident-token", + "margin", + 183390, + 183395, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183396, + 183396, + null + ], + [ + "dimension-token", + ".5rem", + 183397, + 183401, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183402, + 183402, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183403, + 183411, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183412, + 183412, + null + ], + [ + "delim-token", + ".", + 183413, + 183413, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-3", + 183414, + 183419, + { + "value": "m-xl-3" + } + ], + [ + "{-token", + "{", + 183420, + 183420, + null + ], + [ + "ident-token", + "margin", + 183421, + 183426, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183427, + 183427, + null + ], + [ + "dimension-token", + "1rem", + 183428, + 183431, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183432, + 183432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183433, + 183441, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183442, + 183442, + null + ], + [ + "delim-token", + ".", + 183443, + 183443, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-4", + 183444, + 183449, + { + "value": "m-xl-4" + } + ], + [ + "{-token", + "{", + 183450, + 183450, + null + ], + [ + "ident-token", + "margin", + 183451, + 183456, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183457, + 183457, + null + ], + [ + "dimension-token", + "1.5rem", + 183458, + 183463, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183464, + 183464, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183465, + 183473, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183474, + 183474, + null + ], + [ + "delim-token", + ".", + 183475, + 183475, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-5", + 183476, + 183481, + { + "value": "m-xl-5" + } + ], + [ + "{-token", + "{", + 183482, + 183482, + null + ], + [ + "ident-token", + "margin", + 183483, + 183488, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183489, + 183489, + null + ], + [ + "dimension-token", + "3rem", + 183490, + 183493, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183494, + 183494, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183495, + 183503, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183504, + 183504, + null + ], + [ + "delim-token", + ".", + 183505, + 183505, + { + "value": "." + } + ], + [ + "ident-token", + "m-xl-auto", + 183506, + 183514, + { + "value": "m-xl-auto" + } + ], + [ + "{-token", + "{", + 183515, + 183515, + null + ], + [ + "ident-token", + "margin", + 183516, + 183521, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 183522, + 183522, + null + ], + [ + "ident-token", + "auto", + 183523, + 183526, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 183527, + 183527, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183528, + 183536, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183537, + 183537, + null + ], + [ + "delim-token", + ".", + 183538, + 183538, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-0", + 183539, + 183545, + { + "value": "mx-xl-0" + } + ], + [ + "{-token", + "{", + 183546, + 183546, + null + ], + [ + "ident-token", + "margin-right", + 183547, + 183558, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183559, + 183559, + null + ], + [ + "number-token", + "0", + 183560, + 183560, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183561, + 183561, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183562, + 183570, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183571, + 183571, + null + ], + [ + "ident-token", + "margin-left", + 183572, + 183582, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183583, + 183583, + null + ], + [ + "number-token", + "0", + 183584, + 183584, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 183585, + 183585, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183586, + 183594, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183595, + 183595, + null + ], + [ + "delim-token", + ".", + 183596, + 183596, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-1", + 183597, + 183603, + { + "value": "mx-xl-1" + } + ], + [ + "{-token", + "{", + 183604, + 183604, + null + ], + [ + "ident-token", + "margin-right", + 183605, + 183616, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183617, + 183617, + null + ], + [ + "dimension-token", + ".25rem", + 183618, + 183623, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183624, + 183624, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183625, + 183633, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183634, + 183634, + null + ], + [ + "ident-token", + "margin-left", + 183635, + 183645, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183646, + 183646, + null + ], + [ + "dimension-token", + ".25rem", + 183647, + 183652, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183653, + 183653, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183654, + 183662, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183663, + 183663, + null + ], + [ + "delim-token", + ".", + 183664, + 183664, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-2", + 183665, + 183671, + { + "value": "mx-xl-2" + } + ], + [ + "{-token", + "{", + 183672, + 183672, + null + ], + [ + "ident-token", + "margin-right", + 183673, + 183684, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183685, + 183685, + null + ], + [ + "dimension-token", + ".5rem", + 183686, + 183690, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183691, + 183691, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183692, + 183700, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183701, + 183701, + null + ], + [ + "ident-token", + "margin-left", + 183702, + 183712, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183713, + 183713, + null + ], + [ + "dimension-token", + ".5rem", + 183714, + 183718, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183719, + 183719, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183720, + 183728, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183729, + 183729, + null + ], + [ + "delim-token", + ".", + 183730, + 183730, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-3", + 183731, + 183737, + { + "value": "mx-xl-3" + } + ], + [ + "{-token", + "{", + 183738, + 183738, + null + ], + [ + "ident-token", + "margin-right", + 183739, + 183750, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183751, + 183751, + null + ], + [ + "dimension-token", + "1rem", + 183752, + 183755, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183756, + 183756, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183757, + 183765, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183766, + 183766, + null + ], + [ + "ident-token", + "margin-left", + 183767, + 183777, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183778, + 183778, + null + ], + [ + "dimension-token", + "1rem", + 183779, + 183782, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183783, + 183783, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183784, + 183792, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183793, + 183793, + null + ], + [ + "delim-token", + ".", + 183794, + 183794, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-4", + 183795, + 183801, + { + "value": "mx-xl-4" + } + ], + [ + "{-token", + "{", + 183802, + 183802, + null + ], + [ + "ident-token", + "margin-right", + 183803, + 183814, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183815, + 183815, + null + ], + [ + "dimension-token", + "1.5rem", + 183816, + 183821, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183822, + 183822, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183823, + 183831, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183832, + 183832, + null + ], + [ + "ident-token", + "margin-left", + 183833, + 183843, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183844, + 183844, + null + ], + [ + "dimension-token", + "1.5rem", + 183845, + 183850, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183851, + 183851, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183852, + 183860, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183861, + 183861, + null + ], + [ + "delim-token", + ".", + 183862, + 183862, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-5", + 183863, + 183869, + { + "value": "mx-xl-5" + } + ], + [ + "{-token", + "{", + 183870, + 183870, + null + ], + [ + "ident-token", + "margin-right", + 183871, + 183882, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183883, + 183883, + null + ], + [ + "dimension-token", + "3rem", + 183884, + 183887, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183888, + 183888, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183889, + 183897, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183898, + 183898, + null + ], + [ + "ident-token", + "margin-left", + 183899, + 183909, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183910, + 183910, + null + ], + [ + "dimension-token", + "3rem", + 183911, + 183914, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 183915, + 183915, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183916, + 183924, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183925, + 183925, + null + ], + [ + "delim-token", + ".", + 183926, + 183926, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xl-auto", + 183927, + 183936, + { + "value": "mx-xl-auto" + } + ], + [ + "{-token", + "{", + 183937, + 183937, + null + ], + [ + "ident-token", + "margin-right", + 183938, + 183949, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 183950, + 183950, + null + ], + [ + "ident-token", + "auto", + 183951, + 183954, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 183955, + 183955, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183956, + 183964, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 183965, + 183965, + null + ], + [ + "ident-token", + "margin-left", + 183966, + 183976, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 183977, + 183977, + null + ], + [ + "ident-token", + "auto", + 183978, + 183981, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 183982, + 183982, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 183983, + 183991, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 183992, + 183992, + null + ], + [ + "delim-token", + ".", + 183993, + 183993, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-0", + 183994, + 184000, + { + "value": "my-xl-0" + } + ], + [ + "{-token", + "{", + 184001, + 184001, + null + ], + [ + "ident-token", + "margin-top", + 184002, + 184011, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184012, + 184012, + null + ], + [ + "number-token", + "0", + 184013, + 184013, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 184014, + 184014, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184015, + 184023, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184024, + 184024, + null + ], + [ + "ident-token", + "margin-bottom", + 184025, + 184037, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184038, + 184038, + null + ], + [ + "number-token", + "0", + 184039, + 184039, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 184040, + 184040, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184041, + 184049, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184050, + 184050, + null + ], + [ + "delim-token", + ".", + 184051, + 184051, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-1", + 184052, + 184058, + { + "value": "my-xl-1" + } + ], + [ + "{-token", + "{", + 184059, + 184059, + null + ], + [ + "ident-token", + "margin-top", + 184060, + 184069, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184070, + 184070, + null + ], + [ + "dimension-token", + ".25rem", + 184071, + 184076, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184077, + 184077, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184078, + 184086, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184087, + 184087, + null + ], + [ + "ident-token", + "margin-bottom", + 184088, + 184100, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184101, + 184101, + null + ], + [ + "dimension-token", + ".25rem", + 184102, + 184107, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184108, + 184108, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184109, + 184117, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184118, + 184118, + null + ], + [ + "delim-token", + ".", + 184119, + 184119, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-2", + 184120, + 184126, + { + "value": "my-xl-2" + } + ], + [ + "{-token", + "{", + 184127, + 184127, + null + ], + [ + "ident-token", + "margin-top", + 184128, + 184137, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184138, + 184138, + null + ], + [ + "dimension-token", + ".5rem", + 184139, + 184143, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184144, + 184144, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184145, + 184153, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184154, + 184154, + null + ], + [ + "ident-token", + "margin-bottom", + 184155, + 184167, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184168, + 184168, + null + ], + [ + "dimension-token", + ".5rem", + 184169, + 184173, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184174, + 184174, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184175, + 184183, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184184, + 184184, + null + ], + [ + "delim-token", + ".", + 184185, + 184185, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-3", + 184186, + 184192, + { + "value": "my-xl-3" + } + ], + [ + "{-token", + "{", + 184193, + 184193, + null + ], + [ + "ident-token", + "margin-top", + 184194, + 184203, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184204, + 184204, + null + ], + [ + "dimension-token", + "1rem", + 184205, + 184208, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184209, + 184209, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184210, + 184218, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184219, + 184219, + null + ], + [ + "ident-token", + "margin-bottom", + 184220, + 184232, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184233, + 184233, + null + ], + [ + "dimension-token", + "1rem", + 184234, + 184237, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184238, + 184238, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184239, + 184247, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184248, + 184248, + null + ], + [ + "delim-token", + ".", + 184249, + 184249, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-4", + 184250, + 184256, + { + "value": "my-xl-4" + } + ], + [ + "{-token", + "{", + 184257, + 184257, + null + ], + [ + "ident-token", + "margin-top", + 184258, + 184267, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184268, + 184268, + null + ], + [ + "dimension-token", + "1.5rem", + 184269, + 184274, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184275, + 184275, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184276, + 184284, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184285, + 184285, + null + ], + [ + "ident-token", + "margin-bottom", + 184286, + 184298, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184299, + 184299, + null + ], + [ + "dimension-token", + "1.5rem", + 184300, + 184305, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184306, + 184306, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184307, + 184315, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184316, + 184316, + null + ], + [ + "delim-token", + ".", + 184317, + 184317, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-5", + 184318, + 184324, + { + "value": "my-xl-5" + } + ], + [ + "{-token", + "{", + 184325, + 184325, + null + ], + [ + "ident-token", + "margin-top", + 184326, + 184335, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184336, + 184336, + null + ], + [ + "dimension-token", + "3rem", + 184337, + 184340, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184341, + 184341, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184342, + 184350, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184351, + 184351, + null + ], + [ + "ident-token", + "margin-bottom", + 184352, + 184364, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184365, + 184365, + null + ], + [ + "dimension-token", + "3rem", + 184366, + 184369, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184370, + 184370, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184371, + 184379, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184380, + 184380, + null + ], + [ + "delim-token", + ".", + 184381, + 184381, + { + "value": "." + } + ], + [ + "ident-token", + "my-xl-auto", + 184382, + 184391, + { + "value": "my-xl-auto" + } + ], + [ + "{-token", + "{", + 184392, + 184392, + null + ], + [ + "ident-token", + "margin-top", + 184393, + 184402, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184403, + 184403, + null + ], + [ + "ident-token", + "auto", + 184404, + 184407, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 184408, + 184408, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184409, + 184417, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 184418, + 184418, + null + ], + [ + "ident-token", + "margin-bottom", + 184419, + 184431, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184432, + 184432, + null + ], + [ + "ident-token", + "auto", + 184433, + 184436, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 184437, + 184437, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184438, + 184446, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184447, + 184447, + null + ], + [ + "delim-token", + ".", + 184448, + 184448, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-0", + 184449, + 184455, + { + "value": "mt-xl-0" + } + ], + [ + "{-token", + "{", + 184456, + 184456, + null + ], + [ + "ident-token", + "margin-top", + 184457, + 184466, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184467, + 184467, + null + ], + [ + "number-token", + "0", + 184468, + 184468, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 184469, + 184469, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184470, + 184478, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184479, + 184479, + null + ], + [ + "delim-token", + ".", + 184480, + 184480, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-1", + 184481, + 184487, + { + "value": "mt-xl-1" + } + ], + [ + "{-token", + "{", + 184488, + 184488, + null + ], + [ + "ident-token", + "margin-top", + 184489, + 184498, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184499, + 184499, + null + ], + [ + "dimension-token", + ".25rem", + 184500, + 184505, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184506, + 184506, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184507, + 184515, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184516, + 184516, + null + ], + [ + "delim-token", + ".", + 184517, + 184517, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-2", + 184518, + 184524, + { + "value": "mt-xl-2" + } + ], + [ + "{-token", + "{", + 184525, + 184525, + null + ], + [ + "ident-token", + "margin-top", + 184526, + 184535, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184536, + 184536, + null + ], + [ + "dimension-token", + ".5rem", + 184537, + 184541, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184542, + 184542, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184543, + 184551, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184552, + 184552, + null + ], + [ + "delim-token", + ".", + 184553, + 184553, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-3", + 184554, + 184560, + { + "value": "mt-xl-3" + } + ], + [ + "{-token", + "{", + 184561, + 184561, + null + ], + [ + "ident-token", + "margin-top", + 184562, + 184571, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184572, + 184572, + null + ], + [ + "dimension-token", + "1rem", + 184573, + 184576, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184577, + 184577, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184578, + 184586, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184587, + 184587, + null + ], + [ + "delim-token", + ".", + 184588, + 184588, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-4", + 184589, + 184595, + { + "value": "mt-xl-4" + } + ], + [ + "{-token", + "{", + 184596, + 184596, + null + ], + [ + "ident-token", + "margin-top", + 184597, + 184606, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184607, + 184607, + null + ], + [ + "dimension-token", + "1.5rem", + 184608, + 184613, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184614, + 184614, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184615, + 184623, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184624, + 184624, + null + ], + [ + "delim-token", + ".", + 184625, + 184625, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-5", + 184626, + 184632, + { + "value": "mt-xl-5" + } + ], + [ + "{-token", + "{", + 184633, + 184633, + null + ], + [ + "ident-token", + "margin-top", + 184634, + 184643, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184644, + 184644, + null + ], + [ + "dimension-token", + "3rem", + 184645, + 184648, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184649, + 184649, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184650, + 184658, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184659, + 184659, + null + ], + [ + "delim-token", + ".", + 184660, + 184660, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xl-auto", + 184661, + 184670, + { + "value": "mt-xl-auto" + } + ], + [ + "{-token", + "{", + 184671, + 184671, + null + ], + [ + "ident-token", + "margin-top", + 184672, + 184681, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 184682, + 184682, + null + ], + [ + "ident-token", + "auto", + 184683, + 184686, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 184687, + 184687, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184688, + 184696, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184697, + 184697, + null + ], + [ + "delim-token", + ".", + 184698, + 184698, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-0", + 184699, + 184705, + { + "value": "me-xl-0" + } + ], + [ + "{-token", + "{", + 184706, + 184706, + null + ], + [ + "ident-token", + "margin-right", + 184707, + 184718, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184719, + 184719, + null + ], + [ + "number-token", + "0", + 184720, + 184720, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 184721, + 184721, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184722, + 184730, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184731, + 184731, + null + ], + [ + "delim-token", + ".", + 184732, + 184732, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-1", + 184733, + 184739, + { + "value": "me-xl-1" + } + ], + [ + "{-token", + "{", + 184740, + 184740, + null + ], + [ + "ident-token", + "margin-right", + 184741, + 184752, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184753, + 184753, + null + ], + [ + "dimension-token", + ".25rem", + 184754, + 184759, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184760, + 184760, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184761, + 184769, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184770, + 184770, + null + ], + [ + "delim-token", + ".", + 184771, + 184771, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-2", + 184772, + 184778, + { + "value": "me-xl-2" + } + ], + [ + "{-token", + "{", + 184779, + 184779, + null + ], + [ + "ident-token", + "margin-right", + 184780, + 184791, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184792, + 184792, + null + ], + [ + "dimension-token", + ".5rem", + 184793, + 184797, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184798, + 184798, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184799, + 184807, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184808, + 184808, + null + ], + [ + "delim-token", + ".", + 184809, + 184809, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-3", + 184810, + 184816, + { + "value": "me-xl-3" + } + ], + [ + "{-token", + "{", + 184817, + 184817, + null + ], + [ + "ident-token", + "margin-right", + 184818, + 184829, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184830, + 184830, + null + ], + [ + "dimension-token", + "1rem", + 184831, + 184834, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184835, + 184835, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184836, + 184844, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184845, + 184845, + null + ], + [ + "delim-token", + ".", + 184846, + 184846, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-4", + 184847, + 184853, + { + "value": "me-xl-4" + } + ], + [ + "{-token", + "{", + 184854, + 184854, + null + ], + [ + "ident-token", + "margin-right", + 184855, + 184866, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184867, + 184867, + null + ], + [ + "dimension-token", + "1.5rem", + 184868, + 184873, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184874, + 184874, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184875, + 184883, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184884, + 184884, + null + ], + [ + "delim-token", + ".", + 184885, + 184885, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-5", + 184886, + 184892, + { + "value": "me-xl-5" + } + ], + [ + "{-token", + "{", + 184893, + 184893, + null + ], + [ + "ident-token", + "margin-right", + 184894, + 184905, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184906, + 184906, + null + ], + [ + "dimension-token", + "3rem", + 184907, + 184910, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 184911, + 184911, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184912, + 184920, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184921, + 184921, + null + ], + [ + "delim-token", + ".", + 184922, + 184922, + { + "value": "." + } + ], + [ + "ident-token", + "me-xl-auto", + 184923, + 184932, + { + "value": "me-xl-auto" + } + ], + [ + "{-token", + "{", + 184933, + 184933, + null + ], + [ + "ident-token", + "margin-right", + 184934, + 184945, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 184946, + 184946, + null + ], + [ + "ident-token", + "auto", + 184947, + 184950, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 184951, + 184951, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184952, + 184960, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184961, + 184961, + null + ], + [ + "delim-token", + ".", + 184962, + 184962, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-0", + 184963, + 184969, + { + "value": "mb-xl-0" + } + ], + [ + "{-token", + "{", + 184970, + 184970, + null + ], + [ + "ident-token", + "margin-bottom", + 184971, + 184983, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 184984, + 184984, + null + ], + [ + "number-token", + "0", + 184985, + 184985, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 184986, + 184986, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 184987, + 184995, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 184996, + 184996, + null + ], + [ + "delim-token", + ".", + 184997, + 184997, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-1", + 184998, + 185004, + { + "value": "mb-xl-1" + } + ], + [ + "{-token", + "{", + 185005, + 185005, + null + ], + [ + "ident-token", + "margin-bottom", + 185006, + 185018, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185019, + 185019, + null + ], + [ + "dimension-token", + ".25rem", + 185020, + 185025, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185026, + 185026, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185027, + 185035, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185036, + 185036, + null + ], + [ + "delim-token", + ".", + 185037, + 185037, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-2", + 185038, + 185044, + { + "value": "mb-xl-2" + } + ], + [ + "{-token", + "{", + 185045, + 185045, + null + ], + [ + "ident-token", + "margin-bottom", + 185046, + 185058, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185059, + 185059, + null + ], + [ + "dimension-token", + ".5rem", + 185060, + 185064, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185065, + 185065, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185066, + 185074, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185075, + 185075, + null + ], + [ + "delim-token", + ".", + 185076, + 185076, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-3", + 185077, + 185083, + { + "value": "mb-xl-3" + } + ], + [ + "{-token", + "{", + 185084, + 185084, + null + ], + [ + "ident-token", + "margin-bottom", + 185085, + 185097, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185098, + 185098, + null + ], + [ + "dimension-token", + "1rem", + 185099, + 185102, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185103, + 185103, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185104, + 185112, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185113, + 185113, + null + ], + [ + "delim-token", + ".", + 185114, + 185114, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-4", + 185115, + 185121, + { + "value": "mb-xl-4" + } + ], + [ + "{-token", + "{", + 185122, + 185122, + null + ], + [ + "ident-token", + "margin-bottom", + 185123, + 185135, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185136, + 185136, + null + ], + [ + "dimension-token", + "1.5rem", + 185137, + 185142, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185143, + 185143, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185144, + 185152, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185153, + 185153, + null + ], + [ + "delim-token", + ".", + 185154, + 185154, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-5", + 185155, + 185161, + { + "value": "mb-xl-5" + } + ], + [ + "{-token", + "{", + 185162, + 185162, + null + ], + [ + "ident-token", + "margin-bottom", + 185163, + 185175, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185176, + 185176, + null + ], + [ + "dimension-token", + "3rem", + 185177, + 185180, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185181, + 185181, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185182, + 185190, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185191, + 185191, + null + ], + [ + "delim-token", + ".", + 185192, + 185192, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xl-auto", + 185193, + 185202, + { + "value": "mb-xl-auto" + } + ], + [ + "{-token", + "{", + 185203, + 185203, + null + ], + [ + "ident-token", + "margin-bottom", + 185204, + 185216, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 185217, + 185217, + null + ], + [ + "ident-token", + "auto", + 185218, + 185221, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 185222, + 185222, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185223, + 185231, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185232, + 185232, + null + ], + [ + "delim-token", + ".", + 185233, + 185233, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-0", + 185234, + 185240, + { + "value": "ms-xl-0" + } + ], + [ + "{-token", + "{", + 185241, + 185241, + null + ], + [ + "ident-token", + "margin-left", + 185242, + 185252, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185253, + 185253, + null + ], + [ + "number-token", + "0", + 185254, + 185254, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 185255, + 185255, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185256, + 185264, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185265, + 185265, + null + ], + [ + "delim-token", + ".", + 185266, + 185266, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-1", + 185267, + 185273, + { + "value": "ms-xl-1" + } + ], + [ + "{-token", + "{", + 185274, + 185274, + null + ], + [ + "ident-token", + "margin-left", + 185275, + 185285, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185286, + 185286, + null + ], + [ + "dimension-token", + ".25rem", + 185287, + 185292, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185293, + 185293, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185294, + 185302, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185303, + 185303, + null + ], + [ + "delim-token", + ".", + 185304, + 185304, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-2", + 185305, + 185311, + { + "value": "ms-xl-2" + } + ], + [ + "{-token", + "{", + 185312, + 185312, + null + ], + [ + "ident-token", + "margin-left", + 185313, + 185323, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185324, + 185324, + null + ], + [ + "dimension-token", + ".5rem", + 185325, + 185329, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185330, + 185330, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185331, + 185339, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185340, + 185340, + null + ], + [ + "delim-token", + ".", + 185341, + 185341, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-3", + 185342, + 185348, + { + "value": "ms-xl-3" + } + ], + [ + "{-token", + "{", + 185349, + 185349, + null + ], + [ + "ident-token", + "margin-left", + 185350, + 185360, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185361, + 185361, + null + ], + [ + "dimension-token", + "1rem", + 185362, + 185365, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185366, + 185366, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185367, + 185375, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185376, + 185376, + null + ], + [ + "delim-token", + ".", + 185377, + 185377, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-4", + 185378, + 185384, + { + "value": "ms-xl-4" + } + ], + [ + "{-token", + "{", + 185385, + 185385, + null + ], + [ + "ident-token", + "margin-left", + 185386, + 185396, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185397, + 185397, + null + ], + [ + "dimension-token", + "1.5rem", + 185398, + 185403, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185404, + 185404, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185405, + 185413, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185414, + 185414, + null + ], + [ + "delim-token", + ".", + 185415, + 185415, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-5", + 185416, + 185422, + { + "value": "ms-xl-5" + } + ], + [ + "{-token", + "{", + 185423, + 185423, + null + ], + [ + "ident-token", + "margin-left", + 185424, + 185434, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185435, + 185435, + null + ], + [ + "dimension-token", + "3rem", + 185436, + 185439, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185440, + 185440, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185441, + 185449, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185450, + 185450, + null + ], + [ + "delim-token", + ".", + 185451, + 185451, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xl-auto", + 185452, + 185461, + { + "value": "ms-xl-auto" + } + ], + [ + "{-token", + "{", + 185462, + 185462, + null + ], + [ + "ident-token", + "margin-left", + 185463, + 185473, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 185474, + 185474, + null + ], + [ + "ident-token", + "auto", + 185475, + 185478, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 185479, + 185479, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185480, + 185488, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185489, + 185489, + null + ], + [ + "delim-token", + ".", + 185490, + 185490, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-0", + 185491, + 185496, + { + "value": "p-xl-0" + } + ], + [ + "{-token", + "{", + 185497, + 185497, + null + ], + [ + "ident-token", + "padding", + 185498, + 185504, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185505, + 185505, + null + ], + [ + "number-token", + "0", + 185506, + 185506, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 185507, + 185507, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185508, + 185516, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185517, + 185517, + null + ], + [ + "delim-token", + ".", + 185518, + 185518, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-1", + 185519, + 185524, + { + "value": "p-xl-1" + } + ], + [ + "{-token", + "{", + 185525, + 185525, + null + ], + [ + "ident-token", + "padding", + 185526, + 185532, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185533, + 185533, + null + ], + [ + "dimension-token", + ".25rem", + 185534, + 185539, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185540, + 185540, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185541, + 185549, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185550, + 185550, + null + ], + [ + "delim-token", + ".", + 185551, + 185551, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-2", + 185552, + 185557, + { + "value": "p-xl-2" + } + ], + [ + "{-token", + "{", + 185558, + 185558, + null + ], + [ + "ident-token", + "padding", + 185559, + 185565, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185566, + 185566, + null + ], + [ + "dimension-token", + ".5rem", + 185567, + 185571, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185572, + 185572, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185573, + 185581, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185582, + 185582, + null + ], + [ + "delim-token", + ".", + 185583, + 185583, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-3", + 185584, + 185589, + { + "value": "p-xl-3" + } + ], + [ + "{-token", + "{", + 185590, + 185590, + null + ], + [ + "ident-token", + "padding", + 185591, + 185597, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185598, + 185598, + null + ], + [ + "dimension-token", + "1rem", + 185599, + 185602, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185603, + 185603, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185604, + 185612, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185613, + 185613, + null + ], + [ + "delim-token", + ".", + 185614, + 185614, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-4", + 185615, + 185620, + { + "value": "p-xl-4" + } + ], + [ + "{-token", + "{", + 185621, + 185621, + null + ], + [ + "ident-token", + "padding", + 185622, + 185628, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185629, + 185629, + null + ], + [ + "dimension-token", + "1.5rem", + 185630, + 185635, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185636, + 185636, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185637, + 185645, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185646, + 185646, + null + ], + [ + "delim-token", + ".", + 185647, + 185647, + { + "value": "." + } + ], + [ + "ident-token", + "p-xl-5", + 185648, + 185653, + { + "value": "p-xl-5" + } + ], + [ + "{-token", + "{", + 185654, + 185654, + null + ], + [ + "ident-token", + "padding", + 185655, + 185661, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 185662, + 185662, + null + ], + [ + "dimension-token", + "3rem", + 185663, + 185666, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185667, + 185667, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185668, + 185676, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185677, + 185677, + null + ], + [ + "delim-token", + ".", + 185678, + 185678, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-0", + 185679, + 185685, + { + "value": "px-xl-0" + } + ], + [ + "{-token", + "{", + 185686, + 185686, + null + ], + [ + "ident-token", + "padding-right", + 185687, + 185699, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 185700, + 185700, + null + ], + [ + "number-token", + "0", + 185701, + 185701, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 185702, + 185702, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185703, + 185711, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 185712, + 185712, + null + ], + [ + "ident-token", + "padding-left", + 185713, + 185724, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 185725, + 185725, + null + ], + [ + "number-token", + "0", + 185726, + 185726, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 185727, + 185727, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185728, + 185736, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185737, + 185737, + null + ], + [ + "delim-token", + ".", + 185738, + 185738, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-1", + 185739, + 185745, + { + "value": "px-xl-1" + } + ], + [ + "{-token", + "{", + 185746, + 185746, + null + ], + [ + "ident-token", + "padding-right", + 185747, + 185759, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 185760, + 185760, + null + ], + [ + "dimension-token", + ".25rem", + 185761, + 185766, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185767, + 185767, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185768, + 185776, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 185777, + 185777, + null + ], + [ + "ident-token", + "padding-left", + 185778, + 185789, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 185790, + 185790, + null + ], + [ + "dimension-token", + ".25rem", + 185791, + 185796, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185797, + 185797, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185798, + 185806, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185807, + 185807, + null + ], + [ + "delim-token", + ".", + 185808, + 185808, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-2", + 185809, + 185815, + { + "value": "px-xl-2" + } + ], + [ + "{-token", + "{", + 185816, + 185816, + null + ], + [ + "ident-token", + "padding-right", + 185817, + 185829, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 185830, + 185830, + null + ], + [ + "dimension-token", + ".5rem", + 185831, + 185835, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185836, + 185836, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185837, + 185845, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 185846, + 185846, + null + ], + [ + "ident-token", + "padding-left", + 185847, + 185858, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 185859, + 185859, + null + ], + [ + "dimension-token", + ".5rem", + 185860, + 185864, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185865, + 185865, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185866, + 185874, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185875, + 185875, + null + ], + [ + "delim-token", + ".", + 185876, + 185876, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-3", + 185877, + 185883, + { + "value": "px-xl-3" + } + ], + [ + "{-token", + "{", + 185884, + 185884, + null + ], + [ + "ident-token", + "padding-right", + 185885, + 185897, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 185898, + 185898, + null + ], + [ + "dimension-token", + "1rem", + 185899, + 185902, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185903, + 185903, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185904, + 185912, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 185913, + 185913, + null + ], + [ + "ident-token", + "padding-left", + 185914, + 185925, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 185926, + 185926, + null + ], + [ + "dimension-token", + "1rem", + 185927, + 185930, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185931, + 185931, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185932, + 185940, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 185941, + 185941, + null + ], + [ + "delim-token", + ".", + 185942, + 185942, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-4", + 185943, + 185949, + { + "value": "px-xl-4" + } + ], + [ + "{-token", + "{", + 185950, + 185950, + null + ], + [ + "ident-token", + "padding-right", + 185951, + 185963, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 185964, + 185964, + null + ], + [ + "dimension-token", + "1.5rem", + 185965, + 185970, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 185971, + 185971, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 185972, + 185980, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 185981, + 185981, + null + ], + [ + "ident-token", + "padding-left", + 185982, + 185993, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 185994, + 185994, + null + ], + [ + "dimension-token", + "1.5rem", + 185995, + 186000, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186001, + 186001, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186002, + 186010, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186011, + 186011, + null + ], + [ + "delim-token", + ".", + 186012, + 186012, + { + "value": "." + } + ], + [ + "ident-token", + "px-xl-5", + 186013, + 186019, + { + "value": "px-xl-5" + } + ], + [ + "{-token", + "{", + 186020, + 186020, + null + ], + [ + "ident-token", + "padding-right", + 186021, + 186033, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186034, + 186034, + null + ], + [ + "dimension-token", + "3rem", + 186035, + 186038, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186039, + 186039, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186040, + 186048, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186049, + 186049, + null + ], + [ + "ident-token", + "padding-left", + 186050, + 186061, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 186062, + 186062, + null + ], + [ + "dimension-token", + "3rem", + 186063, + 186066, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186067, + 186067, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186068, + 186076, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186077, + 186077, + null + ], + [ + "delim-token", + ".", + 186078, + 186078, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-0", + 186079, + 186085, + { + "value": "py-xl-0" + } + ], + [ + "{-token", + "{", + 186086, + 186086, + null + ], + [ + "ident-token", + "padding-top", + 186087, + 186097, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186098, + 186098, + null + ], + [ + "number-token", + "0", + 186099, + 186099, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 186100, + 186100, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186101, + 186109, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186110, + 186110, + null + ], + [ + "ident-token", + "padding-bottom", + 186111, + 186124, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186125, + 186125, + null + ], + [ + "number-token", + "0", + 186126, + 186126, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 186127, + 186127, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186128, + 186136, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186137, + 186137, + null + ], + [ + "delim-token", + ".", + 186138, + 186138, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-1", + 186139, + 186145, + { + "value": "py-xl-1" + } + ], + [ + "{-token", + "{", + 186146, + 186146, + null + ], + [ + "ident-token", + "padding-top", + 186147, + 186157, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186158, + 186158, + null + ], + [ + "dimension-token", + ".25rem", + 186159, + 186164, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186165, + 186165, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186166, + 186174, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186175, + 186175, + null + ], + [ + "ident-token", + "padding-bottom", + 186176, + 186189, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186190, + 186190, + null + ], + [ + "dimension-token", + ".25rem", + 186191, + 186196, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186197, + 186197, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186198, + 186206, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186207, + 186207, + null + ], + [ + "delim-token", + ".", + 186208, + 186208, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-2", + 186209, + 186215, + { + "value": "py-xl-2" + } + ], + [ + "{-token", + "{", + 186216, + 186216, + null + ], + [ + "ident-token", + "padding-top", + 186217, + 186227, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186228, + 186228, + null + ], + [ + "dimension-token", + ".5rem", + 186229, + 186233, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186234, + 186234, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186235, + 186243, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186244, + 186244, + null + ], + [ + "ident-token", + "padding-bottom", + 186245, + 186258, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186259, + 186259, + null + ], + [ + "dimension-token", + ".5rem", + 186260, + 186264, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186265, + 186265, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186266, + 186274, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186275, + 186275, + null + ], + [ + "delim-token", + ".", + 186276, + 186276, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-3", + 186277, + 186283, + { + "value": "py-xl-3" + } + ], + [ + "{-token", + "{", + 186284, + 186284, + null + ], + [ + "ident-token", + "padding-top", + 186285, + 186295, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186296, + 186296, + null + ], + [ + "dimension-token", + "1rem", + 186297, + 186300, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186301, + 186301, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186302, + 186310, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186311, + 186311, + null + ], + [ + "ident-token", + "padding-bottom", + 186312, + 186325, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186326, + 186326, + null + ], + [ + "dimension-token", + "1rem", + 186327, + 186330, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186331, + 186331, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186332, + 186340, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186341, + 186341, + null + ], + [ + "delim-token", + ".", + 186342, + 186342, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-4", + 186343, + 186349, + { + "value": "py-xl-4" + } + ], + [ + "{-token", + "{", + 186350, + 186350, + null + ], + [ + "ident-token", + "padding-top", + 186351, + 186361, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186362, + 186362, + null + ], + [ + "dimension-token", + "1.5rem", + 186363, + 186368, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186369, + 186369, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186370, + 186378, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186379, + 186379, + null + ], + [ + "ident-token", + "padding-bottom", + 186380, + 186393, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186394, + 186394, + null + ], + [ + "dimension-token", + "1.5rem", + 186395, + 186400, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186401, + 186401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186402, + 186410, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186411, + 186411, + null + ], + [ + "delim-token", + ".", + 186412, + 186412, + { + "value": "." + } + ], + [ + "ident-token", + "py-xl-5", + 186413, + 186419, + { + "value": "py-xl-5" + } + ], + [ + "{-token", + "{", + 186420, + 186420, + null + ], + [ + "ident-token", + "padding-top", + 186421, + 186431, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186432, + 186432, + null + ], + [ + "dimension-token", + "3rem", + 186433, + 186436, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186437, + 186437, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186438, + 186446, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 186447, + 186447, + null + ], + [ + "ident-token", + "padding-bottom", + 186448, + 186461, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186462, + 186462, + null + ], + [ + "dimension-token", + "3rem", + 186463, + 186466, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186467, + 186467, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186468, + 186476, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186477, + 186477, + null + ], + [ + "delim-token", + ".", + 186478, + 186478, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-0", + 186479, + 186485, + { + "value": "pt-xl-0" + } + ], + [ + "{-token", + "{", + 186486, + 186486, + null + ], + [ + "ident-token", + "padding-top", + 186487, + 186497, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186498, + 186498, + null + ], + [ + "number-token", + "0", + 186499, + 186499, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 186500, + 186500, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186501, + 186509, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186510, + 186510, + null + ], + [ + "delim-token", + ".", + 186511, + 186511, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-1", + 186512, + 186518, + { + "value": "pt-xl-1" + } + ], + [ + "{-token", + "{", + 186519, + 186519, + null + ], + [ + "ident-token", + "padding-top", + 186520, + 186530, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186531, + 186531, + null + ], + [ + "dimension-token", + ".25rem", + 186532, + 186537, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186538, + 186538, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186539, + 186547, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186548, + 186548, + null + ], + [ + "delim-token", + ".", + 186549, + 186549, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-2", + 186550, + 186556, + { + "value": "pt-xl-2" + } + ], + [ + "{-token", + "{", + 186557, + 186557, + null + ], + [ + "ident-token", + "padding-top", + 186558, + 186568, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186569, + 186569, + null + ], + [ + "dimension-token", + ".5rem", + 186570, + 186574, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186575, + 186575, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186576, + 186584, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186585, + 186585, + null + ], + [ + "delim-token", + ".", + 186586, + 186586, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-3", + 186587, + 186593, + { + "value": "pt-xl-3" + } + ], + [ + "{-token", + "{", + 186594, + 186594, + null + ], + [ + "ident-token", + "padding-top", + 186595, + 186605, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186606, + 186606, + null + ], + [ + "dimension-token", + "1rem", + 186607, + 186610, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186611, + 186611, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186612, + 186620, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186621, + 186621, + null + ], + [ + "delim-token", + ".", + 186622, + 186622, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-4", + 186623, + 186629, + { + "value": "pt-xl-4" + } + ], + [ + "{-token", + "{", + 186630, + 186630, + null + ], + [ + "ident-token", + "padding-top", + 186631, + 186641, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186642, + 186642, + null + ], + [ + "dimension-token", + "1.5rem", + 186643, + 186648, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186649, + 186649, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186650, + 186658, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186659, + 186659, + null + ], + [ + "delim-token", + ".", + 186660, + 186660, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xl-5", + 186661, + 186667, + { + "value": "pt-xl-5" + } + ], + [ + "{-token", + "{", + 186668, + 186668, + null + ], + [ + "ident-token", + "padding-top", + 186669, + 186679, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 186680, + 186680, + null + ], + [ + "dimension-token", + "3rem", + 186681, + 186684, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186685, + 186685, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186686, + 186694, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186695, + 186695, + null + ], + [ + "delim-token", + ".", + 186696, + 186696, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-0", + 186697, + 186703, + { + "value": "pe-xl-0" + } + ], + [ + "{-token", + "{", + 186704, + 186704, + null + ], + [ + "ident-token", + "padding-right", + 186705, + 186717, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186718, + 186718, + null + ], + [ + "number-token", + "0", + 186719, + 186719, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 186720, + 186720, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186721, + 186729, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186730, + 186730, + null + ], + [ + "delim-token", + ".", + 186731, + 186731, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-1", + 186732, + 186738, + { + "value": "pe-xl-1" + } + ], + [ + "{-token", + "{", + 186739, + 186739, + null + ], + [ + "ident-token", + "padding-right", + 186740, + 186752, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186753, + 186753, + null + ], + [ + "dimension-token", + ".25rem", + 186754, + 186759, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186760, + 186760, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186761, + 186769, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186770, + 186770, + null + ], + [ + "delim-token", + ".", + 186771, + 186771, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-2", + 186772, + 186778, + { + "value": "pe-xl-2" + } + ], + [ + "{-token", + "{", + 186779, + 186779, + null + ], + [ + "ident-token", + "padding-right", + 186780, + 186792, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186793, + 186793, + null + ], + [ + "dimension-token", + ".5rem", + 186794, + 186798, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186799, + 186799, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186800, + 186808, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186809, + 186809, + null + ], + [ + "delim-token", + ".", + 186810, + 186810, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-3", + 186811, + 186817, + { + "value": "pe-xl-3" + } + ], + [ + "{-token", + "{", + 186818, + 186818, + null + ], + [ + "ident-token", + "padding-right", + 186819, + 186831, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186832, + 186832, + null + ], + [ + "dimension-token", + "1rem", + 186833, + 186836, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186837, + 186837, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186838, + 186846, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186847, + 186847, + null + ], + [ + "delim-token", + ".", + 186848, + 186848, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-4", + 186849, + 186855, + { + "value": "pe-xl-4" + } + ], + [ + "{-token", + "{", + 186856, + 186856, + null + ], + [ + "ident-token", + "padding-right", + 186857, + 186869, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186870, + 186870, + null + ], + [ + "dimension-token", + "1.5rem", + 186871, + 186876, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186877, + 186877, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186878, + 186886, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186887, + 186887, + null + ], + [ + "delim-token", + ".", + 186888, + 186888, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xl-5", + 186889, + 186895, + { + "value": "pe-xl-5" + } + ], + [ + "{-token", + "{", + 186896, + 186896, + null + ], + [ + "ident-token", + "padding-right", + 186897, + 186909, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 186910, + 186910, + null + ], + [ + "dimension-token", + "3rem", + 186911, + 186914, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186915, + 186915, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186916, + 186924, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186925, + 186925, + null + ], + [ + "delim-token", + ".", + 186926, + 186926, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-0", + 186927, + 186933, + { + "value": "pb-xl-0" + } + ], + [ + "{-token", + "{", + 186934, + 186934, + null + ], + [ + "ident-token", + "padding-bottom", + 186935, + 186948, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186949, + 186949, + null + ], + [ + "number-token", + "0", + 186950, + 186950, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 186951, + 186951, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186952, + 186960, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 186961, + 186961, + null + ], + [ + "delim-token", + ".", + 186962, + 186962, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-1", + 186963, + 186969, + { + "value": "pb-xl-1" + } + ], + [ + "{-token", + "{", + 186970, + 186970, + null + ], + [ + "ident-token", + "padding-bottom", + 186971, + 186984, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 186985, + 186985, + null + ], + [ + "dimension-token", + ".25rem", + 186986, + 186991, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 186992, + 186992, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 186993, + 187001, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187002, + 187002, + null + ], + [ + "delim-token", + ".", + 187003, + 187003, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-2", + 187004, + 187010, + { + "value": "pb-xl-2" + } + ], + [ + "{-token", + "{", + 187011, + 187011, + null + ], + [ + "ident-token", + "padding-bottom", + 187012, + 187025, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 187026, + 187026, + null + ], + [ + "dimension-token", + ".5rem", + 187027, + 187031, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187032, + 187032, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187033, + 187041, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187042, + 187042, + null + ], + [ + "delim-token", + ".", + 187043, + 187043, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-3", + 187044, + 187050, + { + "value": "pb-xl-3" + } + ], + [ + "{-token", + "{", + 187051, + 187051, + null + ], + [ + "ident-token", + "padding-bottom", + 187052, + 187065, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 187066, + 187066, + null + ], + [ + "dimension-token", + "1rem", + 187067, + 187070, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187071, + 187071, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187072, + 187080, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187081, + 187081, + null + ], + [ + "delim-token", + ".", + 187082, + 187082, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-4", + 187083, + 187089, + { + "value": "pb-xl-4" + } + ], + [ + "{-token", + "{", + 187090, + 187090, + null + ], + [ + "ident-token", + "padding-bottom", + 187091, + 187104, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 187105, + 187105, + null + ], + [ + "dimension-token", + "1.5rem", + 187106, + 187111, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187112, + 187112, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187113, + 187121, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187122, + 187122, + null + ], + [ + "delim-token", + ".", + 187123, + 187123, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xl-5", + 187124, + 187130, + { + "value": "pb-xl-5" + } + ], + [ + "{-token", + "{", + 187131, + 187131, + null + ], + [ + "ident-token", + "padding-bottom", + 187132, + 187145, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 187146, + 187146, + null + ], + [ + "dimension-token", + "3rem", + 187147, + 187150, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187151, + 187151, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187152, + 187160, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187161, + 187161, + null + ], + [ + "delim-token", + ".", + 187162, + 187162, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-0", + 187163, + 187169, + { + "value": "ps-xl-0" + } + ], + [ + "{-token", + "{", + 187170, + 187170, + null + ], + [ + "ident-token", + "padding-left", + 187171, + 187182, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187183, + 187183, + null + ], + [ + "number-token", + "0", + 187184, + 187184, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 187185, + 187185, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187186, + 187194, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187195, + 187195, + null + ], + [ + "delim-token", + ".", + 187196, + 187196, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-1", + 187197, + 187203, + { + "value": "ps-xl-1" + } + ], + [ + "{-token", + "{", + 187204, + 187204, + null + ], + [ + "ident-token", + "padding-left", + 187205, + 187216, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187217, + 187217, + null + ], + [ + "dimension-token", + ".25rem", + 187218, + 187223, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187224, + 187224, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187225, + 187233, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187234, + 187234, + null + ], + [ + "delim-token", + ".", + 187235, + 187235, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-2", + 187236, + 187242, + { + "value": "ps-xl-2" + } + ], + [ + "{-token", + "{", + 187243, + 187243, + null + ], + [ + "ident-token", + "padding-left", + 187244, + 187255, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187256, + 187256, + null + ], + [ + "dimension-token", + ".5rem", + 187257, + 187261, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187262, + 187262, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187263, + 187271, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187272, + 187272, + null + ], + [ + "delim-token", + ".", + 187273, + 187273, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-3", + 187274, + 187280, + { + "value": "ps-xl-3" + } + ], + [ + "{-token", + "{", + 187281, + 187281, + null + ], + [ + "ident-token", + "padding-left", + 187282, + 187293, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187294, + 187294, + null + ], + [ + "dimension-token", + "1rem", + 187295, + 187298, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187299, + 187299, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187300, + 187308, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187309, + 187309, + null + ], + [ + "delim-token", + ".", + 187310, + 187310, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-4", + 187311, + 187317, + { + "value": "ps-xl-4" + } + ], + [ + "{-token", + "{", + 187318, + 187318, + null + ], + [ + "ident-token", + "padding-left", + 187319, + 187330, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187331, + 187331, + null + ], + [ + "dimension-token", + "1.5rem", + 187332, + 187337, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187338, + 187338, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187339, + 187347, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187348, + 187348, + null + ], + [ + "delim-token", + ".", + 187349, + 187349, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xl-5", + 187350, + 187356, + { + "value": "ps-xl-5" + } + ], + [ + "{-token", + "{", + 187357, + 187357, + null + ], + [ + "ident-token", + "padding-left", + 187358, + 187369, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 187370, + 187370, + null + ], + [ + "dimension-token", + "3rem", + 187371, + 187374, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187375, + 187375, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187376, + 187384, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187385, + 187385, + null + ], + [ + "delim-token", + ".", + 187386, + 187386, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-0", + 187387, + 187394, + { + "value": "gap-xl-0" + } + ], + [ + "{-token", + "{", + 187395, + 187395, + null + ], + [ + "ident-token", + "gap", + 187396, + 187398, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187399, + 187399, + null + ], + [ + "number-token", + "0", + 187400, + 187400, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 187401, + 187401, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187402, + 187410, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187411, + 187411, + null + ], + [ + "delim-token", + ".", + 187412, + 187412, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-1", + 187413, + 187420, + { + "value": "gap-xl-1" + } + ], + [ + "{-token", + "{", + 187421, + 187421, + null + ], + [ + "ident-token", + "gap", + 187422, + 187424, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187425, + 187425, + null + ], + [ + "dimension-token", + ".25rem", + 187426, + 187431, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187432, + 187432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187433, + 187441, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187442, + 187442, + null + ], + [ + "delim-token", + ".", + 187443, + 187443, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-2", + 187444, + 187451, + { + "value": "gap-xl-2" + } + ], + [ + "{-token", + "{", + 187452, + 187452, + null + ], + [ + "ident-token", + "gap", + 187453, + 187455, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187456, + 187456, + null + ], + [ + "dimension-token", + ".5rem", + 187457, + 187461, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187462, + 187462, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187463, + 187471, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187472, + 187472, + null + ], + [ + "delim-token", + ".", + 187473, + 187473, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-3", + 187474, + 187481, + { + "value": "gap-xl-3" + } + ], + [ + "{-token", + "{", + 187482, + 187482, + null + ], + [ + "ident-token", + "gap", + 187483, + 187485, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187486, + 187486, + null + ], + [ + "dimension-token", + "1rem", + 187487, + 187490, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187491, + 187491, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187492, + 187500, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187501, + 187501, + null + ], + [ + "delim-token", + ".", + 187502, + 187502, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-4", + 187503, + 187510, + { + "value": "gap-xl-4" + } + ], + [ + "{-token", + "{", + 187511, + 187511, + null + ], + [ + "ident-token", + "gap", + 187512, + 187514, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187515, + 187515, + null + ], + [ + "dimension-token", + "1.5rem", + 187516, + 187521, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187522, + 187522, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187523, + 187531, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187532, + 187532, + null + ], + [ + "delim-token", + ".", + 187533, + 187533, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xl-5", + 187534, + 187541, + { + "value": "gap-xl-5" + } + ], + [ + "{-token", + "{", + 187542, + 187542, + null + ], + [ + "ident-token", + "gap", + 187543, + 187545, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 187546, + 187546, + null + ], + [ + "dimension-token", + "3rem", + 187547, + 187550, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 187551, + 187551, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187552, + 187560, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187561, + 187561, + null + ], + [ + "delim-token", + ".", + 187562, + 187562, + { + "value": "." + } + ], + [ + "ident-token", + "text-xl-start", + 187563, + 187575, + { + "value": "text-xl-start" + } + ], + [ + "{-token", + "{", + 187576, + 187576, + null + ], + [ + "ident-token", + "text-align", + 187577, + 187586, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 187587, + 187587, + null + ], + [ + "ident-token", + "left", + 187588, + 187591, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 187592, + 187592, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187593, + 187601, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187602, + 187602, + null + ], + [ + "delim-token", + ".", + 187603, + 187603, + { + "value": "." + } + ], + [ + "ident-token", + "text-xl-end", + 187604, + 187614, + { + "value": "text-xl-end" + } + ], + [ + "{-token", + "{", + 187615, + 187615, + null + ], + [ + "ident-token", + "text-align", + 187616, + 187625, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 187626, + 187626, + null + ], + [ + "ident-token", + "right", + 187627, + 187631, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 187632, + 187632, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187633, + 187641, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187642, + 187642, + null + ], + [ + "delim-token", + ".", + 187643, + 187643, + { + "value": "." + } + ], + [ + "ident-token", + "text-xl-center", + 187644, + 187657, + { + "value": "text-xl-center" + } + ], + [ + "{-token", + "{", + 187658, + 187658, + null + ], + [ + "ident-token", + "text-align", + 187659, + 187668, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 187669, + 187669, + null + ], + [ + "ident-token", + "center", + 187670, + 187675, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 187676, + 187676, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187677, + 187685, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187686, + 187686, + null + ], + [ + "}-token", + "}", + 187687, + 187687, + null + ], + [ + "at-keyword-token", + "@media", + 187688, + 187693, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 187694, + 187694, + null + ], + [ + "(-token", + "(", + 187695, + 187695, + null + ], + [ + "ident-token", + "min-width", + 187696, + 187704, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 187705, + 187705, + null + ], + [ + "dimension-token", + "1400px", + 187706, + 187711, + { + "value": 1400, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 187712, + 187712, + null + ], + [ + "{-token", + "{", + 187713, + 187713, + null + ], + [ + "delim-token", + ".", + 187714, + 187714, + { + "value": "." + } + ], + [ + "ident-token", + "float-xxl-start", + 187715, + 187729, + { + "value": "float-xxl-start" + } + ], + [ + "{-token", + "{", + 187730, + 187730, + null + ], + [ + "ident-token", + "float", + 187731, + 187735, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 187736, + 187736, + null + ], + [ + "ident-token", + "left", + 187737, + 187740, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 187741, + 187741, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187742, + 187750, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187751, + 187751, + null + ], + [ + "delim-token", + ".", + 187752, + 187752, + { + "value": "." + } + ], + [ + "ident-token", + "float-xxl-end", + 187753, + 187765, + { + "value": "float-xxl-end" + } + ], + [ + "{-token", + "{", + 187766, + 187766, + null + ], + [ + "ident-token", + "float", + 187767, + 187771, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 187772, + 187772, + null + ], + [ + "ident-token", + "right", + 187773, + 187777, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 187778, + 187778, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187779, + 187787, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187788, + 187788, + null + ], + [ + "delim-token", + ".", + 187789, + 187789, + { + "value": "." + } + ], + [ + "ident-token", + "float-xxl-none", + 187790, + 187803, + { + "value": "float-xxl-none" + } + ], + [ + "{-token", + "{", + 187804, + 187804, + null + ], + [ + "ident-token", + "float", + 187805, + 187809, + { + "value": "float" + } + ], + [ + "colon-token", + ":", + 187810, + 187810, + null + ], + [ + "ident-token", + "none", + 187811, + 187814, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 187815, + 187815, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187816, + 187824, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187825, + 187825, + null + ], + [ + "delim-token", + ".", + 187826, + 187826, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-inline", + 187827, + 187838, + { + "value": "d-xxl-inline" + } + ], + [ + "{-token", + "{", + 187839, + 187839, + null + ], + [ + "ident-token", + "display", + 187840, + 187846, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 187847, + 187847, + null + ], + [ + "ident-token", + "inline", + 187848, + 187853, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 187854, + 187854, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187855, + 187863, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187864, + 187864, + null + ], + [ + "delim-token", + ".", + 187865, + 187865, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-inline-block", + 187866, + 187883, + { + "value": "d-xxl-inline-block" + } + ], + [ + "{-token", + "{", + 187884, + 187884, + null + ], + [ + "ident-token", + "display", + 187885, + 187891, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 187892, + 187892, + null + ], + [ + "ident-token", + "inline-block", + 187893, + 187904, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 187905, + 187905, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187906, + 187914, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187915, + 187915, + null + ], + [ + "delim-token", + ".", + 187916, + 187916, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-block", + 187917, + 187927, + { + "value": "d-xxl-block" + } + ], + [ + "{-token", + "{", + 187928, + 187928, + null + ], + [ + "ident-token", + "display", + 187929, + 187935, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 187936, + 187936, + null + ], + [ + "ident-token", + "block", + 187937, + 187941, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 187942, + 187942, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187943, + 187951, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187952, + 187952, + null + ], + [ + "delim-token", + ".", + 187953, + 187953, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-grid", + 187954, + 187963, + { + "value": "d-xxl-grid" + } + ], + [ + "{-token", + "{", + 187964, + 187964, + null + ], + [ + "ident-token", + "display", + 187965, + 187971, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 187972, + 187972, + null + ], + [ + "ident-token", + "grid", + 187973, + 187976, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 187977, + 187977, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 187978, + 187986, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 187987, + 187987, + null + ], + [ + "delim-token", + ".", + 187988, + 187988, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-table", + 187989, + 187999, + { + "value": "d-xxl-table" + } + ], + [ + "{-token", + "{", + 188000, + 188000, + null + ], + [ + "ident-token", + "display", + 188001, + 188007, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188008, + 188008, + null + ], + [ + "ident-token", + "table", + 188009, + 188013, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 188014, + 188014, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188015, + 188023, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188024, + 188024, + null + ], + [ + "delim-token", + ".", + 188025, + 188025, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-table-row", + 188026, + 188040, + { + "value": "d-xxl-table-row" + } + ], + [ + "{-token", + "{", + 188041, + 188041, + null + ], + [ + "ident-token", + "display", + 188042, + 188048, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188049, + 188049, + null + ], + [ + "ident-token", + "table-row", + 188050, + 188058, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 188059, + 188059, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188060, + 188068, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188069, + 188069, + null + ], + [ + "delim-token", + ".", + 188070, + 188070, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-table-cell", + 188071, + 188086, + { + "value": "d-xxl-table-cell" + } + ], + [ + "{-token", + "{", + 188087, + 188087, + null + ], + [ + "ident-token", + "display", + 188088, + 188094, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188095, + 188095, + null + ], + [ + "ident-token", + "table-cell", + 188096, + 188105, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 188106, + 188106, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188107, + 188115, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188116, + 188116, + null + ], + [ + "delim-token", + ".", + 188117, + 188117, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-flex", + 188118, + 188127, + { + "value": "d-xxl-flex" + } + ], + [ + "{-token", + "{", + 188128, + 188128, + null + ], + [ + "ident-token", + "display", + 188129, + 188135, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188136, + 188136, + null + ], + [ + "ident-token", + "flex", + 188137, + 188140, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 188141, + 188141, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188142, + 188150, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188151, + 188151, + null + ], + [ + "delim-token", + ".", + 188152, + 188152, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-inline-flex", + 188153, + 188169, + { + "value": "d-xxl-inline-flex" + } + ], + [ + "{-token", + "{", + 188170, + 188170, + null + ], + [ + "ident-token", + "display", + 188171, + 188177, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188178, + 188178, + null + ], + [ + "ident-token", + "inline-flex", + 188179, + 188189, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 188190, + 188190, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188191, + 188199, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188200, + 188200, + null + ], + [ + "delim-token", + ".", + 188201, + 188201, + { + "value": "." + } + ], + [ + "ident-token", + "d-xxl-none", + 188202, + 188211, + { + "value": "d-xxl-none" + } + ], + [ + "{-token", + "{", + 188212, + 188212, + null + ], + [ + "ident-token", + "display", + 188213, + 188219, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 188220, + 188220, + null + ], + [ + "ident-token", + "none", + 188221, + 188224, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 188225, + 188225, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188226, + 188234, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188235, + 188235, + null + ], + [ + "delim-token", + ".", + 188236, + 188236, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-fill", + 188237, + 188249, + { + "value": "flex-xxl-fill" + } + ], + [ + "{-token", + "{", + 188250, + 188250, + null + ], + [ + "ident-token", + "flex", + 188251, + 188254, + { + "value": "flex" + } + ], + [ + "colon-token", + ":", + 188255, + 188255, + null + ], + [ + "number-token", + "1", + 188256, + 188256, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 188257, + 188257, + null + ], + [ + "number-token", + "1", + 188258, + 188258, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 188259, + 188259, + null + ], + [ + "ident-token", + "auto", + 188260, + 188263, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 188264, + 188264, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188265, + 188273, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188274, + 188274, + null + ], + [ + "delim-token", + ".", + 188275, + 188275, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-row", + 188276, + 188287, + { + "value": "flex-xxl-row" + } + ], + [ + "{-token", + "{", + 188288, + 188288, + null + ], + [ + "ident-token", + "flex-direction", + 188289, + 188302, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 188303, + 188303, + null + ], + [ + "ident-token", + "row", + 188304, + 188306, + { + "value": "row" + } + ], + [ + "delim-token", + "!", + 188307, + 188307, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188308, + 188316, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188317, + 188317, + null + ], + [ + "delim-token", + ".", + 188318, + 188318, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-column", + 188319, + 188333, + { + "value": "flex-xxl-column" + } + ], + [ + "{-token", + "{", + 188334, + 188334, + null + ], + [ + "ident-token", + "flex-direction", + 188335, + 188348, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 188349, + 188349, + null + ], + [ + "ident-token", + "column", + 188350, + 188355, + { + "value": "column" + } + ], + [ + "delim-token", + "!", + 188356, + 188356, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188357, + 188365, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188366, + 188366, + null + ], + [ + "delim-token", + ".", + 188367, + 188367, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-row-reverse", + 188368, + 188387, + { + "value": "flex-xxl-row-reverse" + } + ], + [ + "{-token", + "{", + 188388, + 188388, + null + ], + [ + "ident-token", + "flex-direction", + 188389, + 188402, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 188403, + 188403, + null + ], + [ + "ident-token", + "row-reverse", + 188404, + 188414, + { + "value": "row-reverse" + } + ], + [ + "delim-token", + "!", + 188415, + 188415, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188416, + 188424, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188425, + 188425, + null + ], + [ + "delim-token", + ".", + 188426, + 188426, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-column-reverse", + 188427, + 188449, + { + "value": "flex-xxl-column-reverse" + } + ], + [ + "{-token", + "{", + 188450, + 188450, + null + ], + [ + "ident-token", + "flex-direction", + 188451, + 188464, + { + "value": "flex-direction" + } + ], + [ + "colon-token", + ":", + 188465, + 188465, + null + ], + [ + "ident-token", + "column-reverse", + 188466, + 188479, + { + "value": "column-reverse" + } + ], + [ + "delim-token", + "!", + 188480, + 188480, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188481, + 188489, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188490, + 188490, + null + ], + [ + "delim-token", + ".", + 188491, + 188491, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-grow-0", + 188492, + 188506, + { + "value": "flex-xxl-grow-0" + } + ], + [ + "{-token", + "{", + 188507, + 188507, + null + ], + [ + "ident-token", + "flex-grow", + 188508, + 188516, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 188517, + 188517, + null + ], + [ + "number-token", + "0", + 188518, + 188518, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 188519, + 188519, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188520, + 188528, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188529, + 188529, + null + ], + [ + "delim-token", + ".", + 188530, + 188530, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-grow-1", + 188531, + 188545, + { + "value": "flex-xxl-grow-1" + } + ], + [ + "{-token", + "{", + 188546, + 188546, + null + ], + [ + "ident-token", + "flex-grow", + 188547, + 188555, + { + "value": "flex-grow" + } + ], + [ + "colon-token", + ":", + 188556, + 188556, + null + ], + [ + "number-token", + "1", + 188557, + 188557, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 188558, + 188558, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188559, + 188567, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188568, + 188568, + null + ], + [ + "delim-token", + ".", + 188569, + 188569, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-shrink-0", + 188570, + 188586, + { + "value": "flex-xxl-shrink-0" + } + ], + [ + "{-token", + "{", + 188587, + 188587, + null + ], + [ + "ident-token", + "flex-shrink", + 188588, + 188598, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 188599, + 188599, + null + ], + [ + "number-token", + "0", + 188600, + 188600, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 188601, + 188601, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188602, + 188610, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188611, + 188611, + null + ], + [ + "delim-token", + ".", + 188612, + 188612, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-shrink-1", + 188613, + 188629, + { + "value": "flex-xxl-shrink-1" + } + ], + [ + "{-token", + "{", + 188630, + 188630, + null + ], + [ + "ident-token", + "flex-shrink", + 188631, + 188641, + { + "value": "flex-shrink" + } + ], + [ + "colon-token", + ":", + 188642, + 188642, + null + ], + [ + "number-token", + "1", + 188643, + 188643, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 188644, + 188644, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188645, + 188653, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188654, + 188654, + null + ], + [ + "delim-token", + ".", + 188655, + 188655, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-wrap", + 188656, + 188668, + { + "value": "flex-xxl-wrap" + } + ], + [ + "{-token", + "{", + 188669, + 188669, + null + ], + [ + "ident-token", + "flex-wrap", + 188670, + 188678, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 188679, + 188679, + null + ], + [ + "ident-token", + "wrap", + 188680, + 188683, + { + "value": "wrap" + } + ], + [ + "delim-token", + "!", + 188684, + 188684, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188685, + 188693, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188694, + 188694, + null + ], + [ + "delim-token", + ".", + 188695, + 188695, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-nowrap", + 188696, + 188710, + { + "value": "flex-xxl-nowrap" + } + ], + [ + "{-token", + "{", + 188711, + 188711, + null + ], + [ + "ident-token", + "flex-wrap", + 188712, + 188720, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 188721, + 188721, + null + ], + [ + "ident-token", + "nowrap", + 188722, + 188727, + { + "value": "nowrap" + } + ], + [ + "delim-token", + "!", + 188728, + 188728, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188729, + 188737, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188738, + 188738, + null + ], + [ + "delim-token", + ".", + 188739, + 188739, + { + "value": "." + } + ], + [ + "ident-token", + "flex-xxl-wrap-reverse", + 188740, + 188760, + { + "value": "flex-xxl-wrap-reverse" + } + ], + [ + "{-token", + "{", + 188761, + 188761, + null + ], + [ + "ident-token", + "flex-wrap", + 188762, + 188770, + { + "value": "flex-wrap" + } + ], + [ + "colon-token", + ":", + 188771, + 188771, + null + ], + [ + "ident-token", + "wrap-reverse", + 188772, + 188783, + { + "value": "wrap-reverse" + } + ], + [ + "delim-token", + "!", + 188784, + 188784, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188785, + 188793, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188794, + 188794, + null + ], + [ + "delim-token", + ".", + 188795, + 188795, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-start", + 188796, + 188820, + { + "value": "justify-content-xxl-start" + } + ], + [ + "{-token", + "{", + 188821, + 188821, + null + ], + [ + "ident-token", + "justify-content", + 188822, + 188836, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 188837, + 188837, + null + ], + [ + "ident-token", + "flex-start", + 188838, + 188847, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 188848, + 188848, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188849, + 188857, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188858, + 188858, + null + ], + [ + "delim-token", + ".", + 188859, + 188859, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-end", + 188860, + 188882, + { + "value": "justify-content-xxl-end" + } + ], + [ + "{-token", + "{", + 188883, + 188883, + null + ], + [ + "ident-token", + "justify-content", + 188884, + 188898, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 188899, + 188899, + null + ], + [ + "ident-token", + "flex-end", + 188900, + 188907, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 188908, + 188908, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188909, + 188917, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188918, + 188918, + null + ], + [ + "delim-token", + ".", + 188919, + 188919, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-center", + 188920, + 188945, + { + "value": "justify-content-xxl-center" + } + ], + [ + "{-token", + "{", + 188946, + 188946, + null + ], + [ + "ident-token", + "justify-content", + 188947, + 188961, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 188962, + 188962, + null + ], + [ + "ident-token", + "center", + 188963, + 188968, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 188969, + 188969, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 188970, + 188978, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 188979, + 188979, + null + ], + [ + "delim-token", + ".", + 188980, + 188980, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-between", + 188981, + 189007, + { + "value": "justify-content-xxl-between" + } + ], + [ + "{-token", + "{", + 189008, + 189008, + null + ], + [ + "ident-token", + "justify-content", + 189009, + 189023, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 189024, + 189024, + null + ], + [ + "ident-token", + "space-between", + 189025, + 189037, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 189038, + 189038, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189039, + 189047, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189048, + 189048, + null + ], + [ + "delim-token", + ".", + 189049, + 189049, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-around", + 189050, + 189075, + { + "value": "justify-content-xxl-around" + } + ], + [ + "{-token", + "{", + 189076, + 189076, + null + ], + [ + "ident-token", + "justify-content", + 189077, + 189091, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 189092, + 189092, + null + ], + [ + "ident-token", + "space-around", + 189093, + 189104, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 189105, + 189105, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189106, + 189114, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189115, + 189115, + null + ], + [ + "delim-token", + ".", + 189116, + 189116, + { + "value": "." + } + ], + [ + "ident-token", + "justify-content-xxl-evenly", + 189117, + 189142, + { + "value": "justify-content-xxl-evenly" + } + ], + [ + "{-token", + "{", + 189143, + 189143, + null + ], + [ + "ident-token", + "justify-content", + 189144, + 189158, + { + "value": "justify-content" + } + ], + [ + "colon-token", + ":", + 189159, + 189159, + null + ], + [ + "ident-token", + "space-evenly", + 189160, + 189171, + { + "value": "space-evenly" + } + ], + [ + "delim-token", + "!", + 189172, + 189172, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189173, + 189181, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189182, + 189182, + null + ], + [ + "delim-token", + ".", + 189183, + 189183, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xxl-start", + 189184, + 189204, + { + "value": "align-items-xxl-start" + } + ], + [ + "{-token", + "{", + 189205, + 189205, + null + ], + [ + "ident-token", + "align-items", + 189206, + 189216, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 189217, + 189217, + null + ], + [ + "ident-token", + "flex-start", + 189218, + 189227, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 189228, + 189228, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189229, + 189237, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189238, + 189238, + null + ], + [ + "delim-token", + ".", + 189239, + 189239, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xxl-end", + 189240, + 189258, + { + "value": "align-items-xxl-end" + } + ], + [ + "{-token", + "{", + 189259, + 189259, + null + ], + [ + "ident-token", + "align-items", + 189260, + 189270, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 189271, + 189271, + null + ], + [ + "ident-token", + "flex-end", + 189272, + 189279, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 189280, + 189280, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189281, + 189289, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189290, + 189290, + null + ], + [ + "delim-token", + ".", + 189291, + 189291, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xxl-center", + 189292, + 189313, + { + "value": "align-items-xxl-center" + } + ], + [ + "{-token", + "{", + 189314, + 189314, + null + ], + [ + "ident-token", + "align-items", + 189315, + 189325, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 189326, + 189326, + null + ], + [ + "ident-token", + "center", + 189327, + 189332, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 189333, + 189333, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189334, + 189342, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189343, + 189343, + null + ], + [ + "delim-token", + ".", + 189344, + 189344, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xxl-baseline", + 189345, + 189368, + { + "value": "align-items-xxl-baseline" + } + ], + [ + "{-token", + "{", + 189369, + 189369, + null + ], + [ + "ident-token", + "align-items", + 189370, + 189380, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 189381, + 189381, + null + ], + [ + "ident-token", + "baseline", + 189382, + 189389, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 189390, + 189390, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189391, + 189399, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189400, + 189400, + null + ], + [ + "delim-token", + ".", + 189401, + 189401, + { + "value": "." + } + ], + [ + "ident-token", + "align-items-xxl-stretch", + 189402, + 189424, + { + "value": "align-items-xxl-stretch" + } + ], + [ + "{-token", + "{", + 189425, + 189425, + null + ], + [ + "ident-token", + "align-items", + 189426, + 189436, + { + "value": "align-items" + } + ], + [ + "colon-token", + ":", + 189437, + 189437, + null + ], + [ + "ident-token", + "stretch", + 189438, + 189444, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 189445, + 189445, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189446, + 189454, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189455, + 189455, + null + ], + [ + "delim-token", + ".", + 189456, + 189456, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-start", + 189457, + 189479, + { + "value": "align-content-xxl-start" + } + ], + [ + "{-token", + "{", + 189480, + 189480, + null + ], + [ + "ident-token", + "align-content", + 189481, + 189493, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189494, + 189494, + null + ], + [ + "ident-token", + "flex-start", + 189495, + 189504, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 189505, + 189505, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189506, + 189514, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189515, + 189515, + null + ], + [ + "delim-token", + ".", + 189516, + 189516, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-end", + 189517, + 189537, + { + "value": "align-content-xxl-end" + } + ], + [ + "{-token", + "{", + 189538, + 189538, + null + ], + [ + "ident-token", + "align-content", + 189539, + 189551, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189552, + 189552, + null + ], + [ + "ident-token", + "flex-end", + 189553, + 189560, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 189561, + 189561, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189562, + 189570, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189571, + 189571, + null + ], + [ + "delim-token", + ".", + 189572, + 189572, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-center", + 189573, + 189596, + { + "value": "align-content-xxl-center" + } + ], + [ + "{-token", + "{", + 189597, + 189597, + null + ], + [ + "ident-token", + "align-content", + 189598, + 189610, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189611, + 189611, + null + ], + [ + "ident-token", + "center", + 189612, + 189617, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 189618, + 189618, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189619, + 189627, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189628, + 189628, + null + ], + [ + "delim-token", + ".", + 189629, + 189629, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-between", + 189630, + 189654, + { + "value": "align-content-xxl-between" + } + ], + [ + "{-token", + "{", + 189655, + 189655, + null + ], + [ + "ident-token", + "align-content", + 189656, + 189668, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189669, + 189669, + null + ], + [ + "ident-token", + "space-between", + 189670, + 189682, + { + "value": "space-between" + } + ], + [ + "delim-token", + "!", + 189683, + 189683, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189684, + 189692, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189693, + 189693, + null + ], + [ + "delim-token", + ".", + 189694, + 189694, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-around", + 189695, + 189718, + { + "value": "align-content-xxl-around" + } + ], + [ + "{-token", + "{", + 189719, + 189719, + null + ], + [ + "ident-token", + "align-content", + 189720, + 189732, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189733, + 189733, + null + ], + [ + "ident-token", + "space-around", + 189734, + 189745, + { + "value": "space-around" + } + ], + [ + "delim-token", + "!", + 189746, + 189746, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189747, + 189755, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189756, + 189756, + null + ], + [ + "delim-token", + ".", + 189757, + 189757, + { + "value": "." + } + ], + [ + "ident-token", + "align-content-xxl-stretch", + 189758, + 189782, + { + "value": "align-content-xxl-stretch" + } + ], + [ + "{-token", + "{", + 189783, + 189783, + null + ], + [ + "ident-token", + "align-content", + 189784, + 189796, + { + "value": "align-content" + } + ], + [ + "colon-token", + ":", + 189797, + 189797, + null + ], + [ + "ident-token", + "stretch", + 189798, + 189804, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 189805, + 189805, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189806, + 189814, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189815, + 189815, + null + ], + [ + "delim-token", + ".", + 189816, + 189816, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-auto", + 189817, + 189835, + { + "value": "align-self-xxl-auto" + } + ], + [ + "{-token", + "{", + 189836, + 189836, + null + ], + [ + "ident-token", + "align-self", + 189837, + 189846, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 189847, + 189847, + null + ], + [ + "ident-token", + "auto", + 189848, + 189851, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 189852, + 189852, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189853, + 189861, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189862, + 189862, + null + ], + [ + "delim-token", + ".", + 189863, + 189863, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-start", + 189864, + 189883, + { + "value": "align-self-xxl-start" + } + ], + [ + "{-token", + "{", + 189884, + 189884, + null + ], + [ + "ident-token", + "align-self", + 189885, + 189894, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 189895, + 189895, + null + ], + [ + "ident-token", + "flex-start", + 189896, + 189905, + { + "value": "flex-start" + } + ], + [ + "delim-token", + "!", + 189906, + 189906, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189907, + 189915, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189916, + 189916, + null + ], + [ + "delim-token", + ".", + 189917, + 189917, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-end", + 189918, + 189935, + { + "value": "align-self-xxl-end" + } + ], + [ + "{-token", + "{", + 189936, + 189936, + null + ], + [ + "ident-token", + "align-self", + 189937, + 189946, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 189947, + 189947, + null + ], + [ + "ident-token", + "flex-end", + 189948, + 189955, + { + "value": "flex-end" + } + ], + [ + "delim-token", + "!", + 189956, + 189956, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 189957, + 189965, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 189966, + 189966, + null + ], + [ + "delim-token", + ".", + 189967, + 189967, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-center", + 189968, + 189988, + { + "value": "align-self-xxl-center" + } + ], + [ + "{-token", + "{", + 189989, + 189989, + null + ], + [ + "ident-token", + "align-self", + 189990, + 189999, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 190000, + 190000, + null + ], + [ + "ident-token", + "center", + 190001, + 190006, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 190007, + 190007, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190008, + 190016, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190017, + 190017, + null + ], + [ + "delim-token", + ".", + 190018, + 190018, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-baseline", + 190019, + 190041, + { + "value": "align-self-xxl-baseline" + } + ], + [ + "{-token", + "{", + 190042, + 190042, + null + ], + [ + "ident-token", + "align-self", + 190043, + 190052, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 190053, + 190053, + null + ], + [ + "ident-token", + "baseline", + 190054, + 190061, + { + "value": "baseline" + } + ], + [ + "delim-token", + "!", + 190062, + 190062, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190063, + 190071, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190072, + 190072, + null + ], + [ + "delim-token", + ".", + 190073, + 190073, + { + "value": "." + } + ], + [ + "ident-token", + "align-self-xxl-stretch", + 190074, + 190095, + { + "value": "align-self-xxl-stretch" + } + ], + [ + "{-token", + "{", + 190096, + 190096, + null + ], + [ + "ident-token", + "align-self", + 190097, + 190106, + { + "value": "align-self" + } + ], + [ + "colon-token", + ":", + 190107, + 190107, + null + ], + [ + "ident-token", + "stretch", + 190108, + 190114, + { + "value": "stretch" + } + ], + [ + "delim-token", + "!", + 190115, + 190115, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190116, + 190124, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190125, + 190125, + null + ], + [ + "delim-token", + ".", + 190126, + 190126, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-first", + 190127, + 190141, + { + "value": "order-xxl-first" + } + ], + [ + "{-token", + "{", + 190142, + 190142, + null + ], + [ + "ident-token", + "order", + 190143, + 190147, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190148, + 190148, + null + ], + [ + "number-token", + "-1", + 190149, + 190150, + { + "value": -1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190151, + 190151, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190152, + 190160, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190161, + 190161, + null + ], + [ + "delim-token", + ".", + 190162, + 190162, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-0", + 190163, + 190173, + { + "value": "order-xxl-0" + } + ], + [ + "{-token", + "{", + 190174, + 190174, + null + ], + [ + "ident-token", + "order", + 190175, + 190179, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190180, + 190180, + null + ], + [ + "number-token", + "0", + 190181, + 190181, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190182, + 190182, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190183, + 190191, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190192, + 190192, + null + ], + [ + "delim-token", + ".", + 190193, + 190193, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-1", + 190194, + 190204, + { + "value": "order-xxl-1" + } + ], + [ + "{-token", + "{", + 190205, + 190205, + null + ], + [ + "ident-token", + "order", + 190206, + 190210, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190211, + 190211, + null + ], + [ + "number-token", + "1", + 190212, + 190212, + { + "value": 1, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190213, + 190213, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190214, + 190222, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190223, + 190223, + null + ], + [ + "delim-token", + ".", + 190224, + 190224, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-2", + 190225, + 190235, + { + "value": "order-xxl-2" + } + ], + [ + "{-token", + "{", + 190236, + 190236, + null + ], + [ + "ident-token", + "order", + 190237, + 190241, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190242, + 190242, + null + ], + [ + "number-token", + "2", + 190243, + 190243, + { + "value": 2, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190244, + 190244, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190245, + 190253, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190254, + 190254, + null + ], + [ + "delim-token", + ".", + 190255, + 190255, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-3", + 190256, + 190266, + { + "value": "order-xxl-3" + } + ], + [ + "{-token", + "{", + 190267, + 190267, + null + ], + [ + "ident-token", + "order", + 190268, + 190272, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190273, + 190273, + null + ], + [ + "number-token", + "3", + 190274, + 190274, + { + "value": 3, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190275, + 190275, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190276, + 190284, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190285, + 190285, + null + ], + [ + "delim-token", + ".", + 190286, + 190286, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-4", + 190287, + 190297, + { + "value": "order-xxl-4" + } + ], + [ + "{-token", + "{", + 190298, + 190298, + null + ], + [ + "ident-token", + "order", + 190299, + 190303, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190304, + 190304, + null + ], + [ + "number-token", + "4", + 190305, + 190305, + { + "value": 4, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190306, + 190306, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190307, + 190315, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190316, + 190316, + null + ], + [ + "delim-token", + ".", + 190317, + 190317, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-5", + 190318, + 190328, + { + "value": "order-xxl-5" + } + ], + [ + "{-token", + "{", + 190329, + 190329, + null + ], + [ + "ident-token", + "order", + 190330, + 190334, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190335, + 190335, + null + ], + [ + "number-token", + "5", + 190336, + 190336, + { + "value": 5, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190337, + 190337, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190338, + 190346, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190347, + 190347, + null + ], + [ + "delim-token", + ".", + 190348, + 190348, + { + "value": "." + } + ], + [ + "ident-token", + "order-xxl-last", + 190349, + 190362, + { + "value": "order-xxl-last" + } + ], + [ + "{-token", + "{", + 190363, + 190363, + null + ], + [ + "ident-token", + "order", + 190364, + 190368, + { + "value": "order" + } + ], + [ + "colon-token", + ":", + 190369, + 190369, + null + ], + [ + "number-token", + "6", + 190370, + 190370, + { + "value": 6, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190371, + 190371, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190372, + 190380, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190381, + 190381, + null + ], + [ + "delim-token", + ".", + 190382, + 190382, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-0", + 190383, + 190389, + { + "value": "m-xxl-0" + } + ], + [ + "{-token", + "{", + 190390, + 190390, + null + ], + [ + "ident-token", + "margin", + 190391, + 190396, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190397, + 190397, + null + ], + [ + "number-token", + "0", + 190398, + 190398, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190399, + 190399, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190400, + 190408, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190409, + 190409, + null + ], + [ + "delim-token", + ".", + 190410, + 190410, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-1", + 190411, + 190417, + { + "value": "m-xxl-1" + } + ], + [ + "{-token", + "{", + 190418, + 190418, + null + ], + [ + "ident-token", + "margin", + 190419, + 190424, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190425, + 190425, + null + ], + [ + "dimension-token", + ".25rem", + 190426, + 190431, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190432, + 190432, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190433, + 190441, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190442, + 190442, + null + ], + [ + "delim-token", + ".", + 190443, + 190443, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-2", + 190444, + 190450, + { + "value": "m-xxl-2" + } + ], + [ + "{-token", + "{", + 190451, + 190451, + null + ], + [ + "ident-token", + "margin", + 190452, + 190457, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190458, + 190458, + null + ], + [ + "dimension-token", + ".5rem", + 190459, + 190463, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190464, + 190464, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190465, + 190473, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190474, + 190474, + null + ], + [ + "delim-token", + ".", + 190475, + 190475, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-3", + 190476, + 190482, + { + "value": "m-xxl-3" + } + ], + [ + "{-token", + "{", + 190483, + 190483, + null + ], + [ + "ident-token", + "margin", + 190484, + 190489, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190490, + 190490, + null + ], + [ + "dimension-token", + "1rem", + 190491, + 190494, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190495, + 190495, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190496, + 190504, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190505, + 190505, + null + ], + [ + "delim-token", + ".", + 190506, + 190506, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-4", + 190507, + 190513, + { + "value": "m-xxl-4" + } + ], + [ + "{-token", + "{", + 190514, + 190514, + null + ], + [ + "ident-token", + "margin", + 190515, + 190520, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190521, + 190521, + null + ], + [ + "dimension-token", + "1.5rem", + 190522, + 190527, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190528, + 190528, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190529, + 190537, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190538, + 190538, + null + ], + [ + "delim-token", + ".", + 190539, + 190539, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-5", + 190540, + 190546, + { + "value": "m-xxl-5" + } + ], + [ + "{-token", + "{", + 190547, + 190547, + null + ], + [ + "ident-token", + "margin", + 190548, + 190553, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190554, + 190554, + null + ], + [ + "dimension-token", + "3rem", + 190555, + 190558, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190559, + 190559, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190560, + 190568, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190569, + 190569, + null + ], + [ + "delim-token", + ".", + 190570, + 190570, + { + "value": "." + } + ], + [ + "ident-token", + "m-xxl-auto", + 190571, + 190580, + { + "value": "m-xxl-auto" + } + ], + [ + "{-token", + "{", + 190581, + 190581, + null + ], + [ + "ident-token", + "margin", + 190582, + 190587, + { + "value": "margin" + } + ], + [ + "colon-token", + ":", + 190588, + 190588, + null + ], + [ + "ident-token", + "auto", + 190589, + 190592, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 190593, + 190593, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190594, + 190602, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190603, + 190603, + null + ], + [ + "delim-token", + ".", + 190604, + 190604, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-0", + 190605, + 190612, + { + "value": "mx-xxl-0" + } + ], + [ + "{-token", + "{", + 190613, + 190613, + null + ], + [ + "ident-token", + "margin-right", + 190614, + 190625, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190626, + 190626, + null + ], + [ + "number-token", + "0", + 190627, + 190627, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190628, + 190628, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190629, + 190637, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190638, + 190638, + null + ], + [ + "ident-token", + "margin-left", + 190639, + 190649, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190650, + 190650, + null + ], + [ + "number-token", + "0", + 190651, + 190651, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 190652, + 190652, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190653, + 190661, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190662, + 190662, + null + ], + [ + "delim-token", + ".", + 190663, + 190663, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-1", + 190664, + 190671, + { + "value": "mx-xxl-1" + } + ], + [ + "{-token", + "{", + 190672, + 190672, + null + ], + [ + "ident-token", + "margin-right", + 190673, + 190684, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190685, + 190685, + null + ], + [ + "dimension-token", + ".25rem", + 190686, + 190691, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190692, + 190692, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190693, + 190701, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190702, + 190702, + null + ], + [ + "ident-token", + "margin-left", + 190703, + 190713, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190714, + 190714, + null + ], + [ + "dimension-token", + ".25rem", + 190715, + 190720, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190721, + 190721, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190722, + 190730, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190731, + 190731, + null + ], + [ + "delim-token", + ".", + 190732, + 190732, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-2", + 190733, + 190740, + { + "value": "mx-xxl-2" + } + ], + [ + "{-token", + "{", + 190741, + 190741, + null + ], + [ + "ident-token", + "margin-right", + 190742, + 190753, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190754, + 190754, + null + ], + [ + "dimension-token", + ".5rem", + 190755, + 190759, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190760, + 190760, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190761, + 190769, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190770, + 190770, + null + ], + [ + "ident-token", + "margin-left", + 190771, + 190781, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190782, + 190782, + null + ], + [ + "dimension-token", + ".5rem", + 190783, + 190787, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190788, + 190788, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190789, + 190797, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190798, + 190798, + null + ], + [ + "delim-token", + ".", + 190799, + 190799, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-3", + 190800, + 190807, + { + "value": "mx-xxl-3" + } + ], + [ + "{-token", + "{", + 190808, + 190808, + null + ], + [ + "ident-token", + "margin-right", + 190809, + 190820, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190821, + 190821, + null + ], + [ + "dimension-token", + "1rem", + 190822, + 190825, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190826, + 190826, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190827, + 190835, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190836, + 190836, + null + ], + [ + "ident-token", + "margin-left", + 190837, + 190847, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190848, + 190848, + null + ], + [ + "dimension-token", + "1rem", + 190849, + 190852, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190853, + 190853, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190854, + 190862, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190863, + 190863, + null + ], + [ + "delim-token", + ".", + 190864, + 190864, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-4", + 190865, + 190872, + { + "value": "mx-xxl-4" + } + ], + [ + "{-token", + "{", + 190873, + 190873, + null + ], + [ + "ident-token", + "margin-right", + 190874, + 190885, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190886, + 190886, + null + ], + [ + "dimension-token", + "1.5rem", + 190887, + 190892, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190893, + 190893, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190894, + 190902, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190903, + 190903, + null + ], + [ + "ident-token", + "margin-left", + 190904, + 190914, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190915, + 190915, + null + ], + [ + "dimension-token", + "1.5rem", + 190916, + 190921, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190922, + 190922, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190923, + 190931, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190932, + 190932, + null + ], + [ + "delim-token", + ".", + 190933, + 190933, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-5", + 190934, + 190941, + { + "value": "mx-xxl-5" + } + ], + [ + "{-token", + "{", + 190942, + 190942, + null + ], + [ + "ident-token", + "margin-right", + 190943, + 190954, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 190955, + 190955, + null + ], + [ + "dimension-token", + "3rem", + 190956, + 190959, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190960, + 190960, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190961, + 190969, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 190970, + 190970, + null + ], + [ + "ident-token", + "margin-left", + 190971, + 190981, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 190982, + 190982, + null + ], + [ + "dimension-token", + "3rem", + 190983, + 190986, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 190987, + 190987, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 190988, + 190996, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 190997, + 190997, + null + ], + [ + "delim-token", + ".", + 190998, + 190998, + { + "value": "." + } + ], + [ + "ident-token", + "mx-xxl-auto", + 190999, + 191009, + { + "value": "mx-xxl-auto" + } + ], + [ + "{-token", + "{", + 191010, + 191010, + null + ], + [ + "ident-token", + "margin-right", + 191011, + 191022, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191023, + 191023, + null + ], + [ + "ident-token", + "auto", + 191024, + 191027, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 191028, + 191028, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191029, + 191037, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191038, + 191038, + null + ], + [ + "ident-token", + "margin-left", + 191039, + 191049, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 191050, + 191050, + null + ], + [ + "ident-token", + "auto", + 191051, + 191054, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 191055, + 191055, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191056, + 191064, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191065, + 191065, + null + ], + [ + "delim-token", + ".", + 191066, + 191066, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-0", + 191067, + 191074, + { + "value": "my-xxl-0" + } + ], + [ + "{-token", + "{", + 191075, + 191075, + null + ], + [ + "ident-token", + "margin-top", + 191076, + 191085, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191086, + 191086, + null + ], + [ + "number-token", + "0", + 191087, + 191087, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 191088, + 191088, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191089, + 191097, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191098, + 191098, + null + ], + [ + "ident-token", + "margin-bottom", + 191099, + 191111, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191112, + 191112, + null + ], + [ + "number-token", + "0", + 191113, + 191113, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 191114, + 191114, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191115, + 191123, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191124, + 191124, + null + ], + [ + "delim-token", + ".", + 191125, + 191125, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-1", + 191126, + 191133, + { + "value": "my-xxl-1" + } + ], + [ + "{-token", + "{", + 191134, + 191134, + null + ], + [ + "ident-token", + "margin-top", + 191135, + 191144, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191145, + 191145, + null + ], + [ + "dimension-token", + ".25rem", + 191146, + 191151, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191152, + 191152, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191153, + 191161, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191162, + 191162, + null + ], + [ + "ident-token", + "margin-bottom", + 191163, + 191175, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191176, + 191176, + null + ], + [ + "dimension-token", + ".25rem", + 191177, + 191182, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191183, + 191183, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191184, + 191192, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191193, + 191193, + null + ], + [ + "delim-token", + ".", + 191194, + 191194, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-2", + 191195, + 191202, + { + "value": "my-xxl-2" + } + ], + [ + "{-token", + "{", + 191203, + 191203, + null + ], + [ + "ident-token", + "margin-top", + 191204, + 191213, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191214, + 191214, + null + ], + [ + "dimension-token", + ".5rem", + 191215, + 191219, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191220, + 191220, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191221, + 191229, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191230, + 191230, + null + ], + [ + "ident-token", + "margin-bottom", + 191231, + 191243, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191244, + 191244, + null + ], + [ + "dimension-token", + ".5rem", + 191245, + 191249, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191250, + 191250, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191251, + 191259, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191260, + 191260, + null + ], + [ + "delim-token", + ".", + 191261, + 191261, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-3", + 191262, + 191269, + { + "value": "my-xxl-3" + } + ], + [ + "{-token", + "{", + 191270, + 191270, + null + ], + [ + "ident-token", + "margin-top", + 191271, + 191280, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191281, + 191281, + null + ], + [ + "dimension-token", + "1rem", + 191282, + 191285, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191286, + 191286, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191287, + 191295, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191296, + 191296, + null + ], + [ + "ident-token", + "margin-bottom", + 191297, + 191309, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191310, + 191310, + null + ], + [ + "dimension-token", + "1rem", + 191311, + 191314, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191315, + 191315, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191316, + 191324, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191325, + 191325, + null + ], + [ + "delim-token", + ".", + 191326, + 191326, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-4", + 191327, + 191334, + { + "value": "my-xxl-4" + } + ], + [ + "{-token", + "{", + 191335, + 191335, + null + ], + [ + "ident-token", + "margin-top", + 191336, + 191345, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191346, + 191346, + null + ], + [ + "dimension-token", + "1.5rem", + 191347, + 191352, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191353, + 191353, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191354, + 191362, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191363, + 191363, + null + ], + [ + "ident-token", + "margin-bottom", + 191364, + 191376, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191377, + 191377, + null + ], + [ + "dimension-token", + "1.5rem", + 191378, + 191383, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191384, + 191384, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191385, + 191393, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191394, + 191394, + null + ], + [ + "delim-token", + ".", + 191395, + 191395, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-5", + 191396, + 191403, + { + "value": "my-xxl-5" + } + ], + [ + "{-token", + "{", + 191404, + 191404, + null + ], + [ + "ident-token", + "margin-top", + 191405, + 191414, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191415, + 191415, + null + ], + [ + "dimension-token", + "3rem", + 191416, + 191419, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191420, + 191420, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191421, + 191429, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191430, + 191430, + null + ], + [ + "ident-token", + "margin-bottom", + 191431, + 191443, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191444, + 191444, + null + ], + [ + "dimension-token", + "3rem", + 191445, + 191448, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191449, + 191449, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191450, + 191458, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191459, + 191459, + null + ], + [ + "delim-token", + ".", + 191460, + 191460, + { + "value": "." + } + ], + [ + "ident-token", + "my-xxl-auto", + 191461, + 191471, + { + "value": "my-xxl-auto" + } + ], + [ + "{-token", + "{", + 191472, + 191472, + null + ], + [ + "ident-token", + "margin-top", + 191473, + 191482, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191483, + 191483, + null + ], + [ + "ident-token", + "auto", + 191484, + 191487, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 191488, + 191488, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191489, + 191497, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 191498, + 191498, + null + ], + [ + "ident-token", + "margin-bottom", + 191499, + 191511, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 191512, + 191512, + null + ], + [ + "ident-token", + "auto", + 191513, + 191516, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 191517, + 191517, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191518, + 191526, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191527, + 191527, + null + ], + [ + "delim-token", + ".", + 191528, + 191528, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-0", + 191529, + 191536, + { + "value": "mt-xxl-0" + } + ], + [ + "{-token", + "{", + 191537, + 191537, + null + ], + [ + "ident-token", + "margin-top", + 191538, + 191547, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191548, + 191548, + null + ], + [ + "number-token", + "0", + 191549, + 191549, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 191550, + 191550, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191551, + 191559, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191560, + 191560, + null + ], + [ + "delim-token", + ".", + 191561, + 191561, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-1", + 191562, + 191569, + { + "value": "mt-xxl-1" + } + ], + [ + "{-token", + "{", + 191570, + 191570, + null + ], + [ + "ident-token", + "margin-top", + 191571, + 191580, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191581, + 191581, + null + ], + [ + "dimension-token", + ".25rem", + 191582, + 191587, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191588, + 191588, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191589, + 191597, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191598, + 191598, + null + ], + [ + "delim-token", + ".", + 191599, + 191599, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-2", + 191600, + 191607, + { + "value": "mt-xxl-2" + } + ], + [ + "{-token", + "{", + 191608, + 191608, + null + ], + [ + "ident-token", + "margin-top", + 191609, + 191618, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191619, + 191619, + null + ], + [ + "dimension-token", + ".5rem", + 191620, + 191624, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191625, + 191625, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191626, + 191634, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191635, + 191635, + null + ], + [ + "delim-token", + ".", + 191636, + 191636, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-3", + 191637, + 191644, + { + "value": "mt-xxl-3" + } + ], + [ + "{-token", + "{", + 191645, + 191645, + null + ], + [ + "ident-token", + "margin-top", + 191646, + 191655, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191656, + 191656, + null + ], + [ + "dimension-token", + "1rem", + 191657, + 191660, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191661, + 191661, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191662, + 191670, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191671, + 191671, + null + ], + [ + "delim-token", + ".", + 191672, + 191672, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-4", + 191673, + 191680, + { + "value": "mt-xxl-4" + } + ], + [ + "{-token", + "{", + 191681, + 191681, + null + ], + [ + "ident-token", + "margin-top", + 191682, + 191691, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191692, + 191692, + null + ], + [ + "dimension-token", + "1.5rem", + 191693, + 191698, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191699, + 191699, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191700, + 191708, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191709, + 191709, + null + ], + [ + "delim-token", + ".", + 191710, + 191710, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-5", + 191711, + 191718, + { + "value": "mt-xxl-5" + } + ], + [ + "{-token", + "{", + 191719, + 191719, + null + ], + [ + "ident-token", + "margin-top", + 191720, + 191729, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191730, + 191730, + null + ], + [ + "dimension-token", + "3rem", + 191731, + 191734, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191735, + 191735, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191736, + 191744, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191745, + 191745, + null + ], + [ + "delim-token", + ".", + 191746, + 191746, + { + "value": "." + } + ], + [ + "ident-token", + "mt-xxl-auto", + 191747, + 191757, + { + "value": "mt-xxl-auto" + } + ], + [ + "{-token", + "{", + 191758, + 191758, + null + ], + [ + "ident-token", + "margin-top", + 191759, + 191768, + { + "value": "margin-top" + } + ], + [ + "colon-token", + ":", + 191769, + 191769, + null + ], + [ + "ident-token", + "auto", + 191770, + 191773, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 191774, + 191774, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191775, + 191783, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191784, + 191784, + null + ], + [ + "delim-token", + ".", + 191785, + 191785, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-0", + 191786, + 191793, + { + "value": "me-xxl-0" + } + ], + [ + "{-token", + "{", + 191794, + 191794, + null + ], + [ + "ident-token", + "margin-right", + 191795, + 191806, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191807, + 191807, + null + ], + [ + "number-token", + "0", + 191808, + 191808, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 191809, + 191809, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191810, + 191818, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191819, + 191819, + null + ], + [ + "delim-token", + ".", + 191820, + 191820, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-1", + 191821, + 191828, + { + "value": "me-xxl-1" + } + ], + [ + "{-token", + "{", + 191829, + 191829, + null + ], + [ + "ident-token", + "margin-right", + 191830, + 191841, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191842, + 191842, + null + ], + [ + "dimension-token", + ".25rem", + 191843, + 191848, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191849, + 191849, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191850, + 191858, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191859, + 191859, + null + ], + [ + "delim-token", + ".", + 191860, + 191860, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-2", + 191861, + 191868, + { + "value": "me-xxl-2" + } + ], + [ + "{-token", + "{", + 191869, + 191869, + null + ], + [ + "ident-token", + "margin-right", + 191870, + 191881, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191882, + 191882, + null + ], + [ + "dimension-token", + ".5rem", + 191883, + 191887, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191888, + 191888, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191889, + 191897, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191898, + 191898, + null + ], + [ + "delim-token", + ".", + 191899, + 191899, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-3", + 191900, + 191907, + { + "value": "me-xxl-3" + } + ], + [ + "{-token", + "{", + 191908, + 191908, + null + ], + [ + "ident-token", + "margin-right", + 191909, + 191920, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191921, + 191921, + null + ], + [ + "dimension-token", + "1rem", + 191922, + 191925, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191926, + 191926, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191927, + 191935, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191936, + 191936, + null + ], + [ + "delim-token", + ".", + 191937, + 191937, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-4", + 191938, + 191945, + { + "value": "me-xxl-4" + } + ], + [ + "{-token", + "{", + 191946, + 191946, + null + ], + [ + "ident-token", + "margin-right", + 191947, + 191958, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191959, + 191959, + null + ], + [ + "dimension-token", + "1.5rem", + 191960, + 191965, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 191966, + 191966, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 191967, + 191975, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 191976, + 191976, + null + ], + [ + "delim-token", + ".", + 191977, + 191977, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-5", + 191978, + 191985, + { + "value": "me-xxl-5" + } + ], + [ + "{-token", + "{", + 191986, + 191986, + null + ], + [ + "ident-token", + "margin-right", + 191987, + 191998, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 191999, + 191999, + null + ], + [ + "dimension-token", + "3rem", + 192000, + 192003, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192004, + 192004, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192005, + 192013, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192014, + 192014, + null + ], + [ + "delim-token", + ".", + 192015, + 192015, + { + "value": "." + } + ], + [ + "ident-token", + "me-xxl-auto", + 192016, + 192026, + { + "value": "me-xxl-auto" + } + ], + [ + "{-token", + "{", + 192027, + 192027, + null + ], + [ + "ident-token", + "margin-right", + 192028, + 192039, + { + "value": "margin-right" + } + ], + [ + "colon-token", + ":", + 192040, + 192040, + null + ], + [ + "ident-token", + "auto", + 192041, + 192044, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 192045, + 192045, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192046, + 192054, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192055, + 192055, + null + ], + [ + "delim-token", + ".", + 192056, + 192056, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-0", + 192057, + 192064, + { + "value": "mb-xxl-0" + } + ], + [ + "{-token", + "{", + 192065, + 192065, + null + ], + [ + "ident-token", + "margin-bottom", + 192066, + 192078, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192079, + 192079, + null + ], + [ + "number-token", + "0", + 192080, + 192080, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 192081, + 192081, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192082, + 192090, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192091, + 192091, + null + ], + [ + "delim-token", + ".", + 192092, + 192092, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-1", + 192093, + 192100, + { + "value": "mb-xxl-1" + } + ], + [ + "{-token", + "{", + 192101, + 192101, + null + ], + [ + "ident-token", + "margin-bottom", + 192102, + 192114, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192115, + 192115, + null + ], + [ + "dimension-token", + ".25rem", + 192116, + 192121, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192122, + 192122, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192123, + 192131, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192132, + 192132, + null + ], + [ + "delim-token", + ".", + 192133, + 192133, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-2", + 192134, + 192141, + { + "value": "mb-xxl-2" + } + ], + [ + "{-token", + "{", + 192142, + 192142, + null + ], + [ + "ident-token", + "margin-bottom", + 192143, + 192155, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192156, + 192156, + null + ], + [ + "dimension-token", + ".5rem", + 192157, + 192161, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192162, + 192162, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192163, + 192171, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192172, + 192172, + null + ], + [ + "delim-token", + ".", + 192173, + 192173, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-3", + 192174, + 192181, + { + "value": "mb-xxl-3" + } + ], + [ + "{-token", + "{", + 192182, + 192182, + null + ], + [ + "ident-token", + "margin-bottom", + 192183, + 192195, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192196, + 192196, + null + ], + [ + "dimension-token", + "1rem", + 192197, + 192200, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192201, + 192201, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192202, + 192210, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192211, + 192211, + null + ], + [ + "delim-token", + ".", + 192212, + 192212, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-4", + 192213, + 192220, + { + "value": "mb-xxl-4" + } + ], + [ + "{-token", + "{", + 192221, + 192221, + null + ], + [ + "ident-token", + "margin-bottom", + 192222, + 192234, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192235, + 192235, + null + ], + [ + "dimension-token", + "1.5rem", + 192236, + 192241, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192242, + 192242, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192243, + 192251, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192252, + 192252, + null + ], + [ + "delim-token", + ".", + 192253, + 192253, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-5", + 192254, + 192261, + { + "value": "mb-xxl-5" + } + ], + [ + "{-token", + "{", + 192262, + 192262, + null + ], + [ + "ident-token", + "margin-bottom", + 192263, + 192275, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192276, + 192276, + null + ], + [ + "dimension-token", + "3rem", + 192277, + 192280, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192281, + 192281, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192282, + 192290, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192291, + 192291, + null + ], + [ + "delim-token", + ".", + 192292, + 192292, + { + "value": "." + } + ], + [ + "ident-token", + "mb-xxl-auto", + 192293, + 192303, + { + "value": "mb-xxl-auto" + } + ], + [ + "{-token", + "{", + 192304, + 192304, + null + ], + [ + "ident-token", + "margin-bottom", + 192305, + 192317, + { + "value": "margin-bottom" + } + ], + [ + "colon-token", + ":", + 192318, + 192318, + null + ], + [ + "ident-token", + "auto", + 192319, + 192322, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 192323, + 192323, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192324, + 192332, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192333, + 192333, + null + ], + [ + "delim-token", + ".", + 192334, + 192334, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-0", + 192335, + 192342, + { + "value": "ms-xxl-0" + } + ], + [ + "{-token", + "{", + 192343, + 192343, + null + ], + [ + "ident-token", + "margin-left", + 192344, + 192354, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192355, + 192355, + null + ], + [ + "number-token", + "0", + 192356, + 192356, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 192357, + 192357, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192358, + 192366, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192367, + 192367, + null + ], + [ + "delim-token", + ".", + 192368, + 192368, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-1", + 192369, + 192376, + { + "value": "ms-xxl-1" + } + ], + [ + "{-token", + "{", + 192377, + 192377, + null + ], + [ + "ident-token", + "margin-left", + 192378, + 192388, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192389, + 192389, + null + ], + [ + "dimension-token", + ".25rem", + 192390, + 192395, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192396, + 192396, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192397, + 192405, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192406, + 192406, + null + ], + [ + "delim-token", + ".", + 192407, + 192407, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-2", + 192408, + 192415, + { + "value": "ms-xxl-2" + } + ], + [ + "{-token", + "{", + 192416, + 192416, + null + ], + [ + "ident-token", + "margin-left", + 192417, + 192427, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192428, + 192428, + null + ], + [ + "dimension-token", + ".5rem", + 192429, + 192433, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192434, + 192434, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192435, + 192443, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192444, + 192444, + null + ], + [ + "delim-token", + ".", + 192445, + 192445, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-3", + 192446, + 192453, + { + "value": "ms-xxl-3" + } + ], + [ + "{-token", + "{", + 192454, + 192454, + null + ], + [ + "ident-token", + "margin-left", + 192455, + 192465, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192466, + 192466, + null + ], + [ + "dimension-token", + "1rem", + 192467, + 192470, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192471, + 192471, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192472, + 192480, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192481, + 192481, + null + ], + [ + "delim-token", + ".", + 192482, + 192482, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-4", + 192483, + 192490, + { + "value": "ms-xxl-4" + } + ], + [ + "{-token", + "{", + 192491, + 192491, + null + ], + [ + "ident-token", + "margin-left", + 192492, + 192502, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192503, + 192503, + null + ], + [ + "dimension-token", + "1.5rem", + 192504, + 192509, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192510, + 192510, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192511, + 192519, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192520, + 192520, + null + ], + [ + "delim-token", + ".", + 192521, + 192521, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-5", + 192522, + 192529, + { + "value": "ms-xxl-5" + } + ], + [ + "{-token", + "{", + 192530, + 192530, + null + ], + [ + "ident-token", + "margin-left", + 192531, + 192541, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192542, + 192542, + null + ], + [ + "dimension-token", + "3rem", + 192543, + 192546, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192547, + 192547, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192548, + 192556, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192557, + 192557, + null + ], + [ + "delim-token", + ".", + 192558, + 192558, + { + "value": "." + } + ], + [ + "ident-token", + "ms-xxl-auto", + 192559, + 192569, + { + "value": "ms-xxl-auto" + } + ], + [ + "{-token", + "{", + 192570, + 192570, + null + ], + [ + "ident-token", + "margin-left", + 192571, + 192581, + { + "value": "margin-left" + } + ], + [ + "colon-token", + ":", + 192582, + 192582, + null + ], + [ + "ident-token", + "auto", + 192583, + 192586, + { + "value": "auto" + } + ], + [ + "delim-token", + "!", + 192587, + 192587, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192588, + 192596, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192597, + 192597, + null + ], + [ + "delim-token", + ".", + 192598, + 192598, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-0", + 192599, + 192605, + { + "value": "p-xxl-0" + } + ], + [ + "{-token", + "{", + 192606, + 192606, + null + ], + [ + "ident-token", + "padding", + 192607, + 192613, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192614, + 192614, + null + ], + [ + "number-token", + "0", + 192615, + 192615, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 192616, + 192616, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192617, + 192625, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192626, + 192626, + null + ], + [ + "delim-token", + ".", + 192627, + 192627, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-1", + 192628, + 192634, + { + "value": "p-xxl-1" + } + ], + [ + "{-token", + "{", + 192635, + 192635, + null + ], + [ + "ident-token", + "padding", + 192636, + 192642, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192643, + 192643, + null + ], + [ + "dimension-token", + ".25rem", + 192644, + 192649, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192650, + 192650, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192651, + 192659, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192660, + 192660, + null + ], + [ + "delim-token", + ".", + 192661, + 192661, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-2", + 192662, + 192668, + { + "value": "p-xxl-2" + } + ], + [ + "{-token", + "{", + 192669, + 192669, + null + ], + [ + "ident-token", + "padding", + 192670, + 192676, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192677, + 192677, + null + ], + [ + "dimension-token", + ".5rem", + 192678, + 192682, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192683, + 192683, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192684, + 192692, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192693, + 192693, + null + ], + [ + "delim-token", + ".", + 192694, + 192694, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-3", + 192695, + 192701, + { + "value": "p-xxl-3" + } + ], + [ + "{-token", + "{", + 192702, + 192702, + null + ], + [ + "ident-token", + "padding", + 192703, + 192709, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192710, + 192710, + null + ], + [ + "dimension-token", + "1rem", + 192711, + 192714, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192715, + 192715, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192716, + 192724, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192725, + 192725, + null + ], + [ + "delim-token", + ".", + 192726, + 192726, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-4", + 192727, + 192733, + { + "value": "p-xxl-4" + } + ], + [ + "{-token", + "{", + 192734, + 192734, + null + ], + [ + "ident-token", + "padding", + 192735, + 192741, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192742, + 192742, + null + ], + [ + "dimension-token", + "1.5rem", + 192743, + 192748, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192749, + 192749, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192750, + 192758, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192759, + 192759, + null + ], + [ + "delim-token", + ".", + 192760, + 192760, + { + "value": "." + } + ], + [ + "ident-token", + "p-xxl-5", + 192761, + 192767, + { + "value": "p-xxl-5" + } + ], + [ + "{-token", + "{", + 192768, + 192768, + null + ], + [ + "ident-token", + "padding", + 192769, + 192775, + { + "value": "padding" + } + ], + [ + "colon-token", + ":", + 192776, + 192776, + null + ], + [ + "dimension-token", + "3rem", + 192777, + 192780, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192781, + 192781, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192782, + 192790, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192791, + 192791, + null + ], + [ + "delim-token", + ".", + 192792, + 192792, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-0", + 192793, + 192800, + { + "value": "px-xxl-0" + } + ], + [ + "{-token", + "{", + 192801, + 192801, + null + ], + [ + "ident-token", + "padding-right", + 192802, + 192814, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 192815, + 192815, + null + ], + [ + "number-token", + "0", + 192816, + 192816, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 192817, + 192817, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192818, + 192826, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 192827, + 192827, + null + ], + [ + "ident-token", + "padding-left", + 192828, + 192839, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 192840, + 192840, + null + ], + [ + "number-token", + "0", + 192841, + 192841, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 192842, + 192842, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192843, + 192851, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192852, + 192852, + null + ], + [ + "delim-token", + ".", + 192853, + 192853, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-1", + 192854, + 192861, + { + "value": "px-xxl-1" + } + ], + [ + "{-token", + "{", + 192862, + 192862, + null + ], + [ + "ident-token", + "padding-right", + 192863, + 192875, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 192876, + 192876, + null + ], + [ + "dimension-token", + ".25rem", + 192877, + 192882, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192883, + 192883, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192884, + 192892, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 192893, + 192893, + null + ], + [ + "ident-token", + "padding-left", + 192894, + 192905, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 192906, + 192906, + null + ], + [ + "dimension-token", + ".25rem", + 192907, + 192912, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192913, + 192913, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192914, + 192922, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192923, + 192923, + null + ], + [ + "delim-token", + ".", + 192924, + 192924, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-2", + 192925, + 192932, + { + "value": "px-xxl-2" + } + ], + [ + "{-token", + "{", + 192933, + 192933, + null + ], + [ + "ident-token", + "padding-right", + 192934, + 192946, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 192947, + 192947, + null + ], + [ + "dimension-token", + ".5rem", + 192948, + 192952, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192953, + 192953, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192954, + 192962, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 192963, + 192963, + null + ], + [ + "ident-token", + "padding-left", + 192964, + 192975, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 192976, + 192976, + null + ], + [ + "dimension-token", + ".5rem", + 192977, + 192981, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 192982, + 192982, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 192983, + 192991, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 192992, + 192992, + null + ], + [ + "delim-token", + ".", + 192993, + 192993, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-3", + 192994, + 193001, + { + "value": "px-xxl-3" + } + ], + [ + "{-token", + "{", + 193002, + 193002, + null + ], + [ + "ident-token", + "padding-right", + 193003, + 193015, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193016, + 193016, + null + ], + [ + "dimension-token", + "1rem", + 193017, + 193020, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193021, + 193021, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193022, + 193030, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193031, + 193031, + null + ], + [ + "ident-token", + "padding-left", + 193032, + 193043, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 193044, + 193044, + null + ], + [ + "dimension-token", + "1rem", + 193045, + 193048, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193049, + 193049, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193050, + 193058, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193059, + 193059, + null + ], + [ + "delim-token", + ".", + 193060, + 193060, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-4", + 193061, + 193068, + { + "value": "px-xxl-4" + } + ], + [ + "{-token", + "{", + 193069, + 193069, + null + ], + [ + "ident-token", + "padding-right", + 193070, + 193082, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193083, + 193083, + null + ], + [ + "dimension-token", + "1.5rem", + 193084, + 193089, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193090, + 193090, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193091, + 193099, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193100, + 193100, + null + ], + [ + "ident-token", + "padding-left", + 193101, + 193112, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 193113, + 193113, + null + ], + [ + "dimension-token", + "1.5rem", + 193114, + 193119, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193120, + 193120, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193121, + 193129, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193130, + 193130, + null + ], + [ + "delim-token", + ".", + 193131, + 193131, + { + "value": "." + } + ], + [ + "ident-token", + "px-xxl-5", + 193132, + 193139, + { + "value": "px-xxl-5" + } + ], + [ + "{-token", + "{", + 193140, + 193140, + null + ], + [ + "ident-token", + "padding-right", + 193141, + 193153, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193154, + 193154, + null + ], + [ + "dimension-token", + "3rem", + 193155, + 193158, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193159, + 193159, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193160, + 193168, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193169, + 193169, + null + ], + [ + "ident-token", + "padding-left", + 193170, + 193181, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 193182, + 193182, + null + ], + [ + "dimension-token", + "3rem", + 193183, + 193186, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193187, + 193187, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193188, + 193196, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193197, + 193197, + null + ], + [ + "delim-token", + ".", + 193198, + 193198, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-0", + 193199, + 193206, + { + "value": "py-xxl-0" + } + ], + [ + "{-token", + "{", + 193207, + 193207, + null + ], + [ + "ident-token", + "padding-top", + 193208, + 193218, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193219, + 193219, + null + ], + [ + "number-token", + "0", + 193220, + 193220, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 193221, + 193221, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193222, + 193230, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193231, + 193231, + null + ], + [ + "ident-token", + "padding-bottom", + 193232, + 193245, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193246, + 193246, + null + ], + [ + "number-token", + "0", + 193247, + 193247, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 193248, + 193248, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193249, + 193257, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193258, + 193258, + null + ], + [ + "delim-token", + ".", + 193259, + 193259, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-1", + 193260, + 193267, + { + "value": "py-xxl-1" + } + ], + [ + "{-token", + "{", + 193268, + 193268, + null + ], + [ + "ident-token", + "padding-top", + 193269, + 193279, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193280, + 193280, + null + ], + [ + "dimension-token", + ".25rem", + 193281, + 193286, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193287, + 193287, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193288, + 193296, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193297, + 193297, + null + ], + [ + "ident-token", + "padding-bottom", + 193298, + 193311, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193312, + 193312, + null + ], + [ + "dimension-token", + ".25rem", + 193313, + 193318, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193319, + 193319, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193320, + 193328, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193329, + 193329, + null + ], + [ + "delim-token", + ".", + 193330, + 193330, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-2", + 193331, + 193338, + { + "value": "py-xxl-2" + } + ], + [ + "{-token", + "{", + 193339, + 193339, + null + ], + [ + "ident-token", + "padding-top", + 193340, + 193350, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193351, + 193351, + null + ], + [ + "dimension-token", + ".5rem", + 193352, + 193356, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193357, + 193357, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193358, + 193366, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193367, + 193367, + null + ], + [ + "ident-token", + "padding-bottom", + 193368, + 193381, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193382, + 193382, + null + ], + [ + "dimension-token", + ".5rem", + 193383, + 193387, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193388, + 193388, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193389, + 193397, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193398, + 193398, + null + ], + [ + "delim-token", + ".", + 193399, + 193399, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-3", + 193400, + 193407, + { + "value": "py-xxl-3" + } + ], + [ + "{-token", + "{", + 193408, + 193408, + null + ], + [ + "ident-token", + "padding-top", + 193409, + 193419, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193420, + 193420, + null + ], + [ + "dimension-token", + "1rem", + 193421, + 193424, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193425, + 193425, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193426, + 193434, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193435, + 193435, + null + ], + [ + "ident-token", + "padding-bottom", + 193436, + 193449, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193450, + 193450, + null + ], + [ + "dimension-token", + "1rem", + 193451, + 193454, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193455, + 193455, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193456, + 193464, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193465, + 193465, + null + ], + [ + "delim-token", + ".", + 193466, + 193466, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-4", + 193467, + 193474, + { + "value": "py-xxl-4" + } + ], + [ + "{-token", + "{", + 193475, + 193475, + null + ], + [ + "ident-token", + "padding-top", + 193476, + 193486, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193487, + 193487, + null + ], + [ + "dimension-token", + "1.5rem", + 193488, + 193493, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193494, + 193494, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193495, + 193503, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193504, + 193504, + null + ], + [ + "ident-token", + "padding-bottom", + 193505, + 193518, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193519, + 193519, + null + ], + [ + "dimension-token", + "1.5rem", + 193520, + 193525, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193526, + 193526, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193527, + 193535, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193536, + 193536, + null + ], + [ + "delim-token", + ".", + 193537, + 193537, + { + "value": "." + } + ], + [ + "ident-token", + "py-xxl-5", + 193538, + 193545, + { + "value": "py-xxl-5" + } + ], + [ + "{-token", + "{", + 193546, + 193546, + null + ], + [ + "ident-token", + "padding-top", + 193547, + 193557, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193558, + 193558, + null + ], + [ + "dimension-token", + "3rem", + 193559, + 193562, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193563, + 193563, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193564, + 193572, + { + "value": "important" + } + ], + [ + "semicolon-token", + ";", + 193573, + 193573, + null + ], + [ + "ident-token", + "padding-bottom", + 193574, + 193587, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 193588, + 193588, + null + ], + [ + "dimension-token", + "3rem", + 193589, + 193592, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193593, + 193593, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193594, + 193602, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193603, + 193603, + null + ], + [ + "delim-token", + ".", + 193604, + 193604, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-0", + 193605, + 193612, + { + "value": "pt-xxl-0" + } + ], + [ + "{-token", + "{", + 193613, + 193613, + null + ], + [ + "ident-token", + "padding-top", + 193614, + 193624, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193625, + 193625, + null + ], + [ + "number-token", + "0", + 193626, + 193626, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 193627, + 193627, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193628, + 193636, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193637, + 193637, + null + ], + [ + "delim-token", + ".", + 193638, + 193638, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-1", + 193639, + 193646, + { + "value": "pt-xxl-1" + } + ], + [ + "{-token", + "{", + 193647, + 193647, + null + ], + [ + "ident-token", + "padding-top", + 193648, + 193658, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193659, + 193659, + null + ], + [ + "dimension-token", + ".25rem", + 193660, + 193665, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193666, + 193666, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193667, + 193675, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193676, + 193676, + null + ], + [ + "delim-token", + ".", + 193677, + 193677, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-2", + 193678, + 193685, + { + "value": "pt-xxl-2" + } + ], + [ + "{-token", + "{", + 193686, + 193686, + null + ], + [ + "ident-token", + "padding-top", + 193687, + 193697, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193698, + 193698, + null + ], + [ + "dimension-token", + ".5rem", + 193699, + 193703, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193704, + 193704, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193705, + 193713, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193714, + 193714, + null + ], + [ + "delim-token", + ".", + 193715, + 193715, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-3", + 193716, + 193723, + { + "value": "pt-xxl-3" + } + ], + [ + "{-token", + "{", + 193724, + 193724, + null + ], + [ + "ident-token", + "padding-top", + 193725, + 193735, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193736, + 193736, + null + ], + [ + "dimension-token", + "1rem", + 193737, + 193740, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193741, + 193741, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193742, + 193750, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193751, + 193751, + null + ], + [ + "delim-token", + ".", + 193752, + 193752, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-4", + 193753, + 193760, + { + "value": "pt-xxl-4" + } + ], + [ + "{-token", + "{", + 193761, + 193761, + null + ], + [ + "ident-token", + "padding-top", + 193762, + 193772, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193773, + 193773, + null + ], + [ + "dimension-token", + "1.5rem", + 193774, + 193779, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193780, + 193780, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193781, + 193789, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193790, + 193790, + null + ], + [ + "delim-token", + ".", + 193791, + 193791, + { + "value": "." + } + ], + [ + "ident-token", + "pt-xxl-5", + 193792, + 193799, + { + "value": "pt-xxl-5" + } + ], + [ + "{-token", + "{", + 193800, + 193800, + null + ], + [ + "ident-token", + "padding-top", + 193801, + 193811, + { + "value": "padding-top" + } + ], + [ + "colon-token", + ":", + 193812, + 193812, + null + ], + [ + "dimension-token", + "3rem", + 193813, + 193816, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193817, + 193817, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193818, + 193826, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193827, + 193827, + null + ], + [ + "delim-token", + ".", + 193828, + 193828, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-0", + 193829, + 193836, + { + "value": "pe-xxl-0" + } + ], + [ + "{-token", + "{", + 193837, + 193837, + null + ], + [ + "ident-token", + "padding-right", + 193838, + 193850, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193851, + 193851, + null + ], + [ + "number-token", + "0", + 193852, + 193852, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 193853, + 193853, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193854, + 193862, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193863, + 193863, + null + ], + [ + "delim-token", + ".", + 193864, + 193864, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-1", + 193865, + 193872, + { + "value": "pe-xxl-1" + } + ], + [ + "{-token", + "{", + 193873, + 193873, + null + ], + [ + "ident-token", + "padding-right", + 193874, + 193886, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193887, + 193887, + null + ], + [ + "dimension-token", + ".25rem", + 193888, + 193893, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193894, + 193894, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193895, + 193903, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193904, + 193904, + null + ], + [ + "delim-token", + ".", + 193905, + 193905, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-2", + 193906, + 193913, + { + "value": "pe-xxl-2" + } + ], + [ + "{-token", + "{", + 193914, + 193914, + null + ], + [ + "ident-token", + "padding-right", + 193915, + 193927, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193928, + 193928, + null + ], + [ + "dimension-token", + ".5rem", + 193929, + 193933, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193934, + 193934, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193935, + 193943, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193944, + 193944, + null + ], + [ + "delim-token", + ".", + 193945, + 193945, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-3", + 193946, + 193953, + { + "value": "pe-xxl-3" + } + ], + [ + "{-token", + "{", + 193954, + 193954, + null + ], + [ + "ident-token", + "padding-right", + 193955, + 193967, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 193968, + 193968, + null + ], + [ + "dimension-token", + "1rem", + 193969, + 193972, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 193973, + 193973, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 193974, + 193982, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 193983, + 193983, + null + ], + [ + "delim-token", + ".", + 193984, + 193984, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-4", + 193985, + 193992, + { + "value": "pe-xxl-4" + } + ], + [ + "{-token", + "{", + 193993, + 193993, + null + ], + [ + "ident-token", + "padding-right", + 193994, + 194006, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 194007, + 194007, + null + ], + [ + "dimension-token", + "1.5rem", + 194008, + 194013, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194014, + 194014, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194015, + 194023, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194024, + 194024, + null + ], + [ + "delim-token", + ".", + 194025, + 194025, + { + "value": "." + } + ], + [ + "ident-token", + "pe-xxl-5", + 194026, + 194033, + { + "value": "pe-xxl-5" + } + ], + [ + "{-token", + "{", + 194034, + 194034, + null + ], + [ + "ident-token", + "padding-right", + 194035, + 194047, + { + "value": "padding-right" + } + ], + [ + "colon-token", + ":", + 194048, + 194048, + null + ], + [ + "dimension-token", + "3rem", + 194049, + 194052, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194053, + 194053, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194054, + 194062, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194063, + 194063, + null + ], + [ + "delim-token", + ".", + 194064, + 194064, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-0", + 194065, + 194072, + { + "value": "pb-xxl-0" + } + ], + [ + "{-token", + "{", + 194073, + 194073, + null + ], + [ + "ident-token", + "padding-bottom", + 194074, + 194087, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194088, + 194088, + null + ], + [ + "number-token", + "0", + 194089, + 194089, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 194090, + 194090, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194091, + 194099, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194100, + 194100, + null + ], + [ + "delim-token", + ".", + 194101, + 194101, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-1", + 194102, + 194109, + { + "value": "pb-xxl-1" + } + ], + [ + "{-token", + "{", + 194110, + 194110, + null + ], + [ + "ident-token", + "padding-bottom", + 194111, + 194124, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194125, + 194125, + null + ], + [ + "dimension-token", + ".25rem", + 194126, + 194131, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194132, + 194132, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194133, + 194141, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194142, + 194142, + null + ], + [ + "delim-token", + ".", + 194143, + 194143, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-2", + 194144, + 194151, + { + "value": "pb-xxl-2" + } + ], + [ + "{-token", + "{", + 194152, + 194152, + null + ], + [ + "ident-token", + "padding-bottom", + 194153, + 194166, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194167, + 194167, + null + ], + [ + "dimension-token", + ".5rem", + 194168, + 194172, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194173, + 194173, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194174, + 194182, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194183, + 194183, + null + ], + [ + "delim-token", + ".", + 194184, + 194184, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-3", + 194185, + 194192, + { + "value": "pb-xxl-3" + } + ], + [ + "{-token", + "{", + 194193, + 194193, + null + ], + [ + "ident-token", + "padding-bottom", + 194194, + 194207, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194208, + 194208, + null + ], + [ + "dimension-token", + "1rem", + 194209, + 194212, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194213, + 194213, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194214, + 194222, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194223, + 194223, + null + ], + [ + "delim-token", + ".", + 194224, + 194224, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-4", + 194225, + 194232, + { + "value": "pb-xxl-4" + } + ], + [ + "{-token", + "{", + 194233, + 194233, + null + ], + [ + "ident-token", + "padding-bottom", + 194234, + 194247, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194248, + 194248, + null + ], + [ + "dimension-token", + "1.5rem", + 194249, + 194254, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194255, + 194255, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194256, + 194264, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194265, + 194265, + null + ], + [ + "delim-token", + ".", + 194266, + 194266, + { + "value": "." + } + ], + [ + "ident-token", + "pb-xxl-5", + 194267, + 194274, + { + "value": "pb-xxl-5" + } + ], + [ + "{-token", + "{", + 194275, + 194275, + null + ], + [ + "ident-token", + "padding-bottom", + 194276, + 194289, + { + "value": "padding-bottom" + } + ], + [ + "colon-token", + ":", + 194290, + 194290, + null + ], + [ + "dimension-token", + "3rem", + 194291, + 194294, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194295, + 194295, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194296, + 194304, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194305, + 194305, + null + ], + [ + "delim-token", + ".", + 194306, + 194306, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-0", + 194307, + 194314, + { + "value": "ps-xxl-0" + } + ], + [ + "{-token", + "{", + 194315, + 194315, + null + ], + [ + "ident-token", + "padding-left", + 194316, + 194327, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194328, + 194328, + null + ], + [ + "number-token", + "0", + 194329, + 194329, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 194330, + 194330, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194331, + 194339, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194340, + 194340, + null + ], + [ + "delim-token", + ".", + 194341, + 194341, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-1", + 194342, + 194349, + { + "value": "ps-xxl-1" + } + ], + [ + "{-token", + "{", + 194350, + 194350, + null + ], + [ + "ident-token", + "padding-left", + 194351, + 194362, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194363, + 194363, + null + ], + [ + "dimension-token", + ".25rem", + 194364, + 194369, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194370, + 194370, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194371, + 194379, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194380, + 194380, + null + ], + [ + "delim-token", + ".", + 194381, + 194381, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-2", + 194382, + 194389, + { + "value": "ps-xxl-2" + } + ], + [ + "{-token", + "{", + 194390, + 194390, + null + ], + [ + "ident-token", + "padding-left", + 194391, + 194402, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194403, + 194403, + null + ], + [ + "dimension-token", + ".5rem", + 194404, + 194408, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194409, + 194409, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194410, + 194418, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194419, + 194419, + null + ], + [ + "delim-token", + ".", + 194420, + 194420, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-3", + 194421, + 194428, + { + "value": "ps-xxl-3" + } + ], + [ + "{-token", + "{", + 194429, + 194429, + null + ], + [ + "ident-token", + "padding-left", + 194430, + 194441, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194442, + 194442, + null + ], + [ + "dimension-token", + "1rem", + 194443, + 194446, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194447, + 194447, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194448, + 194456, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194457, + 194457, + null + ], + [ + "delim-token", + ".", + 194458, + 194458, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-4", + 194459, + 194466, + { + "value": "ps-xxl-4" + } + ], + [ + "{-token", + "{", + 194467, + 194467, + null + ], + [ + "ident-token", + "padding-left", + 194468, + 194479, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194480, + 194480, + null + ], + [ + "dimension-token", + "1.5rem", + 194481, + 194486, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194487, + 194487, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194488, + 194496, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194497, + 194497, + null + ], + [ + "delim-token", + ".", + 194498, + 194498, + { + "value": "." + } + ], + [ + "ident-token", + "ps-xxl-5", + 194499, + 194506, + { + "value": "ps-xxl-5" + } + ], + [ + "{-token", + "{", + 194507, + 194507, + null + ], + [ + "ident-token", + "padding-left", + 194508, + 194519, + { + "value": "padding-left" + } + ], + [ + "colon-token", + ":", + 194520, + 194520, + null + ], + [ + "dimension-token", + "3rem", + 194521, + 194524, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194525, + 194525, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194526, + 194534, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194535, + 194535, + null + ], + [ + "delim-token", + ".", + 194536, + 194536, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-0", + 194537, + 194545, + { + "value": "gap-xxl-0" + } + ], + [ + "{-token", + "{", + 194546, + 194546, + null + ], + [ + "ident-token", + "gap", + 194547, + 194549, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194550, + 194550, + null + ], + [ + "number-token", + "0", + 194551, + 194551, + { + "value": 0, + "type": "integer" + } + ], + [ + "delim-token", + "!", + 194552, + 194552, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194553, + 194561, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194562, + 194562, + null + ], + [ + "delim-token", + ".", + 194563, + 194563, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-1", + 194564, + 194572, + { + "value": "gap-xxl-1" + } + ], + [ + "{-token", + "{", + 194573, + 194573, + null + ], + [ + "ident-token", + "gap", + 194574, + 194576, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194577, + 194577, + null + ], + [ + "dimension-token", + ".25rem", + 194578, + 194583, + { + "value": 0.25, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194584, + 194584, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194585, + 194593, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194594, + 194594, + null + ], + [ + "delim-token", + ".", + 194595, + 194595, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-2", + 194596, + 194604, + { + "value": "gap-xxl-2" + } + ], + [ + "{-token", + "{", + 194605, + 194605, + null + ], + [ + "ident-token", + "gap", + 194606, + 194608, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194609, + 194609, + null + ], + [ + "dimension-token", + ".5rem", + 194610, + 194614, + { + "value": 0.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194615, + 194615, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194616, + 194624, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194625, + 194625, + null + ], + [ + "delim-token", + ".", + 194626, + 194626, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-3", + 194627, + 194635, + { + "value": "gap-xxl-3" + } + ], + [ + "{-token", + "{", + 194636, + 194636, + null + ], + [ + "ident-token", + "gap", + 194637, + 194639, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194640, + 194640, + null + ], + [ + "dimension-token", + "1rem", + 194641, + 194644, + { + "value": 1, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194645, + 194645, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194646, + 194654, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194655, + 194655, + null + ], + [ + "delim-token", + ".", + 194656, + 194656, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-4", + 194657, + 194665, + { + "value": "gap-xxl-4" + } + ], + [ + "{-token", + "{", + 194666, + 194666, + null + ], + [ + "ident-token", + "gap", + 194667, + 194669, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194670, + 194670, + null + ], + [ + "dimension-token", + "1.5rem", + 194671, + 194676, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194677, + 194677, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194678, + 194686, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194687, + 194687, + null + ], + [ + "delim-token", + ".", + 194688, + 194688, + { + "value": "." + } + ], + [ + "ident-token", + "gap-xxl-5", + 194689, + 194697, + { + "value": "gap-xxl-5" + } + ], + [ + "{-token", + "{", + 194698, + 194698, + null + ], + [ + "ident-token", + "gap", + 194699, + 194701, + { + "value": "gap" + } + ], + [ + "colon-token", + ":", + 194702, + 194702, + null + ], + [ + "dimension-token", + "3rem", + 194703, + 194706, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194707, + 194707, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194708, + 194716, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194717, + 194717, + null + ], + [ + "delim-token", + ".", + 194718, + 194718, + { + "value": "." + } + ], + [ + "ident-token", + "text-xxl-start", + 194719, + 194732, + { + "value": "text-xxl-start" + } + ], + [ + "{-token", + "{", + 194733, + 194733, + null + ], + [ + "ident-token", + "text-align", + 194734, + 194743, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 194744, + 194744, + null + ], + [ + "ident-token", + "left", + 194745, + 194748, + { + "value": "left" + } + ], + [ + "delim-token", + "!", + 194749, + 194749, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194750, + 194758, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194759, + 194759, + null + ], + [ + "delim-token", + ".", + 194760, + 194760, + { + "value": "." + } + ], + [ + "ident-token", + "text-xxl-end", + 194761, + 194772, + { + "value": "text-xxl-end" + } + ], + [ + "{-token", + "{", + 194773, + 194773, + null + ], + [ + "ident-token", + "text-align", + 194774, + 194783, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 194784, + 194784, + null + ], + [ + "ident-token", + "right", + 194785, + 194789, + { + "value": "right" + } + ], + [ + "delim-token", + "!", + 194790, + 194790, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194791, + 194799, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194800, + 194800, + null + ], + [ + "delim-token", + ".", + 194801, + 194801, + { + "value": "." + } + ], + [ + "ident-token", + "text-xxl-center", + 194802, + 194816, + { + "value": "text-xxl-center" + } + ], + [ + "{-token", + "{", + 194817, + 194817, + null + ], + [ + "ident-token", + "text-align", + 194818, + 194827, + { + "value": "text-align" + } + ], + [ + "colon-token", + ":", + 194828, + 194828, + null + ], + [ + "ident-token", + "center", + 194829, + 194834, + { + "value": "center" + } + ], + [ + "delim-token", + "!", + 194835, + 194835, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194836, + 194844, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194845, + 194845, + null + ], + [ + "}-token", + "}", + 194846, + 194846, + null + ], + [ + "at-keyword-token", + "@media", + 194847, + 194852, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 194853, + 194853, + null + ], + [ + "(-token", + "(", + 194854, + 194854, + null + ], + [ + "ident-token", + "min-width", + 194855, + 194863, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 194864, + 194864, + null + ], + [ + "dimension-token", + "1200px", + 194865, + 194870, + { + "value": 1200, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 194871, + 194871, + null + ], + [ + "{-token", + "{", + 194872, + 194872, + null + ], + [ + "delim-token", + ".", + 194873, + 194873, + { + "value": "." + } + ], + [ + "ident-token", + "fs-1", + 194874, + 194877, + { + "value": "fs-1" + } + ], + [ + "{-token", + "{", + 194878, + 194878, + null + ], + [ + "ident-token", + "font-size", + 194879, + 194887, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 194888, + 194888, + null + ], + [ + "dimension-token", + "2.5rem", + 194889, + 194894, + { + "value": 2.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194895, + 194895, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194896, + 194904, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194905, + 194905, + null + ], + [ + "delim-token", + ".", + 194906, + 194906, + { + "value": "." + } + ], + [ + "ident-token", + "fs-2", + 194907, + 194910, + { + "value": "fs-2" + } + ], + [ + "{-token", + "{", + 194911, + 194911, + null + ], + [ + "ident-token", + "font-size", + 194912, + 194920, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 194921, + 194921, + null + ], + [ + "dimension-token", + "2rem", + 194922, + 194925, + { + "value": 2, + "type": "integer", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194926, + 194926, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194927, + 194935, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194936, + 194936, + null + ], + [ + "delim-token", + ".", + 194937, + 194937, + { + "value": "." + } + ], + [ + "ident-token", + "fs-3", + 194938, + 194941, + { + "value": "fs-3" + } + ], + [ + "{-token", + "{", + 194942, + 194942, + null + ], + [ + "ident-token", + "font-size", + 194943, + 194951, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 194952, + 194952, + null + ], + [ + "dimension-token", + "1.75rem", + 194953, + 194959, + { + "value": 1.75, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194960, + 194960, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194961, + 194969, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 194970, + 194970, + null + ], + [ + "delim-token", + ".", + 194971, + 194971, + { + "value": "." + } + ], + [ + "ident-token", + "fs-4", + 194972, + 194975, + { + "value": "fs-4" + } + ], + [ + "{-token", + "{", + 194976, + 194976, + null + ], + [ + "ident-token", + "font-size", + 194977, + 194985, + { + "value": "font-size" + } + ], + [ + "colon-token", + ":", + 194986, + 194986, + null + ], + [ + "dimension-token", + "1.5rem", + 194987, + 194992, + { + "value": 1.5, + "type": "number", + "unit": "rem" + } + ], + [ + "delim-token", + "!", + 194993, + 194993, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 194994, + 195002, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195003, + 195003, + null + ], + [ + "}-token", + "}", + 195004, + 195004, + null + ], + [ + "at-keyword-token", + "@media", + 195005, + 195010, + { + "value": "media" + } + ], + [ + "whitespace-token", + " ", + 195011, + 195011, + null + ], + [ + "ident-token", + "print", + 195012, + 195016, + { + "value": "print" + } + ], + [ + "{-token", + "{", + 195017, + 195017, + null + ], + [ + "delim-token", + ".", + 195018, + 195018, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-inline", + 195019, + 195032, + { + "value": "d-print-inline" + } + ], + [ + "{-token", + "{", + 195033, + 195033, + null + ], + [ + "ident-token", + "display", + 195034, + 195040, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195041, + 195041, + null + ], + [ + "ident-token", + "inline", + 195042, + 195047, + { + "value": "inline" + } + ], + [ + "delim-token", + "!", + 195048, + 195048, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195049, + 195057, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195058, + 195058, + null + ], + [ + "delim-token", + ".", + 195059, + 195059, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-inline-block", + 195060, + 195079, + { + "value": "d-print-inline-block" + } + ], + [ + "{-token", + "{", + 195080, + 195080, + null + ], + [ + "ident-token", + "display", + 195081, + 195087, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195088, + 195088, + null + ], + [ + "ident-token", + "inline-block", + 195089, + 195100, + { + "value": "inline-block" + } + ], + [ + "delim-token", + "!", + 195101, + 195101, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195102, + 195110, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195111, + 195111, + null + ], + [ + "delim-token", + ".", + 195112, + 195112, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-block", + 195113, + 195125, + { + "value": "d-print-block" + } + ], + [ + "{-token", + "{", + 195126, + 195126, + null + ], + [ + "ident-token", + "display", + 195127, + 195133, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195134, + 195134, + null + ], + [ + "ident-token", + "block", + 195135, + 195139, + { + "value": "block" + } + ], + [ + "delim-token", + "!", + 195140, + 195140, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195141, + 195149, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195150, + 195150, + null + ], + [ + "delim-token", + ".", + 195151, + 195151, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-grid", + 195152, + 195163, + { + "value": "d-print-grid" + } + ], + [ + "{-token", + "{", + 195164, + 195164, + null + ], + [ + "ident-token", + "display", + 195165, + 195171, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195172, + 195172, + null + ], + [ + "ident-token", + "grid", + 195173, + 195176, + { + "value": "grid" + } + ], + [ + "delim-token", + "!", + 195177, + 195177, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195178, + 195186, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195187, + 195187, + null + ], + [ + "delim-token", + ".", + 195188, + 195188, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-table", + 195189, + 195201, + { + "value": "d-print-table" + } + ], + [ + "{-token", + "{", + 195202, + 195202, + null + ], + [ + "ident-token", + "display", + 195203, + 195209, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195210, + 195210, + null + ], + [ + "ident-token", + "table", + 195211, + 195215, + { + "value": "table" + } + ], + [ + "delim-token", + "!", + 195216, + 195216, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195217, + 195225, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195226, + 195226, + null + ], + [ + "delim-token", + ".", + 195227, + 195227, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-table-row", + 195228, + 195244, + { + "value": "d-print-table-row" + } + ], + [ + "{-token", + "{", + 195245, + 195245, + null + ], + [ + "ident-token", + "display", + 195246, + 195252, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195253, + 195253, + null + ], + [ + "ident-token", + "table-row", + 195254, + 195262, + { + "value": "table-row" + } + ], + [ + "delim-token", + "!", + 195263, + 195263, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195264, + 195272, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195273, + 195273, + null + ], + [ + "delim-token", + ".", + 195274, + 195274, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-table-cell", + 195275, + 195292, + { + "value": "d-print-table-cell" + } + ], + [ + "{-token", + "{", + 195293, + 195293, + null + ], + [ + "ident-token", + "display", + 195294, + 195300, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195301, + 195301, + null + ], + [ + "ident-token", + "table-cell", + 195302, + 195311, + { + "value": "table-cell" + } + ], + [ + "delim-token", + "!", + 195312, + 195312, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195313, + 195321, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195322, + 195322, + null + ], + [ + "delim-token", + ".", + 195323, + 195323, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-flex", + 195324, + 195335, + { + "value": "d-print-flex" + } + ], + [ + "{-token", + "{", + 195336, + 195336, + null + ], + [ + "ident-token", + "display", + 195337, + 195343, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195344, + 195344, + null + ], + [ + "ident-token", + "flex", + 195345, + 195348, + { + "value": "flex" + } + ], + [ + "delim-token", + "!", + 195349, + 195349, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195350, + 195358, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195359, + 195359, + null + ], + [ + "delim-token", + ".", + 195360, + 195360, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-inline-flex", + 195361, + 195379, + { + "value": "d-print-inline-flex" + } + ], + [ + "{-token", + "{", + 195380, + 195380, + null + ], + [ + "ident-token", + "display", + 195381, + 195387, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195388, + 195388, + null + ], + [ + "ident-token", + "inline-flex", + 195389, + 195399, + { + "value": "inline-flex" + } + ], + [ + "delim-token", + "!", + 195400, + 195400, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195401, + 195409, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195410, + 195410, + null + ], + [ + "delim-token", + ".", + 195411, + 195411, + { + "value": "." + } + ], + [ + "ident-token", + "d-print-none", + 195412, + 195423, + { + "value": "d-print-none" + } + ], + [ + "{-token", + "{", + 195424, + 195424, + null + ], + [ + "ident-token", + "display", + 195425, + 195431, + { + "value": "display" + } + ], + [ + "colon-token", + ":", + 195432, + 195432, + null + ], + [ + "ident-token", + "none", + 195433, + 195436, + { + "value": "none" + } + ], + [ + "delim-token", + "!", + 195437, + 195437, + { + "value": "!" + } + ], + [ + "ident-token", + "important", + 195438, + 195446, + { + "value": "important" + } + ], + [ + "}-token", + "}", + 195447, + 195447, + null + ], + [ + "}-token", + "}", + 195448, + 195448, + null + ], + [ + "whitespace-token", + "\n", + 195449, + 195449, + null + ], + [ + "whitespace-token", + "\n", + 195495, + 195495, + null + ], + [ + "EOF-token", + "", + -1, + -1, + null + ] +] diff --git a/packages/css-tokenizer/test/token/bootstrap.mjs b/packages/css-tokenizer/test/token/bootstrap.mjs new file mode 100644 index 0000000000..e27f8b5b98 --- /dev/null +++ b/packages/css-tokenizer/test/token/bootstrap.mjs @@ -0,0 +1,48 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import { bootstrapTokens } from './bootstrap-tokens.mjs'; +import assert from 'assert'; +import fs from 'fs'; + +function collectTokens(t) { + const bag = []; + // eslint-disable-next-line no-constant-condition + while (true) { + bag.push(t.nextToken()); + + if (!bag[bag.length - 1]) { + break; + } + + if (bag[bag.length - 1][0] === 'EOF-token') { + break; + } + } + + return bag; +} + +{ + const t = tokenizer({ + css: bootstrapSource(), + }); + + const tokens = collectTokens(t); + + fs.writeFileSync('./test/token/bootstrap-tokens.mjs', `/* eslint-disable */\nexport const bootstrapTokens = ${JSON.stringify(tokens, null, '\t')}\n`); + + assert.deepEqual( + tokens, + bootstrapTokens, + ); +} + +function bootstrapSource() { + return `@charset "UTF-8";/*! + * Bootstrap v5.2.1 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid var(--bs-border-color);border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:2px solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}.form-control-color::-webkit-color-swatch{border-radius:.375rem}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.25rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.375rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.375rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:#212529;--bs-btn-bg:transparent;--bs-btn-border-width:1px;--bs-btn-border-color:transparent;--bs-btn-border-radius:0.375rem;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:first-child:hover,:not(.btn-check)+.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:0.5rem}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:0.25rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:#212529;--bs-dropdown-bg:#fff;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:0.375rem;--bs-dropdown-border-width:1px;--bs-dropdown-inner-border-radius:calc(0.375rem - 1px);--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:#212529;--bs-dropdown-link-hover-color:#1e2125;--bs-dropdown-link-hover-bg:#e9ecef;--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.375rem}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:#6c757d;display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:1px;--bs-nav-tabs-border-color:#dee2e6;--bs-nav-tabs-border-radius:0.375rem;--bs-nav-tabs-link-hover-border-color:#e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color:#495057;--bs-nav-tabs-link-active-bg:#fff;--bs-nav-tabs-link-active-border-color:#dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));background:0 0;border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:0.375rem;--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{background:0 0;border:0;border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(0, 0, 0, 0.55);--bs-navbar-hover-color:rgba(0, 0, 0, 0.7);--bs-navbar-disabled-color:rgba(0, 0, 0, 0.3);--bs-navbar-active-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-hover-color:rgba(0, 0, 0, 0.9);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(0, 0, 0, 0.1);--bs-navbar-toggler-border-radius:0.375rem;--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .show>.nav-link{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-border-width:1px;--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:0.375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(0.375rem - 1px);--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(0, 0, 0, 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:#fff;--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:#fff;--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:1px;--bs-accordion-border-radius:0.375rem;--bs-accordion-inner-border-radius:calc(0.375rem - 1px);--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:#0c63e4;--bs-accordion-active-bg:#e7f1ff}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:#6c757d;--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:#6c757d;display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:#fff;--bs-pagination-border-width:1px;--bs-pagination-border-color:#dee2e6;--bs-pagination-border-radius:0.375rem;--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:#e9ecef;--bs-pagination-hover-border-color:#dee2e6;--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:#e9ecef;--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:#6c757d;--bs-pagination-disabled-bg:#fff;--bs-pagination-disabled-border-color:#dee2e6;display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:0.5rem}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:0.25rem}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0.375rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:1px solid var(--bs-alert-border-color);--bs-alert-border-radius:0.375rem;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:#084298;--bs-alert-bg:#cfe2ff;--bs-alert-border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{--bs-alert-color:#41464b;--bs-alert-bg:#e2e3e5;--bs-alert-border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{--bs-alert-color:#0f5132;--bs-alert-bg:#d1e7dd;--bs-alert-border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{--bs-alert-color:#055160;--bs-alert-bg:#cff4fc;--bs-alert-border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{--bs-alert-color:#664d03;--bs-alert-bg:#fff3cd;--bs-alert-border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{--bs-alert-color:#842029;--bs-alert-bg:#f8d7da;--bs-alert-border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{--bs-alert-color:#636464;--bs-alert-bg:#fefefe;--bs-alert-border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{--bs-alert-color:#141619;--bs-alert-bg:#d3d3d4;--bs-alert-border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:#e9ecef;--bs-progress-border-radius:0.375rem;--bs-progress-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{--bs-list-group-color:#212529;--bs-list-group-bg:#fff;--bs-list-group-border-color:rgba(0, 0, 0, 0.125);--bs-list-group-border-width:1px;--bs-list-group-border-radius:0.375rem;--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:#495057;--bs-list-group-action-hover-color:#495057;--bs-list-group-action-hover-bg:#f8f9fa;--bs-list-group-action-active-color:#212529;--bs-list-group-action-active-bg:#e9ecef;--bs-list-group-disabled-color:#6c757d;--bs-list-group-disabled-bg:#fff;--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(255, 255, 255, 0.85);--bs-toast-border-width:1px;--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:0.375rem;--bs-toast-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color:#6c757d;--bs-toast-header-bg:rgba(255, 255, 255, 0.85);--bs-toast-header-border-color:rgba(0, 0, 0, 0.05);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:#fff;--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:1px;--bs-modal-border-radius:0.5rem;--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(0.5rem - 1px);--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:1px;--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:#fff;--bs-tooltip-bg:#000;--bs-tooltip-border-radius:0.375rem;--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;padding:var(--bs-tooltip-arrow-height);margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:#fff;--bs-popover-border-width:1px;--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:0.5rem;--bs-popover-inner-border-radius:calc(0.5rem - 1px);--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:#f0f0f0;--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:#212529;--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;-webkit-animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color: ;--bs-offcanvas-bg:#fff;--bs-offcanvas-border-width:1px;--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:#0d6efd!important}.link-primary:focus,.link-primary:hover{color:#0a58ca!important}.link-secondary{color:#6c757d!important}.link-secondary:focus,.link-secondary:hover{color:#565e64!important}.link-success{color:#198754!important}.link-success:focus,.link-success:hover{color:#146c43!important}.link-info{color:#0dcaf0!important}.link-info:focus,.link-info:hover{color:#3dd5f3!important}.link-warning{color:#ffc107!important}.link-warning:focus,.link-warning:hover{color:#ffcd39!important}.link-danger{color:#dc3545!important}.link-danger:focus,.link-danger:hover{color:#b02a37!important}.link-light{color:#f8f9fa!important}.link-light:focus,.link-light:hover{color:#f9fafb!important}.link-dark{color:#212529!important}.link-dark:focus,.link-dark:hover{color:#1a1e21!important}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-1{--bs-border-width:1px}.border-2{--bs-border-width:2px}.border-3{--bs-border-width:3px}.border-4{--bs-border-width:4px}.border-5{--bs-border-width:5px}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-semibold{font-weight:600!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-2xl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ +`; +} From 9daa9fd930ad975f392453fe8bf00a5e672d85a8 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Tue, 20 Sep 2022 19:52:38 +0200 Subject: [PATCH 26/59] fixes --- .../src/consume/ident-like-token.ts | 2 +- packages/css-tokenizer/src/index.ts | 4 - packages/css-tokenizer/src/tokenize.ts | 293 ------------------ packages/css-tokenizer/test/test.mjs | 74 +---- packages/css-tokenizer/test/token/basic.mjs | 19 +- packages/css-tokenizer/test/token/url.mjs | 87 ++++++ .../test/util/collect-tokens.mjs | 17 + 7 files changed, 107 insertions(+), 389 deletions(-) delete mode 100644 packages/css-tokenizer/src/tokenize.ts create mode 100644 packages/css-tokenizer/test/token/url.mjs create mode 100644 packages/css-tokenizer/test/util/collect-tokens.mjs diff --git a/packages/css-tokenizer/src/consume/ident-like-token.ts b/packages/css-tokenizer/src/consume/ident-like-token.ts index a901c722d9..f828602c29 100644 --- a/packages/css-tokenizer/src/consume/ident-like-token.ts +++ b/packages/css-tokenizer/src/consume/ident-like-token.ts @@ -26,7 +26,7 @@ export function consumeIdentLikeToken(ctx: Context, reader: CodePointReader): To continue; } - const firstNonWhitespace = isWhitespace(peeked2[0]) ? peeked2[0] : peeked2[1]; + const firstNonWhitespace = isWhitespace(peeked2[0]) ? peeked2[1] : peeked2[0]; if (firstNonWhitespace === QUOTATION_MARK || firstNonWhitespace === APOSTROPHE) { for (let i = 0; i < read; i++) { reader.unreadCodePoint(); diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index 991e7476fb..d3a5dfb33b 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,7 +1,3 @@ export { Reader } from './reader'; -export { consumeComment } from './consume/comment'; -export { consumeNumericToken } from './consume/numeric-token'; -export { consumeNumber } from './consume/number'; -export * as postcssTokenizer from './tokenize'; export { TokenType } from './interfaces/token'; export { tokenizer } from './tokenizer'; diff --git a/packages/css-tokenizer/src/tokenize.ts b/packages/css-tokenizer/src/tokenize.ts deleted file mode 100644 index 89d96c060a..0000000000 --- a/packages/css-tokenizer/src/tokenize.ts +++ /dev/null @@ -1,293 +0,0 @@ -// The MIT License (MIT) -// -// Copyright 2013 Andrey Sitnik -// -// Permission is hereby granted, free of charge, to any person obtaining a copy of -// this software and associated documentation files (the "Software"), to deal in -// the Software without restriction, including without limitation the rights to -// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -// the Software, and to permit persons to whom the Software is furnished to do so, -// subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in all -// copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// https://github.com/postcss/postcss - -'use strict'; - -const SINGLE_QUOTE = '\''.charCodeAt(0); -const DOUBLE_QUOTE = '"'.charCodeAt(0); -const BACKSLASH = '\\'.charCodeAt(0); -const SLASH = '/'.charCodeAt(0); -const NEWLINE = '\n'.charCodeAt(0); -const SPACE = ' '.charCodeAt(0); -const FEED = '\f'.charCodeAt(0); -const TAB = '\t'.charCodeAt(0); -const CR = '\r'.charCodeAt(0); -const OPEN_SQUARE = '['.charCodeAt(0); -const CLOSE_SQUARE = ']'.charCodeAt(0); -const OPEN_PARENTHESES = '('.charCodeAt(0); -const CLOSE_PARENTHESES = ')'.charCodeAt(0); -const OPEN_CURLY = '{'.charCodeAt(0); -const CLOSE_CURLY = '}'.charCodeAt(0); -const SEMICOLON = ';'.charCodeAt(0); -const ASTERISK = '*'.charCodeAt(0); -const COLON = ':'.charCodeAt(0); -const AT = '@'.charCodeAt(0); - -const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g; -const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g; -const RE_BAD_BRACKET = /.[\n"'(/\\]/; -const RE_HEX_ESCAPE = /[\da-f]/i; - -export function tokenizer(input, options: { ignoreErrors?: boolean } = {}) { - const css = input.css.valueOf(); - const ignore = options.ignoreErrors; - - let code, next, quote, content, escape; - let escaped, escapePos, prev, n, currentToken; - - const length = css.length; - let pos = 0; - const buffer = []; - const returned = []; - - function position() { - return pos; - } - - function unclosed(what) { - throw input.error('Unclosed ' + what, pos); - } - - function endOfFile() { - return returned.length === 0 && pos >= length; - } - - function nextToken(opts) { - if (returned.length) { - return returned.pop(); - } - if (pos >= length) { - return; - } - - const ignoreUnclosed = opts ? opts.ignoreUnclosed : false; - - code = css.charCodeAt(pos); - - switch (code) { - case NEWLINE: - case SPACE: - case TAB: - case CR: - case FEED: { - next = pos; - do { - next += 1; - code = css.charCodeAt(next); - } while ( - code === SPACE || - code === NEWLINE || - code === TAB || - code === CR || - code === FEED - ); - - currentToken = ['space', css.slice(pos, next)]; - pos = next - 1; - break; - } - - case OPEN_SQUARE: - case CLOSE_SQUARE: - case OPEN_CURLY: - case CLOSE_CURLY: - case COLON: - case SEMICOLON: - case CLOSE_PARENTHESES: { - const controlChar = String.fromCharCode(code); - currentToken = [controlChar, controlChar, pos]; - break; - } - - case OPEN_PARENTHESES: { - prev = buffer.length ? buffer.pop()[1] : ''; - n = css.charCodeAt(pos + 1); - if ( - prev === 'url' && - n !== SINGLE_QUOTE && - n !== DOUBLE_QUOTE && - n !== SPACE && - n !== NEWLINE && - n !== TAB && - n !== FEED && - n !== CR - ) { - next = pos; - do { - escaped = false; - next = css.indexOf(')', next + 1); - if (next === -1) { - if (ignore || ignoreUnclosed) { - next = pos; - break; - } else { - unclosed('bracket'); - } - } - escapePos = next; - while (css.charCodeAt(escapePos - 1) === BACKSLASH) { - escapePos -= 1; - escaped = !escaped; - } - } while (escaped); - - currentToken = ['brackets', css.slice(pos, next + 1), pos, next]; - - pos = next; - } else { - next = css.indexOf(')', pos + 1); - content = css.slice(pos, next + 1); - - if (next === -1 || RE_BAD_BRACKET.test(content)) { - currentToken = ['(', '(', pos]; - } else { - currentToken = ['brackets', content, pos, next]; - pos = next; - } - } - - break; - } - - case SINGLE_QUOTE: - case DOUBLE_QUOTE: { - quote = code === SINGLE_QUOTE ? '\'' : '"'; - next = pos; - do { - escaped = false; - next = css.indexOf(quote, next + 1); - if (next === -1) { - if (ignore || ignoreUnclosed) { - next = pos + 1; - break; - } else { - unclosed('string'); - } - } - escapePos = next; - while (css.charCodeAt(escapePos - 1) === BACKSLASH) { - escapePos -= 1; - escaped = !escaped; - } - } while (escaped); - - currentToken = ['string', css.slice(pos, next + 1), pos, next]; - pos = next; - break; - } - - case AT: { - RE_AT_END.lastIndex = pos + 1; - RE_AT_END.test(css); - if (RE_AT_END.lastIndex === 0) { - next = css.length - 1; - } else { - next = RE_AT_END.lastIndex - 2; - } - - currentToken = ['at-word', css.slice(pos, next + 1), pos, next]; - - pos = next; - break; - } - - case BACKSLASH: { - next = pos; - escape = true; - while (css.charCodeAt(next + 1) === BACKSLASH) { - next += 1; - escape = !escape; - } - code = css.charCodeAt(next + 1); - if ( - escape && - code !== SLASH && - code !== SPACE && - code !== NEWLINE && - code !== TAB && - code !== CR && - code !== FEED - ) { - next += 1; - if (RE_HEX_ESCAPE.test(css.charAt(next))) { - while (RE_HEX_ESCAPE.test(css.charAt(next + 1))) { - next += 1; - } - if (css.charCodeAt(next + 1) === SPACE) { - next += 1; - } - } - } - - currentToken = ['word', css.slice(pos, next + 1), pos, next]; - - pos = next; - break; - } - - default: { - if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) { - next = css.indexOf('*/', pos + 2) + 1; - if (next === 0) { - if (ignore || ignoreUnclosed) { - next = css.length; - } else { - unclosed('comment'); - } - } - - currentToken = ['comment', css.slice(pos, next + 1), pos, next]; - pos = next; - } else { - RE_WORD_END.lastIndex = pos + 1; - RE_WORD_END.test(css); - if (RE_WORD_END.lastIndex === 0) { - next = css.length - 1; - } else { - next = RE_WORD_END.lastIndex - 2; - } - - currentToken = ['word', css.slice(pos, next + 1), pos, next]; - buffer.push(currentToken); - pos = next; - } - - break; - } - } - - pos++; - return currentToken; - } - - function back(token) { - returned.push(token); - } - - return { - back, - nextToken, - endOfFile, - position, - }; -} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 2c437e2053..819b8cb899 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,77 +1,5 @@ -import assert from 'assert'; -import { postcssTokenizer } from '@csstools/css-tokenizer'; import './test-reader.mjs'; -import './consume/comment-token.mjs'; -import './consume/numeric-token.mjs'; -import './consume/number.mjs'; import './token/basic.mjs'; +import './token/url.mjs'; // import './token/bootstrap.mjs'; // import './token/benchmark.mjs'; - -function collectTokens(t) { - const bag = []; - while (!t.endOfFile()) { - bag.push(t.nextToken()); - } - - return bag; -} - -{ - const t = postcssTokenizer.tokenizer({ - css: '@media screen and (min-width: 200px) {}', - }); - - assert.deepEqual( - collectTokens(t), - [ - ['at-word', '@media', 0, 5], - ['space', ' '], - ['word', 'screen', 7, 12], - ['space', ' '], - ['word', 'and', 14, 16], - ['space', ' '], - ['brackets', '(min-width: 200px)', 18, 35], - ['space', ' '], - ['{', '{', 37], - ['}', '}', 38], - ], - ); -} - -{ - const t = postcssTokenizer.tokenizer({ - css: `.foo { content: "hello - -world!" }`, - }); - - assert.deepEqual( - collectTokens(t), - [ - ['word', '.foo', 0, 3], - ['space', ' '], - ['{', '{', 5], - ['space', ' '], - ['word', 'content', 7, 13], - [':', ':', 14], - ['space', ' '], - ['string', '"hello\n\nworld!"', 16, 30], - ['space', ' '], - ['}', '}', 32], - ], - ); -} - -{ - const t = postcssTokenizer.tokenizer({ - css: '/* a comment */', - }); - - assert.deepEqual( - collectTokens(t), - [ - ['comment', '/* a comment */', 0, 14], - ], - ); -} diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index 4bc34c7a60..b781ccb094 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -1,23 +1,6 @@ import { tokenizer } from '@csstools/css-tokenizer'; import assert from 'assert'; - -function collectTokens(t) { - const bag = []; - // eslint-disable-next-line no-constant-condition - while (true) { - bag.push(t.nextToken()); - - if (!bag[bag.length - 1]) { - break; - } - - if (bag[bag.length - 1][0] === 'EOF-token') { - break; - } - } - - return bag; -} +import { collectTokens } from '../util/collect-tokens.mjs'; { const t = tokenizer({ diff --git a/packages/css-tokenizer/test/token/url.mjs b/packages/css-tokenizer/test/token/url.mjs new file mode 100644 index 0000000000..07190e1c79 --- /dev/null +++ b/packages/css-tokenizer/test/token/url.mjs @@ -0,0 +1,87 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +{ + const t = tokenizer({ + css: ` +url( a )\ +Url( b )\ +uRl( c )\ +urL( d )\ +URl( e )\ +uRL( f )\ +UrL( g )\ +URL( h )\ +`, + }); + + assert.deepEqual( + collectTokens(t), + [ + ['whitespace-token', '\n', 0, 0, undefined], + ['url-token', 'url( a )', 1, 8, { value: 'a' }], + ['url-token', 'Url( b )', 9, 16, { value: 'b' }], + ['url-token', 'uRl( c )', 17, 24, { value: 'c' }], + ['url-token', 'urL( d )', 25, 32, { value: 'd' }], + ['url-token', 'URl( e )', 33, 40, { value: 'e' }], + ['url-token', 'uRL( f )', 41, 48, { value: 'f' }], + ['url-token', 'UrL( g )', 49, 56, { value: 'g' }], + ['url-token', 'URL( h )', 57, 64, { value: 'h' }], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: ` +url( 'single-quoted' )\ +url( "double-quoted" )\ +url( 'mix-quoted" ' )\ +`, + }); + + assert.deepEqual( + collectTokens(t), + [ + ['whitespace-token', '\n', 0, 0, undefined], + ['function-token', 'url(', 1, 4, { value: 'url' }], + ['whitespace-token', ' ', 5, 5, undefined], + [ + 'string-token', + // eslint-disable-next-line quotes + "'single-quoted'", + 6, + 20, + { value: 'single-quoted' }, + ], + ['whitespace-token', ' ', 21, 21, undefined], + [')-token', ')', 22, 22, undefined], + ['function-token', 'url(', 23, 26, { value: 'url' }], + ['whitespace-token', ' ', 27, 27, undefined], + [ + 'string-token', + '"double-quoted"', + 28, + 42, + { value: 'double-quoted' }, + ], + ['whitespace-token', ' ', 43, 43, undefined], + [')-token', ')', 44, 44, undefined], + ['function-token', 'url(', 45, 48, { value: 'url' }], + ['whitespace-token', ' ', 49, 49, undefined], + [ + 'string-token', + // eslint-disable-next-line quotes + `'mix-quoted" '`, + 50, + 63, + { value: 'mix-quoted" ' }, + ], + ['whitespace-token', ' ', 64, 64, undefined], + [')-token', ')', 65, 65, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} diff --git a/packages/css-tokenizer/test/util/collect-tokens.mjs b/packages/css-tokenizer/test/util/collect-tokens.mjs new file mode 100644 index 0000000000..13e038fb4d --- /dev/null +++ b/packages/css-tokenizer/test/util/collect-tokens.mjs @@ -0,0 +1,17 @@ +export function collectTokens(t) { + const bag = []; + // eslint-disable-next-line no-constant-condition + while (true) { + bag.push(t.nextToken()); + + if (!bag[bag.length - 1]) { + break; + } + + if (bag[bag.length - 1][0] === 'EOF-token') { + break; + } + } + + return bag; +} From e5a82b83e341971190633d8dd36e96364fe86cc1 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Tue, 20 Sep 2022 22:26:51 +0200 Subject: [PATCH 27/59] more tests --- packages/css-tokenizer/test/token/url.mjs | 45 +++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/packages/css-tokenizer/test/token/url.mjs b/packages/css-tokenizer/test/token/url.mjs index 07190e1c79..4bcd7ff9d0 100644 --- a/packages/css-tokenizer/test/token/url.mjs +++ b/packages/css-tokenizer/test/token/url.mjs @@ -33,6 +33,51 @@ URL( h )\ ); } +{ + const t = tokenizer({ + css: ` +url(\ +https://\ +example.com\ +/some-path/\ +?query=param\ +&more-query=params\ +)\ +`, + }); + + assert.deepEqual( + collectTokens(t), + [ + ['whitespace-token', '\n', 0, 0, undefined], + [ + 'url-token', + 'url(https://example.com/some-path/?query=param&more-query=params)', + 1, + 65, + { + value: 'https://example.com/some-path/?query=param&more-query=params', + }, + ], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'url(https://example.com a', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['bad-url-token', 'url(https://example.com a', 0, 24, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + { const t = tokenizer({ css: ` From d2f4ac7f310733f2f4abaf4f39ece55745eee93e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Tue, 20 Sep 2022 23:12:06 +0200 Subject: [PATCH 28/59] still more tests --- .../css-tokenizer/test/consume/number.mjs | 125 ------ .../test/consume/numeric-token.mjs | 107 ----- packages/css-tokenizer/test/foo.css | 11 - packages/css-tokenizer/test/test.mjs | 2 + .../css-tokenizer/test/token/code-points.mjs | 404 ++++++++++++++++++ packages/css-tokenizer/test/token/numeric.mjs | 249 +++++++++++ 6 files changed, 655 insertions(+), 243 deletions(-) delete mode 100644 packages/css-tokenizer/test/consume/number.mjs delete mode 100644 packages/css-tokenizer/test/consume/numeric-token.mjs delete mode 100644 packages/css-tokenizer/test/foo.css create mode 100644 packages/css-tokenizer/test/token/code-points.mjs create mode 100644 packages/css-tokenizer/test/token/numeric.mjs diff --git a/packages/css-tokenizer/test/consume/number.mjs b/packages/css-tokenizer/test/consume/number.mjs deleted file mode 100644 index f472915342..0000000000 --- a/packages/css-tokenizer/test/consume/number.mjs +++ /dev/null @@ -1,125 +0,0 @@ -import assert from 'assert'; -import { Reader, consumeNumber } from '@csstools/css-tokenizer'; - -{ - const r = new Reader('12'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [12, 'integer'], - ); -} - -{ - const r = new Reader('4.01'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [4.01, 'number'], - ); -} - -{ - const r = new Reader('-456.8'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [-456.8, 'number'], - ); -} - -{ - const r = new Reader('0.0'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [0, 'number'], - ); -} - -{ - const r = new Reader('+0.0'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [0, 'number'], - ); -} - -{ - const r = new Reader('-0.0'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [0, 'number'], - ); -} - -{ - const r = new Reader('.60'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [0.6, 'number'], - ); -} - -{ - const r = new Reader('10e3'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [10e3, 'number'], - ); -} - -{ - const r = new Reader('-3.4e-2'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [-0.034, 'number'], - ); -} - -// consumeNumber doesn't validate that inputs would form number tokens. -// Any validation has to be done externally. -// A result of this is that invalid inputs do return numbers when fed to this algorithm -{ - const r = new Reader('12.'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [12, 'integer'], - ); -} - -{ - const r = new Reader('+-12.2'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [0, 'integer'], - ); -} - -{ - const r = new Reader('12.1.1'); - const number = consumeNumber({}, r); - - assert.deepEqual( - number, - [12.1, 'number'], - ); -} diff --git a/packages/css-tokenizer/test/consume/numeric-token.mjs b/packages/css-tokenizer/test/consume/numeric-token.mjs deleted file mode 100644 index fc1fcfacf6..0000000000 --- a/packages/css-tokenizer/test/consume/numeric-token.mjs +++ /dev/null @@ -1,107 +0,0 @@ -import assert from 'assert'; -import { Reader, consumeNumericToken } from '@csstools/css-tokenizer'; - -{ - const r = new Reader('10px'); - - const token = consumeNumericToken({}, r); - - assert.deepEqual( - token, - ['dimension-token', '10px', 0, 3, { value: 10, type: 'integer', unit: 'px' }], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '10px', - ); - - assert.deepEqual( - r.representationString(), - '10px', - ); -} - -{ - const r = new Reader('10%'); - - const token = consumeNumericToken({}, r); - - assert.deepEqual( - token, - ['percentage-token', '10%', 0, 2, { value: 10 }], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '10%', - ); - - assert.deepEqual( - r.representationString(), - '10%', - ); -} - -{ - const r = new Reader('-3.4e-2'); - - const token = consumeNumericToken({}, r); - - assert.deepEqual( - token, - ['number-token', '-3.4e-2', 0, 6, { value: -0.034, type: 'number' }], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '-3.4e-2', - ); - - assert.deepEqual( - r.representationString(), - '-3.4e-2', - ); -} - -{ - const r = new Reader('-3.4e'); - - const token = consumeNumericToken({}, r); - - assert.deepEqual( - token, - ['dimension-token', '-3.4e', 0, 4, { value: -3.4, type: 'number', unit: 'e' }], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '-3.4e', - ); - - assert.deepEqual( - r.representationString(), - '-3.4e', - ); -} - -{ - const r = new Reader('20--foo'); - - const token = consumeNumericToken({}, r); - - assert.deepEqual( - token, - ['dimension-token', '20--foo', 0, 6, { value: 20, type: 'integer', unit: '--foo' }], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '20--foo', - ); - - assert.deepEqual( - r.representationString(), - '20--foo', - ); -} diff --git a/packages/css-tokenizer/test/foo.css b/packages/css-tokenizer/test/foo.css deleted file mode 100644 index 7782f067c0..0000000000 --- a/packages/css-tokenizer/test/foo.css +++ /dev/null @@ -1,11 +0,0 @@ -/* TODO : delete me */ - -.foo { - content: "hello - -world!"; -} - -.bar { - /* a comment \*/ still in a comment */ -} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 819b8cb899..0369508483 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,5 +1,7 @@ import './test-reader.mjs'; import './token/basic.mjs'; +import './token/code-points.mjs'; +import './token/numeric.mjs'; import './token/url.mjs'; // import './token/bootstrap.mjs'; // import './token/benchmark.mjs'; diff --git a/packages/css-tokenizer/test/token/code-points.mjs b/packages/css-tokenizer/test/token/code-points.mjs new file mode 100644 index 0000000000..3cd5b6ec06 --- /dev/null +++ b/packages/css-tokenizer/test/token/code-points.mjs @@ -0,0 +1,404 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +// Single characters +{ + const testCases = [ + [ + 'a', + [['ident-token', 'a', 0, 0, { value: 'a' }]], + ], + [ + '\\', + [['ident-token', '\\', 0, 0, { value: '�' }]], + ], + [ + '\\\\', + [['ident-token', '\\\\', 0, 1, { value: '\\' }]], + ], + [ + '§', + [['ident-token', '§', 0, 0, { value: '§' }]], + ], + [ + '±', + [['ident-token', '±', 0, 0, { value: '±' }]], + ], + [ + '!', + [['delim-token', '!', 0, 0, { value: '!' }]], + ], + [ + '@', + [['delim-token', '@', 0, 0, { value: '@' }]], + ], + [ + '#', + [['delim-token', '#', 0, 0, { value: '#' }]], + ], + [ + '$', + [['delim-token', '$', 0, 0, { value: '$' }]], + ], + [ + '%', + [['delim-token', '%', 0, 0, { value: '%' }]], + ], + [ + '^', + [['delim-token', '^', 0, 0, { value: '^' }]], + ], + [ + '&', + [['delim-token', '&', 0, 0, { value: '&' }]], + ], + [ + '*', + [['delim-token', '*', 0, 0, { value: '*' }]], + ], + [ + '(', + [['(-token', '(', 0, 0, undefined]], + ], + [ + ')', + [[')-token', ')', 0, 0, undefined]], + ], + [ + '-', + [['delim-token', '-', 0, 0, { value: '-' }]], + ], + [ + '_', + [['ident-token', '_', 0, 0, { value: '_' }]], + ], + [ + '+', + [['delim-token', '+', 0, 0, { value: '+' }]], + ], + [ + '=', + [['delim-token', '=', 0, 0, { value: '=' }]], + ], + [ + '[', + [['[-token', '[', 0, 0, undefined]], + ], + [ + ']', + [[']-token', ']', 0, 0, undefined]], + ], + [ + '{', + [['{-token', '{', 0, 0, undefined]], + ], + [ + '}', + [['}-token', '}', 0, 0, undefined]], + ], + [ + ';', + [['semicolon-token', ';', 0, 0, undefined]], + ], + [ + ':', + [['colon-token', ':', 0, 0, undefined]], + ], + [ + '`', + [['delim-token', '`', 0, 0, { value: '`' }]], + ], + [ + '~', + [['delim-token', '~', 0, 0, { value: '~' }]], + ], + [ + '\'', + [['string-token', '\'', 0, 0, { value: '' }]], + ], + [ + '"', + [['string-token', '"', 0, 0, { value: '' }]], + ], + [ + '|', + [['delim-token', '|', 0, 0, { value: '|' }]], + ], + [ + ',', + [['comma-token', ',', 0, 0, undefined]], + ], + [ + '<', + [['delim-token', '<', 0, 0, { value: '<' }]], + ], + [ + '>', + [['delim-token', '>', 0, 0, { value: '>' }]], + ], + [ + '.', + [['delim-token', '.', 0, 0, { value: '.' }]], + ], + [ + '?', + [['delim-token', '?', 0, 0, { value: '?' }]], + ], + [ + '/', + [['delim-token', '/', 0, 0, { value: '/' }]], + ], + ]; + + testCases.forEach((testCase) => { + const t = tokenizer({ + css: testCase[0], + }); + + assert.deepEqual( + collectTokens(t).slice(0,-1), + testCase[1], + ); + }); +} + + +// Followed by a letter +{ + const testCases = [ + [ + 'aa', + [['ident-token', 'aa', 0, 1, { value: 'aa' }]], + ], + [ + '\\a', + [['ident-token', '\\a', 0, 1, { value: '\n' }]], + ], + [ + '\\\\a', + [['ident-token', '\\\\a', 0, 2, { value: '\\a' }]], + ], + [ + '§a', + [['ident-token', '§a', 0, 1, { value: '§a' }]], + ], + [ + '±a', + [['ident-token', '±a', 0, 1, { value: '±a' }]], + ], + [ + '!a', + [ + ['delim-token', '!', 0, 0, { value: '!' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '@a', + [['at-keyword-token', '@a', 0, 1, { value: 'a' }]], + ], + [ + '#a', + [['hash-token', '#a', 0, 1, { value: 'a', type: 'id' }]], + ], + [ + '$a', + [ + ['delim-token', '$', 0, 0, { value: '$' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '%a', + [ + ['delim-token', '%', 0, 0, { value: '%' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '^a', + [ + ['delim-token', '^', 0, 0, { value: '^' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '&a', + [ + ['delim-token', '&', 0, 0, { value: '&' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '*a', + [ + ['delim-token', '*', 0, 0, { value: '*' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '(a', + [ + ['(-token', '(', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + ')a', + [ + [')-token', ')', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '-a', + [ + ['delim-token', '-', 0, 0, { value: '-' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '_a', + [['ident-token', '_a', 0, 1, { value: '_a' }]], + ], + [ + '+a', + [ + ['delim-token', '+', 0, 0, { value: '+' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '=a', + [ + ['delim-token', '=', 0, 0, { value: '=' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '[a', + [ + ['[-token', '[', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + ']a', + [ + [']-token', ']', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '{a', + [ + ['{-token', '{', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '}a', + [ + ['}-token', '}', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + ';a', + [ + ['semicolon-token', ';', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + ':a', + [ + ['colon-token', ':', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '`a', + [ + ['delim-token', '`', 0, 0, { value: '`' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '~a', + [ + ['delim-token', '~', 0, 0, { value: '~' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '\'a', + [['string-token', '\'a', 0, 1, { value: 'a' }]], + ], + [ + '"a', + [['string-token', '"a', 0, 1, { value: 'a' }]], + ], + [ + '|a', + [ + ['delim-token', '|', 0, 0, { value: '|' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + ',a', + [ + ['comma-token', ',', 0, 0, undefined], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + 'a', + [ + ['delim-token', '>', 0, 0, { value: '>' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '.a', + [ + ['delim-token', '.', 0, 0, { value: '.' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '?a', + [ + ['delim-token', '?', 0, 0, { value: '?' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + [ + '/a', + [ + ['delim-token', '/', 0, 0, { value: '/' }], + ['ident-token', 'a', 1, 1, { value: 'a' }], + ], + ], + ]; + + testCases.forEach((testCase) => { + const t = tokenizer({ + css: testCase[0], + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + testCase[1], + ); + }); +} diff --git a/packages/css-tokenizer/test/token/numeric.mjs b/packages/css-tokenizer/test/token/numeric.mjs new file mode 100644 index 0000000000..2313b0e521 --- /dev/null +++ b/packages/css-tokenizer/test/token/numeric.mjs @@ -0,0 +1,249 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +{ + const t = tokenizer({ + css: '10px', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '10px', + 0, + 3, + { value: 10, type: 'integer', unit: 'px' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '4.01', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '4.01', 0, 3, { value: 4.01, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '-456.8', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'number-token', + '-456.8', + 0, + 5, + { value: -456.8, type: 'number' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '0.0', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '0.0', 0, 2, { value: 0, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '+0.0', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '+0.0', 0, 3, { value: 0, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '-0.0', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '-0.0', 0, 3, { value: 0, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '.60', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '.60', 0, 2, { value: 0.6, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '10e3', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ 'number-token', '10e3', 0, 3, { value: 10000, type: 'number' } ], + ], + ); +} + +{ + const t = tokenizer({ + css: '-3.4e-2', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'number-token', + '-3.4e-2', + 0, + 6, + { value: -0.034, type: 'number' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '12rem', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '12rem', + 0, + 4, + { value: 12, type: 'integer', unit: 'rem' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '12.2rem', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '12.2rem', + 0, + 6, + { value: 12.2, type: 'number', unit: 'rem' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '13%', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['percentage-token', '13%', 0, 2, { value: 13 }]], + ); +} + +{ + const t = tokenizer({ + css: '0.13%', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['percentage-token', '0.13%', 0, 4, { value: 0.13 }]], + ); +} + +{ + const t = tokenizer({ + css: '14--foo', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '14--foo', + 0, + 6, + { value: 14, type: 'integer', unit: '--foo' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '12.', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + ['number-token', '12', 0, 1, { value: 12, type: 'integer' }], + ['delim-token', '.', 2, 2, { value: '.' }], + ], + ); +} + +{ + const t = tokenizer({ + css: '+-12.2', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + ['delim-token', '+', 0, 0, { value: '+' }], + ['number-token', '-12.2', 1, 5, { value: -12.2, type: 'number' }], + ], + ); +} + +{ + const t = tokenizer({ + css: '12.1.1', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + ['number-token', '12.1', 0, 3, { value: 12.1, type: 'number' }], + ['number-token', '.1', 4, 5, { value: 0.1, type: 'number' }], + ], + ); +} From d2b91e1e7590fea585adde1499910d1354cfa564 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Tue, 20 Sep 2022 23:21:15 +0200 Subject: [PATCH 29/59] still more tests --- packages/css-tokenizer/test/test.mjs | 3 +- .../css-tokenizer/test/token/benchmark.mjs | 818 ------------------ .../test/token/bootstrap-tokens.mjs | 440 +++++++++- .../css-tokenizer/test/token/bootstrap.mjs | 4 + 4 files changed, 405 insertions(+), 860 deletions(-) delete mode 100644 packages/css-tokenizer/test/token/benchmark.mjs diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 0369508483..3c3a53a9aa 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -3,5 +3,4 @@ import './token/basic.mjs'; import './token/code-points.mjs'; import './token/numeric.mjs'; import './token/url.mjs'; -// import './token/bootstrap.mjs'; -// import './token/benchmark.mjs'; +import './token/bootstrap.mjs'; diff --git a/packages/css-tokenizer/test/token/benchmark.mjs b/packages/css-tokenizer/test/token/benchmark.mjs deleted file mode 100644 index ca30048a8a..0000000000 --- a/packages/css-tokenizer/test/token/benchmark.mjs +++ /dev/null @@ -1,818 +0,0 @@ -import { tokenizer } from '@csstools/css-tokenizer'; -import { postcssTokenizer } from '@csstools/css-tokenizer'; - -function collectTokens(t) { - const bag = []; - // eslint-disable-next-line no-constant-condition - while (true) { - bag.push(t.nextToken()); - - if (!bag[bag.length - 1]) { - break; - } - - if (bag[bag.length - 1][0] === 'EOF-token') { - break; - } - } - - return bag; -} - -const a = []; -const b = []; - -for (let i = 0; i < 1000; i++) { - - { - const start = performance.now(); - const t = tokenizer({ - css: postcssPresetEnvSource(), - }); - - collectTokens(t); - a.push(performance.now() - start); - } - - { - const start = performance.now(); - const t = postcssTokenizer.tokenizer({ - css: postcssPresetEnvSource(), - }); - - collectTokens(t); - b.push(performance.now() - start); - } -} - -a.sort(function (a, b) { - return a - b; -}); -b.sort(function (a, b) { - return a - b; -}); - -console.log(` -[spec tokenizer]: - 1th : ${a[10]} - 50th : ${a[500]} - 95th : ${a[950]} - 99th : ${a[990]} - max : ${a[999]} - -tokens / ms - 50th : ${3771 / a[500]} - 95th : ${3771 / a[950]} - 99th : ${3771 / a[990]} - max : ${3771 / a[999]} - -[postcss tokenizer]: - 1th : ${b[10]} - 50th : ${b[500]} - 95th : ${b[950]} - 99th : ${b[990]} - max : ${b[999]} - -tokens / ms - 50th : ${3054 / b[500]} - 95th : ${3054 / b[950]} - 99th : ${3054 / b[990]} - max : ${3054 / b[999]} -`); - -function postcssPresetEnvSource() { - return `:root { - --color-black-alpha-40: rgba(0,0,0,.4); - --color-blue: #1f8dff; - --color-magenta: #ff2bf3; - --color-purple: #c566ff; - --color-gray: #f8f8f8; - --color-white: #fff; - --space-8: 8px; - --space-10: 10px; - --space-15: 15px; - --space-20: 20px; - --space-25: 25px; - --space-40: 40px; - --font-baseline: 400 100%/1.5; - --font-body: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif; - --font-code: monospace; - --font-size-18: 1.125rem; - --font-size-20: 1.25rem; - --font-size-26: 1.625rem; - --heading-size-from-medium: 5rem; - --heading-size: 2.5rem; - --t-slow: .3s; - --transition: cubic-bezier(0.250,0.460,0.450,0.940) -} - -@supports (color: color(display-p3 0 0 0)) { - :root { - --color-blue:color(display-p3 0.268 0.544 0.975); - --color-magenta: color(display-p3 0.96 0.264 0.926); - --color-purple: color(display-p3 0.723 0.419 0.985) - } -} - -.u-visually-hidden { - clip: rect(0 0 0 0)!important; - border: none!important; - height: 1px!important; - margin: -1px!important; - overflow: hidden!important; - padding: 0!important; - position: absolute!important; - white-space: nowrap!important; - width: 1px!important -} - -*,:after,:before { - box-sizing: inherit -} - -html { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - -webkit-text-size-adjust: 100%; - box-sizing: border-box; - font: var(--font-baseline) var(--font-body); - font-size: 1rem; - scroll-behavior: auto; - text-rendering: optimizeLegibility -} - -@media screen and (prefers-reduced-motion:no-preference) { - html { - scroll-behavior: smooth - } -} - -body { - margin: 0 -} - -a { - color: inherit; - text-decoration: none -} - -nav ul { - list-style-type: none; - margin: 0; - padding: 0 -} - -pre { - box-sizing: border-box; - font: var(--font-baseline) var(--font-code); - max-width: 100%; - white-space: pre-wrap; - word-break: break-word -} - -[aria-current] { - font-weight: 500 -} - -.ppe-heading { - align-items: center; - background-image: linear-gradient(90deg,var(--color-purple),var(--color-blue)); - color: var(--color-white); - display: flex; - flex-wrap: wrap; - justify-content: space-between -} - -.ppe-heading-title-link { - font-size: var(--font-size-18); - font-weight: 400; - letter-spacing: -.02em; - margin: 0; - padding-left: var(--space-10); - white-space: nowrap -} - -@media (min-width: 370px) { - .ppe-heading-title-link { - font-size:var(--font-size-20) - } -} - -@media (min-width: 870px) { - .ppe-heading-title-link { - padding-left:var(--space-20) - } -} - -@media (min-width: 1024px) { - .ppe-heading-title-link { - font-size:var(--font-size-26); - padding: 0 var(--space-25) - } -} - -.ppe-heading-menu-list { - display: flex; - margin: 0; - padding: 0 -} - -.ppe-heading-menu-item { - display: inline-block -} - -.ppe-heading-menu-link { - align-items: center; - display: flex; - overflow: hidden; - padding: var(--space-8) var(--space-10); - transition: background-color var(--t-slow) var(--transition),color var(--t-slow) var(--transition) -} - -@media (min-width: 370px) { - .ppe-heading-menu-link { - padding:var(--space-8) var(--space-15) - } -} - -@media (min-width: 870px) { - .ppe-heading-menu-link { - padding:var(--space-20) var(--space-25) - } -} - -.ppe-heading-menu-link:hover { - background-color: #fff; - color: var(--color-magenta) -} - -@media (max-width: 639px) { - .ppe-heading-menu-link span { - display:none - } -} - -.ppe-heading-menu-link[aria-current=page] { - background-color: var(--color-black-alpha-40) -} - -.ppe-heading-menu-link svg { - fill: currentColor; - display: block; - height: 24px; - margin-right: 0; - width: 24px -} - -@media (min-width: 640px) { - .ppe-heading-menu-link svg { - margin-right:var(--space-20) - } -} - -@media (min-width: 870px) { - .ppe-heading-menu-link svg { - height:40px; - width: 40px - } -} - -.ppe-heading-menu-link:hover svg { - fill: url(#a) -} - -code[class*=language-],pre[class*=language-] { - word-wrap: normal; - background: #263238; - border-radius: 3px; - color: #c3cee3; - font-size: 1rem; - -webkit-hyphens: none; - hyphens: none; - line-height: 1.5; - -moz-tab-size: 2; - -o-tab-size: 2; - tab-size: 2; - text-align: left; - white-space: pre; - word-break: normal; - word-spacing: normal -} - -code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection { - background: #363636 -} - -code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection { - background: #363636 -} - -:not(pre)>code[class*=language-] { - border-radius: .2em; - padding: .1em; - white-space: normal -} - -pre[class*=language-] { - margin: 0; - overflow: auto; - padding: 1rem; - position: relative -} - -.language-css>code,.language-sass>code,.language-scss>code { - color: #fd9170 -} - -[class*=language-] .namespace { - opacity: .7 -} - -.token.atrule { - color: #c792ea -} - -.token.attr-name { - color: #ffcb6b -} - -.token.attr-value,.token.attribute { - color: #c3e88d -} - -.token.boolean { - color: #c792ea -} - -.token.builtin { - color: #ffcb6b -} - -.token.cdata,.token.char { - color: #80cbc4 -} - -.token.class { - color: #ffcb6b -} - -.token.class-name,.token.color { - color: #f2ff00 -} - -.token.comment { - color: #546e7a -} - -.token.constant { - color: #c792ea -} - -.token.deleted { - color: #f07178 -} - -.token.doctype { - color: #546e7a -} - -.token.entity { - color: #f07178 -} - -.token.function { - color: #c792ea -} - -.token.hexcode { - color: #f2ff00 -} - -.token.id,.token.important { - color: #c792ea; - font-weight: 700 -} - -.token.inserted { - color: #80cbc4 -} - -.token.keyword { - color: #c792ea; - font-style: italic -} - -.token.number { - color: #fd9170 -} - -.token.operator { - color: #89ddff -} - -.token.prolog { - color: #546e7a -} - -.token.property { - color: #80cbc4 -} - -.token.pseudo-class,.token.pseudo-element { - color: #c3e88d -} - -.token.punctuation { - color: #fff -} - -.token.regex { - color: #f2ff00 -} - -.token.selector { - color: #f07178 -} - -.token.string { - color: #c3e88d -} - -.token.symbol { - color: #c792ea -} - -.token.tag,.token.unit { - color: #f07178 -} - -.token.url { - color: #fd9170 -} - -.token.variable { - color: #f07178 -} - -.ppe-landing-hero { - background-image: linear-gradient(90deg,var(--color-purple),var(--color-blue)); - color: var(--color-white); - overflow: auto; - text-align: center -} - -.ppe-landing-container { - margin: 0 auto; - max-width: 65rem; - padding: 0 1rem -} - -.ppe-landing-title { - margin: 0 0 1.5rem -} - -.ppe-hero-cards { - grid-gap: 3rem; - display: grid; - gap: 3rem; - grid-template-columns: repeat(auto-fit,minmax(25rem,1fr)); - padding-bottom: 2rem -} - -.ppe-hero-card { - display: flex; - flex-direction: column; - max-height: 41.5rem; - text-align: left -} - -.ppe-hero-card-title { - font-weight: 500 -} - -.ppe-landing-getting-started { - background-color: var(--color-gray); - box-shadow: 0 -1px 3px 0 rgba(37,38,39,.03),0 1px 2px -5px rgba(37,38,39,.03),0 2px 5px -5px rgba(37,38,39,.05),0 4px 12px -5px rgba(37,38,39,.06),0 12px 15px -5px rgba(37,38,39,.08); - overflow: auto; - padding: 2rem 0 -} - -.ppe-landing-getting-started .ppe-getting-started-title { - text-align: center -} - -.ppe-landing-section { - overflow: auto; - padding: 2.5rem 0; - width: 100% -} - -@media (min-width: 870px) { - .ppe-landing-section { - padding:4rem 0 - } -} - -.ppe-landing-section .ppe-landing-container { - align-items: center; - display: flex; - flex-wrap: wrap -} - -@media (min-width: 870px) { - .ppe-landing-section .ppe-landing-container { - flex-wrap:nowrap - } -} - -.ppe-landing-section h2 { - margin-top: 0 -} - -.ppe-landing-section img { - height: auto; - max-width: 100%; - width: 300px -} - -.ppe-landing-section img.ppe-postcss-logo { - width: 250px -} - -.ppe-landing-section .ppe-section-decoration { - flex-shrink: 0; - margin-top: 2rem; - text-align: center; - width: 100% -} - -@media (min-width: 870px) { - .ppe-landing-section .ppe-section-decoration { - margin-top:0; - text-align: right; - width: 40% - } -} - -.ppe-landing-section:nth-child(odd) .ppe-landing-container { - flex-direction: row-reverse -} - -@media (min-width: 870px) { - .ppe-landing-section:nth-child(odd) .ppe-section-decoration { - text-align:left - } -} - -.ppe-word-rotate { - display: inline-block; - font-size: 1.125rem; - height: 1em; - list-style-type: none; - margin: 0; - padding: 0; - position: relative; - width: 12rem -} - -.ppe-word-rotate li { - bottom: 0; - height: 1em; - left: 0; - position: absolute; - transition: all .5s -} - -.ppe-latest-version { - margin-left: auto; - margin-right: auto -} - -.ppe-landing-content,.ppe-latest-version { - font-weight: 400; - max-width: 37em; - padding: 0 1em; - text-align: center -} - -.ppe-landing-content { - margin-bottom: 20px; - margin-top: 50px -} - -.ppe-latest-version { - font-size: 18px; - margin-bottom: 30px -} - -.ppe-landing-container a { - box-shadow: 0 1px 0 0 transparent; - color: #0078d6; - text-decoration: none -} - -.ppe-landing-container a:focus,.ppe-landing-container a:hover { - box-shadow: 0 1px 0 0 -} - -.ppe-deploys { - text-align: center -} - -.ppe-playground { - display: flex -} - -.ppe-codepen { - background-color: #1b2b34; - min-height: calc(100vh - var(--heading-size)); - width: 100% -} - -@media (min-width: 870px) { - .ppe-codepen { - min-height:calc(100vh - var(--heading-size-from-medium)) - } -} - -.ppe-features { - display: grid; - grid-template-areas: "aside" "list" -} - -@media (min-width: 870px) { - .ppe-features { - grid-template-areas:"aside list" - } -} - -.ppe-navigation { - background-color: #f7f7f7; - grid-area: aside; - padding: 0; - width: 300px -} - -@media (max-width: 1023px) { - .ppe-navigation { - width:200px - } -} - -@media (max-width: 869px) { - .ppe-navigation { - padding:25px 0; - width: auto - } -} - -@media (min-width: 870px) { - .ppe-navigation-sticky { - position:sticky; - top: 25px - } -} - -.ppe-navigation-sticky-overflow { - height: auto; - overflow-y: auto; - padding: 0 var(--space-10) -} - -@media (min-width: 870px) { - .ppe-navigation-sticky-overflow { - height:calc(100vh - var(--heading-size-from-medium)); - overflow-y: auto; - padding: var(--space-25) var(--space-20) - } -} - -@media (min-width: 1024px) { - .ppe-navigation-sticky-overflow { - padding:var(--space-25) - } -} - -.ppe-navigation-select { - display: block; - margin: 10px 0 20px; - width: 100px -} - -@media (min-width: 870px) { - .ppe-navigation-select { - width:100% - } -} - -.ppe-menu-link { - color: #2b2b2b; - display: block; - font-size: 14px; - font-style: normal; - line-height: 1.285; - margin: 2px 0; - padding: 7px 0 -} - -.ppe-menu-link:focus,.ppe-menu-link:hover,.ppe-menu-link[aria-current] { - color: #000; - text-decoration: underline -} - -.ppe-features-list { - grid-area: list; - padding: 0 75px 50px -} - -@media (max-width: 1023px) { - .ppe-features-list { - padding-left:20px; - padding-right: 20px - } -} - -.ppe-sidebar-menu { - box-shadow: 0 -1px 0 0 #ddd; - margin-top: 15px; - padding-top: 15px -} - -.ppe-feature { - margin: 0 -} - -.ppe-feature-heading { - padding: 50px 0 0; - word-break: break-word -} - -.ppe-feature-title { - color: #3c3c3c; - font-size: 32px; - font-weight: 400; - letter-spacing: -.02em; - line-height: 1.25; - margin: 0 auto 10px 0 -} - -.ppe-feature-heading-link-list { - display: flex; - flex-wrap: wrap -} - -.ppe-feature-heading-link { - border-radius: 2px; - flex-shrink: 0; - font-size: 10px; - font-weight: 600; - letter-spacing: .08em; - margin-bottom: 5px; - padding: 5px 10px; - text-transform: uppercase -} - -.ppe-feature-heading-link:not(:last-child) { - margin-right: 10px -} - -.ppe-feature-heading-stage { - color: #fff -} - -.ppe-feature-heading-stage[data-stage="0"] { - background-color: #414141 -} - -.ppe-feature-heading-stage[data-stage="1"] { - background-color: #ed782a; - color: #000 -} - -.ppe-feature-heading-stage[data-stage="2"] { - background-color: #899c1f; - color: #000 -} - -.ppe-feature-heading-stage[data-stage="3"] { - background-color: #3e7817 -} - -.ppe-feature-heading-stage[data-stage="4"] { - background-color: #005a9c -} - -.ppe-feature-heading-pluginLink,.ppe-feature-heading-specLink { - background-color: #eee; - color: #000 -} - -.ppe-feature-heading a:not(.ppe-feature-heading-stage):focus,.ppe-feature-heading a:not(.ppe-feature-heading-stage):hover,.ppe-feature-heading:target { - color: #3095ff -} - -.ppe-feature-description { - font-weight: 300 -} -`; -} diff --git a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs index dd55a71846..c4589637ca 100644 --- a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs +++ b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs @@ -66635,9 +66635,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + "function-token", + "url(", 28886, + 28889, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", + 28890, + 29107, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 29108, 29108, null ], @@ -70345,9 +70363,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e\")", + "function-token", + "url(", 31018, + 31021, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e\"", + 31022, + 31237, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 31238, 31238, null ], @@ -70457,9 +70493,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")", + "function-token", + "url(", 31295, + 31298, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\"", + 31299, + 31426, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 31427, 31427, null ], @@ -70635,9 +70689,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")", + "function-token", + "url(", 31539, + 31542, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\"", + 31543, + 31752, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 31753, 31753, null ], @@ -71188,9 +71260,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\")", + "function-token", + "url(", 32051, + 32054, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\"", + 32055, + 32199, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 32200, 32200, null ], @@ -71583,9 +71673,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\")", + "function-token", + "url(", 32441, + 32444, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\"", + 32445, + 32575, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 32576, 32576, null ], @@ -71727,9 +71835,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")", + "function-token", + "url(", 32667, + 32670, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\"", + 32671, + 32798, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 32799, 32799, null ], @@ -85672,9 +85798,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 40042, + 40045, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\"", + 40046, + 40273, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 40274, 40274, null ], @@ -87492,9 +87636,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + "function-token", + "url(", 41080, + 41083, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", + 41084, + 41301, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 41302, 41302, null ], @@ -87506,9 +87668,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 41304, + 41307, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\"", + 41308, + 41535, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 41536, 41536, null ], @@ -91290,9 +91470,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\")", + "function-token", + "url(", 43351, + 43354, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\"", + 43355, + 43663, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 43664, 43664, null ], @@ -93110,9 +93308,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\")", + "function-token", + "url(", 44490, + 44493, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", + 44494, + 44711, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 44712, 44712, null ], @@ -93124,9 +93340,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\")", + "function-token", + "url(", 44714, + 44717, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\"", + 44718, + 45026, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 45027, 45027, null ], @@ -140954,9 +141188,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")", + "function-token", + "url(", 69528, + 69531, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"", + 69532, + 69761, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 69762, 69762, null ], @@ -156060,9 +156312,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")", + "function-token", + "url(", 78093, + 78096, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"", + 78097, + 78332, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 78333, 78333, null ], @@ -165148,9 +165418,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 83138, + 83141, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", + 83142, + 83422, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 83423, 83423, null ], @@ -165400,9 +165688,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 83606, + 83609, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", + 83610, + 83875, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 83876, 83876, null ], @@ -197773,9 +198079,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 104283, + 104286, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e\"", + 104287, + 104602, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 104603, 104603, null ], @@ -233804,9 +234128,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 123662, + 123665, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\"", + 123666, + 123907, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 123908, 123908, null ], @@ -233859,9 +234201,27 @@ export const bootstrapTokens = [ null ], [ - "bad-url-token", - "url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")", + "function-token", + "url(", 123955, + 123958, + { + "value": "url" + } + ], + [ + "string-token", + "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", + 123959, + 124201, + { + "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" + } + ], + [ + ")-token", + ")", + 124202, 124202, null ], diff --git a/packages/css-tokenizer/test/token/bootstrap.mjs b/packages/css-tokenizer/test/token/bootstrap.mjs index e27f8b5b98..000b63a356 100644 --- a/packages/css-tokenizer/test/token/bootstrap.mjs +++ b/packages/css-tokenizer/test/token/bootstrap.mjs @@ -3,6 +3,10 @@ import { bootstrapTokens } from './bootstrap-tokens.mjs'; import assert from 'assert'; import fs from 'fs'; +// TODO : delete me +// I do not want to test against bootstrap, but I do want a big bunch of valid CSS as a temporary test corpus. +// This makes the impact of changes and fixes more visible while writing more tests + function collectTokens(t) { const bag = []; // eslint-disable-next-line no-constant-condition From 2dfec3039a626c6f6afd0b419f974c77f7ccf001 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Wed, 21 Sep 2022 20:27:03 +0200 Subject: [PATCH 30/59] fix && more tests --- packages/css-tokenizer/README.md | 6 + packages/css-tokenizer/src/consume/number.ts | 28 +++- .../{token => code-points}/code-points.mjs | 0 .../css-tokenizer/test/code-points/ranges.mjs | 60 +++++++ .../css-tokenizer/test/css/multi-line.css | 8 + packages/css-tokenizer/test/test.mjs | 9 +- packages/css-tokenizer/test/token/comment.mjs | 88 ++++++++++ packages/css-tokenizer/test/token/numeric.mjs | 119 ++++++++++++++ packages/css-tokenizer/test/token/url.mjs | 153 ++++++++++++++++-- 9 files changed, 449 insertions(+), 22 deletions(-) rename packages/css-tokenizer/test/{token => code-points}/code-points.mjs (100%) create mode 100644 packages/css-tokenizer/test/code-points/ranges.mjs create mode 100644 packages/css-tokenizer/test/css/multi-line.css create mode 100644 packages/css-tokenizer/test/token/comment.mjs diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index 9b85fffa31..c474829df8 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -11,6 +11,12 @@ Goals : - must be able to serialize from a constructed AST - must be able to serialize from a parsed AST (without any mutation or data loss) - tokens must have the same interface as the PostCSS tokenizer. This does not mean that tokens will be equivalent or that the tokenizer will have the exact same interface. +- maintainable +- understandable if you place the code next to the specification + +Non goals : +- performance (we can make it fast later) +- ease of use (a good API requires opinionated code, I am trying to avoid this) This will be a mashup of my previous work on a [CSS tokenizer in Go](https://github.com/romainmenke/css) and the API surface of the PostCSS tokenizer. diff --git a/packages/css-tokenizer/src/consume/number.ts b/packages/css-tokenizer/src/consume/number.ts index cd485e64e9..5b399cb31b 100644 --- a/packages/css-tokenizer/src/consume/number.ts +++ b/packages/css-tokenizer/src/consume/number.ts @@ -47,17 +47,29 @@ export function consumeNumber(ctx: Context, reader: CodePointReader): [number, N // optionally followed by U+002D HYPHEN-MINUS (-) or U+002B PLUS SIGN (+), // followed by a digit, then: const peeked = reader.peekThreeCodePoints(); + if ( + (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && + isDigitCodePoint(peeked[1]) + ) { + // 5.1. Consume them. + reader.readCodePoint(); + reader.readCodePoint(); + + // 5.2. Append them to repr. + repr.push(...peeked); + + // 5.3. Set type to "number". + type = NumberType.Number; + + // 5.4. While the next input code point is a digit, consume it and append it to repr. + repr.push(...consumeDigits(reader)); + } + if ( (peeked[0] === LATIN_SMALL_LETTER_E || peeked[0] === LATIN_CAPITAL_LETTER_E) && ( - ( - isDigitCodePoint(peeked[1]) - ) - || - ( - (peeked[1] === HYPHEN_MINUS || peeked[1] === PLUS_SIGN) && - isDigitCodePoint(peeked[2]) - ) + (peeked[1] === HYPHEN_MINUS || peeked[1] === PLUS_SIGN) && + isDigitCodePoint(peeked[2]) ) ) { // 5.1. Consume them. diff --git a/packages/css-tokenizer/test/token/code-points.mjs b/packages/css-tokenizer/test/code-points/code-points.mjs similarity index 100% rename from packages/css-tokenizer/test/token/code-points.mjs rename to packages/css-tokenizer/test/code-points/code-points.mjs diff --git a/packages/css-tokenizer/test/code-points/ranges.mjs b/packages/css-tokenizer/test/code-points/ranges.mjs new file mode 100644 index 0000000000..f7ff5b5739 --- /dev/null +++ b/packages/css-tokenizer/test/code-points/ranges.mjs @@ -0,0 +1,60 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +// Single characters +{ + const testCases = [ + [ + '\\00ae', + [['ident-token', '\\00ae', 0, 4, { value: '®' }]], + ], + [ + '\\00aE', + [['ident-token', '\\00aE', 0, 4, { value: '®' }]], + ], + [ + '\\00af', + [['ident-token', '\\00af', 0, 4, { value: '¯' }]], + ], + [ + '\\00aF', + [['ident-token', '\\00aF', 0, 4, { value: '¯' }]], + ], + [ + '\\00ag', + [['ident-token', '\\00ag', 0, 4, { value: '\ng' }]], + ], + [ + '\\00aG', + [['ident-token', '\\00aG', 0, 4, { value: '\nG' }]], + ], + [ + '\\7f', + [['ident-token', '\\7f', 0, 2, { value: '\x7F' }]], + ], + [ + '\\80', + [['ident-token', '\\80', 0, 2, { value: '\x80' }]], + ], + [ + '\\81', + [['ident-token', '\\81', 0, 2, { value: '\x81' }]], + ], + [ + '👨‍👨‍👧‍👦', + [['ident-token', '👨‍👨‍👧‍👦', 0, 10, { value: '👨‍👨‍👧‍👦' }]], + ], + ]; + + testCases.forEach((testCase) => { + const t = tokenizer({ + css: testCase[0], + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + testCase[1], + ); + }); +} diff --git a/packages/css-tokenizer/test/css/multi-line.css b/packages/css-tokenizer/test/css/multi-line.css new file mode 100644 index 0000000000..379fa11936 --- /dev/null +++ b/packages/css-tokenizer/test/css/multi-line.css @@ -0,0 +1,8 @@ +.foo { + src: url("\ +https: //\ +example.com\ +/some-path/\ +?query=param\ +&more-query=params"); +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 3c3a53a9aa..57c41f6ce8 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -1,6 +1,11 @@ +// Reader import './test-reader.mjs'; +// Code points +import './code-points/code-points.mjs'; +import './code-points/ranges.mjs'; +// Tokens import './token/basic.mjs'; -import './token/code-points.mjs'; +import './token/comment.mjs'; import './token/numeric.mjs'; import './token/url.mjs'; -import './token/bootstrap.mjs'; +// import './token/bootstrap.mjs'; diff --git a/packages/css-tokenizer/test/token/comment.mjs b/packages/css-tokenizer/test/token/comment.mjs new file mode 100644 index 0000000000..230f3965bc --- /dev/null +++ b/packages/css-tokenizer/test/token/comment.mjs @@ -0,0 +1,88 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +{ + const t = tokenizer({ + css: 'a /* a comment */ b', + }, { commentsAreTokens : true }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'a', 0, 0, { value: 'a' }], + ['whitespace-token', ' ', 1, 1, undefined], + ['comment', '/* a comment */', 2, 16, undefined], + ['whitespace-token', ' ', 17, 17, undefined], + ['ident-token', 'b', 18, 18, { value: 'b' }], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'a/* a comment */b', + }, { commentsAreTokens: true }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'a', 0, 0, { value: 'a' }], + ['comment', '/* a comment */', 1, 15, undefined], + ['ident-token', 'b', 16, 16, { value: 'b' }], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'a /* a comment', + }, { commentsAreTokens: true }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'a', 0, 0, { value: 'a' }], + ['whitespace-token', ' ', 1, 1, undefined], + ['comment', '/* a comment', 2, 13, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: `a /* a comment +*/`, + }, { commentsAreTokens: true }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'a', 0, 0, { value: 'a' }], + ['whitespace-token', ' ', 1, 1, undefined], + ['comment', '/* a comment\n*/', 2, 16, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'a /* a comment \\*/ b', + }, { commentsAreTokens: true }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'a', 0, 0, { value: 'a' }], + ['whitespace-token', ' ', 1, 1, undefined], + ['comment', '/* a comment \\*/', 2, 17, undefined], + ['whitespace-token', ' ', 18, 18, undefined], + ['ident-token', 'b', 19, 19, { value: 'b' }], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} diff --git a/packages/css-tokenizer/test/token/numeric.mjs b/packages/css-tokenizer/test/token/numeric.mjs index 2313b0e521..43c6d8d9e8 100644 --- a/packages/css-tokenizer/test/token/numeric.mjs +++ b/packages/css-tokenizer/test/token/numeric.mjs @@ -127,6 +127,74 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ); } +{ + const t = tokenizer({ + css: '-3.4e2', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [['number-token', '-3.4e2', 0, 5, { value: -340, type: 'number' }]], + ); +} + +{ + const t = tokenizer({ + css: '-3.4e+2', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'number-token', + '-3.4e+2', + 0, + 6, + { value: -340, type: 'number' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '-3.4e', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '-3.4e', + 0, + 4, + { value: -3.4, type: 'number', unit: 'e' }, + ], + ], + ); +} + +{ + const t = tokenizer({ + css: '-3.4ef', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'dimension-token', + '-3.4ef', + 0, + 5, + { value: -3.4, type: 'number', unit: 'ef' }, + ], + ], + ); +} + { const t = tokenizer({ css: '12rem', @@ -247,3 +315,54 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ], ); } + +{ + const t = tokenizer({ + css: ':nth-last-child(n+3)', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ 'colon-token', ':', 0, 0, undefined ], + [ + 'function-token', + 'nth-last-child(', + 1, + 15, + { value: 'nth-last-child' }, + ], + [ 'ident-token', 'n', 16, 16, { value: 'n' } ], + [ 'number-token', '+3', 17, 18, { value: 3, type: 'integer' } ], + [ ')-token', ')', 19, 19, undefined ], + ], + ); +} + +{ + const t = tokenizer({ + css: ':nth-last-child( n + 3 )', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + ['colon-token', ':', 0, 0, undefined], + [ + 'function-token', + 'nth-last-child(', + 1, + 15, + { value: 'nth-last-child' }, + ], + ['whitespace-token', ' ', 16, 16, undefined], + ['ident-token', 'n', 17, 17, { value: 'n' }], + ['whitespace-token', ' ', 18, 18, undefined], + ['delim-token', '+', 19, 19, { value: '+' }], + ['whitespace-token', ' ', 20, 20, undefined], + ['number-token', '3', 21, 21, { value: 3, type: 'integer' }], + ['whitespace-token', ' ', 22, 22, undefined], + [')-token', ')', 23, 23, undefined], + ], + ); +} diff --git a/packages/css-tokenizer/test/token/url.mjs b/packages/css-tokenizer/test/token/url.mjs index 4bcd7ff9d0..eeada65c45 100644 --- a/packages/css-tokenizer/test/token/url.mjs +++ b/packages/css-tokenizer/test/token/url.mjs @@ -1,6 +1,7 @@ import { tokenizer } from '@csstools/css-tokenizer'; import assert from 'assert'; import { collectTokens } from '../util/collect-tokens.mjs'; +import fs from 'fs'; { const t = tokenizer({ @@ -36,29 +37,75 @@ URL( h )\ { const t = tokenizer({ css: ` -url(\ -https://\ -example.com\ -/some-path/\ -?query=param\ -&more-query=params\ -)\ -`, +url("\\ +https://\\ +example.com\\ +/some-path/\\ +?query=param\\ +&more-query=params")`, }); assert.deepEqual( collectTokens(t), [ ['whitespace-token', '\n', 0, 0, undefined], + ['function-token', 'url(', 1, 4, { value: 'url' }], [ - 'url-token', - 'url(https://example.com/some-path/?query=param&more-query=params)', - 1, - 65, + 'string-token', + '"\\\n' + + 'https://\\\n' + + 'example.com\\\n' + + '/some-path/\\\n' + + '?query=param\\\n' + + '&more-query=params"', + 5, + 76, { value: 'https://example.com/some-path/?query=param&more-query=params', }, ], + [')-token', ')', 77, 77, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: fs.readFileSync('./test/css/multi-line.css').toString(), + }); + + assert.deepEqual( + collectTokens(t), + [ + ['delim-token', '.', 0, 0, { value: '.' }], + ['ident-token', 'foo', 1, 3, { value: 'foo' }], + ['whitespace-token', ' ', 4, 4, undefined], + ['{-token', '{', 5, 5, undefined], + ['whitespace-token', '\n\t', 6, 7, undefined], + ['ident-token', 'src', 8, 10, { value: 'src' }], + ['colon-token', ':', 11, 11, undefined], + ['whitespace-token', ' ', 12, 12, undefined], + ['function-token', 'url(', 13, 16, { value: 'url' }], + [ + 'string-token', + '"\\\n' + + 'https: //\\\n' + + 'example.com\\\n' + + '/some-path/\\\n' + + '?query=param\\\n' + + '&more-query=params"', + 17, + 89, + { + value: 'https: //example.com/some-path/?query=param&more-query=params', + }, + ], + [')-token', ')', 90, 90, undefined], + ['semicolon-token', ';', 91, 91, undefined], + ['whitespace-token', '\n', 92, 92, undefined], + ['}-token', '}', 93, 93, undefined], + ['whitespace-token', '\n', 94, 94, undefined], ['EOF-token', '', -1, -1, undefined], ], ); @@ -78,6 +125,88 @@ example.com\ ); } +{ + const t = tokenizer({ + css: 'url("https://example.com', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['function-token', 'url(', 0, 3, { value: 'url' }], + [ + 'string-token', + '"https://example.com', + 4, + 23, + { value: 'https://example.com' }, + ], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'url("https://example.com ', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['function-token', 'url(', 0, 3, { value: 'url' }], + [ + 'string-token', + '"https://example.com ', + 4, + 24, + { value: 'https://example.com ' }, + ], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'url(https://example.com', + }); + + assert.deepEqual( + collectTokens(t), + [ + [ + 'url-token', + 'url(https://example.com', + 0, + 22, + { value: 'https://example.com' }, + ], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + +{ + const t = tokenizer({ + css: 'url(https://example.com ', + }); + + assert.deepEqual( + collectTokens(t), + [ + [ + 'url-token', + 'url(https://example.com ', + 0, + 23, + { value: 'https://example.com' }, + ], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + { const t = tokenizer({ css: ` From 994adcd04b57bb7170337890ee764002469b3def Mon Sep 17 00:00:00 2001 From: romainmenke Date: Wed, 21 Sep 2022 20:37:14 +0200 Subject: [PATCH 31/59] more tests --- packages/css-tokenizer/test/token/numeric.mjs | 105 ++++++++++++------ 1 file changed, 72 insertions(+), 33 deletions(-) diff --git a/packages/css-tokenizer/test/token/numeric.mjs b/packages/css-tokenizer/test/token/numeric.mjs index 43c6d8d9e8..801564d6b2 100644 --- a/packages/css-tokenizer/test/token/numeric.mjs +++ b/packages/css-tokenizer/test/token/numeric.mjs @@ -4,7 +4,7 @@ import { collectTokens } from '../util/collect-tokens.mjs'; { const t = tokenizer({ - css: '10px', + css: '10px ', }); assert.deepEqual( @@ -17,24 +17,28 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 3, { value: 10, type: 'integer', unit: 'px' }, ], + ['whitespace-token', ' ', 4, 4, undefined], ], ); } { const t = tokenizer({ - css: '4.01', + css: '4.01 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '4.01', 0, 3, { value: 4.01, type: 'number' }]], + [ + ['number-token', '4.01', 0, 3, { value: 4.01, type: 'number' }], + ['whitespace-token', ' ', 4, 4, undefined], + ], ); } { const t = tokenizer({ - css: '-456.8', + css: '-456.8 ', }); assert.deepEqual( @@ -47,70 +51,84 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 5, { value: -456.8, type: 'number' }, ], + ['whitespace-token', ' ', 6, 6, undefined], ], ); } { const t = tokenizer({ - css: '0.0', + css: '0.0 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '0.0', 0, 2, { value: 0, type: 'number' }]], + [ + ['number-token', '0.0', 0, 2, { value: 0, type: 'number' }], + ['whitespace-token', ' ', 3, 3, undefined], + ], ); } { const t = tokenizer({ - css: '+0.0', + css: '+0.0 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '+0.0', 0, 3, { value: 0, type: 'number' }]], + [ + ['number-token', '+0.0', 0, 3, { value: 0, type: 'number' }], + ['whitespace-token', ' ', 4, 4, undefined], + ], ); } { const t = tokenizer({ - css: '-0.0', + css: '-0.0 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '-0.0', 0, 3, { value: 0, type: 'number' }]], + [ + ['number-token', '-0.0', 0, 3, { value: -0, type: 'number' }], + ['whitespace-token', ' ', 4, 4, undefined], + ], ); } { const t = tokenizer({ - css: '.60', + css: '.60 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '.60', 0, 2, { value: 0.6, type: 'number' }]], + [ + ['number-token', '.60', 0, 2, { value: 0.6, type: 'number' }], + ['whitespace-token', ' ', 3, 3, undefined], + ], ); } { const t = tokenizer({ - css: '10e3', + css: '10e3 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), [ - [ 'number-token', '10e3', 0, 3, { value: 10000, type: 'number' } ], + ['number-token', '10e3', 0, 3, { value: 10000, type: 'number' }], + ['whitespace-token', ' ', 4, 4, undefined], ], ); } { const t = tokenizer({ - css: '-3.4e-2', + css: '-3.4e-2 ', }); assert.deepEqual( @@ -123,24 +141,28 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 6, { value: -0.034, type: 'number' }, ], + ['whitespace-token', ' ', 7, 7, undefined], ], ); } { const t = tokenizer({ - css: '-3.4e2', + css: '-3.4e2 ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['number-token', '-3.4e2', 0, 5, { value: -340, type: 'number' }]], + [ + ['number-token', '-3.4e2', 0, 5, { value: -340, type: 'number' }], + ['whitespace-token', ' ', 6, 6, undefined], + ], ); } { const t = tokenizer({ - css: '-3.4e+2', + css: '-3.4e+2 ', }); assert.deepEqual( @@ -153,13 +175,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 6, { value: -340, type: 'number' }, ], + ['whitespace-token', ' ', 7, 7, undefined], ], ); } { const t = tokenizer({ - css: '-3.4e', + css: '-3.4e ', }); assert.deepEqual( @@ -172,13 +195,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 4, { value: -3.4, type: 'number', unit: 'e' }, ], + ['whitespace-token', ' ', 5, 5, undefined], ], ); } { const t = tokenizer({ - css: '-3.4ef', + css: '-3.4ef ', }); assert.deepEqual( @@ -191,13 +215,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 5, { value: -3.4, type: 'number', unit: 'ef' }, ], + ['whitespace-token', ' ', 6, 6, undefined], ], ); } { const t = tokenizer({ - css: '12rem', + css: '12rem ', }); assert.deepEqual( @@ -210,13 +235,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 4, { value: 12, type: 'integer', unit: 'rem' }, ], + ['whitespace-token', ' ', 5, 5, undefined], ], ); } { const t = tokenizer({ - css: '12.2rem', + css: '12.2rem ', }); assert.deepEqual( @@ -229,35 +255,42 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 6, { value: 12.2, type: 'number', unit: 'rem' }, ], + ['whitespace-token', ' ', 7, 7, undefined], ], ); } { const t = tokenizer({ - css: '13%', + css: '13% ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['percentage-token', '13%', 0, 2, { value: 13 }]], + [ + ['percentage-token', '13%', 0, 2, { value: 13 }], + ['whitespace-token', ' ', 3, 3, undefined], + ], ); } { const t = tokenizer({ - css: '0.13%', + css: '0.13% ', }); assert.deepEqual( collectTokens(t).slice(0, -1), - [['percentage-token', '0.13%', 0, 4, { value: 0.13 }]], + [ + ['percentage-token', '0.13%', 0, 4, { value: 0.13 }], + ['whitespace-token', ' ', 5, 5, undefined], + ], ); } { const t = tokenizer({ - css: '14--foo', + css: '14--foo ', }); assert.deepEqual( @@ -270,13 +303,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; 6, { value: 14, type: 'integer', unit: '--foo' }, ], + ['whitespace-token', ' ', 7, 7, undefined], ], ); } { const t = tokenizer({ - css: '12.', + css: '12. ', }); assert.deepEqual( @@ -284,13 +318,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; [ ['number-token', '12', 0, 1, { value: 12, type: 'integer' }], ['delim-token', '.', 2, 2, { value: '.' }], + ['whitespace-token', ' ', 3, 3, undefined], ], ); } { const t = tokenizer({ - css: '+-12.2', + css: '+-12.2 ', }); assert.deepEqual( @@ -298,13 +333,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; [ ['delim-token', '+', 0, 0, { value: '+' }], ['number-token', '-12.2', 1, 5, { value: -12.2, type: 'number' }], + ['whitespace-token', ' ', 6, 6, undefined], ], ); } { const t = tokenizer({ - css: '12.1.1', + css: '12.1.1 ', }); assert.deepEqual( @@ -312,13 +348,14 @@ import { collectTokens } from '../util/collect-tokens.mjs'; [ ['number-token', '12.1', 0, 3, { value: 12.1, type: 'number' }], ['number-token', '.1', 4, 5, { value: 0.1, type: 'number' }], + ['whitespace-token', ' ', 6, 6, undefined], ], ); } { const t = tokenizer({ - css: ':nth-last-child(n+3)', + css: ':nth-last-child(n+3) ', }); assert.deepEqual( @@ -334,14 +371,15 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ], [ 'ident-token', 'n', 16, 16, { value: 'n' } ], [ 'number-token', '+3', 17, 18, { value: 3, type: 'integer' } ], - [ ')-token', ')', 19, 19, undefined ], + [')-token', ')', 19, 19, undefined], + ['whitespace-token', ' ', 20, 20, undefined], ], ); } { const t = tokenizer({ - css: ':nth-last-child( n + 3 )', + css: ':nth-last-child( n + 3 ) ', }); assert.deepEqual( @@ -363,6 +401,7 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ['number-token', '3', 21, 21, { value: 3, type: 'integer' }], ['whitespace-token', ' ', 22, 22, undefined], [')-token', ')', 23, 23, undefined], + ['whitespace-token', ' ', 24, 24, undefined], ], ); } From 0c36dc63df9d895170e98c619c035b29f0980375 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Wed, 21 Sep 2022 21:50:42 +0200 Subject: [PATCH 32/59] more tests --- packages/css-tokenizer/src/tokenizer.ts | 2 +- .../test/code-points/code-points.mjs | 5 +- .../test/complex/at-media-params.mjs | 253 + packages/css-tokenizer/test/test.mjs | 2 + packages/css-tokenizer/test/token/basic.mjs | 28 +- .../test/token/bootstrap-tokens.mjs | 41232 ++-------------- 6 files changed, 5560 insertions(+), 35962 deletions(-) create mode 100644 packages/css-tokenizer/test/complex/at-media-params.mjs diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 69978ec117..3094548467 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -112,7 +112,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } if (checkIfThreeCodePointsWouldStartAnIdentSequence(ctx, reader)) { - // return consumeIdentLike... + return consumeIdentLikeToken(ctx, reader); } reader.readCodePoint(); diff --git a/packages/css-tokenizer/test/code-points/code-points.mjs b/packages/css-tokenizer/test/code-points/code-points.mjs index 3cd5b6ec06..49a0ce318a 100644 --- a/packages/css-tokenizer/test/code-points/code-points.mjs +++ b/packages/css-tokenizer/test/code-points/code-points.mjs @@ -253,10 +253,7 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ], [ '-a', - [ - ['delim-token', '-', 0, 0, { value: '-' }], - ['ident-token', 'a', 1, 1, { value: 'a' }], - ], + [['ident-token', '-a', 0, 1, { value: '-a' }]], ], [ '_a', diff --git a/packages/css-tokenizer/test/complex/at-media-params.mjs b/packages/css-tokenizer/test/complex/at-media-params.mjs new file mode 100644 index 0000000000..c40a438c08 --- /dev/null +++ b/packages/css-tokenizer/test/complex/at-media-params.mjs @@ -0,0 +1,253 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import assert from 'assert'; +import { collectTokens } from '../util/collect-tokens.mjs'; + +{ + const testCases = [ + [ + 'screen', + [['ident-token', 'screen', 0, 5, { value: 'screen' }]], + ], + [ + 'true', + [['ident-token', 'true', 0, 3, { value: 'true' }]], + ], + [ + 'false', + [['ident-token', 'false', 0, 4, { value: 'false' }]], + ], + [ + 'only screen', + [ + ['ident-token', 'only', 0, 3, { value: 'only' }], + ['whitespace-token', ' ', 4, 4, undefined], + ['ident-token', 'screen', 5, 10, { value: 'screen' }], + ], + ], + [ + 'only screen and (min-width: 10px)', + [ + ['ident-token', 'only', 0, 3, { value: 'only' }], + ['whitespace-token', ' ', 4, 4, undefined], + ['ident-token', 'screen', 5, 10, { value: 'screen' }], + ['whitespace-token', ' ', 11, 11, undefined], + ['ident-token', 'and', 12, 14, { value: 'and' }], + ['whitespace-token', ' ', 15, 15, undefined], + ['(-token', '(', 16, 16, undefined], + ['ident-token', 'min-width', 17, 25, { value: 'min-width' }], + ['colon-token', ':', 26, 26, undefined], + ['whitespace-token', ' ', 27, 27, undefined], + [ + 'dimension-token', + '10px', + 28, + 31, + { value: 10, type: 'integer', unit: 'px' }, + ], + [')-token', ')', 32, 32, undefined], + ], + ], + [ + '(10rem <= width <= 40rem)', + [ + ['(-token', '(', 0, 0, undefined], + [ + 'dimension-token', + '10rem', + 1, + 5, + { value: 10, type: 'integer', unit: 'rem' }, + ], + ['whitespace-token', ' ', 6, 6, undefined], + ['delim-token', '<', 7, 7, { value: '<' }], + ['delim-token', '=', 8, 8, { value: '=' }], + ['whitespace-token', ' ', 9, 9, undefined], + ['ident-token', 'width', 10, 14, { value: 'width' }], + ['whitespace-token', ' ', 15, 15, undefined], + ['delim-token', '<', 16, 16, { value: '<' }], + ['delim-token', '=', 17, 17, { value: '=' }], + ['whitespace-token', ' ', 18, 18, undefined], + [ + 'dimension-token', + '40rem', + 19, + 23, + { value: 40, type: 'integer', unit: 'rem' }, + ], + [')-token', ')', 24, 24, undefined], + ], + ], + [ + '(40rem > width > 10rem)', + [ + ['(-token', '(', 0, 0, undefined], + [ + 'dimension-token', + '40rem', + 1, + 5, + { value: 40, type: 'integer', unit: 'rem' }, + ], + ['whitespace-token', ' ', 6, 6, undefined], + ['delim-token', '>', 7, 7, { value: '>' }], + ['whitespace-token', ' ', 8, 8, undefined], + ['ident-token', 'width', 9, 13, { value: 'width' }], + ['whitespace-token', ' ', 14, 14, undefined], + ['delim-token', '>', 15, 15, { value: '>' }], + ['whitespace-token', ' ', 16, 16, undefined], + [ + 'dimension-token', + '10rem', + 17, + 21, + { value: 10, type: 'integer', unit: 'rem' }, + ], + [')-token', ')', 22, 22, undefined], + ], + ], + [ + '(--custom-mq)', + [ + ['(-token', '(', 0, 0, undefined], + ['ident-token', '--custom-mq', 1, 11, { value: '--custom-mq' }], + [')-token', ')', 12, 12, undefined], + ], + ], + [ + 'screen/* a comment */(--custom-mq)', + [ + ['ident-token', 'screen', 0, 5, { value: 'screen' }], + ['(-token', '(', 21, 21, undefined], + ['ident-token', '--custom-mq', 22, 32, { value: '--custom-mq' }], + [')-token', ')', 33, 33, undefined], + ], + ], + [ + '((min-width: 300px) and (prefers-color-scheme: dark))', + [ + ['(-token', '(', 0, 0, undefined], + ['(-token', '(', 1, 1, undefined], + ['ident-token', 'min-width', 2, 10, { value: 'min-width' }], + ['colon-token', ':', 11, 11, undefined], + ['whitespace-token', ' ', 12, 12, undefined], + [ + 'dimension-token', + '300px', + 13, + 17, + { value: 300, type: 'integer', unit: 'px' }, + ], + [')-token', ')', 18, 18, undefined], + ['whitespace-token', ' ', 19, 19, undefined], + ['ident-token', 'and', 20, 22, { value: 'and' }], + ['whitespace-token', ' ', 23, 23, undefined], + ['(-token', '(', 24, 24, undefined], + [ + 'ident-token', + 'prefers-color-scheme', + 25, + 44, + { value: 'prefers-color-scheme' }, + ], + ['colon-token', ':', 45, 45, undefined], + ['whitespace-token', ' ', 46, 46, undefined], + ['ident-token', 'dark', 47, 50, { value: 'dark' }], + [')-token', ')', 51, 51, undefined], + [')-token', ')', 52, 52, undefined], + ], + ], + [ + '((min-width:300px)and (prefers-color-scheme:dark))', + [ + ['(-token', '(', 0, 0, undefined], + ['(-token', '(', 1, 1, undefined], + ['ident-token', 'min-width', 2, 10, { value: 'min-width' }], + ['colon-token', ':', 11, 11, undefined], + [ + 'dimension-token', + '300px', + 12, + 16, + { value: 300, type: 'integer', unit: 'px' }, + ], + [')-token', ')', 17, 17, undefined], + ['ident-token', 'and', 18, 20, { value: 'and' }], + ['whitespace-token', ' ', 21, 21, undefined], + ['(-token', '(', 22, 22, undefined], + [ + 'ident-token', + 'prefers-color-scheme', + 23, + 42, + { value: 'prefers-color-scheme' }, + ], + ['colon-token', ':', 43, 43, undefined], + ['ident-token', 'dark', 44, 47, { value: 'dark' }], + [')-token', ')', 48, 48, undefined], + [')-token', ')', 49, 49, undefined], + ], + ], + [ + ' ( ( min-width : 300px ) and ( prefers-color-scheme : dark ) ) ', + [ + ['whitespace-token', ' ', 0, 0, undefined], + ['(-token', '(', 1, 1, undefined], + ['whitespace-token', ' ', 2, 2, undefined], + ['(-token', '(', 3, 3, undefined], + ['whitespace-token', ' ', 4, 4, undefined], + ['ident-token', 'min-width', 5, 13, { value: 'min-width' }], + ['whitespace-token', ' ', 14, 14, undefined], + ['colon-token', ':', 15, 15, undefined], + ['whitespace-token', ' ', 16, 16, undefined], + [ + 'dimension-token', + '300px', + 17, + 21, + { value: 300, type: 'integer', unit: 'px' }, + ], + ['whitespace-token', ' ', 22, 22, undefined], + [')-token', ')', 23, 23, undefined], + ['whitespace-token', ' ', 24, 24, undefined], + ['ident-token', 'and', 25, 27, { value: 'and' }], + ['whitespace-token', ' ', 28, 28, undefined], + ['(-token', '(', 29, 29, undefined], + ['whitespace-token', ' ', 30, 30, undefined], + [ + 'ident-token', + 'prefers-color-scheme', + 31, + 50, + { value: 'prefers-color-scheme' }, + ], + ['whitespace-token', ' ', 51, 51, undefined], + ['colon-token', ':', 52, 52, undefined], + ['whitespace-token', ' ', 53, 53, undefined], + ['ident-token', 'dark', 54, 57, { value: 'dark' }], + ['whitespace-token', ' ', 58, 58, undefined], + [')-token', ')', 59, 59, undefined], + ['whitespace-token', ' ', 60, 60, undefined], + [')-token', ')', 61, 61, undefined], + ['whitespace-token', ' ', 62, 63, undefined], + ], + ], + ]; + + testCases.forEach((testCase) => { + const t = tokenizer({ + css: testCase[0], + }); + + const tokens = collectTokens(t); + + assert.deepEqual( + tokens.slice(0, -1), + testCase[1], + ); + + assert.deepEqual( + tokens[tokens.length -1][0], + 'EOF-token', + ); + }); +} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index 57c41f6ce8..c27ecdf831 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -8,4 +8,6 @@ import './token/basic.mjs'; import './token/comment.mjs'; import './token/numeric.mjs'; import './token/url.mjs'; +// Complex +import './complex/at-media-params.mjs'; // import './token/bootstrap.mjs'; diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index b781ccb094..609e807135 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -175,8 +175,8 @@ import { collectTokens } from '../util/collect-tokens.mjs'; { const t = tokenizer({ - css: '@media screen and ((min-width: 200px) and (foo: "\\A9\ - bar") and (fancy(baz))) {}', + css: `@media screen and ((min-width: 200px) and (foo: "\\A9\\ +bar") and (fancy(baz))) {}`, }); assert.deepEqual( @@ -208,20 +208,20 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ['ident-token', 'foo', 43, 45, { value: 'foo' }], ['colon-token', ':', 46, 46, undefined], ['whitespace-token', ' ', 47, 47, undefined], - ['string-token', '"\\A9 bar"', 48, 56, { value: '©bar' }], - [')-token', ')', 57, 57, undefined], - ['whitespace-token', ' ', 58, 58, undefined], - ['ident-token', 'and', 59, 61, { value: 'and' }], - ['whitespace-token', ' ', 62, 62, undefined], - ['(-token', '(', 63, 63, undefined], - ['function-token', 'fancy(', 64, 69, { value: 'fancy' }], - ['ident-token', 'baz', 70, 72, { value: 'baz' }], - [')-token', ')', 73, 73, undefined], + ['string-token', '"\\A9\\\nbar"', 48, 57, { value: '©bar' }], + [')-token', ')', 58, 58, undefined], + ['whitespace-token', ' ', 59, 59, undefined], + ['ident-token', 'and', 60, 62, { value: 'and' }], + ['whitespace-token', ' ', 63, 63, undefined], + ['(-token', '(', 64, 64, undefined], + ['function-token', 'fancy(', 65, 70, { value: 'fancy' }], + ['ident-token', 'baz', 71, 73, { value: 'baz' }], [')-token', ')', 74, 74, undefined], [')-token', ')', 75, 75, undefined], - ['whitespace-token', ' ', 76, 76, undefined], - ['{-token', '{', 77, 77, undefined], - ['}-token', '}', 78, 78, undefined], + [')-token', ')', 76, 76, undefined], + ['whitespace-token', ' ', 77, 77, undefined], + ['{-token', '{', 78, 78, undefined], + ['}-token', '}', 79, 79, undefined], ['EOF-token', '', -1, -1, undefined], ], ); diff --git a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs index c4589637ca..9ffa7e3e47 100644 --- a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs +++ b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs @@ -55,31 +55,13 @@ export const bootstrapTokens = [ 236, null ], - [ - "delim-token", - "-", - 237, - 237, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 238, - 238, - { - "value": "-" - } - ], [ "ident-token", - "bs-blue", - 239, + "--bs-blue", + 237, 245, { - "value": "bs-blue" + "value": "--bs-blue" } ], [ @@ -106,31 +88,13 @@ export const bootstrapTokens = [ 254, null ], - [ - "delim-token", - "-", - 255, - 255, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 256, - 256, - { - "value": "-" - } - ], [ "ident-token", - "bs-indigo", - 257, + "--bs-indigo", + 255, 265, { - "value": "bs-indigo" + "value": "--bs-indigo" } ], [ @@ -157,31 +121,13 @@ export const bootstrapTokens = [ 274, null ], - [ - "delim-token", - "-", - 275, - 275, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 276, - 276, - { - "value": "-" - } - ], [ "ident-token", - "bs-purple", - 277, + "--bs-purple", + 275, 285, { - "value": "bs-purple" + "value": "--bs-purple" } ], [ @@ -208,31 +154,13 @@ export const bootstrapTokens = [ 294, null ], - [ - "delim-token", - "-", - 295, - 295, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 296, - 296, - { - "value": "-" - } - ], [ "ident-token", - "bs-pink", - 297, + "--bs-pink", + 295, 303, { - "value": "bs-pink" + "value": "--bs-pink" } ], [ @@ -259,31 +187,13 @@ export const bootstrapTokens = [ 312, null ], - [ - "delim-token", - "-", - 313, - 313, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 314, - 314, - { - "value": "-" - } - ], [ "ident-token", - "bs-red", - 315, + "--bs-red", + 313, 320, { - "value": "bs-red" + "value": "--bs-red" } ], [ @@ -310,31 +220,13 @@ export const bootstrapTokens = [ 329, null ], - [ - "delim-token", - "-", - 330, - 330, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 331, - 331, - { - "value": "-" - } - ], [ "ident-token", - "bs-orange", - 332, + "--bs-orange", + 330, 340, { - "value": "bs-orange" + "value": "--bs-orange" } ], [ @@ -361,31 +253,13 @@ export const bootstrapTokens = [ 349, null ], - [ - "delim-token", - "-", - 350, - 350, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 351, - 351, - { - "value": "-" - } - ], [ "ident-token", - "bs-yellow", - 352, + "--bs-yellow", + 350, 360, { - "value": "bs-yellow" + "value": "--bs-yellow" } ], [ @@ -412,31 +286,13 @@ export const bootstrapTokens = [ 369, null ], - [ - "delim-token", - "-", - 370, - 370, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 371, - 371, - { - "value": "-" - } - ], [ "ident-token", - "bs-green", - 372, + "--bs-green", + 370, 379, { - "value": "bs-green" + "value": "--bs-green" } ], [ @@ -463,31 +319,13 @@ export const bootstrapTokens = [ 388, null ], - [ - "delim-token", - "-", - 389, - 389, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 390, - 390, - { - "value": "-" - } - ], [ "ident-token", - "bs-teal", - 391, + "--bs-teal", + 389, 397, { - "value": "bs-teal" + "value": "--bs-teal" } ], [ @@ -514,31 +352,13 @@ export const bootstrapTokens = [ 406, null ], - [ - "delim-token", - "-", - 407, - 407, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 408, - 408, - { - "value": "-" - } - ], [ "ident-token", - "bs-cyan", - 409, + "--bs-cyan", + 407, 415, { - "value": "bs-cyan" + "value": "--bs-cyan" } ], [ @@ -565,31 +385,13 @@ export const bootstrapTokens = [ 424, null ], - [ - "delim-token", - "-", - 425, - 425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 426, - 426, - { - "value": "-" - } - ], [ "ident-token", - "bs-black", - 427, + "--bs-black", + 425, 434, { - "value": "bs-black" + "value": "--bs-black" } ], [ @@ -616,31 +418,13 @@ export const bootstrapTokens = [ 440, null ], - [ - "delim-token", - "-", - 441, - 441, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 442, - 442, - { - "value": "-" - } - ], [ "ident-token", - "bs-white", - 443, + "--bs-white", + 441, 450, { - "value": "bs-white" + "value": "--bs-white" } ], [ @@ -667,31 +451,13 @@ export const bootstrapTokens = [ 456, null ], - [ - "delim-token", - "-", - 457, - 457, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 458, - 458, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray", - 459, + "--bs-gray", + 457, 465, { - "value": "bs-gray" + "value": "--bs-gray" } ], [ @@ -718,31 +484,13 @@ export const bootstrapTokens = [ 474, null ], - [ - "delim-token", - "-", - 475, - 475, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 476, - 476, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-dark", - 477, + "--bs-gray-dark", + 475, 488, { - "value": "bs-gray-dark" + "value": "--bs-gray-dark" } ], [ @@ -769,31 +517,13 @@ export const bootstrapTokens = [ 497, null ], - [ - "delim-token", - "-", - 498, - 498, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 499, - 499, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-100", - 500, + "--bs-gray-100", + 498, 510, { - "value": "bs-gray-100" + "value": "--bs-gray-100" } ], [ @@ -820,31 +550,13 @@ export const bootstrapTokens = [ 519, null ], - [ - "delim-token", - "-", - 520, - 520, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 521, - 521, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-200", - 522, + "--bs-gray-200", + 520, 532, { - "value": "bs-gray-200" + "value": "--bs-gray-200" } ], [ @@ -871,31 +583,13 @@ export const bootstrapTokens = [ 541, null ], - [ - "delim-token", - "-", - 542, - 542, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 543, - 543, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-300", - 544, + "--bs-gray-300", + 542, 554, { - "value": "bs-gray-300" + "value": "--bs-gray-300" } ], [ @@ -922,31 +616,13 @@ export const bootstrapTokens = [ 563, null ], - [ - "delim-token", - "-", - 564, - 564, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 565, - 565, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-400", - 566, + "--bs-gray-400", + 564, 576, { - "value": "bs-gray-400" + "value": "--bs-gray-400" } ], [ @@ -973,31 +649,13 @@ export const bootstrapTokens = [ 585, null ], - [ - "delim-token", - "-", - 586, - 586, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 587, - 587, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-500", - 588, + "--bs-gray-500", + 586, 598, { - "value": "bs-gray-500" + "value": "--bs-gray-500" } ], [ @@ -1024,31 +682,13 @@ export const bootstrapTokens = [ 607, null ], - [ - "delim-token", - "-", - 608, - 608, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 609, - 609, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-600", - 610, + "--bs-gray-600", + 608, 620, { - "value": "bs-gray-600" + "value": "--bs-gray-600" } ], [ @@ -1075,31 +715,13 @@ export const bootstrapTokens = [ 629, null ], - [ - "delim-token", - "-", - 630, - 630, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 631, - 631, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-700", - 632, + "--bs-gray-700", + 630, 642, { - "value": "bs-gray-700" + "value": "--bs-gray-700" } ], [ @@ -1126,31 +748,13 @@ export const bootstrapTokens = [ 651, null ], - [ - "delim-token", - "-", - 652, - 652, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 653, - 653, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-800", - 654, + "--bs-gray-800", + 652, 664, { - "value": "bs-gray-800" + "value": "--bs-gray-800" } ], [ @@ -1177,31 +781,13 @@ export const bootstrapTokens = [ 673, null ], - [ - "delim-token", - "-", - 674, - 674, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 675, - 675, - { - "value": "-" - } - ], [ "ident-token", - "bs-gray-900", - 676, + "--bs-gray-900", + 674, 686, { - "value": "bs-gray-900" + "value": "--bs-gray-900" } ], [ @@ -1228,31 +814,13 @@ export const bootstrapTokens = [ 695, null ], - [ - "delim-token", - "-", - 696, - 696, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 697, - 697, - { - "value": "-" - } - ], [ "ident-token", - "bs-primary", - 698, + "--bs-primary", + 696, 707, { - "value": "bs-primary" + "value": "--bs-primary" } ], [ @@ -1279,31 +847,13 @@ export const bootstrapTokens = [ 716, null ], - [ - "delim-token", - "-", - 717, - 717, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 718, - 718, - { - "value": "-" - } - ], [ "ident-token", - "bs-secondary", - 719, + "--bs-secondary", + 717, 730, { - "value": "bs-secondary" + "value": "--bs-secondary" } ], [ @@ -1330,31 +880,13 @@ export const bootstrapTokens = [ 739, null ], - [ - "delim-token", - "-", - 740, - 740, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 741, - 741, - { - "value": "-" - } - ], [ "ident-token", - "bs-success", - 742, + "--bs-success", + 740, 751, { - "value": "bs-success" + "value": "--bs-success" } ], [ @@ -1381,31 +913,13 @@ export const bootstrapTokens = [ 760, null ], - [ - "delim-token", - "-", - 761, - 761, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 762, - 762, - { - "value": "-" - } - ], [ "ident-token", - "bs-info", - 763, + "--bs-info", + 761, 769, { - "value": "bs-info" + "value": "--bs-info" } ], [ @@ -1432,31 +946,13 @@ export const bootstrapTokens = [ 778, null ], - [ - "delim-token", - "-", - 779, - 779, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 780, - 780, - { - "value": "-" - } - ], [ "ident-token", - "bs-warning", - 781, + "--bs-warning", + 779, 790, { - "value": "bs-warning" + "value": "--bs-warning" } ], [ @@ -1483,31 +979,13 @@ export const bootstrapTokens = [ 799, null ], - [ - "delim-token", - "-", - 800, - 800, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 801, - 801, - { - "value": "-" - } - ], [ "ident-token", - "bs-danger", - 802, + "--bs-danger", + 800, 810, { - "value": "bs-danger" + "value": "--bs-danger" } ], [ @@ -1534,31 +1012,13 @@ export const bootstrapTokens = [ 819, null ], - [ - "delim-token", - "-", - 820, - 820, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 821, - 821, - { - "value": "-" - } - ], [ "ident-token", - "bs-light", - 822, + "--bs-light", + 820, 829, { - "value": "bs-light" + "value": "--bs-light" } ], [ @@ -1585,31 +1045,13 @@ export const bootstrapTokens = [ 838, null ], - [ - "delim-token", - "-", - 839, - 839, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 840, - 840, - { - "value": "-" - } - ], [ "ident-token", - "bs-dark", - 841, + "--bs-dark", + 839, 847, { - "value": "bs-dark" + "value": "--bs-dark" } ], [ @@ -1636,31 +1078,13 @@ export const bootstrapTokens = [ 856, null ], - [ - "delim-token", - "-", - 857, - 857, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 858, - 858, - { - "value": "-" - } - ], [ "ident-token", - "bs-primary-rgb", - 859, + "--bs-primary-rgb", + 857, 872, { - "value": "bs-primary-rgb" + "value": "--bs-primary-rgb" } ], [ @@ -1721,31 +1145,13 @@ export const bootstrapTokens = [ 884, null ], - [ - "delim-token", - "-", - 885, - 885, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 886, - 886, - { - "value": "-" - } - ], [ "ident-token", - "bs-secondary-rgb", - 887, + "--bs-secondary-rgb", + 885, 902, { - "value": "bs-secondary-rgb" + "value": "--bs-secondary-rgb" } ], [ @@ -1806,31 +1212,13 @@ export const bootstrapTokens = [ 915, null ], - [ - "delim-token", - "-", - 916, - 916, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 917, - 917, - { - "value": "-" - } - ], [ "ident-token", - "bs-success-rgb", - 918, + "--bs-success-rgb", + 916, 931, { - "value": "bs-success-rgb" + "value": "--bs-success-rgb" } ], [ @@ -1891,31 +1279,13 @@ export const bootstrapTokens = [ 942, null ], - [ - "delim-token", - "-", - 943, - 943, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 944, - 944, - { - "value": "-" - } - ], [ "ident-token", - "bs-info-rgb", - 945, + "--bs-info-rgb", + 943, 955, { - "value": "bs-info-rgb" + "value": "--bs-info-rgb" } ], [ @@ -1976,31 +1346,13 @@ export const bootstrapTokens = [ 967, null ], - [ - "delim-token", - "-", - 968, - 968, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 969, - 969, - { - "value": "-" - } - ], [ "ident-token", - "bs-warning-rgb", - 970, + "--bs-warning-rgb", + 968, 983, { - "value": "bs-warning-rgb" + "value": "--bs-warning-rgb" } ], [ @@ -2061,31 +1413,13 @@ export const bootstrapTokens = [ 994, null ], - [ - "delim-token", - "-", - 995, - 995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 996, - 996, - { - "value": "-" - } - ], [ "ident-token", - "bs-danger-rgb", - 997, + "--bs-danger-rgb", + 995, 1009, { - "value": "bs-danger-rgb" + "value": "--bs-danger-rgb" } ], [ @@ -2146,31 +1480,13 @@ export const bootstrapTokens = [ 1020, null ], - [ - "delim-token", - "-", - 1021, - 1021, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1022, - 1022, - { - "value": "-" - } - ], [ "ident-token", - "bs-light-rgb", - 1023, + "--bs-light-rgb", + 1021, 1034, { - "value": "bs-light-rgb" + "value": "--bs-light-rgb" } ], [ @@ -2231,31 +1547,13 @@ export const bootstrapTokens = [ 1047, null ], - [ - "delim-token", - "-", - 1048, - 1048, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1049, - 1049, - { - "value": "-" - } - ], [ "ident-token", - "bs-dark-rgb", - 1050, + "--bs-dark-rgb", + 1048, 1060, { - "value": "bs-dark-rgb" + "value": "--bs-dark-rgb" } ], [ @@ -2316,31 +1614,13 @@ export const bootstrapTokens = [ 1070, null ], - [ - "delim-token", - "-", - 1071, - 1071, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1072, - 1072, - { - "value": "-" - } - ], [ "ident-token", - "bs-white-rgb", - 1073, + "--bs-white-rgb", + 1071, 1084, { - "value": "bs-white-rgb" + "value": "--bs-white-rgb" } ], [ @@ -2401,31 +1681,13 @@ export const bootstrapTokens = [ 1097, null ], - [ - "delim-token", - "-", - 1098, - 1098, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1099, - 1099, - { - "value": "-" - } - ], [ "ident-token", - "bs-black-rgb", - 1100, + "--bs-black-rgb", + 1098, 1111, { - "value": "bs-black-rgb" + "value": "--bs-black-rgb" } ], [ @@ -2486,31 +1748,13 @@ export const bootstrapTokens = [ 1118, null ], - [ - "delim-token", - "-", - 1119, - 1119, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1120, - 1120, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color-rgb", - 1121, + "--bs-body-color-rgb", + 1119, 1137, { - "value": "bs-body-color-rgb" + "value": "--bs-body-color-rgb" } ], [ @@ -2571,31 +1815,13 @@ export const bootstrapTokens = [ 1147, null ], - [ - "delim-token", - "-", - 1148, - 1148, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1149, - 1149, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-bg-rgb", - 1150, + "--bs-body-bg-rgb", + 1148, 1163, { - "value": "bs-body-bg-rgb" + "value": "--bs-body-bg-rgb" } ], [ @@ -2656,31 +1882,13 @@ export const bootstrapTokens = [ 1176, null ], - [ - "delim-token", - "-", - 1177, - 1177, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1178, - 1178, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-sans-serif", - 1179, + "--bs-font-sans-serif", + 1177, 1196, { - "value": "bs-font-sans-serif" + "value": "--bs-font-sans-serif" } ], [ @@ -2706,22 +1914,13 @@ export const bootstrapTokens = [ 1207, null ], - [ - "delim-token", - "-", - 1208, - 1208, - { - "value": "-" - } - ], [ "ident-token", - "apple-system", - 1209, + "-apple-system", + 1208, 1220, { - "value": "apple-system" + "value": "-apple-system" } ], [ @@ -2907,31 +2106,13 @@ export const bootstrapTokens = [ 1377, null ], - [ - "delim-token", - "-", - 1378, - 1378, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1379, - 1379, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-monospace", - 1380, + "--bs-font-monospace", + 1378, 1396, { - "value": "bs-font-monospace" + "value": "--bs-font-monospace" } ], [ @@ -3053,31 +2234,13 @@ export const bootstrapTokens = [ 1476, null ], - [ - "delim-token", - "-", - 1477, - 1477, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1478, - 1478, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 1479, + "--bs-gradient", + 1477, 1489, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -3345,31 +2508,13 @@ export const bootstrapTokens = [ 1565, null ], - [ - "delim-token", - "-", - 1566, - 1566, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1567, - 1567, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-family", - 1568, + "--bs-body-font-family", + 1566, 1586, { - "value": "bs-body-font-family" + "value": "--bs-body-font-family" } ], [ @@ -3388,31 +2533,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 1592, - 1592, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1593, - 1593, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-sans-serif", - 1594, + "--bs-font-sans-serif", + 1592, 1611, { - "value": "bs-font-sans-serif" + "value": "--bs-font-sans-serif" } ], [ @@ -3429,31 +2556,13 @@ export const bootstrapTokens = [ 1613, null ], - [ - "delim-token", - "-", - 1614, - 1614, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1615, - 1615, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-size", - 1616, + "--bs-body-font-size", + 1614, 1632, { - "value": "bs-body-font-size" + "value": "--bs-body-font-size" } ], [ @@ -3481,31 +2590,13 @@ export const bootstrapTokens = [ 1638, null ], - [ - "delim-token", - "-", - 1639, - 1639, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1640, - 1640, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-weight", - 1641, + "--bs-body-font-weight", + 1639, 1659, { - "value": "bs-body-font-weight" + "value": "--bs-body-font-weight" } ], [ @@ -3532,31 +2623,13 @@ export const bootstrapTokens = [ 1664, null ], - [ - "delim-token", - "-", - 1665, - 1665, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1666, - 1666, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-line-height", - 1667, + "--bs-body-line-height", + 1665, 1685, { - "value": "bs-body-line-height" + "value": "--bs-body-line-height" } ], [ @@ -3583,31 +2656,13 @@ export const bootstrapTokens = [ 1690, null ], - [ - "delim-token", - "-", - 1691, - 1691, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1692, - 1692, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 1693, + "--bs-body-color", + 1691, 1705, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -3634,31 +2689,13 @@ export const bootstrapTokens = [ 1714, null ], - [ - "delim-token", - "-", - 1715, - 1715, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1716, - 1716, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-bg", - 1717, + "--bs-body-bg", + 1715, 1726, { - "value": "bs-body-bg" + "value": "--bs-body-bg" } ], [ @@ -3685,31 +2722,13 @@ export const bootstrapTokens = [ 1732, null ], - [ - "delim-token", - "-", - 1733, - 1733, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1734, - 1734, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 1735, + "--bs-border-width", + 1733, 1749, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -3737,31 +2756,13 @@ export const bootstrapTokens = [ 1754, null ], - [ - "delim-token", - "-", - 1755, - 1755, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1756, - 1756, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 1757, + "--bs-border-style", + 1755, 1771, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -3787,31 +2788,13 @@ export const bootstrapTokens = [ 1778, null ], - [ - "delim-token", - "-", - 1779, - 1779, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1780, - 1780, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 1781, + "--bs-border-color", + 1779, 1795, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -3838,31 +2821,13 @@ export const bootstrapTokens = [ 1804, null ], - [ - "delim-token", - "-", - 1805, - 1805, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1806, - 1806, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 1807, + "--bs-border-color-translucent", + 1805, 1833, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -3977,31 +2942,13 @@ export const bootstrapTokens = [ 1855, null ], - [ - "delim-token", - "-", - 1856, - 1856, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1857, - 1857, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 1858, + "--bs-border-radius", + 1856, 1873, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -4029,31 +2976,13 @@ export const bootstrapTokens = [ 1883, null ], - [ - "delim-token", - "-", - 1884, - 1884, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1885, - 1885, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-sm", - 1886, + "--bs-border-radius-sm", + 1884, 1904, { - "value": "bs-border-radius-sm" + "value": "--bs-border-radius-sm" } ], [ @@ -4081,31 +3010,13 @@ export const bootstrapTokens = [ 1913, null ], - [ - "delim-token", - "-", - 1914, - 1914, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1915, - 1915, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-lg", - 1916, + "--bs-border-radius-lg", + 1914, 1934, { - "value": "bs-border-radius-lg" + "value": "--bs-border-radius-lg" } ], [ @@ -4133,31 +3044,13 @@ export const bootstrapTokens = [ 1942, null ], - [ - "delim-token", - "-", - 1943, - 1943, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1944, - 1944, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-xl", - 1945, + "--bs-border-radius-xl", + 1943, 1963, { - "value": "bs-border-radius-xl" + "value": "--bs-border-radius-xl" } ], [ @@ -4185,31 +3078,13 @@ export const bootstrapTokens = [ 1969, null ], - [ - "delim-token", - "-", - 1970, - 1970, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1971, - 1971, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-2xl", - 1972, + "--bs-border-radius-2xl", + 1970, 1991, { - "value": "bs-border-radius-2xl" + "value": "--bs-border-radius-2xl" } ], [ @@ -4237,31 +3112,13 @@ export const bootstrapTokens = [ 1997, null ], - [ - "delim-token", - "-", - 1998, - 1998, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 1999, - 1999, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-pill", - 2000, + "--bs-border-radius-pill", + 1998, 2020, { - "value": "bs-border-radius-pill" + "value": "--bs-border-radius-pill" } ], [ @@ -4289,31 +3146,13 @@ export const bootstrapTokens = [ 2027, null ], - [ - "delim-token", - "-", - 2028, - 2028, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2029, - 2029, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-color", - 2030, + "--bs-link-color", + 2028, 2042, { - "value": "bs-link-color" + "value": "--bs-link-color" } ], [ @@ -4340,31 +3179,13 @@ export const bootstrapTokens = [ 2051, null ], - [ - "delim-token", - "-", - 2052, - 2052, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2053, - 2053, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 2054, + "--bs-link-hover-color", + 2052, 2072, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -4391,31 +3212,13 @@ export const bootstrapTokens = [ 2081, null ], - [ - "delim-token", - "-", - 2082, - 2082, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2083, - 2083, - { - "value": "-" - } - ], [ "ident-token", - "bs-code-color", - 2084, + "--bs-code-color", + 2082, 2096, { - "value": "bs-code-color" + "value": "--bs-code-color" } ], [ @@ -4442,31 +3245,13 @@ export const bootstrapTokens = [ 2105, null ], - [ - "delim-token", - "-", - 2106, - 2106, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2107, - 2107, - { - "value": "-" - } - ], [ "ident-token", - "bs-highlight-bg", - 2108, + "--bs-highlight-bg", + 2106, 2122, { - "value": "bs-highlight-bg" + "value": "--bs-highlight-bg" } ], [ @@ -4799,31 +3584,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2279, - 2279, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2280, - 2280, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-family", - 2281, + "--bs-body-font-family", + 2279, 2299, { - "value": "bs-body-font-family" + "value": "--bs-body-font-family" } ], [ @@ -4865,31 +3632,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2316, - 2316, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2317, - 2317, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-size", - 2318, + "--bs-body-font-size", + 2316, 2334, { - "value": "bs-body-font-size" + "value": "--bs-body-font-size" } ], [ @@ -4931,31 +3680,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2353, - 2353, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2354, - 2354, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-font-weight", - 2355, + "--bs-body-font-weight", + 2353, 2373, { - "value": "bs-body-font-weight" + "value": "--bs-body-font-weight" } ], [ @@ -4997,31 +3728,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2392, - 2392, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2393, - 2393, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-line-height", - 2394, + "--bs-body-line-height", + 2392, 2412, { - "value": "bs-body-line-height" + "value": "--bs-body-line-height" } ], [ @@ -5063,31 +3776,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2425, - 2425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2426, - 2426, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 2427, + "--bs-body-color", + 2425, 2439, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -5129,31 +3824,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2457, - 2457, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2458, - 2458, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-text-align", - 2459, + "--bs-body-text-align", + 2457, 2476, { - "value": "bs-body-text-align" + "value": "--bs-body-text-align" } ], [ @@ -5195,31 +3872,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 2500, - 2500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 2501, - 2501, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-bg", - 2502, + "--bs-body-bg", + 2500, 2511, { - "value": "bs-body-bg" + "value": "--bs-body-bg" } ], [ @@ -5236,22 +3895,13 @@ export const bootstrapTokens = [ 2513, null ], - [ - "delim-token", - "-", - 2514, - 2514, - { - "value": "-" - } - ], [ "ident-token", - "webkit-text-size-adjust", - 2515, + "-webkit-text-size-adjust", + 2514, 2537, { - "value": "webkit-text-size-adjust" + "value": "-webkit-text-size-adjust" } ], [ @@ -5277,22 +3927,13 @@ export const bootstrapTokens = [ 2543, null ], - [ - "delim-token", - "-", - 2544, - 2544, - { - "value": "-" - } - ], [ "ident-token", - "webkit-tap-highlight-color", - 2545, + "-webkit-tap-highlight-color", + 2544, 2570, { - "value": "webkit-tap-highlight-color" + "value": "-webkit-tap-highlight-color" } ], [ @@ -7268,22 +5909,13 @@ export const bootstrapTokens = [ 3214, null ], - [ - "delim-token", - "-", - 3215, - 3215, - { - "value": "-" - } - ], [ "ident-token", - "webkit-text-decoration", - 3216, + "-webkit-text-decoration", + 3215, 3237, { - "value": "webkit-text-decoration" + "value": "-webkit-text-decoration" } ], [ @@ -7405,22 +6037,13 @@ export const bootstrapTokens = [ 3300, null ], - [ - "delim-token", - "-", - 3301, - 3301, - { - "value": "-" - } - ], [ "ident-token", - "webkit-text-decoration-skip-ink", - 3302, + "-webkit-text-decoration-skip-ink", + 3301, 3332, { - "value": "webkit-text-decoration-skip-ink" + "value": "-webkit-text-decoration-skip-ink" } ], [ @@ -8389,31 +7012,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 3728, - 3728, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 3729, - 3729, - { - "value": "-" - } - ], [ "ident-token", - "bs-highlight-bg", - 3730, + "--bs-highlight-bg", + 3728, 3744, { - "value": "bs-highlight-bg" + "value": "--bs-highlight-bg" } ], [ @@ -8734,31 +7339,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 3871, - 3871, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 3872, - 3872, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-color", - 3873, + "--bs-link-color", + 3871, 3885, { - "value": "bs-link-color" + "value": "--bs-link-color" } ], [ @@ -8864,31 +7451,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 3932, - 3932, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 3933, - 3933, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 3934, + "--bs-link-hover-color", + 3932, 3952, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -9290,31 +7859,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 4084, - 4084, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 4085, - 4085, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-monospace", - 4086, + "--bs-font-monospace", + 4084, 4102, { - "value": "bs-font-monospace" + "value": "--bs-font-monospace" } ], [ @@ -9749,31 +8300,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 4291, - 4291, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 4292, - 4292, - { - "value": "-" - } - ], [ "ident-token", - "bs-code-color", - 4293, + "--bs-code-color", + 4291, 4305, { - "value": "bs-code-color" + "value": "--bs-code-color" } ], [ @@ -10015,31 +8548,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 4406, - 4406, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 4407, - 4407, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-bg", - 4408, + "--bs-body-bg", + 4406, 4417, { - "value": "bs-body-bg" + "value": "--bs-body-bg" } ], [ @@ -10081,31 +8596,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 4441, - 4441, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 4442, - 4442, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 4443, + "--bs-body-color", + 4441, 4455, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -10696,22 +9193,13 @@ export const bootstrapTokens = [ 4724, null ], - [ - "delim-token", - "-", - 4725, - 4725, - { - "value": "-" - } - ], [ "ident-token", - "webkit-match-parent", - 4726, + "-webkit-match-parent", + 4725, 4744, { - "value": "webkit-match-parent" + "value": "-webkit-match-parent" } ], [ @@ -11938,22 +10426,13 @@ export const bootstrapTokens = [ 5242, null ], - [ - "delim-token", - "-", - 5243, - 5243, - { - "value": "-" - } - ], [ "ident-token", - "webkit-calendar-picker-indicator", - 5244, + "-webkit-calendar-picker-indicator", + 5243, 5275, { - "value": "webkit-calendar-picker-indicator" + "value": "-webkit-calendar-picker-indicator" } ], [ @@ -12173,22 +10652,13 @@ export const bootstrapTokens = [ 5347, null ], - [ - "delim-token", - "-", - 5348, - 5348, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 5349, + "-webkit-appearance", + 5348, 5365, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -12576,22 +11046,13 @@ export const bootstrapTokens = [ 5498, null ], - [ - "delim-token", - "-", - 5499, - 5499, - { - "value": "-" - } - ], [ "ident-token", - "moz-focus-inner", - 5500, + "-moz-focus-inner", + 5499, 5514, { - "value": "moz-focus-inner" + "value": "-moz-focus-inner" } ], [ @@ -13326,22 +11787,13 @@ export const bootstrapTokens = [ 5801, null ], - [ - "delim-token", - "-", - 5802, - 5802, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-day-field", - 5803, + "-webkit-datetime-edit-day-field", + 5802, 5832, { - "value": "webkit-datetime-edit-day-field" + "value": "-webkit-datetime-edit-day-field" } ], [ @@ -13365,22 +11817,13 @@ export const bootstrapTokens = [ 5835, null ], - [ - "delim-token", - "-", - 5836, - 5836, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-fields-wrapper", - 5837, + "-webkit-datetime-edit-fields-wrapper", + 5836, 5871, { - "value": "webkit-datetime-edit-fields-wrapper" + "value": "-webkit-datetime-edit-fields-wrapper" } ], [ @@ -13404,22 +11847,13 @@ export const bootstrapTokens = [ 5874, null ], - [ - "delim-token", - "-", - 5875, - 5875, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-hour-field", - 5876, + "-webkit-datetime-edit-hour-field", + 5875, 5906, { - "value": "webkit-datetime-edit-hour-field" + "value": "-webkit-datetime-edit-hour-field" } ], [ @@ -13443,22 +11877,13 @@ export const bootstrapTokens = [ 5909, null ], - [ - "delim-token", - "-", - 5910, - 5910, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-minute", - 5911, + "-webkit-datetime-edit-minute", + 5910, 5937, { - "value": "webkit-datetime-edit-minute" + "value": "-webkit-datetime-edit-minute" } ], [ @@ -13482,22 +11907,13 @@ export const bootstrapTokens = [ 5940, null ], - [ - "delim-token", - "-", - 5941, - 5941, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-month-field", - 5942, + "-webkit-datetime-edit-month-field", + 5941, 5973, { - "value": "webkit-datetime-edit-month-field" + "value": "-webkit-datetime-edit-month-field" } ], [ @@ -13521,22 +11937,13 @@ export const bootstrapTokens = [ 5976, null ], - [ - "delim-token", - "-", - 5977, - 5977, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-text", - 5978, + "-webkit-datetime-edit-text", + 5977, 6002, { - "value": "webkit-datetime-edit-text" + "value": "-webkit-datetime-edit-text" } ], [ @@ -13560,22 +11967,13 @@ export const bootstrapTokens = [ 6005, null ], - [ - "delim-token", - "-", - 6006, - 6006, - { - "value": "-" - } - ], [ "ident-token", - "webkit-datetime-edit-year-field", - 6007, + "-webkit-datetime-edit-year-field", + 6006, 6037, { - "value": "webkit-datetime-edit-year-field" + "value": "-webkit-datetime-edit-year-field" } ], [ @@ -13632,22 +12030,13 @@ export const bootstrapTokens = [ 6050, null ], - [ - "delim-token", - "-", - 6051, - 6051, - { - "value": "-" - } - ], [ "ident-token", - "webkit-inner-spin-button", - 6052, + "-webkit-inner-spin-button", + 6051, 6075, { - "value": "webkit-inner-spin-button" + "value": "-webkit-inner-spin-button" } ], [ @@ -13771,22 +12160,13 @@ export const bootstrapTokens = [ 6122, null ], - [ - "delim-token", - "-", - 6123, - 6123, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 6124, + "-webkit-appearance", + 6123, 6140, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -13826,22 +12206,13 @@ export const bootstrapTokens = [ 6153, null ], - [ - "delim-token", - "-", - 6154, - 6154, - { - "value": "-" - } - ], [ "ident-token", - "webkit-search-decoration", - 6155, + "-webkit-search-decoration", + 6154, 6178, { - "value": "webkit-search-decoration" + "value": "-webkit-search-decoration" } ], [ @@ -13851,22 +12222,13 @@ export const bootstrapTokens = [ 6179, null ], - [ - "delim-token", - "-", - 6180, - 6180, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 6181, + "-webkit-appearance", + 6180, 6197, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -13906,22 +12268,13 @@ export const bootstrapTokens = [ 6205, null ], - [ - "delim-token", - "-", - 6206, - 6206, - { - "value": "-" - } - ], [ "ident-token", - "webkit-color-swatch-wrapper", - 6207, + "-webkit-color-swatch-wrapper", + 6206, 6233, { - "value": "webkit-color-swatch-wrapper" + "value": "-webkit-color-swatch-wrapper" } ], [ @@ -13978,22 +12331,13 @@ export const bootstrapTokens = [ 6246, null ], - [ - "delim-token", - "-", - 6247, - 6247, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 6248, + "-webkit-file-upload-button", + 6247, 6272, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -14035,22 +12379,13 @@ export const bootstrapTokens = [ 6286, null ], - [ - "delim-token", - "-", - 6287, - 6287, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 6288, + "-webkit-appearance", + 6287, 6304, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -14138,22 +12473,13 @@ export const bootstrapTokens = [ 6348, null ], - [ - "delim-token", - "-", - 6349, - 6349, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 6350, + "-webkit-appearance", + 6349, 6366, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -17488,31 +15814,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 7908, - 7908, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 7909, - 7909, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 7910, + "--bs-border-color", + 7908, 7924, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -18043,31 +16351,13 @@ export const bootstrapTokens = [ 8196, null ], - [ - "delim-token", - "-", - 8197, - 8197, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8198, - 8198, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 8199, + "--bs-gutter-x", + 8197, 8209, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -18095,31 +16385,13 @@ export const bootstrapTokens = [ 8217, null ], - [ - "delim-token", - "-", - 8218, - 8218, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8219, - 8219, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 8220, + "--bs-gutter-y", + 8218, 8230, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -18212,31 +16484,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 8268, - 8268, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8269, - 8269, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 8270, + "--bs-gutter-x", + 8268, 8280, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -18327,31 +16581,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 8311, - 8311, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8312, - 8312, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 8313, + "--bs-gutter-x", + 8311, 8323, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -19522,31 +17758,13 @@ export const bootstrapTokens = [ 8851, null ], - [ - "delim-token", - "-", - 8852, - 8852, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8853, - 8853, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 8854, + "--bs-gutter-x", + 8852, 8864, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -19574,31 +17792,13 @@ export const bootstrapTokens = [ 8872, null ], - [ - "delim-token", - "-", - 8873, - 8873, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8874, - 8874, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 8875, + "--bs-gutter-y", + 8873, 8885, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -19756,31 +17956,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 8942, - 8942, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8943, - 8943, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 8944, + "--bs-gutter-y", + 8942, 8954, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -19871,31 +18053,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 8986, - 8986, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 8987, - 8987, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 8988, + "--bs-gutter-x", + 8986, 8998, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -19986,31 +18150,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 9029, - 9029, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 9030, - 9030, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 9031, + "--bs-gutter-x", + 9029, 9041, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -20208,31 +18354,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 9115, - 9115, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 9116, - 9116, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 9117, + "--bs-gutter-x", + 9115, 9127, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -20323,31 +18451,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 9158, - 9158, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 9159, - 9159, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 9160, + "--bs-gutter-x", + 9158, 9170, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -20429,31 +18539,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 9194, - 9194, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 9195, - 9195, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 9196, + "--bs-gutter-y", + 9194, 9206, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -23824,31 +21916,13 @@ export const bootstrapTokens = [ 10370, null ], - [ - "delim-token", - "-", - 10371, - 10371, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10372, - 10372, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10373, + "--bs-gutter-x", + 10371, 10383, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -23925,31 +21999,13 @@ export const bootstrapTokens = [ 10397, null ], - [ - "delim-token", - "-", - 10398, - 10398, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10399, - 10399, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10400, + "--bs-gutter-y", + 10398, 10410, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -24026,31 +22082,13 @@ export const bootstrapTokens = [ 10424, null ], - [ - "delim-token", - "-", - 10425, - 10425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10426, - 10426, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10427, + "--bs-gutter-x", + 10425, 10437, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -24128,31 +22166,13 @@ export const bootstrapTokens = [ 10457, null ], - [ - "delim-token", - "-", - 10458, - 10458, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10459, - 10459, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10460, + "--bs-gutter-y", + 10458, 10470, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -24230,31 +22250,13 @@ export const bootstrapTokens = [ 10490, null ], - [ - "delim-token", - "-", - 10491, - 10491, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10492, - 10492, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10493, + "--bs-gutter-x", + 10491, 10503, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -24332,31 +22334,13 @@ export const bootstrapTokens = [ 10522, null ], - [ - "delim-token", - "-", - 10523, - 10523, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10524, - 10524, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10525, + "--bs-gutter-y", + 10523, 10535, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -24434,31 +22418,13 @@ export const bootstrapTokens = [ 10554, null ], - [ - "delim-token", - "-", - 10555, - 10555, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10556, - 10556, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10557, + "--bs-gutter-x", + 10555, 10567, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -24536,31 +22502,13 @@ export const bootstrapTokens = [ 10584, null ], - [ - "delim-token", - "-", - 10585, - 10585, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10586, - 10586, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10587, + "--bs-gutter-y", + 10585, 10597, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -24638,31 +22586,13 @@ export const bootstrapTokens = [ 10614, null ], - [ - "delim-token", - "-", - 10615, - 10615, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10616, - 10616, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10617, + "--bs-gutter-x", + 10615, 10627, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -24740,31 +22670,13 @@ export const bootstrapTokens = [ 10646, null ], - [ - "delim-token", - "-", - 10647, - 10647, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10648, - 10648, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10649, + "--bs-gutter-y", + 10647, 10659, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -24842,31 +22754,13 @@ export const bootstrapTokens = [ 10678, null ], - [ - "delim-token", - "-", - 10679, - 10679, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10680, - 10680, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 10681, + "--bs-gutter-x", + 10679, 10691, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -24944,31 +22838,13 @@ export const bootstrapTokens = [ 10708, null ], - [ - "delim-token", - "-", - 10709, - 10709, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 10710, - 10710, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 10711, + "--bs-gutter-y", + 10709, 10721, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -28472,31 +26348,13 @@ export const bootstrapTokens = [ 12043, null ], - [ - "delim-token", - "-", - 12044, - 12044, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12045, - 12045, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12046, + "--bs-gutter-x", + 12044, 12056, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -28573,31 +26431,13 @@ export const bootstrapTokens = [ 12076, null ], - [ - "delim-token", - "-", - 12077, - 12077, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12078, - 12078, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12079, + "--bs-gutter-y", + 12077, 12089, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -28674,31 +26514,13 @@ export const bootstrapTokens = [ 12109, null ], - [ - "delim-token", - "-", - 12110, - 12110, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12111, - 12111, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12112, + "--bs-gutter-x", + 12110, 12122, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -28776,31 +26598,13 @@ export const bootstrapTokens = [ 12148, null ], - [ - "delim-token", - "-", - 12149, - 12149, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12150, - 12150, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12151, + "--bs-gutter-y", + 12149, 12161, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -28878,31 +26682,13 @@ export const bootstrapTokens = [ 12187, null ], - [ - "delim-token", - "-", - 12188, - 12188, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12189, - 12189, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12190, + "--bs-gutter-x", + 12188, 12200, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -28980,31 +26766,13 @@ export const bootstrapTokens = [ 12225, null ], - [ - "delim-token", - "-", - 12226, - 12226, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12227, - 12227, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12228, + "--bs-gutter-y", + 12226, 12238, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -29082,31 +26850,13 @@ export const bootstrapTokens = [ 12263, null ], - [ - "delim-token", - "-", - 12264, - 12264, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12265, - 12265, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12266, + "--bs-gutter-x", + 12264, 12276, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -29184,31 +26934,13 @@ export const bootstrapTokens = [ 12299, null ], - [ - "delim-token", - "-", - 12300, - 12300, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12301, - 12301, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12302, + "--bs-gutter-y", + 12300, 12312, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -29286,31 +27018,13 @@ export const bootstrapTokens = [ 12335, null ], - [ - "delim-token", - "-", - 12336, - 12336, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12337, - 12337, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12338, + "--bs-gutter-x", + 12336, 12348, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -29388,31 +27102,13 @@ export const bootstrapTokens = [ 12373, null ], - [ - "delim-token", - "-", - 12374, - 12374, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12375, - 12375, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12376, + "--bs-gutter-y", + 12374, 12386, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -29490,31 +27186,13 @@ export const bootstrapTokens = [ 12411, null ], - [ - "delim-token", - "-", - 12412, - 12412, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12413, - 12413, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 12414, + "--bs-gutter-x", + 12412, 12424, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -29592,31 +27270,13 @@ export const bootstrapTokens = [ 12447, null ], - [ - "delim-token", - "-", - 12448, - 12448, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 12449, - 12449, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 12450, + "--bs-gutter-y", + 12448, 12460, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -33127,31 +30787,13 @@ export const bootstrapTokens = [ 13783, null ], - [ - "delim-token", - "-", - 13784, - 13784, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13785, - 13785, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 13786, + "--bs-gutter-x", + 13784, 13796, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -33228,31 +30870,13 @@ export const bootstrapTokens = [ 13816, null ], - [ - "delim-token", - "-", - 13817, - 13817, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13818, - 13818, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 13819, + "--bs-gutter-y", + 13817, 13829, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -33329,31 +30953,13 @@ export const bootstrapTokens = [ 13849, null ], - [ - "delim-token", - "-", - 13850, - 13850, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13851, - 13851, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 13852, + "--bs-gutter-x", + 13850, 13862, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -33431,31 +31037,13 @@ export const bootstrapTokens = [ 13888, null ], - [ - "delim-token", - "-", - 13889, - 13889, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13890, - 13890, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 13891, + "--bs-gutter-y", + 13889, 13901, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -33533,31 +31121,13 @@ export const bootstrapTokens = [ 13927, null ], - [ - "delim-token", - "-", - 13928, - 13928, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13929, - 13929, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 13930, + "--bs-gutter-x", + 13928, 13940, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -33635,31 +31205,13 @@ export const bootstrapTokens = [ 13965, null ], - [ - "delim-token", - "-", - 13966, - 13966, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 13967, - 13967, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 13968, + "--bs-gutter-y", + 13966, 13978, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -33737,31 +31289,13 @@ export const bootstrapTokens = [ 14003, null ], - [ - "delim-token", - "-", - 14004, - 14004, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14005, - 14005, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 14006, + "--bs-gutter-x", + 14004, 14016, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -33839,31 +31373,13 @@ export const bootstrapTokens = [ 14039, null ], - [ - "delim-token", - "-", - 14040, - 14040, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14041, - 14041, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 14042, + "--bs-gutter-y", + 14040, 14052, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -33941,31 +31457,13 @@ export const bootstrapTokens = [ 14075, null ], - [ - "delim-token", - "-", - 14076, - 14076, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14077, - 14077, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 14078, + "--bs-gutter-x", + 14076, 14088, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -34043,31 +31541,13 @@ export const bootstrapTokens = [ 14113, null ], - [ - "delim-token", - "-", - 14114, - 14114, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14115, - 14115, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 14116, + "--bs-gutter-y", + 14114, 14126, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -34145,31 +31625,13 @@ export const bootstrapTokens = [ 14151, null ], - [ - "delim-token", - "-", - 14152, - 14152, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14153, - 14153, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 14154, + "--bs-gutter-x", + 14152, 14164, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -34247,31 +31709,13 @@ export const bootstrapTokens = [ 14187, null ], - [ - "delim-token", - "-", - 14188, - 14188, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 14189, - 14189, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 14190, + "--bs-gutter-y", + 14188, 14200, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -37782,31 +35226,13 @@ export const bootstrapTokens = [ 15523, null ], - [ - "delim-token", - "-", - 15524, - 15524, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15525, - 15525, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15526, + "--bs-gutter-x", + 15524, 15536, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -37883,31 +35309,13 @@ export const bootstrapTokens = [ 15556, null ], - [ - "delim-token", - "-", - 15557, - 15557, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15558, - 15558, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15559, + "--bs-gutter-y", + 15557, 15569, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -37984,31 +35392,13 @@ export const bootstrapTokens = [ 15589, null ], - [ - "delim-token", - "-", - 15590, - 15590, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15591, - 15591, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15592, + "--bs-gutter-x", + 15590, 15602, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -38086,31 +35476,13 @@ export const bootstrapTokens = [ 15628, null ], - [ - "delim-token", - "-", - 15629, - 15629, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15630, - 15630, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15631, + "--bs-gutter-y", + 15629, 15641, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -38188,31 +35560,13 @@ export const bootstrapTokens = [ 15667, null ], - [ - "delim-token", - "-", - 15668, - 15668, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15669, - 15669, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15670, + "--bs-gutter-x", + 15668, 15680, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -38290,31 +35644,13 @@ export const bootstrapTokens = [ 15705, null ], - [ - "delim-token", - "-", - 15706, - 15706, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15707, - 15707, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15708, + "--bs-gutter-y", + 15706, 15718, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -38392,31 +35728,13 @@ export const bootstrapTokens = [ 15743, null ], - [ - "delim-token", - "-", - 15744, - 15744, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15745, - 15745, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15746, + "--bs-gutter-x", + 15744, 15756, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -38494,31 +35812,13 @@ export const bootstrapTokens = [ 15779, null ], - [ - "delim-token", - "-", - 15780, - 15780, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15781, - 15781, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15782, + "--bs-gutter-y", + 15780, 15792, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -38596,31 +35896,13 @@ export const bootstrapTokens = [ 15815, null ], - [ - "delim-token", - "-", - 15816, - 15816, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15817, - 15817, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15818, + "--bs-gutter-x", + 15816, 15828, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -38698,31 +35980,13 @@ export const bootstrapTokens = [ 15853, null ], - [ - "delim-token", - "-", - 15854, - 15854, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15855, - 15855, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15856, + "--bs-gutter-y", + 15854, 15866, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -38800,31 +36064,13 @@ export const bootstrapTokens = [ 15891, null ], - [ - "delim-token", - "-", - 15892, - 15892, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15893, - 15893, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 15894, + "--bs-gutter-x", + 15892, 15904, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -38902,31 +36148,13 @@ export const bootstrapTokens = [ 15927, null ], - [ - "delim-token", - "-", - 15928, - 15928, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 15929, - 15929, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 15930, + "--bs-gutter-y", + 15928, 15940, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -42437,31 +39665,13 @@ export const bootstrapTokens = [ 17264, null ], - [ - "delim-token", - "-", - 17265, - 17265, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17266, - 17266, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17267, + "--bs-gutter-x", + 17265, 17277, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -42538,31 +39748,13 @@ export const bootstrapTokens = [ 17297, null ], - [ - "delim-token", - "-", - 17298, - 17298, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17299, - 17299, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17300, + "--bs-gutter-y", + 17298, 17310, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -42639,31 +39831,13 @@ export const bootstrapTokens = [ 17330, null ], - [ - "delim-token", - "-", - 17331, - 17331, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17332, - 17332, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17333, + "--bs-gutter-x", + 17331, 17343, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -42741,31 +39915,13 @@ export const bootstrapTokens = [ 17369, null ], - [ - "delim-token", - "-", - 17370, - 17370, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17371, - 17371, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17372, + "--bs-gutter-y", + 17370, 17382, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -42843,31 +39999,13 @@ export const bootstrapTokens = [ 17408, null ], - [ - "delim-token", - "-", - 17409, - 17409, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17410, - 17410, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17411, + "--bs-gutter-x", + 17409, 17421, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -42945,31 +40083,13 @@ export const bootstrapTokens = [ 17446, null ], - [ - "delim-token", - "-", - 17447, - 17447, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17448, - 17448, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17449, + "--bs-gutter-y", + 17447, 17459, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -43047,31 +40167,13 @@ export const bootstrapTokens = [ 17484, null ], - [ - "delim-token", - "-", - 17485, - 17485, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17486, - 17486, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17487, + "--bs-gutter-x", + 17485, 17497, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -43149,31 +40251,13 @@ export const bootstrapTokens = [ 17520, null ], - [ - "delim-token", - "-", - 17521, - 17521, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17522, - 17522, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17523, + "--bs-gutter-y", + 17521, 17533, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -43251,31 +40335,13 @@ export const bootstrapTokens = [ 17556, null ], - [ - "delim-token", - "-", - 17557, - 17557, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17558, - 17558, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17559, + "--bs-gutter-x", + 17557, 17569, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -43353,31 +40419,13 @@ export const bootstrapTokens = [ 17594, null ], - [ - "delim-token", - "-", - 17595, - 17595, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17596, - 17596, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17597, + "--bs-gutter-y", + 17595, 17607, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -43455,31 +40503,13 @@ export const bootstrapTokens = [ 17632, null ], - [ - "delim-token", - "-", - 17633, - 17633, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17634, - 17634, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 17635, + "--bs-gutter-x", + 17633, 17645, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -43557,31 +40587,13 @@ export const bootstrapTokens = [ 17668, null ], - [ - "delim-token", - "-", - 17669, - 17669, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 17670, - 17670, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 17671, + "--bs-gutter-y", + 17669, 17681, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -47092,31 +44104,13 @@ export const bootstrapTokens = [ 19040, null ], - [ - "delim-token", - "-", - 19041, - 19041, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19042, - 19042, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19043, + "--bs-gutter-x", + 19041, 19053, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -47193,31 +44187,13 @@ export const bootstrapTokens = [ 19075, null ], - [ - "delim-token", - "-", - 19076, - 19076, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19077, - 19077, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19078, + "--bs-gutter-y", + 19076, 19088, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -47294,31 +44270,13 @@ export const bootstrapTokens = [ 19110, null ], - [ - "delim-token", - "-", - 19111, - 19111, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19112, - 19112, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19113, + "--bs-gutter-x", + 19111, 19123, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -47396,31 +44354,13 @@ export const bootstrapTokens = [ 19151, null ], - [ - "delim-token", - "-", - 19152, - 19152, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19153, - 19153, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19154, + "--bs-gutter-y", + 19152, 19164, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -47498,31 +44438,13 @@ export const bootstrapTokens = [ 19192, null ], - [ - "delim-token", - "-", - 19193, - 19193, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19194, - 19194, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19195, + "--bs-gutter-x", + 19193, 19205, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -47600,31 +44522,13 @@ export const bootstrapTokens = [ 19232, null ], - [ - "delim-token", - "-", - 19233, - 19233, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19234, - 19234, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19235, + "--bs-gutter-y", + 19233, 19245, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -47702,31 +44606,13 @@ export const bootstrapTokens = [ 19272, null ], - [ - "delim-token", - "-", - 19273, - 19273, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19274, - 19274, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19275, + "--bs-gutter-x", + 19273, 19285, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -47804,31 +44690,13 @@ export const bootstrapTokens = [ 19310, null ], - [ - "delim-token", - "-", - 19311, - 19311, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19312, - 19312, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19313, + "--bs-gutter-y", + 19311, 19323, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -47906,31 +44774,13 @@ export const bootstrapTokens = [ 19348, null ], - [ - "delim-token", - "-", - 19349, - 19349, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19350, - 19350, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19351, + "--bs-gutter-x", + 19349, 19361, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -48008,31 +44858,13 @@ export const bootstrapTokens = [ 19388, null ], - [ - "delim-token", - "-", - 19389, - 19389, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19390, - 19390, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19391, + "--bs-gutter-y", + 19389, 19401, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -48110,31 +44942,13 @@ export const bootstrapTokens = [ 19428, null ], - [ - "delim-token", - "-", - 19429, - 19429, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19430, - 19430, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-x", - 19431, + "--bs-gutter-x", + 19429, 19441, { - "value": "bs-gutter-x" + "value": "--bs-gutter-x" } ], [ @@ -48212,31 +45026,13 @@ export const bootstrapTokens = [ 19466, null ], - [ - "delim-token", - "-", - 19467, - 19467, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19468, - 19468, - { - "value": "-" - } - ], [ "ident-token", - "bs-gutter-y", - 19469, + "--bs-gutter-y", + 19467, 19479, { - "value": "bs-gutter-y" + "value": "--bs-gutter-y" } ], [ @@ -48296,31 +45092,13 @@ export const bootstrapTokens = [ 19493, null ], - [ - "delim-token", - "-", - 19494, - 19494, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19495, - 19495, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 19496, + "--bs-table-color", + 19494, 19509, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -48339,31 +45117,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19515, - 19515, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19516, - 19516, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 19517, + "--bs-body-color", + 19515, 19529, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -48380,31 +45140,13 @@ export const bootstrapTokens = [ 19531, null ], - [ - "delim-token", - "-", - 19532, - 19532, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19533, - 19533, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 19534, + "--bs-table-bg", + 19532, 19544, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -48430,31 +45172,13 @@ export const bootstrapTokens = [ 19557, null ], - [ - "delim-token", - "-", - 19558, - 19558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19559, - 19559, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 19560, + "--bs-table-border-color", + 19558, 19580, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -48473,31 +45197,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19586, - 19586, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19587, - 19587, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 19588, + "--bs-border-color", + 19586, 19602, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -48514,31 +45220,13 @@ export const bootstrapTokens = [ 19604, null ], - [ - "delim-token", - "-", - 19605, - 19605, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19606, - 19606, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 19607, + "--bs-table-accent-bg", + 19605, 19624, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -48564,31 +45252,13 @@ export const bootstrapTokens = [ 19637, null ], - [ - "delim-token", - "-", - 19638, - 19638, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19639, - 19639, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 19640, + "--bs-table-striped-color", + 19638, 19661, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -48607,31 +45277,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19667, - 19667, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19668, - 19668, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 19669, + "--bs-body-color", + 19667, 19681, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -48648,31 +45300,13 @@ export const bootstrapTokens = [ 19683, null ], - [ - "delim-token", - "-", - 19684, - 19684, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19685, - 19685, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 19686, + "--bs-table-striped-bg", + 19684, 19704, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -48787,31 +45421,13 @@ export const bootstrapTokens = [ 19725, null ], - [ - "delim-token", - "-", - 19726, - 19726, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19727, - 19727, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 19728, + "--bs-table-active-color", + 19726, 19748, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -48830,31 +45446,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19754, - 19754, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19755, - 19755, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 19756, + "--bs-body-color", + 19754, 19768, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -48871,31 +45469,13 @@ export const bootstrapTokens = [ 19770, null ], - [ - "delim-token", - "-", - 19771, - 19771, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19772, - 19772, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 19773, + "--bs-table-active-bg", + 19771, 19790, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -49010,31 +45590,13 @@ export const bootstrapTokens = [ 19810, null ], - [ - "delim-token", - "-", - 19811, - 19811, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19812, - 19812, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 19813, + "--bs-table-hover-color", + 19811, 19832, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -49053,31 +45615,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19838, - 19838, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19839, - 19839, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 19840, + "--bs-body-color", + 19838, 19852, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -49094,31 +45638,13 @@ export const bootstrapTokens = [ 19854, null ], - [ - "delim-token", - "-", - 19855, - 19855, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19856, - 19856, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 19857, + "--bs-table-hover-bg", + 19855, 19873, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -49324,31 +45850,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19936, - 19936, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19937, - 19937, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 19938, + "--bs-table-color", + 19936, 19951, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -49422,31 +45930,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 19990, - 19990, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 19991, - 19991, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 19992, + "--bs-table-border-color", + 19990, 20012, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -49642,31 +46132,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20081, - 20081, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20082, - 20082, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 20083, + "--bs-table-bg", + 20081, 20093, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -49827,31 +46299,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20154, - 20154, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20155, - 20155, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 20156, + "--bs-table-accent-bg", + 20154, 20173, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -50960,31 +47414,13 @@ export const bootstrapTokens = [ 20642, null ], - [ - "delim-token", - "-", - 20643, - 20643, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20644, - 20644, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 20645, + "--bs-table-accent-bg", + 20643, 20662, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -51003,31 +47439,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20668, - 20668, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20669, - 20669, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 20670, + "--bs-table-striped-bg", + 20668, 20688, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -51069,31 +47487,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20701, - 20701, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20702, - 20702, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 20703, + "--bs-table-striped-color", + 20701, 20724, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -51237,31 +47637,13 @@ export const bootstrapTokens = [ 20781, null ], - [ - "delim-token", - "-", - 20782, - 20782, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20783, - 20783, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 20784, + "--bs-table-accent-bg", + 20782, 20801, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -51280,31 +47662,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20807, - 20807, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20808, - 20808, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 20809, + "--bs-table-striped-bg", + 20807, 20827, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -51346,31 +47710,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20840, - 20840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20841, - 20841, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 20842, + "--bs-table-striped-color", + 20840, 20863, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -51412,31 +47758,13 @@ export const bootstrapTokens = [ 20879, null ], - [ - "delim-token", - "-", - 20880, - 20880, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20881, - 20881, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 20882, + "--bs-table-accent-bg", + 20880, 20899, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -51455,31 +47783,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20905, - 20905, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20906, - 20906, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 20907, + "--bs-table-active-bg", + 20905, 20924, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -51521,31 +47831,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 20937, - 20937, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20938, - 20938, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 20939, + "--bs-table-active-color", + 20937, 20959, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -51657,31 +47949,13 @@ export const bootstrapTokens = [ 20991, null ], - [ - "delim-token", - "-", - 20992, - 20992, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 20993, - 20993, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-accent-bg", - 20994, + "--bs-table-accent-bg", + 20992, 21011, { - "value": "bs-table-accent-bg" + "value": "--bs-table-accent-bg" } ], [ @@ -51700,31 +47974,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21017, - 21017, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21018, - 21018, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 21019, + "--bs-table-hover-bg", + 21017, 21035, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -51766,31 +48022,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21048, - 21048, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21049, - 21049, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 21050, + "--bs-table-hover-color", + 21048, 21069, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -51832,31 +48070,13 @@ export const bootstrapTokens = [ 21086, null ], - [ - "delim-token", - "-", - 21087, - 21087, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21088, - 21088, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 21089, + "--bs-table-color", + 21087, 21102, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -51883,31 +48103,13 @@ export const bootstrapTokens = [ 21108, null ], - [ - "delim-token", - "-", - 21109, - 21109, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21110, - 21110, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 21111, + "--bs-table-bg", + 21109, 21121, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -51934,31 +48136,13 @@ export const bootstrapTokens = [ 21130, null ], - [ - "delim-token", - "-", - 21131, - 21131, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21132, - 21132, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 21133, + "--bs-table-border-color", + 21131, 21153, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -51985,31 +48169,13 @@ export const bootstrapTokens = [ 21162, null ], - [ - "delim-token", - "-", - 21163, - 21163, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21164, - 21164, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 21165, + "--bs-table-striped-bg", + 21163, 21183, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -52036,31 +48202,13 @@ export const bootstrapTokens = [ 21192, null ], - [ - "delim-token", - "-", - 21193, - 21193, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21194, - 21194, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 21195, + "--bs-table-striped-color", + 21193, 21216, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -52087,31 +48235,13 @@ export const bootstrapTokens = [ 21222, null ], - [ - "delim-token", - "-", - 21223, - 21223, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21224, - 21224, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 21225, + "--bs-table-active-bg", + 21223, 21242, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -52138,31 +48268,13 @@ export const bootstrapTokens = [ 21251, null ], - [ - "delim-token", - "-", - 21252, - 21252, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21253, - 21253, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 21254, + "--bs-table-active-color", + 21252, 21274, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -52189,31 +48301,13 @@ export const bootstrapTokens = [ 21280, null ], - [ - "delim-token", - "-", - 21281, - 21281, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21282, - 21282, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 21283, + "--bs-table-hover-bg", + 21281, 21299, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -52240,31 +48334,13 @@ export const bootstrapTokens = [ 21308, null ], - [ - "delim-token", - "-", - 21309, - 21309, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21310, - 21310, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 21311, + "--bs-table-hover-color", + 21309, 21330, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -52316,31 +48392,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21347, - 21347, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21348, - 21348, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 21349, + "--bs-table-color", + 21347, 21362, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -52382,31 +48440,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21382, - 21382, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21383, - 21383, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 21384, + "--bs-table-border-color", + 21382, 21404, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -52448,31 +48488,13 @@ export const bootstrapTokens = [ 21423, null ], - [ - "delim-token", - "-", - 21424, - 21424, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21425, - 21425, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 21426, + "--bs-table-color", + 21424, 21439, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -52499,31 +48521,13 @@ export const bootstrapTokens = [ 21445, null ], - [ - "delim-token", - "-", - 21446, - 21446, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21447, - 21447, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 21448, + "--bs-table-bg", + 21446, 21458, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -52550,31 +48554,13 @@ export const bootstrapTokens = [ 21467, null ], - [ - "delim-token", - "-", - 21468, - 21468, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21469, - 21469, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 21470, + "--bs-table-border-color", + 21468, 21490, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -52601,31 +48587,13 @@ export const bootstrapTokens = [ 21499, null ], - [ - "delim-token", - "-", - 21500, - 21500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21501, - 21501, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 21502, + "--bs-table-striped-bg", + 21500, 21520, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -52652,31 +48620,13 @@ export const bootstrapTokens = [ 21529, null ], - [ - "delim-token", - "-", - 21530, - 21530, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21531, - 21531, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 21532, + "--bs-table-striped-color", + 21530, 21553, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -52703,31 +48653,13 @@ export const bootstrapTokens = [ 21559, null ], - [ - "delim-token", - "-", - 21560, - 21560, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21561, - 21561, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 21562, + "--bs-table-active-bg", + 21560, 21579, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -52754,31 +48686,13 @@ export const bootstrapTokens = [ 21588, null ], - [ - "delim-token", - "-", - 21589, - 21589, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21590, - 21590, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 21591, + "--bs-table-active-color", + 21589, 21611, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -52805,31 +48719,13 @@ export const bootstrapTokens = [ 21617, null ], - [ - "delim-token", - "-", - 21618, - 21618, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21619, - 21619, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 21620, + "--bs-table-hover-bg", + 21618, 21636, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -52856,31 +48752,13 @@ export const bootstrapTokens = [ 21645, null ], - [ - "delim-token", - "-", - 21646, - 21646, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21647, - 21647, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 21648, + "--bs-table-hover-color", + 21646, 21667, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -52932,31 +48810,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21684, - 21684, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21685, - 21685, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 21686, + "--bs-table-color", + 21684, 21699, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -52998,31 +48858,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 21719, - 21719, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21720, - 21720, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 21721, + "--bs-table-border-color", + 21719, 21741, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -53064,31 +48906,13 @@ export const bootstrapTokens = [ 21758, null ], - [ - "delim-token", - "-", - 21759, - 21759, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21760, - 21760, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 21761, + "--bs-table-color", + 21759, 21774, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -53115,31 +48939,13 @@ export const bootstrapTokens = [ 21780, null ], - [ - "delim-token", - "-", - 21781, - 21781, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21782, - 21782, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 21783, + "--bs-table-bg", + 21781, 21793, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -53166,31 +48972,13 @@ export const bootstrapTokens = [ 21802, null ], - [ - "delim-token", - "-", - 21803, - 21803, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21804, - 21804, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 21805, + "--bs-table-border-color", + 21803, 21825, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -53217,31 +49005,13 @@ export const bootstrapTokens = [ 21834, null ], - [ - "delim-token", - "-", - 21835, - 21835, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21836, - 21836, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 21837, + "--bs-table-striped-bg", + 21835, 21855, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -53268,31 +49038,13 @@ export const bootstrapTokens = [ 21864, null ], - [ - "delim-token", - "-", - 21865, - 21865, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21866, - 21866, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 21867, + "--bs-table-striped-color", + 21865, 21888, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -53319,31 +49071,13 @@ export const bootstrapTokens = [ 21894, null ], - [ - "delim-token", - "-", - 21895, - 21895, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21896, - 21896, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 21897, + "--bs-table-active-bg", + 21895, 21914, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -53370,31 +49104,13 @@ export const bootstrapTokens = [ 21923, null ], - [ - "delim-token", - "-", - 21924, - 21924, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21925, - 21925, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 21926, + "--bs-table-active-color", + 21924, 21946, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -53421,31 +49137,13 @@ export const bootstrapTokens = [ 21952, null ], - [ - "delim-token", - "-", - 21953, - 21953, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21954, - 21954, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 21955, + "--bs-table-hover-bg", + 21953, 21971, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -53472,31 +49170,13 @@ export const bootstrapTokens = [ 21980, null ], - [ - "delim-token", - "-", - 21981, - 21981, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 21982, - 21982, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 21983, + "--bs-table-hover-color", + 21981, 22002, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -53548,31 +49228,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22019, - 22019, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22020, - 22020, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22021, + "--bs-table-color", + 22019, 22034, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -53614,31 +49276,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22054, - 22054, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22055, - 22055, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22056, + "--bs-table-border-color", + 22054, 22076, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -53680,31 +49324,13 @@ export const bootstrapTokens = [ 22090, null ], - [ - "delim-token", - "-", - 22091, - 22091, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22092, - 22092, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22093, + "--bs-table-color", + 22091, 22106, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -53731,31 +49357,13 @@ export const bootstrapTokens = [ 22112, null ], - [ - "delim-token", - "-", - 22113, - 22113, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22114, - 22114, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 22115, + "--bs-table-bg", + 22113, 22125, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -53782,31 +49390,13 @@ export const bootstrapTokens = [ 22134, null ], - [ - "delim-token", - "-", - 22135, - 22135, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22136, - 22136, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22137, + "--bs-table-border-color", + 22135, 22157, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -53833,31 +49423,13 @@ export const bootstrapTokens = [ 22166, null ], - [ - "delim-token", - "-", - 22167, - 22167, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22168, - 22168, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 22169, + "--bs-table-striped-bg", + 22167, 22187, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -53884,31 +49456,13 @@ export const bootstrapTokens = [ 22196, null ], - [ - "delim-token", - "-", - 22197, - 22197, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22198, - 22198, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 22199, + "--bs-table-striped-color", + 22197, 22220, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -53935,31 +49489,13 @@ export const bootstrapTokens = [ 22226, null ], - [ - "delim-token", - "-", - 22227, - 22227, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22228, - 22228, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 22229, + "--bs-table-active-bg", + 22227, 22246, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -53986,31 +49522,13 @@ export const bootstrapTokens = [ 22255, null ], - [ - "delim-token", - "-", - 22256, - 22256, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22257, - 22257, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 22258, + "--bs-table-active-color", + 22256, 22278, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -54037,31 +49555,13 @@ export const bootstrapTokens = [ 22284, null ], - [ - "delim-token", - "-", - 22285, - 22285, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22286, - 22286, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 22287, + "--bs-table-hover-bg", + 22285, 22303, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -54088,31 +49588,13 @@ export const bootstrapTokens = [ 22312, null ], - [ - "delim-token", - "-", - 22313, - 22313, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22314, - 22314, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 22315, + "--bs-table-hover-color", + 22313, 22334, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -54164,31 +49646,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22351, - 22351, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22352, - 22352, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22353, + "--bs-table-color", + 22351, 22366, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -54230,31 +49694,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22386, - 22386, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22387, - 22387, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22388, + "--bs-table-border-color", + 22386, 22408, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -54296,31 +49742,13 @@ export const bootstrapTokens = [ 22425, null ], - [ - "delim-token", - "-", - 22426, - 22426, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22427, - 22427, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22428, + "--bs-table-color", + 22426, 22441, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -54347,31 +49775,13 @@ export const bootstrapTokens = [ 22447, null ], - [ - "delim-token", - "-", - 22448, - 22448, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22449, - 22449, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 22450, + "--bs-table-bg", + 22448, 22460, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -54398,31 +49808,13 @@ export const bootstrapTokens = [ 22469, null ], - [ - "delim-token", - "-", - 22470, - 22470, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22471, - 22471, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22472, + "--bs-table-border-color", + 22470, 22492, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -54449,31 +49841,13 @@ export const bootstrapTokens = [ 22501, null ], - [ - "delim-token", - "-", - 22502, - 22502, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22503, - 22503, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 22504, + "--bs-table-striped-bg", + 22502, 22522, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -54500,31 +49874,13 @@ export const bootstrapTokens = [ 22531, null ], - [ - "delim-token", - "-", - 22532, - 22532, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22533, - 22533, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 22534, + "--bs-table-striped-color", + 22532, 22555, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -54551,31 +49907,13 @@ export const bootstrapTokens = [ 22561, null ], - [ - "delim-token", - "-", - 22562, - 22562, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22563, - 22563, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 22564, + "--bs-table-active-bg", + 22562, 22581, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -54602,31 +49940,13 @@ export const bootstrapTokens = [ 22590, null ], - [ - "delim-token", - "-", - 22591, - 22591, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22592, - 22592, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 22593, + "--bs-table-active-color", + 22591, 22613, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -54653,31 +49973,13 @@ export const bootstrapTokens = [ 22619, null ], - [ - "delim-token", - "-", - 22620, - 22620, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22621, - 22621, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 22622, + "--bs-table-hover-bg", + 22620, 22638, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -54704,31 +50006,13 @@ export const bootstrapTokens = [ 22647, null ], - [ - "delim-token", - "-", - 22648, - 22648, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22649, - 22649, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 22650, + "--bs-table-hover-color", + 22648, 22669, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -54780,31 +50064,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22686, - 22686, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22687, - 22687, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22688, + "--bs-table-color", + 22686, 22701, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -54846,31 +50112,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 22721, - 22721, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22722, - 22722, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22723, + "--bs-table-border-color", + 22721, 22743, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -54912,31 +50160,13 @@ export const bootstrapTokens = [ 22759, null ], - [ - "delim-token", - "-", - 22760, - 22760, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22761, - 22761, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 22762, + "--bs-table-color", + 22760, 22775, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -54963,31 +50193,13 @@ export const bootstrapTokens = [ 22781, null ], - [ - "delim-token", - "-", - 22782, - 22782, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22783, - 22783, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 22784, + "--bs-table-bg", + 22782, 22794, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -55014,31 +50226,13 @@ export const bootstrapTokens = [ 22803, null ], - [ - "delim-token", - "-", - 22804, - 22804, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22805, - 22805, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 22806, + "--bs-table-border-color", + 22804, 22826, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -55065,31 +50259,13 @@ export const bootstrapTokens = [ 22835, null ], - [ - "delim-token", - "-", - 22836, - 22836, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22837, - 22837, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 22838, + "--bs-table-striped-bg", + 22836, 22856, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -55116,31 +50292,13 @@ export const bootstrapTokens = [ 22865, null ], - [ - "delim-token", - "-", - 22866, - 22866, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22867, - 22867, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 22868, + "--bs-table-striped-color", + 22866, 22889, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -55167,31 +50325,13 @@ export const bootstrapTokens = [ 22895, null ], - [ - "delim-token", - "-", - 22896, - 22896, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22897, - 22897, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 22898, + "--bs-table-active-bg", + 22896, 22915, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -55218,31 +50358,13 @@ export const bootstrapTokens = [ 22924, null ], - [ - "delim-token", - "-", - 22925, - 22925, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22926, - 22926, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 22927, + "--bs-table-active-color", + 22925, 22947, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -55269,31 +50391,13 @@ export const bootstrapTokens = [ 22953, null ], - [ - "delim-token", - "-", - 22954, - 22954, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22955, - 22955, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 22956, + "--bs-table-hover-bg", + 22954, 22972, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -55320,31 +50424,13 @@ export const bootstrapTokens = [ 22981, null ], - [ - "delim-token", - "-", - 22982, - 22982, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 22983, - 22983, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 22984, + "--bs-table-hover-color", + 22982, 23003, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -55396,31 +50482,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23020, - 23020, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23021, - 23021, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 23022, + "--bs-table-color", + 23020, 23035, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -55462,31 +50530,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23055, - 23055, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23056, - 23056, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 23057, + "--bs-table-border-color", + 23055, 23077, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -55528,31 +50578,13 @@ export const bootstrapTokens = [ 23092, null ], - [ - "delim-token", - "-", - 23093, - 23093, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23094, - 23094, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 23095, + "--bs-table-color", + 23093, 23108, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -55579,31 +50611,13 @@ export const bootstrapTokens = [ 23114, null ], - [ - "delim-token", - "-", - 23115, - 23115, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23116, - 23116, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 23117, + "--bs-table-bg", + 23115, 23127, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -55630,31 +50644,13 @@ export const bootstrapTokens = [ 23136, null ], - [ - "delim-token", - "-", - 23137, - 23137, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23138, - 23138, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 23139, + "--bs-table-border-color", + 23137, 23159, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -55681,31 +50677,13 @@ export const bootstrapTokens = [ 23168, null ], - [ - "delim-token", - "-", - 23169, - 23169, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23170, - 23170, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 23171, + "--bs-table-striped-bg", + 23169, 23189, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -55732,31 +50710,13 @@ export const bootstrapTokens = [ 23198, null ], - [ - "delim-token", - "-", - 23199, - 23199, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23200, - 23200, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 23201, + "--bs-table-striped-color", + 23199, 23222, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -55783,31 +50743,13 @@ export const bootstrapTokens = [ 23228, null ], - [ - "delim-token", - "-", - 23229, - 23229, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23230, - 23230, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 23231, + "--bs-table-active-bg", + 23229, 23248, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -55834,31 +50776,13 @@ export const bootstrapTokens = [ 23257, null ], - [ - "delim-token", - "-", - 23258, - 23258, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23259, - 23259, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 23260, + "--bs-table-active-color", + 23258, 23280, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -55885,31 +50809,13 @@ export const bootstrapTokens = [ 23286, null ], - [ - "delim-token", - "-", - 23287, - 23287, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23288, - 23288, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 23289, + "--bs-table-hover-bg", + 23287, 23305, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -55936,31 +50842,13 @@ export const bootstrapTokens = [ 23314, null ], - [ - "delim-token", - "-", - 23315, - 23315, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23316, - 23316, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 23317, + "--bs-table-hover-color", + 23315, 23336, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -56012,31 +50900,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23353, - 23353, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23354, - 23354, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 23355, + "--bs-table-color", + 23353, 23368, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -56078,31 +50948,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23388, - 23388, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23389, - 23389, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 23390, + "--bs-table-border-color", + 23388, 23410, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -56144,31 +50996,13 @@ export const bootstrapTokens = [ 23424, null ], - [ - "delim-token", - "-", - 23425, - 23425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23426, - 23426, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 23427, + "--bs-table-color", + 23425, 23440, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -56195,31 +51029,13 @@ export const bootstrapTokens = [ 23446, null ], - [ - "delim-token", - "-", - 23447, - 23447, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23448, - 23448, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-bg", - 23449, + "--bs-table-bg", + 23447, 23459, { - "value": "bs-table-bg" + "value": "--bs-table-bg" } ], [ @@ -56246,31 +51062,13 @@ export const bootstrapTokens = [ 23468, null ], - [ - "delim-token", - "-", - 23469, - 23469, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23470, - 23470, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 23471, + "--bs-table-border-color", + 23469, 23491, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -56297,31 +51095,13 @@ export const bootstrapTokens = [ 23500, null ], - [ - "delim-token", - "-", - 23501, - 23501, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23502, - 23502, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-bg", - 23503, + "--bs-table-striped-bg", + 23501, 23521, { - "value": "bs-table-striped-bg" + "value": "--bs-table-striped-bg" } ], [ @@ -56348,31 +51128,13 @@ export const bootstrapTokens = [ 23530, null ], - [ - "delim-token", - "-", - 23531, - 23531, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23532, - 23532, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-striped-color", - 23533, + "--bs-table-striped-color", + 23531, 23554, { - "value": "bs-table-striped-color" + "value": "--bs-table-striped-color" } ], [ @@ -56399,31 +51161,13 @@ export const bootstrapTokens = [ 23560, null ], - [ - "delim-token", - "-", - 23561, - 23561, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23562, - 23562, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-bg", - 23563, + "--bs-table-active-bg", + 23561, 23580, { - "value": "bs-table-active-bg" + "value": "--bs-table-active-bg" } ], [ @@ -56450,31 +51194,13 @@ export const bootstrapTokens = [ 23589, null ], - [ - "delim-token", - "-", - 23590, - 23590, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23591, - 23591, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-active-color", - 23592, + "--bs-table-active-color", + 23590, 23612, { - "value": "bs-table-active-color" + "value": "--bs-table-active-color" } ], [ @@ -56501,31 +51227,13 @@ export const bootstrapTokens = [ 23618, null ], - [ - "delim-token", - "-", - 23619, - 23619, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23620, - 23620, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-bg", - 23621, + "--bs-table-hover-bg", + 23619, 23637, { - "value": "bs-table-hover-bg" + "value": "--bs-table-hover-bg" } ], [ @@ -56552,31 +51260,13 @@ export const bootstrapTokens = [ 23646, null ], - [ - "delim-token", - "-", - 23647, - 23647, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23648, - 23648, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-hover-color", - 23649, + "--bs-table-hover-color", + 23647, 23668, { - "value": "bs-table-hover-color" + "value": "--bs-table-hover-color" } ], [ @@ -56628,31 +51318,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23685, - 23685, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23686, - 23686, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-color", - 23687, + "--bs-table-color", + 23685, 23700, { - "value": "bs-table-color" + "value": "--bs-table-color" } ], [ @@ -56694,31 +51366,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 23720, - 23720, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 23721, - 23721, - { - "value": "-" - } - ], [ "ident-token", - "bs-table-border-color", - 23722, + "--bs-table-border-color", + 23720, 23742, { - "value": "bs-table-border-color" + "value": "--bs-table-border-color" } ], [ @@ -56792,22 +51446,13 @@ export const bootstrapTokens = [ 23778, null ], - [ - "delim-token", - "-", - 23779, - 23779, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 23780, + "-webkit-overflow-scrolling", + 23779, 23804, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -56954,22 +51599,13 @@ export const bootstrapTokens = [ 23876, null ], - [ - "delim-token", - "-", - 23877, - 23877, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 23878, + "-webkit-overflow-scrolling", + 23877, 23902, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -57123,22 +51759,13 @@ export const bootstrapTokens = [ 23975, null ], - [ - "delim-token", - "-", - 23976, - 23976, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 23977, + "-webkit-overflow-scrolling", + 23976, 24001, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -57292,22 +51919,13 @@ export const bootstrapTokens = [ 24074, null ], - [ - "delim-token", - "-", - 24075, - 24075, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 24076, + "-webkit-overflow-scrolling", + 24075, 24100, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -57461,22 +52079,13 @@ export const bootstrapTokens = [ 24174, null ], - [ - "delim-token", - "-", - 24175, - 24175, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 24176, + "-webkit-overflow-scrolling", + 24175, 24200, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -57630,22 +52239,13 @@ export const bootstrapTokens = [ 24275, null ], - [ - "delim-token", - "-", - 24276, - 24276, - { - "value": "-" - } - ], [ "ident-token", - "webkit-overflow-scrolling", - 24277, + "-webkit-overflow-scrolling", + 24276, 24301, { - "value": "webkit-overflow-scrolling" + "value": "-webkit-overflow-scrolling" } ], [ @@ -59014,22 +53614,13 @@ export const bootstrapTokens = [ 24934, null ], - [ - "delim-token", - "-", - 24935, - 24935, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 24936, + "-webkit-appearance", + 24935, 24952, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -59055,22 +53646,13 @@ export const bootstrapTokens = [ 24958, null ], - [ - "delim-token", - "-", - 24959, - 24959, - { - "value": "-" - } - ], [ "ident-token", - "moz-appearance", - 24960, + "-moz-appearance", + 24959, 24973, { - "value": "moz-appearance" + "value": "-moz-appearance" } ], [ @@ -60059,22 +54641,13 @@ export const bootstrapTokens = [ 25415, null ], - [ - "delim-token", - "-", - 25416, - 25416, - { - "value": "-" - } - ], [ "ident-token", - "webkit-date-and-time-value", - 25417, + "-webkit-date-and-time-value", + 25416, 25442, { - "value": "webkit-date-and-time-value" + "value": "-webkit-date-and-time-value" } ], [ @@ -60150,22 +54723,13 @@ export const bootstrapTokens = [ 25471, null ], - [ - "delim-token", - "-", - 25472, - 25472, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder", - 25473, + "-moz-placeholder", + 25472, 25487, { - "value": "moz-placeholder" + "value": "-moz-placeholder" } ], [ @@ -60494,22 +55058,13 @@ export const bootstrapTokens = [ 25636, null ], - [ - "delim-token", - "-", - 25637, - 25637, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 25638, + "-webkit-file-upload-button", + 25637, 25662, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -60623,22 +55178,13 @@ export const bootstrapTokens = [ 25710, null ], - [ - "delim-token", - "-", - 25711, - 25711, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 25712, + "-webkit-margin-end", + 25711, 25728, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -60962,22 +55508,13 @@ export const bootstrapTokens = [ 25919, null ], - [ - "delim-token", - "-", - 25920, - 25920, - { - "value": "-" - } - ], [ "ident-token", - "webkit-transition", - 25921, + "-webkit-transition", + 25920, 25937, { - "value": "webkit-transition" + "value": "-webkit-transition" } ], [ @@ -61555,22 +56092,13 @@ export const bootstrapTokens = [ 26262, null ], - [ - "delim-token", - "-", - 26263, - 26263, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 26264, + "-webkit-margin-end", + 26263, 26280, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -62204,22 +56732,13 @@ export const bootstrapTokens = [ 26651, null ], - [ - "delim-token", - "-", - 26652, - 26652, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 26653, + "-webkit-file-upload-button", + 26652, 26677, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -62229,22 +56748,13 @@ export const bootstrapTokens = [ 26678, null ], - [ - "delim-token", - "-", - 26679, - 26679, - { - "value": "-" - } - ], [ "ident-token", - "webkit-transition", - 26680, + "-webkit-transition", + 26679, 26696, { - "value": "webkit-transition" + "value": "-webkit-transition" } ], [ @@ -62522,22 +57032,13 @@ export const bootstrapTokens = [ 26823, null ], - [ - "delim-token", - "-", - 26824, - 26824, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 26825, + "-webkit-file-upload-button", + 26824, 26849, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -63653,22 +58154,13 @@ export const bootstrapTokens = [ 27442, null ], - [ - "delim-token", - "-", - 27443, - 27443, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 27444, + "-webkit-file-upload-button", + 27443, 27468, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -63782,22 +58274,13 @@ export const bootstrapTokens = [ 27512, null ], - [ - "delim-token", - "-", - 27513, - 27513, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 27514, + "-webkit-margin-end", + 27513, 27530, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -64011,22 +58494,13 @@ export const bootstrapTokens = [ 27643, null ], - [ - "delim-token", - "-", - 27644, - 27644, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 27645, + "-webkit-margin-end", + 27644, 27661, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -64383,22 +58857,13 @@ export const bootstrapTokens = [ 27820, null ], - [ - "delim-token", - "-", - 27821, - 27821, - { - "value": "-" - } - ], [ "ident-token", - "webkit-file-upload-button", - 27822, + "-webkit-file-upload-button", + 27821, 27846, { - "value": "webkit-file-upload-button" + "value": "-webkit-file-upload-button" } ], [ @@ -64512,22 +58977,13 @@ export const bootstrapTokens = [ 27886, null ], - [ - "delim-token", - "-", - 27887, - 27887, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 27888, + "-webkit-margin-end", + 27887, 27904, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -64741,22 +59197,13 @@ export const bootstrapTokens = [ 28011, null ], - [ - "delim-token", - "-", - 28012, - 28012, - { - "value": "-" - } - ], [ "ident-token", - "webkit-margin-end", - 28013, + "-webkit-margin-end", + 28012, 28029, { - "value": "webkit-margin-end" + "value": "-webkit-margin-end" } ], [ @@ -65659,22 +60106,13 @@ export const bootstrapTokens = [ 28409, null ], - [ - "delim-token", - "-", - 28410, - 28410, - { - "value": "-" - } - ], [ "ident-token", - "moz-color-swatch", - 28411, + "-moz-color-swatch", + 28410, 28426, { - "value": "moz-color-swatch" + "value": "-moz-color-swatch" } ], [ @@ -65801,22 +60239,13 @@ export const bootstrapTokens = [ 28489, null ], - [ - "delim-token", - "-", - 28490, - 28490, - { - "value": "-" - } - ], [ "ident-token", - "webkit-color-swatch", - 28491, + "-webkit-color-swatch", + 28490, 28509, { - "value": "webkit-color-swatch" + "value": "-webkit-color-swatch" } ], [ @@ -66359,22 +60788,13 @@ export const bootstrapTokens = [ 28746, null ], - [ - "delim-token", - "-", - 28747, - 28747, - { - "value": "-" - } - ], [ "ident-token", - "moz-padding-start", - 28748, + "-moz-padding-start", + 28747, 28764, { - "value": "moz-padding-start" + "value": "-moz-padding-start" } ], [ @@ -67033,22 +61453,13 @@ export const bootstrapTokens = [ 29319, null ], - [ - "delim-token", - "-", - 29320, - 29320, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 29321, + "-webkit-appearance", + 29320, 29337, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -67074,22 +61485,13 @@ export const bootstrapTokens = [ 29343, null ], - [ - "delim-token", - "-", - 29344, - 29344, - { - "value": "-" - } - ], [ "ident-token", - "moz-appearance", - 29345, + "-moz-appearance", + 29344, 29358, { - "value": "moz-appearance" + "value": "-moz-appearance" } ], [ @@ -67874,22 +62276,13 @@ export const bootstrapTokens = [ 29705, null ], - [ - "delim-token", - "-", - 29706, - 29706, - { - "value": "-" - } - ], [ "ident-token", - "moz-focusring", - 29707, + "-moz-focusring", + 29706, 29719, { - "value": "moz-focusring" + "value": "-moz-focusring" } ], [ @@ -69375,22 +63768,13 @@ export const bootstrapTokens = [ 30500, null ], - [ - "delim-token", - "-", - 30501, - 30501, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 30502, + "-webkit-appearance", + 30501, 30518, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -69416,22 +63800,13 @@ export const bootstrapTokens = [ 30524, null ], - [ - "delim-token", - "-", - 30525, - 30525, - { - "value": "-" - } - ], [ "ident-token", - "moz-appearance", - 30526, + "-moz-appearance", + 30525, 30539, { - "value": "moz-appearance" + "value": "-moz-appearance" } ], [ @@ -69489,22 +63864,13 @@ export const bootstrapTokens = [ 30561, null ], - [ - "delim-token", - "-", - 30562, - 30562, - { - "value": "-" - } - ], [ "ident-token", - "webkit-print-color-adjust", - 30563, + "-webkit-print-color-adjust", + 30562, 30587, { - "value": "webkit-print-color-adjust" + "value": "-webkit-print-color-adjust" } ], [ @@ -72787,22 +67153,13 @@ export const bootstrapTokens = [ 33248, null ], - [ - "delim-token", - "-", - 33249, - 33249, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 33250, + "-webkit-appearance", + 33249, 33266, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -72828,22 +67185,13 @@ export const bootstrapTokens = [ 33272, null ], - [ - "delim-token", - "-", - 33273, - 33273, - { - "value": "-" - } - ], [ "ident-token", - "moz-appearance", - 33274, + "-moz-appearance", + 33273, 33287, { - "value": "moz-appearance" + "value": "-moz-appearance" } ], [ @@ -73023,22 +67371,13 @@ export const bootstrapTokens = [ 33356, null ], - [ - "delim-token", - "-", - 33357, - 33357, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-thumb", - 33358, + "-webkit-slider-thumb", + 33357, 33376, { - "value": "webkit-slider-thumb" + "value": "-webkit-slider-thumb" } ], [ @@ -73351,22 +67690,13 @@ export const bootstrapTokens = [ 33456, null ], - [ - "delim-token", - "-", - 33457, - 33457, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-thumb", - 33458, + "-moz-range-thumb", + 33457, 33472, { - "value": "moz-range-thumb" + "value": "-moz-range-thumb" } ], [ @@ -73663,22 +67993,13 @@ export const bootstrapTokens = [ 33546, null ], - [ - "delim-token", - "-", - 33547, - 33547, - { - "value": "-" - } - ], [ "ident-token", - "moz-focus-outer", - 33548, + "-moz-focus-outer", + 33547, 33562, { - "value": "moz-focus-outer" + "value": "-moz-focus-outer" } ], [ @@ -73753,22 +68074,13 @@ export const bootstrapTokens = [ 33585, null ], - [ - "delim-token", - "-", - 33586, - 33586, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-thumb", - 33587, + "-webkit-slider-thumb", + 33586, 33605, { - "value": "webkit-slider-thumb" + "value": "-webkit-slider-thumb" } ], [ @@ -73980,22 +68292,13 @@ export const bootstrapTokens = [ 33701, null ], - [ - "delim-token", - "-", - 33702, - 33702, - { - "value": "-" - } - ], [ "ident-token", - "webkit-transition", - 33703, + "-webkit-transition", + 33702, 33719, { - "value": "webkit-transition" + "value": "-webkit-transition" } ], [ @@ -74321,22 +68624,13 @@ export const bootstrapTokens = [ 33915, null ], - [ - "delim-token", - "-", - 33916, - 33916, - { - "value": "-" - } - ], [ "ident-token", - "webkit-appearance", - 33917, + "-webkit-appearance", + 33916, 33933, { - "value": "webkit-appearance" + "value": "-webkit-appearance" } ], [ @@ -74488,22 +68782,13 @@ export const bootstrapTokens = [ 34007, null ], - [ - "delim-token", - "-", - 34008, - 34008, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-thumb", - 34009, + "-webkit-slider-thumb", + 34008, 34027, { - "value": "webkit-slider-thumb" + "value": "-webkit-slider-thumb" } ], [ @@ -74513,22 +68798,13 @@ export const bootstrapTokens = [ 34028, null ], - [ - "delim-token", - "-", - 34029, - 34029, - { - "value": "-" - } - ], [ "ident-token", - "webkit-transition", - 34030, + "-webkit-transition", + 34029, 34046, { - "value": "webkit-transition" + "value": "-webkit-transition" } ], [ @@ -74625,22 +68901,13 @@ export const bootstrapTokens = [ 34082, null ], - [ - "delim-token", - "-", - 34083, - 34083, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-thumb", - 34084, + "-webkit-slider-thumb", + 34083, 34102, { - "value": "webkit-slider-thumb" + "value": "-webkit-slider-thumb" } ], [ @@ -74731,22 +68998,13 @@ export const bootstrapTokens = [ 34148, null ], - [ - "delim-token", - "-", - 34149, - 34149, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-runnable-track", - 34150, + "-webkit-slider-runnable-track", + 34149, 34177, { - "value": "webkit-slider-runnable-track" + "value": "-webkit-slider-runnable-track" } ], [ @@ -75017,22 +69275,13 @@ export const bootstrapTokens = [ 34317, null ], - [ - "delim-token", - "-", - 34318, - 34318, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-thumb", - 34319, + "-moz-range-thumb", + 34318, 34333, { - "value": "moz-range-thumb" + "value": "-moz-range-thumb" } ], [ @@ -75210,22 +69459,13 @@ export const bootstrapTokens = [ 34410, null ], - [ - "delim-token", - "-", - 34411, - 34411, - { - "value": "-" - } - ], [ "ident-token", - "moz-transition", - 34412, + "-moz-transition", + 34411, 34425, { - "value": "moz-transition" + "value": "-moz-transition" } ], [ @@ -75551,22 +69791,13 @@ export const bootstrapTokens = [ 34621, null ], - [ - "delim-token", - "-", - 34622, - 34622, - { - "value": "-" - } - ], [ "ident-token", - "moz-appearance", - 34623, + "-moz-appearance", + 34622, 34636, { - "value": "moz-appearance" + "value": "-moz-appearance" } ], [ @@ -75718,22 +69949,13 @@ export const bootstrapTokens = [ 34710, null ], - [ - "delim-token", - "-", - 34711, - 34711, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-thumb", - 34712, + "-moz-range-thumb", + 34711, 34726, { - "value": "moz-range-thumb" + "value": "-moz-range-thumb" } ], [ @@ -75743,22 +69965,13 @@ export const bootstrapTokens = [ 34727, null ], - [ - "delim-token", - "-", - 34728, - 34728, - { - "value": "-" - } - ], [ "ident-token", - "moz-transition", - 34729, + "-moz-transition", + 34728, 34742, { - "value": "moz-transition" + "value": "-moz-transition" } ], [ @@ -75855,22 +70068,13 @@ export const bootstrapTokens = [ 34778, null ], - [ - "delim-token", - "-", - 34779, - 34779, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-thumb", - 34780, + "-moz-range-thumb", + 34779, 34794, { - "value": "moz-range-thumb" + "value": "-moz-range-thumb" } ], [ @@ -75961,22 +70165,13 @@ export const bootstrapTokens = [ 34840, null ], - [ - "delim-token", - "-", - 34841, - 34841, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-track", - 34842, + "-moz-range-track", + 34841, 34856, { - "value": "moz-range-track" + "value": "-moz-range-track" } ], [ @@ -76336,22 +70531,13 @@ export const bootstrapTokens = [ 35046, null ], - [ - "delim-token", - "-", - 35047, - 35047, - { - "value": "-" - } - ], [ "ident-token", - "webkit-slider-thumb", - 35048, + "-webkit-slider-thumb", + 35047, 35066, { - "value": "webkit-slider-thumb" + "value": "-webkit-slider-thumb" } ], [ @@ -76442,22 +70628,13 @@ export const bootstrapTokens = [ 35114, null ], - [ - "delim-token", - "-", - 35115, - 35115, - { - "value": "-" - } - ], [ "ident-token", - "moz-range-thumb", - 35116, + "-moz-range-thumb", + 35115, 35130, { - "value": "moz-range-thumb" + "value": "-moz-range-thumb" } ], [ @@ -77838,22 +72015,13 @@ export const bootstrapTokens = [ 35834, null ], - [ - "delim-token", - "-", - 35835, - 35835, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder", - 35836, + "-moz-placeholder", + 35835, 35850, { - "value": "moz-placeholder" + "value": "-moz-placeholder" } ], [ @@ -77922,22 +72090,13 @@ export const bootstrapTokens = [ 35881, null ], - [ - "delim-token", - "-", - 35882, - 35882, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder", - 35883, + "-moz-placeholder", + 35882, 35897, { - "value": "moz-placeholder" + "value": "-moz-placeholder" } ], [ @@ -78229,22 +72388,13 @@ export const bootstrapTokens = [ 36072, null ], - [ - "delim-token", - "-", - 36073, - 36073, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder-shown", - 36074, + "-moz-placeholder-shown", + 36073, 36094, { - "value": "moz-placeholder-shown" + "value": "-moz-placeholder-shown" } ], [ @@ -78329,22 +72479,13 @@ export const bootstrapTokens = [ 36130, null ], - [ - "delim-token", - "-", - 36131, - 36131, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder-shown", - 36132, + "-moz-placeholder-shown", + 36131, 36152, { - "value": "moz-placeholder-shown" + "value": "-moz-placeholder-shown" } ], [ @@ -78867,22 +73008,13 @@ export const bootstrapTokens = [ 36477, null ], - [ - "delim-token", - "-", - 36478, - 36478, - { - "value": "-" - } - ], [ "ident-token", - "webkit-autofill", - 36479, + "-webkit-autofill", + 36478, 36493, { - "value": "webkit-autofill" + "value": "-webkit-autofill" } ], [ @@ -78944,22 +73076,13 @@ export const bootstrapTokens = [ 36523, null ], - [ - "delim-token", - "-", - 36524, - 36524, - { - "value": "-" - } - ], [ "ident-token", - "webkit-autofill", - 36525, + "-webkit-autofill", + 36524, 36539, { - "value": "webkit-autofill" + "value": "-webkit-autofill" } ], [ @@ -79225,22 +73348,13 @@ export const bootstrapTokens = [ 36690, null ], - [ - "delim-token", - "-", - 36691, - 36691, - { - "value": "-" - } - ], [ "ident-token", - "moz-placeholder-shown", - 36692, + "-moz-placeholder-shown", + 36691, 36712, { - "value": "moz-placeholder-shown" + "value": "-moz-placeholder-shown" } ], [ @@ -79962,22 +74076,13 @@ export const bootstrapTokens = [ 37070, null ], - [ - "delim-token", - "-", - 37071, - 37071, - { - "value": "-" - } - ], [ "ident-token", - "webkit-autofill", - 37072, + "-webkit-autofill", + 37071, 37086, { - "value": "webkit-autofill" + "value": "-webkit-autofill" } ], [ @@ -95975,31 +90080,13 @@ export const bootstrapTokens = [ 46295, null ], - [ - "delim-token", - "-", - 46296, - 46296, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46297, - 46297, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-x", - 46298, + "--bs-btn-padding-x", + 46296, 46313, { - "value": "bs-btn-padding-x" + "value": "--bs-btn-padding-x" } ], [ @@ -96027,31 +90114,13 @@ export const bootstrapTokens = [ 46322, null ], - [ - "delim-token", - "-", - 46323, - 46323, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46324, - 46324, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-y", - 46325, + "--bs-btn-padding-y", + 46323, 46340, { - "value": "bs-btn-padding-y" + "value": "--bs-btn-padding-y" } ], [ @@ -96079,31 +90148,13 @@ export const bootstrapTokens = [ 46350, null ], - [ - "delim-token", - "-", - 46351, - 46351, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46352, - 46352, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-family", - 46353, + "--bs-btn-font-family", + 46351, 46370, { - "value": "bs-btn-font-family" + "value": "--bs-btn-font-family" } ], [ @@ -96127,31 +90178,13 @@ export const bootstrapTokens = [ 46373, null ], - [ - "delim-token", - "-", - 46374, - 46374, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46375, - 46375, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-size", - 46376, + "--bs-btn-font-size", + 46374, 46391, { - "value": "bs-btn-font-size" + "value": "--bs-btn-font-size" } ], [ @@ -96179,31 +90212,13 @@ export const bootstrapTokens = [ 46397, null ], - [ - "delim-token", - "-", - 46398, - 46398, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46399, - 46399, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-weight", - 46400, + "--bs-btn-font-weight", + 46398, 46417, { - "value": "bs-btn-font-weight" + "value": "--bs-btn-font-weight" } ], [ @@ -96230,31 +90245,13 @@ export const bootstrapTokens = [ 46422, null ], - [ - "delim-token", - "-", - 46423, - 46423, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46424, - 46424, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-line-height", - 46425, + "--bs-btn-line-height", + 46423, 46442, { - "value": "bs-btn-line-height" + "value": "--bs-btn-line-height" } ], [ @@ -96281,31 +90278,13 @@ export const bootstrapTokens = [ 46447, null ], - [ - "delim-token", - "-", - 46448, - 46448, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46449, - 46449, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 46450, + "--bs-btn-color", + 46448, 46461, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -96332,31 +90311,13 @@ export const bootstrapTokens = [ 46470, null ], - [ - "delim-token", - "-", - 46471, - 46471, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46472, - 46472, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 46473, + "--bs-btn-bg", + 46471, 46481, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -96382,31 +90343,13 @@ export const bootstrapTokens = [ 46494, null ], - [ - "delim-token", - "-", - 46495, - 46495, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46496, - 46496, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-width", - 46497, + "--bs-btn-border-width", + 46495, 46515, { - "value": "bs-btn-border-width" + "value": "--bs-btn-border-width" } ], [ @@ -96434,31 +90377,13 @@ export const bootstrapTokens = [ 46520, null ], - [ - "delim-token", - "-", - 46521, - 46521, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46522, - 46522, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 46523, + "--bs-btn-border-color", + 46521, 46541, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -96484,31 +90409,13 @@ export const bootstrapTokens = [ 46554, null ], - [ - "delim-token", - "-", - 46555, - 46555, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46556, - 46556, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-radius", - 46557, + "--bs-btn-border-radius", + 46555, 46576, { - "value": "bs-btn-border-radius" + "value": "--bs-btn-border-radius" } ], [ @@ -96536,31 +90443,13 @@ export const bootstrapTokens = [ 46586, null ], - [ - "delim-token", - "-", - 46587, - 46587, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46588, - 46588, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 46589, + "--bs-btn-hover-border-color", + 46587, 46613, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -96586,31 +90475,13 @@ export const bootstrapTokens = [ 46626, null ], - [ - "delim-token", - "-", - 46627, - 46627, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46628, - 46628, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-box-shadow", - 46629, + "--bs-btn-box-shadow", + 46627, 46645, { - "value": "bs-btn-box-shadow" + "value": "--bs-btn-box-shadow" } ], [ @@ -96951,31 +90822,13 @@ export const bootstrapTokens = [ 46717, null ], - [ - "delim-token", - "-", - 46718, - 46718, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46719, - 46719, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-opacity", - 46720, + "--bs-btn-disabled-opacity", + 46718, 46742, { - "value": "bs-btn-disabled-opacity" + "value": "--bs-btn-disabled-opacity" } ], [ @@ -97002,31 +90855,13 @@ export const bootstrapTokens = [ 46748, null ], - [ - "delim-token", - "-", - 46749, - 46749, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46750, - 46750, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-box-shadow", - 46751, + "--bs-btn-focus-box-shadow", + 46749, 46773, { - "value": "bs-btn-focus-box-shadow" + "value": "--bs-btn-focus-box-shadow" } ], [ @@ -97123,31 +90958,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46798, - 46798, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46799, - 46799, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 46800, + "--bs-btn-focus-shadow-rgb", + 46798, 46822, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -97252,31 +91069,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46863, - 46863, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46864, - 46864, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-y", - 46865, + "--bs-btn-padding-y", + 46863, 46880, { - "value": "bs-btn-padding-y" + "value": "--bs-btn-padding-y" } ], [ @@ -97302,31 +91101,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46887, - 46887, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46888, - 46888, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-x", - 46889, + "--bs-btn-padding-x", + 46887, 46904, { - "value": "bs-btn-padding-x" + "value": "--bs-btn-padding-x" } ], [ @@ -97368,31 +91149,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46923, - 46923, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46924, - 46924, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-family", - 46925, + "--bs-btn-font-family", + 46923, 46942, { - "value": "bs-btn-font-family" + "value": "--bs-btn-font-family" } ], [ @@ -97434,31 +91197,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46959, - 46959, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46960, - 46960, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-size", - 46961, + "--bs-btn-font-size", + 46959, 46976, { - "value": "bs-btn-font-size" + "value": "--bs-btn-font-size" } ], [ @@ -97500,31 +91245,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 46995, - 46995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 46996, - 46996, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-weight", - 46997, + "--bs-btn-font-weight", + 46995, 47014, { - "value": "bs-btn-font-weight" + "value": "--bs-btn-font-weight" } ], [ @@ -97566,31 +91293,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47033, - 47033, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47034, - 47034, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-line-height", - 47035, + "--bs-btn-line-height", + 47033, 47052, { - "value": "bs-btn-line-height" + "value": "--bs-btn-line-height" } ], [ @@ -97632,31 +91341,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47065, - 47065, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47066, - 47066, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 47067, + "--bs-btn-color", + 47065, 47078, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -97801,22 +91492,13 @@ export const bootstrapTokens = [ 47156, null ], - [ - "delim-token", - "-", - 47157, - 47157, - { - "value": "-" - } - ], [ "ident-token", - "webkit-user-select", - 47158, + "-webkit-user-select", + 47157, 47175, { - "value": "webkit-user-select" + "value": "-webkit-user-select" } ], [ @@ -97842,22 +91524,13 @@ export const bootstrapTokens = [ 47181, null ], - [ - "delim-token", - "-", - 47182, - 47182, - { - "value": "-" - } - ], [ "ident-token", - "moz-user-select", - 47183, + "-moz-user-select", + 47182, 47197, { - "value": "moz-user-select" + "value": "-moz-user-select" } ], [ @@ -97940,31 +91613,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47232, - 47232, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47233, - 47233, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-width", - 47234, + "--bs-btn-border-width", + 47232, 47252, { - "value": "bs-btn-border-width" + "value": "--bs-btn-border-width" } ], [ @@ -98006,31 +91661,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47265, - 47265, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47266, - 47266, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 47267, + "--bs-btn-border-color", + 47265, 47285, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -98072,31 +91709,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47306, - 47306, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47307, - 47307, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-radius", - 47308, + "--bs-btn-border-radius", + 47306, 47327, { - "value": "bs-btn-border-radius" + "value": "--bs-btn-border-radius" } ], [ @@ -98138,31 +91757,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47351, - 47351, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47352, - 47352, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 47353, + "--bs-btn-bg", + 47351, 47361, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -98694,31 +92295,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47612, - 47612, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47613, - 47613, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 47614, + "--bs-btn-hover-color", + 47612, 47631, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -98760,31 +92343,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47655, - 47655, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47656, - 47656, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 47657, + "--bs-btn-hover-bg", + 47655, 47671, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -98826,31 +92391,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47691, - 47691, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47692, - 47692, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 47693, + "--bs-btn-hover-border-color", + 47691, 47717, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -98933,31 +92480,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47749, - 47749, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47750, - 47750, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 47751, + "--bs-btn-hover-color", + 47749, 47768, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -98999,31 +92528,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47792, - 47792, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47793, - 47793, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 47794, + "--bs-btn-hover-bg", + 47792, 47808, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -99065,31 +92576,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47828, - 47828, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47829, - 47829, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 47830, + "--bs-btn-hover-border-color", + 47828, 47854, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -99164,31 +92657,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47882, - 47882, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47883, - 47883, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-box-shadow", - 47884, + "--bs-btn-focus-box-shadow", + 47882, 47906, { - "value": "bs-btn-focus-box-shadow" + "value": "--bs-btn-focus-box-shadow" } ], [ @@ -99298,31 +92773,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 47956, - 47956, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 47957, - 47957, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 47958, + "--bs-btn-hover-border-color", + 47956, 47982, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -99397,31 +92854,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48010, - 48010, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48011, - 48011, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-box-shadow", - 48012, + "--bs-btn-focus-box-shadow", + 48010, 48034, { - "value": "bs-btn-focus-box-shadow" + "value": "--bs-btn-focus-box-shadow" } ], [ @@ -99765,31 +93204,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48146, - 48146, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48147, - 48147, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 48148, + "--bs-btn-active-color", + 48146, 48166, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -99831,31 +93252,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48190, - 48190, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48191, - 48191, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 48192, + "--bs-btn-active-bg", + 48190, 48207, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -99897,31 +93300,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48227, - 48227, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48228, - 48228, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 48229, + "--bs-btn-active-border-color", + 48227, 48254, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -100345,31 +93730,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48441, - 48441, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48442, - 48442, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-box-shadow", - 48443, + "--bs-btn-focus-box-shadow", + 48441, 48465, { - "value": "bs-btn-focus-box-shadow" + "value": "--bs-btn-focus-box-shadow" } ], [ @@ -100552,31 +93919,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48529, - 48529, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48530, - 48530, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 48531, + "--bs-btn-disabled-color", + 48529, 48551, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -100650,31 +93999,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48595, - 48595, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48596, - 48596, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 48597, + "--bs-btn-disabled-bg", + 48595, 48614, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -100716,31 +94047,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48634, - 48634, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48635, - 48635, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 48636, + "--bs-btn-disabled-border-color", + 48634, 48663, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -100782,31 +94095,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 48678, - 48678, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48679, - 48679, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-opacity", - 48680, + "--bs-btn-disabled-opacity", + 48678, 48702, { - "value": "bs-btn-disabled-opacity" + "value": "--bs-btn-disabled-opacity" } ], [ @@ -100848,31 +94143,13 @@ export const bootstrapTokens = [ 48717, null ], - [ - "delim-token", - "-", - 48718, - 48718, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48719, - 48719, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 48720, + "--bs-btn-color", + 48718, 48731, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -100899,31 +94176,13 @@ export const bootstrapTokens = [ 48737, null ], - [ - "delim-token", - "-", - 48738, - 48738, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48739, - 48739, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 48740, + "--bs-btn-bg", + 48738, 48748, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -100950,31 +94209,13 @@ export const bootstrapTokens = [ 48757, null ], - [ - "delim-token", - "-", - 48758, - 48758, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48759, - 48759, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 48760, + "--bs-btn-border-color", + 48758, 48778, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -101001,31 +94242,13 @@ export const bootstrapTokens = [ 48787, null ], - [ - "delim-token", - "-", - 48788, - 48788, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48789, - 48789, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 48790, + "--bs-btn-hover-color", + 48788, 48807, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -101052,31 +94275,13 @@ export const bootstrapTokens = [ 48813, null ], - [ - "delim-token", - "-", - 48814, - 48814, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48815, - 48815, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 48816, + "--bs-btn-hover-bg", + 48814, 48830, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -101103,31 +94308,13 @@ export const bootstrapTokens = [ 48839, null ], - [ - "delim-token", - "-", - 48840, - 48840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48841, - 48841, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 48842, + "--bs-btn-hover-border-color", + 48840, 48866, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -101154,31 +94341,13 @@ export const bootstrapTokens = [ 48875, null ], - [ - "delim-token", - "-", - 48876, - 48876, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48877, - 48877, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 48878, + "--bs-btn-focus-shadow-rgb", + 48876, 48900, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -101239,31 +94408,13 @@ export const bootstrapTokens = [ 48912, null ], - [ - "delim-token", - "-", - 48913, - 48913, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48914, - 48914, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 48915, + "--bs-btn-active-color", + 48913, 48933, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -101290,31 +94441,13 @@ export const bootstrapTokens = [ 48939, null ], - [ - "delim-token", - "-", - 48940, - 48940, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48941, - 48941, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 48942, + "--bs-btn-active-bg", + 48940, 48957, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -101341,31 +94474,13 @@ export const bootstrapTokens = [ 48966, null ], - [ - "delim-token", - "-", - 48967, - 48967, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 48968, - 48968, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 48969, + "--bs-btn-active-border-color", + 48967, 48994, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -101392,31 +94507,13 @@ export const bootstrapTokens = [ 49003, null ], - [ - "delim-token", - "-", - 49004, - 49004, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49005, - 49005, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 49006, + "--bs-btn-active-shadow", + 49004, 49025, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -101600,31 +94697,13 @@ export const bootstrapTokens = [ 49063, null ], - [ - "delim-token", - "-", - 49064, - 49064, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49065, - 49065, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 49066, + "--bs-btn-disabled-color", + 49064, 49086, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -101651,31 +94730,13 @@ export const bootstrapTokens = [ 49092, null ], - [ - "delim-token", - "-", - 49093, - 49093, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49094, - 49094, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 49095, + "--bs-btn-disabled-bg", + 49093, 49112, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -101702,31 +94763,13 @@ export const bootstrapTokens = [ 49121, null ], - [ - "delim-token", - "-", - 49122, - 49122, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49123, - 49123, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 49124, + "--bs-btn-disabled-border-color", + 49122, 49151, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -101778,31 +94821,13 @@ export const bootstrapTokens = [ 49175, null ], - [ - "delim-token", - "-", - 49176, - 49176, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49177, - 49177, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 49178, + "--bs-btn-color", + 49176, 49189, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -101829,31 +94854,13 @@ export const bootstrapTokens = [ 49195, null ], - [ - "delim-token", - "-", - 49196, - 49196, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49197, - 49197, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 49198, + "--bs-btn-bg", + 49196, 49206, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -101880,31 +94887,13 @@ export const bootstrapTokens = [ 49215, null ], - [ - "delim-token", - "-", - 49216, - 49216, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49217, - 49217, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 49218, + "--bs-btn-border-color", + 49216, 49236, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -101931,31 +94920,13 @@ export const bootstrapTokens = [ 49245, null ], - [ - "delim-token", - "-", - 49246, - 49246, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49247, - 49247, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 49248, + "--bs-btn-hover-color", + 49246, 49265, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -101982,31 +94953,13 @@ export const bootstrapTokens = [ 49271, null ], - [ - "delim-token", - "-", - 49272, - 49272, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49273, - 49273, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 49274, + "--bs-btn-hover-bg", + 49272, 49288, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -102033,31 +94986,13 @@ export const bootstrapTokens = [ 49297, null ], - [ - "delim-token", - "-", - 49298, - 49298, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49299, - 49299, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 49300, + "--bs-btn-hover-border-color", + 49298, 49324, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -102084,31 +95019,13 @@ export const bootstrapTokens = [ 49333, null ], - [ - "delim-token", - "-", - 49334, - 49334, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49335, - 49335, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 49336, + "--bs-btn-focus-shadow-rgb", + 49334, 49358, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -102169,31 +95086,13 @@ export const bootstrapTokens = [ 49371, null ], - [ - "delim-token", - "-", - 49372, - 49372, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49373, - 49373, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 49374, + "--bs-btn-active-color", + 49372, 49392, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -102220,31 +95119,13 @@ export const bootstrapTokens = [ 49398, null ], - [ - "delim-token", - "-", - 49399, - 49399, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49400, - 49400, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 49401, + "--bs-btn-active-bg", + 49399, 49416, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -102271,31 +95152,13 @@ export const bootstrapTokens = [ 49425, null ], - [ - "delim-token", - "-", - 49426, - 49426, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49427, - 49427, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 49428, + "--bs-btn-active-border-color", + 49426, 49453, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -102322,31 +95185,13 @@ export const bootstrapTokens = [ 49462, null ], - [ - "delim-token", - "-", - 49463, - 49463, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49464, - 49464, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 49465, + "--bs-btn-active-shadow", + 49463, 49484, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -102530,31 +95375,13 @@ export const bootstrapTokens = [ 49522, null ], - [ - "delim-token", - "-", - 49523, - 49523, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49524, - 49524, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 49525, + "--bs-btn-disabled-color", + 49523, 49545, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -102581,31 +95408,13 @@ export const bootstrapTokens = [ 49551, null ], - [ - "delim-token", - "-", - 49552, - 49552, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49553, - 49553, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 49554, + "--bs-btn-disabled-bg", + 49552, 49571, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -102632,31 +95441,13 @@ export const bootstrapTokens = [ 49580, null ], - [ - "delim-token", - "-", - 49581, - 49581, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49582, - 49582, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 49583, + "--bs-btn-disabled-border-color", + 49581, 49610, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -102708,31 +95499,13 @@ export const bootstrapTokens = [ 49632, null ], - [ - "delim-token", - "-", - 49633, - 49633, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49634, - 49634, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 49635, + "--bs-btn-color", + 49633, 49646, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -102759,31 +95532,13 @@ export const bootstrapTokens = [ 49652, null ], - [ - "delim-token", - "-", - 49653, - 49653, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49654, - 49654, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 49655, + "--bs-btn-bg", + 49653, 49663, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -102810,31 +95565,13 @@ export const bootstrapTokens = [ 49672, null ], - [ - "delim-token", - "-", - 49673, - 49673, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49674, - 49674, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 49675, + "--bs-btn-border-color", + 49673, 49693, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -102861,31 +95598,13 @@ export const bootstrapTokens = [ 49702, null ], - [ - "delim-token", - "-", - 49703, - 49703, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49704, - 49704, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 49705, + "--bs-btn-hover-color", + 49703, 49722, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -102912,31 +95631,13 @@ export const bootstrapTokens = [ 49728, null ], - [ - "delim-token", - "-", - 49729, - 49729, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49730, - 49730, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 49731, + "--bs-btn-hover-bg", + 49729, 49745, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -102963,31 +95664,13 @@ export const bootstrapTokens = [ 49754, null ], - [ - "delim-token", - "-", - 49755, - 49755, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49756, - 49756, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 49757, + "--bs-btn-hover-border-color", + 49755, 49781, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -103014,31 +95697,13 @@ export const bootstrapTokens = [ 49790, null ], - [ - "delim-token", - "-", - 49791, - 49791, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49792, - 49792, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 49793, + "--bs-btn-focus-shadow-rgb", + 49791, 49815, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -103099,31 +95764,13 @@ export const bootstrapTokens = [ 49827, null ], - [ - "delim-token", - "-", - 49828, - 49828, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49829, - 49829, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 49830, + "--bs-btn-active-color", + 49828, 49848, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -103150,31 +95797,13 @@ export const bootstrapTokens = [ 49854, null ], - [ - "delim-token", - "-", - 49855, - 49855, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49856, - 49856, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 49857, + "--bs-btn-active-bg", + 49855, 49872, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -103201,31 +95830,13 @@ export const bootstrapTokens = [ 49881, null ], - [ - "delim-token", - "-", - 49882, - 49882, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49883, - 49883, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 49884, + "--bs-btn-active-border-color", + 49882, 49909, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -103252,31 +95863,13 @@ export const bootstrapTokens = [ 49918, null ], - [ - "delim-token", - "-", - 49919, - 49919, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49920, - 49920, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 49921, + "--bs-btn-active-shadow", + 49919, 49940, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -103460,31 +96053,13 @@ export const bootstrapTokens = [ 49978, null ], - [ - "delim-token", - "-", - 49979, - 49979, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 49980, - 49980, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 49981, + "--bs-btn-disabled-color", + 49979, 50001, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -103511,31 +96086,13 @@ export const bootstrapTokens = [ 50007, null ], - [ - "delim-token", - "-", - 50008, - 50008, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50009, - 50009, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 50010, + "--bs-btn-disabled-bg", + 50008, 50027, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -103562,31 +96119,13 @@ export const bootstrapTokens = [ 50036, null ], - [ - "delim-token", - "-", - 50037, - 50037, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50038, - 50038, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 50039, + "--bs-btn-disabled-border-color", + 50037, 50066, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -103638,31 +96177,13 @@ export const bootstrapTokens = [ 50085, null ], - [ - "delim-token", - "-", - 50086, - 50086, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50087, - 50087, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 50088, + "--bs-btn-color", + 50086, 50099, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -103689,31 +96210,13 @@ export const bootstrapTokens = [ 50105, null ], - [ - "delim-token", - "-", - 50106, - 50106, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50107, - 50107, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 50108, + "--bs-btn-bg", + 50106, 50116, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -103740,31 +96243,13 @@ export const bootstrapTokens = [ 50125, null ], - [ - "delim-token", - "-", - 50126, - 50126, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50127, - 50127, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 50128, + "--bs-btn-border-color", + 50126, 50146, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -103791,31 +96276,13 @@ export const bootstrapTokens = [ 50155, null ], - [ - "delim-token", - "-", - 50156, - 50156, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50157, - 50157, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 50158, + "--bs-btn-hover-color", + 50156, 50175, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -103842,31 +96309,13 @@ export const bootstrapTokens = [ 50181, null ], - [ - "delim-token", - "-", - 50182, - 50182, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50183, - 50183, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 50184, + "--bs-btn-hover-bg", + 50182, 50198, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -103893,31 +96342,13 @@ export const bootstrapTokens = [ 50207, null ], - [ - "delim-token", - "-", - 50208, - 50208, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50209, - 50209, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 50210, + "--bs-btn-hover-border-color", + 50208, 50234, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -103944,31 +96375,13 @@ export const bootstrapTokens = [ 50243, null ], - [ - "delim-token", - "-", - 50244, - 50244, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50245, - 50245, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 50246, + "--bs-btn-focus-shadow-rgb", + 50244, 50268, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -104029,31 +96442,13 @@ export const bootstrapTokens = [ 50280, null ], - [ - "delim-token", - "-", - 50281, - 50281, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50282, - 50282, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 50283, + "--bs-btn-active-color", + 50281, 50301, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -104080,31 +96475,13 @@ export const bootstrapTokens = [ 50307, null ], - [ - "delim-token", - "-", - 50308, - 50308, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50309, - 50309, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 50310, + "--bs-btn-active-bg", + 50308, 50325, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -104131,31 +96508,13 @@ export const bootstrapTokens = [ 50334, null ], - [ - "delim-token", - "-", - 50335, - 50335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50336, - 50336, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 50337, + "--bs-btn-active-border-color", + 50335, 50362, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -104182,31 +96541,13 @@ export const bootstrapTokens = [ 50371, null ], - [ - "delim-token", - "-", - 50372, - 50372, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50373, - 50373, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 50374, + "--bs-btn-active-shadow", + 50372, 50393, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -104390,31 +96731,13 @@ export const bootstrapTokens = [ 50431, null ], - [ - "delim-token", - "-", - 50432, - 50432, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50433, - 50433, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 50434, + "--bs-btn-disabled-color", + 50432, 50454, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -104441,31 +96764,13 @@ export const bootstrapTokens = [ 50460, null ], - [ - "delim-token", - "-", - 50461, - 50461, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50462, - 50462, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 50463, + "--bs-btn-disabled-bg", + 50461, 50480, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -104492,31 +96797,13 @@ export const bootstrapTokens = [ 50489, null ], - [ - "delim-token", - "-", - 50490, - 50490, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50491, - 50491, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 50492, + "--bs-btn-disabled-border-color", + 50490, 50519, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -104568,31 +96855,13 @@ export const bootstrapTokens = [ 50541, null ], - [ - "delim-token", - "-", - 50542, - 50542, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50543, - 50543, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 50544, + "--bs-btn-color", + 50542, 50555, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -104619,31 +96888,13 @@ export const bootstrapTokens = [ 50561, null ], - [ - "delim-token", - "-", - 50562, - 50562, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50563, - 50563, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 50564, + "--bs-btn-bg", + 50562, 50572, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -104670,31 +96921,13 @@ export const bootstrapTokens = [ 50581, null ], - [ - "delim-token", - "-", - 50582, - 50582, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50583, - 50583, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 50584, + "--bs-btn-border-color", + 50582, 50602, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -104721,31 +96954,13 @@ export const bootstrapTokens = [ 50611, null ], - [ - "delim-token", - "-", - 50612, - 50612, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50613, - 50613, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 50614, + "--bs-btn-hover-color", + 50612, 50631, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -104772,31 +96987,13 @@ export const bootstrapTokens = [ 50637, null ], - [ - "delim-token", - "-", - 50638, - 50638, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50639, - 50639, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 50640, + "--bs-btn-hover-bg", + 50638, 50654, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -104823,31 +97020,13 @@ export const bootstrapTokens = [ 50663, null ], - [ - "delim-token", - "-", - 50664, - 50664, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50665, - 50665, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 50666, + "--bs-btn-hover-border-color", + 50664, 50690, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -104874,31 +97053,13 @@ export const bootstrapTokens = [ 50699, null ], - [ - "delim-token", - "-", - 50700, - 50700, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50701, - 50701, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 50702, + "--bs-btn-focus-shadow-rgb", + 50700, 50724, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -104959,31 +97120,13 @@ export const bootstrapTokens = [ 50735, null ], - [ - "delim-token", - "-", - 50736, - 50736, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50737, - 50737, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 50738, + "--bs-btn-active-color", + 50736, 50756, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -105010,31 +97153,13 @@ export const bootstrapTokens = [ 50762, null ], - [ - "delim-token", - "-", - 50763, - 50763, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50764, - 50764, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 50765, + "--bs-btn-active-bg", + 50763, 50780, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -105061,31 +97186,13 @@ export const bootstrapTokens = [ 50789, null ], - [ - "delim-token", - "-", - 50790, - 50790, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50791, - 50791, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 50792, + "--bs-btn-active-border-color", + 50790, 50817, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -105112,31 +97219,13 @@ export const bootstrapTokens = [ 50826, null ], - [ - "delim-token", - "-", - 50827, - 50827, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50828, - 50828, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 50829, + "--bs-btn-active-shadow", + 50827, 50848, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -105320,31 +97409,13 @@ export const bootstrapTokens = [ 50886, null ], - [ - "delim-token", - "-", - 50887, - 50887, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50888, - 50888, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 50889, + "--bs-btn-disabled-color", + 50887, 50909, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -105371,31 +97442,13 @@ export const bootstrapTokens = [ 50915, null ], - [ - "delim-token", - "-", - 50916, - 50916, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50917, - 50917, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 50918, + "--bs-btn-disabled-bg", + 50916, 50935, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -105422,31 +97475,13 @@ export const bootstrapTokens = [ 50944, null ], - [ - "delim-token", - "-", - 50945, - 50945, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50946, - 50946, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 50947, + "--bs-btn-disabled-border-color", + 50945, 50974, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -105498,31 +97533,13 @@ export const bootstrapTokens = [ 50995, null ], - [ - "delim-token", - "-", - 50996, - 50996, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 50997, - 50997, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 50998, + "--bs-btn-color", + 50996, 51009, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -105549,31 +97566,13 @@ export const bootstrapTokens = [ 51015, null ], - [ - "delim-token", - "-", - 51016, - 51016, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51017, - 51017, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 51018, + "--bs-btn-bg", + 51016, 51026, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -105600,31 +97599,13 @@ export const bootstrapTokens = [ 51035, null ], - [ - "delim-token", - "-", - 51036, - 51036, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51037, - 51037, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 51038, + "--bs-btn-border-color", + 51036, 51056, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -105651,31 +97632,13 @@ export const bootstrapTokens = [ 51065, null ], - [ - "delim-token", - "-", - 51066, - 51066, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51067, - 51067, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 51068, + "--bs-btn-hover-color", + 51066, 51085, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -105702,31 +97665,13 @@ export const bootstrapTokens = [ 51091, null ], - [ - "delim-token", - "-", - 51092, - 51092, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51093, - 51093, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 51094, + "--bs-btn-hover-bg", + 51092, 51108, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -105753,31 +97698,13 @@ export const bootstrapTokens = [ 51117, null ], - [ - "delim-token", - "-", - 51118, - 51118, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51119, - 51119, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 51120, + "--bs-btn-hover-border-color", + 51118, 51144, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -105804,31 +97731,13 @@ export const bootstrapTokens = [ 51153, null ], - [ - "delim-token", - "-", - 51154, - 51154, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51155, - 51155, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 51156, + "--bs-btn-focus-shadow-rgb", + 51154, 51178, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -105889,31 +97798,13 @@ export const bootstrapTokens = [ 51189, null ], - [ - "delim-token", - "-", - 51190, - 51190, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51191, - 51191, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 51192, + "--bs-btn-active-color", + 51190, 51210, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -105940,31 +97831,13 @@ export const bootstrapTokens = [ 51216, null ], - [ - "delim-token", - "-", - 51217, - 51217, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51218, - 51218, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 51219, + "--bs-btn-active-bg", + 51217, 51234, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -105991,31 +97864,13 @@ export const bootstrapTokens = [ 51243, null ], - [ - "delim-token", - "-", - 51244, - 51244, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51245, - 51245, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 51246, + "--bs-btn-active-border-color", + 51244, 51271, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -106042,31 +97897,13 @@ export const bootstrapTokens = [ 51280, null ], - [ - "delim-token", - "-", - 51281, - 51281, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51282, - 51282, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 51283, + "--bs-btn-active-shadow", + 51281, 51302, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -106250,31 +98087,13 @@ export const bootstrapTokens = [ 51340, null ], - [ - "delim-token", - "-", - 51341, - 51341, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51342, - 51342, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 51343, + "--bs-btn-disabled-color", + 51341, 51363, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -106301,31 +98120,13 @@ export const bootstrapTokens = [ 51369, null ], - [ - "delim-token", - "-", - 51370, - 51370, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51371, - 51371, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 51372, + "--bs-btn-disabled-bg", + 51370, 51389, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -106352,31 +98153,13 @@ export const bootstrapTokens = [ 51398, null ], - [ - "delim-token", - "-", - 51399, - 51399, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51400, - 51400, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 51401, + "--bs-btn-disabled-border-color", + 51399, 51428, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -106428,31 +98211,13 @@ export const bootstrapTokens = [ 51448, null ], - [ - "delim-token", - "-", - 51449, - 51449, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51450, - 51450, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 51451, + "--bs-btn-color", + 51449, 51462, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -106479,31 +98244,13 @@ export const bootstrapTokens = [ 51468, null ], - [ - "delim-token", - "-", - 51469, - 51469, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51470, - 51470, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 51471, + "--bs-btn-bg", + 51469, 51479, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -106530,31 +98277,13 @@ export const bootstrapTokens = [ 51488, null ], - [ - "delim-token", - "-", - 51489, - 51489, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51490, - 51490, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 51491, + "--bs-btn-border-color", + 51489, 51509, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -106581,31 +98310,13 @@ export const bootstrapTokens = [ 51518, null ], - [ - "delim-token", - "-", - 51519, - 51519, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51520, - 51520, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 51521, + "--bs-btn-hover-color", + 51519, 51538, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -106632,31 +98343,13 @@ export const bootstrapTokens = [ 51544, null ], - [ - "delim-token", - "-", - 51545, - 51545, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51546, - 51546, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 51547, + "--bs-btn-hover-bg", + 51545, 51561, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -106683,31 +98376,13 @@ export const bootstrapTokens = [ 51570, null ], - [ - "delim-token", - "-", - 51571, - 51571, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51572, - 51572, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 51573, + "--bs-btn-hover-border-color", + 51571, 51597, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -106734,31 +98409,13 @@ export const bootstrapTokens = [ 51606, null ], - [ - "delim-token", - "-", - 51607, - 51607, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51608, - 51608, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 51609, + "--bs-btn-focus-shadow-rgb", + 51607, 51631, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -106819,31 +98476,13 @@ export const bootstrapTokens = [ 51644, null ], - [ - "delim-token", - "-", - 51645, - 51645, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51646, - 51646, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 51647, + "--bs-btn-active-color", + 51645, 51665, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -106870,31 +98509,13 @@ export const bootstrapTokens = [ 51671, null ], - [ - "delim-token", - "-", - 51672, - 51672, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51673, - 51673, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 51674, + "--bs-btn-active-bg", + 51672, 51689, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -106921,31 +98542,13 @@ export const bootstrapTokens = [ 51698, null ], - [ - "delim-token", - "-", - 51699, - 51699, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51700, - 51700, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 51701, + "--bs-btn-active-border-color", + 51699, 51726, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -106972,31 +98575,13 @@ export const bootstrapTokens = [ 51735, null ], - [ - "delim-token", - "-", - 51736, - 51736, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51737, - 51737, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 51738, + "--bs-btn-active-shadow", + 51736, 51757, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -107180,31 +98765,13 @@ export const bootstrapTokens = [ 51795, null ], - [ - "delim-token", - "-", - 51796, - 51796, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51797, - 51797, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 51798, + "--bs-btn-disabled-color", + 51796, 51818, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -107231,31 +98798,13 @@ export const bootstrapTokens = [ 51824, null ], - [ - "delim-token", - "-", - 51825, - 51825, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51826, - 51826, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 51827, + "--bs-btn-disabled-bg", + 51825, 51844, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -107282,31 +98831,13 @@ export const bootstrapTokens = [ 51853, null ], - [ - "delim-token", - "-", - 51854, - 51854, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51855, - 51855, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 51856, + "--bs-btn-disabled-border-color", + 51854, 51883, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -107358,31 +98889,13 @@ export const bootstrapTokens = [ 51902, null ], - [ - "delim-token", - "-", - 51903, - 51903, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51904, - 51904, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 51905, + "--bs-btn-color", + 51903, 51916, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -107409,31 +98922,13 @@ export const bootstrapTokens = [ 51922, null ], - [ - "delim-token", - "-", - 51923, - 51923, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51924, - 51924, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 51925, + "--bs-btn-bg", + 51923, 51933, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -107460,31 +98955,13 @@ export const bootstrapTokens = [ 51942, null ], - [ - "delim-token", - "-", - 51943, - 51943, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51944, - 51944, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 51945, + "--bs-btn-border-color", + 51943, 51963, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -107511,31 +98988,13 @@ export const bootstrapTokens = [ 51972, null ], - [ - "delim-token", - "-", - 51973, - 51973, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 51974, - 51974, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 51975, + "--bs-btn-hover-color", + 51973, 51992, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -107562,31 +99021,13 @@ export const bootstrapTokens = [ 51998, null ], - [ - "delim-token", - "-", - 51999, - 51999, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52000, - 52000, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 52001, + "--bs-btn-hover-bg", + 51999, 52015, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -107613,31 +99054,13 @@ export const bootstrapTokens = [ 52024, null ], - [ - "delim-token", - "-", - 52025, - 52025, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52026, - 52026, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 52027, + "--bs-btn-hover-border-color", + 52025, 52051, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -107664,31 +99087,13 @@ export const bootstrapTokens = [ 52060, null ], - [ - "delim-token", - "-", - 52061, - 52061, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52062, - 52062, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 52063, + "--bs-btn-focus-shadow-rgb", + 52061, 52085, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -107749,31 +99154,13 @@ export const bootstrapTokens = [ 52095, null ], - [ - "delim-token", - "-", - 52096, - 52096, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52097, - 52097, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 52098, + "--bs-btn-active-color", + 52096, 52116, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -107800,31 +99187,13 @@ export const bootstrapTokens = [ 52122, null ], - [ - "delim-token", - "-", - 52123, - 52123, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52124, - 52124, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 52125, + "--bs-btn-active-bg", + 52123, 52140, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -107851,31 +99220,13 @@ export const bootstrapTokens = [ 52149, null ], - [ - "delim-token", - "-", - 52150, - 52150, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52151, - 52151, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 52152, + "--bs-btn-active-border-color", + 52150, 52177, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -107902,31 +99253,13 @@ export const bootstrapTokens = [ 52186, null ], - [ - "delim-token", - "-", - 52187, - 52187, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52188, - 52188, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 52189, + "--bs-btn-active-shadow", + 52187, 52208, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -108110,31 +99443,13 @@ export const bootstrapTokens = [ 52246, null ], - [ - "delim-token", - "-", - 52247, - 52247, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52248, - 52248, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 52249, + "--bs-btn-disabled-color", + 52247, 52269, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -108161,31 +99476,13 @@ export const bootstrapTokens = [ 52275, null ], - [ - "delim-token", - "-", - 52276, - 52276, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52277, - 52277, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 52278, + "--bs-btn-disabled-bg", + 52276, 52295, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -108212,31 +99509,13 @@ export const bootstrapTokens = [ 52304, null ], - [ - "delim-token", - "-", - 52305, - 52305, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52306, - 52306, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 52307, + "--bs-btn-disabled-border-color", + 52305, 52334, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -108288,31 +99567,13 @@ export const bootstrapTokens = [ 52364, null ], - [ - "delim-token", - "-", - 52365, - 52365, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52366, - 52366, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 52367, + "--bs-btn-color", + 52365, 52378, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -108339,31 +99600,13 @@ export const bootstrapTokens = [ 52387, null ], - [ - "delim-token", - "-", - 52388, - 52388, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52389, - 52389, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 52390, + "--bs-btn-border-color", + 52388, 52408, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -108390,31 +99633,13 @@ export const bootstrapTokens = [ 52417, null ], - [ - "delim-token", - "-", - 52418, - 52418, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52419, - 52419, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 52420, + "--bs-btn-hover-color", + 52418, 52437, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -108441,31 +99666,13 @@ export const bootstrapTokens = [ 52443, null ], - [ - "delim-token", - "-", - 52444, - 52444, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52445, - 52445, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 52446, + "--bs-btn-hover-bg", + 52444, 52460, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -108492,31 +99699,13 @@ export const bootstrapTokens = [ 52469, null ], - [ - "delim-token", - "-", - 52470, - 52470, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52471, - 52471, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 52472, + "--bs-btn-hover-border-color", + 52470, 52496, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -108543,31 +99732,13 @@ export const bootstrapTokens = [ 52505, null ], - [ - "delim-token", - "-", - 52506, - 52506, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52507, - 52507, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 52508, + "--bs-btn-focus-shadow-rgb", + 52506, 52530, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -108628,31 +99799,13 @@ export const bootstrapTokens = [ 52542, null ], - [ - "delim-token", - "-", - 52543, - 52543, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52544, - 52544, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 52545, + "--bs-btn-active-color", + 52543, 52563, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -108679,31 +99832,13 @@ export const bootstrapTokens = [ 52569, null ], - [ - "delim-token", - "-", - 52570, - 52570, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52571, - 52571, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 52572, + "--bs-btn-active-bg", + 52570, 52587, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -108730,31 +99865,13 @@ export const bootstrapTokens = [ 52596, null ], - [ - "delim-token", - "-", - 52597, - 52597, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52598, - 52598, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 52599, + "--bs-btn-active-border-color", + 52597, 52624, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -108781,31 +99898,13 @@ export const bootstrapTokens = [ 52633, null ], - [ - "delim-token", - "-", - 52634, - 52634, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52635, - 52635, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 52636, + "--bs-btn-active-shadow", + 52634, 52655, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -108989,31 +100088,13 @@ export const bootstrapTokens = [ 52693, null ], - [ - "delim-token", - "-", - 52694, - 52694, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52695, - 52695, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 52696, + "--bs-btn-disabled-color", + 52694, 52716, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -109040,31 +100121,13 @@ export const bootstrapTokens = [ 52725, null ], - [ - "delim-token", - "-", - 52726, - 52726, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52727, - 52727, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 52728, + "--bs-btn-disabled-bg", + 52726, 52745, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -109090,31 +100153,13 @@ export const bootstrapTokens = [ 52758, null ], - [ - "delim-token", - "-", - 52759, - 52759, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52760, - 52760, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 52761, + "--bs-btn-disabled-border-color", + 52759, 52788, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -109141,31 +100186,13 @@ export const bootstrapTokens = [ 52797, null ], - [ - "delim-token", - "-", - 52798, - 52798, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52799, - 52799, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 52800, + "--bs-gradient", + 52798, 52810, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -109216,31 +100243,13 @@ export const bootstrapTokens = [ 52839, null ], - [ - "delim-token", - "-", - 52840, - 52840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52841, - 52841, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 52842, + "--bs-btn-color", + 52840, 52853, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -109267,31 +100276,13 @@ export const bootstrapTokens = [ 52862, null ], - [ - "delim-token", - "-", - 52863, - 52863, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52864, - 52864, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 52865, + "--bs-btn-border-color", + 52863, 52883, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -109318,31 +100309,13 @@ export const bootstrapTokens = [ 52892, null ], - [ - "delim-token", - "-", - 52893, - 52893, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52894, - 52894, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 52895, + "--bs-btn-hover-color", + 52893, 52912, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -109369,31 +100342,13 @@ export const bootstrapTokens = [ 52918, null ], - [ - "delim-token", - "-", - 52919, - 52919, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52920, - 52920, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 52921, + "--bs-btn-hover-bg", + 52919, 52935, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -109420,31 +100375,13 @@ export const bootstrapTokens = [ 52944, null ], - [ - "delim-token", - "-", - 52945, - 52945, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52946, - 52946, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 52947, + "--bs-btn-hover-border-color", + 52945, 52971, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -109471,31 +100408,13 @@ export const bootstrapTokens = [ 52980, null ], - [ - "delim-token", - "-", - 52981, - 52981, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 52982, - 52982, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 52983, + "--bs-btn-focus-shadow-rgb", + 52981, 53005, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -109556,31 +100475,13 @@ export const bootstrapTokens = [ 53018, null ], - [ - "delim-token", - "-", - 53019, - 53019, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53020, - 53020, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 53021, + "--bs-btn-active-color", + 53019, 53039, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -109607,31 +100508,13 @@ export const bootstrapTokens = [ 53045, null ], - [ - "delim-token", - "-", - 53046, - 53046, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53047, - 53047, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 53048, + "--bs-btn-active-bg", + 53046, 53063, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -109658,31 +100541,13 @@ export const bootstrapTokens = [ 53072, null ], - [ - "delim-token", - "-", - 53073, - 53073, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53074, - 53074, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 53075, + "--bs-btn-active-border-color", + 53073, 53100, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -109709,31 +100574,13 @@ export const bootstrapTokens = [ 53109, null ], - [ - "delim-token", - "-", - 53110, - 53110, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53111, - 53111, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 53112, + "--bs-btn-active-shadow", + 53110, 53131, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -109917,31 +100764,13 @@ export const bootstrapTokens = [ 53169, null ], - [ - "delim-token", - "-", - 53170, - 53170, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53171, - 53171, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 53172, + "--bs-btn-disabled-color", + 53170, 53192, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -109968,31 +100797,13 @@ export const bootstrapTokens = [ 53201, null ], - [ - "delim-token", - "-", - 53202, - 53202, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53203, - 53203, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 53204, + "--bs-btn-disabled-bg", + 53202, 53221, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -110018,31 +100829,13 @@ export const bootstrapTokens = [ 53234, null ], - [ - "delim-token", - "-", - 53235, - 53235, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53236, - 53236, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 53237, + "--bs-btn-disabled-border-color", + 53235, 53264, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -110069,31 +100862,13 @@ export const bootstrapTokens = [ 53273, null ], - [ - "delim-token", - "-", - 53274, - 53274, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53275, - 53275, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 53276, + "--bs-gradient", + 53274, 53286, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -110144,31 +100919,13 @@ export const bootstrapTokens = [ 53313, null ], - [ - "delim-token", - "-", - 53314, - 53314, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53315, - 53315, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 53316, + "--bs-btn-color", + 53314, 53327, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -110195,31 +100952,13 @@ export const bootstrapTokens = [ 53336, null ], - [ - "delim-token", - "-", - 53337, - 53337, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53338, - 53338, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 53339, + "--bs-btn-border-color", + 53337, 53357, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -110246,31 +100985,13 @@ export const bootstrapTokens = [ 53366, null ], - [ - "delim-token", - "-", - 53367, - 53367, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53368, - 53368, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 53369, + "--bs-btn-hover-color", + 53367, 53386, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -110297,31 +101018,13 @@ export const bootstrapTokens = [ 53392, null ], - [ - "delim-token", - "-", - 53393, - 53393, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53394, - 53394, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 53395, + "--bs-btn-hover-bg", + 53393, 53409, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -110348,31 +101051,13 @@ export const bootstrapTokens = [ 53418, null ], - [ - "delim-token", - "-", - 53419, - 53419, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53420, - 53420, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 53421, + "--bs-btn-hover-border-color", + 53419, 53445, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -110399,31 +101084,13 @@ export const bootstrapTokens = [ 53454, null ], - [ - "delim-token", - "-", - 53455, - 53455, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53456, - 53456, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 53457, + "--bs-btn-focus-shadow-rgb", + 53455, 53479, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -110484,31 +101151,13 @@ export const bootstrapTokens = [ 53490, null ], - [ - "delim-token", - "-", - 53491, - 53491, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53492, - 53492, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 53493, + "--bs-btn-active-color", + 53491, 53511, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -110535,31 +101184,13 @@ export const bootstrapTokens = [ 53517, null ], - [ - "delim-token", - "-", - 53518, - 53518, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53519, - 53519, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 53520, + "--bs-btn-active-bg", + 53518, 53535, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -110586,31 +101217,13 @@ export const bootstrapTokens = [ 53544, null ], - [ - "delim-token", - "-", - 53545, - 53545, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53546, - 53546, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 53547, + "--bs-btn-active-border-color", + 53545, 53572, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -110637,31 +101250,13 @@ export const bootstrapTokens = [ 53581, null ], - [ - "delim-token", - "-", - 53582, - 53582, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53583, - 53583, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 53584, + "--bs-btn-active-shadow", + 53582, 53603, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -110845,31 +101440,13 @@ export const bootstrapTokens = [ 53641, null ], - [ - "delim-token", - "-", - 53642, - 53642, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53643, - 53643, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 53644, + "--bs-btn-disabled-color", + 53642, 53664, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -110896,31 +101473,13 @@ export const bootstrapTokens = [ 53673, null ], - [ - "delim-token", - "-", - 53674, - 53674, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53675, - 53675, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 53676, + "--bs-btn-disabled-bg", + 53674, 53693, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -110946,31 +101505,13 @@ export const bootstrapTokens = [ 53706, null ], - [ - "delim-token", - "-", - 53707, - 53707, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53708, - 53708, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 53709, + "--bs-btn-disabled-border-color", + 53707, 53736, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -110997,31 +101538,13 @@ export const bootstrapTokens = [ 53745, null ], - [ - "delim-token", - "-", - 53746, - 53746, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53747, - 53747, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 53748, + "--bs-gradient", + 53746, 53758, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -111072,31 +101595,13 @@ export const bootstrapTokens = [ 53782, null ], - [ - "delim-token", - "-", - 53783, - 53783, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53784, - 53784, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 53785, + "--bs-btn-color", + 53783, 53796, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -111123,31 +101628,13 @@ export const bootstrapTokens = [ 53805, null ], - [ - "delim-token", - "-", - 53806, - 53806, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53807, - 53807, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 53808, + "--bs-btn-border-color", + 53806, 53826, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -111174,31 +101661,13 @@ export const bootstrapTokens = [ 53835, null ], - [ - "delim-token", - "-", - 53836, - 53836, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53837, - 53837, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 53838, + "--bs-btn-hover-color", + 53836, 53855, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -111225,31 +101694,13 @@ export const bootstrapTokens = [ 53861, null ], - [ - "delim-token", - "-", - 53862, - 53862, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53863, - 53863, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 53864, + "--bs-btn-hover-bg", + 53862, 53878, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -111276,31 +101727,13 @@ export const bootstrapTokens = [ 53887, null ], - [ - "delim-token", - "-", - 53888, - 53888, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53889, - 53889, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 53890, + "--bs-btn-hover-border-color", + 53888, 53914, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -111327,31 +101760,13 @@ export const bootstrapTokens = [ 53923, null ], - [ - "delim-token", - "-", - 53924, - 53924, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53925, - 53925, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 53926, + "--bs-btn-focus-shadow-rgb", + 53924, 53948, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -111412,31 +101827,13 @@ export const bootstrapTokens = [ 53960, null ], - [ - "delim-token", - "-", - 53961, - 53961, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53962, - 53962, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 53963, + "--bs-btn-active-color", + 53961, 53981, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -111463,31 +101860,13 @@ export const bootstrapTokens = [ 53987, null ], - [ - "delim-token", - "-", - 53988, - 53988, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 53989, - 53989, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 53990, + "--bs-btn-active-bg", + 53988, 54005, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -111514,31 +101893,13 @@ export const bootstrapTokens = [ 54014, null ], - [ - "delim-token", - "-", - 54015, - 54015, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54016, - 54016, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 54017, + "--bs-btn-active-border-color", + 54015, 54042, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -111565,31 +101926,13 @@ export const bootstrapTokens = [ 54051, null ], - [ - "delim-token", - "-", - 54052, - 54052, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54053, - 54053, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 54054, + "--bs-btn-active-shadow", + 54052, 54073, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -111773,31 +102116,13 @@ export const bootstrapTokens = [ 54111, null ], - [ - "delim-token", - "-", - 54112, - 54112, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54113, - 54113, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 54114, + "--bs-btn-disabled-color", + 54112, 54134, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -111824,31 +102149,13 @@ export const bootstrapTokens = [ 54143, null ], - [ - "delim-token", - "-", - 54144, - 54144, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54145, - 54145, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 54146, + "--bs-btn-disabled-bg", + 54144, 54163, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -111874,31 +102181,13 @@ export const bootstrapTokens = [ 54176, null ], - [ - "delim-token", - "-", - 54177, - 54177, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54178, - 54178, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 54179, + "--bs-btn-disabled-border-color", + 54177, 54206, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -111925,31 +102214,13 @@ export const bootstrapTokens = [ 54215, null ], - [ - "delim-token", - "-", - 54216, - 54216, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54217, - 54217, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 54218, + "--bs-gradient", + 54216, 54228, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -112000,31 +102271,13 @@ export const bootstrapTokens = [ 54255, null ], - [ - "delim-token", - "-", - 54256, - 54256, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54257, - 54257, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 54258, + "--bs-btn-color", + 54256, 54269, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -112051,31 +102304,13 @@ export const bootstrapTokens = [ 54278, null ], - [ - "delim-token", - "-", - 54279, - 54279, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54280, - 54280, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 54281, + "--bs-btn-border-color", + 54279, 54299, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -112102,31 +102337,13 @@ export const bootstrapTokens = [ 54308, null ], - [ - "delim-token", - "-", - 54309, - 54309, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54310, - 54310, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 54311, + "--bs-btn-hover-color", + 54309, 54328, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -112153,31 +102370,13 @@ export const bootstrapTokens = [ 54334, null ], - [ - "delim-token", - "-", - 54335, - 54335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54336, - 54336, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 54337, + "--bs-btn-hover-bg", + 54335, 54351, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -112204,31 +102403,13 @@ export const bootstrapTokens = [ 54360, null ], - [ - "delim-token", - "-", - 54361, - 54361, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54362, - 54362, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 54363, + "--bs-btn-hover-border-color", + 54361, 54387, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -112255,31 +102436,13 @@ export const bootstrapTokens = [ 54396, null ], - [ - "delim-token", - "-", - 54397, - 54397, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54398, - 54398, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 54399, + "--bs-btn-focus-shadow-rgb", + 54397, 54421, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -112340,31 +102503,13 @@ export const bootstrapTokens = [ 54432, null ], - [ - "delim-token", - "-", - 54433, - 54433, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54434, - 54434, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 54435, + "--bs-btn-active-color", + 54433, 54453, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -112391,31 +102536,13 @@ export const bootstrapTokens = [ 54459, null ], - [ - "delim-token", - "-", - 54460, - 54460, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54461, - 54461, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 54462, + "--bs-btn-active-bg", + 54460, 54477, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -112442,31 +102569,13 @@ export const bootstrapTokens = [ 54486, null ], - [ - "delim-token", - "-", - 54487, - 54487, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54488, - 54488, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 54489, + "--bs-btn-active-border-color", + 54487, 54514, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -112493,31 +102602,13 @@ export const bootstrapTokens = [ 54523, null ], - [ - "delim-token", - "-", - 54524, - 54524, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54525, - 54525, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 54526, + "--bs-btn-active-shadow", + 54524, 54545, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -112701,31 +102792,13 @@ export const bootstrapTokens = [ 54583, null ], - [ - "delim-token", - "-", - 54584, - 54584, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54585, - 54585, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 54586, + "--bs-btn-disabled-color", + 54584, 54606, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -112752,31 +102825,13 @@ export const bootstrapTokens = [ 54615, null ], - [ - "delim-token", - "-", - 54616, - 54616, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54617, - 54617, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 54618, + "--bs-btn-disabled-bg", + 54616, 54635, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -112802,31 +102857,13 @@ export const bootstrapTokens = [ 54648, null ], - [ - "delim-token", - "-", - 54649, - 54649, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54650, - 54650, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 54651, + "--bs-btn-disabled-border-color", + 54649, 54678, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -112853,31 +102890,13 @@ export const bootstrapTokens = [ 54687, null ], - [ - "delim-token", - "-", - 54688, - 54688, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54689, - 54689, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 54690, + "--bs-gradient", + 54688, 54700, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -112928,31 +102947,13 @@ export const bootstrapTokens = [ 54726, null ], - [ - "delim-token", - "-", - 54727, - 54727, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54728, - 54728, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 54729, + "--bs-btn-color", + 54727, 54740, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -112979,31 +102980,13 @@ export const bootstrapTokens = [ 54749, null ], - [ - "delim-token", - "-", - 54750, - 54750, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54751, - 54751, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 54752, + "--bs-btn-border-color", + 54750, 54770, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -113030,31 +103013,13 @@ export const bootstrapTokens = [ 54779, null ], - [ - "delim-token", - "-", - 54780, - 54780, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54781, - 54781, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 54782, + "--bs-btn-hover-color", + 54780, 54799, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -113081,31 +103046,13 @@ export const bootstrapTokens = [ 54805, null ], - [ - "delim-token", - "-", - 54806, - 54806, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54807, - 54807, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 54808, + "--bs-btn-hover-bg", + 54806, 54822, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -113132,31 +103079,13 @@ export const bootstrapTokens = [ 54831, null ], - [ - "delim-token", - "-", - 54832, - 54832, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54833, - 54833, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 54834, + "--bs-btn-hover-border-color", + 54832, 54858, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -113183,31 +103112,13 @@ export const bootstrapTokens = [ 54867, null ], - [ - "delim-token", - "-", - 54868, - 54868, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54869, - 54869, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 54870, + "--bs-btn-focus-shadow-rgb", + 54868, 54892, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -113268,31 +103179,13 @@ export const bootstrapTokens = [ 54903, null ], - [ - "delim-token", - "-", - 54904, - 54904, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54905, - 54905, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 54906, + "--bs-btn-active-color", + 54904, 54924, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -113319,31 +103212,13 @@ export const bootstrapTokens = [ 54930, null ], - [ - "delim-token", - "-", - 54931, - 54931, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54932, - 54932, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 54933, + "--bs-btn-active-bg", + 54931, 54948, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -113370,31 +103245,13 @@ export const bootstrapTokens = [ 54957, null ], - [ - "delim-token", - "-", - 54958, - 54958, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54959, - 54959, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 54960, + "--bs-btn-active-border-color", + 54958, 54985, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -113421,31 +103278,13 @@ export const bootstrapTokens = [ 54994, null ], - [ - "delim-token", - "-", - 54995, - 54995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 54996, - 54996, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 54997, + "--bs-btn-active-shadow", + 54995, 55016, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -113629,31 +103468,13 @@ export const bootstrapTokens = [ 55054, null ], - [ - "delim-token", - "-", - 55055, - 55055, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55056, - 55056, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 55057, + "--bs-btn-disabled-color", + 55055, 55077, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -113680,31 +103501,13 @@ export const bootstrapTokens = [ 55086, null ], - [ - "delim-token", - "-", - 55087, - 55087, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55088, - 55088, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 55089, + "--bs-btn-disabled-bg", + 55087, 55106, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -113730,31 +103533,13 @@ export const bootstrapTokens = [ 55119, null ], - [ - "delim-token", - "-", - 55120, - 55120, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55121, - 55121, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 55122, + "--bs-btn-disabled-border-color", + 55120, 55149, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -113781,31 +103566,13 @@ export const bootstrapTokens = [ 55158, null ], - [ - "delim-token", - "-", - 55159, - 55159, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55160, - 55160, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 55161, + "--bs-gradient", + 55159, 55171, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -113856,31 +103623,13 @@ export const bootstrapTokens = [ 55196, null ], - [ - "delim-token", - "-", - 55197, - 55197, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55198, - 55198, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 55199, + "--bs-btn-color", + 55197, 55210, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -113907,31 +103656,13 @@ export const bootstrapTokens = [ 55219, null ], - [ - "delim-token", - "-", - 55220, - 55220, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55221, - 55221, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 55222, + "--bs-btn-border-color", + 55220, 55240, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -113958,31 +103689,13 @@ export const bootstrapTokens = [ 55249, null ], - [ - "delim-token", - "-", - 55250, - 55250, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55251, - 55251, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 55252, + "--bs-btn-hover-color", + 55250, 55269, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -114009,31 +103722,13 @@ export const bootstrapTokens = [ 55275, null ], - [ - "delim-token", - "-", - 55276, - 55276, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55277, - 55277, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 55278, + "--bs-btn-hover-bg", + 55276, 55292, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -114060,31 +103755,13 @@ export const bootstrapTokens = [ 55301, null ], - [ - "delim-token", - "-", - 55302, - 55302, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55303, - 55303, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 55304, + "--bs-btn-hover-border-color", + 55302, 55328, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -114111,31 +103788,13 @@ export const bootstrapTokens = [ 55337, null ], - [ - "delim-token", - "-", - 55338, - 55338, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55339, - 55339, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 55340, + "--bs-btn-focus-shadow-rgb", + 55338, 55362, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -114196,31 +103855,13 @@ export const bootstrapTokens = [ 55375, null ], - [ - "delim-token", - "-", - 55376, - 55376, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55377, - 55377, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 55378, + "--bs-btn-active-color", + 55376, 55396, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -114247,31 +103888,13 @@ export const bootstrapTokens = [ 55402, null ], - [ - "delim-token", - "-", - 55403, - 55403, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55404, - 55404, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 55405, + "--bs-btn-active-bg", + 55403, 55420, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -114298,31 +103921,13 @@ export const bootstrapTokens = [ 55429, null ], - [ - "delim-token", - "-", - 55430, - 55430, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55431, - 55431, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 55432, + "--bs-btn-active-border-color", + 55430, 55457, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -114349,31 +103954,13 @@ export const bootstrapTokens = [ 55466, null ], - [ - "delim-token", - "-", - 55467, - 55467, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55468, - 55468, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 55469, + "--bs-btn-active-shadow", + 55467, 55488, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -114557,31 +104144,13 @@ export const bootstrapTokens = [ 55526, null ], - [ - "delim-token", - "-", - 55527, - 55527, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55528, - 55528, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 55529, + "--bs-btn-disabled-color", + 55527, 55549, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -114608,31 +104177,13 @@ export const bootstrapTokens = [ 55558, null ], - [ - "delim-token", - "-", - 55559, - 55559, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55560, - 55560, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 55561, + "--bs-btn-disabled-bg", + 55559, 55578, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -114658,31 +104209,13 @@ export const bootstrapTokens = [ 55591, null ], - [ - "delim-token", - "-", - 55592, - 55592, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55593, - 55593, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 55594, + "--bs-btn-disabled-border-color", + 55592, 55621, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -114709,31 +104242,13 @@ export const bootstrapTokens = [ 55630, null ], - [ - "delim-token", - "-", - 55631, - 55631, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55632, - 55632, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 55633, + "--bs-gradient", + 55631, 55643, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -114784,31 +104299,13 @@ export const bootstrapTokens = [ 55667, null ], - [ - "delim-token", - "-", - 55668, - 55668, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55669, - 55669, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 55670, + "--bs-btn-color", + 55668, 55681, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -114835,31 +104332,13 @@ export const bootstrapTokens = [ 55690, null ], - [ - "delim-token", - "-", - 55691, - 55691, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55692, - 55692, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 55693, + "--bs-btn-border-color", + 55691, 55711, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -114886,31 +104365,13 @@ export const bootstrapTokens = [ 55720, null ], - [ - "delim-token", - "-", - 55721, - 55721, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55722, - 55722, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 55723, + "--bs-btn-hover-color", + 55721, 55740, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -114937,31 +104398,13 @@ export const bootstrapTokens = [ 55746, null ], - [ - "delim-token", - "-", - 55747, - 55747, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55748, - 55748, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-bg", - 55749, + "--bs-btn-hover-bg", + 55747, 55763, { - "value": "bs-btn-hover-bg" + "value": "--bs-btn-hover-bg" } ], [ @@ -114988,31 +104431,13 @@ export const bootstrapTokens = [ 55772, null ], - [ - "delim-token", - "-", - 55773, - 55773, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55774, - 55774, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 55775, + "--bs-btn-hover-border-color", + 55773, 55799, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -115039,31 +104464,13 @@ export const bootstrapTokens = [ 55808, null ], - [ - "delim-token", - "-", - 55809, - 55809, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55810, - 55810, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 55811, + "--bs-btn-focus-shadow-rgb", + 55809, 55833, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -115124,31 +104531,13 @@ export const bootstrapTokens = [ 55843, null ], - [ - "delim-token", - "-", - 55844, - 55844, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55845, - 55845, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 55846, + "--bs-btn-active-color", + 55844, 55864, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -115175,31 +104564,13 @@ export const bootstrapTokens = [ 55870, null ], - [ - "delim-token", - "-", - 55871, - 55871, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55872, - 55872, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-bg", - 55873, + "--bs-btn-active-bg", + 55871, 55888, { - "value": "bs-btn-active-bg" + "value": "--bs-btn-active-bg" } ], [ @@ -115226,31 +104597,13 @@ export const bootstrapTokens = [ 55897, null ], - [ - "delim-token", - "-", - 55898, - 55898, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55899, - 55899, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 55900, + "--bs-btn-active-border-color", + 55898, 55925, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -115277,31 +104630,13 @@ export const bootstrapTokens = [ 55934, null ], - [ - "delim-token", - "-", - 55935, - 55935, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55936, - 55936, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-shadow", - 55937, + "--bs-btn-active-shadow", + 55935, 55956, { - "value": "bs-btn-active-shadow" + "value": "--bs-btn-active-shadow" } ], [ @@ -115485,31 +104820,13 @@ export const bootstrapTokens = [ 55994, null ], - [ - "delim-token", - "-", - 55995, - 55995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 55996, - 55996, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 55997, + "--bs-btn-disabled-color", + 55995, 56017, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -115536,31 +104853,13 @@ export const bootstrapTokens = [ 56026, null ], - [ - "delim-token", - "-", - 56027, - 56027, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56028, - 56028, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-bg", - 56029, + "--bs-btn-disabled-bg", + 56027, 56046, { - "value": "bs-btn-disabled-bg" + "value": "--bs-btn-disabled-bg" } ], [ @@ -115586,31 +104885,13 @@ export const bootstrapTokens = [ 56059, null ], - [ - "delim-token", - "-", - 56060, - 56060, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56061, - 56061, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 56062, + "--bs-btn-disabled-border-color", + 56060, 56089, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -115637,31 +104918,13 @@ export const bootstrapTokens = [ 56098, null ], - [ - "delim-token", - "-", - 56099, - 56099, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56100, - 56100, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 56101, + "--bs-gradient", + 56099, 56111, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -115712,31 +104975,13 @@ export const bootstrapTokens = [ 56127, null ], - [ - "delim-token", - "-", - 56128, - 56128, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56129, - 56129, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-weight", - 56130, + "--bs-btn-font-weight", + 56128, 56147, { - "value": "bs-btn-font-weight" + "value": "--bs-btn-font-weight" } ], [ @@ -115763,31 +105008,13 @@ export const bootstrapTokens = [ 56152, null ], - [ - "delim-token", - "-", - 56153, - 56153, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56154, - 56154, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 56155, + "--bs-btn-color", + 56153, 56166, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -115806,31 +105033,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 56172, - 56172, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56173, - 56173, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-color", - 56174, + "--bs-link-color", + 56172, 56186, { - "value": "bs-link-color" + "value": "--bs-link-color" } ], [ @@ -115847,31 +105056,13 @@ export const bootstrapTokens = [ 56188, null ], - [ - "delim-token", - "-", - 56189, - 56189, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56190, - 56190, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-bg", - 56191, + "--bs-btn-bg", + 56189, 56199, { - "value": "bs-btn-bg" + "value": "--bs-btn-bg" } ], [ @@ -115897,31 +105088,13 @@ export const bootstrapTokens = [ 56212, null ], - [ - "delim-token", - "-", - 56213, - 56213, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56214, - 56214, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-color", - 56215, + "--bs-btn-border-color", + 56213, 56233, { - "value": "bs-btn-border-color" + "value": "--bs-btn-border-color" } ], [ @@ -115947,31 +105120,13 @@ export const bootstrapTokens = [ 56246, null ], - [ - "delim-token", - "-", - 56247, - 56247, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56248, - 56248, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 56249, + "--bs-btn-hover-color", + 56247, 56266, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -115990,31 +105145,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 56272, - 56272, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56273, - 56273, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 56274, + "--bs-link-hover-color", + 56272, 56292, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -116031,31 +105168,13 @@ export const bootstrapTokens = [ 56294, null ], - [ - "delim-token", - "-", - 56295, - 56295, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56296, - 56296, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-border-color", - 56297, + "--bs-btn-hover-border-color", + 56295, 56321, { - "value": "bs-btn-hover-border-color" + "value": "--bs-btn-hover-border-color" } ], [ @@ -116081,31 +105200,13 @@ export const bootstrapTokens = [ 56334, null ], - [ - "delim-token", - "-", - 56335, - 56335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56336, - 56336, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-color", - 56337, + "--bs-btn-active-color", + 56335, 56355, { - "value": "bs-btn-active-color" + "value": "--bs-btn-active-color" } ], [ @@ -116124,31 +105225,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 56361, - 56361, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56362, - 56362, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 56363, + "--bs-link-hover-color", + 56361, 56381, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -116165,31 +105248,13 @@ export const bootstrapTokens = [ 56383, null ], - [ - "delim-token", - "-", - 56384, - 56384, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56385, - 56385, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-active-border-color", - 56386, + "--bs-btn-active-border-color", + 56384, 56411, { - "value": "bs-btn-active-border-color" + "value": "--bs-btn-active-border-color" } ], [ @@ -116215,31 +105280,13 @@ export const bootstrapTokens = [ 56424, null ], - [ - "delim-token", - "-", - 56425, - 56425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56426, - 56426, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-color", - 56427, + "--bs-btn-disabled-color", + 56425, 56447, { - "value": "bs-btn-disabled-color" + "value": "--bs-btn-disabled-color" } ], [ @@ -116266,31 +105313,13 @@ export const bootstrapTokens = [ 56456, null ], - [ - "delim-token", - "-", - 56457, - 56457, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56458, - 56458, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-disabled-border-color", - 56459, + "--bs-btn-disabled-border-color", + 56457, 56486, { - "value": "bs-btn-disabled-border-color" + "value": "--bs-btn-disabled-border-color" } ], [ @@ -116316,31 +105345,13 @@ export const bootstrapTokens = [ 56499, null ], - [ - "delim-token", - "-", - 56500, - 56500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56501, - 56501, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-box-shadow", - 56502, + "--bs-btn-box-shadow", + 56500, 56518, { - "value": "bs-btn-box-shadow" + "value": "--bs-btn-box-shadow" } ], [ @@ -116366,31 +105377,13 @@ export const bootstrapTokens = [ 56524, null ], - [ - "delim-token", - "-", - 56525, - 56525, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56526, - 56526, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-focus-shadow-rgb", - 56527, + "--bs-btn-focus-shadow-rgb", + 56525, 56549, { - "value": "bs-btn-focus-shadow-rgb" + "value": "--bs-btn-focus-shadow-rgb" } ], [ @@ -116549,31 +105542,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 56622, - 56622, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56623, - 56623, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-color", - 56624, + "--bs-btn-color", + 56622, 56635, { - "value": "bs-btn-color" + "value": "--bs-btn-color" } ], [ @@ -116656,31 +105631,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 56664, - 56664, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56665, - 56665, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-hover-color", - 56666, + "--bs-btn-hover-color", + 56664, 56683, { - "value": "bs-btn-hover-color" + "value": "--bs-btn-hover-color" } ], [ @@ -116774,31 +105731,13 @@ export const bootstrapTokens = [ 56712, null ], - [ - "delim-token", - "-", - 56713, - 56713, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56714, - 56714, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-y", - 56715, + "--bs-btn-padding-y", + 56713, 56730, { - "value": "bs-btn-padding-y" + "value": "--bs-btn-padding-y" } ], [ @@ -116826,31 +105765,13 @@ export const bootstrapTokens = [ 56738, null ], - [ - "delim-token", - "-", - 56739, - 56739, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56740, - 56740, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-x", - 56741, + "--bs-btn-padding-x", + 56739, 56756, { - "value": "bs-btn-padding-x" + "value": "--bs-btn-padding-x" } ], [ @@ -116878,31 +105799,13 @@ export const bootstrapTokens = [ 56762, null ], - [ - "delim-token", - "-", - 56763, - 56763, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56764, - 56764, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-size", - 56765, + "--bs-btn-font-size", + 56763, 56780, { - "value": "bs-btn-font-size" + "value": "--bs-btn-font-size" } ], [ @@ -116930,31 +105833,13 @@ export const bootstrapTokens = [ 56789, null ], - [ - "delim-token", - "-", - 56790, - 56790, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56791, - 56791, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-radius", - 56792, + "--bs-btn-border-radius", + 56790, 56811, { - "value": "bs-btn-border-radius" + "value": "--bs-btn-border-radius" } ], [ @@ -117059,31 +105944,13 @@ export const bootstrapTokens = [ 56846, null ], - [ - "delim-token", - "-", - 56847, - 56847, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56848, - 56848, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-y", - 56849, + "--bs-btn-padding-y", + 56847, 56864, { - "value": "bs-btn-padding-y" + "value": "--bs-btn-padding-y" } ], [ @@ -117111,31 +105978,13 @@ export const bootstrapTokens = [ 56873, null ], - [ - "delim-token", - "-", - 56874, - 56874, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56875, - 56875, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-padding-x", - 56876, + "--bs-btn-padding-x", + 56874, 56891, { - "value": "bs-btn-padding-x" + "value": "--bs-btn-padding-x" } ], [ @@ -117163,31 +106012,13 @@ export const bootstrapTokens = [ 56899, null ], - [ - "delim-token", - "-", - 56900, - 56900, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56901, - 56901, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-font-size", - 56902, + "--bs-btn-font-size", + 56900, 56917, { - "value": "bs-btn-font-size" + "value": "--bs-btn-font-size" } ], [ @@ -117215,31 +106046,13 @@ export const bootstrapTokens = [ 56927, null ], - [ - "delim-token", - "-", - 56928, - 56928, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 56929, - 56929, - { - "value": "-" - } - ], [ "ident-token", - "bs-btn-border-radius", - 56930, + "--bs-btn-border-radius", + 56928, 56949, { - "value": "bs-btn-border-radius" + "value": "--bs-btn-border-radius" } ], [ @@ -119037,31 +107850,13 @@ export const bootstrapTokens = [ 57807, null ], - [ - "delim-token", - "-", - 57808, - 57808, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57809, - 57809, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-zindex", - 57810, + "--bs-dropdown-zindex", + 57808, 57827, { - "value": "bs-dropdown-zindex" + "value": "--bs-dropdown-zindex" } ], [ @@ -119088,31 +107883,13 @@ export const bootstrapTokens = [ 57833, null ], - [ - "delim-token", - "-", - 57834, - 57834, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57835, - 57835, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-min-width", - 57836, + "--bs-dropdown-min-width", + 57834, 57856, { - "value": "bs-dropdown-min-width" + "value": "--bs-dropdown-min-width" } ], [ @@ -119140,31 +107917,13 @@ export const bootstrapTokens = [ 57863, null ], - [ - "delim-token", - "-", - 57864, - 57864, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57865, - 57865, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-padding-x", - 57866, + "--bs-dropdown-padding-x", + 57864, 57886, { - "value": "bs-dropdown-padding-x" + "value": "--bs-dropdown-padding-x" } ], [ @@ -119191,31 +107950,13 @@ export const bootstrapTokens = [ 57889, null ], - [ - "delim-token", - "-", - 57890, - 57890, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57891, - 57891, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-padding-y", - 57892, + "--bs-dropdown-padding-y", + 57890, 57912, { - "value": "bs-dropdown-padding-y" + "value": "--bs-dropdown-padding-y" } ], [ @@ -119243,31 +107984,13 @@ export const bootstrapTokens = [ 57920, null ], - [ - "delim-token", - "-", - 57921, - 57921, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57922, - 57922, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-spacer", - 57923, + "--bs-dropdown-spacer", + 57921, 57940, { - "value": "bs-dropdown-spacer" + "value": "--bs-dropdown-spacer" } ], [ @@ -119295,31 +108018,13 @@ export const bootstrapTokens = [ 57950, null ], - [ - "delim-token", - "-", - 57951, - 57951, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57952, - 57952, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-font-size", - 57953, + "--bs-dropdown-font-size", + 57951, 57973, { - "value": "bs-dropdown-font-size" + "value": "--bs-dropdown-font-size" } ], [ @@ -119347,31 +108052,13 @@ export const bootstrapTokens = [ 57979, null ], - [ - "delim-token", - "-", - 57980, - 57980, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 57981, - 57981, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-color", - 57982, + "--bs-dropdown-color", + 57980, 57998, { - "value": "bs-dropdown-color" + "value": "--bs-dropdown-color" } ], [ @@ -119398,31 +108085,13 @@ export const bootstrapTokens = [ 58007, null ], - [ - "delim-token", - "-", - 58008, - 58008, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58009, - 58009, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-bg", - 58010, + "--bs-dropdown-bg", + 58008, 58023, { - "value": "bs-dropdown-bg" + "value": "--bs-dropdown-bg" } ], [ @@ -119449,31 +108118,13 @@ export const bootstrapTokens = [ 58029, null ], - [ - "delim-token", - "-", - 58030, - 58030, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58031, - 58031, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-color", - 58032, + "--bs-dropdown-border-color", + 58030, 58055, { - "value": "bs-dropdown-border-color" + "value": "--bs-dropdown-border-color" } ], [ @@ -119492,31 +108143,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58061, - 58061, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58062, - 58062, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 58063, + "--bs-border-color-translucent", + 58061, 58089, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -119533,31 +108166,13 @@ export const bootstrapTokens = [ 58091, null ], - [ - "delim-token", - "-", - 58092, - 58092, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58093, - 58093, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-radius", - 58094, + "--bs-dropdown-border-radius", + 58092, 58118, { - "value": "bs-dropdown-border-radius" + "value": "--bs-dropdown-border-radius" } ], [ @@ -119585,31 +108200,13 @@ export const bootstrapTokens = [ 58128, null ], - [ - "delim-token", - "-", - 58129, - 58129, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58130, - 58130, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-width", - 58131, + "--bs-dropdown-border-width", + 58129, 58154, { - "value": "bs-dropdown-border-width" + "value": "--bs-dropdown-border-width" } ], [ @@ -119637,31 +108234,13 @@ export const bootstrapTokens = [ 58159, null ], - [ - "delim-token", - "-", - 58160, - 58160, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58161, - 58161, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-inner-border-radius", - 58162, + "--bs-dropdown-inner-border-radius", + 58160, 58192, { - "value": "bs-dropdown-inner-border-radius" + "value": "--bs-dropdown-inner-border-radius" } ], [ @@ -119739,31 +108318,13 @@ export const bootstrapTokens = [ 58214, null ], - [ - "delim-token", - "-", - 58215, - 58215, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58216, - 58216, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-divider-bg", - 58217, + "--bs-dropdown-divider-bg", + 58215, 58238, { - "value": "bs-dropdown-divider-bg" + "value": "--bs-dropdown-divider-bg" } ], [ @@ -119782,31 +108343,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58244, - 58244, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58245, - 58245, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 58246, + "--bs-border-color-translucent", + 58244, 58272, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -119823,31 +108366,13 @@ export const bootstrapTokens = [ 58274, null ], - [ - "delim-token", - "-", - 58275, - 58275, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58276, - 58276, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-divider-margin-y", - 58277, + "--bs-dropdown-divider-margin-y", + 58275, 58304, { - "value": "bs-dropdown-divider-margin-y" + "value": "--bs-dropdown-divider-margin-y" } ], [ @@ -119875,31 +108400,13 @@ export const bootstrapTokens = [ 58312, null ], - [ - "delim-token", - "-", - 58313, - 58313, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58314, - 58314, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-box-shadow", - 58315, + "--bs-dropdown-box-shadow", + 58313, 58336, { - "value": "bs-dropdown-box-shadow" + "value": "--bs-dropdown-box-shadow" } ], [ @@ -120067,31 +108574,13 @@ export const bootstrapTokens = [ 58371, null ], - [ - "delim-token", - "-", - 58372, - 58372, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58373, - 58373, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-color", - 58374, + "--bs-dropdown-link-color", + 58372, 58395, { - "value": "bs-dropdown-link-color" + "value": "--bs-dropdown-link-color" } ], [ @@ -120118,31 +108607,13 @@ export const bootstrapTokens = [ 58404, null ], - [ - "delim-token", - "-", - 58405, - 58405, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58406, - 58406, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-color", - 58407, + "--bs-dropdown-link-hover-color", + 58405, 58434, { - "value": "bs-dropdown-link-hover-color" + "value": "--bs-dropdown-link-hover-color" } ], [ @@ -120169,31 +108640,13 @@ export const bootstrapTokens = [ 58443, null ], - [ - "delim-token", - "-", - 58444, - 58444, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58445, - 58445, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-bg", - 58446, + "--bs-dropdown-link-hover-bg", + 58444, 58470, { - "value": "bs-dropdown-link-hover-bg" + "value": "--bs-dropdown-link-hover-bg" } ], [ @@ -120220,31 +108673,13 @@ export const bootstrapTokens = [ 58479, null ], - [ - "delim-token", - "-", - 58480, - 58480, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58481, - 58481, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-color", - 58482, + "--bs-dropdown-link-active-color", + 58480, 58510, { - "value": "bs-dropdown-link-active-color" + "value": "--bs-dropdown-link-active-color" } ], [ @@ -120271,31 +108706,13 @@ export const bootstrapTokens = [ 58516, null ], - [ - "delim-token", - "-", - 58517, - 58517, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58518, - 58518, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-bg", - 58519, + "--bs-dropdown-link-active-bg", + 58517, 58544, { - "value": "bs-dropdown-link-active-bg" + "value": "--bs-dropdown-link-active-bg" } ], [ @@ -120322,31 +108739,13 @@ export const bootstrapTokens = [ 58553, null ], - [ - "delim-token", - "-", - 58554, - 58554, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58555, - 58555, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-disabled-color", - 58556, + "--bs-dropdown-link-disabled-color", + 58554, 58586, { - "value": "bs-dropdown-link-disabled-color" + "value": "--bs-dropdown-link-disabled-color" } ], [ @@ -120373,31 +108772,13 @@ export const bootstrapTokens = [ 58595, null ], - [ - "delim-token", - "-", - 58596, - 58596, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58597, - 58597, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-x", - 58598, + "--bs-dropdown-item-padding-x", + 58596, 58623, { - "value": "bs-dropdown-item-padding-x" + "value": "--bs-dropdown-item-padding-x" } ], [ @@ -120425,31 +108806,13 @@ export const bootstrapTokens = [ 58629, null ], - [ - "delim-token", - "-", - 58630, - 58630, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58631, - 58631, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-y", - 58632, + "--bs-dropdown-item-padding-y", + 58630, 58657, { - "value": "bs-dropdown-item-padding-y" + "value": "--bs-dropdown-item-padding-y" } ], [ @@ -120477,31 +108840,13 @@ export const bootstrapTokens = [ 58666, null ], - [ - "delim-token", - "-", - 58667, - 58667, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58668, - 58668, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-color", - 58669, + "--bs-dropdown-header-color", + 58667, 58692, { - "value": "bs-dropdown-header-color" + "value": "--bs-dropdown-header-color" } ], [ @@ -120528,31 +108873,13 @@ export const bootstrapTokens = [ 58701, null ], - [ - "delim-token", - "-", - 58702, - 58702, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58703, - 58703, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-padding-x", - 58704, + "--bs-dropdown-header-padding-x", + 58702, 58731, { - "value": "bs-dropdown-header-padding-x" + "value": "--bs-dropdown-header-padding-x" } ], [ @@ -120580,31 +108907,13 @@ export const bootstrapTokens = [ 58737, null ], - [ - "delim-token", - "-", - 58738, - 58738, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58739, - 58739, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-padding-y", - 58740, + "--bs-dropdown-header-padding-y", + 58738, 58767, { - "value": "bs-dropdown-header-padding-y" + "value": "--bs-dropdown-header-padding-y" } ], [ @@ -120689,31 +108998,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58806, - 58806, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58807, - 58807, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-zindex", - 58808, + "--bs-dropdown-zindex", + 58806, 58825, { - "value": "bs-dropdown-zindex" + "value": "--bs-dropdown-zindex" } ], [ @@ -120787,31 +109078,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58855, - 58855, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58856, - 58856, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-min-width", - 58857, + "--bs-dropdown-min-width", + 58855, 58877, { - "value": "bs-dropdown-min-width" + "value": "--bs-dropdown-min-width" } ], [ @@ -120853,31 +109126,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58892, - 58892, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58893, - 58893, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-padding-y", - 58894, + "--bs-dropdown-padding-y", + 58892, 58914, { - "value": "bs-dropdown-padding-y" + "value": "--bs-dropdown-padding-y" } ], [ @@ -120903,31 +109158,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58921, - 58921, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58922, - 58922, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-padding-x", - 58923, + "--bs-dropdown-padding-x", + 58921, 58943, { - "value": "bs-dropdown-padding-x" + "value": "--bs-dropdown-padding-x" } ], [ @@ -121002,31 +109239,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 58969, - 58969, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 58970, - 58970, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-font-size", - 58971, + "--bs-dropdown-font-size", + 58969, 58991, { - "value": "bs-dropdown-font-size" + "value": "--bs-dropdown-font-size" } ], [ @@ -121068,31 +109287,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59004, - 59004, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59005, - 59005, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-color", - 59006, + "--bs-dropdown-color", + 59004, 59022, { - "value": "bs-dropdown-color" + "value": "--bs-dropdown-color" } ], [ @@ -121198,31 +109399,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59078, - 59078, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59079, - 59079, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-bg", - 59080, + "--bs-dropdown-bg", + 59078, 59093, { - "value": "bs-dropdown-bg" + "value": "--bs-dropdown-bg" } ], [ @@ -121296,31 +109479,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59135, - 59135, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59136, - 59136, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-width", - 59137, + "--bs-dropdown-border-width", + 59135, 59160, { - "value": "bs-dropdown-border-width" + "value": "--bs-dropdown-border-width" } ], [ @@ -121362,31 +109527,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59173, - 59173, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59174, - 59174, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-color", - 59175, + "--bs-dropdown-border-color", + 59173, 59198, { - "value": "bs-dropdown-border-color" + "value": "--bs-dropdown-border-color" } ], [ @@ -121428,31 +109575,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59219, - 59219, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59220, - 59220, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-radius", - 59221, + "--bs-dropdown-border-radius", + 59219, 59245, { - "value": "bs-dropdown-border-radius" + "value": "--bs-dropdown-border-radius" } ], [ @@ -121607,31 +109736,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 59310, - 59310, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59311, - 59311, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-spacer", - 59312, + "--bs-dropdown-spacer", + 59310, 59329, { - "value": "bs-dropdown-spacer" + "value": "--bs-dropdown-spacer" } ], [ @@ -121673,31 +109784,13 @@ export const bootstrapTokens = [ 59352, null ], - [ - "delim-token", - "-", - 59353, - 59353, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59354, - 59354, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59355, + "--bs-position", + 59353, 59365, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -121861,31 +109954,13 @@ export const bootstrapTokens = [ 59446, null ], - [ - "delim-token", - "-", - 59447, - 59447, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59448, - 59448, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59449, + "--bs-position", + 59447, 59459, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -122113,31 +110188,13 @@ export const bootstrapTokens = [ 59566, null ], - [ - "delim-token", - "-", - 59567, - 59567, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59568, - 59568, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59569, + "--bs-position", + 59567, 59579, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -122301,31 +110358,13 @@ export const bootstrapTokens = [ 59666, null ], - [ - "delim-token", - "-", - 59667, - 59667, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59668, - 59668, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59669, + "--bs-position", + 59667, 59679, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -122560,31 +110599,13 @@ export const bootstrapTokens = [ 59790, null ], - [ - "delim-token", - "-", - 59791, - 59791, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59792, - 59792, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59793, + "--bs-position", + 59791, 59803, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -122748,31 +110769,13 @@ export const bootstrapTokens = [ 59890, null ], - [ - "delim-token", - "-", - 59891, - 59891, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 59892, - 59892, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 59893, + "--bs-position", + 59891, 59903, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -123007,31 +111010,13 @@ export const bootstrapTokens = [ 60014, null ], - [ - "delim-token", - "-", - 60015, - 60015, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60016, - 60016, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60017, + "--bs-position", + 60015, 60027, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -123195,31 +111180,13 @@ export const bootstrapTokens = [ 60114, null ], - [ - "delim-token", - "-", - 60115, - 60115, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60116, - 60116, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60117, + "--bs-position", + 60115, 60127, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -123454,31 +111421,13 @@ export const bootstrapTokens = [ 60239, null ], - [ - "delim-token", - "-", - 60240, - 60240, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60241, - 60241, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60242, + "--bs-position", + 60240, 60252, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -123642,31 +111591,13 @@ export const bootstrapTokens = [ 60339, null ], - [ - "delim-token", - "-", - 60340, - 60340, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60341, - 60341, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60342, + "--bs-position", + 60340, 60352, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -123901,31 +111832,13 @@ export const bootstrapTokens = [ 60465, null ], - [ - "delim-token", - "-", - 60466, - 60466, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60467, - 60467, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60468, + "--bs-position", + 60466, 60478, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -124089,31 +112002,13 @@ export const bootstrapTokens = [ 60567, null ], - [ - "delim-token", - "-", - 60568, - 60568, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60569, - 60569, - { - "value": "-" - } - ], [ "ident-token", - "bs-position", - 60570, + "--bs-position", + 60568, 60580, { - "value": "bs-position" + "value": "--bs-position" } ], [ @@ -124454,31 +112349,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 60735, - 60735, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 60736, - 60736, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-spacer", - 60737, + "--bs-dropdown-spacer", + 60735, 60754, { - "value": "bs-dropdown-spacer" + "value": "--bs-dropdown-spacer" } ], [ @@ -125265,31 +113142,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 61119, - 61119, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 61120, - 61120, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-spacer", - 61121, + "--bs-dropdown-spacer", + 61119, 61138, { - "value": "bs-dropdown-spacer" + "value": "--bs-dropdown-spacer" } ], [ @@ -126182,31 +114041,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 61558, - 61558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 61559, - 61559, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-spacer", - 61560, + "--bs-dropdown-spacer", + 61558, 61577, { - "value": "bs-dropdown-spacer" + "value": "--bs-dropdown-spacer" } ], [ @@ -127231,31 +115072,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62087, - 62087, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62088, - 62088, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-divider-margin-y", - 62089, + "--bs-dropdown-divider-margin-y", + 62087, 62116, { - "value": "bs-dropdown-divider-margin-y" + "value": "--bs-dropdown-divider-margin-y" } ], [ @@ -127380,31 +115203,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62162, - 62162, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62163, - 62163, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-divider-bg", - 62164, + "--bs-dropdown-divider-bg", + 62162, 62185, { - "value": "bs-dropdown-divider-bg" + "value": "--bs-dropdown-divider-bg" } ], [ @@ -127568,31 +115373,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62250, - 62250, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62251, - 62251, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-y", - 62252, + "--bs-dropdown-item-padding-y", + 62250, 62277, { - "value": "bs-dropdown-item-padding-y" + "value": "--bs-dropdown-item-padding-y" } ], [ @@ -127618,31 +115405,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62284, - 62284, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62285, - 62285, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-x", - 62286, + "--bs-dropdown-item-padding-x", + 62284, 62311, { - "value": "bs-dropdown-item-padding-x" + "value": "--bs-dropdown-item-padding-x" } ], [ @@ -127749,31 +115518,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62351, - 62351, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62352, - 62352, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-color", - 62353, + "--bs-dropdown-link-color", + 62351, 62374, { - "value": "bs-dropdown-link-color" + "value": "--bs-dropdown-link-color" } ], [ @@ -128058,31 +115809,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62526, - 62526, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62527, - 62527, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-color", - 62528, + "--bs-dropdown-link-hover-color", + 62526, 62555, { - "value": "bs-dropdown-link-hover-color" + "value": "--bs-dropdown-link-hover-color" } ], [ @@ -128124,31 +115857,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62579, - 62579, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62580, - 62580, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-bg", - 62581, + "--bs-dropdown-link-hover-bg", + 62579, 62605, { - "value": "bs-dropdown-link-hover-bg" + "value": "--bs-dropdown-link-hover-bg" } ], [ @@ -128274,31 +115989,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62662, - 62662, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62663, - 62663, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-color", - 62664, + "--bs-dropdown-link-active-color", + 62662, 62692, { - "value": "bs-dropdown-link-active-color" + "value": "--bs-dropdown-link-active-color" } ], [ @@ -128372,31 +116069,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62737, - 62737, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62738, - 62738, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-bg", - 62739, + "--bs-dropdown-link-active-bg", + 62737, 62764, { - "value": "bs-dropdown-link-active-bg" + "value": "--bs-dropdown-link-active-bg" } ], [ @@ -128522,31 +116201,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62825, - 62825, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62826, - 62826, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-disabled-color", - 62827, + "--bs-dropdown-link-disabled-color", + 62825, 62857, { - "value": "bs-dropdown-link-disabled-color" + "value": "--bs-dropdown-link-disabled-color" } ], [ @@ -128784,31 +116445,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 62986, - 62986, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 62987, - 62987, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-padding-y", - 62988, + "--bs-dropdown-header-padding-y", + 62986, 63015, { - "value": "bs-dropdown-header-padding-y" + "value": "--bs-dropdown-header-padding-y" } ], [ @@ -128834,31 +116477,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63022, - 63022, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63023, - 63023, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-padding-x", - 63024, + "--bs-dropdown-header-padding-x", + 63022, 63051, { - "value": "bs-dropdown-header-padding-x" + "value": "--bs-dropdown-header-padding-x" } ], [ @@ -128967,31 +116592,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63098, - 63098, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63099, - 63099, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-color", - 63100, + "--bs-dropdown-header-color", + 63098, 63123, { - "value": "bs-dropdown-header-color" + "value": "--bs-dropdown-header-color" } ], [ @@ -129122,31 +116729,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63191, - 63191, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63192, - 63192, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-y", - 63193, + "--bs-dropdown-item-padding-y", + 63191, 63218, { - "value": "bs-dropdown-item-padding-y" + "value": "--bs-dropdown-item-padding-y" } ], [ @@ -129172,31 +116761,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63225, - 63225, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63226, - 63226, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-item-padding-x", - 63227, + "--bs-dropdown-item-padding-x", + 63225, 63252, { - "value": "bs-dropdown-item-padding-x" + "value": "--bs-dropdown-item-padding-x" } ], [ @@ -129238,31 +116809,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63265, - 63265, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63266, - 63266, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-color", - 63267, + "--bs-dropdown-link-color", + 63265, 63288, { - "value": "bs-dropdown-link-color" + "value": "--bs-dropdown-link-color" } ], [ @@ -129304,31 +116857,13 @@ export const bootstrapTokens = [ 63310, null ], - [ - "delim-token", - "-", - 63311, - 63311, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63312, - 63312, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-color", - 63313, + "--bs-dropdown-color", + 63311, 63329, { - "value": "bs-dropdown-color" + "value": "--bs-dropdown-color" } ], [ @@ -129355,31 +116890,13 @@ export const bootstrapTokens = [ 63338, null ], - [ - "delim-token", - "-", - 63339, - 63339, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63340, - 63340, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-bg", - 63341, + "--bs-dropdown-bg", + 63339, 63354, { - "value": "bs-dropdown-bg" + "value": "--bs-dropdown-bg" } ], [ @@ -129406,31 +116923,13 @@ export const bootstrapTokens = [ 63363, null ], - [ - "delim-token", - "-", - 63364, - 63364, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63365, - 63365, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-border-color", - 63366, + "--bs-dropdown-border-color", + 63364, 63389, { - "value": "bs-dropdown-border-color" + "value": "--bs-dropdown-border-color" } ], [ @@ -129449,31 +116948,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63395, - 63395, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63396, - 63396, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 63397, + "--bs-border-color-translucent", + 63395, 63423, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -129490,31 +116971,13 @@ export const bootstrapTokens = [ 63425, null ], - [ - "delim-token", - "-", - 63426, - 63426, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63427, - 63427, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-box-shadow", - 63428, + "--bs-dropdown-box-shadow", + 63426, 63449, { - "value": "bs-dropdown-box-shadow" + "value": "--bs-dropdown-box-shadow" } ], [ @@ -129538,31 +117001,13 @@ export const bootstrapTokens = [ 63452, null ], - [ - "delim-token", - "-", - 63453, - 63453, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63454, - 63454, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-color", - 63455, + "--bs-dropdown-link-color", + 63453, 63476, { - "value": "bs-dropdown-link-color" + "value": "--bs-dropdown-link-color" } ], [ @@ -129589,31 +117034,13 @@ export const bootstrapTokens = [ 63485, null ], - [ - "delim-token", - "-", - 63486, - 63486, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63487, - 63487, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-color", - 63488, + "--bs-dropdown-link-hover-color", + 63486, 63515, { - "value": "bs-dropdown-link-hover-color" + "value": "--bs-dropdown-link-hover-color" } ], [ @@ -129640,31 +117067,13 @@ export const bootstrapTokens = [ 63521, null ], - [ - "delim-token", - "-", - 63522, - 63522, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63523, - 63523, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-divider-bg", - 63524, + "--bs-dropdown-divider-bg", + 63522, 63545, { - "value": "bs-dropdown-divider-bg" + "value": "--bs-dropdown-divider-bg" } ], [ @@ -129683,31 +117092,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 63551, - 63551, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63552, - 63552, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 63553, + "--bs-border-color-translucent", + 63551, 63579, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -129724,31 +117115,13 @@ export const bootstrapTokens = [ 63581, null ], - [ - "delim-token", - "-", - 63582, - 63582, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63583, - 63583, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-hover-bg", - 63584, + "--bs-dropdown-link-hover-bg", + 63582, 63608, { - "value": "bs-dropdown-link-hover-bg" + "value": "--bs-dropdown-link-hover-bg" } ], [ @@ -129863,31 +117236,13 @@ export const bootstrapTokens = [ 63635, null ], - [ - "delim-token", - "-", - 63636, - 63636, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63637, - 63637, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-color", - 63638, + "--bs-dropdown-link-active-color", + 63636, 63666, { - "value": "bs-dropdown-link-active-color" + "value": "--bs-dropdown-link-active-color" } ], [ @@ -129914,31 +117269,13 @@ export const bootstrapTokens = [ 63672, null ], - [ - "delim-token", - "-", - 63673, - 63673, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63674, - 63674, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-active-bg", - 63675, + "--bs-dropdown-link-active-bg", + 63673, 63700, { - "value": "bs-dropdown-link-active-bg" + "value": "--bs-dropdown-link-active-bg" } ], [ @@ -129965,31 +117302,13 @@ export const bootstrapTokens = [ 63709, null ], - [ - "delim-token", - "-", - 63710, - 63710, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63711, - 63711, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-link-disabled-color", - 63712, + "--bs-dropdown-link-disabled-color", + 63710, 63742, { - "value": "bs-dropdown-link-disabled-color" + "value": "--bs-dropdown-link-disabled-color" } ], [ @@ -130016,31 +117335,13 @@ export const bootstrapTokens = [ 63751, null ], - [ - "delim-token", - "-", - 63752, - 63752, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 63753, - 63753, - { - "value": "-" - } - ], [ "ident-token", - "bs-dropdown-header-color", - 63754, + "--bs-dropdown-header-color", + 63752, 63777, { - "value": "bs-dropdown-header-color" + "value": "--bs-dropdown-header-color" } ], [ @@ -134564,31 +121865,13 @@ export const bootstrapTokens = [ 65989, null ], - [ - "delim-token", - "-", - 65990, - 65990, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 65991, - 65991, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-x", - 65992, + "--bs-nav-link-padding-x", + 65990, 66012, { - "value": "bs-nav-link-padding-x" + "value": "--bs-nav-link-padding-x" } ], [ @@ -134616,31 +121899,13 @@ export const bootstrapTokens = [ 66018, null ], - [ - "delim-token", - "-", - 66019, - 66019, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66020, - 66020, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-y", - 66021, + "--bs-nav-link-padding-y", + 66019, 66041, { - "value": "bs-nav-link-padding-y" + "value": "--bs-nav-link-padding-y" } ], [ @@ -134668,31 +121933,13 @@ export const bootstrapTokens = [ 66049, null ], - [ - "delim-token", - "-", - 66050, - 66050, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66051, - 66051, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-font-weight", - 66052, + "--bs-nav-link-font-weight", + 66050, 66074, { - "value": "bs-nav-link-font-weight" + "value": "--bs-nav-link-font-weight" } ], [ @@ -134716,31 +121963,13 @@ export const bootstrapTokens = [ 66077, null ], - [ - "delim-token", - "-", - 66078, - 66078, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66079, - 66079, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-color", - 66080, + "--bs-nav-link-color", + 66078, 66096, { - "value": "bs-nav-link-color" + "value": "--bs-nav-link-color" } ], [ @@ -134759,31 +121988,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66102, - 66102, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66103, - 66103, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-color", - 66104, + "--bs-link-color", + 66102, 66116, { - "value": "bs-link-color" + "value": "--bs-link-color" } ], [ @@ -134800,31 +122011,13 @@ export const bootstrapTokens = [ 66118, null ], - [ - "delim-token", - "-", - 66119, - 66119, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66120, - 66120, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-hover-color", - 66121, + "--bs-nav-link-hover-color", + 66119, 66143, { - "value": "bs-nav-link-hover-color" + "value": "--bs-nav-link-hover-color" } ], [ @@ -134843,31 +122036,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66149, - 66149, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66150, - 66150, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 66151, + "--bs-link-hover-color", + 66149, 66169, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -134884,31 +122059,13 @@ export const bootstrapTokens = [ 66171, null ], - [ - "delim-token", - "-", - 66172, - 66172, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66173, - 66173, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-disabled-color", - 66174, + "--bs-nav-link-disabled-color", + 66172, 66199, { - "value": "bs-nav-link-disabled-color" + "value": "--bs-nav-link-disabled-color" } ], [ @@ -135179,31 +122336,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66320, - 66320, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66321, - 66321, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-y", - 66322, + "--bs-nav-link-padding-y", + 66320, 66342, { - "value": "bs-nav-link-padding-y" + "value": "--bs-nav-link-padding-y" } ], [ @@ -135229,31 +122368,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66349, - 66349, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66350, - 66350, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-x", - 66351, + "--bs-nav-link-padding-x", + 66349, 66371, { - "value": "bs-nav-link-padding-x" + "value": "--bs-nav-link-padding-x" } ], [ @@ -135295,31 +122416,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66388, - 66388, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66389, - 66389, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-font-size", - 66390, + "--bs-nav-link-font-size", + 66388, 66410, { - "value": "bs-nav-link-font-size" + "value": "--bs-nav-link-font-size" } ], [ @@ -135361,31 +122464,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66429, - 66429, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66430, - 66430, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-font-weight", - 66431, + "--bs-nav-link-font-weight", + 66429, 66453, { - "value": "bs-nav-link-font-weight" + "value": "--bs-nav-link-font-weight" } ], [ @@ -135427,31 +122512,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66466, - 66466, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66467, - 66467, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-color", - 66468, + "--bs-nav-link-color", + 66466, 66484, { - "value": "bs-nav-link-color" + "value": "--bs-nav-link-color" } ], [ @@ -135899,31 +122966,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66714, - 66714, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66715, - 66715, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-hover-color", - 66716, + "--bs-nav-link-hover-color", + 66714, 66738, { - "value": "bs-nav-link-hover-color" + "value": "--bs-nav-link-hover-color" } ], [ @@ -136008,31 +123057,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 66770, - 66770, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66771, - 66771, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-disabled-color", - 66772, + "--bs-nav-link-disabled-color", + 66770, 66797, { - "value": "bs-nav-link-disabled-color" + "value": "--bs-nav-link-disabled-color" } ], [ @@ -136138,31 +123169,13 @@ export const bootstrapTokens = [ 66844, null ], - [ - "delim-token", - "-", - 66845, - 66845, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66846, - 66846, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-width", - 66847, + "--bs-nav-tabs-border-width", + 66845, 66870, { - "value": "bs-nav-tabs-border-width" + "value": "--bs-nav-tabs-border-width" } ], [ @@ -136190,31 +123203,13 @@ export const bootstrapTokens = [ 66875, null ], - [ - "delim-token", - "-", - 66876, - 66876, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66877, - 66877, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-color", - 66878, + "--bs-nav-tabs-border-color", + 66876, 66901, { - "value": "bs-nav-tabs-border-color" + "value": "--bs-nav-tabs-border-color" } ], [ @@ -136241,31 +123236,13 @@ export const bootstrapTokens = [ 66910, null ], - [ - "delim-token", - "-", - 66911, - 66911, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66912, - 66912, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-radius", - 66913, + "--bs-nav-tabs-border-radius", + 66911, 66937, { - "value": "bs-nav-tabs-border-radius" + "value": "--bs-nav-tabs-border-radius" } ], [ @@ -136293,31 +123270,13 @@ export const bootstrapTokens = [ 66947, null ], - [ - "delim-token", - "-", - 66948, - 66948, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 66949, - 66949, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-hover-border-color", - 66950, + "--bs-nav-tabs-link-hover-border-color", + 66948, 66984, { - "value": "bs-nav-tabs-link-hover-border-color" + "value": "--bs-nav-tabs-link-hover-border-color" } ], [ @@ -136378,31 +123337,13 @@ export const bootstrapTokens = [ 67009, null ], - [ - "delim-token", - "-", - 67010, - 67010, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67011, - 67011, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-color", - 67012, + "--bs-nav-tabs-link-active-color", + 67010, 67040, { - "value": "bs-nav-tabs-link-active-color" + "value": "--bs-nav-tabs-link-active-color" } ], [ @@ -136429,31 +123370,13 @@ export const bootstrapTokens = [ 67049, null ], - [ - "delim-token", - "-", - 67050, - 67050, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67051, - 67051, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-bg", - 67052, + "--bs-nav-tabs-link-active-bg", + 67050, 67077, { - "value": "bs-nav-tabs-link-active-bg" + "value": "--bs-nav-tabs-link-active-bg" } ], [ @@ -136480,31 +123403,13 @@ export const bootstrapTokens = [ 67083, null ], - [ - "delim-token", - "-", - 67084, - 67084, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67085, - 67085, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-border-color", - 67086, + "--bs-nav-tabs-link-active-border-color", + 67084, 67121, { - "value": "bs-nav-tabs-link-active-border-color" + "value": "--bs-nav-tabs-link-active-border-color" } ], [ @@ -136590,31 +123495,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67162, - 67162, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67163, - 67163, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-width", - 67164, + "--bs-nav-tabs-border-width", + 67162, 67187, { - "value": "bs-nav-tabs-border-width" + "value": "--bs-nav-tabs-border-width" } ], [ @@ -136656,31 +123543,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67200, - 67200, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67201, - 67201, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-color", - 67202, + "--bs-nav-tabs-border-color", + 67200, 67225, { - "value": "bs-nav-tabs-border-color" + "value": "--bs-nav-tabs-border-color" } ], [ @@ -136814,31 +123683,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67276, - 67276, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67277, - 67277, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-width", - 67278, + "--bs-nav-tabs-border-width", + 67276, 67301, { - "value": "bs-nav-tabs-border-width" + "value": "--bs-nav-tabs-border-width" } ], [ @@ -136937,31 +123788,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67331, - 67331, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67332, - 67332, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-width", - 67333, + "--bs-nav-tabs-border-width", + 67331, 67356, { - "value": "bs-nav-tabs-border-width" + "value": "--bs-nav-tabs-border-width" } ], [ @@ -137035,31 +123868,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67404, - 67404, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67405, - 67405, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-radius", - 67406, + "--bs-nav-tabs-border-radius", + 67404, 67430, { - "value": "bs-nav-tabs-border-radius" + "value": "--bs-nav-tabs-border-radius" } ], [ @@ -137101,31 +123916,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67461, - 67461, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67462, - 67462, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-radius", - 67463, + "--bs-nav-tabs-border-radius", + 67461, 67487, { - "value": "bs-nav-tabs-border-radius" + "value": "--bs-nav-tabs-border-radius" } ], [ @@ -137331,31 +124128,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67577, - 67577, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67578, - 67578, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-hover-border-color", - 67579, + "--bs-nav-tabs-link-hover-border-color", + 67577, 67613, { - "value": "bs-nav-tabs-link-hover-border-color" + "value": "--bs-nav-tabs-link-hover-border-color" } ], [ @@ -137531,31 +124310,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67684, - 67684, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67685, - 67685, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-disabled-color", - 67686, + "--bs-nav-link-disabled-color", + 67684, 67711, { - "value": "bs-nav-link-disabled-color" + "value": "--bs-nav-link-disabled-color" } ], [ @@ -137822,31 +124583,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67840, - 67840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67841, - 67841, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-color", - 67842, + "--bs-nav-tabs-link-active-color", + 67840, 67870, { - "value": "bs-nav-tabs-link-active-color" + "value": "--bs-nav-tabs-link-active-color" } ], [ @@ -137888,31 +124631,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67894, - 67894, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67895, - 67895, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-bg", - 67896, + "--bs-nav-tabs-link-active-bg", + 67894, 67921, { - "value": "bs-nav-tabs-link-active-bg" + "value": "--bs-nav-tabs-link-active-bg" } ], [ @@ -137954,31 +124679,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 67941, - 67941, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 67942, - 67942, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-link-active-border-color", - 67943, + "--bs-nav-tabs-link-active-border-color", + 67941, 67978, { - "value": "bs-nav-tabs-link-active-border-color" + "value": "--bs-nav-tabs-link-active-border-color" } ], [ @@ -138112,31 +124819,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 68031, - 68031, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68032, - 68032, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-tabs-border-width", - 68033, + "--bs-nav-tabs-border-width", + 68031, 68056, { - "value": "bs-nav-tabs-border-width" + "value": "--bs-nav-tabs-border-width" } ], [ @@ -138251,31 +124940,13 @@ export const bootstrapTokens = [ 68121, null ], - [ - "delim-token", - "-", - 68122, - 68122, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68123, - 68123, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-border-radius", - 68124, + "--bs-nav-pills-border-radius", + 68122, 68149, { - "value": "bs-nav-pills-border-radius" + "value": "--bs-nav-pills-border-radius" } ], [ @@ -138303,31 +124974,13 @@ export const bootstrapTokens = [ 68159, null ], - [ - "delim-token", - "-", - 68160, - 68160, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68161, - 68161, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-link-active-color", - 68162, + "--bs-nav-pills-link-active-color", + 68160, 68191, { - "value": "bs-nav-pills-link-active-color" + "value": "--bs-nav-pills-link-active-color" } ], [ @@ -138354,31 +125007,13 @@ export const bootstrapTokens = [ 68197, null ], - [ - "delim-token", - "-", - 68198, - 68198, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68199, - 68199, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-link-active-bg", - 68200, + "--bs-nav-pills-link-active-bg", + 68198, 68226, { - "value": "bs-nav-pills-link-active-bg" + "value": "--bs-nav-pills-link-active-bg" } ], [ @@ -138563,31 +125198,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 68299, - 68299, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68300, - 68300, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-border-radius", - 68301, + "--bs-nav-pills-border-radius", + 68299, 68326, { - "value": "bs-nav-pills-border-radius" + "value": "--bs-nav-pills-border-radius" } ], [ @@ -138695,31 +125312,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 68369, - 68369, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68370, - 68370, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-disabled-color", - 68371, + "--bs-nav-link-disabled-color", + 68369, 68396, { - "value": "bs-nav-link-disabled-color" + "value": "--bs-nav-link-disabled-color" } ], [ @@ -138970,31 +125569,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 68518, - 68518, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68519, - 68519, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-link-active-color", - 68520, + "--bs-nav-pills-link-active-color", + 68518, 68549, { - "value": "bs-nav-pills-link-active-color" + "value": "--bs-nav-pills-link-active-color" } ], [ @@ -139036,31 +125617,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 68573, - 68573, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68574, - 68574, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-pills-link-active-bg", - 68575, + "--bs-nav-pills-link-active-bg", + 68573, 68601, { - "value": "bs-nav-pills-link-active-bg" + "value": "--bs-nav-pills-link-active-bg" } ], [ @@ -139852,31 +126415,13 @@ export const bootstrapTokens = [ 68923, null ], - [ - "delim-token", - "-", - 68924, - 68924, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68925, - 68925, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-padding-x", - 68926, + "--bs-navbar-padding-x", + 68924, 68944, { - "value": "bs-navbar-padding-x" + "value": "--bs-navbar-padding-x" } ], [ @@ -139903,31 +126448,13 @@ export const bootstrapTokens = [ 68947, null ], - [ - "delim-token", - "-", - 68948, - 68948, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68949, - 68949, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-padding-y", - 68950, + "--bs-navbar-padding-y", + 68948, 68968, { - "value": "bs-navbar-padding-y" + "value": "--bs-navbar-padding-y" } ], [ @@ -139955,31 +126482,13 @@ export const bootstrapTokens = [ 68976, null ], - [ - "delim-token", - "-", - 68977, - 68977, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 68978, - 68978, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-color", - 68979, + "--bs-navbar-color", + 68977, 68993, { - "value": "bs-navbar-color" + "value": "--bs-navbar-color" } ], [ @@ -140094,31 +126603,13 @@ export const bootstrapTokens = [ 69014, null ], - [ - "delim-token", - "-", - 69015, - 69015, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69016, - 69016, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-hover-color", - 69017, + "--bs-navbar-hover-color", + 69015, 69037, { - "value": "bs-navbar-hover-color" + "value": "--bs-navbar-hover-color" } ], [ @@ -140233,31 +126724,13 @@ export const bootstrapTokens = [ 69057, null ], - [ - "delim-token", - "-", - 69058, - 69058, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69059, - 69059, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-disabled-color", - 69060, + "--bs-navbar-disabled-color", + 69058, 69083, { - "value": "bs-navbar-disabled-color" + "value": "--bs-navbar-disabled-color" } ], [ @@ -140372,31 +126845,13 @@ export const bootstrapTokens = [ 69103, null ], - [ - "delim-token", - "-", - 69104, - 69104, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69105, - 69105, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-active-color", - 69106, + "--bs-navbar-active-color", + 69104, 69127, { - "value": "bs-navbar-active-color" + "value": "--bs-navbar-active-color" } ], [ @@ -140511,31 +126966,13 @@ export const bootstrapTokens = [ 69147, null ], - [ - "delim-token", - "-", - 69148, - 69148, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69149, - 69149, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-padding-y", - 69150, + "--bs-navbar-brand-padding-y", + 69148, 69174, { - "value": "bs-navbar-brand-padding-y" + "value": "--bs-navbar-brand-padding-y" } ], [ @@ -140563,31 +127000,13 @@ export const bootstrapTokens = [ 69185, null ], - [ - "delim-token", - "-", - 69186, - 69186, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69187, - 69187, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-margin-end", - 69188, + "--bs-navbar-brand-margin-end", + 69186, 69213, { - "value": "bs-navbar-brand-margin-end" + "value": "--bs-navbar-brand-margin-end" } ], [ @@ -140615,31 +127034,13 @@ export const bootstrapTokens = [ 69219, null ], - [ - "delim-token", - "-", - 69220, - 69220, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69221, - 69221, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-font-size", - 69222, + "--bs-navbar-brand-font-size", + 69220, 69246, { - "value": "bs-navbar-brand-font-size" + "value": "--bs-navbar-brand-font-size" } ], [ @@ -140667,31 +127068,13 @@ export const bootstrapTokens = [ 69255, null ], - [ - "delim-token", - "-", - 69256, - 69256, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69257, - 69257, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-color", - 69258, + "--bs-navbar-brand-color", + 69256, 69278, { - "value": "bs-navbar-brand-color" + "value": "--bs-navbar-brand-color" } ], [ @@ -140806,31 +127189,13 @@ export const bootstrapTokens = [ 69298, null ], - [ - "delim-token", - "-", - 69299, - 69299, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69300, - 69300, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-hover-color", - 69301, + "--bs-navbar-brand-hover-color", + 69299, 69327, { - "value": "bs-navbar-brand-hover-color" + "value": "--bs-navbar-brand-hover-color" } ], [ @@ -140945,31 +127310,13 @@ export const bootstrapTokens = [ 69347, null ], - [ - "delim-token", - "-", - 69348, - 69348, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69349, - 69349, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 69350, + "--bs-navbar-nav-link-padding-x", + 69348, 69377, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -140997,31 +127344,13 @@ export const bootstrapTokens = [ 69385, null ], - [ - "delim-token", - "-", - 69386, - 69386, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69387, - 69387, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-padding-y", - 69388, + "--bs-navbar-toggler-padding-y", + 69386, 69414, { - "value": "bs-navbar-toggler-padding-y" + "value": "--bs-navbar-toggler-padding-y" } ], [ @@ -141049,31 +127378,13 @@ export const bootstrapTokens = [ 69423, null ], - [ - "delim-token", - "-", - 69424, - 69424, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69425, - 69425, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-padding-x", - 69426, + "--bs-navbar-toggler-padding-x", + 69424, 69452, { - "value": "bs-navbar-toggler-padding-x" + "value": "--bs-navbar-toggler-padding-x" } ], [ @@ -141101,31 +127412,13 @@ export const bootstrapTokens = [ 69461, null ], - [ - "delim-token", - "-", - 69462, - 69462, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69463, - 69463, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-font-size", - 69464, + "--bs-navbar-toggler-font-size", + 69462, 69490, { - "value": "bs-navbar-toggler-font-size" + "value": "--bs-navbar-toggler-font-size" } ], [ @@ -141153,31 +127446,13 @@ export const bootstrapTokens = [ 69499, null ], - [ - "delim-token", - "-", - 69500, - 69500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69501, - 69501, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-icon-bg", - 69502, + "--bs-navbar-toggler-icon-bg", + 69500, 69526, { - "value": "bs-navbar-toggler-icon-bg" + "value": "--bs-navbar-toggler-icon-bg" } ], [ @@ -141219,31 +127494,13 @@ export const bootstrapTokens = [ 69763, null ], - [ - "delim-token", - "-", - 69764, - 69764, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69765, - 69765, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-border-color", - 69766, + "--bs-navbar-toggler-border-color", + 69764, 69795, { - "value": "bs-navbar-toggler-border-color" + "value": "--bs-navbar-toggler-border-color" } ], [ @@ -141358,31 +127615,13 @@ export const bootstrapTokens = [ 69815, null ], - [ - "delim-token", - "-", - 69816, - 69816, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69817, - 69817, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-border-radius", - 69818, + "--bs-navbar-toggler-border-radius", + 69816, 69848, { - "value": "bs-navbar-toggler-border-radius" + "value": "--bs-navbar-toggler-border-radius" } ], [ @@ -141410,31 +127649,13 @@ export const bootstrapTokens = [ 69858, null ], - [ - "delim-token", - "-", - 69859, - 69859, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69860, - 69860, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-focus-width", - 69861, + "--bs-navbar-toggler-focus-width", + 69859, 69889, { - "value": "bs-navbar-toggler-focus-width" + "value": "--bs-navbar-toggler-focus-width" } ], [ @@ -141462,31 +127683,13 @@ export const bootstrapTokens = [ 69898, null ], - [ - "delim-token", - "-", - 69899, - 69899, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 69900, - 69900, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-transition", - 69901, + "--bs-navbar-toggler-transition", + 69899, 69928, { - "value": "bs-navbar-toggler-transition" + "value": "--bs-navbar-toggler-transition" } ], [ @@ -141731,31 +127934,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70066, - 70066, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70067, - 70067, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-padding-y", - 70068, + "--bs-navbar-padding-y", + 70066, 70086, { - "value": "bs-navbar-padding-y" + "value": "--bs-navbar-padding-y" } ], [ @@ -141781,31 +127966,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70093, - 70093, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70094, - 70094, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-padding-x", - 70095, + "--bs-navbar-padding-x", + 70093, 70113, { - "value": "bs-navbar-padding-x" + "value": "--bs-navbar-padding-x" } ], [ @@ -142364,31 +128531,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70381, - 70381, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70382, - 70382, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-padding-y", - 70383, + "--bs-navbar-brand-padding-y", + 70381, 70407, { - "value": "bs-navbar-brand-padding-y" + "value": "--bs-navbar-brand-padding-y" } ], [ @@ -142430,31 +128579,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70429, - 70429, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70430, - 70430, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-padding-y", - 70431, + "--bs-navbar-brand-padding-y", + 70429, 70455, { - "value": "bs-navbar-brand-padding-y" + "value": "--bs-navbar-brand-padding-y" } ], [ @@ -142496,31 +128627,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70475, - 70475, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70476, - 70476, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-margin-end", - 70477, + "--bs-navbar-brand-margin-end", + 70475, 70502, { - "value": "bs-navbar-brand-margin-end" + "value": "--bs-navbar-brand-margin-end" } ], [ @@ -142562,31 +128675,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70519, - 70519, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70520, - 70520, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-font-size", - 70521, + "--bs-navbar-brand-font-size", + 70519, 70545, { - "value": "bs-navbar-brand-font-size" + "value": "--bs-navbar-brand-font-size" } ], [ @@ -142628,31 +128723,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70558, - 70558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70559, - 70559, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-color", - 70560, + "--bs-navbar-brand-color", + 70558, 70580, { - "value": "bs-navbar-brand-color" + "value": "--bs-navbar-brand-color" } ], [ @@ -142840,31 +128917,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70673, - 70673, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70674, - 70674, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-hover-color", - 70675, + "--bs-navbar-brand-hover-color", + 70673, 70701, { - "value": "bs-navbar-brand-hover-color" + "value": "--bs-navbar-brand-hover-color" } ], [ @@ -142906,31 +128965,13 @@ export const bootstrapTokens = [ 70715, null ], - [ - "delim-token", - "-", - 70716, - 70716, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70717, - 70717, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-x", - 70718, + "--bs-nav-link-padding-x", + 70716, 70738, { - "value": "bs-nav-link-padding-x" + "value": "--bs-nav-link-padding-x" } ], [ @@ -142957,31 +128998,13 @@ export const bootstrapTokens = [ 70741, null ], - [ - "delim-token", - "-", - 70742, - 70742, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70743, - 70743, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-padding-y", - 70744, + "--bs-nav-link-padding-y", + 70742, 70764, { - "value": "bs-nav-link-padding-y" + "value": "--bs-nav-link-padding-y" } ], [ @@ -143009,31 +129032,13 @@ export const bootstrapTokens = [ 70772, null ], - [ - "delim-token", - "-", - 70773, - 70773, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70774, - 70774, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-font-weight", - 70775, + "--bs-nav-link-font-weight", + 70773, 70797, { - "value": "bs-nav-link-font-weight" + "value": "--bs-nav-link-font-weight" } ], [ @@ -143057,31 +129062,13 @@ export const bootstrapTokens = [ 70800, null ], - [ - "delim-token", - "-", - 70801, - 70801, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70802, - 70802, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-color", - 70803, + "--bs-nav-link-color", + 70801, 70819, { - "value": "bs-nav-link-color" + "value": "--bs-nav-link-color" } ], [ @@ -143100,31 +129087,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70825, - 70825, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70826, - 70826, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-color", - 70827, + "--bs-navbar-color", + 70825, 70841, { - "value": "bs-navbar-color" + "value": "--bs-navbar-color" } ], [ @@ -143141,31 +129110,13 @@ export const bootstrapTokens = [ 70843, null ], - [ - "delim-token", - "-", - 70844, - 70844, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70845, - 70845, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-hover-color", - 70846, + "--bs-nav-link-hover-color", + 70844, 70868, { - "value": "bs-nav-link-hover-color" + "value": "--bs-nav-link-hover-color" } ], [ @@ -143184,31 +129135,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70874, - 70874, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70875, - 70875, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-hover-color", - 70876, + "--bs-navbar-hover-color", + 70874, 70896, { - "value": "bs-navbar-hover-color" + "value": "--bs-navbar-hover-color" } ], [ @@ -143225,31 +129158,13 @@ export const bootstrapTokens = [ 70898, null ], - [ - "delim-token", - "-", - 70899, - 70899, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70900, - 70900, - { - "value": "-" - } - ], [ "ident-token", - "bs-nav-link-disabled-color", - 70901, + "--bs-nav-link-disabled-color", + 70899, 70926, { - "value": "bs-nav-link-disabled-color" + "value": "--bs-nav-link-disabled-color" } ], [ @@ -143268,31 +129183,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 70932, - 70932, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 70933, - 70933, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-disabled-color", - 70934, + "--bs-navbar-disabled-color", + 70932, 70957, { - "value": "bs-navbar-disabled-color" + "value": "--bs-navbar-disabled-color" } ], [ @@ -143641,31 +129538,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71109, - 71109, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71110, - 71110, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-active-color", - 71111, + "--bs-navbar-active-color", + 71109, 71132, { - "value": "bs-navbar-active-color" + "value": "--bs-navbar-active-color" } ], [ @@ -143882,31 +129761,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71240, - 71240, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71241, - 71241, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-color", - 71242, + "--bs-navbar-color", + 71240, 71256, { - "value": "bs-navbar-color" + "value": "--bs-navbar-color" } ], [ @@ -144103,31 +129964,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71326, - 71326, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71327, - 71327, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-active-color", - 71328, + "--bs-navbar-active-color", + 71326, 71349, { - "value": "bs-navbar-active-color" + "value": "--bs-navbar-active-color" } ], [ @@ -144316,31 +130159,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71444, - 71444, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71445, - 71445, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-padding-y", - 71446, + "--bs-navbar-toggler-padding-y", + 71444, 71472, { - "value": "bs-navbar-toggler-padding-y" + "value": "--bs-navbar-toggler-padding-y" } ], [ @@ -144366,31 +130191,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71479, - 71479, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71480, - 71480, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-padding-x", - 71481, + "--bs-navbar-toggler-padding-x", + 71479, 71507, { - "value": "bs-navbar-toggler-padding-x" + "value": "--bs-navbar-toggler-padding-x" } ], [ @@ -144432,31 +130239,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71524, - 71524, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71525, - 71525, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-font-size", - 71526, + "--bs-navbar-toggler-font-size", + 71524, 71552, { - "value": "bs-navbar-toggler-font-size" + "value": "--bs-navbar-toggler-font-size" } ], [ @@ -144531,31 +130320,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71579, - 71579, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71580, - 71580, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-color", - 71581, + "--bs-navbar-color", + 71579, 71595, { - "value": "bs-navbar-color" + "value": "--bs-navbar-color" } ], [ @@ -144629,31 +130400,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71638, - 71638, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71639, - 71639, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 71640, + "--bs-border-width", + 71638, 71654, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -144695,31 +130448,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71667, - 71667, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71668, - 71668, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-border-color", - 71669, + "--bs-navbar-toggler-border-color", + 71667, 71698, { - "value": "bs-navbar-toggler-border-color" + "value": "--bs-navbar-toggler-border-color" } ], [ @@ -144761,31 +130496,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71719, - 71719, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71720, - 71720, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-border-radius", - 71721, + "--bs-navbar-toggler-border-radius", + 71719, 71751, { - "value": "bs-navbar-toggler-border-radius" + "value": "--bs-navbar-toggler-border-radius" } ], [ @@ -144827,31 +130544,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71769, - 71769, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71770, - 71770, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-transition", - 71771, + "--bs-navbar-toggler-transition", + 71769, 71798, { - "value": "bs-navbar-toggler-transition" + "value": "--bs-navbar-toggler-transition" } ], [ @@ -145249,31 +130948,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 71990, - 71990, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 71991, - 71991, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-focus-width", - 71992, + "--bs-navbar-toggler-focus-width", + 71990, 72020, { - "value": "bs-navbar-toggler-focus-width" + "value": "--bs-navbar-toggler-focus-width" } ], [ @@ -145472,31 +131153,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 72133, - 72133, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 72134, - 72134, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-icon-bg", - 72135, + "--bs-navbar-toggler-icon-bg", + 72133, 72159, { - "value": "bs-navbar-toggler-icon-bg" + "value": "--bs-navbar-toggler-icon-bg" } ], [ @@ -145659,31 +131322,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 72272, - 72272, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 72273, - 72273, - { - "value": "-" - } - ], [ "ident-token", - "bs-scroll-height", - 72274, + "--bs-scroll-height", + 72272, 72289, { - "value": "bs-scroll-height" + "value": "--bs-scroll-height" } ], [ @@ -146192,31 +131837,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 72570, - 72570, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 72571, - 72571, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 72572, + "--bs-navbar-nav-link-padding-x", + 72570, 72599, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -146258,31 +131885,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 72619, - 72619, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 72620, - 72620, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 72621, + "--bs-navbar-nav-link-padding-x", + 72619, 72648, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -147836,31 +133445,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 73484, - 73484, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 73485, - 73485, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 73486, + "--bs-navbar-nav-link-padding-x", + 73484, 73513, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -147902,31 +133493,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 73533, - 73533, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 73534, - 73534, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 73535, + "--bs-navbar-nav-link-padding-x", + 73533, 73562, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -149480,31 +135053,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 74398, - 74398, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 74399, - 74399, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 74400, + "--bs-navbar-nav-link-padding-x", + 74398, 74427, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -149546,31 +135101,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 74447, - 74447, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 74448, - 74448, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 74449, + "--bs-navbar-nav-link-padding-x", + 74447, 74476, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -151124,31 +136661,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 75313, - 75313, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 75314, - 75314, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 75315, + "--bs-navbar-nav-link-padding-x", + 75313, 75342, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -151190,31 +136709,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 75362, - 75362, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 75363, - 75363, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 75364, + "--bs-navbar-nav-link-padding-x", + 75362, 75391, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -152768,31 +138269,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 76232, - 76232, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 76233, - 76233, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 76234, + "--bs-navbar-nav-link-padding-x", + 76232, 76261, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -152834,31 +138317,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 76281, - 76281, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 76282, - 76282, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 76283, + "--bs-navbar-nav-link-padding-x", + 76281, 76310, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -154348,31 +139813,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 77115, - 77115, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77116, - 77116, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 77117, + "--bs-navbar-nav-link-padding-x", + 77115, 77144, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -154414,31 +139861,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 77164, - 77164, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77165, - 77165, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-nav-link-padding-x", - 77166, + "--bs-navbar-nav-link-padding-x", + 77164, 77193, { - "value": "bs-navbar-nav-link-padding-x" + "value": "--bs-navbar-nav-link-padding-x" } ], [ @@ -155568,31 +140997,13 @@ export const bootstrapTokens = [ 77765, null ], - [ - "delim-token", - "-", - 77766, - 77766, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77767, - 77767, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-color", - 77768, + "--bs-navbar-color", + 77766, 77782, { - "value": "bs-navbar-color" + "value": "--bs-navbar-color" } ], [ @@ -155707,31 +141118,13 @@ export const bootstrapTokens = [ 77809, null ], - [ - "delim-token", - "-", - 77810, - 77810, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77811, - 77811, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-hover-color", - 77812, + "--bs-navbar-hover-color", + 77810, 77832, { - "value": "bs-navbar-hover-color" + "value": "--bs-navbar-hover-color" } ], [ @@ -155846,31 +141239,13 @@ export const bootstrapTokens = [ 77859, null ], - [ - "delim-token", - "-", - 77860, - 77860, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77861, - 77861, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-disabled-color", - 77862, + "--bs-navbar-disabled-color", + 77860, 77885, { - "value": "bs-navbar-disabled-color" + "value": "--bs-navbar-disabled-color" } ], [ @@ -155985,31 +141360,13 @@ export const bootstrapTokens = [ 77912, null ], - [ - "delim-token", - "-", - 77913, - 77913, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77914, - 77914, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-active-color", - 77915, + "--bs-navbar-active-color", + 77913, 77936, { - "value": "bs-navbar-active-color" + "value": "--bs-navbar-active-color" } ], [ @@ -156036,31 +141393,13 @@ export const bootstrapTokens = [ 77942, null ], - [ - "delim-token", - "-", - 77943, - 77943, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77944, - 77944, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-color", - 77945, + "--bs-navbar-brand-color", + 77943, 77965, { - "value": "bs-navbar-brand-color" + "value": "--bs-navbar-brand-color" } ], [ @@ -156087,31 +141426,13 @@ export const bootstrapTokens = [ 77971, null ], - [ - "delim-token", - "-", - 77972, - 77972, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 77973, - 77973, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-brand-hover-color", - 77974, + "--bs-navbar-brand-hover-color", + 77972, 78000, { - "value": "bs-navbar-brand-hover-color" + "value": "--bs-navbar-brand-hover-color" } ], [ @@ -156138,31 +141459,13 @@ export const bootstrapTokens = [ 78006, null ], - [ - "delim-token", - "-", - 78007, - 78007, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78008, - 78008, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-border-color", - 78009, + "--bs-navbar-toggler-border-color", + 78007, 78038, { - "value": "bs-navbar-toggler-border-color" + "value": "--bs-navbar-toggler-border-color" } ], [ @@ -156277,31 +141580,13 @@ export const bootstrapTokens = [ 78064, null ], - [ - "delim-token", - "-", - 78065, - 78065, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78066, - 78066, - { - "value": "-" - } - ], [ "ident-token", - "bs-navbar-toggler-icon-bg", - 78067, + "--bs-navbar-toggler-icon-bg", + 78065, 78091, { - "value": "bs-navbar-toggler-icon-bg" + "value": "--bs-navbar-toggler-icon-bg" } ], [ @@ -156368,31 +141653,13 @@ export const bootstrapTokens = [ 78340, null ], - [ - "delim-token", - "-", - 78341, - 78341, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78342, - 78342, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-spacer-y", - 78343, + "--bs-card-spacer-y", + 78341, 78358, { - "value": "bs-card-spacer-y" + "value": "--bs-card-spacer-y" } ], [ @@ -156420,31 +141687,13 @@ export const bootstrapTokens = [ 78364, null ], - [ - "delim-token", - "-", - 78365, - 78365, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78366, - 78366, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-spacer-x", - 78367, + "--bs-card-spacer-x", + 78365, 78382, { - "value": "bs-card-spacer-x" + "value": "--bs-card-spacer-x" } ], [ @@ -156472,31 +141721,13 @@ export const bootstrapTokens = [ 78388, null ], - [ - "delim-token", - "-", - 78389, - 78389, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78390, - 78390, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-title-spacer-y", - 78391, + "--bs-card-title-spacer-y", + 78389, 78412, { - "value": "bs-card-title-spacer-y" + "value": "--bs-card-title-spacer-y" } ], [ @@ -156524,31 +141755,13 @@ export const bootstrapTokens = [ 78420, null ], - [ - "delim-token", - "-", - 78421, - 78421, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78422, - 78422, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-width", - 78423, + "--bs-card-border-width", + 78421, 78442, { - "value": "bs-card-border-width" + "value": "--bs-card-border-width" } ], [ @@ -156576,31 +141789,13 @@ export const bootstrapTokens = [ 78447, null ], - [ - "delim-token", - "-", - 78448, - 78448, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78449, - 78449, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-color", - 78450, + "--bs-card-border-color", + 78448, 78469, { - "value": "bs-card-border-color" + "value": "--bs-card-border-color" } ], [ @@ -156619,31 +141814,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 78475, - 78475, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78476, - 78476, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 78477, + "--bs-border-color-translucent", + 78475, 78503, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -156660,31 +141837,13 @@ export const bootstrapTokens = [ 78505, null ], - [ - "delim-token", - "-", - 78506, - 78506, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78507, - 78507, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-radius", - 78508, + "--bs-card-border-radius", + 78506, 78528, { - "value": "bs-card-border-radius" + "value": "--bs-card-border-radius" } ], [ @@ -156712,31 +141871,13 @@ export const bootstrapTokens = [ 78538, null ], - [ - "delim-token", - "-", - 78539, - 78539, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78540, - 78540, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-box-shadow", - 78541, + "--bs-card-box-shadow", + 78539, 78558, { - "value": "bs-card-box-shadow" + "value": "--bs-card-box-shadow" } ], [ @@ -156760,31 +141901,13 @@ export const bootstrapTokens = [ 78561, null ], - [ - "delim-token", - "-", - 78562, - 78562, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78563, - 78563, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 78564, + "--bs-card-inner-border-radius", + 78562, 78590, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -156862,31 +141985,13 @@ export const bootstrapTokens = [ 78612, null ], - [ - "delim-token", - "-", - 78613, - 78613, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78614, - 78614, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-y", - 78615, + "--bs-card-cap-padding-y", + 78613, 78635, { - "value": "bs-card-cap-padding-y" + "value": "--bs-card-cap-padding-y" } ], [ @@ -156914,31 +142019,13 @@ export const bootstrapTokens = [ 78643, null ], - [ - "delim-token", - "-", - 78644, - 78644, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78645, - 78645, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 78646, + "--bs-card-cap-padding-x", + 78644, 78666, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -156966,31 +142053,13 @@ export const bootstrapTokens = [ 78672, null ], - [ - "delim-token", - "-", - 78673, - 78673, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78674, - 78674, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-bg", - 78675, + "--bs-card-cap-bg", + 78673, 78688, { - "value": "bs-card-cap-bg" + "value": "--bs-card-cap-bg" } ], [ @@ -157105,31 +142174,13 @@ export const bootstrapTokens = [ 78709, null ], - [ - "delim-token", - "-", - 78710, - 78710, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78711, - 78711, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-color", - 78712, + "--bs-card-cap-color", + 78710, 78728, { - "value": "bs-card-cap-color" + "value": "--bs-card-cap-color" } ], [ @@ -157153,31 +142204,13 @@ export const bootstrapTokens = [ 78731, null ], - [ - "delim-token", - "-", - 78732, - 78732, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78733, - 78733, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-height", - 78734, + "--bs-card-height", + 78732, 78747, { - "value": "bs-card-height" + "value": "--bs-card-height" } ], [ @@ -157201,31 +142234,13 @@ export const bootstrapTokens = [ 78750, null ], - [ - "delim-token", - "-", - 78751, - 78751, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78752, - 78752, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-color", - 78753, + "--bs-card-color", + 78751, 78765, { - "value": "bs-card-color" + "value": "--bs-card-color" } ], [ @@ -157249,31 +142264,13 @@ export const bootstrapTokens = [ 78768, null ], - [ - "delim-token", - "-", - 78769, - 78769, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78770, - 78770, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-bg", - 78771, + "--bs-card-bg", + 78769, 78780, { - "value": "bs-card-bg" + "value": "--bs-card-bg" } ], [ @@ -157300,31 +142297,13 @@ export const bootstrapTokens = [ 78786, null ], - [ - "delim-token", - "-", - 78787, - 78787, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78788, - 78788, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-img-overlay-padding", - 78789, + "--bs-card-img-overlay-padding", + 78787, 78815, { - "value": "bs-card-img-overlay-padding" + "value": "--bs-card-img-overlay-padding" } ], [ @@ -157352,31 +142331,13 @@ export const bootstrapTokens = [ 78821, null ], - [ - "delim-token", - "-", - 78822, - 78822, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78823, - 78823, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-group-margin", - 78824, + "--bs-card-group-margin", + 78822, 78843, { - "value": "bs-card-group-margin" + "value": "--bs-card-group-margin" } ], [ @@ -157558,31 +142519,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 78929, - 78929, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78930, - 78930, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-height", - 78931, + "--bs-card-height", + 78929, 78944, { - "value": "bs-card-height" + "value": "--bs-card-height" } ], [ @@ -157656,31 +142599,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 78989, - 78989, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 78990, - 78990, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-bg", - 78991, + "--bs-card-bg", + 78989, 79000, { - "value": "bs-card-bg" + "value": "--bs-card-bg" } ], [ @@ -157754,31 +142679,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79041, - 79041, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79042, - 79042, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-width", - 79043, + "--bs-card-border-width", + 79041, 79062, { - "value": "bs-card-border-width" + "value": "--bs-card-border-width" } ], [ @@ -157820,31 +142727,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79075, - 79075, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79076, - 79076, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-color", - 79077, + "--bs-card-border-color", + 79075, 79096, { - "value": "bs-card-border-color" + "value": "--bs-card-border-color" } ], [ @@ -157886,31 +142775,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79117, - 79117, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79118, - 79118, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-radius", - 79119, + "--bs-card-border-radius", + 79117, 79139, { - "value": "bs-card-border-radius" + "value": "--bs-card-border-radius" } ], [ @@ -158278,31 +143149,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79315, - 79315, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79316, - 79316, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 79317, + "--bs-card-inner-border-radius", + 79315, 79343, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -158344,31 +143197,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79374, - 79374, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79375, - 79375, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 79376, + "--bs-card-inner-border-radius", + 79374, 79402, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -158511,31 +143346,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79487, - 79487, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79488, - 79488, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 79489, + "--bs-card-inner-border-radius", + 79487, 79515, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -158577,31 +143394,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79548, - 79548, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79549, - 79549, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 79550, + "--bs-card-inner-border-radius", + 79548, 79576, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -158925,31 +143724,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79691, - 79691, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79692, - 79692, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-spacer-y", - 79693, + "--bs-card-spacer-y", + 79691, 79708, { - "value": "bs-card-spacer-y" + "value": "--bs-card-spacer-y" } ], [ @@ -158975,31 +143756,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79715, - 79715, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79716, - 79716, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-spacer-x", - 79717, + "--bs-card-spacer-x", + 79715, 79732, { - "value": "bs-card-spacer-x" + "value": "--bs-card-spacer-x" } ], [ @@ -159041,31 +143804,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79745, - 79745, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79746, - 79746, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-color", - 79747, + "--bs-card-color", + 79745, 79759, { - "value": "bs-card-color" + "value": "--bs-card-color" } ], [ @@ -159132,31 +143877,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79792, - 79792, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79793, - 79793, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-title-spacer-y", - 79794, + "--bs-card-title-spacer-y", + 79792, 79815, { - "value": "bs-card-title-spacer-y" + "value": "--bs-card-title-spacer-y" } ], [ @@ -159265,31 +143992,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79859, - 79859, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79860, - 79860, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-title-spacer-y", - 79861, + "--bs-card-title-spacer-y", + 79859, 79882, { - "value": "bs-card-title-spacer-y" + "value": "--bs-card-title-spacer-y" } ], [ @@ -159497,31 +144206,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 79978, - 79978, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 79979, - 79979, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-spacer-x", - 79980, + "--bs-card-spacer-x", + 79978, 79995, { - "value": "bs-card-spacer-x" + "value": "--bs-card-spacer-x" } ], [ @@ -159588,31 +144279,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80023, - 80023, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80024, - 80024, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-y", - 80025, + "--bs-card-cap-padding-y", + 80023, 80045, { - "value": "bs-card-cap-padding-y" + "value": "--bs-card-cap-padding-y" } ], [ @@ -159638,31 +144311,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80052, - 80052, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80053, - 80053, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 80054, + "--bs-card-cap-padding-x", + 80052, 80074, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -159737,31 +144392,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80103, - 80103, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80104, - 80104, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-color", - 80105, + "--bs-card-cap-color", + 80103, 80121, { - "value": "bs-card-cap-color" + "value": "--bs-card-cap-color" } ], [ @@ -159803,31 +144440,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80145, - 80145, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80146, - 80146, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-bg", - 80147, + "--bs-card-cap-bg", + 80145, 80160, { - "value": "bs-card-cap-bg" + "value": "--bs-card-cap-bg" } ], [ @@ -159869,31 +144488,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80181, - 80181, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80182, - 80182, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-width", - 80183, + "--bs-card-border-width", + 80181, 80202, { - "value": "bs-card-border-width" + "value": "--bs-card-border-width" } ], [ @@ -159935,31 +144536,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80215, - 80215, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80216, - 80216, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-color", - 80217, + "--bs-card-border-color", + 80215, 80236, { - "value": "bs-card-border-color" + "value": "--bs-card-border-color" } ], [ @@ -160042,31 +144625,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80282, - 80282, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80283, - 80283, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 80284, + "--bs-card-inner-border-radius", + 80282, 80310, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -160092,31 +144657,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80317, - 80317, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80318, - 80318, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 80319, + "--bs-card-inner-border-radius", + 80317, 80345, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -160217,31 +144764,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80377, - 80377, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80378, - 80378, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-y", - 80379, + "--bs-card-cap-padding-y", + 80377, 80399, { - "value": "bs-card-cap-padding-y" + "value": "--bs-card-cap-padding-y" } ], [ @@ -160267,31 +144796,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80406, - 80406, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80407, - 80407, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 80408, + "--bs-card-cap-padding-x", + 80406, 80428, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -160333,31 +144844,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80441, - 80441, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80442, - 80442, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-color", - 80443, + "--bs-card-cap-color", + 80441, 80459, { - "value": "bs-card-cap-color" + "value": "--bs-card-cap-color" } ], [ @@ -160399,31 +144892,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80483, - 80483, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80484, - 80484, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-bg", - 80485, + "--bs-card-cap-bg", + 80483, 80498, { - "value": "bs-card-cap-bg" + "value": "--bs-card-cap-bg" } ], [ @@ -160465,31 +144940,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80516, - 80516, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80517, - 80517, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-width", - 80518, + "--bs-card-border-width", + 80516, 80537, { - "value": "bs-card-border-width" + "value": "--bs-card-border-width" } ], [ @@ -160531,31 +144988,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80550, - 80550, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80551, - 80551, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-border-color", - 80552, + "--bs-card-border-color", + 80550, 80571, { - "value": "bs-card-border-color" + "value": "--bs-card-border-color" } ], [ @@ -160672,31 +145111,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80620, - 80620, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80621, - 80621, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 80622, + "--bs-card-inner-border-radius", + 80620, 80648, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -160722,31 +145143,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80655, - 80655, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80656, - 80656, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 80657, + "--bs-card-inner-border-radius", + 80655, 80683, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -160855,31 +145258,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80732, - 80732, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80733, - 80733, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 80734, + "--bs-card-cap-padding-x", + 80732, 80754, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -160970,31 +145355,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80786, - 80786, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80787, - 80787, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-y", - 80788, + "--bs-card-cap-padding-y", + 80786, 80808, { - "value": "bs-card-cap-padding-y" + "value": "--bs-card-cap-padding-y" } ], [ @@ -161085,31 +145452,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80839, - 80839, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80840, - 80840, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 80841, + "--bs-card-cap-padding-x", + 80839, 80861, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -161259,31 +145608,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80937, - 80937, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80938, - 80938, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-bg", - 80939, + "--bs-card-bg", + 80937, 80948, { - "value": "bs-card-bg" + "value": "--bs-card-bg" } ], [ @@ -161325,31 +145656,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 80975, - 80975, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 80976, - 80976, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-bg", - 80977, + "--bs-card-bg", + 80975, 80986, { - "value": "bs-card-bg" + "value": "--bs-card-bg" } ], [ @@ -161458,31 +145771,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81036, - 81036, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81037, - 81037, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 81038, + "--bs-card-cap-padding-x", + 81036, 81058, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -161573,31 +145868,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81089, - 81089, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81090, - 81090, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-cap-padding-x", - 81091, + "--bs-card-cap-padding-x", + 81089, 81111, { - "value": "bs-card-cap-padding-x" + "value": "--bs-card-cap-padding-x" } ], [ @@ -161835,31 +146112,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81193, - 81193, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81194, - 81194, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-img-overlay-padding", - 81195, + "--bs-card-img-overlay-padding", + 81193, 81221, { - "value": "bs-card-img-overlay-padding" + "value": "--bs-card-img-overlay-padding" } ], [ @@ -161901,31 +146160,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81242, - 81242, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81243, - 81243, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 81244, + "--bs-card-inner-border-radius", + 81242, 81270, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -162124,31 +146365,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81376, - 81376, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81377, - 81377, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 81378, + "--bs-card-inner-border-radius", + 81376, 81404, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -162190,31 +146413,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81435, - 81435, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81436, - 81436, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 81437, + "--bs-card-inner-border-radius", + 81435, 81463, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -162306,31 +146511,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81524, - 81524, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81525, - 81525, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 81526, + "--bs-card-inner-border-radius", + 81524, 81552, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -162372,31 +146559,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81585, - 81585, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81586, - 81586, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-inner-border-radius", - 81587, + "--bs-card-inner-border-radius", + 81585, 81613, { - "value": "bs-card-inner-border-radius" + "value": "--bs-card-inner-border-radius" } ], [ @@ -162490,31 +146659,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 81652, - 81652, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 81653, - 81653, - { - "value": "-" - } - ], [ "ident-token", - "bs-card-group-margin", - 81654, + "--bs-card-group-margin", + 81652, 81673, { - "value": "bs-card-group-margin" + "value": "--bs-card-group-margin" } ], [ @@ -164402,31 +148553,13 @@ export const bootstrapTokens = [ 82539, null ], - [ - "delim-token", - "-", - 82540, - 82540, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82541, - 82541, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-color", - 82542, + "--bs-accordion-color", + 82540, 82559, { - "value": "bs-accordion-color" + "value": "--bs-accordion-color" } ], [ @@ -164445,31 +148578,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 82565, - 82565, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82566, - 82566, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 82567, + "--bs-body-color", + 82565, 82579, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -164486,31 +148601,13 @@ export const bootstrapTokens = [ 82581, null ], - [ - "delim-token", - "-", - 82582, - 82582, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82583, - 82583, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-bg", - 82584, + "--bs-accordion-bg", + 82582, 82598, { - "value": "bs-accordion-bg" + "value": "--bs-accordion-bg" } ], [ @@ -164537,31 +148634,13 @@ export const bootstrapTokens = [ 82604, null ], - [ - "delim-token", - "-", - 82605, - 82605, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82606, - 82606, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-transition", - 82607, + "--bs-accordion-transition", + 82605, 82629, { - "value": "bs-accordion-transition" + "value": "--bs-accordion-transition" } ], [ @@ -164821,31 +148900,13 @@ export const bootstrapTokens = [ 82774, null ], - [ - "delim-token", - "-", - 82775, - 82775, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82776, - 82776, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-color", - 82777, + "--bs-accordion-border-color", + 82775, 82801, { - "value": "bs-accordion-border-color" + "value": "--bs-accordion-border-color" } ], [ @@ -164864,31 +148925,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 82807, - 82807, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82808, - 82808, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 82809, + "--bs-border-color", + 82807, 82823, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -164905,31 +148948,13 @@ export const bootstrapTokens = [ 82825, null ], - [ - "delim-token", - "-", - 82826, - 82826, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82827, - 82827, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-width", - 82828, + "--bs-accordion-border-width", + 82826, 82852, { - "value": "bs-accordion-border-width" + "value": "--bs-accordion-border-width" } ], [ @@ -164957,31 +148982,13 @@ export const bootstrapTokens = [ 82857, null ], - [ - "delim-token", - "-", - 82858, - 82858, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82859, - 82859, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 82860, + "--bs-accordion-border-radius", + 82858, 82885, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -165009,31 +149016,13 @@ export const bootstrapTokens = [ 82895, null ], - [ - "delim-token", - "-", - 82896, - 82896, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82897, - 82897, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-inner-border-radius", - 82898, + "--bs-accordion-inner-border-radius", + 82896, 82929, { - "value": "bs-accordion-inner-border-radius" + "value": "--bs-accordion-inner-border-radius" } ], [ @@ -165111,31 +149100,13 @@ export const bootstrapTokens = [ 82951, null ], - [ - "delim-token", - "-", - 82952, - 82952, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82953, - 82953, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-padding-x", - 82954, + "--bs-accordion-btn-padding-x", + 82952, 82979, { - "value": "bs-accordion-btn-padding-x" + "value": "--bs-accordion-btn-padding-x" } ], [ @@ -165163,31 +149134,13 @@ export const bootstrapTokens = [ 82988, null ], - [ - "delim-token", - "-", - 82989, - 82989, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 82990, - 82990, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-padding-y", - 82991, + "--bs-accordion-btn-padding-y", + 82989, 83016, { - "value": "bs-accordion-btn-padding-y" + "value": "--bs-accordion-btn-padding-y" } ], [ @@ -165215,31 +149168,13 @@ export const bootstrapTokens = [ 83022, null ], - [ - "delim-token", - "-", - 83023, - 83023, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83024, - 83024, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-color", - 83025, + "--bs-accordion-btn-color", + 83023, 83046, { - "value": "bs-accordion-btn-color" + "value": "--bs-accordion-btn-color" } ], [ @@ -165258,31 +149193,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 83052, - 83052, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83053, - 83053, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color", - 83054, + "--bs-body-color", + 83052, 83066, { - "value": "bs-body-color" + "value": "--bs-body-color" } ], [ @@ -165299,31 +149216,13 @@ export const bootstrapTokens = [ 83068, null ], - [ - "delim-token", - "-", - 83069, - 83069, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83070, - 83070, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-bg", - 83071, + "--bs-accordion-btn-bg", + 83069, 83089, { - "value": "bs-accordion-btn-bg" + "value": "--bs-accordion-btn-bg" } ], [ @@ -165342,31 +149241,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 83095, - 83095, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83096, - 83096, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-bg", - 83097, + "--bs-accordion-bg", + 83095, 83111, { - "value": "bs-accordion-bg" + "value": "--bs-accordion-bg" } ], [ @@ -165383,31 +149264,13 @@ export const bootstrapTokens = [ 83113, null ], - [ - "delim-token", - "-", - 83114, - 83114, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83115, - 83115, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon", - 83116, + "--bs-accordion-btn-icon", + 83114, 83136, { - "value": "bs-accordion-btn-icon" + "value": "--bs-accordion-btn-icon" } ], [ @@ -165449,31 +149312,13 @@ export const bootstrapTokens = [ 83424, null ], - [ - "delim-token", - "-", - 83425, - 83425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83426, - 83426, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-width", - 83427, + "--bs-accordion-btn-icon-width", + 83425, 83453, { - "value": "bs-accordion-btn-icon-width" + "value": "--bs-accordion-btn-icon-width" } ], [ @@ -165501,31 +149346,13 @@ export const bootstrapTokens = [ 83462, null ], - [ - "delim-token", - "-", - 83463, - 83463, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83464, - 83464, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-transform", - 83465, + "--bs-accordion-btn-icon-transform", + 83463, 83495, { - "value": "bs-accordion-btn-icon-transform" + "value": "--bs-accordion-btn-icon-transform" } ], [ @@ -165569,31 +149396,13 @@ export const bootstrapTokens = [ 83512, null ], - [ - "delim-token", - "-", - 83513, - 83513, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83514, - 83514, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-transition", - 83515, + "--bs-accordion-btn-icon-transition", + 83513, 83546, { - "value": "bs-accordion-btn-icon-transition" + "value": "--bs-accordion-btn-icon-transition" } ], [ @@ -165653,31 +149462,13 @@ export const bootstrapTokens = [ 83574, null ], - [ - "delim-token", - "-", - 83575, - 83575, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83576, - 83576, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-active-icon", - 83577, + "--bs-accordion-btn-active-icon", + 83575, 83604, { - "value": "bs-accordion-btn-active-icon" + "value": "--bs-accordion-btn-active-icon" } ], [ @@ -165719,31 +149510,13 @@ export const bootstrapTokens = [ 83877, null ], - [ - "delim-token", - "-", - 83878, - 83878, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83879, - 83879, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-focus-border-color", - 83880, + "--bs-accordion-btn-focus-border-color", + 83878, 83914, { - "value": "bs-accordion-btn-focus-border-color" + "value": "--bs-accordion-btn-focus-border-color" } ], [ @@ -165770,31 +149543,13 @@ export const bootstrapTokens = [ 83923, null ], - [ - "delim-token", - "-", - 83924, - 83924, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 83925, - 83925, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-focus-box-shadow", - 83926, + "--bs-accordion-btn-focus-box-shadow", + 83924, 83958, { - "value": "bs-accordion-btn-focus-box-shadow" + "value": "--bs-accordion-btn-focus-box-shadow" } ], [ @@ -165978,31 +149733,13 @@ export const bootstrapTokens = [ 83998, null ], - [ - "delim-token", - "-", - 83999, - 83999, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84000, - 84000, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-body-padding-x", - 84001, + "--bs-accordion-body-padding-x", + 83999, 84027, { - "value": "bs-accordion-body-padding-x" + "value": "--bs-accordion-body-padding-x" } ], [ @@ -166030,31 +149767,13 @@ export const bootstrapTokens = [ 84036, null ], - [ - "delim-token", - "-", - 84037, - 84037, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84038, - 84038, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-body-padding-y", - 84039, + "--bs-accordion-body-padding-y", + 84037, 84065, { - "value": "bs-accordion-body-padding-y" + "value": "--bs-accordion-body-padding-y" } ], [ @@ -166082,31 +149801,13 @@ export const bootstrapTokens = [ 84071, null ], - [ - "delim-token", - "-", - 84072, - 84072, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84073, - 84073, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-active-color", - 84074, + "--bs-accordion-active-color", + 84072, 84098, { - "value": "bs-accordion-active-color" + "value": "--bs-accordion-active-color" } ], [ @@ -166133,31 +149834,13 @@ export const bootstrapTokens = [ 84107, null ], - [ - "delim-token", - "-", - 84108, - 84108, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84109, - 84109, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-active-bg", - 84110, + "--bs-accordion-active-bg", + 84108, 84131, { - "value": "bs-accordion-active-bg" + "value": "--bs-accordion-active-bg" } ], [ @@ -166362,31 +150045,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84232, - 84232, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84233, - 84233, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-padding-y", - 84234, + "--bs-accordion-btn-padding-y", + 84232, 84259, { - "value": "bs-accordion-btn-padding-y" + "value": "--bs-accordion-btn-padding-y" } ], [ @@ -166412,31 +150077,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84266, - 84266, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84267, - 84267, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-padding-x", - 84268, + "--bs-accordion-btn-padding-x", + 84266, 84293, { - "value": "bs-accordion-btn-padding-x" + "value": "--bs-accordion-btn-padding-x" } ], [ @@ -166512,31 +150159,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84321, - 84321, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84322, - 84322, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-color", - 84323, + "--bs-accordion-btn-color", + 84321, 84344, { - "value": "bs-accordion-btn-color" + "value": "--bs-accordion-btn-color" } ], [ @@ -166610,31 +150239,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84384, - 84384, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84385, - 84385, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-bg", - 84386, + "--bs-accordion-btn-bg", + 84384, 84404, { - "value": "bs-accordion-btn-bg" + "value": "--bs-accordion-btn-bg" } ], [ @@ -166774,31 +150385,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84468, - 84468, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84469, - 84469, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-transition", - 84470, + "--bs-accordion-transition", + 84468, 84492, { - "value": "bs-accordion-transition" + "value": "--bs-accordion-transition" } ], [ @@ -167032,31 +150625,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84613, - 84613, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84614, - 84614, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-active-color", - 84615, + "--bs-accordion-active-color", + 84613, 84639, { - "value": "bs-accordion-active-color" + "value": "--bs-accordion-active-color" } ], [ @@ -167098,31 +150673,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84663, - 84663, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84664, - 84664, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-active-bg", - 84665, + "--bs-accordion-active-bg", + 84663, 84686, { - "value": "bs-accordion-active-bg" + "value": "--bs-accordion-active-bg" } ], [ @@ -167239,31 +150796,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84722, - 84722, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84723, - 84723, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-width", - 84724, + "--bs-accordion-border-width", + 84722, 84748, { - "value": "bs-accordion-border-width" + "value": "--bs-accordion-border-width" } ], [ @@ -167313,31 +150852,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84758, - 84758, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84759, - 84759, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-color", - 84760, + "--bs-accordion-border-color", + 84758, 84784, { - "value": "bs-accordion-border-color" + "value": "--bs-accordion-border-color" } ], [ @@ -167468,31 +150989,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84849, - 84849, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84850, - 84850, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-active-icon", - 84851, + "--bs-accordion-btn-active-icon", + 84849, 84878, { - "value": "bs-accordion-btn-active-icon" + "value": "--bs-accordion-btn-active-icon" } ], [ @@ -167534,31 +151037,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84895, - 84895, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84896, - 84896, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-transform", - 84897, + "--bs-accordion-btn-icon-transform", + 84895, 84927, { - "value": "bs-accordion-btn-icon-transform" + "value": "--bs-accordion-btn-icon-transform" } ], [ @@ -167681,31 +151166,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 84979, - 84979, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 84980, - 84980, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-width", - 84981, + "--bs-accordion-btn-icon-width", + 84979, 85007, { - "value": "bs-accordion-btn-icon-width" + "value": "--bs-accordion-btn-icon-width" } ], [ @@ -167747,31 +151214,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85021, - 85021, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85022, - 85022, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-width", - 85023, + "--bs-accordion-btn-icon-width", + 85021, 85049, { - "value": "bs-accordion-btn-icon-width" + "value": "--bs-accordion-btn-icon-width" } ], [ @@ -167877,31 +151326,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85101, - 85101, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85102, - 85102, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon", - 85103, + "--bs-accordion-btn-icon", + 85101, 85123, { - "value": "bs-accordion-btn-icon" + "value": "--bs-accordion-btn-icon" } ], [ @@ -167975,31 +151406,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85174, - 85174, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85175, - 85175, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-width", - 85176, + "--bs-accordion-btn-icon-width", + 85174, 85202, { - "value": "bs-accordion-btn-icon-width" + "value": "--bs-accordion-btn-icon-width" } ], [ @@ -168041,31 +151454,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85220, - 85220, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85221, - 85221, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-icon-transition", - 85222, + "--bs-accordion-btn-icon-transition", + 85220, 85253, { - "value": "bs-accordion-btn-icon-transition" + "value": "--bs-accordion-btn-icon-transition" } ], [ @@ -168404,31 +151799,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85422, - 85422, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85423, - 85423, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-focus-border-color", - 85424, + "--bs-accordion-btn-focus-border-color", + 85422, 85458, { - "value": "bs-accordion-btn-focus-border-color" + "value": "--bs-accordion-btn-focus-border-color" } ], [ @@ -168503,31 +151880,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85486, - 85486, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85487, - 85487, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-btn-focus-box-shadow", - 85488, + "--bs-accordion-btn-focus-box-shadow", + 85486, 85520, { - "value": "bs-accordion-btn-focus-box-shadow" + "value": "--bs-accordion-btn-focus-box-shadow" } ], [ @@ -168652,31 +152011,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85583, - 85583, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85584, - 85584, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-color", - 85585, + "--bs-accordion-color", + 85583, 85602, { - "value": "bs-accordion-color" + "value": "--bs-accordion-color" } ], [ @@ -168718,31 +152059,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85626, - 85626, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85627, - 85627, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-bg", - 85628, + "--bs-accordion-bg", + 85626, 85642, { - "value": "bs-accordion-bg" + "value": "--bs-accordion-bg" } ], [ @@ -168784,31 +152107,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85656, - 85656, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85657, - 85657, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-width", - 85658, + "--bs-accordion-border-width", + 85656, 85682, { - "value": "bs-accordion-border-width" + "value": "--bs-accordion-border-width" } ], [ @@ -168850,31 +152155,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85695, - 85695, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85696, - 85696, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-color", - 85697, + "--bs-accordion-border-color", + 85695, 85721, { - "value": "bs-accordion-border-color" + "value": "--bs-accordion-border-color" } ], [ @@ -168957,31 +152244,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85781, - 85781, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85782, - 85782, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 85783, + "--bs-accordion-border-radius", + 85781, 85808, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169023,31 +152292,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85839, - 85839, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85840, - 85840, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 85841, + "--bs-accordion-border-radius", + 85839, 85866, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169155,31 +152406,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 85944, - 85944, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 85945, - 85945, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-inner-border-radius", - 85946, + "--bs-accordion-inner-border-radius", + 85944, 85977, { - "value": "bs-accordion-inner-border-radius" + "value": "--bs-accordion-inner-border-radius" } ], [ @@ -169221,31 +152454,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86008, - 86008, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86009, - 86009, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-inner-border-radius", - 86010, + "--bs-accordion-inner-border-radius", + 86008, 86041, { - "value": "bs-accordion-inner-border-radius" + "value": "--bs-accordion-inner-border-radius" } ], [ @@ -169425,31 +152640,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86153, - 86153, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86154, - 86154, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 86155, + "--bs-accordion-border-radius", + 86153, 86180, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169491,31 +152688,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86213, - 86213, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86214, - 86214, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 86215, + "--bs-accordion-border-radius", + 86213, 86240, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169641,31 +152820,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86331, - 86331, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86332, - 86332, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-inner-border-radius", - 86333, + "--bs-accordion-inner-border-radius", + 86331, 86364, { - "value": "bs-accordion-inner-border-radius" + "value": "--bs-accordion-inner-border-radius" } ], [ @@ -169707,31 +152868,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86397, - 86397, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86398, - 86398, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-inner-border-radius", - 86399, + "--bs-accordion-inner-border-radius", + 86397, 86430, { - "value": "bs-accordion-inner-border-radius" + "value": "--bs-accordion-inner-border-radius" } ], [ @@ -169839,31 +152982,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86513, - 86513, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86514, - 86514, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 86515, + "--bs-accordion-border-radius", + 86513, 86540, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169905,31 +153030,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86573, - 86573, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86574, - 86574, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-border-radius", - 86575, + "--bs-accordion-border-radius", + 86573, 86600, { - "value": "bs-accordion-border-radius" + "value": "--bs-accordion-border-radius" } ], [ @@ -169996,31 +153103,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86631, - 86631, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86632, - 86632, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-body-padding-y", - 86633, + "--bs-accordion-body-padding-y", + 86631, 86659, { - "value": "bs-accordion-body-padding-y" + "value": "--bs-accordion-body-padding-y" } ], [ @@ -170046,31 +153135,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 86666, - 86666, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 86667, - 86667, - { - "value": "-" - } - ], [ "ident-token", - "bs-accordion-body-padding-x", - 86668, + "--bs-accordion-body-padding-x", + 86666, 86694, { - "value": "bs-accordion-body-padding-x" + "value": "--bs-accordion-body-padding-x" } ], [ @@ -170743,31 +153814,13 @@ export const bootstrapTokens = [ 87084, null ], - [ - "delim-token", - "-", - 87085, - 87085, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87086, - 87086, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-padding-x", - 87087, + "--bs-breadcrumb-padding-x", + 87085, 87109, { - "value": "bs-breadcrumb-padding-x" + "value": "--bs-breadcrumb-padding-x" } ], [ @@ -170794,31 +153847,13 @@ export const bootstrapTokens = [ 87112, null ], - [ - "delim-token", - "-", - 87113, - 87113, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87114, - 87114, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-padding-y", - 87115, + "--bs-breadcrumb-padding-y", + 87113, 87137, { - "value": "bs-breadcrumb-padding-y" + "value": "--bs-breadcrumb-padding-y" } ], [ @@ -170845,31 +153880,13 @@ export const bootstrapTokens = [ 87140, null ], - [ - "delim-token", - "-", - 87141, - 87141, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87142, - 87142, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-margin-bottom", - 87143, + "--bs-breadcrumb-margin-bottom", + 87141, 87169, { - "value": "bs-breadcrumb-margin-bottom" + "value": "--bs-breadcrumb-margin-bottom" } ], [ @@ -170897,31 +153914,13 @@ export const bootstrapTokens = [ 87175, null ], - [ - "delim-token", - "-", - 87176, - 87176, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87177, - 87177, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-bg", - 87178, + "--bs-breadcrumb-bg", + 87176, 87193, { - "value": "bs-breadcrumb-bg" + "value": "--bs-breadcrumb-bg" } ], [ @@ -170945,31 +153944,13 @@ export const bootstrapTokens = [ 87196, null ], - [ - "delim-token", - "-", - 87197, - 87197, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87198, - 87198, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-border-radius", - 87199, + "--bs-breadcrumb-border-radius", + 87197, 87225, { - "value": "bs-breadcrumb-border-radius" + "value": "--bs-breadcrumb-border-radius" } ], [ @@ -170993,31 +153974,13 @@ export const bootstrapTokens = [ 87228, null ], - [ - "delim-token", - "-", - 87229, - 87229, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87230, - 87230, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-divider-color", - 87231, + "--bs-breadcrumb-divider-color", + 87229, 87257, { - "value": "bs-breadcrumb-divider-color" + "value": "--bs-breadcrumb-divider-color" } ], [ @@ -171044,31 +154007,13 @@ export const bootstrapTokens = [ 87266, null ], - [ - "delim-token", - "-", - 87267, - 87267, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87268, - 87268, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-item-padding-x", - 87269, + "--bs-breadcrumb-item-padding-x", + 87267, 87296, { - "value": "bs-breadcrumb-item-padding-x" + "value": "--bs-breadcrumb-item-padding-x" } ], [ @@ -171096,31 +154041,13 @@ export const bootstrapTokens = [ 87304, null ], - [ - "delim-token", - "-", - 87305, - 87305, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87306, - 87306, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-item-active-color", - 87307, + "--bs-breadcrumb-item-active-color", + 87305, 87337, { - "value": "bs-breadcrumb-item-active-color" + "value": "--bs-breadcrumb-item-active-color" } ], [ @@ -171236,31 +154163,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87387, - 87387, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87388, - 87388, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-padding-y", - 87389, + "--bs-breadcrumb-padding-y", + 87387, 87411, { - "value": "bs-breadcrumb-padding-y" + "value": "--bs-breadcrumb-padding-y" } ], [ @@ -171286,31 +154195,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87418, - 87418, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87419, - 87419, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-padding-x", - 87420, + "--bs-breadcrumb-padding-x", + 87418, 87442, { - "value": "bs-breadcrumb-padding-x" + "value": "--bs-breadcrumb-padding-x" } ], [ @@ -171352,31 +154243,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87463, - 87463, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87464, - 87464, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-margin-bottom", - 87465, + "--bs-breadcrumb-margin-bottom", + 87463, 87491, { - "value": "bs-breadcrumb-margin-bottom" + "value": "--bs-breadcrumb-margin-bottom" } ], [ @@ -171418,31 +154291,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87508, - 87508, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87509, - 87509, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-font-size", - 87510, + "--bs-breadcrumb-font-size", + 87508, 87532, { - "value": "bs-breadcrumb-font-size" + "value": "--bs-breadcrumb-font-size" } ], [ @@ -171516,31 +154371,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87572, - 87572, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87573, - 87573, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-bg", - 87574, + "--bs-breadcrumb-bg", + 87572, 87589, { - "value": "bs-breadcrumb-bg" + "value": "--bs-breadcrumb-bg" } ], [ @@ -171582,31 +154419,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87610, - 87610, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87611, - 87611, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-border-radius", - 87612, + "--bs-breadcrumb-border-radius", + 87610, 87638, { - "value": "bs-breadcrumb-border-radius" + "value": "--bs-breadcrumb-border-radius" } ], [ @@ -171700,31 +154519,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87692, - 87692, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87693, - 87693, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-item-padding-x", - 87694, + "--bs-breadcrumb-item-padding-x", + 87692, 87721, { - "value": "bs-breadcrumb-item-padding-x" + "value": "--bs-breadcrumb-item-padding-x" } ], [ @@ -171873,31 +154674,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87795, - 87795, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87796, - 87796, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-item-padding-x", - 87797, + "--bs-breadcrumb-item-padding-x", + 87795, 87824, { - "value": "bs-breadcrumb-item-padding-x" + "value": "--bs-breadcrumb-item-padding-x" } ], [ @@ -171939,31 +154722,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87837, - 87837, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87838, - 87838, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-divider-color", - 87839, + "--bs-breadcrumb-divider-color", + 87837, 87865, { - "value": "bs-breadcrumb-divider-color" + "value": "--bs-breadcrumb-divider-color" } ], [ @@ -172005,31 +154770,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87880, - 87880, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87881, - 87881, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-divider", - 87882, + "--bs-breadcrumb-divider", + 87880, 87902, { - "value": "bs-breadcrumb-divider" + "value": "--bs-breadcrumb-divider" } ], [ @@ -172137,31 +154884,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 87944, - 87944, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87945, - 87945, - { - "value": "-" - } - ], [ "ident-token", - "bs-breadcrumb-item-active-color", - 87946, + "--bs-breadcrumb-item-active-color", + 87944, 87976, { - "value": "bs-breadcrumb-item-active-color" + "value": "--bs-breadcrumb-item-active-color" } ], [ @@ -172203,31 +154932,13 @@ export const bootstrapTokens = [ 87990, null ], - [ - "delim-token", - "-", - 87991, - 87991, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 87992, - 87992, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-x", - 87993, + "--bs-pagination-padding-x", + 87991, 88015, { - "value": "bs-pagination-padding-x" + "value": "--bs-pagination-padding-x" } ], [ @@ -172255,31 +154966,13 @@ export const bootstrapTokens = [ 88024, null ], - [ - "delim-token", - "-", - 88025, - 88025, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88026, - 88026, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-y", - 88027, + "--bs-pagination-padding-y", + 88025, 88049, { - "value": "bs-pagination-padding-y" + "value": "--bs-pagination-padding-y" } ], [ @@ -172307,31 +155000,13 @@ export const bootstrapTokens = [ 88059, null ], - [ - "delim-token", - "-", - 88060, - 88060, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88061, - 88061, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-font-size", - 88062, + "--bs-pagination-font-size", + 88060, 88084, { - "value": "bs-pagination-font-size" + "value": "--bs-pagination-font-size" } ], [ @@ -172359,31 +155034,13 @@ export const bootstrapTokens = [ 88090, null ], - [ - "delim-token", - "-", - 88091, - 88091, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88092, - 88092, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-color", - 88093, + "--bs-pagination-color", + 88091, 88111, { - "value": "bs-pagination-color" + "value": "--bs-pagination-color" } ], [ @@ -172402,31 +155059,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88117, - 88117, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88118, - 88118, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-color", - 88119, + "--bs-link-color", + 88117, 88131, { - "value": "bs-link-color" + "value": "--bs-link-color" } ], [ @@ -172443,31 +155082,13 @@ export const bootstrapTokens = [ 88133, null ], - [ - "delim-token", - "-", - 88134, - 88134, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88135, - 88135, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-bg", - 88136, + "--bs-pagination-bg", + 88134, 88151, { - "value": "bs-pagination-bg" + "value": "--bs-pagination-bg" } ], [ @@ -172494,31 +155115,13 @@ export const bootstrapTokens = [ 88157, null ], - [ - "delim-token", - "-", - 88158, - 88158, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88159, - 88159, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-width", - 88160, + "--bs-pagination-border-width", + 88158, 88185, { - "value": "bs-pagination-border-width" + "value": "--bs-pagination-border-width" } ], [ @@ -172546,31 +155149,13 @@ export const bootstrapTokens = [ 88190, null ], - [ - "delim-token", - "-", - 88191, - 88191, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88192, - 88192, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-color", - 88193, + "--bs-pagination-border-color", + 88191, 88218, { - "value": "bs-pagination-border-color" + "value": "--bs-pagination-border-color" } ], [ @@ -172597,31 +155182,13 @@ export const bootstrapTokens = [ 88227, null ], - [ - "delim-token", - "-", - 88228, - 88228, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88229, - 88229, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 88230, + "--bs-pagination-border-radius", + 88228, 88256, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -172649,31 +155216,13 @@ export const bootstrapTokens = [ 88266, null ], - [ - "delim-token", - "-", - 88267, - 88267, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88268, - 88268, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-color", - 88269, + "--bs-pagination-hover-color", + 88267, 88293, { - "value": "bs-pagination-hover-color" + "value": "--bs-pagination-hover-color" } ], [ @@ -172692,31 +155241,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88299, - 88299, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88300, - 88300, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 88301, + "--bs-link-hover-color", + 88299, 88319, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -172733,31 +155264,13 @@ export const bootstrapTokens = [ 88321, null ], - [ - "delim-token", - "-", - 88322, - 88322, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88323, - 88323, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-bg", - 88324, + "--bs-pagination-hover-bg", + 88322, 88345, { - "value": "bs-pagination-hover-bg" + "value": "--bs-pagination-hover-bg" } ], [ @@ -172784,31 +155297,13 @@ export const bootstrapTokens = [ 88354, null ], - [ - "delim-token", - "-", - 88355, - 88355, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88356, - 88356, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-border-color", - 88357, + "--bs-pagination-hover-border-color", + 88355, 88388, { - "value": "bs-pagination-hover-border-color" + "value": "--bs-pagination-hover-border-color" } ], [ @@ -172835,31 +155330,13 @@ export const bootstrapTokens = [ 88397, null ], - [ - "delim-token", - "-", - 88398, - 88398, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88399, - 88399, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-color", - 88400, + "--bs-pagination-focus-color", + 88398, 88424, { - "value": "bs-pagination-focus-color" + "value": "--bs-pagination-focus-color" } ], [ @@ -172878,31 +155355,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88430, - 88430, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88431, - 88431, - { - "value": "-" - } - ], [ "ident-token", - "bs-link-hover-color", - 88432, + "--bs-link-hover-color", + 88430, 88450, { - "value": "bs-link-hover-color" + "value": "--bs-link-hover-color" } ], [ @@ -172919,31 +155378,13 @@ export const bootstrapTokens = [ 88452, null ], - [ - "delim-token", - "-", - 88453, - 88453, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88454, - 88454, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-bg", - 88455, + "--bs-pagination-focus-bg", + 88453, 88476, { - "value": "bs-pagination-focus-bg" + "value": "--bs-pagination-focus-bg" } ], [ @@ -172970,31 +155411,13 @@ export const bootstrapTokens = [ 88485, null ], - [ - "delim-token", - "-", - 88486, - 88486, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88487, - 88487, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-box-shadow", - 88488, + "--bs-pagination-focus-box-shadow", + 88486, 88517, { - "value": "bs-pagination-focus-box-shadow" + "value": "--bs-pagination-focus-box-shadow" } ], [ @@ -173178,31 +155601,13 @@ export const bootstrapTokens = [ 88557, null ], - [ - "delim-token", - "-", - 88558, - 88558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88559, - 88559, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-color", - 88560, + "--bs-pagination-active-color", + 88558, 88585, { - "value": "bs-pagination-active-color" + "value": "--bs-pagination-active-color" } ], [ @@ -173229,31 +155634,13 @@ export const bootstrapTokens = [ 88591, null ], - [ - "delim-token", - "-", - 88592, - 88592, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88593, - 88593, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-bg", - 88594, + "--bs-pagination-active-bg", + 88592, 88616, { - "value": "bs-pagination-active-bg" + "value": "--bs-pagination-active-bg" } ], [ @@ -173280,31 +155667,13 @@ export const bootstrapTokens = [ 88625, null ], - [ - "delim-token", - "-", - 88626, - 88626, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88627, - 88627, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-border-color", - 88628, + "--bs-pagination-active-border-color", + 88626, 88660, { - "value": "bs-pagination-active-border-color" + "value": "--bs-pagination-active-border-color" } ], [ @@ -173331,31 +155700,13 @@ export const bootstrapTokens = [ 88669, null ], - [ - "delim-token", - "-", - 88670, - 88670, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88671, - 88671, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-color", - 88672, + "--bs-pagination-disabled-color", + 88670, 88699, { - "value": "bs-pagination-disabled-color" + "value": "--bs-pagination-disabled-color" } ], [ @@ -173382,31 +155733,13 @@ export const bootstrapTokens = [ 88708, null ], - [ - "delim-token", - "-", - 88709, - 88709, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88710, - 88710, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-bg", - 88711, + "--bs-pagination-disabled-bg", + 88709, 88735, { - "value": "bs-pagination-disabled-bg" + "value": "--bs-pagination-disabled-bg" } ], [ @@ -173433,31 +155766,13 @@ export const bootstrapTokens = [ 88741, null ], - [ - "delim-token", - "-", - 88742, - 88742, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88743, - 88743, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-border-color", - 88744, + "--bs-pagination-disabled-border-color", + 88742, 88778, { - "value": "bs-pagination-disabled-border-color" + "value": "--bs-pagination-disabled-border-color" } ], [ @@ -173695,31 +156010,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88887, - 88887, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88888, - 88888, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-y", - 88889, + "--bs-pagination-padding-y", + 88887, 88911, { - "value": "bs-pagination-padding-y" + "value": "--bs-pagination-padding-y" } ], [ @@ -173745,31 +156042,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88918, - 88918, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88919, - 88919, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-x", - 88920, + "--bs-pagination-padding-x", + 88918, 88942, { - "value": "bs-pagination-padding-x" + "value": "--bs-pagination-padding-x" } ], [ @@ -173811,31 +156090,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88959, - 88959, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88960, - 88960, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-font-size", - 88961, + "--bs-pagination-font-size", + 88959, 88983, { - "value": "bs-pagination-font-size" + "value": "--bs-pagination-font-size" } ], [ @@ -173877,31 +156138,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 88996, - 88996, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 88997, - 88997, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-color", - 88998, + "--bs-pagination-color", + 88996, 89016, { - "value": "bs-pagination-color" + "value": "--bs-pagination-color" } ], [ @@ -173975,31 +156218,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89061, - 89061, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89062, - 89062, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-bg", - 89063, + "--bs-pagination-bg", + 89061, 89078, { - "value": "bs-pagination-bg" + "value": "--bs-pagination-bg" } ], [ @@ -174041,31 +156266,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89092, - 89092, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89093, - 89093, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-width", - 89094, + "--bs-pagination-border-width", + 89092, 89119, { - "value": "bs-pagination-border-width" + "value": "--bs-pagination-border-width" } ], [ @@ -174107,31 +156314,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89132, - 89132, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89133, - 89133, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-color", - 89134, + "--bs-pagination-border-color", + 89132, 89159, { - "value": "bs-pagination-border-color" + "value": "--bs-pagination-border-color" } ], [ @@ -174589,31 +156778,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89392, - 89392, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89393, - 89393, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-color", - 89394, + "--bs-pagination-hover-color", + 89392, 89418, { - "value": "bs-pagination-hover-color" + "value": "--bs-pagination-hover-color" } ], [ @@ -174655,31 +156826,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89442, - 89442, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89443, - 89443, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-bg", - 89444, + "--bs-pagination-hover-bg", + 89442, 89465, { - "value": "bs-pagination-hover-bg" + "value": "--bs-pagination-hover-bg" } ], [ @@ -174721,31 +156874,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89485, - 89485, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89486, - 89486, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-hover-border-color", - 89487, + "--bs-pagination-hover-border-color", + 89485, 89518, { - "value": "bs-pagination-hover-border-color" + "value": "--bs-pagination-hover-border-color" } ], [ @@ -174861,31 +156996,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89558, - 89558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89559, - 89559, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-color", - 89560, + "--bs-pagination-focus-color", + 89558, 89584, { - "value": "bs-pagination-focus-color" + "value": "--bs-pagination-focus-color" } ], [ @@ -174927,31 +157044,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89608, - 89608, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89609, - 89609, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-bg", - 89610, + "--bs-pagination-focus-bg", + 89608, 89631, { - "value": "bs-pagination-focus-bg" + "value": "--bs-pagination-focus-bg" } ], [ @@ -175026,31 +157125,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89659, - 89659, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89660, - 89660, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-focus-box-shadow", - 89661, + "--bs-pagination-focus-box-shadow", + 89659, 89690, { - "value": "bs-pagination-focus-box-shadow" + "value": "--bs-pagination-focus-box-shadow" } ], [ @@ -175220,31 +157301,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89750, - 89750, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89751, - 89751, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-color", - 89752, + "--bs-pagination-active-color", + 89750, 89777, { - "value": "bs-pagination-active-color" + "value": "--bs-pagination-active-color" } ], [ @@ -175286,31 +157349,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89801, - 89801, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89802, - 89802, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-bg", - 89803, + "--bs-pagination-active-bg", + 89801, 89825, { - "value": "bs-pagination-active-bg" + "value": "--bs-pagination-active-bg" } ], [ @@ -175352,31 +157397,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89845, - 89845, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89846, - 89846, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-active-border-color", - 89847, + "--bs-pagination-active-border-color", + 89845, 89879, { - "value": "bs-pagination-active-border-color" + "value": "--bs-pagination-active-border-color" } ], [ @@ -175513,31 +157540,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 89933, - 89933, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 89934, - 89934, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-color", - 89935, + "--bs-pagination-disabled-color", + 89933, 89962, { - "value": "bs-pagination-disabled-color" + "value": "--bs-pagination-disabled-color" } ], [ @@ -175611,31 +157620,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90006, - 90006, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90007, - 90007, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-bg", - 90008, + "--bs-pagination-disabled-bg", + 90006, 90032, { - "value": "bs-pagination-disabled-bg" + "value": "--bs-pagination-disabled-bg" } ], [ @@ -175677,31 +157668,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90052, - 90052, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90053, - 90053, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-disabled-border-color", - 90054, + "--bs-pagination-disabled-border-color", + 90052, 90088, { - "value": "bs-pagination-disabled-border-color" + "value": "--bs-pagination-disabled-border-color" } ], [ @@ -175932,31 +157905,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90209, - 90209, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90210, - 90210, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90211, + "--bs-pagination-border-radius", + 90209, 90237, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -175998,31 +157953,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90270, - 90270, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90271, - 90271, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90272, + "--bs-pagination-border-radius", + 90270, 90298, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -176130,31 +158067,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90362, - 90362, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90363, - 90363, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90364, + "--bs-pagination-border-radius", + 90362, 90390, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -176196,31 +158115,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90424, - 90424, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90425, - 90425, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90426, + "--bs-pagination-border-radius", + 90424, 90452, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -176262,31 +158163,13 @@ export const bootstrapTokens = [ 90469, null ], - [ - "delim-token", - "-", - 90470, - 90470, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90471, - 90471, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-x", - 90472, + "--bs-pagination-padding-x", + 90470, 90494, { - "value": "bs-pagination-padding-x" + "value": "--bs-pagination-padding-x" } ], [ @@ -176314,31 +158197,13 @@ export const bootstrapTokens = [ 90502, null ], - [ - "delim-token", - "-", - 90503, - 90503, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90504, - 90504, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-y", - 90505, + "--bs-pagination-padding-y", + 90503, 90527, { - "value": "bs-pagination-padding-y" + "value": "--bs-pagination-padding-y" } ], [ @@ -176366,31 +158231,13 @@ export const bootstrapTokens = [ 90536, null ], - [ - "delim-token", - "-", - 90537, - 90537, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90538, - 90538, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-font-size", - 90539, + "--bs-pagination-font-size", + 90537, 90561, { - "value": "bs-pagination-font-size" + "value": "--bs-pagination-font-size" } ], [ @@ -176418,31 +158265,13 @@ export const bootstrapTokens = [ 90570, null ], - [ - "delim-token", - "-", - 90571, - 90571, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90572, - 90572, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90573, + "--bs-pagination-border-radius", + 90571, 90599, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -176495,31 +158324,13 @@ export const bootstrapTokens = [ 90622, null ], - [ - "delim-token", - "-", - 90623, - 90623, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90624, - 90624, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-x", - 90625, + "--bs-pagination-padding-x", + 90623, 90647, { - "value": "bs-pagination-padding-x" + "value": "--bs-pagination-padding-x" } ], [ @@ -176547,31 +158358,13 @@ export const bootstrapTokens = [ 90655, null ], - [ - "delim-token", - "-", - 90656, - 90656, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90657, - 90657, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-padding-y", - 90658, + "--bs-pagination-padding-y", + 90656, 90680, { - "value": "bs-pagination-padding-y" + "value": "--bs-pagination-padding-y" } ], [ @@ -176599,31 +158392,13 @@ export const bootstrapTokens = [ 90689, null ], - [ - "delim-token", - "-", - 90690, - 90690, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90691, - 90691, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-font-size", - 90692, + "--bs-pagination-font-size", + 90690, 90714, { - "value": "bs-pagination-font-size" + "value": "--bs-pagination-font-size" } ], [ @@ -176651,31 +158426,13 @@ export const bootstrapTokens = [ 90724, null ], - [ - "delim-token", - "-", - 90725, - 90725, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90726, - 90726, - { - "value": "-" - } - ], [ "ident-token", - "bs-pagination-border-radius", - 90727, + "--bs-pagination-border-radius", + 90725, 90753, { - "value": "bs-pagination-border-radius" + "value": "--bs-pagination-border-radius" } ], [ @@ -176728,31 +158485,13 @@ export const bootstrapTokens = [ 90769, null ], - [ - "delim-token", - "-", - 90770, - 90770, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90771, - 90771, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-padding-x", - 90772, + "--bs-badge-padding-x", + 90770, 90789, { - "value": "bs-badge-padding-x" + "value": "--bs-badge-padding-x" } ], [ @@ -176780,31 +158519,13 @@ export const bootstrapTokens = [ 90797, null ], - [ - "delim-token", - "-", - 90798, - 90798, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90799, - 90799, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-padding-y", - 90800, + "--bs-badge-padding-y", + 90798, 90817, { - "value": "bs-badge-padding-y" + "value": "--bs-badge-padding-y" } ], [ @@ -176832,31 +158553,13 @@ export const bootstrapTokens = [ 90825, null ], - [ - "delim-token", - "-", - 90826, - 90826, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90827, - 90827, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-font-size", - 90828, + "--bs-badge-font-size", + 90826, 90845, { - "value": "bs-badge-font-size" + "value": "--bs-badge-font-size" } ], [ @@ -176884,31 +158587,13 @@ export const bootstrapTokens = [ 90853, null ], - [ - "delim-token", - "-", - 90854, - 90854, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90855, - 90855, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-font-weight", - 90856, + "--bs-badge-font-weight", + 90854, 90875, { - "value": "bs-badge-font-weight" + "value": "--bs-badge-font-weight" } ], [ @@ -176935,31 +158620,13 @@ export const bootstrapTokens = [ 90880, null ], - [ - "delim-token", - "-", - 90881, - 90881, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90882, - 90882, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-color", - 90883, + "--bs-badge-color", + 90881, 90896, { - "value": "bs-badge-color" + "value": "--bs-badge-color" } ], [ @@ -176986,31 +158653,13 @@ export const bootstrapTokens = [ 90902, null ], - [ - "delim-token", - "-", - 90903, - 90903, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90904, - 90904, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-border-radius", - 90905, + "--bs-badge-border-radius", + 90903, 90926, { - "value": "bs-badge-border-radius" + "value": "--bs-badge-border-radius" } ], [ @@ -177095,31 +158744,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90970, - 90970, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90971, - 90971, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-padding-y", - 90972, + "--bs-badge-padding-y", + 90970, 90989, { - "value": "bs-badge-padding-y" + "value": "--bs-badge-padding-y" } ], [ @@ -177145,31 +158776,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 90996, - 90996, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 90997, - 90997, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-padding-x", - 90998, + "--bs-badge-padding-x", + 90996, 91015, { - "value": "bs-badge-padding-x" + "value": "--bs-badge-padding-x" } ], [ @@ -177211,31 +158824,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91032, - 91032, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91033, - 91033, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-font-size", - 91034, + "--bs-badge-font-size", + 91032, 91051, { - "value": "bs-badge-font-size" + "value": "--bs-badge-font-size" } ], [ @@ -177277,31 +158872,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91070, - 91070, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91071, - 91071, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-font-weight", - 91072, + "--bs-badge-font-weight", + 91070, 91091, { - "value": "bs-badge-font-weight" + "value": "--bs-badge-font-weight" } ], [ @@ -177376,31 +158953,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91118, - 91118, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91119, - 91119, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-color", - 91120, + "--bs-badge-color", + 91118, 91133, { - "value": "bs-badge-color" + "value": "--bs-badge-color" } ], [ @@ -177538,31 +159097,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91215, - 91215, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91216, - 91216, - { - "value": "-" - } - ], [ "ident-token", - "bs-badge-border-radius", - 91217, + "--bs-badge-border-radius", + 91215, 91238, { - "value": "bs-badge-border-radius" + "value": "--bs-badge-border-radius" } ], [ @@ -177793,31 +159334,13 @@ export const bootstrapTokens = [ 91312, null ], - [ - "delim-token", - "-", - 91313, - 91313, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91314, - 91314, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 91315, + "--bs-alert-bg", + 91313, 91325, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -177843,31 +159366,13 @@ export const bootstrapTokens = [ 91338, null ], - [ - "delim-token", - "-", - 91339, - 91339, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91340, - 91340, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-padding-x", - 91341, + "--bs-alert-padding-x", + 91339, 91358, { - "value": "bs-alert-padding-x" + "value": "--bs-alert-padding-x" } ], [ @@ -177895,31 +159400,13 @@ export const bootstrapTokens = [ 91364, null ], - [ - "delim-token", - "-", - 91365, - 91365, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91366, - 91366, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-padding-y", - 91367, + "--bs-alert-padding-y", + 91365, 91384, { - "value": "bs-alert-padding-y" + "value": "--bs-alert-padding-y" } ], [ @@ -177947,31 +159434,13 @@ export const bootstrapTokens = [ 91390, null ], - [ - "delim-token", - "-", - 91391, - 91391, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91392, - 91392, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-margin-bottom", - 91393, + "--bs-alert-margin-bottom", + 91391, 91414, { - "value": "bs-alert-margin-bottom" + "value": "--bs-alert-margin-bottom" } ], [ @@ -177999,31 +159468,13 @@ export const bootstrapTokens = [ 91420, null ], - [ - "delim-token", - "-", - 91421, - 91421, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91422, - 91422, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 91423, + "--bs-alert-color", + 91421, 91436, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -178049,31 +159500,13 @@ export const bootstrapTokens = [ 91445, null ], - [ - "delim-token", - "-", - 91446, - 91446, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91447, - 91447, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 91448, + "--bs-alert-border-color", + 91446, 91468, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -178099,31 +159532,13 @@ export const bootstrapTokens = [ 91481, null ], - [ - "delim-token", - "-", - 91482, - 91482, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91483, - 91483, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border", - 91484, + "--bs-alert-border", + 91482, 91498, { - "value": "bs-alert-border" + "value": "--bs-alert-border" } ], [ @@ -178176,31 +159591,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91514, - 91514, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91515, - 91515, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 91516, + "--bs-alert-border-color", + 91514, 91536, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -178217,31 +159614,13 @@ export const bootstrapTokens = [ 91538, null ], - [ - "delim-token", - "-", - 91539, - 91539, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91540, - 91540, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-radius", - 91541, + "--bs-alert-border-radius", + 91539, 91562, { - "value": "bs-alert-border-radius" + "value": "--bs-alert-border-radius" } ], [ @@ -178326,31 +159705,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91603, - 91603, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91604, - 91604, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-padding-y", - 91605, + "--bs-alert-padding-y", + 91603, 91622, { - "value": "bs-alert-padding-y" + "value": "--bs-alert-padding-y" } ], [ @@ -178376,31 +159737,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91629, - 91629, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91630, - 91630, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-padding-x", - 91631, + "--bs-alert-padding-x", + 91629, 91648, { - "value": "bs-alert-padding-x" + "value": "--bs-alert-padding-x" } ], [ @@ -178442,31 +159785,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91669, - 91669, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91670, - 91670, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-margin-bottom", - 91671, + "--bs-alert-margin-bottom", + 91669, 91692, { - "value": "bs-alert-margin-bottom" + "value": "--bs-alert-margin-bottom" } ], [ @@ -178508,31 +159833,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91705, - 91705, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91706, - 91706, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 91707, + "--bs-alert-color", + 91705, 91720, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -178574,31 +159881,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91744, - 91744, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91745, - 91745, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 91746, + "--bs-alert-bg", + 91744, 91756, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -178640,31 +159929,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91770, - 91770, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91771, - 91771, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border", - 91772, + "--bs-alert-border", + 91770, 91786, { - "value": "bs-alert-border" + "value": "--bs-alert-border" } ], [ @@ -178706,31 +159977,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 91807, - 91807, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 91808, - 91808, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-radius", - 91809, + "--bs-alert-border-radius", + 91807, 91830, { - "value": "bs-alert-border-radius" + "value": "--bs-alert-border-radius" } ], [ @@ -179179,31 +160432,13 @@ export const bootstrapTokens = [ 92035, null ], - [ - "delim-token", - "-", - 92036, - 92036, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92037, - 92037, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92038, + "--bs-alert-color", + 92036, 92051, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -179230,31 +160465,13 @@ export const bootstrapTokens = [ 92060, null ], - [ - "delim-token", - "-", - 92061, - 92061, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92062, - 92062, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92063, + "--bs-alert-bg", + 92061, 92073, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -179281,31 +160498,13 @@ export const bootstrapTokens = [ 92082, null ], - [ - "delim-token", - "-", - 92083, - 92083, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92084, - 92084, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92085, + "--bs-alert-border-color", + 92083, 92105, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -179440,31 +160639,13 @@ export const bootstrapTokens = [ 92172, null ], - [ - "delim-token", - "-", - 92173, - 92173, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92174, - 92174, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92175, + "--bs-alert-color", + 92173, 92188, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -179491,31 +160672,13 @@ export const bootstrapTokens = [ 92197, null ], - [ - "delim-token", - "-", - 92198, - 92198, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92199, - 92199, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92200, + "--bs-alert-bg", + 92198, 92210, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -179542,31 +160705,13 @@ export const bootstrapTokens = [ 92219, null ], - [ - "delim-token", - "-", - 92220, - 92220, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92221, - 92221, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92222, + "--bs-alert-border-color", + 92220, 92242, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -179701,31 +160846,13 @@ export const bootstrapTokens = [ 92309, null ], - [ - "delim-token", - "-", - 92310, - 92310, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92311, - 92311, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92312, + "--bs-alert-color", + 92310, 92325, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -179752,31 +160879,13 @@ export const bootstrapTokens = [ 92334, null ], - [ - "delim-token", - "-", - 92335, - 92335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92336, - 92336, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92337, + "--bs-alert-bg", + 92335, 92347, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -179803,31 +160912,13 @@ export const bootstrapTokens = [ 92356, null ], - [ - "delim-token", - "-", - 92357, - 92357, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92358, - 92358, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92359, + "--bs-alert-border-color", + 92357, 92379, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -179962,31 +161053,13 @@ export const bootstrapTokens = [ 92441, null ], - [ - "delim-token", - "-", - 92442, - 92442, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92443, - 92443, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92444, + "--bs-alert-color", + 92442, 92457, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -180013,31 +161086,13 @@ export const bootstrapTokens = [ 92466, null ], - [ - "delim-token", - "-", - 92467, - 92467, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92468, - 92468, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92469, + "--bs-alert-bg", + 92467, 92479, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -180064,31 +161119,13 @@ export const bootstrapTokens = [ 92488, null ], - [ - "delim-token", - "-", - 92489, - 92489, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92490, - 92490, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92491, + "--bs-alert-border-color", + 92489, 92511, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -180223,31 +161260,13 @@ export const bootstrapTokens = [ 92573, null ], - [ - "delim-token", - "-", - 92574, - 92574, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92575, - 92575, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92576, + "--bs-alert-color", + 92574, 92589, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -180274,31 +161293,13 @@ export const bootstrapTokens = [ 92598, null ], - [ - "delim-token", - "-", - 92599, - 92599, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92600, - 92600, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92601, + "--bs-alert-bg", + 92599, 92611, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -180325,31 +161326,13 @@ export const bootstrapTokens = [ 92620, null ], - [ - "delim-token", - "-", - 92621, - 92621, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92622, - 92622, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92623, + "--bs-alert-border-color", + 92621, 92643, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -180484,31 +161467,13 @@ export const bootstrapTokens = [ 92707, null ], - [ - "delim-token", - "-", - 92708, - 92708, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92709, - 92709, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92710, + "--bs-alert-color", + 92708, 92723, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -180535,31 +161500,13 @@ export const bootstrapTokens = [ 92732, null ], - [ - "delim-token", - "-", - 92733, - 92733, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92734, - 92734, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92735, + "--bs-alert-bg", + 92733, 92745, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -180586,31 +161533,13 @@ export const bootstrapTokens = [ 92754, null ], - [ - "delim-token", - "-", - 92755, - 92755, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92756, - 92756, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92757, + "--bs-alert-border-color", + 92755, 92777, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -180745,31 +161674,13 @@ export const bootstrapTokens = [ 92839, null ], - [ - "delim-token", - "-", - 92840, - 92840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92841, - 92841, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92842, + "--bs-alert-color", + 92840, 92855, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -180796,31 +161707,13 @@ export const bootstrapTokens = [ 92864, null ], - [ - "delim-token", - "-", - 92865, - 92865, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92866, - 92866, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92867, + "--bs-alert-bg", + 92865, 92877, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -180847,31 +161740,13 @@ export const bootstrapTokens = [ 92886, null ], - [ - "delim-token", - "-", - 92887, - 92887, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92888, - 92888, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 92889, + "--bs-alert-border-color", + 92887, 92909, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -181006,31 +161881,13 @@ export const bootstrapTokens = [ 92969, null ], - [ - "delim-token", - "-", - 92970, - 92970, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92971, - 92971, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-color", - 92972, + "--bs-alert-color", + 92970, 92985, { - "value": "bs-alert-color" + "value": "--bs-alert-color" } ], [ @@ -181057,31 +161914,13 @@ export const bootstrapTokens = [ 92994, null ], - [ - "delim-token", - "-", - 92995, - 92995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 92996, - 92996, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-bg", - 92997, + "--bs-alert-bg", + 92995, 93007, { - "value": "bs-alert-bg" + "value": "--bs-alert-bg" } ], [ @@ -181108,31 +161947,13 @@ export const bootstrapTokens = [ 93016, null ], - [ - "delim-token", - "-", - 93017, - 93017, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93018, - 93018, - { - "value": "-" - } - ], [ "ident-token", - "bs-alert-border-color", - 93019, + "--bs-alert-border-color", + 93017, 93039, { - "value": "bs-alert-border-color" + "value": "--bs-alert-border-color" } ], [ @@ -181445,31 +162266,13 @@ export const bootstrapTokens = [ 93230, null ], - [ - "delim-token", - "-", - 93231, - 93231, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93232, - 93232, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-height", - 93233, + "--bs-progress-height", + 93231, 93250, { - "value": "bs-progress-height" + "value": "--bs-progress-height" } ], [ @@ -181497,31 +162300,13 @@ export const bootstrapTokens = [ 93256, null ], - [ - "delim-token", - "-", - 93257, - 93257, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93258, - 93258, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-font-size", - 93259, + "--bs-progress-font-size", + 93257, 93279, { - "value": "bs-progress-font-size" + "value": "--bs-progress-font-size" } ], [ @@ -181549,31 +162334,13 @@ export const bootstrapTokens = [ 93288, null ], - [ - "delim-token", - "-", - 93289, - 93289, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93290, - 93290, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bg", - 93291, + "--bs-progress-bg", + 93289, 93304, { - "value": "bs-progress-bg" + "value": "--bs-progress-bg" } ], [ @@ -181600,31 +162367,13 @@ export const bootstrapTokens = [ 93313, null ], - [ - "delim-token", - "-", - 93314, - 93314, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93315, - 93315, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-border-radius", - 93316, + "--bs-progress-border-radius", + 93314, 93340, { - "value": "bs-progress-border-radius" + "value": "--bs-progress-border-radius" } ], [ @@ -181652,31 +162401,13 @@ export const bootstrapTokens = [ 93350, null ], - [ - "delim-token", - "-", - 93351, - 93351, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93352, - 93352, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-box-shadow", - 93353, + "--bs-progress-box-shadow", + 93351, 93374, { - "value": "bs-progress-box-shadow" + "value": "--bs-progress-box-shadow" } ], [ @@ -181860,31 +162591,13 @@ export const bootstrapTokens = [ 93412, null ], - [ - "delim-token", - "-", - 93413, - 93413, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93414, - 93414, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-color", - 93415, + "--bs-progress-bar-color", + 93413, 93435, { - "value": "bs-progress-bar-color" + "value": "--bs-progress-bar-color" } ], [ @@ -181911,31 +162624,13 @@ export const bootstrapTokens = [ 93441, null ], - [ - "delim-token", - "-", - 93442, - 93442, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93443, - 93443, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-bg", - 93444, + "--bs-progress-bar-bg", + 93442, 93461, { - "value": "bs-progress-bar-bg" + "value": "--bs-progress-bar-bg" } ], [ @@ -181962,31 +162657,13 @@ export const bootstrapTokens = [ 93470, null ], - [ - "delim-token", - "-", - 93471, - 93471, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93472, - 93472, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-transition", - 93473, + "--bs-progress-bar-transition", + 93471, 93498, { - "value": "bs-progress-bar-transition" + "value": "--bs-progress-bar-transition" } ], [ @@ -182103,31 +162780,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93540, - 93540, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93541, - 93541, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-height", - 93542, + "--bs-progress-height", + 93540, 93559, { - "value": "bs-progress-height" + "value": "--bs-progress-height" } ], [ @@ -182201,31 +162860,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93592, - 93592, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93593, - 93593, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-font-size", - 93594, + "--bs-progress-font-size", + 93592, 93614, { - "value": "bs-progress-font-size" + "value": "--bs-progress-font-size" } ], [ @@ -182267,31 +162908,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93638, - 93638, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93639, - 93639, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bg", - 93640, + "--bs-progress-bg", + 93638, 93653, { - "value": "bs-progress-bg" + "value": "--bs-progress-bg" } ], [ @@ -182333,31 +162956,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93674, - 93674, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93675, - 93675, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-border-radius", - 93676, + "--bs-progress-border-radius", + 93674, 93700, { - "value": "bs-progress-border-radius" + "value": "--bs-progress-border-radius" } ], [ @@ -182552,31 +163157,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93801, - 93801, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93802, - 93802, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-color", - 93803, + "--bs-progress-bar-color", + 93801, 93823, { - "value": "bs-progress-bar-color" + "value": "--bs-progress-bar-color" } ], [ @@ -182682,31 +163269,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93884, - 93884, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93885, - 93885, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-bg", - 93886, + "--bs-progress-bar-bg", + 93884, 93903, { - "value": "bs-progress-bar-bg" + "value": "--bs-progress-bar-bg" } ], [ @@ -182748,31 +163317,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 93921, - 93921, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 93922, - 93922, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-bar-transition", - 93923, + "--bs-progress-bar-transition", + 93921, 93948, { - "value": "bs-progress-bar-transition" + "value": "--bs-progress-bar-transition" } ], [ @@ -183427,31 +163978,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 94241, - 94241, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94242, - 94242, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-height", - 94243, + "--bs-progress-height", + 94241, 94260, { - "value": "bs-progress-height" + "value": "--bs-progress-height" } ], [ @@ -183477,31 +164010,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 94267, - 94267, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94268, - 94268, - { - "value": "-" - } - ], [ "ident-token", - "bs-progress-height", - 94269, + "--bs-progress-height", + 94267, 94286, { - "value": "bs-progress-height" + "value": "--bs-progress-height" } ], [ @@ -183543,22 +164058,13 @@ export const bootstrapTokens = [ 94311, null ], - [ - "delim-token", - "-", - 94312, - 94312, - { - "value": "-" - } - ], [ "ident-token", - "webkit-animation", - 94313, + "-webkit-animation", + 94312, 94328, { - "value": "webkit-animation" + "value": "-webkit-animation" } ], [ @@ -183803,22 +164309,13 @@ export const bootstrapTokens = [ 94481, null ], - [ - "delim-token", - "-", - 94482, - 94482, - { - "value": "-" - } - ], [ "ident-token", - "webkit-animation", - 94483, + "-webkit-animation", + 94482, 94498, { - "value": "webkit-animation" + "value": "-webkit-animation" } ], [ @@ -183908,31 +164405,13 @@ export const bootstrapTokens = [ 94532, null ], - [ - "delim-token", - "-", - 94533, - 94533, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94534, - 94534, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-color", - 94535, + "--bs-list-group-color", + 94533, 94553, { - "value": "bs-list-group-color" + "value": "--bs-list-group-color" } ], [ @@ -183959,31 +164438,13 @@ export const bootstrapTokens = [ 94562, null ], - [ - "delim-token", - "-", - 94563, - 94563, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94564, - 94564, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-bg", - 94565, + "--bs-list-group-bg", + 94563, 94580, { - "value": "bs-list-group-bg" + "value": "--bs-list-group-bg" } ], [ @@ -184010,31 +164471,13 @@ export const bootstrapTokens = [ 94586, null ], - [ - "delim-token", - "-", - 94587, - 94587, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94588, - 94588, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-color", - 94589, + "--bs-list-group-border-color", + 94587, 94614, { - "value": "bs-list-group-border-color" + "value": "--bs-list-group-border-color" } ], [ @@ -184149,31 +164592,13 @@ export const bootstrapTokens = [ 94636, null ], - [ - "delim-token", - "-", - 94637, - 94637, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94638, - 94638, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 94639, + "--bs-list-group-border-width", + 94637, 94664, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -184201,31 +164626,13 @@ export const bootstrapTokens = [ 94669, null ], - [ - "delim-token", - "-", - 94670, - 94670, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94671, - 94671, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 94672, + "--bs-list-group-border-radius", + 94670, 94698, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -184253,31 +164660,13 @@ export const bootstrapTokens = [ 94708, null ], - [ - "delim-token", - "-", - 94709, - 94709, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94710, - 94710, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-item-padding-x", - 94711, + "--bs-list-group-item-padding-x", + 94709, 94738, { - "value": "bs-list-group-item-padding-x" + "value": "--bs-list-group-item-padding-x" } ], [ @@ -184305,31 +164694,13 @@ export const bootstrapTokens = [ 94744, null ], - [ - "delim-token", - "-", - 94745, - 94745, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94746, - 94746, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-item-padding-y", - 94747, + "--bs-list-group-item-padding-y", + 94745, 94774, { - "value": "bs-list-group-item-padding-y" + "value": "--bs-list-group-item-padding-y" } ], [ @@ -184357,31 +164728,13 @@ export const bootstrapTokens = [ 94782, null ], - [ - "delim-token", - "-", - 94783, - 94783, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94784, - 94784, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-color", - 94785, + "--bs-list-group-action-color", + 94783, 94810, { - "value": "bs-list-group-action-color" + "value": "--bs-list-group-action-color" } ], [ @@ -184408,31 +164761,13 @@ export const bootstrapTokens = [ 94819, null ], - [ - "delim-token", - "-", - 94820, - 94820, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94821, - 94821, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-hover-color", - 94822, + "--bs-list-group-action-hover-color", + 94820, 94853, { - "value": "bs-list-group-action-hover-color" + "value": "--bs-list-group-action-hover-color" } ], [ @@ -184459,31 +164794,13 @@ export const bootstrapTokens = [ 94862, null ], - [ - "delim-token", - "-", - 94863, - 94863, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94864, - 94864, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-hover-bg", - 94865, + "--bs-list-group-action-hover-bg", + 94863, 94893, { - "value": "bs-list-group-action-hover-bg" + "value": "--bs-list-group-action-hover-bg" } ], [ @@ -184510,31 +164827,13 @@ export const bootstrapTokens = [ 94902, null ], - [ - "delim-token", - "-", - 94903, - 94903, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94904, - 94904, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-active-color", - 94905, + "--bs-list-group-action-active-color", + 94903, 94937, { - "value": "bs-list-group-action-active-color" + "value": "--bs-list-group-action-active-color" } ], [ @@ -184561,31 +164860,13 @@ export const bootstrapTokens = [ 94946, null ], - [ - "delim-token", - "-", - 94947, - 94947, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94948, - 94948, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-active-bg", - 94949, + "--bs-list-group-action-active-bg", + 94947, 94978, { - "value": "bs-list-group-action-active-bg" + "value": "--bs-list-group-action-active-bg" } ], [ @@ -184612,31 +164893,13 @@ export const bootstrapTokens = [ 94987, null ], - [ - "delim-token", - "-", - 94988, - 94988, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 94989, - 94989, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-disabled-color", - 94990, + "--bs-list-group-disabled-color", + 94988, 95017, { - "value": "bs-list-group-disabled-color" + "value": "--bs-list-group-disabled-color" } ], [ @@ -184663,31 +164926,13 @@ export const bootstrapTokens = [ 95026, null ], - [ - "delim-token", - "-", - 95027, - 95027, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95028, - 95028, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-disabled-bg", - 95029, + "--bs-list-group-disabled-bg", + 95027, 95053, { - "value": "bs-list-group-disabled-bg" + "value": "--bs-list-group-disabled-bg" } ], [ @@ -184714,31 +164959,13 @@ export const bootstrapTokens = [ 95059, null ], - [ - "delim-token", - "-", - 95060, - 95060, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95061, - 95061, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-color", - 95062, + "--bs-list-group-active-color", + 95060, 95087, { - "value": "bs-list-group-active-color" + "value": "--bs-list-group-active-color" } ], [ @@ -184765,31 +164992,13 @@ export const bootstrapTokens = [ 95093, null ], - [ - "delim-token", - "-", - 95094, - 95094, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95095, - 95095, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-bg", - 95096, + "--bs-list-group-active-bg", + 95094, 95118, { - "value": "bs-list-group-active-bg" + "value": "--bs-list-group-active-bg" } ], [ @@ -184816,31 +165025,13 @@ export const bootstrapTokens = [ 95127, null ], - [ - "delim-token", - "-", - 95128, - 95128, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95129, - 95129, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-border-color", - 95130, + "--bs-list-group-active-border-color", + 95128, 95162, { - "value": "bs-list-group-active-border-color" + "value": "--bs-list-group-active-border-color" } ], [ @@ -185022,31 +165213,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95256, - 95256, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95257, - 95257, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 95258, + "--bs-list-group-border-radius", + 95256, 95284, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -185428,31 +165601,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95504, - 95504, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95505, - 95505, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-color", - 95506, + "--bs-list-group-action-color", + 95504, 95531, { - "value": "bs-list-group-action-color" + "value": "--bs-list-group-action-color" } ], [ @@ -185641,31 +165796,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95633, - 95633, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95634, - 95634, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-hover-color", - 95635, + "--bs-list-group-action-hover-color", + 95633, 95666, { - "value": "bs-list-group-action-hover-color" + "value": "--bs-list-group-action-hover-color" } ], [ @@ -185739,31 +165876,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95711, - 95711, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95712, - 95712, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-hover-bg", - 95713, + "--bs-list-group-action-hover-bg", + 95711, 95741, { - "value": "bs-list-group-action-hover-bg" + "value": "--bs-list-group-action-hover-bg" } ], [ @@ -185846,31 +165965,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95785, - 95785, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95786, - 95786, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-active-color", - 95787, + "--bs-list-group-action-active-color", + 95785, 95819, { - "value": "bs-list-group-action-active-color" + "value": "--bs-list-group-action-active-color" } ], [ @@ -185912,31 +166013,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95843, - 95843, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95844, - 95844, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-action-active-bg", - 95845, + "--bs-list-group-action-active-bg", + 95843, 95874, { - "value": "bs-list-group-action-active-bg" + "value": "--bs-list-group-action-active-bg" } ], [ @@ -186067,31 +166150,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95938, - 95938, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95939, - 95939, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-item-padding-y", - 95940, + "--bs-list-group-item-padding-y", + 95938, 95967, { - "value": "bs-list-group-item-padding-y" + "value": "--bs-list-group-item-padding-y" } ], [ @@ -186117,31 +166182,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 95974, - 95974, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 95975, - 95975, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-item-padding-x", - 95976, + "--bs-list-group-item-padding-x", + 95974, 96003, { - "value": "bs-list-group-item-padding-x" + "value": "--bs-list-group-item-padding-x" } ], [ @@ -186183,31 +166230,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96016, - 96016, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96017, - 96017, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-color", - 96018, + "--bs-list-group-color", + 96016, 96036, { - "value": "bs-list-group-color" + "value": "--bs-list-group-color" } ], [ @@ -186281,31 +166310,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96081, - 96081, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96082, - 96082, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-bg", - 96083, + "--bs-list-group-bg", + 96081, 96098, { - "value": "bs-list-group-bg" + "value": "--bs-list-group-bg" } ], [ @@ -186347,31 +166358,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96112, - 96112, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96113, - 96113, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 96114, + "--bs-list-group-border-width", + 96112, 96139, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -186413,31 +166406,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96152, - 96152, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96153, - 96153, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-color", - 96154, + "--bs-list-group-border-color", + 96152, 96179, { - "value": "bs-list-group-border-color" + "value": "--bs-list-group-border-color" } ], [ @@ -186773,31 +166748,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96433, - 96433, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96434, - 96434, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-disabled-color", - 96435, + "--bs-list-group-disabled-color", + 96433, 96462, { - "value": "bs-list-group-disabled-color" + "value": "--bs-list-group-disabled-color" } ], [ @@ -186871,31 +166828,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96506, - 96506, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96507, - 96507, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-disabled-bg", - 96508, + "--bs-list-group-disabled-bg", + 96506, 96532, { - "value": "bs-list-group-disabled-bg" + "value": "--bs-list-group-disabled-bg" } ], [ @@ -187013,31 +166952,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96579, - 96579, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96580, - 96580, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-color", - 96581, + "--bs-list-group-active-color", + 96579, 96606, { - "value": "bs-list-group-active-color" + "value": "--bs-list-group-active-color" } ], [ @@ -187079,31 +167000,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96630, - 96630, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96631, - 96631, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-bg", - 96632, + "--bs-list-group-active-bg", + 96630, 96654, { - "value": "bs-list-group-active-bg" + "value": "--bs-list-group-active-bg" } ], [ @@ -187145,31 +167048,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96674, - 96674, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96675, - 96675, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-active-border-color", - 96676, + "--bs-list-group-active-border-color", + 96674, 96708, { - "value": "bs-list-group-active-border-color" + "value": "--bs-list-group-active-border-color" } ], [ @@ -187408,31 +167293,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96830, - 96830, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96831, - 96831, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 96832, + "--bs-list-group-border-width", + 96830, 96857, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -187481,31 +167348,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 96882, - 96882, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 96883, - 96883, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 96884, + "--bs-list-group-border-width", + 96882, 96909, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -187711,31 +167560,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97053, - 97053, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97054, - 97054, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 97055, + "--bs-list-group-border-radius", + 97053, 97081, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -187917,31 +167748,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97207, - 97207, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97208, - 97208, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 97209, + "--bs-list-group-border-radius", + 97207, 97235, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -188198,31 +168011,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97404, - 97404, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97405, - 97405, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 97406, + "--bs-list-group-border-width", + 97404, 97431, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -188436,31 +168231,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97544, - 97544, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97545, - 97545, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 97546, + "--bs-list-group-border-width", + 97544, 97571, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -188509,31 +168286,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97597, - 97597, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97598, - 97598, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 97599, + "--bs-list-group-border-width", + 97597, 97624, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -188803,31 +168562,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97799, - 97799, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97800, - 97800, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 97801, + "--bs-list-group-border-radius", + 97799, 97827, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -189009,31 +168750,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 97956, - 97956, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 97957, - 97957, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 97958, + "--bs-list-group-border-radius", + 97956, 97984, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -189290,31 +169013,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98159, - 98159, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98160, - 98160, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 98161, + "--bs-list-group-border-width", + 98159, 98186, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -189528,31 +169233,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98302, - 98302, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98303, - 98303, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 98304, + "--bs-list-group-border-width", + 98302, 98329, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -189601,31 +169288,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98355, - 98355, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98356, - 98356, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 98357, + "--bs-list-group-border-width", + 98355, 98382, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -189902,31 +169571,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98558, - 98558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98559, - 98559, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 98560, + "--bs-list-group-border-radius", + 98558, 98586, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -190108,31 +169759,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98715, - 98715, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98716, - 98716, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 98717, + "--bs-list-group-border-radius", + 98715, 98743, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -190389,31 +170022,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 98918, - 98918, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 98919, - 98919, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 98920, + "--bs-list-group-border-width", + 98918, 98945, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -190627,31 +170242,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99061, - 99061, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99062, - 99062, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 99063, + "--bs-list-group-border-width", + 99061, 99088, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -190700,31 +170297,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99114, - 99114, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99115, - 99115, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 99116, + "--bs-list-group-border-width", + 99114, 99141, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -191001,31 +170580,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99317, - 99317, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99318, - 99318, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 99319, + "--bs-list-group-border-radius", + 99317, 99345, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -191207,31 +170768,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99474, - 99474, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99475, - 99475, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 99476, + "--bs-list-group-border-radius", + 99474, 99502, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -191488,31 +171031,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99677, - 99677, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99678, - 99678, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 99679, + "--bs-list-group-border-width", + 99677, 99704, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -191726,31 +171251,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99820, - 99820, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99821, - 99821, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 99822, + "--bs-list-group-border-width", + 99820, 99847, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -191799,31 +171306,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 99873, - 99873, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 99874, - 99874, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 99875, + "--bs-list-group-border-width", + 99873, 99900, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -192100,31 +171589,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100077, - 100077, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100078, - 100078, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 100079, + "--bs-list-group-border-radius", + 100077, 100105, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -192306,31 +171777,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100234, - 100234, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100235, - 100235, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 100236, + "--bs-list-group-border-radius", + 100234, 100262, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -192587,31 +172040,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100437, - 100437, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100438, - 100438, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 100439, + "--bs-list-group-border-width", + 100437, 100464, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -192825,31 +172260,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100580, - 100580, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100581, - 100581, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 100582, + "--bs-list-group-border-width", + 100580, 100607, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -192898,31 +172315,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100633, - 100633, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100634, - 100634, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 100635, + "--bs-list-group-border-width", + 100633, 100660, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -193199,31 +172598,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100839, - 100839, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100840, - 100840, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 100841, + "--bs-list-group-border-radius", + 100839, 100867, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -193405,31 +172786,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 100997, - 100997, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 100998, - 100998, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-radius", - 100999, + "--bs-list-group-border-radius", + 100997, 101025, { - "value": "bs-list-group-border-radius" + "value": "--bs-list-group-border-radius" } ], [ @@ -193686,31 +173049,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 101202, - 101202, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 101203, - 101203, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 101204, + "--bs-list-group-border-width", + 101202, 101229, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -193924,31 +173269,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 101346, - 101346, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 101347, - 101347, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 101348, + "--bs-list-group-border-width", + 101346, 101373, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -193997,31 +173324,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 101399, - 101399, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 101400, - 101400, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 101401, + "--bs-list-group-border-width", + 101399, 101426, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -194214,31 +173523,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 101520, - 101520, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 101521, - 101521, - { - "value": "-" - } - ], [ "ident-token", - "bs-list-group-border-width", - 101522, + "--bs-list-group-border-width", + 101520, 101547, { - "value": "bs-list-group-border-width" + "value": "--bs-list-group-border-width" } ], [ @@ -198809,22 +178100,13 @@ export const bootstrapTokens = [ 104875, null ], - [ - "delim-token", - "-", - 104876, - 104876, - { - "value": "-" - } - ], [ "ident-token", - "webkit-user-select", - 104877, + "-webkit-user-select", + 104876, 104894, { - "value": "webkit-user-select" + "value": "-webkit-user-select" } ], [ @@ -198850,22 +178132,13 @@ export const bootstrapTokens = [ 104900, null ], - [ - "delim-token", - "-", - 104901, - 104901, - { - "value": "-" - } - ], [ "ident-token", - "moz-user-select", - 104902, + "-moz-user-select", + 104901, 104916, { - "value": "moz-user-select" + "value": "-moz-user-select" } ], [ @@ -199119,31 +178392,13 @@ export const bootstrapTokens = [ 105025, null ], - [ - "delim-token", - "-", - 105026, - 105026, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105027, - 105027, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-zindex", - 105028, + "--bs-toast-zindex", + 105026, 105042, { - "value": "bs-toast-zindex" + "value": "--bs-toast-zindex" } ], [ @@ -199170,31 +178425,13 @@ export const bootstrapTokens = [ 105048, null ], - [ - "delim-token", - "-", - 105049, - 105049, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105050, - 105050, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-x", - 105051, + "--bs-toast-padding-x", + 105049, 105068, { - "value": "bs-toast-padding-x" + "value": "--bs-toast-padding-x" } ], [ @@ -199222,31 +178459,13 @@ export const bootstrapTokens = [ 105077, null ], - [ - "delim-token", - "-", - 105078, - 105078, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105079, - 105079, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-y", - 105080, + "--bs-toast-padding-y", + 105078, 105097, { - "value": "bs-toast-padding-y" + "value": "--bs-toast-padding-y" } ], [ @@ -199274,31 +178493,13 @@ export const bootstrapTokens = [ 105105, null ], - [ - "delim-token", - "-", - 105106, - 105106, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105107, - 105107, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-spacing", - 105108, + "--bs-toast-spacing", + 105106, 105123, { - "value": "bs-toast-spacing" + "value": "--bs-toast-spacing" } ], [ @@ -199326,31 +178527,13 @@ export const bootstrapTokens = [ 105131, null ], - [ - "delim-token", - "-", - 105132, - 105132, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105133, - 105133, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-max-width", - 105134, + "--bs-toast-max-width", + 105132, 105151, { - "value": "bs-toast-max-width" + "value": "--bs-toast-max-width" } ], [ @@ -199378,31 +178561,13 @@ export const bootstrapTokens = [ 105158, null ], - [ - "delim-token", - "-", - 105159, - 105159, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105160, - 105160, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-font-size", - 105161, + "--bs-toast-font-size", + 105159, 105178, { - "value": "bs-toast-font-size" + "value": "--bs-toast-font-size" } ], [ @@ -199430,31 +178595,13 @@ export const bootstrapTokens = [ 105188, null ], - [ - "delim-token", - "-", - 105189, - 105189, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105190, - 105190, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-color", - 105191, + "--bs-toast-color", + 105189, 105204, { - "value": "bs-toast-color" + "value": "--bs-toast-color" } ], [ @@ -199478,31 +178625,13 @@ export const bootstrapTokens = [ 105207, null ], - [ - "delim-token", - "-", - 105208, - 105208, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105209, - 105209, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-bg", - 105210, + "--bs-toast-bg", + 105208, 105220, { - "value": "bs-toast-bg" + "value": "--bs-toast-bg" } ], [ @@ -199617,31 +178746,13 @@ export const bootstrapTokens = [ 105247, null ], - [ - "delim-token", - "-", - 105248, - 105248, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105249, - 105249, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-width", - 105250, + "--bs-toast-border-width", + 105248, 105270, { - "value": "bs-toast-border-width" + "value": "--bs-toast-border-width" } ], [ @@ -199669,31 +178780,13 @@ export const bootstrapTokens = [ 105275, null ], - [ - "delim-token", - "-", - 105276, - 105276, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105277, - 105277, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-color", - 105278, + "--bs-toast-border-color", + 105276, 105298, { - "value": "bs-toast-border-color" + "value": "--bs-toast-border-color" } ], [ @@ -199712,31 +178805,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105304, - 105304, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105305, - 105305, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 105306, + "--bs-border-color-translucent", + 105304, 105332, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -199753,31 +178828,13 @@ export const bootstrapTokens = [ 105334, null ], - [ - "delim-token", - "-", - 105335, - 105335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105336, - 105336, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-radius", - 105337, + "--bs-toast-border-radius", + 105335, 105358, { - "value": "bs-toast-border-radius" + "value": "--bs-toast-border-radius" } ], [ @@ -199805,31 +178862,13 @@ export const bootstrapTokens = [ 105368, null ], - [ - "delim-token", - "-", - 105369, - 105369, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105370, - 105370, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-box-shadow", - 105371, + "--bs-toast-box-shadow", + 105369, 105389, { - "value": "bs-toast-box-shadow" + "value": "--bs-toast-box-shadow" } ], [ @@ -199997,31 +179036,13 @@ export const bootstrapTokens = [ 105424, null ], - [ - "delim-token", - "-", - 105425, - 105425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105426, - 105426, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-color", - 105427, + "--bs-toast-header-color", + 105425, 105447, { - "value": "bs-toast-header-color" + "value": "--bs-toast-header-color" } ], [ @@ -200048,31 +179069,13 @@ export const bootstrapTokens = [ 105456, null ], - [ - "delim-token", - "-", - 105457, - 105457, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105458, - 105458, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-bg", - 105459, + "--bs-toast-header-bg", + 105457, 105476, { - "value": "bs-toast-header-bg" + "value": "--bs-toast-header-bg" } ], [ @@ -200187,31 +179190,13 @@ export const bootstrapTokens = [ 105503, null ], - [ - "delim-token", - "-", - 105504, - 105504, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105505, - 105505, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-border-color", - 105506, + "--bs-toast-header-border-color", + 105504, 105533, { - "value": "bs-toast-header-border-color" + "value": "--bs-toast-header-border-color" } ], [ @@ -200351,31 +179336,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105565, - 105565, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105566, - 105566, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-max-width", - 105567, + "--bs-toast-max-width", + 105565, 105584, { - "value": "bs-toast-max-width" + "value": "--bs-toast-max-width" } ], [ @@ -200449,31 +179416,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105616, - 105616, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105617, - 105617, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-font-size", - 105618, + "--bs-toast-font-size", + 105616, 105635, { - "value": "bs-toast-font-size" + "value": "--bs-toast-font-size" } ], [ @@ -200515,31 +179464,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105648, - 105648, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105649, - 105649, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-color", - 105650, + "--bs-toast-color", + 105648, 105663, { - "value": "bs-toast-color" + "value": "--bs-toast-color" } ], [ @@ -200613,31 +179544,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105707, - 105707, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105708, - 105708, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-bg", - 105709, + "--bs-toast-bg", + 105707, 105719, { - "value": "bs-toast-bg" + "value": "--bs-toast-bg" } ], [ @@ -200711,31 +179624,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105761, - 105761, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105762, - 105762, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-width", - 105763, + "--bs-toast-border-width", + 105761, 105783, { - "value": "bs-toast-border-width" + "value": "--bs-toast-border-width" } ], [ @@ -200777,31 +179672,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105796, - 105796, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105797, - 105797, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-color", - 105798, + "--bs-toast-border-color", + 105796, 105818, { - "value": "bs-toast-border-color" + "value": "--bs-toast-border-color" } ], [ @@ -200843,31 +179720,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105836, - 105836, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105837, - 105837, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-box-shadow", - 105838, + "--bs-toast-box-shadow", + 105836, 105856, { - "value": "bs-toast-box-shadow" + "value": "--bs-toast-box-shadow" } ], [ @@ -200909,31 +179768,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 105877, - 105877, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 105878, - 105878, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-radius", - 105879, + "--bs-toast-border-radius", + 105877, 105900, { - "value": "bs-toast-border-radius" + "value": "--bs-toast-border-radius" } ], [ @@ -201206,31 +180047,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106006, - 106006, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106007, - 106007, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-zindex", - 106008, + "--bs-toast-zindex", + 106006, 106022, { - "value": "bs-toast-zindex" + "value": "--bs-toast-zindex" } ], [ @@ -201263,22 +180086,13 @@ export const bootstrapTokens = [ 106030, null ], - [ - "delim-token", - "-", - 106031, - 106031, - { - "value": "-" - } - ], [ "ident-token", - "webkit-max-content", - 106032, + "-webkit-max-content", + 106031, 106049, { - "value": "webkit-max-content" + "value": "-webkit-max-content" } ], [ @@ -201304,22 +180118,13 @@ export const bootstrapTokens = [ 106056, null ], - [ - "delim-token", - "-", - 106057, - 106057, - { - "value": "-" - } - ], [ "ident-token", - "moz-max-content", - 106058, + "-moz-max-content", + 106057, 106072, { - "value": "moz-max-content" + "value": "-moz-max-content" } ], [ @@ -201523,31 +180328,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106180, - 106180, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106181, - 106181, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-spacing", - 106182, + "--bs-toast-spacing", + 106180, 106197, { - "value": "bs-toast-spacing" + "value": "--bs-toast-spacing" } ], [ @@ -201678,31 +180465,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106258, - 106258, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106259, - 106259, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-y", - 106260, + "--bs-toast-padding-y", + 106258, 106277, { - "value": "bs-toast-padding-y" + "value": "--bs-toast-padding-y" } ], [ @@ -201728,31 +180497,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106284, - 106284, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106285, - 106285, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-x", - 106286, + "--bs-toast-padding-x", + 106284, 106303, { - "value": "bs-toast-padding-x" + "value": "--bs-toast-padding-x" } ], [ @@ -201794,31 +180545,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106316, - 106316, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106317, - 106317, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-color", - 106318, + "--bs-toast-header-color", + 106316, 106338, { - "value": "bs-toast-header-color" + "value": "--bs-toast-header-color" } ], [ @@ -201860,31 +180593,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106362, - 106362, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106363, - 106363, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-bg", - 106364, + "--bs-toast-header-bg", + 106362, 106381, { - "value": "bs-toast-header-bg" + "value": "--bs-toast-header-bg" } ], [ @@ -201958,31 +180673,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106430, - 106430, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106431, - 106431, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-width", - 106432, + "--bs-toast-border-width", + 106430, 106452, { - "value": "bs-toast-border-width" + "value": "--bs-toast-border-width" } ], [ @@ -202024,31 +180721,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106465, - 106465, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106466, - 106466, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-header-border-color", - 106467, + "--bs-toast-header-border-color", + 106465, 106494, { - "value": "bs-toast-header-border-color" + "value": "--bs-toast-header-border-color" } ], [ @@ -202099,31 +180778,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106529, - 106529, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106530, - 106530, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-radius", - 106531, + "--bs-toast-border-radius", + 106529, 106552, { - "value": "bs-toast-border-radius" + "value": "--bs-toast-border-radius" } ], [ @@ -202165,31 +180826,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106561, - 106561, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106562, - 106562, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-width", - 106563, + "--bs-toast-border-width", + 106561, 106583, { - "value": "bs-toast-border-width" + "value": "--bs-toast-border-width" } ], [ @@ -202247,31 +180890,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106620, - 106620, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106621, - 106621, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-radius", - 106622, + "--bs-toast-border-radius", + 106620, 106643, { - "value": "bs-toast-border-radius" + "value": "--bs-toast-border-radius" } ], [ @@ -202313,31 +180938,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106652, - 106652, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106653, - 106653, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-border-width", - 106654, + "--bs-toast-border-width", + 106652, 106674, { - "value": "bs-toast-border-width" + "value": "--bs-toast-border-width" } ], [ @@ -202478,31 +181085,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106731, - 106731, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106732, - 106732, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-x", - 106733, + "--bs-toast-padding-x", + 106731, 106750, { - "value": "bs-toast-padding-x" + "value": "--bs-toast-padding-x" } ], [ @@ -202551,31 +181140,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106770, - 106770, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106771, - 106771, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-x", - 106772, + "--bs-toast-padding-x", + 106770, 106789, { - "value": "bs-toast-padding-x" + "value": "--bs-toast-padding-x" } ], [ @@ -202642,31 +181213,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 106816, - 106816, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106817, - 106817, - { - "value": "-" - } - ], [ "ident-token", - "bs-toast-padding-x", - 106818, + "--bs-toast-padding-x", + 106816, 106835, { - "value": "bs-toast-padding-x" + "value": "--bs-toast-padding-x" } ], [ @@ -202740,31 +181293,13 @@ export const bootstrapTokens = [ 106865, null ], - [ - "delim-token", - "-", - 106866, - 106866, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106867, - 106867, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-zindex", - 106868, + "--bs-modal-zindex", + 106866, 106882, { - "value": "bs-modal-zindex" + "value": "--bs-modal-zindex" } ], [ @@ -202791,31 +181326,13 @@ export const bootstrapTokens = [ 106888, null ], - [ - "delim-token", - "-", - 106889, - 106889, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106890, - 106890, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-width", - 106891, + "--bs-modal-width", + 106889, 106904, { - "value": "bs-modal-width" + "value": "--bs-modal-width" } ], [ @@ -202843,31 +181360,13 @@ export const bootstrapTokens = [ 106911, null ], - [ - "delim-token", - "-", - 106912, - 106912, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106913, - 106913, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-padding", - 106914, + "--bs-modal-padding", + 106912, 106929, { - "value": "bs-modal-padding" + "value": "--bs-modal-padding" } ], [ @@ -202895,31 +181394,13 @@ export const bootstrapTokens = [ 106935, null ], - [ - "delim-token", - "-", - 106936, - 106936, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106937, - 106937, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-margin", - 106938, + "--bs-modal-margin", + 106936, 106952, { - "value": "bs-modal-margin" + "value": "--bs-modal-margin" } ], [ @@ -202947,31 +181428,13 @@ export const bootstrapTokens = [ 106960, null ], - [ - "delim-token", - "-", - 106961, - 106961, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106962, - 106962, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-color", - 106963, + "--bs-modal-color", + 106961, 106976, { - "value": "bs-modal-color" + "value": "--bs-modal-color" } ], [ @@ -202995,31 +181458,13 @@ export const bootstrapTokens = [ 106979, null ], - [ - "delim-token", - "-", - 106980, - 106980, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 106981, - 106981, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-bg", - 106982, + "--bs-modal-bg", + 106980, 106992, { - "value": "bs-modal-bg" + "value": "--bs-modal-bg" } ], [ @@ -203046,31 +181491,13 @@ export const bootstrapTokens = [ 106998, null ], - [ - "delim-token", - "-", - 106999, - 106999, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107000, - 107000, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-color", - 107001, + "--bs-modal-border-color", + 106999, 107021, { - "value": "bs-modal-border-color" + "value": "--bs-modal-border-color" } ], [ @@ -203089,31 +181516,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 107027, - 107027, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107028, - 107028, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 107029, + "--bs-border-color-translucent", + 107027, 107055, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -203130,31 +181539,13 @@ export const bootstrapTokens = [ 107057, null ], - [ - "delim-token", - "-", - 107058, - 107058, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107059, - 107059, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-width", - 107060, + "--bs-modal-border-width", + 107058, 107080, { - "value": "bs-modal-border-width" + "value": "--bs-modal-border-width" } ], [ @@ -203182,31 +181573,13 @@ export const bootstrapTokens = [ 107085, null ], - [ - "delim-token", - "-", - 107086, - 107086, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107087, - 107087, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-radius", - 107088, + "--bs-modal-border-radius", + 107086, 107109, { - "value": "bs-modal-border-radius" + "value": "--bs-modal-border-radius" } ], [ @@ -203234,31 +181607,13 @@ export const bootstrapTokens = [ 107117, null ], - [ - "delim-token", - "-", - 107118, - 107118, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107119, - 107119, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-box-shadow", - 107120, + "--bs-modal-box-shadow", + 107118, 107138, { - "value": "bs-modal-box-shadow" + "value": "--bs-modal-box-shadow" } ], [ @@ -203426,31 +181781,13 @@ export const bootstrapTokens = [ 107179, null ], - [ - "delim-token", - "-", - 107180, - 107180, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107181, - 107181, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-inner-border-radius", - 107182, + "--bs-modal-inner-border-radius", + 107180, 107209, { - "value": "bs-modal-inner-border-radius" + "value": "--bs-modal-inner-border-radius" } ], [ @@ -203528,31 +181865,13 @@ export const bootstrapTokens = [ 107229, null ], - [ - "delim-token", - "-", - 107230, - 107230, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107231, - 107231, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-x", - 107232, + "--bs-modal-header-padding-x", + 107230, 107256, { - "value": "bs-modal-header-padding-x" + "value": "--bs-modal-header-padding-x" } ], [ @@ -203580,31 +181899,13 @@ export const bootstrapTokens = [ 107262, null ], - [ - "delim-token", - "-", - 107263, - 107263, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107264, - 107264, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-y", - 107265, + "--bs-modal-header-padding-y", + 107263, 107289, { - "value": "bs-modal-header-padding-y" + "value": "--bs-modal-header-padding-y" } ], [ @@ -203632,31 +181933,13 @@ export const bootstrapTokens = [ 107295, null ], - [ - "delim-token", - "-", - 107296, - 107296, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107297, - 107297, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding", - 107298, + "--bs-modal-header-padding", + 107296, 107320, { - "value": "bs-modal-header-padding" + "value": "--bs-modal-header-padding" } ], [ @@ -203702,31 +181985,13 @@ export const bootstrapTokens = [ 107331, null ], - [ - "delim-token", - "-", - 107332, - 107332, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107333, - 107333, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-border-color", - 107334, + "--bs-modal-header-border-color", + 107332, 107361, { - "value": "bs-modal-header-border-color" + "value": "--bs-modal-header-border-color" } ], [ @@ -203745,31 +182010,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 107367, - 107367, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107368, - 107368, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 107369, + "--bs-border-color", + 107367, 107383, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -203786,31 +182033,13 @@ export const bootstrapTokens = [ 107385, null ], - [ - "delim-token", - "-", - 107386, - 107386, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107387, - 107387, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-border-width", - 107388, + "--bs-modal-header-border-width", + 107386, 107415, { - "value": "bs-modal-header-border-width" + "value": "--bs-modal-header-border-width" } ], [ @@ -203838,31 +182067,13 @@ export const bootstrapTokens = [ 107420, null ], - [ - "delim-token", - "-", - 107421, - 107421, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107422, - 107422, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-title-line-height", - 107423, + "--bs-modal-title-line-height", + 107421, 107448, { - "value": "bs-modal-title-line-height" + "value": "--bs-modal-title-line-height" } ], [ @@ -203889,31 +182100,13 @@ export const bootstrapTokens = [ 107453, null ], - [ - "delim-token", - "-", - 107454, - 107454, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107455, - 107455, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-gap", - 107456, + "--bs-modal-footer-gap", + 107454, 107474, { - "value": "bs-modal-footer-gap" + "value": "--bs-modal-footer-gap" } ], [ @@ -203941,31 +182134,13 @@ export const bootstrapTokens = [ 107482, null ], - [ - "delim-token", - "-", - 107483, - 107483, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107484, - 107484, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-bg", - 107485, + "--bs-modal-footer-bg", + 107483, 107502, { - "value": "bs-modal-footer-bg" + "value": "--bs-modal-footer-bg" } ], [ @@ -203989,31 +182164,13 @@ export const bootstrapTokens = [ 107505, null ], - [ - "delim-token", - "-", - 107506, - 107506, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107507, - 107507, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-border-color", - 107508, + "--bs-modal-footer-border-color", + 107506, 107535, { - "value": "bs-modal-footer-border-color" + "value": "--bs-modal-footer-border-color" } ], [ @@ -204032,31 +182189,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 107541, - 107541, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107542, - 107542, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 107543, + "--bs-border-color", + 107541, 107557, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -204073,31 +182212,13 @@ export const bootstrapTokens = [ 107559, null ], - [ - "delim-token", - "-", - 107560, - 107560, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107561, - 107561, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-border-width", - 107562, + "--bs-modal-footer-border-width", + 107560, 107589, { - "value": "bs-modal-footer-border-width" + "value": "--bs-modal-footer-border-width" } ], [ @@ -204248,31 +182369,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 107635, - 107635, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107636, - 107636, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-zindex", - 107637, + "--bs-modal-zindex", + 107635, 107651, { - "value": "bs-modal-zindex" + "value": "--bs-modal-zindex" } ], [ @@ -204596,31 +182699,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 107788, - 107788, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 107789, - 107789, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-margin", - 107790, + "--bs-modal-margin", + 107788, 107804, { - "value": "bs-modal-margin" + "value": "--bs-modal-margin" } ], [ @@ -205347,31 +183432,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108143, - 108143, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108144, - 108144, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-margin", - 108145, + "--bs-modal-margin", + 108143, 108159, { - "value": "bs-modal-margin" + "value": "--bs-modal-margin" } ], [ @@ -205779,31 +183846,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108374, - 108374, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108375, - 108375, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-margin", - 108376, + "--bs-modal-margin", + 108374, 108390, { - "value": "bs-modal-margin" + "value": "--bs-modal-margin" } ], [ @@ -206038,31 +184087,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108487, - 108487, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108488, - 108488, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-color", - 108489, + "--bs-modal-color", + 108487, 108502, { - "value": "bs-modal-color" + "value": "--bs-modal-color" } ], [ @@ -206136,31 +184167,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108546, - 108546, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108547, - 108547, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-bg", - 108548, + "--bs-modal-bg", + 108546, 108558, { - "value": "bs-modal-bg" + "value": "--bs-modal-bg" } ], [ @@ -206234,31 +184247,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108600, - 108600, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108601, - 108601, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-width", - 108602, + "--bs-modal-border-width", + 108600, 108622, { - "value": "bs-modal-border-width" + "value": "--bs-modal-border-width" } ], [ @@ -206300,31 +184295,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108635, - 108635, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108636, - 108636, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-color", - 108637, + "--bs-modal-border-color", + 108635, 108657, { - "value": "bs-modal-border-color" + "value": "--bs-modal-border-color" } ], [ @@ -206366,31 +184343,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108678, - 108678, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108679, - 108679, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-border-radius", - 108680, + "--bs-modal-border-radius", + 108678, 108701, { - "value": "bs-modal-border-radius" + "value": "--bs-modal-border-radius" } ], [ @@ -206465,31 +184424,13 @@ export const bootstrapTokens = [ 108729, null ], - [ - "delim-token", - "-", - 108730, - 108730, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108731, - 108731, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-zindex", - 108732, + "--bs-backdrop-zindex", + 108730, 108749, { - "value": "bs-backdrop-zindex" + "value": "--bs-backdrop-zindex" } ], [ @@ -206516,31 +184457,13 @@ export const bootstrapTokens = [ 108755, null ], - [ - "delim-token", - "-", - 108756, - 108756, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108757, - 108757, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-bg", - 108758, + "--bs-backdrop-bg", + 108756, 108771, { - "value": "bs-backdrop-bg" + "value": "--bs-backdrop-bg" } ], [ @@ -206567,31 +184490,13 @@ export const bootstrapTokens = [ 108777, null ], - [ - "delim-token", - "-", - 108778, - 108778, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108779, - 108779, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-opacity", - 108780, + "--bs-backdrop-opacity", + 108778, 108798, { - "value": "bs-backdrop-opacity" + "value": "--bs-backdrop-opacity" } ], [ @@ -206741,31 +184646,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108844, - 108844, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108845, - 108845, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-zindex", - 108846, + "--bs-backdrop-zindex", + 108844, 108863, { - "value": "bs-backdrop-zindex" + "value": "--bs-backdrop-zindex" } ], [ @@ -206875,31 +184762,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108912, - 108912, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108913, - 108913, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-bg", - 108914, + "--bs-backdrop-bg", + 108912, 108927, { - "value": "bs-backdrop-bg" + "value": "--bs-backdrop-bg" } ], [ @@ -207060,31 +184929,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 108994, - 108994, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 108995, - 108995, - { - "value": "-" - } - ], [ "ident-token", - "bs-backdrop-opacity", - 108996, + "--bs-backdrop-opacity", + 108994, 109014, { - "value": "bs-backdrop-opacity" + "value": "--bs-backdrop-opacity" } ], [ @@ -207280,31 +185131,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109119, - 109119, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109120, - 109120, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding", - 109121, + "--bs-modal-header-padding", + 109119, 109143, { - "value": "bs-modal-header-padding" + "value": "--bs-modal-header-padding" } ], [ @@ -207346,31 +185179,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109164, - 109164, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109165, - 109165, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-border-width", - 109166, + "--bs-modal-header-border-width", + 109164, 109193, { - "value": "bs-modal-header-border-width" + "value": "--bs-modal-header-border-width" } ], [ @@ -207412,31 +185227,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109206, - 109206, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109207, - 109207, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-border-color", - 109208, + "--bs-modal-header-border-color", + 109206, 109235, { - "value": "bs-modal-header-border-color" + "value": "--bs-modal-header-border-color" } ], [ @@ -207478,31 +185275,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109265, - 109265, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109266, - 109266, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-inner-border-radius", - 109267, + "--bs-modal-inner-border-radius", + 109265, 109294, { - "value": "bs-modal-inner-border-radius" + "value": "--bs-modal-inner-border-radius" } ], [ @@ -207544,31 +185323,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109325, - 109325, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109326, - 109326, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-inner-border-radius", - 109327, + "--bs-modal-inner-border-radius", + 109325, 109354, { - "value": "bs-modal-inner-border-radius" + "value": "--bs-modal-inner-border-radius" } ], [ @@ -207669,31 +185430,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109399, - 109399, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109400, - 109400, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-y", - 109401, + "--bs-modal-header-padding-y", + 109399, 109425, { - "value": "bs-modal-header-padding-y" + "value": "--bs-modal-header-padding-y" } ], [ @@ -207768,31 +185511,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109443, - 109443, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109444, - 109444, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-x", - 109445, + "--bs-modal-header-padding-x", + 109443, 109469, { - "value": "bs-modal-header-padding-x" + "value": "--bs-modal-header-padding-x" } ], [ @@ -207916,31 +185641,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109500, - 109500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109501, - 109501, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-y", - 109502, + "--bs-modal-header-padding-y", + 109500, 109526, { - "value": "bs-modal-header-padding-y" + "value": "--bs-modal-header-padding-y" } ], [ @@ -208015,31 +185722,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109545, - 109545, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109546, - 109546, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-x", - 109547, + "--bs-modal-header-padding-x", + 109545, 109571, { - "value": "bs-modal-header-padding-x" + "value": "--bs-modal-header-padding-x" } ], [ @@ -208114,31 +185803,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109590, - 109590, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109591, - 109591, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-header-padding-y", - 109592, + "--bs-modal-header-padding-y", + 109590, 109616, { - "value": "bs-modal-header-padding-y" + "value": "--bs-modal-header-padding-y" } ], [ @@ -208261,31 +185932,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109670, - 109670, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109671, - 109671, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-title-line-height", - 109672, + "--bs-modal-title-line-height", + 109670, 109697, { - "value": "bs-modal-title-line-height" + "value": "--bs-modal-title-line-height" } ], [ @@ -208450,31 +186103,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109756, - 109756, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109757, - 109757, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-padding", - 109758, + "--bs-modal-padding", + 109756, 109773, { - "value": "bs-modal-padding" + "value": "--bs-modal-padding" } ], [ @@ -208711,31 +186346,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109893, - 109893, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109894, - 109894, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-padding", - 109895, + "--bs-modal-padding", + 109893, 109910, { - "value": "bs-modal-padding" + "value": "--bs-modal-padding" } ], [ @@ -208777,31 +186394,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109919, - 109919, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109920, - 109920, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-gap", - 109921, + "--bs-modal-footer-gap", + 109919, 109939, { - "value": "bs-modal-footer-gap" + "value": "--bs-modal-footer-gap" } ], [ @@ -208883,31 +186482,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 109969, - 109969, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 109970, - 109970, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-bg", - 109971, + "--bs-modal-footer-bg", + 109969, 109988, { - "value": "bs-modal-footer-bg" + "value": "--bs-modal-footer-bg" } ], [ @@ -208949,31 +186530,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110006, - 110006, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110007, - 110007, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-border-width", - 110008, + "--bs-modal-footer-border-width", + 110006, 110035, { - "value": "bs-modal-footer-border-width" + "value": "--bs-modal-footer-border-width" } ], [ @@ -209015,31 +186578,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110048, - 110048, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110049, - 110049, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-border-color", - 110050, + "--bs-modal-footer-border-color", + 110048, 110077, { - "value": "bs-modal-footer-border-color" + "value": "--bs-modal-footer-border-color" } ], [ @@ -209081,31 +186626,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110111, - 110111, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110112, - 110112, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-inner-border-radius", - 110113, + "--bs-modal-inner-border-radius", + 110111, 110140, { - "value": "bs-modal-inner-border-radius" + "value": "--bs-modal-inner-border-radius" } ], [ @@ -209147,31 +186674,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110173, - 110173, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110174, - 110174, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-inner-border-radius", - 110175, + "--bs-modal-inner-border-radius", + 110173, 110202, { - "value": "bs-modal-inner-border-radius" + "value": "--bs-modal-inner-border-radius" } ], [ @@ -209265,31 +186774,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110237, - 110237, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110238, - 110238, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-footer-gap", - 110239, + "--bs-modal-footer-gap", + 110237, 110257, { - "value": "bs-modal-footer-gap" + "value": "--bs-modal-footer-gap" } ], [ @@ -209435,31 +186926,13 @@ export const bootstrapTokens = [ 110297, null ], - [ - "delim-token", - "-", - 110298, - 110298, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110299, - 110299, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-margin", - 110300, + "--bs-modal-margin", + 110298, 110314, { - "value": "bs-modal-margin" + "value": "--bs-modal-margin" } ], [ @@ -209487,31 +186960,13 @@ export const bootstrapTokens = [ 110323, null ], - [ - "delim-token", - "-", - 110324, - 110324, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110325, - 110325, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-box-shadow", - 110326, + "--bs-modal-box-shadow", + 110324, 110344, { - "value": "bs-modal-box-shadow" + "value": "--bs-modal-box-shadow" } ], [ @@ -209729,31 +187184,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 110408, - 110408, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110409, - 110409, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-width", - 110410, + "--bs-modal-width", + 110408, 110423, { - "value": "bs-modal-width" + "value": "--bs-modal-width" } ], [ @@ -209859,31 +187296,13 @@ export const bootstrapTokens = [ 110470, null ], - [ - "delim-token", - "-", - 110471, - 110471, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110472, - 110472, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-width", - 110473, + "--bs-modal-width", + 110471, 110486, { - "value": "bs-modal-width" + "value": "--bs-modal-width" } ], [ @@ -210032,31 +187451,13 @@ export const bootstrapTokens = [ 110539, null ], - [ - "delim-token", - "-", - 110540, - 110540, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110541, - 110541, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-width", - 110542, + "--bs-modal-width", + 110540, 110555, { - "value": "bs-modal-width" + "value": "--bs-modal-width" } ], [ @@ -210180,31 +187581,13 @@ export const bootstrapTokens = [ 110599, null ], - [ - "delim-token", - "-", - 110600, - 110600, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 110601, - 110601, - { - "value": "-" - } - ], [ "ident-token", - "bs-modal-width", - 110602, + "--bs-modal-width", + 110600, 110615, { - "value": "bs-modal-width" + "value": "--bs-modal-width" } ], [ @@ -213733,31 +191116,13 @@ export const bootstrapTokens = [ 112557, null ], - [ - "delim-token", - "-", - 112558, - 112558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112559, - 112559, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-zindex", - 112560, + "--bs-tooltip-zindex", + 112558, 112576, { - "value": "bs-tooltip-zindex" + "value": "--bs-tooltip-zindex" } ], [ @@ -213784,31 +191149,13 @@ export const bootstrapTokens = [ 112582, null ], - [ - "delim-token", - "-", - 112583, - 112583, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112584, - 112584, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-max-width", - 112585, + "--bs-tooltip-max-width", + 112583, 112604, { - "value": "bs-tooltip-max-width" + "value": "--bs-tooltip-max-width" } ], [ @@ -213836,31 +191183,13 @@ export const bootstrapTokens = [ 112611, null ], - [ - "delim-token", - "-", - 112612, - 112612, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112613, - 112613, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-padding-x", - 112614, + "--bs-tooltip-padding-x", + 112612, 112633, { - "value": "bs-tooltip-padding-x" + "value": "--bs-tooltip-padding-x" } ], [ @@ -213888,31 +191217,13 @@ export const bootstrapTokens = [ 112641, null ], - [ - "delim-token", - "-", - 112642, - 112642, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112643, - 112643, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-padding-y", - 112644, + "--bs-tooltip-padding-y", + 112642, 112663, { - "value": "bs-tooltip-padding-y" + "value": "--bs-tooltip-padding-y" } ], [ @@ -213940,31 +191251,13 @@ export const bootstrapTokens = [ 112672, null ], - [ - "delim-token", - "-", - 112673, - 112673, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112674, - 112674, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-margin", - 112675, + "--bs-tooltip-margin", + 112673, 112691, { - "value": "bs-tooltip-margin" + "value": "--bs-tooltip-margin" } ], [ @@ -213988,31 +191281,13 @@ export const bootstrapTokens = [ 112694, null ], - [ - "delim-token", - "-", - 112695, - 112695, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112696, - 112696, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-font-size", - 112697, + "--bs-tooltip-font-size", + 112695, 112716, { - "value": "bs-tooltip-font-size" + "value": "--bs-tooltip-font-size" } ], [ @@ -214040,31 +191315,13 @@ export const bootstrapTokens = [ 112726, null ], - [ - "delim-token", - "-", - 112727, - 112727, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112728, - 112728, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-color", - 112729, + "--bs-tooltip-color", + 112727, 112744, { - "value": "bs-tooltip-color" + "value": "--bs-tooltip-color" } ], [ @@ -214091,31 +191348,13 @@ export const bootstrapTokens = [ 112750, null ], - [ - "delim-token", - "-", - 112751, - 112751, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112752, - 112752, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 112753, + "--bs-tooltip-bg", + 112751, 112765, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -214142,31 +191381,13 @@ export const bootstrapTokens = [ 112771, null ], - [ - "delim-token", - "-", - 112772, - 112772, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112773, - 112773, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-border-radius", - 112774, + "--bs-tooltip-border-radius", + 112772, 112797, { - "value": "bs-tooltip-border-radius" + "value": "--bs-tooltip-border-radius" } ], [ @@ -214194,31 +191415,13 @@ export const bootstrapTokens = [ 112807, null ], - [ - "delim-token", - "-", - 112808, - 112808, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112809, - 112809, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-opacity", - 112810, + "--bs-tooltip-opacity", + 112808, 112827, { - "value": "bs-tooltip-opacity" + "value": "--bs-tooltip-opacity" } ], [ @@ -214245,31 +191448,13 @@ export const bootstrapTokens = [ 112832, null ], - [ - "delim-token", - "-", - 112833, - 112833, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112834, - 112834, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 112835, + "--bs-tooltip-arrow-width", + 112833, 112856, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -214297,31 +191482,13 @@ export const bootstrapTokens = [ 112864, null ], - [ - "delim-token", - "-", - 112865, - 112865, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112866, - 112866, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 112867, + "--bs-tooltip-arrow-height", + 112865, 112889, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -214374,31 +191541,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 112910, - 112910, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112911, - 112911, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-zindex", - 112912, + "--bs-tooltip-zindex", + 112910, 112928, { - "value": "bs-tooltip-zindex" + "value": "--bs-tooltip-zindex" } ], [ @@ -214472,31 +191621,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 112957, - 112957, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112958, - 112958, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 112959, + "--bs-tooltip-arrow-height", + 112957, 112981, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -214538,31 +191669,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 112995, - 112995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 112996, - 112996, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-margin", - 112997, + "--bs-tooltip-margin", + 112995, 113013, { - "value": "bs-tooltip-margin" + "value": "--bs-tooltip-margin" } ], [ @@ -214604,31 +191717,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113032, - 113032, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113033, - 113033, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-sans-serif", - 113034, + "--bs-font-sans-serif", + 113032, 113051, { - "value": "bs-font-sans-serif" + "value": "--bs-font-sans-serif" } ], [ @@ -215088,31 +192183,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113304, - 113304, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113305, - 113305, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-font-size", - 113306, + "--bs-tooltip-font-size", + 113304, 113325, { - "value": "bs-tooltip-font-size" + "value": "--bs-tooltip-font-size" } ], [ @@ -215262,31 +192339,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113385, - 113385, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113386, - 113386, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-opacity", - 113387, + "--bs-tooltip-opacity", + 113385, 113404, { - "value": "bs-tooltip-opacity" + "value": "--bs-tooltip-opacity" } ], [ @@ -215410,31 +192469,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113455, - 113455, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113456, - 113456, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 113457, + "--bs-tooltip-arrow-width", + 113455, 113478, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -215476,31 +192517,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113492, - 113492, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113493, - 113493, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 113494, + "--bs-tooltip-arrow-height", + 113492, 113516, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -216156,31 +193179,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113857, - 113857, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113858, - 113858, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 113859, + "--bs-tooltip-arrow-height", + 113857, 113881, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -216215,31 +193220,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113893, - 113893, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113894, - 113894, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 113895, + "--bs-tooltip-arrow-width", + 113893, 113916, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -216338,31 +193325,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 113948, - 113948, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 113949, - 113949, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 113950, + "--bs-tooltip-bg", + 113948, 113962, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -216587,31 +193556,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114075, - 114075, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114076, - 114076, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 114077, + "--bs-tooltip-arrow-height", + 114075, 114099, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -216653,31 +193604,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114113, - 114113, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114114, - 114114, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 114115, + "--bs-tooltip-arrow-width", + 114113, 114136, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -216958,31 +193891,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114281, - 114281, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114282, - 114282, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 114283, + "--bs-tooltip-arrow-width", + 114281, 114304, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -217048,31 +193963,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114317, - 114317, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114318, - 114318, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 114319, + "--bs-tooltip-arrow-height", + 114317, 114341, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -217107,31 +194004,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114353, - 114353, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114354, - 114354, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 114355, + "--bs-tooltip-arrow-width", + 114353, 114376, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -217230,31 +194109,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114410, - 114410, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114411, - 114411, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 114412, + "--bs-tooltip-bg", + 114410, 114424, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -217735,31 +194596,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114679, - 114679, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114680, - 114680, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 114681, + "--bs-tooltip-arrow-width", + 114679, 114702, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -217825,31 +194668,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114715, - 114715, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114716, - 114716, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 114717, + "--bs-tooltip-arrow-height", + 114715, 114739, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -217891,31 +194716,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114766, - 114766, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114767, - 114767, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 114768, + "--bs-tooltip-bg", + 114766, 114780, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -218140,31 +194947,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114895, - 114895, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114896, - 114896, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 114897, + "--bs-tooltip-arrow-height", + 114895, 114919, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -218206,31 +194995,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 114933, - 114933, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 114934, - 114934, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 114935, + "--bs-tooltip-arrow-width", + 114933, 114956, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -218511,31 +195282,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115101, - 115101, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115102, - 115102, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 115103, + "--bs-tooltip-arrow-width", + 115101, 115124, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -218627,31 +195380,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115144, - 115144, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115145, - 115145, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-width", - 115146, + "--bs-tooltip-arrow-width", + 115144, 115167, { - "value": "bs-tooltip-arrow-width" + "value": "--bs-tooltip-arrow-width" } ], [ @@ -218717,31 +195452,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115180, - 115180, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115181, - 115181, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-arrow-height", - 115182, + "--bs-tooltip-arrow-height", + 115180, 115204, { - "value": "bs-tooltip-arrow-height" + "value": "--bs-tooltip-arrow-height" } ], [ @@ -218783,31 +195500,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115229, - 115229, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115230, - 115230, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 115231, + "--bs-tooltip-bg", + 115229, 115243, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -218874,31 +195573,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115275, - 115275, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115276, - 115276, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-max-width", - 115277, + "--bs-tooltip-max-width", + 115275, 115296, { - "value": "bs-tooltip-max-width" + "value": "--bs-tooltip-max-width" } ], [ @@ -218940,31 +195621,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115311, - 115311, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115312, - 115312, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-padding-y", - 115313, + "--bs-tooltip-padding-y", + 115311, 115332, { - "value": "bs-tooltip-padding-y" + "value": "--bs-tooltip-padding-y" } ], [ @@ -218990,31 +195653,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115339, - 115339, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115340, - 115340, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-padding-x", - 115341, + "--bs-tooltip-padding-x", + 115339, 115360, { - "value": "bs-tooltip-padding-x" + "value": "--bs-tooltip-padding-x" } ], [ @@ -219056,31 +195701,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115373, - 115373, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115374, - 115374, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-color", - 115375, + "--bs-tooltip-color", + 115373, 115390, { - "value": "bs-tooltip-color" + "value": "--bs-tooltip-color" } ], [ @@ -219154,31 +195781,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115432, - 115432, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115433, - 115433, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-bg", - 115434, + "--bs-tooltip-bg", + 115432, 115446, { - "value": "bs-tooltip-bg" + "value": "--bs-tooltip-bg" } ], [ @@ -219220,31 +195829,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115467, - 115467, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115468, - 115468, - { - "value": "-" - } - ], [ "ident-token", - "bs-tooltip-border-radius", - 115469, + "--bs-tooltip-border-radius", + 115467, 115492, { - "value": "bs-tooltip-border-radius" + "value": "--bs-tooltip-border-radius" } ], [ @@ -219286,31 +195877,13 @@ export const bootstrapTokens = [ 115503, null ], - [ - "delim-token", - "-", - 115504, - 115504, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115505, - 115505, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-zindex", - 115506, + "--bs-popover-zindex", + 115504, 115522, { - "value": "bs-popover-zindex" + "value": "--bs-popover-zindex" } ], [ @@ -219337,31 +195910,13 @@ export const bootstrapTokens = [ 115528, null ], - [ - "delim-token", - "-", - 115529, - 115529, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115530, - 115530, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-max-width", - 115531, + "--bs-popover-max-width", + 115529, 115550, { - "value": "bs-popover-max-width" + "value": "--bs-popover-max-width" } ], [ @@ -219389,31 +195944,13 @@ export const bootstrapTokens = [ 115557, null ], - [ - "delim-token", - "-", - 115558, - 115558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115559, - 115559, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-font-size", - 115560, + "--bs-popover-font-size", + 115558, 115579, { - "value": "bs-popover-font-size" + "value": "--bs-popover-font-size" } ], [ @@ -219441,31 +195978,13 @@ export const bootstrapTokens = [ 115589, null ], - [ - "delim-token", - "-", - 115590, - 115590, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115591, - 115591, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 115592, + "--bs-popover-bg", + 115590, 115604, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -219492,31 +196011,13 @@ export const bootstrapTokens = [ 115610, null ], - [ - "delim-token", - "-", - 115611, - 115611, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115612, - 115612, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 115613, + "--bs-popover-border-width", + 115611, 115635, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -219544,31 +196045,13 @@ export const bootstrapTokens = [ 115640, null ], - [ - "delim-token", - "-", - 115641, - 115641, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115642, - 115642, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-color", - 115643, + "--bs-popover-border-color", + 115641, 115665, { - "value": "bs-popover-border-color" + "value": "--bs-popover-border-color" } ], [ @@ -219587,31 +196070,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 115671, - 115671, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115672, - 115672, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 115673, + "--bs-border-color-translucent", + 115671, 115699, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -219628,31 +196093,13 @@ export const bootstrapTokens = [ 115701, null ], - [ - "delim-token", - "-", - 115702, - 115702, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115703, - 115703, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-radius", - 115704, + "--bs-popover-border-radius", + 115702, 115727, { - "value": "bs-popover-border-radius" + "value": "--bs-popover-border-radius" } ], [ @@ -219680,31 +196127,13 @@ export const bootstrapTokens = [ 115735, null ], - [ - "delim-token", - "-", - 115736, - 115736, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115737, - 115737, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-inner-border-radius", - 115738, + "--bs-popover-inner-border-radius", + 115736, 115767, { - "value": "bs-popover-inner-border-radius" + "value": "--bs-popover-inner-border-radius" } ], [ @@ -219782,31 +196211,13 @@ export const bootstrapTokens = [ 115787, null ], - [ - "delim-token", - "-", - 115788, - 115788, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115789, - 115789, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-box-shadow", - 115790, + "--bs-popover-box-shadow", + 115788, 115810, { - "value": "bs-popover-box-shadow" + "value": "--bs-popover-box-shadow" } ], [ @@ -219974,31 +196385,13 @@ export const bootstrapTokens = [ 115845, null ], - [ - "delim-token", - "-", - 115846, - 115846, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115847, - 115847, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-padding-x", - 115848, + "--bs-popover-header-padding-x", + 115846, 115874, { - "value": "bs-popover-header-padding-x" + "value": "--bs-popover-header-padding-x" } ], [ @@ -220026,31 +196419,13 @@ export const bootstrapTokens = [ 115880, null ], - [ - "delim-token", - "-", - 115881, - 115881, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115882, - 115882, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-padding-y", - 115883, + "--bs-popover-header-padding-y", + 115881, 115909, { - "value": "bs-popover-header-padding-y" + "value": "--bs-popover-header-padding-y" } ], [ @@ -220078,31 +196453,13 @@ export const bootstrapTokens = [ 115917, null ], - [ - "delim-token", - "-", - 115918, - 115918, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115919, - 115919, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-font-size", - 115920, + "--bs-popover-header-font-size", + 115918, 115946, { - "value": "bs-popover-header-font-size" + "value": "--bs-popover-header-font-size" } ], [ @@ -220130,31 +196487,13 @@ export const bootstrapTokens = [ 115952, null ], - [ - "delim-token", - "-", - 115953, - 115953, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115954, - 115954, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-color", - 115955, + "--bs-popover-header-color", + 115953, 115977, { - "value": "bs-popover-header-color" + "value": "--bs-popover-header-color" } ], [ @@ -220178,31 +196517,13 @@ export const bootstrapTokens = [ 115980, null ], - [ - "delim-token", - "-", - 115981, - 115981, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 115982, - 115982, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-bg", - 115983, + "--bs-popover-header-bg", + 115981, 116002, { - "value": "bs-popover-header-bg" + "value": "--bs-popover-header-bg" } ], [ @@ -220229,31 +196550,13 @@ export const bootstrapTokens = [ 116011, null ], - [ - "delim-token", - "-", - 116012, - 116012, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116013, - 116013, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-padding-x", - 116014, + "--bs-popover-body-padding-x", + 116012, 116038, { - "value": "bs-popover-body-padding-x" + "value": "--bs-popover-body-padding-x" } ], [ @@ -220281,31 +196584,13 @@ export const bootstrapTokens = [ 116044, null ], - [ - "delim-token", - "-", - 116045, - 116045, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116046, - 116046, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-padding-y", - 116047, + "--bs-popover-body-padding-y", + 116045, 116071, { - "value": "bs-popover-body-padding-y" + "value": "--bs-popover-body-padding-y" } ], [ @@ -220333,31 +196618,13 @@ export const bootstrapTokens = [ 116077, null ], - [ - "delim-token", - "-", - 116078, - 116078, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116079, - 116079, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-color", - 116080, + "--bs-popover-body-color", + 116078, 116100, { - "value": "bs-popover-body-color" + "value": "--bs-popover-body-color" } ], [ @@ -220384,31 +196651,13 @@ export const bootstrapTokens = [ 116109, null ], - [ - "delim-token", - "-", - 116110, - 116110, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116111, - 116111, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 116112, + "--bs-popover-arrow-width", + 116110, 116133, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -220436,31 +196685,13 @@ export const bootstrapTokens = [ 116139, null ], - [ - "delim-token", - "-", - 116140, - 116140, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116141, - 116141, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 116142, + "--bs-popover-arrow-height", + 116140, 116164, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -220488,31 +196719,13 @@ export const bootstrapTokens = [ 116172, null ], - [ - "delim-token", - "-", - 116173, - 116173, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116174, - 116174, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-border", - 116175, + "--bs-popover-arrow-border", + 116173, 116197, { - "value": "bs-popover-arrow-border" + "value": "--bs-popover-arrow-border" } ], [ @@ -220531,31 +196744,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116203, - 116203, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116204, - 116204, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-color", - 116205, + "--bs-popover-border-color", + 116203, 116227, { - "value": "bs-popover-border-color" + "value": "--bs-popover-border-color" } ], [ @@ -220597,31 +196792,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116242, - 116242, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116243, - 116243, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-zindex", - 116244, + "--bs-popover-zindex", + 116242, 116260, { - "value": "bs-popover-zindex" + "value": "--bs-popover-zindex" } ], [ @@ -220695,31 +196872,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116291, - 116291, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116292, - 116292, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-max-width", - 116293, + "--bs-popover-max-width", + 116291, 116312, { - "value": "bs-popover-max-width" + "value": "--bs-popover-max-width" } ], [ @@ -220761,31 +196920,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116331, - 116331, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116332, - 116332, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-sans-serif", - 116333, + "--bs-font-sans-serif", + 116331, 116350, { - "value": "bs-font-sans-serif" + "value": "--bs-font-sans-serif" } ], [ @@ -221245,31 +197386,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116603, - 116603, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116604, - 116604, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-font-size", - 116605, + "--bs-popover-font-size", + 116603, 116624, { - "value": "bs-popover-font-size" + "value": "--bs-popover-font-size" } ], [ @@ -221343,31 +197466,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116669, - 116669, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116670, - 116670, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 116671, + "--bs-popover-bg", + 116669, 116683, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -221441,31 +197546,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116725, - 116725, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116726, - 116726, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 116727, + "--bs-popover-border-width", + 116725, 116749, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -221507,31 +197594,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116762, - 116762, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116763, - 116763, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-color", - 116764, + "--bs-popover-border-color", + 116762, 116786, { - "value": "bs-popover-border-color" + "value": "--bs-popover-border-color" } ], [ @@ -221573,31 +197642,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116807, - 116807, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116808, - 116808, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-radius", - 116809, + "--bs-popover-border-radius", + 116807, 116832, { - "value": "bs-popover-border-radius" + "value": "--bs-popover-border-radius" } ], [ @@ -221721,31 +197772,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116883, - 116883, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116884, - 116884, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 116885, + "--bs-popover-arrow-width", + 116883, 116906, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -221787,31 +197820,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 116920, - 116920, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 116921, - 116921, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 116922, + "--bs-popover-arrow-height", + 116920, 116944, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -222395,31 +198410,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117225, - 117225, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117226, - 117226, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 117227, + "--bs-popover-arrow-height", + 117225, 117249, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -222468,31 +198465,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117259, - 117259, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117260, - 117260, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 117261, + "--bs-popover-border-width", + 117259, 117283, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -222941,31 +198920,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117516, - 117516, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117517, - 117517, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 117518, + "--bs-popover-arrow-height", + 117516, 117540, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -223000,31 +198961,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117552, - 117552, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117553, - 117553, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 117554, + "--bs-popover-arrow-width", + 117552, 117575, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -223356,31 +199299,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117723, - 117723, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117724, - 117724, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-border", - 117725, + "--bs-popover-arrow-border", + 117723, 117747, { - "value": "bs-popover-arrow-border" + "value": "--bs-popover-arrow-border" } ], [ @@ -223622,31 +199547,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117866, - 117866, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117867, - 117867, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 117868, + "--bs-popover-border-width", + 117866, 117890, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -223688,31 +199595,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 117914, - 117914, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 117915, - 117915, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 117916, + "--bs-popover-bg", + 117914, 117928, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -223957,31 +199846,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118044, - 118044, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118045, - 118045, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 118046, + "--bs-popover-arrow-height", + 118044, 118068, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -224030,31 +199901,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118078, - 118078, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118079, - 118079, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 118080, + "--bs-popover-border-width", + 118078, 118102, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -224103,31 +199956,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118116, - 118116, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118117, - 118117, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 118118, + "--bs-popover-arrow-height", + 118116, 118140, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -224169,31 +200004,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118154, - 118154, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118155, - 118155, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 118156, + "--bs-popover-arrow-width", + 118154, 118177, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -224644,31 +200461,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118418, - 118418, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118419, - 118419, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 118420, + "--bs-popover-arrow-width", + 118418, 118441, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -224734,31 +200533,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118454, - 118454, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118455, - 118455, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 118456, + "--bs-popover-arrow-height", + 118454, 118478, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -224793,31 +200574,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118490, - 118490, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118491, - 118491, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 118492, + "--bs-popover-arrow-width", + 118490, 118513, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -225149,31 +200912,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118663, - 118663, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118664, - 118664, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-border", - 118665, + "--bs-popover-arrow-border", + 118663, 118687, { - "value": "bs-popover-arrow-border" + "value": "--bs-popover-arrow-border" } ], [ @@ -225415,31 +201160,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118806, - 118806, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118807, - 118807, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 118808, + "--bs-popover-border-width", + 118806, 118830, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -225481,31 +201208,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118856, - 118856, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118857, - 118857, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 118858, + "--bs-popover-bg", + 118856, 118870, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -225750,31 +201459,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 118989, - 118989, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 118990, - 118990, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 118991, + "--bs-popover-arrow-height", + 118989, 119013, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -225823,31 +201514,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119023, - 119023, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119024, - 119024, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 119025, + "--bs-popover-border-width", + 119023, 119047, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -226322,31 +201995,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119299, - 119299, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119300, - 119300, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 119301, + "--bs-popover-arrow-width", + 119299, 119322, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -226412,31 +202067,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119335, - 119335, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119336, - 119336, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 119337, + "--bs-popover-arrow-height", + 119335, 119359, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -226711,31 +202348,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119505, - 119505, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119506, - 119506, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-border", - 119507, + "--bs-popover-arrow-border", + 119505, 119529, { - "value": "bs-popover-arrow-border" + "value": "--bs-popover-arrow-border" } ], [ @@ -226977,31 +202596,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119651, - 119651, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119652, - 119652, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 119653, + "--bs-popover-border-width", + 119651, 119675, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -227043,31 +202644,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119702, - 119702, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119703, - 119703, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 119704, + "--bs-popover-bg", + 119702, 119716, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -227434,31 +203017,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119891, - 119891, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119892, - 119892, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 119893, + "--bs-popover-arrow-width", + 119891, 119914, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -227542,31 +203107,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 119944, - 119944, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 119945, - 119945, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 119946, + "--bs-popover-arrow-width", + 119944, 119967, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -227647,31 +203194,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120000, - 120000, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120001, - 120001, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 120002, + "--bs-popover-border-width", + 120000, 120024, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -227713,31 +203242,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120037, - 120037, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120038, - 120038, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-bg", - 120039, + "--bs-popover-header-bg", + 120037, 120058, { - "value": "bs-popover-header-bg" + "value": "--bs-popover-header-bg" } ], [ @@ -227982,31 +203493,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120176, - 120176, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120177, - 120177, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 120178, + "--bs-popover-arrow-height", + 120176, 120200, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -228055,31 +203548,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120210, - 120210, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120211, - 120211, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 120212, + "--bs-popover-border-width", + 120210, 120234, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -228128,31 +203603,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120248, - 120248, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120249, - 120249, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 120250, + "--bs-popover-arrow-height", + 120248, 120272, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -228194,31 +203651,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120286, - 120286, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120287, - 120287, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 120288, + "--bs-popover-arrow-width", + 120286, 120309, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -228669,31 +204108,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120552, - 120552, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120553, - 120553, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 120554, + "--bs-popover-arrow-width", + 120552, 120575, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -228785,31 +204206,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120595, - 120595, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120596, - 120596, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-width", - 120597, + "--bs-popover-arrow-width", + 120595, 120618, { - "value": "bs-popover-arrow-width" + "value": "--bs-popover-arrow-width" } ], [ @@ -228875,31 +204278,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120631, - 120631, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120632, - 120632, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-height", - 120633, + "--bs-popover-arrow-height", + 120631, 120655, { - "value": "bs-popover-arrow-height" + "value": "--bs-popover-arrow-height" } ], [ @@ -229174,31 +204559,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120798, - 120798, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120799, - 120799, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-arrow-border", - 120800, + "--bs-popover-arrow-border", + 120798, 120822, { - "value": "bs-popover-arrow-border" + "value": "--bs-popover-arrow-border" } ], [ @@ -229440,31 +204807,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120943, - 120943, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120944, - 120944, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 120945, + "--bs-popover-border-width", + 120943, 120967, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -229506,31 +204855,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 120992, - 120992, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 120993, - 120993, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-bg", - 120994, + "--bs-popover-bg", + 120992, 121006, { - "value": "bs-popover-bg" + "value": "--bs-popover-bg" } ], [ @@ -229597,31 +204928,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121037, - 121037, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121038, - 121038, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-padding-y", - 121039, + "--bs-popover-header-padding-y", + 121037, 121065, { - "value": "bs-popover-header-padding-y" + "value": "--bs-popover-header-padding-y" } ], [ @@ -229647,31 +204960,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121072, - 121072, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121073, - 121073, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-padding-x", - 121074, + "--bs-popover-header-padding-x", + 121072, 121100, { - "value": "bs-popover-header-padding-x" + "value": "--bs-popover-header-padding-x" } ], [ @@ -229746,31 +205041,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121133, - 121133, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121134, - 121134, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-font-size", - 121135, + "--bs-popover-header-font-size", + 121133, 121161, { - "value": "bs-popover-header-font-size" + "value": "--bs-popover-header-font-size" } ], [ @@ -229812,31 +205089,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121174, - 121174, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121175, - 121175, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-color", - 121176, + "--bs-popover-header-color", + 121174, 121198, { - "value": "bs-popover-header-color" + "value": "--bs-popover-header-color" } ], [ @@ -229878,31 +205137,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121222, - 121222, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121223, - 121223, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-header-bg", - 121224, + "--bs-popover-header-bg", + 121222, 121243, { - "value": "bs-popover-header-bg" + "value": "--bs-popover-header-bg" } ], [ @@ -229944,31 +205185,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121264, - 121264, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121265, - 121265, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-width", - 121266, + "--bs-popover-border-width", + 121264, 121288, { - "value": "bs-popover-border-width" + "value": "--bs-popover-border-width" } ], [ @@ -230010,31 +205233,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121301, - 121301, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121302, - 121302, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-border-color", - 121303, + "--bs-popover-border-color", + 121301, 121325, { - "value": "bs-popover-border-color" + "value": "--bs-popover-border-color" } ], [ @@ -230076,31 +205281,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121355, - 121355, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121356, - 121356, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-inner-border-radius", - 121357, + "--bs-popover-inner-border-radius", + 121355, 121386, { - "value": "bs-popover-inner-border-radius" + "value": "--bs-popover-inner-border-radius" } ], [ @@ -230142,31 +205329,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121417, - 121417, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121418, - 121418, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-inner-border-radius", - 121419, + "--bs-popover-inner-border-radius", + 121417, 121448, { - "value": "bs-popover-inner-border-radius" + "value": "--bs-popover-inner-border-radius" } ], [ @@ -230306,31 +205475,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121512, - 121512, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121513, - 121513, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-padding-y", - 121514, + "--bs-popover-body-padding-y", + 121512, 121538, { - "value": "bs-popover-body-padding-y" + "value": "--bs-popover-body-padding-y" } ], [ @@ -230356,31 +205507,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121545, - 121545, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121546, - 121546, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-padding-x", - 121547, + "--bs-popover-body-padding-x", + 121545, 121571, { - "value": "bs-popover-body-padding-x" + "value": "--bs-popover-body-padding-x" } ], [ @@ -230422,31 +205555,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 121584, - 121584, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 121585, - 121585, - { - "value": "-" - } - ], [ "ident-token", - "bs-popover-body-color", - 121586, + "--bs-popover-body-color", + 121584, 121606, { - "value": "bs-popover-body-color" + "value": "--bs-popover-body-color" } ], [ @@ -231045,22 +206160,13 @@ export const bootstrapTokens = [ 121886, null ], - [ - "delim-token", - "-", - 121887, - 121887, - { - "value": "-" - } - ], [ "ident-token", - "webkit-backface-visibility", - 121888, + "-webkit-backface-visibility", + 121887, 121913, { - "value": "webkit-backface-visibility" + "value": "-webkit-backface-visibility" } ], [ @@ -236377,31 +211483,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125307, - 125307, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125308, - 125308, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-width", - 125309, + "--bs-spinner-width", + 125307, 125324, { - "value": "bs-spinner-width" + "value": "--bs-spinner-width" } ], [ @@ -236443,31 +211531,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125338, - 125338, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125339, - 125339, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-height", - 125340, + "--bs-spinner-height", + 125338, 125356, { - "value": "bs-spinner-height" + "value": "--bs-spinner-height" } ], [ @@ -236509,31 +211579,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125378, - 125378, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125379, - 125379, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-vertical-align", - 125380, + "--bs-spinner-vertical-align", + 125378, 125404, { - "value": "bs-spinner-vertical-align" + "value": "--bs-spinner-vertical-align" } ], [ @@ -236582,22 +211634,13 @@ export const bootstrapTokens = [ 125424, null ], - [ - "delim-token", - "-", - 125425, - 125425, - { - "value": "-" - } - ], [ "ident-token", - "webkit-animation", - 125426, + "-webkit-animation", + 125425, 125441, { - "value": "webkit-animation" + "value": "-webkit-animation" } ], [ @@ -236616,31 +211659,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125447, - 125447, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125448, - 125448, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-speed", - 125449, + "--bs-spinner-animation-speed", + 125447, 125474, { - "value": "bs-spinner-animation-speed" + "value": "--bs-spinner-animation-speed" } ], [ @@ -236698,31 +211723,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125497, - 125497, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125498, - 125498, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-name", - 125499, + "--bs-spinner-animation-name", + 125497, 125523, { - "value": "bs-spinner-animation-name" + "value": "--bs-spinner-animation-name" } ], [ @@ -236764,31 +211771,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125540, - 125540, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125541, - 125541, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-speed", - 125542, + "--bs-spinner-animation-speed", + 125540, 125567, { - "value": "bs-spinner-animation-speed" + "value": "--bs-spinner-animation-speed" } ], [ @@ -236846,31 +211835,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125590, - 125590, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125591, - 125591, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-name", - 125592, + "--bs-spinner-animation-name", + 125590, 125616, { - "value": "bs-spinner-animation-name" + "value": "--bs-spinner-animation-name" } ], [ @@ -237122,31 +212093,13 @@ export const bootstrapTokens = [ 125752, null ], - [ - "delim-token", - "-", - 125753, - 125753, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125754, - 125754, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-width", - 125755, + "--bs-spinner-width", + 125753, 125770, { - "value": "bs-spinner-width" + "value": "--bs-spinner-width" } ], [ @@ -237174,31 +212127,13 @@ export const bootstrapTokens = [ 125776, null ], - [ - "delim-token", - "-", - 125777, - 125777, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125778, - 125778, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-height", - 125779, + "--bs-spinner-height", + 125777, 125795, { - "value": "bs-spinner-height" + "value": "--bs-spinner-height" } ], [ @@ -237226,31 +212161,13 @@ export const bootstrapTokens = [ 125801, null ], - [ - "delim-token", - "-", - 125802, - 125802, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125803, - 125803, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-vertical-align", - 125804, + "--bs-spinner-vertical-align", + 125802, 125828, { - "value": "bs-spinner-vertical-align" + "value": "--bs-spinner-vertical-align" } ], [ @@ -237278,31 +212195,13 @@ export const bootstrapTokens = [ 125838, null ], - [ - "delim-token", - "-", - 125839, - 125839, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125840, - 125840, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-border-width", - 125841, + "--bs-spinner-border-width", + 125839, 125863, { - "value": "bs-spinner-border-width" + "value": "--bs-spinner-border-width" } ], [ @@ -237330,31 +212229,13 @@ export const bootstrapTokens = [ 125871, null ], - [ - "delim-token", - "-", - 125872, - 125872, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125873, - 125873, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-speed", - 125874, + "--bs-spinner-animation-speed", + 125872, 125899, { - "value": "bs-spinner-animation-speed" + "value": "--bs-spinner-animation-speed" } ], [ @@ -237382,31 +212263,13 @@ export const bootstrapTokens = [ 125906, null ], - [ - "delim-token", - "-", - 125907, - 125907, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125908, - 125908, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-name", - 125909, + "--bs-spinner-animation-name", + 125907, 125933, { - "value": "bs-spinner-animation-name" + "value": "--bs-spinner-animation-name" } ], [ @@ -237457,31 +212320,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 125961, - 125961, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 125962, - 125962, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-border-width", - 125963, + "--bs-spinner-border-width", + 125961, 125985, { - "value": "bs-spinner-border-width" + "value": "--bs-spinner-border-width" } ], [ @@ -237587,31 +212432,13 @@ export const bootstrapTokens = [ 126056, null ], - [ - "delim-token", - "-", - 126057, - 126057, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126058, - 126058, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-width", - 126059, + "--bs-spinner-width", + 126057, 126074, { - "value": "bs-spinner-width" + "value": "--bs-spinner-width" } ], [ @@ -237639,31 +212466,13 @@ export const bootstrapTokens = [ 126080, null ], - [ - "delim-token", - "-", - 126081, - 126081, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126082, - 126082, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-height", - 126083, + "--bs-spinner-height", + 126081, 126099, { - "value": "bs-spinner-height" + "value": "--bs-spinner-height" } ], [ @@ -237691,31 +212500,13 @@ export const bootstrapTokens = [ 126105, null ], - [ - "delim-token", - "-", - 126106, - 126106, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126107, - 126107, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-border-width", - 126108, + "--bs-spinner-border-width", + 126106, 126130, { - "value": "bs-spinner-border-width" + "value": "--bs-spinner-border-width" } ], [ @@ -238138,31 +212929,13 @@ export const bootstrapTokens = [ 126311, null ], - [ - "delim-token", - "-", - 126312, - 126312, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126313, - 126313, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-width", - 126314, + "--bs-spinner-width", + 126312, 126329, { - "value": "bs-spinner-width" + "value": "--bs-spinner-width" } ], [ @@ -238190,31 +212963,13 @@ export const bootstrapTokens = [ 126335, null ], - [ - "delim-token", - "-", - 126336, - 126336, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126337, - 126337, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-height", - 126338, + "--bs-spinner-height", + 126336, 126354, { - "value": "bs-spinner-height" + "value": "--bs-spinner-height" } ], [ @@ -238242,31 +212997,13 @@ export const bootstrapTokens = [ 126360, null ], - [ - "delim-token", - "-", - 126361, - 126361, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126362, - 126362, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-vertical-align", - 126363, + "--bs-spinner-vertical-align", + 126361, 126387, { - "value": "bs-spinner-vertical-align" + "value": "--bs-spinner-vertical-align" } ], [ @@ -238294,31 +213031,13 @@ export const bootstrapTokens = [ 126397, null ], - [ - "delim-token", - "-", - 126398, - 126398, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126399, - 126399, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-speed", - 126400, + "--bs-spinner-animation-speed", + 126398, 126425, { - "value": "bs-spinner-animation-speed" + "value": "--bs-spinner-animation-speed" } ], [ @@ -238346,31 +213065,13 @@ export const bootstrapTokens = [ 126432, null ], - [ - "delim-token", - "-", - 126433, - 126433, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126434, - 126434, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-name", - 126435, + "--bs-spinner-animation-name", + 126433, 126459, { - "value": "bs-spinner-animation-name" + "value": "--bs-spinner-animation-name" } ], [ @@ -238486,31 +213187,13 @@ export const bootstrapTokens = [ 126530, null ], - [ - "delim-token", - "-", - 126531, - 126531, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126532, - 126532, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-width", - 126533, + "--bs-spinner-width", + 126531, 126548, { - "value": "bs-spinner-width" + "value": "--bs-spinner-width" } ], [ @@ -238538,31 +213221,13 @@ export const bootstrapTokens = [ 126554, null ], - [ - "delim-token", - "-", - 126555, - 126555, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126556, - 126556, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-height", - 126557, + "--bs-spinner-height", + 126555, 126573, { - "value": "bs-spinner-height" + "value": "--bs-spinner-height" } ], [ @@ -238702,31 +213367,13 @@ export const bootstrapTokens = [ 126648, null ], - [ - "delim-token", - "-", - 126649, - 126649, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126650, - 126650, - { - "value": "-" - } - ], [ "ident-token", - "bs-spinner-animation-speed", - 126651, + "--bs-spinner-animation-speed", + 126649, 126676, { - "value": "bs-spinner-animation-speed" + "value": "--bs-spinner-animation-speed" } ], [ @@ -238911,31 +213558,13 @@ export const bootstrapTokens = [ 126765, null ], - [ - "delim-token", - "-", - 126766, - 126766, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126767, - 126767, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 126768, + "--bs-offcanvas-zindex", + 126766, 126786, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -238962,31 +213591,13 @@ export const bootstrapTokens = [ 126792, null ], - [ - "delim-token", - "-", - 126793, - 126793, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126794, - 126794, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 126795, + "--bs-offcanvas-width", + 126793, 126812, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -239014,31 +213625,13 @@ export const bootstrapTokens = [ 126819, null ], - [ - "delim-token", - "-", - 126820, - 126820, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126821, - 126821, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 126822, + "--bs-offcanvas-height", + 126820, 126840, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -239066,31 +213659,13 @@ export const bootstrapTokens = [ 126846, null ], - [ - "delim-token", - "-", - 126847, - 126847, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126848, - 126848, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-x", - 126849, + "--bs-offcanvas-padding-x", + 126847, 126870, { - "value": "bs-offcanvas-padding-x" + "value": "--bs-offcanvas-padding-x" } ], [ @@ -239118,31 +213693,13 @@ export const bootstrapTokens = [ 126876, null ], - [ - "delim-token", - "-", - 126877, - 126877, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126878, - 126878, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 126879, + "--bs-offcanvas-padding-y", + 126877, 126900, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -239170,31 +213727,13 @@ export const bootstrapTokens = [ 126906, null ], - [ - "delim-token", - "-", - 126907, - 126907, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126908, - 126908, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 126909, + "--bs-offcanvas-color", + 126907, 126926, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -239218,31 +213757,13 @@ export const bootstrapTokens = [ 126929, null ], - [ - "delim-token", - "-", - 126930, - 126930, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126931, - 126931, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 126932, + "--bs-offcanvas-bg", + 126930, 126946, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -239269,31 +213790,13 @@ export const bootstrapTokens = [ 126952, null ], - [ - "delim-token", - "-", - 126953, - 126953, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126954, - 126954, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 126955, + "--bs-offcanvas-border-width", + 126953, 126979, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -239321,31 +213824,13 @@ export const bootstrapTokens = [ 126984, null ], - [ - "delim-token", - "-", - 126985, - 126985, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 126986, - 126986, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 126987, + "--bs-offcanvas-border-color", + 126985, 127011, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -239364,31 +213849,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127017, - 127017, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127018, - 127018, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color-translucent", - 127019, + "--bs-border-color-translucent", + 127017, 127045, { - "value": "bs-border-color-translucent" + "value": "--bs-border-color-translucent" } ], [ @@ -239405,31 +213872,13 @@ export const bootstrapTokens = [ 127047, null ], - [ - "delim-token", - "-", - 127048, - 127048, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127049, - 127049, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-box-shadow", - 127050, + "--bs-offcanvas-box-shadow", + 127048, 127072, { - "value": "bs-offcanvas-box-shadow" + "value": "--bs-offcanvas-box-shadow" } ], [ @@ -239776,31 +214225,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127192, - 127192, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127193, - 127193, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 127194, + "--bs-offcanvas-zindex", + 127192, 127212, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -239938,31 +214369,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127275, - 127275, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127276, - 127276, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 127277, + "--bs-offcanvas-color", + 127275, 127294, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -240036,31 +214449,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127336, - 127336, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127337, - 127337, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 127338, + "--bs-offcanvas-bg", + 127336, 127352, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -240603,31 +214998,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127607, - 127607, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127608, - 127608, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 127609, + "--bs-offcanvas-width", + 127607, 127626, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -240669,31 +215046,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127646, - 127646, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127647, - 127647, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 127648, + "--bs-offcanvas-border-width", + 127646, 127672, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -240735,31 +215094,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127685, - 127685, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127686, - 127686, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 127687, + "--bs-offcanvas-border-color", + 127685, 127711, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -241029,31 +215370,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127823, - 127823, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127824, - 127824, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 127825, + "--bs-offcanvas-width", + 127823, 127842, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -241095,31 +215418,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127861, - 127861, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127862, - 127862, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 127863, + "--bs-offcanvas-border-width", + 127861, 127887, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -241161,31 +215466,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 127900, - 127900, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 127901, - 127901, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 127902, + "--bs-offcanvas-border-color", + 127900, 127926, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -241488,31 +215775,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128045, - 128045, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128046, - 128046, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 128047, + "--bs-offcanvas-height", + 128045, 128065, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -241586,31 +215855,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128102, - 128102, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128103, - 128103, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 128104, + "--bs-offcanvas-border-width", + 128102, 128128, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -241652,31 +215903,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128141, - 128141, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128142, - 128142, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 128143, + "--bs-offcanvas-border-color", + 128141, 128167, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -241946,31 +216179,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128284, - 128284, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128285, - 128285, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 128286, + "--bs-offcanvas-height", + 128284, 128304, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -242044,31 +216259,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128338, - 128338, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128339, - 128339, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 128340, + "--bs-offcanvas-border-width", + 128338, 128364, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -242110,31 +216307,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 128377, - 128377, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128378, - 128378, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 128379, + "--bs-offcanvas-border-color", + 128377, 128403, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -242757,31 +216936,13 @@ export const bootstrapTokens = [ 128680, null ], - [ - "delim-token", - "-", - 128681, - 128681, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128682, - 128682, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 128683, + "--bs-offcanvas-height", + 128681, 128701, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -242807,31 +216968,13 @@ export const bootstrapTokens = [ 128707, null ], - [ - "delim-token", - "-", - 128708, - 128708, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 128709, - 128709, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 128710, + "--bs-offcanvas-border-width", + 128708, 128734, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -243406,31 +217549,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129024, - 129024, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129025, - 129025, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 129026, + "--bs-offcanvas-zindex", + 129024, 129044, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -243568,31 +217693,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129107, - 129107, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129108, - 129108, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 129109, + "--bs-offcanvas-color", + 129107, 129126, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -243666,31 +217773,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129168, - 129168, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129169, - 129169, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 129170, + "--bs-offcanvas-bg", + 129168, 129184, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -244233,31 +218322,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129439, - 129439, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129440, - 129440, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 129441, + "--bs-offcanvas-width", + 129439, 129458, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -244299,31 +218370,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129478, - 129478, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129479, - 129479, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 129480, + "--bs-offcanvas-border-width", + 129478, 129504, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -244365,31 +218418,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129517, - 129517, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129518, - 129518, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 129519, + "--bs-offcanvas-border-color", + 129517, 129543, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -244659,31 +218694,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129655, - 129655, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129656, - 129656, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 129657, + "--bs-offcanvas-width", + 129655, 129674, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -244725,31 +218742,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129693, - 129693, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129694, - 129694, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 129695, + "--bs-offcanvas-border-width", + 129693, 129719, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -244791,31 +218790,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129732, - 129732, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129733, - 129733, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 129734, + "--bs-offcanvas-border-color", + 129732, 129758, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -245118,31 +219099,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129877, - 129877, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129878, - 129878, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 129879, + "--bs-offcanvas-height", + 129877, 129897, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -245216,31 +219179,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129934, - 129934, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129935, - 129935, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 129936, + "--bs-offcanvas-border-width", + 129934, 129960, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -245282,31 +219227,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 129973, - 129973, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 129974, - 129974, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 129975, + "--bs-offcanvas-border-color", + 129973, 129999, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -245576,31 +219503,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 130116, - 130116, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130117, - 130117, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 130118, + "--bs-offcanvas-height", + 130116, 130136, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -245674,31 +219583,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 130170, - 130170, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130171, - 130171, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 130172, + "--bs-offcanvas-border-width", + 130170, 130196, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -245740,31 +219631,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 130209, - 130209, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130210, - 130210, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 130211, + "--bs-offcanvas-border-color", + 130209, 130235, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -246387,31 +220260,13 @@ export const bootstrapTokens = [ 130512, null ], - [ - "delim-token", - "-", - 130513, - 130513, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130514, - 130514, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 130515, + "--bs-offcanvas-height", + 130513, 130533, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -246437,31 +220292,13 @@ export const bootstrapTokens = [ 130539, null ], - [ - "delim-token", - "-", - 130540, - 130540, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130541, - 130541, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 130542, + "--bs-offcanvas-border-width", + 130540, 130566, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -247036,31 +220873,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 130856, - 130856, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130857, - 130857, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 130858, + "--bs-offcanvas-zindex", + 130856, 130876, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -247198,31 +221017,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 130939, - 130939, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 130940, - 130940, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 130941, + "--bs-offcanvas-color", + 130939, 130958, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -247296,31 +221097,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131000, - 131000, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131001, - 131001, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 131002, + "--bs-offcanvas-bg", + 131000, 131016, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -247863,31 +221646,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131271, - 131271, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131272, - 131272, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 131273, + "--bs-offcanvas-width", + 131271, 131290, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -247929,31 +221694,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131310, - 131310, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131311, - 131311, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 131312, + "--bs-offcanvas-border-width", + 131310, 131336, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -247995,31 +221742,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131349, - 131349, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131350, - 131350, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 131351, + "--bs-offcanvas-border-color", + 131349, 131375, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -248289,31 +222018,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131487, - 131487, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131488, - 131488, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 131489, + "--bs-offcanvas-width", + 131487, 131506, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -248355,31 +222066,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131525, - 131525, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131526, - 131526, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 131527, + "--bs-offcanvas-border-width", + 131525, 131551, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -248421,31 +222114,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131564, - 131564, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131565, - 131565, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 131566, + "--bs-offcanvas-border-color", + 131564, 131590, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -248748,31 +222423,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131709, - 131709, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131710, - 131710, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 131711, + "--bs-offcanvas-height", + 131709, 131729, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -248846,31 +222503,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131766, - 131766, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131767, - 131767, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 131768, + "--bs-offcanvas-border-width", + 131766, 131792, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -248912,31 +222551,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131805, - 131805, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131806, - 131806, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 131807, + "--bs-offcanvas-border-color", + 131805, 131831, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -249206,31 +222827,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 131948, - 131948, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 131949, - 131949, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 131950, + "--bs-offcanvas-height", + 131948, 131968, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -249304,31 +222907,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 132002, - 132002, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132003, - 132003, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 132004, + "--bs-offcanvas-border-width", + 132002, 132028, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -249370,31 +222955,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 132041, - 132041, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132042, - 132042, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 132043, + "--bs-offcanvas-border-color", + 132041, 132067, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -250017,31 +223584,13 @@ export const bootstrapTokens = [ 132344, null ], - [ - "delim-token", - "-", - 132345, - 132345, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132346, - 132346, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 132347, + "--bs-offcanvas-height", + 132345, 132365, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -250067,31 +223616,13 @@ export const bootstrapTokens = [ 132371, null ], - [ - "delim-token", - "-", - 132372, - 132372, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132373, - 132373, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 132374, + "--bs-offcanvas-border-width", + 132372, 132398, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -250666,31 +224197,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 132689, - 132689, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132690, - 132690, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 132691, + "--bs-offcanvas-zindex", + 132689, 132709, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -250828,31 +224341,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 132772, - 132772, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132773, - 132773, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 132774, + "--bs-offcanvas-color", + 132772, 132791, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -250926,31 +224421,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 132833, - 132833, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 132834, - 132834, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 132835, + "--bs-offcanvas-bg", + 132833, 132849, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -251493,31 +224970,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133106, - 133106, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133107, - 133107, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 133108, + "--bs-offcanvas-width", + 133106, 133125, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -251559,31 +225018,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133145, - 133145, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133146, - 133146, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 133147, + "--bs-offcanvas-border-width", + 133145, 133171, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -251625,31 +225066,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133184, - 133184, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133185, - 133185, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 133186, + "--bs-offcanvas-border-color", + 133184, 133210, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -251919,31 +225342,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133323, - 133323, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133324, - 133324, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 133325, + "--bs-offcanvas-width", + 133323, 133342, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -251985,31 +225390,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133361, - 133361, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133362, - 133362, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 133363, + "--bs-offcanvas-border-width", + 133361, 133387, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -252051,31 +225438,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133400, - 133400, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133401, - 133401, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 133402, + "--bs-offcanvas-border-color", + 133400, 133426, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -252378,31 +225747,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133546, - 133546, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133547, - 133547, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 133548, + "--bs-offcanvas-height", + 133546, 133566, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -252476,31 +225827,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133603, - 133603, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133604, - 133604, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 133605, + "--bs-offcanvas-border-width", + 133603, 133629, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -252542,31 +225875,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133642, - 133642, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133643, - 133643, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 133644, + "--bs-offcanvas-border-color", + 133642, 133668, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -252836,31 +226151,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133786, - 133786, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133787, - 133787, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 133788, + "--bs-offcanvas-height", + 133786, 133806, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -252934,31 +226231,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133840, - 133840, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133841, - 133841, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 133842, + "--bs-offcanvas-border-width", + 133840, 133866, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -253000,31 +226279,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 133879, - 133879, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 133880, - 133880, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 133881, + "--bs-offcanvas-border-color", + 133879, 133905, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -253647,31 +226908,13 @@ export const bootstrapTokens = [ 134185, null ], - [ - "delim-token", - "-", - 134186, - 134186, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134187, - 134187, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 134188, + "--bs-offcanvas-height", + 134186, 134206, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -253697,31 +226940,13 @@ export const bootstrapTokens = [ 134212, null ], - [ - "delim-token", - "-", - 134213, - 134213, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134214, - 134214, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 134215, + "--bs-offcanvas-border-width", + 134213, 134239, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -254296,31 +227521,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 134531, - 134531, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134532, - 134532, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 134533, + "--bs-offcanvas-zindex", + 134531, 134551, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -254458,31 +227665,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 134614, - 134614, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134615, - 134615, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 134616, + "--bs-offcanvas-color", + 134614, 134633, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -254556,31 +227745,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 134675, - 134675, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134676, - 134676, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 134677, + "--bs-offcanvas-bg", + 134675, 134691, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -255123,31 +228294,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 134950, - 134950, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134951, - 134951, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 134952, + "--bs-offcanvas-width", + 134950, 134969, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -255189,31 +228342,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 134989, - 134989, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 134990, - 134990, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 134991, + "--bs-offcanvas-border-width", + 134989, 135015, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -255255,31 +228390,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135028, - 135028, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135029, - 135029, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 135030, + "--bs-offcanvas-border-color", + 135028, 135054, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -255549,31 +228666,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135168, - 135168, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135169, - 135169, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 135170, + "--bs-offcanvas-width", + 135168, 135187, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -255615,31 +228714,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135206, - 135206, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135207, - 135207, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 135208, + "--bs-offcanvas-border-width", + 135206, 135232, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -255681,31 +228762,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135245, - 135245, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135246, - 135246, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 135247, + "--bs-offcanvas-border-color", + 135245, 135271, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -256008,31 +229071,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135392, - 135392, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135393, - 135393, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 135394, + "--bs-offcanvas-height", + 135392, 135412, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -256106,31 +229151,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135449, - 135449, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135450, - 135450, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 135451, + "--bs-offcanvas-border-width", + 135449, 135475, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -256172,31 +229199,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135488, - 135488, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135489, - 135489, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 135490, + "--bs-offcanvas-border-color", + 135488, 135514, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -256466,31 +229475,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135633, - 135633, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135634, - 135634, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 135635, + "--bs-offcanvas-height", + 135633, 135653, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -256564,31 +229555,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135687, - 135687, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135688, - 135688, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 135689, + "--bs-offcanvas-border-width", + 135687, 135713, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -256630,31 +229603,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 135726, - 135726, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 135727, - 135727, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 135728, + "--bs-offcanvas-border-color", + 135726, 135752, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -257277,31 +230232,13 @@ export const bootstrapTokens = [ 136038, null ], - [ - "delim-token", - "-", - 136039, - 136039, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136040, - 136040, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 136041, + "--bs-offcanvas-height", + 136039, 136059, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -257327,31 +230264,13 @@ export const bootstrapTokens = [ 136065, null ], - [ - "delim-token", - "-", - 136066, - 136066, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136067, - 136067, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 136068, + "--bs-offcanvas-border-width", + 136066, 136092, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -257862,31 +230781,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136353, - 136353, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136354, - 136354, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-zindex", - 136355, + "--bs-offcanvas-zindex", + 136353, 136373, { - "value": "bs-offcanvas-zindex" + "value": "--bs-offcanvas-zindex" } ], [ @@ -258024,31 +230925,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136436, - 136436, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136437, - 136437, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-color", - 136438, + "--bs-offcanvas-color", + 136436, 136455, { - "value": "bs-offcanvas-color" + "value": "--bs-offcanvas-color" } ], [ @@ -258122,31 +231005,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136497, - 136497, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136498, - 136498, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-bg", - 136499, + "--bs-offcanvas-bg", + 136497, 136513, { - "value": "bs-offcanvas-bg" + "value": "--bs-offcanvas-bg" } ], [ @@ -258554,31 +231419,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136708, - 136708, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136709, - 136709, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 136710, + "--bs-offcanvas-width", + 136708, 136727, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -258620,31 +231467,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136747, - 136747, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136748, - 136748, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 136749, + "--bs-offcanvas-border-width", + 136747, 136773, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -258686,31 +231515,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136786, - 136786, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136787, - 136787, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 136788, + "--bs-offcanvas-border-color", + 136786, 136812, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -258909,31 +231720,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136892, - 136892, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136893, - 136893, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-width", - 136894, + "--bs-offcanvas-width", + 136892, 136911, { - "value": "bs-offcanvas-width" + "value": "--bs-offcanvas-width" } ], [ @@ -258975,31 +231768,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136930, - 136930, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136931, - 136931, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 136932, + "--bs-offcanvas-border-width", + 136930, 136956, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -259041,31 +231816,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 136969, - 136969, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 136970, - 136970, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 136971, + "--bs-offcanvas-border-color", + 136969, 136995, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -259297,31 +232054,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137082, - 137082, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137083, - 137083, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 137084, + "--bs-offcanvas-height", + 137082, 137102, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -259395,31 +232134,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137139, - 137139, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137140, - 137140, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 137141, + "--bs-offcanvas-border-width", + 137139, 137165, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -259461,31 +232182,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137178, - 137178, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137179, - 137179, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 137180, + "--bs-offcanvas-border-color", + 137178, 137204, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -259684,31 +232387,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137289, - 137289, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137290, - 137290, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-height", - 137291, + "--bs-offcanvas-height", + 137289, 137309, { - "value": "bs-offcanvas-height" + "value": "--bs-offcanvas-height" } ], [ @@ -259782,31 +232467,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137343, - 137343, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137344, - 137344, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-width", - 137345, + "--bs-offcanvas-border-width", + 137343, 137369, { - "value": "bs-offcanvas-border-width" + "value": "--bs-offcanvas-border-width" } ], [ @@ -259848,31 +232515,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137382, - 137382, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137383, - 137383, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-border-color", - 137384, + "--bs-offcanvas-border-color", + 137382, 137408, { - "value": "bs-offcanvas-border-color" + "value": "--bs-offcanvas-border-color" } ], [ @@ -260812,31 +233461,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137844, - 137844, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137845, - 137845, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 137846, + "--bs-offcanvas-padding-y", + 137844, 137867, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -260862,31 +233493,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137874, - 137874, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137875, - 137875, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-x", - 137876, + "--bs-offcanvas-padding-x", + 137874, 137897, { - "value": "bs-offcanvas-padding-x" + "value": "--bs-offcanvas-padding-x" } ], [ @@ -260987,31 +233600,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137946, - 137946, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137947, - 137947, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 137948, + "--bs-offcanvas-padding-y", + 137946, 137969, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -261086,31 +233681,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 137987, - 137987, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 137988, - 137988, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-x", - 137989, + "--bs-offcanvas-padding-x", + 137987, 138010, { - "value": "bs-offcanvas-padding-x" + "value": "--bs-offcanvas-padding-x" } ], [ @@ -261234,31 +233811,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 138045, - 138045, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 138046, - 138046, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 138047, + "--bs-offcanvas-padding-y", + 138045, 138068, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -261349,31 +233908,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 138100, - 138100, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 138101, - 138101, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-x", - 138102, + "--bs-offcanvas-padding-x", + 138100, 138123, { - "value": "bs-offcanvas-padding-x" + "value": "--bs-offcanvas-padding-x" } ], [ @@ -261464,31 +234005,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 138156, - 138156, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 138157, - 138157, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 138158, + "--bs-offcanvas-padding-y", + 138156, 138179, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -261686,31 +234209,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 138272, - 138272, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 138273, - 138273, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-y", - 138274, + "--bs-offcanvas-padding-y", + 138272, 138295, { - "value": "bs-offcanvas-padding-y" + "value": "--bs-offcanvas-padding-y" } ], [ @@ -261736,31 +234241,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 138302, - 138302, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 138303, - 138303, - { - "value": "-" - } - ], [ "ident-token", - "bs-offcanvas-padding-x", - 138304, + "--bs-offcanvas-padding-x", + 138302, 138325, { - "value": "bs-offcanvas-padding-x" + "value": "--bs-offcanvas-padding-x" } ], [ @@ -262386,22 +234873,13 @@ export const bootstrapTokens = [ 138652, null ], - [ - "delim-token", - "-", - 138653, - 138653, - { - "value": "-" - } - ], [ "ident-token", - "webkit-animation", - 138654, + "-webkit-animation", + 138653, 138669, { - "value": "webkit-animation" + "value": "-webkit-animation" } ], [ @@ -262760,22 +235238,13 @@ export const bootstrapTokens = [ 138876, null ], - [ - "delim-token", - "-", - 138877, - 138877, - { - "value": "-" - } - ], [ "ident-token", - "webkit-mask-image", - 138878, + "-webkit-mask-image", + 138877, 138894, { - "value": "webkit-mask-image" + "value": "-webkit-mask-image" } ], [ @@ -263201,22 +235670,13 @@ export const bootstrapTokens = [ 139030, null ], - [ - "delim-token", - "-", - 139031, - 139031, - { - "value": "-" - } - ], [ "ident-token", - "webkit-mask-size", - 139032, + "-webkit-mask-size", + 139031, 139047, { - "value": "webkit-mask-size" + "value": "-webkit-mask-size" } ], [ @@ -263306,22 +235766,13 @@ export const bootstrapTokens = [ 139078, null ], - [ - "delim-token", - "-", - 139079, - 139079, - { - "value": "-" - } - ], [ "ident-token", - "webkit-animation", - 139080, + "-webkit-animation", + 139079, 139095, { - "value": "webkit-animation" + "value": "-webkit-animation" } ], [ @@ -263527,22 +235978,13 @@ export const bootstrapTokens = [ 139219, null ], - [ - "delim-token", - "-", - 139220, - 139220, - { - "value": "-" - } - ], [ "ident-token", - "webkit-mask-position", - 139221, + "-webkit-mask-position", + 139220, 139240, { - "value": "webkit-mask-position" + "value": "-webkit-mask-position" } ], [ @@ -263687,22 +236129,13 @@ export const bootstrapTokens = [ 139307, null ], - [ - "delim-token", - "-", - 139308, - 139308, - { - "value": "-" - } - ], [ "ident-token", - "webkit-mask-position", - 139309, + "-webkit-mask-position", + 139308, 139328, { - "value": "webkit-mask-position" + "value": "-webkit-mask-position" } ], [ @@ -264104,31 +236537,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 139491, - 139491, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 139492, - 139492, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 139493, + "--bs-bg-opacity", + 139491, 139505, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -264348,31 +236763,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 139599, - 139599, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 139600, - 139600, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 139601, + "--bs-bg-opacity", + 139599, 139613, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -264592,31 +236989,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 139703, - 139703, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 139704, - 139704, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 139705, + "--bs-bg-opacity", + 139703, 139717, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -264836,31 +237215,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 139805, - 139805, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 139806, - 139806, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 139807, + "--bs-bg-opacity", + 139805, 139819, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -265080,31 +237441,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 139909, - 139909, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 139910, - 139910, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 139911, + "--bs-bg-opacity", + 139909, 139923, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -265324,31 +237667,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 140012, - 140012, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 140013, - 140013, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 140014, + "--bs-bg-opacity", + 140012, 140026, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -265568,31 +237893,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 140116, - 140116, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 140117, - 140117, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 140118, + "--bs-bg-opacity", + 140116, 140130, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -265812,31 +238119,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 140216, - 140216, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 140217, - 140217, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 140218, + "--bs-bg-opacity", + 140216, 140230, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -267761,31 +240050,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 141122, - 141122, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 141123, - 141123, - { - "value": "-" - } - ], [ "ident-token", - "bs-aspect-ratio", - 141124, + "--bs-aspect-ratio", + 141122, 141138, { - "value": "bs-aspect-ratio" + "value": "--bs-aspect-ratio" } ], [ @@ -268064,31 +240335,13 @@ export const bootstrapTokens = [ 141225, null ], - [ - "delim-token", - "-", - 141226, - 141226, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 141227, - 141227, - { - "value": "-" - } - ], [ "ident-token", - "bs-aspect-ratio", - 141228, + "--bs-aspect-ratio", + 141226, 141242, { - "value": "bs-aspect-ratio" + "value": "--bs-aspect-ratio" } ], [ @@ -268139,31 +240392,13 @@ export const bootstrapTokens = [ 141259, null ], - [ - "delim-token", - "-", - 141260, - 141260, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 141261, - 141261, - { - "value": "-" - } - ], [ "ident-token", - "bs-aspect-ratio", - 141262, + "--bs-aspect-ratio", + 141260, 141276, { - "value": "bs-aspect-ratio" + "value": "--bs-aspect-ratio" } ], [ @@ -268214,31 +240449,13 @@ export const bootstrapTokens = [ 141293, null ], - [ - "delim-token", - "-", - 141294, - 141294, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 141295, - 141295, - { - "value": "-" - } - ], [ "ident-token", - "bs-aspect-ratio", - 141296, + "--bs-aspect-ratio", + 141294, 141310, { - "value": "bs-aspect-ratio" + "value": "--bs-aspect-ratio" } ], [ @@ -268289,31 +240506,13 @@ export const bootstrapTokens = [ 141330, null ], - [ - "delim-token", - "-", - 141331, - 141331, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 141332, - 141332, - { - "value": "-" - } - ], [ "ident-token", - "bs-aspect-ratio", - 141333, + "--bs-aspect-ratio", + 141331, 141347, { - "value": "bs-aspect-ratio" + "value": "--bs-aspect-ratio" } ], [ @@ -268758,22 +240957,13 @@ export const bootstrapTokens = [ 141510, null ], - [ - "delim-token", - "-", - 141511, - 141511, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141512, + "-webkit-sticky", + 141511, 141524, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -268922,22 +241112,13 @@ export const bootstrapTokens = [ 141584, null ], - [ - "delim-token", - "-", - 141585, - 141585, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141586, + "-webkit-sticky", + 141585, 141598, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -269150,22 +241331,13 @@ export const bootstrapTokens = [ 141686, null ], - [ - "delim-token", - "-", - 141687, - 141687, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141688, + "-webkit-sticky", + 141687, 141700, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -269314,22 +241486,13 @@ export const bootstrapTokens = [ 141763, null ], - [ - "delim-token", - "-", - 141764, - 141764, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141765, + "-webkit-sticky", + 141764, 141777, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -269549,22 +241712,13 @@ export const bootstrapTokens = [ 141866, null ], - [ - "delim-token", - "-", - 141867, - 141867, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141868, + "-webkit-sticky", + 141867, 141880, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -269713,22 +241867,13 @@ export const bootstrapTokens = [ 141943, null ], - [ - "delim-token", - "-", - 141944, - 141944, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 141945, + "-webkit-sticky", + 141944, 141957, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -269948,22 +242093,13 @@ export const bootstrapTokens = [ 142046, null ], - [ - "delim-token", - "-", - 142047, - 142047, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142048, + "-webkit-sticky", + 142047, 142060, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -270112,22 +242248,13 @@ export const bootstrapTokens = [ 142123, null ], - [ - "delim-token", - "-", - 142124, - 142124, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142125, + "-webkit-sticky", + 142124, 142137, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -270347,22 +242474,13 @@ export const bootstrapTokens = [ 142227, null ], - [ - "delim-token", - "-", - 142228, - 142228, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142229, + "-webkit-sticky", + 142228, 142241, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -270511,22 +242629,13 @@ export const bootstrapTokens = [ 142304, null ], - [ - "delim-token", - "-", - 142305, - 142305, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142306, + "-webkit-sticky", + 142305, 142318, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -270746,22 +242855,13 @@ export const bootstrapTokens = [ 142409, null ], - [ - "delim-token", - "-", - 142410, - 142410, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142411, + "-webkit-sticky", + 142410, 142423, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -270910,22 +243010,13 @@ export const bootstrapTokens = [ 142487, null ], - [ - "delim-token", - "-", - 142488, - 142488, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 142489, + "-webkit-sticky", + 142488, 142501, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -275763,22 +247854,13 @@ export const bootstrapTokens = [ 144781, null ], - [ - "delim-token", - "-", - 144782, - 144782, - { - "value": "-" - } - ], [ "ident-token", - "webkit-sticky", - 144783, + "-webkit-sticky", + 144782, 144795, { - "value": "webkit-sticky" + "value": "-webkit-sticky" } ], [ @@ -277099,31 +249181,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145366, - 145366, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145367, - 145367, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 145368, + "--bs-border-width", + 145366, 145382, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -277149,31 +249213,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145389, - 145389, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145390, - 145390, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 145391, + "--bs-border-style", + 145389, 145405, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -277199,31 +249245,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145412, - 145412, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145413, - 145413, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 145414, + "--bs-border-color", + 145412, 145428, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -277384,31 +249412,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145497, - 145497, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145498, - 145498, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 145499, + "--bs-border-width", + 145497, 145513, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -277434,31 +249444,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145520, - 145520, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145521, - 145521, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 145522, + "--bs-border-style", + 145520, 145536, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -277484,31 +249476,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145543, - 145543, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145544, - 145544, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 145545, + "--bs-border-color", + 145543, 145559, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -277669,31 +249643,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145638, - 145638, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145639, - 145639, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 145640, + "--bs-border-width", + 145638, 145654, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -277719,31 +249675,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145661, - 145661, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145662, - 145662, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 145663, + "--bs-border-style", + 145661, 145677, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -277769,31 +249707,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145684, - 145684, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145685, - 145685, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 145686, + "--bs-border-color", + 145684, 145700, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -277954,31 +249874,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145785, - 145785, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145786, - 145786, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 145787, + "--bs-border-width", + 145785, 145801, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -278004,31 +249906,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145808, - 145808, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145809, - 145809, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 145810, + "--bs-border-style", + 145808, 145824, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -278054,31 +249938,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145831, - 145831, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145832, - 145832, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 145833, + "--bs-border-color", + 145831, 145847, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -278239,31 +250105,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145933, - 145933, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145934, - 145934, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 145935, + "--bs-border-width", + 145933, 145949, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -278289,31 +250137,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145956, - 145956, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145957, - 145957, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-style", - 145958, + "--bs-border-style", + 145956, 145972, { - "value": "bs-border-style" + "value": "--bs-border-style" } ], [ @@ -278339,31 +250169,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 145979, - 145979, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 145980, - 145980, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-color", - 145981, + "--bs-border-color", + 145979, 145995, { - "value": "bs-border-color" + "value": "--bs-border-color" } ], [ @@ -278499,31 +250311,13 @@ export const bootstrapTokens = [ 146063, null ], - [ - "delim-token", - "-", - 146064, - 146064, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146065, - 146065, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146066, + "--bs-border-opacity", + 146064, 146082, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -278584,31 +250378,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146108, - 146108, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146109, - 146109, - { - "value": "-" - } - ], [ "ident-token", - "bs-primary-rgb", - 146110, + "--bs-primary-rgb", + 146108, 146123, { - "value": "bs-primary-rgb" + "value": "--bs-primary-rgb" } ], [ @@ -278634,31 +250410,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146130, - 146130, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146131, - 146131, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146132, + "--bs-border-opacity", + 146130, 146148, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -278725,31 +250483,13 @@ export const bootstrapTokens = [ 146179, null ], - [ - "delim-token", - "-", - 146180, - 146180, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146181, - 146181, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146182, + "--bs-border-opacity", + 146180, 146198, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -278810,31 +250550,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146224, - 146224, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146225, - 146225, - { - "value": "-" - } - ], [ "ident-token", - "bs-secondary-rgb", - 146226, + "--bs-secondary-rgb", + 146224, 146241, { - "value": "bs-secondary-rgb" + "value": "--bs-secondary-rgb" } ], [ @@ -278860,31 +250582,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146248, - 146248, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146249, - 146249, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146250, + "--bs-border-opacity", + 146248, 146266, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -278951,31 +250655,13 @@ export const bootstrapTokens = [ 146295, null ], - [ - "delim-token", - "-", - 146296, - 146296, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146297, - 146297, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146298, + "--bs-border-opacity", + 146296, 146314, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279036,31 +250722,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146340, - 146340, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146341, - 146341, - { - "value": "-" - } - ], [ "ident-token", - "bs-success-rgb", - 146342, + "--bs-success-rgb", + 146340, 146355, { - "value": "bs-success-rgb" + "value": "--bs-success-rgb" } ], [ @@ -279086,31 +250754,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146362, - 146362, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146363, - 146363, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146364, + "--bs-border-opacity", + 146362, 146380, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279177,31 +250827,13 @@ export const bootstrapTokens = [ 146406, null ], - [ - "delim-token", - "-", - 146407, - 146407, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146408, - 146408, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146409, + "--bs-border-opacity", + 146407, 146425, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279262,31 +250894,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146451, - 146451, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146452, - 146452, - { - "value": "-" - } - ], [ "ident-token", - "bs-info-rgb", - 146453, + "--bs-info-rgb", + 146451, 146463, { - "value": "bs-info-rgb" + "value": "--bs-info-rgb" } ], [ @@ -279312,31 +250926,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146470, - 146470, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146471, - 146471, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146472, + "--bs-border-opacity", + 146470, 146488, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279403,31 +250999,13 @@ export const bootstrapTokens = [ 146517, null ], - [ - "delim-token", - "-", - 146518, - 146518, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146519, - 146519, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146520, + "--bs-border-opacity", + 146518, 146536, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279488,31 +251066,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146562, - 146562, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146563, - 146563, - { - "value": "-" - } - ], [ "ident-token", - "bs-warning-rgb", - 146564, + "--bs-warning-rgb", + 146562, 146577, { - "value": "bs-warning-rgb" + "value": "--bs-warning-rgb" } ], [ @@ -279538,31 +251098,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146584, - 146584, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146585, - 146585, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146586, + "--bs-border-opacity", + 146584, 146602, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279629,31 +251171,13 @@ export const bootstrapTokens = [ 146630, null ], - [ - "delim-token", - "-", - 146631, - 146631, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146632, - 146632, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146633, + "--bs-border-opacity", + 146631, 146649, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279714,31 +251238,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146675, - 146675, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146676, - 146676, - { - "value": "-" - } - ], [ "ident-token", - "bs-danger-rgb", - 146677, + "--bs-danger-rgb", + 146675, 146689, { - "value": "bs-danger-rgb" + "value": "--bs-danger-rgb" } ], [ @@ -279764,31 +251270,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146696, - 146696, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146697, - 146697, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146698, + "--bs-border-opacity", + 146696, 146714, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279855,31 +251343,13 @@ export const bootstrapTokens = [ 146741, null ], - [ - "delim-token", - "-", - 146742, - 146742, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146743, - 146743, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146744, + "--bs-border-opacity", + 146742, 146760, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -279940,31 +251410,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146786, - 146786, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146787, - 146787, - { - "value": "-" - } - ], [ "ident-token", - "bs-light-rgb", - 146788, + "--bs-light-rgb", + 146786, 146799, { - "value": "bs-light-rgb" + "value": "--bs-light-rgb" } ], [ @@ -279990,31 +251442,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146806, - 146806, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146807, - 146807, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146808, + "--bs-border-opacity", + 146806, 146824, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280081,31 +251515,13 @@ export const bootstrapTokens = [ 146850, null ], - [ - "delim-token", - "-", - 146851, - 146851, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146852, - 146852, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146853, + "--bs-border-opacity", + 146851, 146869, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280166,31 +251582,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146895, - 146895, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146896, - 146896, - { - "value": "-" - } - ], [ "ident-token", - "bs-dark-rgb", - 146897, + "--bs-dark-rgb", + 146895, 146907, { - "value": "bs-dark-rgb" + "value": "--bs-dark-rgb" } ], [ @@ -280216,31 +251614,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 146914, - 146914, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146915, - 146915, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146916, + "--bs-border-opacity", + 146914, 146932, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280307,31 +251687,13 @@ export const bootstrapTokens = [ 146959, null ], - [ - "delim-token", - "-", - 146960, - 146960, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 146961, - 146961, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 146962, + "--bs-border-opacity", + 146960, 146978, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280392,31 +251754,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 147004, - 147004, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147005, - 147005, - { - "value": "-" - } - ], [ "ident-token", - "bs-white-rgb", - 147006, + "--bs-white-rgb", + 147004, 147017, { - "value": "bs-white-rgb" + "value": "--bs-white-rgb" } ], [ @@ -280442,31 +251786,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 147024, - 147024, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147025, - 147025, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147026, + "--bs-border-opacity", + 147024, 147042, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280533,31 +251859,13 @@ export const bootstrapTokens = [ 147065, null ], - [ - "delim-token", - "-", - 147066, - 147066, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147067, - 147067, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 147068, + "--bs-border-width", + 147066, 147082, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -280610,31 +251918,13 @@ export const bootstrapTokens = [ 147097, null ], - [ - "delim-token", - "-", - 147098, - 147098, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147099, - 147099, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 147100, + "--bs-border-width", + 147098, 147114, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -280687,31 +251977,13 @@ export const bootstrapTokens = [ 147129, null ], - [ - "delim-token", - "-", - 147130, - 147130, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147131, - 147131, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 147132, + "--bs-border-width", + 147130, 147146, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -280764,31 +252036,13 @@ export const bootstrapTokens = [ 147161, null ], - [ - "delim-token", - "-", - 147162, - 147162, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147163, - 147163, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 147164, + "--bs-border-width", + 147162, 147178, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -280841,31 +252095,13 @@ export const bootstrapTokens = [ 147193, null ], - [ - "delim-token", - "-", - 147194, - 147194, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147195, - 147195, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-width", - 147196, + "--bs-border-width", + 147194, 147210, { - "value": "bs-border-width" + "value": "--bs-border-width" } ], [ @@ -280918,31 +252154,13 @@ export const bootstrapTokens = [ 147234, null ], - [ - "delim-token", - "-", - 147235, - 147235, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147236, - 147236, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147237, + "--bs-border-opacity", + 147235, 147253, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -280994,31 +252212,13 @@ export const bootstrapTokens = [ 147277, null ], - [ - "delim-token", - "-", - 147278, - 147278, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147279, - 147279, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147280, + "--bs-border-opacity", + 147278, 147296, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -281070,31 +252270,13 @@ export const bootstrapTokens = [ 147321, null ], - [ - "delim-token", - "-", - 147322, - 147322, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147323, - 147323, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147324, + "--bs-border-opacity", + 147322, 147340, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -281146,31 +252328,13 @@ export const bootstrapTokens = [ 147364, null ], - [ - "delim-token", - "-", - 147365, - 147365, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147366, - 147366, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147367, + "--bs-border-opacity", + 147365, 147383, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -281222,31 +252386,13 @@ export const bootstrapTokens = [ 147409, null ], - [ - "delim-token", - "-", - 147410, - 147410, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 147411, - 147411, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-opacity", - 147412, + "--bs-border-opacity", + 147410, 147428, { - "value": "bs-border-opacity" + "value": "--bs-border-opacity" } ], [ @@ -294586,31 +265732,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 153866, - 153866, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 153867, - 153867, - { - "value": "-" - } - ], [ "ident-token", - "bs-font-monospace", - 153868, + "--bs-font-monospace", + 153866, 153884, { - "value": "bs-font-monospace" + "value": "--bs-font-monospace" } ], [ @@ -297190,31 +268318,13 @@ export const bootstrapTokens = [ 155218, null ], - [ - "delim-token", - "-", - 155219, - 155219, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155220, - 155220, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155221, + "--bs-text-opacity", + 155219, 155235, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297275,31 +268385,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155254, - 155254, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155255, - 155255, - { - "value": "-" - } - ], [ "ident-token", - "bs-primary-rgb", - 155256, + "--bs-primary-rgb", + 155254, 155269, { - "value": "bs-primary-rgb" + "value": "--bs-primary-rgb" } ], [ @@ -297325,31 +268417,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155276, - 155276, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155277, - 155277, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155278, + "--bs-text-opacity", + 155276, 155292, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297416,31 +268490,13 @@ export const bootstrapTokens = [ 155321, null ], - [ - "delim-token", - "-", - 155322, - 155322, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155323, - 155323, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155324, + "--bs-text-opacity", + 155322, 155338, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297501,31 +268557,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155357, - 155357, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155358, - 155358, - { - "value": "-" - } - ], [ "ident-token", - "bs-secondary-rgb", - 155359, + "--bs-secondary-rgb", + 155357, 155374, { - "value": "bs-secondary-rgb" + "value": "--bs-secondary-rgb" } ], [ @@ -297551,31 +268589,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155381, - 155381, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155382, - 155382, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155383, + "--bs-text-opacity", + 155381, 155397, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297642,31 +268662,13 @@ export const bootstrapTokens = [ 155424, null ], - [ - "delim-token", - "-", - 155425, - 155425, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155426, - 155426, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155427, + "--bs-text-opacity", + 155425, 155441, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297727,31 +268729,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155460, - 155460, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155461, - 155461, - { - "value": "-" - } - ], [ "ident-token", - "bs-success-rgb", - 155462, + "--bs-success-rgb", + 155460, 155475, { - "value": "bs-success-rgb" + "value": "--bs-success-rgb" } ], [ @@ -297777,31 +268761,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155482, - 155482, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155483, - 155483, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155484, + "--bs-text-opacity", + 155482, 155498, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297868,31 +268834,13 @@ export const bootstrapTokens = [ 155522, null ], - [ - "delim-token", - "-", - 155523, - 155523, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155524, - 155524, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155525, + "--bs-text-opacity", + 155523, 155539, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -297953,31 +268901,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155558, - 155558, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155559, - 155559, - { - "value": "-" - } - ], [ "ident-token", - "bs-info-rgb", - 155560, + "--bs-info-rgb", + 155558, 155570, { - "value": "bs-info-rgb" + "value": "--bs-info-rgb" } ], [ @@ -298003,31 +268933,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155577, - 155577, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155578, - 155578, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155579, + "--bs-text-opacity", + 155577, 155593, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298094,31 +269006,13 @@ export const bootstrapTokens = [ 155620, null ], - [ - "delim-token", - "-", - 155621, - 155621, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155622, - 155622, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155623, + "--bs-text-opacity", + 155621, 155637, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298179,31 +269073,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155656, - 155656, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155657, - 155657, - { - "value": "-" - } - ], [ "ident-token", - "bs-warning-rgb", - 155658, + "--bs-warning-rgb", + 155656, 155671, { - "value": "bs-warning-rgb" + "value": "--bs-warning-rgb" } ], [ @@ -298229,31 +269105,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155678, - 155678, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155679, - 155679, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155680, + "--bs-text-opacity", + 155678, 155694, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298320,31 +269178,13 @@ export const bootstrapTokens = [ 155720, null ], - [ - "delim-token", - "-", - 155721, - 155721, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155722, - 155722, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155723, + "--bs-text-opacity", + 155721, 155737, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298405,31 +269245,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155756, - 155756, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155757, - 155757, - { - "value": "-" - } - ], [ "ident-token", - "bs-danger-rgb", - 155758, + "--bs-danger-rgb", + 155756, 155770, { - "value": "bs-danger-rgb" + "value": "--bs-danger-rgb" } ], [ @@ -298455,31 +269277,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155777, - 155777, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155778, - 155778, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155779, + "--bs-text-opacity", + 155777, 155793, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298546,31 +269350,13 @@ export const bootstrapTokens = [ 155818, null ], - [ - "delim-token", - "-", - 155819, - 155819, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155820, - 155820, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155821, + "--bs-text-opacity", + 155819, 155835, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298631,31 +269417,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155854, - 155854, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155855, - 155855, - { - "value": "-" - } - ], [ "ident-token", - "bs-light-rgb", - 155856, + "--bs-light-rgb", + 155854, 155867, { - "value": "bs-light-rgb" + "value": "--bs-light-rgb" } ], [ @@ -298681,31 +269449,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155874, - 155874, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155875, - 155875, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155876, + "--bs-text-opacity", + 155874, 155890, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298772,31 +269522,13 @@ export const bootstrapTokens = [ 155914, null ], - [ - "delim-token", - "-", - 155915, - 155915, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155916, - 155916, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155917, + "--bs-text-opacity", + 155915, 155931, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298857,31 +269589,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155950, - 155950, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155951, - 155951, - { - "value": "-" - } - ], [ "ident-token", - "bs-dark-rgb", - 155952, + "--bs-dark-rgb", + 155950, 155962, { - "value": "bs-dark-rgb" + "value": "--bs-dark-rgb" } ], [ @@ -298907,31 +269621,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 155969, - 155969, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 155970, - 155970, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 155971, + "--bs-text-opacity", + 155969, 155985, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -298998,31 +269694,13 @@ export const bootstrapTokens = [ 156010, null ], - [ - "delim-token", - "-", - 156011, - 156011, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156012, - 156012, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156013, + "--bs-text-opacity", + 156011, 156027, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299083,31 +269761,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156046, - 156046, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156047, - 156047, - { - "value": "-" - } - ], [ "ident-token", - "bs-black-rgb", - 156048, + "--bs-black-rgb", + 156046, 156059, { - "value": "bs-black-rgb" + "value": "--bs-black-rgb" } ], [ @@ -299133,31 +269793,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156066, - 156066, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156067, - 156067, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156068, + "--bs-text-opacity", + 156066, 156082, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299224,31 +269866,13 @@ export const bootstrapTokens = [ 156107, null ], - [ - "delim-token", - "-", - 156108, - 156108, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156109, - 156109, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156110, + "--bs-text-opacity", + 156108, 156124, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299309,31 +269933,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156143, - 156143, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156144, - 156144, - { - "value": "-" - } - ], [ "ident-token", - "bs-white-rgb", - 156145, + "--bs-white-rgb", + 156143, 156156, { - "value": "bs-white-rgb" + "value": "--bs-white-rgb" } ], [ @@ -299359,31 +269965,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156163, - 156163, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156164, - 156164, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156165, + "--bs-text-opacity", + 156163, 156179, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299450,31 +270038,13 @@ export const bootstrapTokens = [ 156203, null ], - [ - "delim-token", - "-", - 156204, - 156204, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156205, - 156205, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156206, + "--bs-text-opacity", + 156204, 156220, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299535,31 +270105,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156239, - 156239, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156240, - 156240, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-color-rgb", - 156241, + "--bs-body-color-rgb", + 156239, 156257, { - "value": "bs-body-color-rgb" + "value": "--bs-body-color-rgb" } ], [ @@ -299585,31 +270137,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156264, - 156264, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156265, - 156265, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156266, + "--bs-text-opacity", + 156264, 156280, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299676,31 +270210,13 @@ export const bootstrapTokens = [ 156305, null ], - [ - "delim-token", - "-", - 156306, - 156306, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156307, - 156307, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156308, + "--bs-text-opacity", + 156306, 156322, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299803,31 +270319,13 @@ export const bootstrapTokens = [ 156364, null ], - [ - "delim-token", - "-", - 156365, - 156365, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156366, - 156366, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156367, + "--bs-text-opacity", + 156365, 156381, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -299997,31 +270495,13 @@ export const bootstrapTokens = [ 156430, null ], - [ - "delim-token", - "-", - 156431, - 156431, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156432, - 156432, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156433, + "--bs-text-opacity", + 156431, 156447, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300191,31 +270671,13 @@ export const bootstrapTokens = [ 156499, null ], - [ - "delim-token", - "-", - 156500, - 156500, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156501, - 156501, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156502, + "--bs-text-opacity", + 156500, 156516, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300317,31 +270779,13 @@ export const bootstrapTokens = [ 156560, null ], - [ - "delim-token", - "-", - 156561, - 156561, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156562, - 156562, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156563, + "--bs-text-opacity", + 156561, 156577, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300393,31 +270837,13 @@ export const bootstrapTokens = [ 156600, null ], - [ - "delim-token", - "-", - 156601, - 156601, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156602, - 156602, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156603, + "--bs-text-opacity", + 156601, 156617, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300469,31 +270895,13 @@ export const bootstrapTokens = [ 156639, null ], - [ - "delim-token", - "-", - 156640, - 156640, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156641, - 156641, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156642, + "--bs-text-opacity", + 156640, 156656, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300545,31 +270953,13 @@ export const bootstrapTokens = [ 156680, null ], - [ - "delim-token", - "-", - 156681, - 156681, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156682, - 156682, - { - "value": "-" - } - ], [ "ident-token", - "bs-text-opacity", - 156683, + "--bs-text-opacity", + 156681, 156697, { - "value": "bs-text-opacity" + "value": "--bs-text-opacity" } ], [ @@ -300621,31 +271011,13 @@ export const bootstrapTokens = [ 156712, null ], - [ - "delim-token", - "-", - 156713, - 156713, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156714, - 156714, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156715, + "--bs-bg-opacity", + 156713, 156727, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -300706,31 +271078,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156757, - 156757, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156758, - 156758, - { - "value": "-" - } - ], [ "ident-token", - "bs-primary-rgb", - 156759, + "--bs-primary-rgb", + 156757, 156772, { - "value": "bs-primary-rgb" + "value": "--bs-primary-rgb" } ], [ @@ -300756,31 +271110,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156779, - 156779, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156780, - 156780, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156781, + "--bs-bg-opacity", + 156779, 156793, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -300847,31 +271183,13 @@ export const bootstrapTokens = [ 156820, null ], - [ - "delim-token", - "-", - 156821, - 156821, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156822, - 156822, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156823, + "--bs-bg-opacity", + 156821, 156835, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -300932,31 +271250,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156865, - 156865, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156866, - 156866, - { - "value": "-" - } - ], [ "ident-token", - "bs-secondary-rgb", - 156867, + "--bs-secondary-rgb", + 156865, 156882, { - "value": "bs-secondary-rgb" + "value": "--bs-secondary-rgb" } ], [ @@ -300982,31 +271282,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156889, - 156889, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156890, - 156890, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156891, + "--bs-bg-opacity", + 156889, 156903, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301073,31 +271355,13 @@ export const bootstrapTokens = [ 156928, null ], - [ - "delim-token", - "-", - 156929, - 156929, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156930, - 156930, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156931, + "--bs-bg-opacity", + 156929, 156943, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301158,31 +271422,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156973, - 156973, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156974, - 156974, - { - "value": "-" - } - ], [ "ident-token", - "bs-success-rgb", - 156975, + "--bs-success-rgb", + 156973, 156988, { - "value": "bs-success-rgb" + "value": "--bs-success-rgb" } ], [ @@ -301208,31 +271454,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 156995, - 156995, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 156996, - 156996, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 156997, + "--bs-bg-opacity", + 156995, 157009, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301299,31 +271527,13 @@ export const bootstrapTokens = [ 157031, null ], - [ - "delim-token", - "-", - 157032, - 157032, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157033, - 157033, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157034, + "--bs-bg-opacity", + 157032, 157046, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301384,31 +271594,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157076, - 157076, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157077, - 157077, - { - "value": "-" - } - ], [ "ident-token", - "bs-info-rgb", - 157078, + "--bs-info-rgb", + 157076, 157088, { - "value": "bs-info-rgb" + "value": "--bs-info-rgb" } ], [ @@ -301434,31 +271626,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157095, - 157095, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157096, - 157096, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157097, + "--bs-bg-opacity", + 157095, 157109, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301525,31 +271699,13 @@ export const bootstrapTokens = [ 157134, null ], - [ - "delim-token", - "-", - 157135, - 157135, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157136, - 157136, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157137, + "--bs-bg-opacity", + 157135, 157149, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301610,31 +271766,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157179, - 157179, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157180, - 157180, - { - "value": "-" - } - ], [ "ident-token", - "bs-warning-rgb", - 157181, + "--bs-warning-rgb", + 157179, 157194, { - "value": "bs-warning-rgb" + "value": "--bs-warning-rgb" } ], [ @@ -301660,31 +271798,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157201, - 157201, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157202, - 157202, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157203, + "--bs-bg-opacity", + 157201, 157215, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301751,31 +271871,13 @@ export const bootstrapTokens = [ 157239, null ], - [ - "delim-token", - "-", - 157240, - 157240, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157241, - 157241, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157242, + "--bs-bg-opacity", + 157240, 157254, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301836,31 +271938,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157284, - 157284, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157285, - 157285, - { - "value": "-" - } - ], [ "ident-token", - "bs-danger-rgb", - 157286, + "--bs-danger-rgb", + 157284, 157298, { - "value": "bs-danger-rgb" + "value": "--bs-danger-rgb" } ], [ @@ -301886,31 +271970,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157305, - 157305, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157306, - 157306, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157307, + "--bs-bg-opacity", + 157305, 157319, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -301977,31 +272043,13 @@ export const bootstrapTokens = [ 157342, null ], - [ - "delim-token", - "-", - 157343, - 157343, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157344, - 157344, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157345, + "--bs-bg-opacity", + 157343, 157357, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302062,31 +272110,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157387, - 157387, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157388, - 157388, - { - "value": "-" - } - ], [ "ident-token", - "bs-light-rgb", - 157389, + "--bs-light-rgb", + 157387, 157400, { - "value": "bs-light-rgb" + "value": "--bs-light-rgb" } ], [ @@ -302112,31 +272142,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157407, - 157407, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157408, - 157408, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157409, + "--bs-bg-opacity", + 157407, 157421, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302203,31 +272215,13 @@ export const bootstrapTokens = [ 157443, null ], - [ - "delim-token", - "-", - 157444, - 157444, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157445, - 157445, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157446, + "--bs-bg-opacity", + 157444, 157458, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302288,31 +272282,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157488, - 157488, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157489, - 157489, - { - "value": "-" - } - ], [ "ident-token", - "bs-dark-rgb", - 157490, + "--bs-dark-rgb", + 157488, 157500, { - "value": "bs-dark-rgb" + "value": "--bs-dark-rgb" } ], [ @@ -302338,31 +272314,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157507, - 157507, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157508, - 157508, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157509, + "--bs-bg-opacity", + 157507, 157521, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302429,31 +272387,13 @@ export const bootstrapTokens = [ 157544, null ], - [ - "delim-token", - "-", - 157545, - 157545, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157546, - 157546, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157547, + "--bs-bg-opacity", + 157545, 157559, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302514,31 +272454,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157589, - 157589, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157590, - 157590, - { - "value": "-" - } - ], [ "ident-token", - "bs-black-rgb", - 157591, + "--bs-black-rgb", + 157589, 157602, { - "value": "bs-black-rgb" + "value": "--bs-black-rgb" } ], [ @@ -302564,31 +272486,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157609, - 157609, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157610, - 157610, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157611, + "--bs-bg-opacity", + 157609, 157623, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302655,31 +272559,13 @@ export const bootstrapTokens = [ 157646, null ], - [ - "delim-token", - "-", - 157647, - 157647, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157648, - 157648, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157649, + "--bs-bg-opacity", + 157647, 157661, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302740,31 +272626,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157691, - 157691, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157692, - 157692, - { - "value": "-" - } - ], [ "ident-token", - "bs-white-rgb", - 157693, + "--bs-white-rgb", + 157691, 157704, { - "value": "bs-white-rgb" + "value": "--bs-white-rgb" } ], [ @@ -302790,31 +272658,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157711, - 157711, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157712, - 157712, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157713, + "--bs-bg-opacity", + 157711, 157725, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302881,31 +272731,13 @@ export const bootstrapTokens = [ 157747, null ], - [ - "delim-token", - "-", - 157748, - 157748, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157749, - 157749, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157750, + "--bs-bg-opacity", + 157748, 157762, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -302966,31 +272798,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157792, - 157792, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157793, - 157793, - { - "value": "-" - } - ], [ "ident-token", - "bs-body-bg-rgb", - 157794, + "--bs-body-bg-rgb", + 157792, 157807, { - "value": "bs-body-bg-rgb" + "value": "--bs-body-bg-rgb" } ], [ @@ -303016,31 +272830,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 157814, - 157814, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157815, - 157815, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157816, + "--bs-bg-opacity", + 157814, 157828, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303107,31 +272903,13 @@ export const bootstrapTokens = [ 157857, null ], - [ - "delim-token", - "-", - 157858, - 157858, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157859, - 157859, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157860, + "--bs-bg-opacity", + 157858, 157872, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303233,31 +273011,13 @@ export const bootstrapTokens = [ 157929, null ], - [ - "delim-token", - "-", - 157930, - 157930, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157931, - 157931, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157932, + "--bs-bg-opacity", + 157930, 157944, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303309,31 +273069,13 @@ export const bootstrapTokens = [ 157964, null ], - [ - "delim-token", - "-", - 157965, - 157965, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 157966, - 157966, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 157967, + "--bs-bg-opacity", + 157965, 157979, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303385,31 +273127,13 @@ export const bootstrapTokens = [ 158000, null ], - [ - "delim-token", - "-", - 158001, - 158001, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158002, - 158002, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 158003, + "--bs-bg-opacity", + 158001, 158015, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303461,31 +273185,13 @@ export const bootstrapTokens = [ 158035, null ], - [ - "delim-token", - "-", - 158036, - 158036, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158037, - 158037, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 158038, + "--bs-bg-opacity", + 158036, 158050, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303537,31 +273243,13 @@ export const bootstrapTokens = [ 158072, null ], - [ - "delim-token", - "-", - 158073, - 158073, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158074, - 158074, - { - "value": "-" - } - ], [ "ident-token", - "bs-bg-opacity", - 158075, + "--bs-bg-opacity", + 158073, 158087, { - "value": "bs-bg-opacity" + "value": "--bs-bg-opacity" } ], [ @@ -303638,31 +273326,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158125, - 158125, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158126, - 158126, - { - "value": "-" - } - ], [ "ident-token", - "bs-gradient", - 158127, + "--bs-gradient", + 158125, 158137, { - "value": "bs-gradient" + "value": "--bs-gradient" } ], [ @@ -303722,22 +273392,13 @@ export const bootstrapTokens = [ 158166, null ], - [ - "delim-token", - "-", - 158167, - 158167, - { - "value": "-" - } - ], [ "ident-token", - "webkit-user-select", - 158168, + "-webkit-user-select", + 158167, 158185, { - "value": "webkit-user-select" + "value": "-webkit-user-select" } ], [ @@ -303781,22 +273442,13 @@ export const bootstrapTokens = [ 158200, null ], - [ - "delim-token", - "-", - 158201, - 158201, - { - "value": "-" - } - ], [ "ident-token", - "moz-user-select", - 158202, + "-moz-user-select", + 158201, 158216, { - "value": "moz-user-select" + "value": "-moz-user-select" } ], [ @@ -303915,22 +273567,13 @@ export const bootstrapTokens = [ 158275, null ], - [ - "delim-token", - "-", - 158276, - 158276, - { - "value": "-" - } - ], [ "ident-token", - "webkit-user-select", - 158277, + "-webkit-user-select", + 158276, 158294, { - "value": "webkit-user-select" + "value": "-webkit-user-select" } ], [ @@ -303974,22 +273617,13 @@ export const bootstrapTokens = [ 158310, null ], - [ - "delim-token", - "-", - 158311, - 158311, - { - "value": "-" - } - ], [ "ident-token", - "moz-user-select", - 158312, + "-moz-user-select", + 158311, 158326, { - "value": "moz-user-select" + "value": "-moz-user-select" } ], [ @@ -304108,22 +273742,13 @@ export const bootstrapTokens = [ 158387, null ], - [ - "delim-token", - "-", - 158388, - 158388, - { - "value": "-" - } - ], [ "ident-token", - "webkit-user-select", - 158389, + "-webkit-user-select", + 158388, 158406, { - "value": "webkit-user-select" + "value": "-webkit-user-select" } ], [ @@ -304167,22 +273792,13 @@ export const bootstrapTokens = [ 158422, null ], - [ - "delim-token", - "-", - 158423, - 158423, - { - "value": "-" - } - ], [ "ident-token", - "moz-user-select", - 158424, + "-moz-user-select", + 158423, 158438, { - "value": "moz-user-select" + "value": "-moz-user-select" } ], [ @@ -304476,31 +274092,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158587, - 158587, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158588, - 158588, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 158589, + "--bs-border-radius", + 158587, 158604, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -304661,31 +274259,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158683, - 158683, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158684, - 158684, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-sm", - 158685, + "--bs-border-radius-sm", + 158683, 158703, { - "value": "bs-border-radius-sm" + "value": "--bs-border-radius-sm" } ], [ @@ -304770,31 +274350,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158745, - 158745, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158746, - 158746, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 158747, + "--bs-border-radius", + 158745, 158762, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -304879,31 +274441,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158804, - 158804, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158805, - 158805, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-lg", - 158806, + "--bs-border-radius-lg", + 158804, 158824, { - "value": "bs-border-radius-lg" + "value": "--bs-border-radius-lg" } ], [ @@ -304988,31 +274532,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158866, - 158866, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158867, - 158867, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-xl", - 158868, + "--bs-border-radius-xl", + 158866, 158886, { - "value": "bs-border-radius-xl" + "value": "--bs-border-radius-xl" } ], [ @@ -305097,31 +274623,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 158928, - 158928, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 158929, - 158929, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-2xl", - 158930, + "--bs-border-radius-2xl", + 158928, 158949, { - "value": "bs-border-radius-2xl" + "value": "--bs-border-radius-2xl" } ], [ @@ -305281,31 +274789,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159038, - 159038, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159039, - 159039, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius-pill", - 159040, + "--bs-border-radius-pill", + 159038, 159060, { - "value": "bs-border-radius-pill" + "value": "--bs-border-radius-pill" } ], [ @@ -305390,31 +274880,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159113, - 159113, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159114, - 159114, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159115, + "--bs-border-radius", + 159113, 159130, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305474,31 +274946,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159171, - 159171, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159172, - 159172, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159173, + "--bs-border-radius", + 159171, 159188, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305583,31 +275037,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159242, - 159242, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159243, - 159243, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159244, + "--bs-border-radius", + 159242, 159259, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305667,31 +275103,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159303, - 159303, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159304, - 159304, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159305, + "--bs-border-radius", + 159303, 159320, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305776,31 +275194,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159380, - 159380, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159381, - 159381, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159382, + "--bs-border-radius", + 159380, 159397, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305860,31 +275260,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159440, - 159440, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159441, - 159441, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159442, + "--bs-border-radius", + 159440, 159457, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -305969,31 +275351,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159515, - 159515, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159516, - 159516, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159517, + "--bs-border-radius", + 159515, 159532, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ @@ -306053,31 +275417,13 @@ export const bootstrapTokens = [ "value": "var" } ], - [ - "delim-token", - "-", - 159572, - 159572, - { - "value": "-" - } - ], - [ - "delim-token", - "-", - 159573, - 159573, - { - "value": "-" - } - ], [ "ident-token", - "bs-border-radius", - 159574, + "--bs-border-radius", + 159572, 159589, { - "value": "bs-border-radius" + "value": "--bs-border-radius" } ], [ From ac2010f678b11155bc0377e56ec4b803e1c9c542 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Wed, 21 Sep 2022 22:16:48 +0200 Subject: [PATCH 33/59] docs --- packages/css-tokenizer/README.md | 121 +- .../test/complex/parse-error.mjs | 36 + .../test/consume/comment-token.mjs | 24 - packages/css-tokenizer/test/test.mjs | 2 +- .../test/token/bootstrap-tokens.mjs | 343430 --------------- .../css-tokenizer/test/token/bootstrap.mjs | 52 - 6 files changed, 138 insertions(+), 343527 deletions(-) create mode 100644 packages/css-tokenizer/test/complex/parse-error.mjs delete mode 100644 packages/css-tokenizer/test/consume/comment-token.mjs delete mode 100644 packages/css-tokenizer/test/token/bootstrap-tokens.mjs delete mode 100644 packages/css-tokenizer/test/token/bootstrap.mjs diff --git a/packages/css-tokenizer/README.md b/packages/css-tokenizer/README.md index c474829df8..3fc1cef613 100644 --- a/packages/css-tokenizer/README.md +++ b/packages/css-tokenizer/README.md @@ -1,29 +1,21 @@ -# TODO +# CSS Tokenizer -Implemented from : https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/ - -A CSS tokenizer that strictly follows the spec. +[npm version][npm-url] +[Build Status][cli-url] +[Discord][discord] -Goals : -- only a tokenizer. I want to use the tokenizer of CSSTree but I don't want the other 1.5mb that come with it. This is a recurring problem. Most good CSS tokenizers are embedded in other packages. -- just follows the spec without having any opinions about anything. -- must be transformable -- must be able to serialize from a constructed AST -- must be able to serialize from a parsed AST (without any mutation or data loss) -- tokens must have the same interface as the PostCSS tokenizer. This does not mean that tokens will be equivalent or that the tokenizer will have the exact same interface. -- maintainable -- understandable if you place the code next to the specification +Implemented from : https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/ -Non goals : -- performance (we can make it fast later) -- ease of use (a good API requires opinionated code, I am trying to avoid this) +## Usage -This will be a mashup of my previous work on a [CSS tokenizer in Go](https://github.com/romainmenke/css) and the API surface of the PostCSS tokenizer. +Add [CSS Tokenizer] to your project: -Example : +```bash +npm install postcss @csstools/css-tokenizer --save-dev +``` ```js -import { tokenizer } from '@csstools/css-tokenizer'; +import { tokenizer, TokenType } from '@csstools/css-tokenizer'; const myCSS = `@media only screen and (min-width: 768rem) { .foo { @@ -38,10 +30,99 @@ const t = tokenizer({ while (true) { const token = t.nextToken(); - if (token[0] === 'EOF-token') { + if (token[0] === TokenType.EOF) { + break; + } + + console.log(token); +} +``` + +### Options + +```ts +{ + commentsAreTokens?: false, + onParseError?: (error: ParserError) => void +} +``` + +#### `commentsAreTokens` + +Following the CSS specification comments are never returned by the tokenizer. +For many tools however it is desirable to be able to convert tokens back to a string. + +```js +import { tokenizer, TokenType } from '@csstools/css-tokenizer'; + +const t = tokenizer({ + css: `/* a comment */`, +}, { commentsAreTokens: true }); + +while (true) { + const token = t.nextToken(); + if (token[0] === TokenType.EOF) { break; } console.log(token); } ``` + +logs : `['comment', '/* a comment */', , , undefined]` + + +#### `onParseError` + +The tokenizer is forgiving and won't stop when a parse error is encountered. +Parse errors also aren't tokens. + +To receive parsing error information you can set a callback. + +```js +import { tokenizer, TokenType } from '@csstools/css-tokenizer'; + +const t = tokenizer({ + css: '\\', +}, { onParseError: (err) => console.warn(err) }); + +while (true) { + const token = t.nextToken(); + if (token[0] === TokenType.EOF) { + break; + } +} +``` + +logs : + +```js +{ + message: 'Unexpected EOF while consuming an escaped code point.', + start: 0, + end: 0, + state: ['4.3.7. Consume an escaped code point', 'Unexpected EOF'], +} +``` + +Parser errors will try to inform you about the point in the tokenizer logic the error happened. +This tells you the kind of error. + +`start` and `end` are the location in your CSS source code. + +## Goals and non-goals + +Things this package aims to be: +- specification compliant CSS tokenizer +- a reliable low level package to be used in CSS parsers + +What it is not: +- opinionated +- fast +- small + +[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test +[discord]: https://discord.gg/bUadyRwkJS +[npm-url]: https://www.npmjs.com/package/@csstools/css-tokenizer + +[CSS Tokenizer]: https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer diff --git a/packages/css-tokenizer/test/complex/parse-error.mjs b/packages/css-tokenizer/test/complex/parse-error.mjs new file mode 100644 index 0000000000..99517f52f4 --- /dev/null +++ b/packages/css-tokenizer/test/complex/parse-error.mjs @@ -0,0 +1,36 @@ +import { tokenizer, TokenType } from '@csstools/css-tokenizer'; +import assert from 'assert'; + +{ + const parseErrors = []; + const t = tokenizer( + { + css: '\\', + }, + { + onParseError: (err) => { + parseErrors.push(err); + }, + }, + ); + + // eslint-disable-next-line no-constant-condition + while (true) { + const token = t.nextToken(); + if (token[0] === TokenType.EOF) { + break; + } + } + + assert.deepEqual( + parseErrors, + [ + { + message: 'Unexpected EOF while consuming an escaped code point.', + start: 0, + end: 0, + state: ['4.3.7. Consume an escaped code point', 'Unexpected EOF'], + }, + ], + ); +} diff --git a/packages/css-tokenizer/test/consume/comment-token.mjs b/packages/css-tokenizer/test/consume/comment-token.mjs deleted file mode 100644 index 7992b77b9f..0000000000 --- a/packages/css-tokenizer/test/consume/comment-token.mjs +++ /dev/null @@ -1,24 +0,0 @@ -import assert from 'assert'; -import { Reader, consumeComment } from '@csstools/css-tokenizer'; - -{ - const r = new Reader('/* a comment */'); - r.readCodePoint(); - - const token = consumeComment({}, r); - - assert.deepEqual( - token, - ['comment', '/* a comment */', 0, 14, undefined], - ); - - assert.deepEqual( - r.slice(token[2], token[3] + 1), - '/* a comment */', - ); - - assert.deepEqual( - r.representationString(), - '/* a comment */', - ); -} diff --git a/packages/css-tokenizer/test/test.mjs b/packages/css-tokenizer/test/test.mjs index c27ecdf831..71d21591aa 100644 --- a/packages/css-tokenizer/test/test.mjs +++ b/packages/css-tokenizer/test/test.mjs @@ -10,4 +10,4 @@ import './token/numeric.mjs'; import './token/url.mjs'; // Complex import './complex/at-media-params.mjs'; -// import './token/bootstrap.mjs'; +import './complex/parse-error.mjs'; diff --git a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs b/packages/css-tokenizer/test/token/bootstrap-tokens.mjs deleted file mode 100644 index 9ffa7e3e47..0000000000 --- a/packages/css-tokenizer/test/token/bootstrap-tokens.mjs +++ /dev/null @@ -1,343430 +0,0 @@ -/* eslint-disable */ -export const bootstrapTokens = [ - [ - "at-keyword-token", - "@charset", - 0, - 7, - { - "value": "charset" - } - ], - [ - "whitespace-token", - " ", - 8, - 8, - null - ], - [ - "string-token", - "\"UTF-8\"", - 9, - 15, - { - "value": "UTF-8" - } - ], - [ - "semicolon-token", - ";", - 16, - 16, - null - ], - [ - "colon-token", - ":", - 231, - 231, - null - ], - [ - "ident-token", - "root", - 232, - 235, - { - "value": "root" - } - ], - [ - "{-token", - "{", - 236, - 236, - null - ], - [ - "ident-token", - "--bs-blue", - 237, - 245, - { - "value": "--bs-blue" - } - ], - [ - "colon-token", - ":", - 246, - 246, - null - ], - [ - "hash-token", - "#0d6efd", - 247, - 253, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 254, - 254, - null - ], - [ - "ident-token", - "--bs-indigo", - 255, - 265, - { - "value": "--bs-indigo" - } - ], - [ - "colon-token", - ":", - 266, - 266, - null - ], - [ - "hash-token", - "#6610f2", - 267, - 273, - { - "value": "6610f2", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 274, - 274, - null - ], - [ - "ident-token", - "--bs-purple", - 275, - 285, - { - "value": "--bs-purple" - } - ], - [ - "colon-token", - ":", - 286, - 286, - null - ], - [ - "hash-token", - "#6f42c1", - 287, - 293, - { - "value": "6f42c1", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 294, - 294, - null - ], - [ - "ident-token", - "--bs-pink", - 295, - 303, - { - "value": "--bs-pink" - } - ], - [ - "colon-token", - ":", - 304, - 304, - null - ], - [ - "hash-token", - "#d63384", - 305, - 311, - { - "value": "d63384", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 312, - 312, - null - ], - [ - "ident-token", - "--bs-red", - 313, - 320, - { - "value": "--bs-red" - } - ], - [ - "colon-token", - ":", - 321, - 321, - null - ], - [ - "hash-token", - "#dc3545", - 322, - 328, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 329, - 329, - null - ], - [ - "ident-token", - "--bs-orange", - 330, - 340, - { - "value": "--bs-orange" - } - ], - [ - "colon-token", - ":", - 341, - 341, - null - ], - [ - "hash-token", - "#fd7e14", - 342, - 348, - { - "value": "fd7e14", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 349, - 349, - null - ], - [ - "ident-token", - "--bs-yellow", - 350, - 360, - { - "value": "--bs-yellow" - } - ], - [ - "colon-token", - ":", - 361, - 361, - null - ], - [ - "hash-token", - "#ffc107", - 362, - 368, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 369, - 369, - null - ], - [ - "ident-token", - "--bs-green", - 370, - 379, - { - "value": "--bs-green" - } - ], - [ - "colon-token", - ":", - 380, - 380, - null - ], - [ - "hash-token", - "#198754", - 381, - 387, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 388, - 388, - null - ], - [ - "ident-token", - "--bs-teal", - 389, - 397, - { - "value": "--bs-teal" - } - ], - [ - "colon-token", - ":", - 398, - 398, - null - ], - [ - "hash-token", - "#20c997", - 399, - 405, - { - "value": "20c997", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 406, - 406, - null - ], - [ - "ident-token", - "--bs-cyan", - 407, - 415, - { - "value": "--bs-cyan" - } - ], - [ - "colon-token", - ":", - 416, - 416, - null - ], - [ - "hash-token", - "#0dcaf0", - 417, - 423, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 424, - 424, - null - ], - [ - "ident-token", - "--bs-black", - 425, - 434, - { - "value": "--bs-black" - } - ], - [ - "colon-token", - ":", - 435, - 435, - null - ], - [ - "hash-token", - "#000", - 436, - 439, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 440, - 440, - null - ], - [ - "ident-token", - "--bs-white", - 441, - 450, - { - "value": "--bs-white" - } - ], - [ - "colon-token", - ":", - 451, - 451, - null - ], - [ - "hash-token", - "#fff", - 452, - 455, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 456, - 456, - null - ], - [ - "ident-token", - "--bs-gray", - 457, - 465, - { - "value": "--bs-gray" - } - ], - [ - "colon-token", - ":", - 466, - 466, - null - ], - [ - "hash-token", - "#6c757d", - 467, - 473, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 474, - 474, - null - ], - [ - "ident-token", - "--bs-gray-dark", - 475, - 488, - { - "value": "--bs-gray-dark" - } - ], - [ - "colon-token", - ":", - 489, - 489, - null - ], - [ - "hash-token", - "#343a40", - 490, - 496, - { - "value": "343a40", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 497, - 497, - null - ], - [ - "ident-token", - "--bs-gray-100", - 498, - 510, - { - "value": "--bs-gray-100" - } - ], - [ - "colon-token", - ":", - 511, - 511, - null - ], - [ - "hash-token", - "#f8f9fa", - 512, - 518, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 519, - 519, - null - ], - [ - "ident-token", - "--bs-gray-200", - 520, - 532, - { - "value": "--bs-gray-200" - } - ], - [ - "colon-token", - ":", - 533, - 533, - null - ], - [ - "hash-token", - "#e9ecef", - 534, - 540, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 541, - 541, - null - ], - [ - "ident-token", - "--bs-gray-300", - 542, - 554, - { - "value": "--bs-gray-300" - } - ], - [ - "colon-token", - ":", - 555, - 555, - null - ], - [ - "hash-token", - "#dee2e6", - 556, - 562, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 563, - 563, - null - ], - [ - "ident-token", - "--bs-gray-400", - 564, - 576, - { - "value": "--bs-gray-400" - } - ], - [ - "colon-token", - ":", - 577, - 577, - null - ], - [ - "hash-token", - "#ced4da", - 578, - 584, - { - "value": "ced4da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 585, - 585, - null - ], - [ - "ident-token", - "--bs-gray-500", - 586, - 598, - { - "value": "--bs-gray-500" - } - ], - [ - "colon-token", - ":", - 599, - 599, - null - ], - [ - "hash-token", - "#adb5bd", - 600, - 606, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 607, - 607, - null - ], - [ - "ident-token", - "--bs-gray-600", - 608, - 620, - { - "value": "--bs-gray-600" - } - ], - [ - "colon-token", - ":", - 621, - 621, - null - ], - [ - "hash-token", - "#6c757d", - 622, - 628, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 629, - 629, - null - ], - [ - "ident-token", - "--bs-gray-700", - 630, - 642, - { - "value": "--bs-gray-700" - } - ], - [ - "colon-token", - ":", - 643, - 643, - null - ], - [ - "hash-token", - "#495057", - 644, - 650, - { - "value": "495057", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 651, - 651, - null - ], - [ - "ident-token", - "--bs-gray-800", - 652, - 664, - { - "value": "--bs-gray-800" - } - ], - [ - "colon-token", - ":", - 665, - 665, - null - ], - [ - "hash-token", - "#343a40", - 666, - 672, - { - "value": "343a40", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 673, - 673, - null - ], - [ - "ident-token", - "--bs-gray-900", - 674, - 686, - { - "value": "--bs-gray-900" - } - ], - [ - "colon-token", - ":", - 687, - 687, - null - ], - [ - "hash-token", - "#212529", - 688, - 694, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 695, - 695, - null - ], - [ - "ident-token", - "--bs-primary", - 696, - 707, - { - "value": "--bs-primary" - } - ], - [ - "colon-token", - ":", - 708, - 708, - null - ], - [ - "hash-token", - "#0d6efd", - 709, - 715, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 716, - 716, - null - ], - [ - "ident-token", - "--bs-secondary", - 717, - 730, - { - "value": "--bs-secondary" - } - ], - [ - "colon-token", - ":", - 731, - 731, - null - ], - [ - "hash-token", - "#6c757d", - 732, - 738, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 739, - 739, - null - ], - [ - "ident-token", - "--bs-success", - 740, - 751, - { - "value": "--bs-success" - } - ], - [ - "colon-token", - ":", - 752, - 752, - null - ], - [ - "hash-token", - "#198754", - 753, - 759, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 760, - 760, - null - ], - [ - "ident-token", - "--bs-info", - 761, - 769, - { - "value": "--bs-info" - } - ], - [ - "colon-token", - ":", - 770, - 770, - null - ], - [ - "hash-token", - "#0dcaf0", - 771, - 777, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 778, - 778, - null - ], - [ - "ident-token", - "--bs-warning", - 779, - 790, - { - "value": "--bs-warning" - } - ], - [ - "colon-token", - ":", - 791, - 791, - null - ], - [ - "hash-token", - "#ffc107", - 792, - 798, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 799, - 799, - null - ], - [ - "ident-token", - "--bs-danger", - 800, - 810, - { - "value": "--bs-danger" - } - ], - [ - "colon-token", - ":", - 811, - 811, - null - ], - [ - "hash-token", - "#dc3545", - 812, - 818, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 819, - 819, - null - ], - [ - "ident-token", - "--bs-light", - 820, - 829, - { - "value": "--bs-light" - } - ], - [ - "colon-token", - ":", - 830, - 830, - null - ], - [ - "hash-token", - "#f8f9fa", - 831, - 837, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 838, - 838, - null - ], - [ - "ident-token", - "--bs-dark", - 839, - 847, - { - "value": "--bs-dark" - } - ], - [ - "colon-token", - ":", - 848, - 848, - null - ], - [ - "hash-token", - "#212529", - 849, - 855, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 856, - 856, - null - ], - [ - "ident-token", - "--bs-primary-rgb", - 857, - 872, - { - "value": "--bs-primary-rgb" - } - ], - [ - "colon-token", - ":", - 873, - 873, - null - ], - [ - "number-token", - "13", - 874, - 875, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 876, - 876, - null - ], - [ - "number-token", - "110", - 877, - 879, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 880, - 880, - null - ], - [ - "number-token", - "253", - 881, - 883, - { - "value": 253, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 884, - 884, - null - ], - [ - "ident-token", - "--bs-secondary-rgb", - 885, - 902, - { - "value": "--bs-secondary-rgb" - } - ], - [ - "colon-token", - ":", - 903, - 903, - null - ], - [ - "number-token", - "108", - 904, - 906, - { - "value": 108, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 907, - 907, - null - ], - [ - "number-token", - "117", - 908, - 910, - { - "value": 117, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 911, - 911, - null - ], - [ - "number-token", - "125", - 912, - 914, - { - "value": 125, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 915, - 915, - null - ], - [ - "ident-token", - "--bs-success-rgb", - 916, - 931, - { - "value": "--bs-success-rgb" - } - ], - [ - "colon-token", - ":", - 932, - 932, - null - ], - [ - "number-token", - "25", - 933, - 934, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 935, - 935, - null - ], - [ - "number-token", - "135", - 936, - 938, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 939, - 939, - null - ], - [ - "number-token", - "84", - 940, - 941, - { - "value": 84, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 942, - 942, - null - ], - [ - "ident-token", - "--bs-info-rgb", - 943, - 955, - { - "value": "--bs-info-rgb" - } - ], - [ - "colon-token", - ":", - 956, - 956, - null - ], - [ - "number-token", - "13", - 957, - 958, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 959, - 959, - null - ], - [ - "number-token", - "202", - 960, - 962, - { - "value": 202, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 963, - 963, - null - ], - [ - "number-token", - "240", - 964, - 966, - { - "value": 240, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 967, - 967, - null - ], - [ - "ident-token", - "--bs-warning-rgb", - 968, - 983, - { - "value": "--bs-warning-rgb" - } - ], - [ - "colon-token", - ":", - 984, - 984, - null - ], - [ - "number-token", - "255", - 985, - 987, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 988, - 988, - null - ], - [ - "number-token", - "193", - 989, - 991, - { - "value": 193, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 992, - 992, - null - ], - [ - "number-token", - "7", - 993, - 993, - { - "value": 7, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 994, - 994, - null - ], - [ - "ident-token", - "--bs-danger-rgb", - 995, - 1009, - { - "value": "--bs-danger-rgb" - } - ], - [ - "colon-token", - ":", - 1010, - 1010, - null - ], - [ - "number-token", - "220", - 1011, - 1013, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1014, - 1014, - null - ], - [ - "number-token", - "53", - 1015, - 1016, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1017, - 1017, - null - ], - [ - "number-token", - "69", - 1018, - 1019, - { - "value": 69, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1020, - 1020, - null - ], - [ - "ident-token", - "--bs-light-rgb", - 1021, - 1034, - { - "value": "--bs-light-rgb" - } - ], - [ - "colon-token", - ":", - 1035, - 1035, - null - ], - [ - "number-token", - "248", - 1036, - 1038, - { - "value": 248, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1039, - 1039, - null - ], - [ - "number-token", - "249", - 1040, - 1042, - { - "value": 249, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1043, - 1043, - null - ], - [ - "number-token", - "250", - 1044, - 1046, - { - "value": 250, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1047, - 1047, - null - ], - [ - "ident-token", - "--bs-dark-rgb", - 1048, - 1060, - { - "value": "--bs-dark-rgb" - } - ], - [ - "colon-token", - ":", - 1061, - 1061, - null - ], - [ - "number-token", - "33", - 1062, - 1063, - { - "value": 33, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1064, - 1064, - null - ], - [ - "number-token", - "37", - 1065, - 1066, - { - "value": 37, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1067, - 1067, - null - ], - [ - "number-token", - "41", - 1068, - 1069, - { - "value": 41, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1070, - 1070, - null - ], - [ - "ident-token", - "--bs-white-rgb", - 1071, - 1084, - { - "value": "--bs-white-rgb" - } - ], - [ - "colon-token", - ":", - 1085, - 1085, - null - ], - [ - "number-token", - "255", - 1086, - 1088, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1089, - 1089, - null - ], - [ - "number-token", - "255", - 1090, - 1092, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1093, - 1093, - null - ], - [ - "number-token", - "255", - 1094, - 1096, - { - "value": 255, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1097, - 1097, - null - ], - [ - "ident-token", - "--bs-black-rgb", - 1098, - 1111, - { - "value": "--bs-black-rgb" - } - ], - [ - "colon-token", - ":", - 1112, - 1112, - null - ], - [ - "number-token", - "0", - 1113, - 1113, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1114, - 1114, - null - ], - [ - "number-token", - "0", - 1115, - 1115, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1116, - 1116, - null - ], - [ - "number-token", - "0", - 1117, - 1117, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1118, - 1118, - null - ], - [ - "ident-token", - "--bs-body-color-rgb", - 1119, - 1137, - { - "value": "--bs-body-color-rgb" - } - ], - [ - "colon-token", - ":", - 1138, - 1138, - null - ], - [ - "number-token", - "33", - 1139, - 1140, - { - "value": 33, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1141, - 1141, - null - ], - [ - "number-token", - "37", - 1142, - 1143, - { - "value": 37, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1144, - 1144, - null - ], - [ - "number-token", - "41", - 1145, - 1146, - { - "value": 41, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1147, - 1147, - null - ], - [ - "ident-token", - "--bs-body-bg-rgb", - 1148, - 1163, - { - "value": "--bs-body-bg-rgb" - } - ], - [ - "colon-token", - ":", - 1164, - 1164, - null - ], - [ - "number-token", - "255", - 1165, - 1167, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1168, - 1168, - null - ], - [ - "number-token", - "255", - 1169, - 1171, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1172, - 1172, - null - ], - [ - "number-token", - "255", - 1173, - 1175, - { - "value": 255, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1176, - 1176, - null - ], - [ - "ident-token", - "--bs-font-sans-serif", - 1177, - 1196, - { - "value": "--bs-font-sans-serif" - } - ], - [ - "colon-token", - ":", - 1197, - 1197, - null - ], - [ - "ident-token", - "system-ui", - 1198, - 1206, - { - "value": "system-ui" - } - ], - [ - "comma-token", - ",", - 1207, - 1207, - null - ], - [ - "ident-token", - "-apple-system", - 1208, - 1220, - { - "value": "-apple-system" - } - ], - [ - "comma-token", - ",", - 1221, - 1221, - null - ], - [ - "string-token", - "\"Segoe UI\"", - 1222, - 1231, - { - "value": "Segoe UI" - } - ], - [ - "comma-token", - ",", - 1232, - 1232, - null - ], - [ - "ident-token", - "Roboto", - 1233, - 1238, - { - "value": "Roboto" - } - ], - [ - "comma-token", - ",", - 1239, - 1239, - null - ], - [ - "string-token", - "\"Helvetica Neue\"", - 1240, - 1255, - { - "value": "Helvetica Neue" - } - ], - [ - "comma-token", - ",", - 1256, - 1256, - null - ], - [ - "string-token", - "\"Noto Sans\"", - 1257, - 1267, - { - "value": "Noto Sans" - } - ], - [ - "comma-token", - ",", - 1268, - 1268, - null - ], - [ - "string-token", - "\"Liberation Sans\"", - 1269, - 1285, - { - "value": "Liberation Sans" - } - ], - [ - "comma-token", - ",", - 1286, - 1286, - null - ], - [ - "ident-token", - "Arial", - 1287, - 1291, - { - "value": "Arial" - } - ], - [ - "comma-token", - ",", - 1292, - 1292, - null - ], - [ - "ident-token", - "sans-serif", - 1293, - 1302, - { - "value": "sans-serif" - } - ], - [ - "comma-token", - ",", - 1303, - 1303, - null - ], - [ - "string-token", - "\"Apple Color Emoji\"", - 1304, - 1322, - { - "value": "Apple Color Emoji" - } - ], - [ - "comma-token", - ",", - 1323, - 1323, - null - ], - [ - "string-token", - "\"Segoe UI Emoji\"", - 1324, - 1339, - { - "value": "Segoe UI Emoji" - } - ], - [ - "comma-token", - ",", - 1340, - 1340, - null - ], - [ - "string-token", - "\"Segoe UI Symbol\"", - 1341, - 1357, - { - "value": "Segoe UI Symbol" - } - ], - [ - "comma-token", - ",", - 1358, - 1358, - null - ], - [ - "string-token", - "\"Noto Color Emoji\"", - 1359, - 1376, - { - "value": "Noto Color Emoji" - } - ], - [ - "semicolon-token", - ";", - 1377, - 1377, - null - ], - [ - "ident-token", - "--bs-font-monospace", - 1378, - 1396, - { - "value": "--bs-font-monospace" - } - ], - [ - "colon-token", - ":", - 1397, - 1397, - null - ], - [ - "ident-token", - "SFMono-Regular", - 1398, - 1411, - { - "value": "SFMono-Regular" - } - ], - [ - "comma-token", - ",", - 1412, - 1412, - null - ], - [ - "ident-token", - "Menlo", - 1413, - 1417, - { - "value": "Menlo" - } - ], - [ - "comma-token", - ",", - 1418, - 1418, - null - ], - [ - "ident-token", - "Monaco", - 1419, - 1424, - { - "value": "Monaco" - } - ], - [ - "comma-token", - ",", - 1425, - 1425, - null - ], - [ - "ident-token", - "Consolas", - 1426, - 1433, - { - "value": "Consolas" - } - ], - [ - "comma-token", - ",", - 1434, - 1434, - null - ], - [ - "string-token", - "\"Liberation Mono\"", - 1435, - 1451, - { - "value": "Liberation Mono" - } - ], - [ - "comma-token", - ",", - 1452, - 1452, - null - ], - [ - "string-token", - "\"Courier New\"", - 1453, - 1465, - { - "value": "Courier New" - } - ], - [ - "comma-token", - ",", - 1466, - 1466, - null - ], - [ - "ident-token", - "monospace", - 1467, - 1475, - { - "value": "monospace" - } - ], - [ - "semicolon-token", - ";", - 1476, - 1476, - null - ], - [ - "ident-token", - "--bs-gradient", - 1477, - 1489, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 1490, - 1490, - null - ], - [ - "function-token", - "linear-gradient(", - 1491, - 1506, - { - "value": "linear-gradient" - } - ], - [ - "dimension-token", - "180deg", - 1507, - 1512, - { - "value": 180, - "type": "integer", - "unit": "deg" - } - ], - [ - "comma-token", - ",", - 1513, - 1513, - null - ], - [ - "whitespace-token", - " ", - 1514, - 1514, - null - ], - [ - "function-token", - "rgba(", - 1515, - 1519, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 1520, - 1522, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1523, - 1523, - null - ], - [ - "whitespace-token", - " ", - 1524, - 1524, - null - ], - [ - "number-token", - "255", - 1525, - 1527, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1528, - 1528, - null - ], - [ - "whitespace-token", - " ", - 1529, - 1529, - null - ], - [ - "number-token", - "255", - 1530, - 1532, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1533, - 1533, - null - ], - [ - "whitespace-token", - " ", - 1534, - 1534, - null - ], - [ - "number-token", - "0.15", - 1535, - 1538, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 1539, - 1539, - null - ], - [ - "comma-token", - ",", - 1540, - 1540, - null - ], - [ - "whitespace-token", - " ", - 1541, - 1541, - null - ], - [ - "function-token", - "rgba(", - 1542, - 1546, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 1547, - 1549, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1550, - 1550, - null - ], - [ - "whitespace-token", - " ", - 1551, - 1551, - null - ], - [ - "number-token", - "255", - 1552, - 1554, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1555, - 1555, - null - ], - [ - "whitespace-token", - " ", - 1556, - 1556, - null - ], - [ - "number-token", - "255", - 1557, - 1559, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1560, - 1560, - null - ], - [ - "whitespace-token", - " ", - 1561, - 1561, - null - ], - [ - "number-token", - "0", - 1562, - 1562, - { - "value": 0, - "type": "integer" - } - ], - [ - ")-token", - ")", - 1563, - 1563, - null - ], - [ - ")-token", - ")", - 1564, - 1564, - null - ], - [ - "semicolon-token", - ";", - 1565, - 1565, - null - ], - [ - "ident-token", - "--bs-body-font-family", - 1566, - 1586, - { - "value": "--bs-body-font-family" - } - ], - [ - "colon-token", - ":", - 1587, - 1587, - null - ], - [ - "function-token", - "var(", - 1588, - 1591, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-font-sans-serif", - 1592, - 1611, - { - "value": "--bs-font-sans-serif" - } - ], - [ - ")-token", - ")", - 1612, - 1612, - null - ], - [ - "semicolon-token", - ";", - 1613, - 1613, - null - ], - [ - "ident-token", - "--bs-body-font-size", - 1614, - 1632, - { - "value": "--bs-body-font-size" - } - ], - [ - "colon-token", - ":", - 1633, - 1633, - null - ], - [ - "dimension-token", - "1rem", - 1634, - 1637, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1638, - 1638, - null - ], - [ - "ident-token", - "--bs-body-font-weight", - 1639, - 1659, - { - "value": "--bs-body-font-weight" - } - ], - [ - "colon-token", - ":", - 1660, - 1660, - null - ], - [ - "number-token", - "400", - 1661, - 1663, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 1664, - 1664, - null - ], - [ - "ident-token", - "--bs-body-line-height", - 1665, - 1685, - { - "value": "--bs-body-line-height" - } - ], - [ - "colon-token", - ":", - 1686, - 1686, - null - ], - [ - "number-token", - "1.5", - 1687, - 1689, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 1690, - 1690, - null - ], - [ - "ident-token", - "--bs-body-color", - 1691, - 1705, - { - "value": "--bs-body-color" - } - ], - [ - "colon-token", - ":", - 1706, - 1706, - null - ], - [ - "hash-token", - "#212529", - 1707, - 1713, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 1714, - 1714, - null - ], - [ - "ident-token", - "--bs-body-bg", - 1715, - 1726, - { - "value": "--bs-body-bg" - } - ], - [ - "colon-token", - ":", - 1727, - 1727, - null - ], - [ - "hash-token", - "#fff", - 1728, - 1731, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 1732, - 1732, - null - ], - [ - "ident-token", - "--bs-border-width", - 1733, - 1749, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 1750, - 1750, - null - ], - [ - "dimension-token", - "1px", - 1751, - 1753, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 1754, - 1754, - null - ], - [ - "ident-token", - "--bs-border-style", - 1755, - 1771, - { - "value": "--bs-border-style" - } - ], - [ - "colon-token", - ":", - 1772, - 1772, - null - ], - [ - "ident-token", - "solid", - 1773, - 1777, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 1778, - 1778, - null - ], - [ - "ident-token", - "--bs-border-color", - 1779, - 1795, - { - "value": "--bs-border-color" - } - ], - [ - "colon-token", - ":", - 1796, - 1796, - null - ], - [ - "hash-token", - "#dee2e6", - 1797, - 1803, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 1804, - 1804, - null - ], - [ - "ident-token", - "--bs-border-color-translucent", - 1805, - 1833, - { - "value": "--bs-border-color-translucent" - } - ], - [ - "colon-token", - ":", - 1834, - 1834, - null - ], - [ - "function-token", - "rgba(", - 1835, - 1839, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 1840, - 1840, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1841, - 1841, - null - ], - [ - "whitespace-token", - " ", - 1842, - 1842, - null - ], - [ - "number-token", - "0", - 1843, - 1843, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1844, - 1844, - null - ], - [ - "whitespace-token", - " ", - 1845, - 1845, - null - ], - [ - "number-token", - "0", - 1846, - 1846, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 1847, - 1847, - null - ], - [ - "whitespace-token", - " ", - 1848, - 1848, - null - ], - [ - "number-token", - "0.175", - 1849, - 1853, - { - "value": 0.175, - "type": "number" - } - ], - [ - ")-token", - ")", - 1854, - 1854, - null - ], - [ - "semicolon-token", - ";", - 1855, - 1855, - null - ], - [ - "ident-token", - "--bs-border-radius", - 1856, - 1873, - { - "value": "--bs-border-radius" - } - ], - [ - "colon-token", - ":", - 1874, - 1874, - null - ], - [ - "dimension-token", - "0.375rem", - 1875, - 1882, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1883, - 1883, - null - ], - [ - "ident-token", - "--bs-border-radius-sm", - 1884, - 1904, - { - "value": "--bs-border-radius-sm" - } - ], - [ - "colon-token", - ":", - 1905, - 1905, - null - ], - [ - "dimension-token", - "0.25rem", - 1906, - 1912, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1913, - 1913, - null - ], - [ - "ident-token", - "--bs-border-radius-lg", - 1914, - 1934, - { - "value": "--bs-border-radius-lg" - } - ], - [ - "colon-token", - ":", - 1935, - 1935, - null - ], - [ - "dimension-token", - "0.5rem", - 1936, - 1941, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1942, - 1942, - null - ], - [ - "ident-token", - "--bs-border-radius-xl", - 1943, - 1963, - { - "value": "--bs-border-radius-xl" - } - ], - [ - "colon-token", - ":", - 1964, - 1964, - null - ], - [ - "dimension-token", - "1rem", - 1965, - 1968, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1969, - 1969, - null - ], - [ - "ident-token", - "--bs-border-radius-2xl", - 1970, - 1991, - { - "value": "--bs-border-radius-2xl" - } - ], - [ - "colon-token", - ":", - 1992, - 1992, - null - ], - [ - "dimension-token", - "2rem", - 1993, - 1996, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 1997, - 1997, - null - ], - [ - "ident-token", - "--bs-border-radius-pill", - 1998, - 2020, - { - "value": "--bs-border-radius-pill" - } - ], - [ - "colon-token", - ":", - 2021, - 2021, - null - ], - [ - "dimension-token", - "50rem", - 2022, - 2026, - { - "value": 50, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 2027, - 2027, - null - ], - [ - "ident-token", - "--bs-link-color", - 2028, - 2042, - { - "value": "--bs-link-color" - } - ], - [ - "colon-token", - ":", - 2043, - 2043, - null - ], - [ - "hash-token", - "#0d6efd", - 2044, - 2050, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 2051, - 2051, - null - ], - [ - "ident-token", - "--bs-link-hover-color", - 2052, - 2072, - { - "value": "--bs-link-hover-color" - } - ], - [ - "colon-token", - ":", - 2073, - 2073, - null - ], - [ - "hash-token", - "#0a58ca", - 2074, - 2080, - { - "value": "0a58ca", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 2081, - 2081, - null - ], - [ - "ident-token", - "--bs-code-color", - 2082, - 2096, - { - "value": "--bs-code-color" - } - ], - [ - "colon-token", - ":", - 2097, - 2097, - null - ], - [ - "hash-token", - "#d63384", - 2098, - 2104, - { - "value": "d63384", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 2105, - 2105, - null - ], - [ - "ident-token", - "--bs-highlight-bg", - 2106, - 2122, - { - "value": "--bs-highlight-bg" - } - ], - [ - "colon-token", - ":", - 2123, - 2123, - null - ], - [ - "hash-token", - "#fff3cd", - 2124, - 2130, - { - "value": "fff3cd", - "type": "id" - } - ], - [ - "}-token", - "}", - 2131, - 2131, - null - ], - [ - "delim-token", - "*", - 2132, - 2132, - { - "value": "*" - } - ], - [ - "comma-token", - ",", - 2133, - 2133, - null - ], - [ - "colon-token", - ":", - 2134, - 2134, - null - ], - [ - "colon-token", - ":", - 2135, - 2135, - null - ], - [ - "ident-token", - "after", - 2136, - 2140, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 2141, - 2141, - null - ], - [ - "colon-token", - ":", - 2142, - 2142, - null - ], - [ - "colon-token", - ":", - 2143, - 2143, - null - ], - [ - "ident-token", - "before", - 2144, - 2149, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 2150, - 2150, - null - ], - [ - "ident-token", - "box-sizing", - 2151, - 2160, - { - "value": "box-sizing" - } - ], - [ - "colon-token", - ":", - 2161, - 2161, - null - ], - [ - "ident-token", - "border-box", - 2162, - 2171, - { - "value": "border-box" - } - ], - [ - "}-token", - "}", - 2172, - 2172, - null - ], - [ - "at-keyword-token", - "@media", - 2173, - 2178, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 2179, - 2179, - null - ], - [ - "(-token", - "(", - 2180, - 2180, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 2181, - 2202, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 2203, - 2203, - null - ], - [ - "ident-token", - "no-preference", - 2204, - 2216, - { - "value": "no-preference" - } - ], - [ - ")-token", - ")", - 2217, - 2217, - null - ], - [ - "{-token", - "{", - 2218, - 2218, - null - ], - [ - "colon-token", - ":", - 2219, - 2219, - null - ], - [ - "ident-token", - "root", - 2220, - 2223, - { - "value": "root" - } - ], - [ - "{-token", - "{", - 2224, - 2224, - null - ], - [ - "ident-token", - "scroll-behavior", - 2225, - 2239, - { - "value": "scroll-behavior" - } - ], - [ - "colon-token", - ":", - 2240, - 2240, - null - ], - [ - "ident-token", - "smooth", - 2241, - 2246, - { - "value": "smooth" - } - ], - [ - "}-token", - "}", - 2247, - 2247, - null - ], - [ - "}-token", - "}", - 2248, - 2248, - null - ], - [ - "ident-token", - "body", - 2249, - 2252, - { - "value": "body" - } - ], - [ - "{-token", - "{", - 2253, - 2253, - null - ], - [ - "ident-token", - "margin", - 2254, - 2259, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 2260, - 2260, - null - ], - [ - "number-token", - "0", - 2261, - 2261, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 2262, - 2262, - null - ], - [ - "ident-token", - "font-family", - 2263, - 2273, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 2274, - 2274, - null - ], - [ - "function-token", - "var(", - 2275, - 2278, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-font-family", - 2279, - 2299, - { - "value": "--bs-body-font-family" - } - ], - [ - ")-token", - ")", - 2300, - 2300, - null - ], - [ - "semicolon-token", - ";", - 2301, - 2301, - null - ], - [ - "ident-token", - "font-size", - 2302, - 2310, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2311, - 2311, - null - ], - [ - "function-token", - "var(", - 2312, - 2315, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-font-size", - 2316, - 2334, - { - "value": "--bs-body-font-size" - } - ], - [ - ")-token", - ")", - 2335, - 2335, - null - ], - [ - "semicolon-token", - ";", - 2336, - 2336, - null - ], - [ - "ident-token", - "font-weight", - 2337, - 2347, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 2348, - 2348, - null - ], - [ - "function-token", - "var(", - 2349, - 2352, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-font-weight", - 2353, - 2373, - { - "value": "--bs-body-font-weight" - } - ], - [ - ")-token", - ")", - 2374, - 2374, - null - ], - [ - "semicolon-token", - ";", - 2375, - 2375, - null - ], - [ - "ident-token", - "line-height", - 2376, - 2386, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 2387, - 2387, - null - ], - [ - "function-token", - "var(", - 2388, - 2391, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-line-height", - 2392, - 2412, - { - "value": "--bs-body-line-height" - } - ], - [ - ")-token", - ")", - 2413, - 2413, - null - ], - [ - "semicolon-token", - ";", - 2414, - 2414, - null - ], - [ - "ident-token", - "color", - 2415, - 2419, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 2420, - 2420, - null - ], - [ - "function-token", - "var(", - 2421, - 2424, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 2425, - 2439, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 2440, - 2440, - null - ], - [ - "semicolon-token", - ";", - 2441, - 2441, - null - ], - [ - "ident-token", - "text-align", - 2442, - 2451, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 2452, - 2452, - null - ], - [ - "function-token", - "var(", - 2453, - 2456, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-text-align", - 2457, - 2476, - { - "value": "--bs-body-text-align" - } - ], - [ - ")-token", - ")", - 2477, - 2477, - null - ], - [ - "semicolon-token", - ";", - 2478, - 2478, - null - ], - [ - "ident-token", - "background-color", - 2479, - 2494, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 2495, - 2495, - null - ], - [ - "function-token", - "var(", - 2496, - 2499, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-bg", - 2500, - 2511, - { - "value": "--bs-body-bg" - } - ], - [ - ")-token", - ")", - 2512, - 2512, - null - ], - [ - "semicolon-token", - ";", - 2513, - 2513, - null - ], - [ - "ident-token", - "-webkit-text-size-adjust", - 2514, - 2537, - { - "value": "-webkit-text-size-adjust" - } - ], - [ - "colon-token", - ":", - 2538, - 2538, - null - ], - [ - "percentage-token", - "100%", - 2539, - 2542, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 2543, - 2543, - null - ], - [ - "ident-token", - "-webkit-tap-highlight-color", - 2544, - 2570, - { - "value": "-webkit-tap-highlight-color" - } - ], - [ - "colon-token", - ":", - 2571, - 2571, - null - ], - [ - "ident-token", - "transparent", - 2572, - 2582, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 2583, - 2583, - null - ], - [ - "ident-token", - "hr", - 2584, - 2585, - { - "value": "hr" - } - ], - [ - "{-token", - "{", - 2586, - 2586, - null - ], - [ - "ident-token", - "margin", - 2587, - 2592, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 2593, - 2593, - null - ], - [ - "dimension-token", - "1rem", - 2594, - 2597, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 2598, - 2598, - null - ], - [ - "number-token", - "0", - 2599, - 2599, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 2600, - 2600, - null - ], - [ - "ident-token", - "color", - 2601, - 2605, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 2606, - 2606, - null - ], - [ - "ident-token", - "inherit", - 2607, - 2613, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 2614, - 2614, - null - ], - [ - "ident-token", - "border", - 2615, - 2620, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 2621, - 2621, - null - ], - [ - "number-token", - "0", - 2622, - 2622, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 2623, - 2623, - null - ], - [ - "ident-token", - "border-top", - 2624, - 2633, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 2634, - 2634, - null - ], - [ - "dimension-token", - "1px", - 2635, - 2637, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 2638, - 2638, - null - ], - [ - "ident-token", - "solid", - 2639, - 2643, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 2644, - 2644, - null - ], - [ - "ident-token", - "opacity", - 2645, - 2651, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 2652, - 2652, - null - ], - [ - "number-token", - ".25", - 2653, - 2655, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 2656, - 2656, - null - ], - [ - "delim-token", - ".", - 2657, - 2657, - { - "value": "." - } - ], - [ - "ident-token", - "h1", - 2658, - 2659, - { - "value": "h1" - } - ], - [ - "comma-token", - ",", - 2660, - 2660, - null - ], - [ - "delim-token", - ".", - 2661, - 2661, - { - "value": "." - } - ], - [ - "ident-token", - "h2", - 2662, - 2663, - { - "value": "h2" - } - ], - [ - "comma-token", - ",", - 2664, - 2664, - null - ], - [ - "delim-token", - ".", - 2665, - 2665, - { - "value": "." - } - ], - [ - "ident-token", - "h3", - 2666, - 2667, - { - "value": "h3" - } - ], - [ - "comma-token", - ",", - 2668, - 2668, - null - ], - [ - "delim-token", - ".", - 2669, - 2669, - { - "value": "." - } - ], - [ - "ident-token", - "h4", - 2670, - 2671, - { - "value": "h4" - } - ], - [ - "comma-token", - ",", - 2672, - 2672, - null - ], - [ - "delim-token", - ".", - 2673, - 2673, - { - "value": "." - } - ], - [ - "ident-token", - "h5", - 2674, - 2675, - { - "value": "h5" - } - ], - [ - "comma-token", - ",", - 2676, - 2676, - null - ], - [ - "delim-token", - ".", - 2677, - 2677, - { - "value": "." - } - ], - [ - "ident-token", - "h6", - 2678, - 2679, - { - "value": "h6" - } - ], - [ - "comma-token", - ",", - 2680, - 2680, - null - ], - [ - "ident-token", - "h1", - 2681, - 2682, - { - "value": "h1" - } - ], - [ - "comma-token", - ",", - 2683, - 2683, - null - ], - [ - "ident-token", - "h2", - 2684, - 2685, - { - "value": "h2" - } - ], - [ - "comma-token", - ",", - 2686, - 2686, - null - ], - [ - "ident-token", - "h3", - 2687, - 2688, - { - "value": "h3" - } - ], - [ - "comma-token", - ",", - 2689, - 2689, - null - ], - [ - "ident-token", - "h4", - 2690, - 2691, - { - "value": "h4" - } - ], - [ - "comma-token", - ",", - 2692, - 2692, - null - ], - [ - "ident-token", - "h5", - 2693, - 2694, - { - "value": "h5" - } - ], - [ - "comma-token", - ",", - 2695, - 2695, - null - ], - [ - "ident-token", - "h6", - 2696, - 2697, - { - "value": "h6" - } - ], - [ - "{-token", - "{", - 2698, - 2698, - null - ], - [ - "ident-token", - "margin-top", - 2699, - 2708, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 2709, - 2709, - null - ], - [ - "number-token", - "0", - 2710, - 2710, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 2711, - 2711, - null - ], - [ - "ident-token", - "margin-bottom", - 2712, - 2724, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 2725, - 2725, - null - ], - [ - "dimension-token", - ".5rem", - 2726, - 2730, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 2731, - 2731, - null - ], - [ - "ident-token", - "font-weight", - 2732, - 2742, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 2743, - 2743, - null - ], - [ - "number-token", - "500", - 2744, - 2746, - { - "value": 500, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 2747, - 2747, - null - ], - [ - "ident-token", - "line-height", - 2748, - 2758, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 2759, - 2759, - null - ], - [ - "number-token", - "1.2", - 2760, - 2762, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 2763, - 2763, - null - ], - [ - "delim-token", - ".", - 2764, - 2764, - { - "value": "." - } - ], - [ - "ident-token", - "h1", - 2765, - 2766, - { - "value": "h1" - } - ], - [ - "comma-token", - ",", - 2767, - 2767, - null - ], - [ - "ident-token", - "h1", - 2768, - 2769, - { - "value": "h1" - } - ], - [ - "{-token", - "{", - 2770, - 2770, - null - ], - [ - "ident-token", - "font-size", - 2771, - 2779, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2780, - 2780, - null - ], - [ - "function-token", - "calc(", - 2781, - 2785, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.375rem", - 2786, - 2793, - { - "value": 1.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 2794, - 2794, - null - ], - [ - "delim-token", - "+", - 2795, - 2795, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 2796, - 2796, - null - ], - [ - "dimension-token", - "1.5vw", - 2797, - 2801, - { - "value": 1.5, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 2802, - 2802, - null - ], - [ - "}-token", - "}", - 2803, - 2803, - null - ], - [ - "at-keyword-token", - "@media", - 2804, - 2809, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 2810, - 2810, - null - ], - [ - "(-token", - "(", - 2811, - 2811, - null - ], - [ - "ident-token", - "min-width", - 2812, - 2820, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 2821, - 2821, - null - ], - [ - "dimension-token", - "1200px", - 2822, - 2827, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 2828, - 2828, - null - ], - [ - "{-token", - "{", - 2829, - 2829, - null - ], - [ - "delim-token", - ".", - 2830, - 2830, - { - "value": "." - } - ], - [ - "ident-token", - "h1", - 2831, - 2832, - { - "value": "h1" - } - ], - [ - "comma-token", - ",", - 2833, - 2833, - null - ], - [ - "ident-token", - "h1", - 2834, - 2835, - { - "value": "h1" - } - ], - [ - "{-token", - "{", - 2836, - 2836, - null - ], - [ - "ident-token", - "font-size", - 2837, - 2845, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2846, - 2846, - null - ], - [ - "dimension-token", - "2.5rem", - 2847, - 2852, - { - "value": 2.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 2853, - 2853, - null - ], - [ - "}-token", - "}", - 2854, - 2854, - null - ], - [ - "delim-token", - ".", - 2855, - 2855, - { - "value": "." - } - ], - [ - "ident-token", - "h2", - 2856, - 2857, - { - "value": "h2" - } - ], - [ - "comma-token", - ",", - 2858, - 2858, - null - ], - [ - "ident-token", - "h2", - 2859, - 2860, - { - "value": "h2" - } - ], - [ - "{-token", - "{", - 2861, - 2861, - null - ], - [ - "ident-token", - "font-size", - 2862, - 2870, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2871, - 2871, - null - ], - [ - "function-token", - "calc(", - 2872, - 2876, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.325rem", - 2877, - 2884, - { - "value": 1.325, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 2885, - 2885, - null - ], - [ - "delim-token", - "+", - 2886, - 2886, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 2887, - 2887, - null - ], - [ - "dimension-token", - ".9vw", - 2888, - 2891, - { - "value": 0.9, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 2892, - 2892, - null - ], - [ - "}-token", - "}", - 2893, - 2893, - null - ], - [ - "at-keyword-token", - "@media", - 2894, - 2899, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 2900, - 2900, - null - ], - [ - "(-token", - "(", - 2901, - 2901, - null - ], - [ - "ident-token", - "min-width", - 2902, - 2910, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 2911, - 2911, - null - ], - [ - "dimension-token", - "1200px", - 2912, - 2917, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 2918, - 2918, - null - ], - [ - "{-token", - "{", - 2919, - 2919, - null - ], - [ - "delim-token", - ".", - 2920, - 2920, - { - "value": "." - } - ], - [ - "ident-token", - "h2", - 2921, - 2922, - { - "value": "h2" - } - ], - [ - "comma-token", - ",", - 2923, - 2923, - null - ], - [ - "ident-token", - "h2", - 2924, - 2925, - { - "value": "h2" - } - ], - [ - "{-token", - "{", - 2926, - 2926, - null - ], - [ - "ident-token", - "font-size", - 2927, - 2935, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2936, - 2936, - null - ], - [ - "dimension-token", - "2rem", - 2937, - 2940, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 2941, - 2941, - null - ], - [ - "}-token", - "}", - 2942, - 2942, - null - ], - [ - "delim-token", - ".", - 2943, - 2943, - { - "value": "." - } - ], - [ - "ident-token", - "h3", - 2944, - 2945, - { - "value": "h3" - } - ], - [ - "comma-token", - ",", - 2946, - 2946, - null - ], - [ - "ident-token", - "h3", - 2947, - 2948, - { - "value": "h3" - } - ], - [ - "{-token", - "{", - 2949, - 2949, - null - ], - [ - "ident-token", - "font-size", - 2950, - 2958, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 2959, - 2959, - null - ], - [ - "function-token", - "calc(", - 2960, - 2964, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.3rem", - 2965, - 2970, - { - "value": 1.3, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 2971, - 2971, - null - ], - [ - "delim-token", - "+", - 2972, - 2972, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 2973, - 2973, - null - ], - [ - "dimension-token", - ".6vw", - 2974, - 2977, - { - "value": 0.6, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 2978, - 2978, - null - ], - [ - "}-token", - "}", - 2979, - 2979, - null - ], - [ - "at-keyword-token", - "@media", - 2980, - 2985, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 2986, - 2986, - null - ], - [ - "(-token", - "(", - 2987, - 2987, - null - ], - [ - "ident-token", - "min-width", - 2988, - 2996, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 2997, - 2997, - null - ], - [ - "dimension-token", - "1200px", - 2998, - 3003, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 3004, - 3004, - null - ], - [ - "{-token", - "{", - 3005, - 3005, - null - ], - [ - "delim-token", - ".", - 3006, - 3006, - { - "value": "." - } - ], - [ - "ident-token", - "h3", - 3007, - 3008, - { - "value": "h3" - } - ], - [ - "comma-token", - ",", - 3009, - 3009, - null - ], - [ - "ident-token", - "h3", - 3010, - 3011, - { - "value": "h3" - } - ], - [ - "{-token", - "{", - 3012, - 3012, - null - ], - [ - "ident-token", - "font-size", - 3013, - 3021, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3022, - 3022, - null - ], - [ - "dimension-token", - "1.75rem", - 3023, - 3029, - { - "value": 1.75, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3030, - 3030, - null - ], - [ - "}-token", - "}", - 3031, - 3031, - null - ], - [ - "delim-token", - ".", - 3032, - 3032, - { - "value": "." - } - ], - [ - "ident-token", - "h4", - 3033, - 3034, - { - "value": "h4" - } - ], - [ - "comma-token", - ",", - 3035, - 3035, - null - ], - [ - "ident-token", - "h4", - 3036, - 3037, - { - "value": "h4" - } - ], - [ - "{-token", - "{", - 3038, - 3038, - null - ], - [ - "ident-token", - "font-size", - 3039, - 3047, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3048, - 3048, - null - ], - [ - "function-token", - "calc(", - 3049, - 3053, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.275rem", - 3054, - 3061, - { - "value": 1.275, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 3062, - 3062, - null - ], - [ - "delim-token", - "+", - 3063, - 3063, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 3064, - 3064, - null - ], - [ - "dimension-token", - ".3vw", - 3065, - 3068, - { - "value": 0.3, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 3069, - 3069, - null - ], - [ - "}-token", - "}", - 3070, - 3070, - null - ], - [ - "at-keyword-token", - "@media", - 3071, - 3076, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 3077, - 3077, - null - ], - [ - "(-token", - "(", - 3078, - 3078, - null - ], - [ - "ident-token", - "min-width", - 3079, - 3087, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 3088, - 3088, - null - ], - [ - "dimension-token", - "1200px", - 3089, - 3094, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 3095, - 3095, - null - ], - [ - "{-token", - "{", - 3096, - 3096, - null - ], - [ - "delim-token", - ".", - 3097, - 3097, - { - "value": "." - } - ], - [ - "ident-token", - "h4", - 3098, - 3099, - { - "value": "h4" - } - ], - [ - "comma-token", - ",", - 3100, - 3100, - null - ], - [ - "ident-token", - "h4", - 3101, - 3102, - { - "value": "h4" - } - ], - [ - "{-token", - "{", - 3103, - 3103, - null - ], - [ - "ident-token", - "font-size", - 3104, - 3112, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3113, - 3113, - null - ], - [ - "dimension-token", - "1.5rem", - 3114, - 3119, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3120, - 3120, - null - ], - [ - "}-token", - "}", - 3121, - 3121, - null - ], - [ - "delim-token", - ".", - 3122, - 3122, - { - "value": "." - } - ], - [ - "ident-token", - "h5", - 3123, - 3124, - { - "value": "h5" - } - ], - [ - "comma-token", - ",", - 3125, - 3125, - null - ], - [ - "ident-token", - "h5", - 3126, - 3127, - { - "value": "h5" - } - ], - [ - "{-token", - "{", - 3128, - 3128, - null - ], - [ - "ident-token", - "font-size", - 3129, - 3137, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3138, - 3138, - null - ], - [ - "dimension-token", - "1.25rem", - 3139, - 3145, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3146, - 3146, - null - ], - [ - "delim-token", - ".", - 3147, - 3147, - { - "value": "." - } - ], - [ - "ident-token", - "h6", - 3148, - 3149, - { - "value": "h6" - } - ], - [ - "comma-token", - ",", - 3150, - 3150, - null - ], - [ - "ident-token", - "h6", - 3151, - 3152, - { - "value": "h6" - } - ], - [ - "{-token", - "{", - 3153, - 3153, - null - ], - [ - "ident-token", - "font-size", - 3154, - 3162, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3163, - 3163, - null - ], - [ - "dimension-token", - "1rem", - 3164, - 3167, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3168, - 3168, - null - ], - [ - "ident-token", - "p", - 3169, - 3169, - { - "value": "p" - } - ], - [ - "{-token", - "{", - 3170, - 3170, - null - ], - [ - "ident-token", - "margin-top", - 3171, - 3180, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 3181, - 3181, - null - ], - [ - "number-token", - "0", - 3182, - 3182, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 3183, - 3183, - null - ], - [ - "ident-token", - "margin-bottom", - 3184, - 3196, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 3197, - 3197, - null - ], - [ - "dimension-token", - "1rem", - 3198, - 3201, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3202, - 3202, - null - ], - [ - "ident-token", - "abbr", - 3203, - 3206, - { - "value": "abbr" - } - ], - [ - "[-token", - "[", - 3207, - 3207, - null - ], - [ - "ident-token", - "title", - 3208, - 3212, - { - "value": "title" - } - ], - [ - "]-token", - "]", - 3213, - 3213, - null - ], - [ - "{-token", - "{", - 3214, - 3214, - null - ], - [ - "ident-token", - "-webkit-text-decoration", - 3215, - 3237, - { - "value": "-webkit-text-decoration" - } - ], - [ - "colon-token", - ":", - 3238, - 3238, - null - ], - [ - "ident-token", - "underline", - 3239, - 3247, - { - "value": "underline" - } - ], - [ - "whitespace-token", - " ", - 3248, - 3248, - null - ], - [ - "ident-token", - "dotted", - 3249, - 3254, - { - "value": "dotted" - } - ], - [ - "semicolon-token", - ";", - 3255, - 3255, - null - ], - [ - "ident-token", - "text-decoration", - 3256, - 3270, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 3271, - 3271, - null - ], - [ - "ident-token", - "underline", - 3272, - 3280, - { - "value": "underline" - } - ], - [ - "whitespace-token", - " ", - 3281, - 3281, - null - ], - [ - "ident-token", - "dotted", - 3282, - 3287, - { - "value": "dotted" - } - ], - [ - "semicolon-token", - ";", - 3288, - 3288, - null - ], - [ - "ident-token", - "cursor", - 3289, - 3294, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 3295, - 3295, - null - ], - [ - "ident-token", - "help", - 3296, - 3299, - { - "value": "help" - } - ], - [ - "semicolon-token", - ";", - 3300, - 3300, - null - ], - [ - "ident-token", - "-webkit-text-decoration-skip-ink", - 3301, - 3332, - { - "value": "-webkit-text-decoration-skip-ink" - } - ], - [ - "colon-token", - ":", - 3333, - 3333, - null - ], - [ - "ident-token", - "none", - 3334, - 3337, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 3338, - 3338, - null - ], - [ - "ident-token", - "text-decoration-skip-ink", - 3339, - 3362, - { - "value": "text-decoration-skip-ink" - } - ], - [ - "colon-token", - ":", - 3363, - 3363, - null - ], - [ - "ident-token", - "none", - 3364, - 3367, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 3368, - 3368, - null - ], - [ - "ident-token", - "address", - 3369, - 3375, - { - "value": "address" - } - ], - [ - "{-token", - "{", - 3376, - 3376, - null - ], - [ - "ident-token", - "margin-bottom", - 3377, - 3389, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 3390, - 3390, - null - ], - [ - "dimension-token", - "1rem", - 3391, - 3394, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 3395, - 3395, - null - ], - [ - "ident-token", - "font-style", - 3396, - 3405, - { - "value": "font-style" - } - ], - [ - "colon-token", - ":", - 3406, - 3406, - null - ], - [ - "ident-token", - "normal", - 3407, - 3412, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 3413, - 3413, - null - ], - [ - "ident-token", - "line-height", - 3414, - 3424, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 3425, - 3425, - null - ], - [ - "ident-token", - "inherit", - 3426, - 3432, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 3433, - 3433, - null - ], - [ - "ident-token", - "ol", - 3434, - 3435, - { - "value": "ol" - } - ], - [ - "comma-token", - ",", - 3436, - 3436, - null - ], - [ - "ident-token", - "ul", - 3437, - 3438, - { - "value": "ul" - } - ], - [ - "{-token", - "{", - 3439, - 3439, - null - ], - [ - "ident-token", - "padding-left", - 3440, - 3451, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 3452, - 3452, - null - ], - [ - "dimension-token", - "2rem", - 3453, - 3456, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3457, - 3457, - null - ], - [ - "ident-token", - "dl", - 3458, - 3459, - { - "value": "dl" - } - ], - [ - "comma-token", - ",", - 3460, - 3460, - null - ], - [ - "ident-token", - "ol", - 3461, - 3462, - { - "value": "ol" - } - ], - [ - "comma-token", - ",", - 3463, - 3463, - null - ], - [ - "ident-token", - "ul", - 3464, - 3465, - { - "value": "ul" - } - ], - [ - "{-token", - "{", - 3466, - 3466, - null - ], - [ - "ident-token", - "margin-top", - 3467, - 3476, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 3477, - 3477, - null - ], - [ - "number-token", - "0", - 3478, - 3478, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 3479, - 3479, - null - ], - [ - "ident-token", - "margin-bottom", - 3480, - 3492, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 3493, - 3493, - null - ], - [ - "dimension-token", - "1rem", - 3494, - 3497, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3498, - 3498, - null - ], - [ - "ident-token", - "ol", - 3499, - 3500, - { - "value": "ol" - } - ], - [ - "whitespace-token", - " ", - 3501, - 3501, - null - ], - [ - "ident-token", - "ol", - 3502, - 3503, - { - "value": "ol" - } - ], - [ - "comma-token", - ",", - 3504, - 3504, - null - ], - [ - "ident-token", - "ol", - 3505, - 3506, - { - "value": "ol" - } - ], - [ - "whitespace-token", - " ", - 3507, - 3507, - null - ], - [ - "ident-token", - "ul", - 3508, - 3509, - { - "value": "ul" - } - ], - [ - "comma-token", - ",", - 3510, - 3510, - null - ], - [ - "ident-token", - "ul", - 3511, - 3512, - { - "value": "ul" - } - ], - [ - "whitespace-token", - " ", - 3513, - 3513, - null - ], - [ - "ident-token", - "ol", - 3514, - 3515, - { - "value": "ol" - } - ], - [ - "comma-token", - ",", - 3516, - 3516, - null - ], - [ - "ident-token", - "ul", - 3517, - 3518, - { - "value": "ul" - } - ], - [ - "whitespace-token", - " ", - 3519, - 3519, - null - ], - [ - "ident-token", - "ul", - 3520, - 3521, - { - "value": "ul" - } - ], - [ - "{-token", - "{", - 3522, - 3522, - null - ], - [ - "ident-token", - "margin-bottom", - 3523, - 3535, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 3536, - 3536, - null - ], - [ - "number-token", - "0", - 3537, - 3537, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 3538, - 3538, - null - ], - [ - "ident-token", - "dt", - 3539, - 3540, - { - "value": "dt" - } - ], - [ - "{-token", - "{", - 3541, - 3541, - null - ], - [ - "ident-token", - "font-weight", - 3542, - 3552, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 3553, - 3553, - null - ], - [ - "number-token", - "700", - 3554, - 3556, - { - "value": 700, - "type": "integer" - } - ], - [ - "}-token", - "}", - 3557, - 3557, - null - ], - [ - "ident-token", - "dd", - 3558, - 3559, - { - "value": "dd" - } - ], - [ - "{-token", - "{", - 3560, - 3560, - null - ], - [ - "ident-token", - "margin-bottom", - 3561, - 3573, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 3574, - 3574, - null - ], - [ - "dimension-token", - ".5rem", - 3575, - 3579, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 3580, - 3580, - null - ], - [ - "ident-token", - "margin-left", - 3581, - 3591, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 3592, - 3592, - null - ], - [ - "number-token", - "0", - 3593, - 3593, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 3594, - 3594, - null - ], - [ - "ident-token", - "blockquote", - 3595, - 3604, - { - "value": "blockquote" - } - ], - [ - "{-token", - "{", - 3605, - 3605, - null - ], - [ - "ident-token", - "margin", - 3606, - 3611, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 3612, - 3612, - null - ], - [ - "number-token", - "0", - 3613, - 3613, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 3614, - 3614, - null - ], - [ - "number-token", - "0", - 3615, - 3615, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 3616, - 3616, - null - ], - [ - "dimension-token", - "1rem", - 3617, - 3620, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 3621, - 3621, - null - ], - [ - "ident-token", - "b", - 3622, - 3622, - { - "value": "b" - } - ], - [ - "comma-token", - ",", - 3623, - 3623, - null - ], - [ - "ident-token", - "strong", - 3624, - 3629, - { - "value": "strong" - } - ], - [ - "{-token", - "{", - 3630, - 3630, - null - ], - [ - "ident-token", - "font-weight", - 3631, - 3641, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 3642, - 3642, - null - ], - [ - "ident-token", - "bolder", - 3643, - 3648, - { - "value": "bolder" - } - ], - [ - "}-token", - "}", - 3649, - 3649, - null - ], - [ - "delim-token", - ".", - 3650, - 3650, - { - "value": "." - } - ], - [ - "ident-token", - "small", - 3651, - 3655, - { - "value": "small" - } - ], - [ - "comma-token", - ",", - 3656, - 3656, - null - ], - [ - "ident-token", - "small", - 3657, - 3661, - { - "value": "small" - } - ], - [ - "{-token", - "{", - 3662, - 3662, - null - ], - [ - "ident-token", - "font-size", - 3663, - 3671, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3672, - 3672, - null - ], - [ - "dimension-token", - ".875em", - 3673, - 3678, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 3679, - 3679, - null - ], - [ - "delim-token", - ".", - 3680, - 3680, - { - "value": "." - } - ], - [ - "ident-token", - "mark", - 3681, - 3684, - { - "value": "mark" - } - ], - [ - "comma-token", - ",", - 3685, - 3685, - null - ], - [ - "ident-token", - "mark", - 3686, - 3689, - { - "value": "mark" - } - ], - [ - "{-token", - "{", - 3690, - 3690, - null - ], - [ - "ident-token", - "padding", - 3691, - 3697, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 3698, - 3698, - null - ], - [ - "dimension-token", - ".1875em", - 3699, - 3705, - { - "value": 0.1875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 3706, - 3706, - null - ], - [ - "ident-token", - "background-color", - 3707, - 3722, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 3723, - 3723, - null - ], - [ - "function-token", - "var(", - 3724, - 3727, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-highlight-bg", - 3728, - 3744, - { - "value": "--bs-highlight-bg" - } - ], - [ - ")-token", - ")", - 3745, - 3745, - null - ], - [ - "}-token", - "}", - 3746, - 3746, - null - ], - [ - "ident-token", - "sub", - 3747, - 3749, - { - "value": "sub" - } - ], - [ - "comma-token", - ",", - 3750, - 3750, - null - ], - [ - "ident-token", - "sup", - 3751, - 3753, - { - "value": "sup" - } - ], - [ - "{-token", - "{", - 3754, - 3754, - null - ], - [ - "ident-token", - "position", - 3755, - 3762, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 3763, - 3763, - null - ], - [ - "ident-token", - "relative", - 3764, - 3771, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 3772, - 3772, - null - ], - [ - "ident-token", - "font-size", - 3773, - 3781, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 3782, - 3782, - null - ], - [ - "dimension-token", - ".75em", - 3783, - 3787, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 3788, - 3788, - null - ], - [ - "ident-token", - "line-height", - 3789, - 3799, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 3800, - 3800, - null - ], - [ - "number-token", - "0", - 3801, - 3801, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 3802, - 3802, - null - ], - [ - "ident-token", - "vertical-align", - 3803, - 3816, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 3817, - 3817, - null - ], - [ - "ident-token", - "baseline", - 3818, - 3825, - { - "value": "baseline" - } - ], - [ - "}-token", - "}", - 3826, - 3826, - null - ], - [ - "ident-token", - "sub", - 3827, - 3829, - { - "value": "sub" - } - ], - [ - "{-token", - "{", - 3830, - 3830, - null - ], - [ - "ident-token", - "bottom", - 3831, - 3836, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 3837, - 3837, - null - ], - [ - "dimension-token", - "-.25em", - 3838, - 3843, - { - "value": -0.25, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 3844, - 3844, - null - ], - [ - "ident-token", - "sup", - 3845, - 3847, - { - "value": "sup" - } - ], - [ - "{-token", - "{", - 3848, - 3848, - null - ], - [ - "ident-token", - "top", - 3849, - 3851, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 3852, - 3852, - null - ], - [ - "dimension-token", - "-.5em", - 3853, - 3857, - { - "value": -0.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 3858, - 3858, - null - ], - [ - "ident-token", - "a", - 3859, - 3859, - { - "value": "a" - } - ], - [ - "{-token", - "{", - 3860, - 3860, - null - ], - [ - "ident-token", - "color", - 3861, - 3865, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 3866, - 3866, - null - ], - [ - "function-token", - "var(", - 3867, - 3870, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-color", - 3871, - 3885, - { - "value": "--bs-link-color" - } - ], - [ - ")-token", - ")", - 3886, - 3886, - null - ], - [ - "semicolon-token", - ";", - 3887, - 3887, - null - ], - [ - "ident-token", - "text-decoration", - 3888, - 3902, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 3903, - 3903, - null - ], - [ - "ident-token", - "underline", - 3904, - 3912, - { - "value": "underline" - } - ], - [ - "}-token", - "}", - 3913, - 3913, - null - ], - [ - "ident-token", - "a", - 3914, - 3914, - { - "value": "a" - } - ], - [ - "colon-token", - ":", - 3915, - 3915, - null - ], - [ - "ident-token", - "hover", - 3916, - 3920, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 3921, - 3921, - null - ], - [ - "ident-token", - "color", - 3922, - 3926, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 3927, - 3927, - null - ], - [ - "function-token", - "var(", - 3928, - 3931, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 3932, - 3952, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 3953, - 3953, - null - ], - [ - "}-token", - "}", - 3954, - 3954, - null - ], - [ - "ident-token", - "a", - 3955, - 3955, - { - "value": "a" - } - ], - [ - "colon-token", - ":", - 3956, - 3956, - null - ], - [ - "function-token", - "not(", - 3957, - 3960, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 3961, - 3961, - null - ], - [ - "ident-token", - "href", - 3962, - 3965, - { - "value": "href" - } - ], - [ - "]-token", - "]", - 3966, - 3966, - null - ], - [ - ")-token", - ")", - 3967, - 3967, - null - ], - [ - "colon-token", - ":", - 3968, - 3968, - null - ], - [ - "function-token", - "not(", - 3969, - 3972, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 3973, - 3973, - null - ], - [ - "ident-token", - "class", - 3974, - 3978, - { - "value": "class" - } - ], - [ - "]-token", - "]", - 3979, - 3979, - null - ], - [ - ")-token", - ")", - 3980, - 3980, - null - ], - [ - "comma-token", - ",", - 3981, - 3981, - null - ], - [ - "ident-token", - "a", - 3982, - 3982, - { - "value": "a" - } - ], - [ - "colon-token", - ":", - 3983, - 3983, - null - ], - [ - "function-token", - "not(", - 3984, - 3987, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 3988, - 3988, - null - ], - [ - "ident-token", - "href", - 3989, - 3992, - { - "value": "href" - } - ], - [ - "]-token", - "]", - 3993, - 3993, - null - ], - [ - ")-token", - ")", - 3994, - 3994, - null - ], - [ - "colon-token", - ":", - 3995, - 3995, - null - ], - [ - "function-token", - "not(", - 3996, - 3999, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 4000, - 4000, - null - ], - [ - "ident-token", - "class", - 4001, - 4005, - { - "value": "class" - } - ], - [ - "]-token", - "]", - 4006, - 4006, - null - ], - [ - ")-token", - ")", - 4007, - 4007, - null - ], - [ - "colon-token", - ":", - 4008, - 4008, - null - ], - [ - "ident-token", - "hover", - 4009, - 4013, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 4014, - 4014, - null - ], - [ - "ident-token", - "color", - 4015, - 4019, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4020, - 4020, - null - ], - [ - "ident-token", - "inherit", - 4021, - 4027, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4028, - 4028, - null - ], - [ - "ident-token", - "text-decoration", - 4029, - 4043, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 4044, - 4044, - null - ], - [ - "ident-token", - "none", - 4045, - 4048, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 4049, - 4049, - null - ], - [ - "ident-token", - "code", - 4050, - 4053, - { - "value": "code" - } - ], - [ - "comma-token", - ",", - 4054, - 4054, - null - ], - [ - "ident-token", - "kbd", - 4055, - 4057, - { - "value": "kbd" - } - ], - [ - "comma-token", - ",", - 4058, - 4058, - null - ], - [ - "ident-token", - "pre", - 4059, - 4061, - { - "value": "pre" - } - ], - [ - "comma-token", - ",", - 4062, - 4062, - null - ], - [ - "ident-token", - "samp", - 4063, - 4066, - { - "value": "samp" - } - ], - [ - "{-token", - "{", - 4067, - 4067, - null - ], - [ - "ident-token", - "font-family", - 4068, - 4078, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 4079, - 4079, - null - ], - [ - "function-token", - "var(", - 4080, - 4083, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-font-monospace", - 4084, - 4102, - { - "value": "--bs-font-monospace" - } - ], - [ - ")-token", - ")", - 4103, - 4103, - null - ], - [ - "semicolon-token", - ";", - 4104, - 4104, - null - ], - [ - "ident-token", - "font-size", - 4105, - 4113, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4114, - 4114, - null - ], - [ - "dimension-token", - "1em", - 4115, - 4117, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "}-token", - "}", - 4118, - 4118, - null - ], - [ - "ident-token", - "pre", - 4119, - 4121, - { - "value": "pre" - } - ], - [ - "{-token", - "{", - 4122, - 4122, - null - ], - [ - "ident-token", - "display", - 4123, - 4129, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 4130, - 4130, - null - ], - [ - "ident-token", - "block", - 4131, - 4135, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 4136, - 4136, - null - ], - [ - "ident-token", - "margin-top", - 4137, - 4146, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 4147, - 4147, - null - ], - [ - "number-token", - "0", - 4148, - 4148, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 4149, - 4149, - null - ], - [ - "ident-token", - "margin-bottom", - 4150, - 4162, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 4163, - 4163, - null - ], - [ - "dimension-token", - "1rem", - 4164, - 4167, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 4168, - 4168, - null - ], - [ - "ident-token", - "overflow", - 4169, - 4176, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 4177, - 4177, - null - ], - [ - "ident-token", - "auto", - 4178, - 4181, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 4182, - 4182, - null - ], - [ - "ident-token", - "font-size", - 4183, - 4191, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4192, - 4192, - null - ], - [ - "dimension-token", - ".875em", - 4193, - 4198, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 4199, - 4199, - null - ], - [ - "ident-token", - "pre", - 4200, - 4202, - { - "value": "pre" - } - ], - [ - "whitespace-token", - " ", - 4203, - 4203, - null - ], - [ - "ident-token", - "code", - 4204, - 4207, - { - "value": "code" - } - ], - [ - "{-token", - "{", - 4208, - 4208, - null - ], - [ - "ident-token", - "font-size", - 4209, - 4217, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4218, - 4218, - null - ], - [ - "ident-token", - "inherit", - 4219, - 4225, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4226, - 4226, - null - ], - [ - "ident-token", - "color", - 4227, - 4231, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4232, - 4232, - null - ], - [ - "ident-token", - "inherit", - 4233, - 4239, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4240, - 4240, - null - ], - [ - "ident-token", - "word-break", - 4241, - 4250, - { - "value": "word-break" - } - ], - [ - "colon-token", - ":", - 4251, - 4251, - null - ], - [ - "ident-token", - "normal", - 4252, - 4257, - { - "value": "normal" - } - ], - [ - "}-token", - "}", - 4258, - 4258, - null - ], - [ - "ident-token", - "code", - 4259, - 4262, - { - "value": "code" - } - ], - [ - "{-token", - "{", - 4263, - 4263, - null - ], - [ - "ident-token", - "font-size", - 4264, - 4272, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4273, - 4273, - null - ], - [ - "dimension-token", - ".875em", - 4274, - 4279, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 4280, - 4280, - null - ], - [ - "ident-token", - "color", - 4281, - 4285, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4286, - 4286, - null - ], - [ - "function-token", - "var(", - 4287, - 4290, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-code-color", - 4291, - 4305, - { - "value": "--bs-code-color" - } - ], - [ - ")-token", - ")", - 4306, - 4306, - null - ], - [ - "semicolon-token", - ";", - 4307, - 4307, - null - ], - [ - "ident-token", - "word-wrap", - 4308, - 4316, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 4317, - 4317, - null - ], - [ - "ident-token", - "break-word", - 4318, - 4327, - { - "value": "break-word" - } - ], - [ - "}-token", - "}", - 4328, - 4328, - null - ], - [ - "ident-token", - "a", - 4329, - 4329, - { - "value": "a" - } - ], - [ - "delim-token", - ">", - 4330, - 4330, - { - "value": ">" - } - ], - [ - "ident-token", - "code", - 4331, - 4334, - { - "value": "code" - } - ], - [ - "{-token", - "{", - 4335, - 4335, - null - ], - [ - "ident-token", - "color", - 4336, - 4340, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4341, - 4341, - null - ], - [ - "ident-token", - "inherit", - 4342, - 4348, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 4349, - 4349, - null - ], - [ - "ident-token", - "kbd", - 4350, - 4352, - { - "value": "kbd" - } - ], - [ - "{-token", - "{", - 4353, - 4353, - null - ], - [ - "ident-token", - "padding", - 4354, - 4360, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 4361, - 4361, - null - ], - [ - "dimension-token", - ".1875rem", - 4362, - 4369, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 4370, - 4370, - null - ], - [ - "dimension-token", - ".375rem", - 4371, - 4377, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 4378, - 4378, - null - ], - [ - "ident-token", - "font-size", - 4379, - 4387, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4388, - 4388, - null - ], - [ - "dimension-token", - ".875em", - 4389, - 4394, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 4395, - 4395, - null - ], - [ - "ident-token", - "color", - 4396, - 4400, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4401, - 4401, - null - ], - [ - "function-token", - "var(", - 4402, - 4405, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-bg", - 4406, - 4417, - { - "value": "--bs-body-bg" - } - ], - [ - ")-token", - ")", - 4418, - 4418, - null - ], - [ - "semicolon-token", - ";", - 4419, - 4419, - null - ], - [ - "ident-token", - "background-color", - 4420, - 4435, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 4436, - 4436, - null - ], - [ - "function-token", - "var(", - 4437, - 4440, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 4441, - 4455, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 4456, - 4456, - null - ], - [ - "semicolon-token", - ";", - 4457, - 4457, - null - ], - [ - "ident-token", - "border-radius", - 4458, - 4470, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 4471, - 4471, - null - ], - [ - "dimension-token", - ".25rem", - 4472, - 4477, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 4478, - 4478, - null - ], - [ - "ident-token", - "kbd", - 4479, - 4481, - { - "value": "kbd" - } - ], - [ - "whitespace-token", - " ", - 4482, - 4482, - null - ], - [ - "ident-token", - "kbd", - 4483, - 4485, - { - "value": "kbd" - } - ], - [ - "{-token", - "{", - 4486, - 4486, - null - ], - [ - "ident-token", - "padding", - 4487, - 4493, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 4494, - 4494, - null - ], - [ - "number-token", - "0", - 4495, - 4495, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 4496, - 4496, - null - ], - [ - "ident-token", - "font-size", - 4497, - 4505, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4506, - 4506, - null - ], - [ - "dimension-token", - "1em", - 4507, - 4509, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "}-token", - "}", - 4510, - 4510, - null - ], - [ - "ident-token", - "figure", - 4511, - 4516, - { - "value": "figure" - } - ], - [ - "{-token", - "{", - 4517, - 4517, - null - ], - [ - "ident-token", - "margin", - 4518, - 4523, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 4524, - 4524, - null - ], - [ - "number-token", - "0", - 4525, - 4525, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 4526, - 4526, - null - ], - [ - "number-token", - "0", - 4527, - 4527, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 4528, - 4528, - null - ], - [ - "dimension-token", - "1rem", - 4529, - 4532, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 4533, - 4533, - null - ], - [ - "ident-token", - "img", - 4534, - 4536, - { - "value": "img" - } - ], - [ - "comma-token", - ",", - 4537, - 4537, - null - ], - [ - "ident-token", - "svg", - 4538, - 4540, - { - "value": "svg" - } - ], - [ - "{-token", - "{", - 4541, - 4541, - null - ], - [ - "ident-token", - "vertical-align", - 4542, - 4555, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 4556, - 4556, - null - ], - [ - "ident-token", - "middle", - 4557, - 4562, - { - "value": "middle" - } - ], - [ - "}-token", - "}", - 4563, - 4563, - null - ], - [ - "ident-token", - "table", - 4564, - 4568, - { - "value": "table" - } - ], - [ - "{-token", - "{", - 4569, - 4569, - null - ], - [ - "ident-token", - "caption-side", - 4570, - 4581, - { - "value": "caption-side" - } - ], - [ - "colon-token", - ":", - 4582, - 4582, - null - ], - [ - "ident-token", - "bottom", - 4583, - 4588, - { - "value": "bottom" - } - ], - [ - "semicolon-token", - ";", - 4589, - 4589, - null - ], - [ - "ident-token", - "border-collapse", - 4590, - 4604, - { - "value": "border-collapse" - } - ], - [ - "colon-token", - ":", - 4605, - 4605, - null - ], - [ - "ident-token", - "collapse", - 4606, - 4613, - { - "value": "collapse" - } - ], - [ - "}-token", - "}", - 4614, - 4614, - null - ], - [ - "ident-token", - "caption", - 4615, - 4621, - { - "value": "caption" - } - ], - [ - "{-token", - "{", - 4622, - 4622, - null - ], - [ - "ident-token", - "padding-top", - 4623, - 4633, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 4634, - 4634, - null - ], - [ - "dimension-token", - ".5rem", - 4635, - 4639, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 4640, - 4640, - null - ], - [ - "ident-token", - "padding-bottom", - 4641, - 4654, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 4655, - 4655, - null - ], - [ - "dimension-token", - ".5rem", - 4656, - 4660, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 4661, - 4661, - null - ], - [ - "ident-token", - "color", - 4662, - 4666, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 4667, - 4667, - null - ], - [ - "hash-token", - "#6c757d", - 4668, - 4674, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 4675, - 4675, - null - ], - [ - "ident-token", - "text-align", - 4676, - 4685, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 4686, - 4686, - null - ], - [ - "ident-token", - "left", - 4687, - 4690, - { - "value": "left" - } - ], - [ - "}-token", - "}", - 4691, - 4691, - null - ], - [ - "ident-token", - "th", - 4692, - 4693, - { - "value": "th" - } - ], - [ - "{-token", - "{", - 4694, - 4694, - null - ], - [ - "ident-token", - "text-align", - 4695, - 4704, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 4705, - 4705, - null - ], - [ - "ident-token", - "inherit", - 4706, - 4712, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4713, - 4713, - null - ], - [ - "ident-token", - "text-align", - 4714, - 4723, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 4724, - 4724, - null - ], - [ - "ident-token", - "-webkit-match-parent", - 4725, - 4744, - { - "value": "-webkit-match-parent" - } - ], - [ - "}-token", - "}", - 4745, - 4745, - null - ], - [ - "ident-token", - "tbody", - 4746, - 4750, - { - "value": "tbody" - } - ], - [ - "comma-token", - ",", - 4751, - 4751, - null - ], - [ - "ident-token", - "td", - 4752, - 4753, - { - "value": "td" - } - ], - [ - "comma-token", - ",", - 4754, - 4754, - null - ], - [ - "ident-token", - "tfoot", - 4755, - 4759, - { - "value": "tfoot" - } - ], - [ - "comma-token", - ",", - 4760, - 4760, - null - ], - [ - "ident-token", - "th", - 4761, - 4762, - { - "value": "th" - } - ], - [ - "comma-token", - ",", - 4763, - 4763, - null - ], - [ - "ident-token", - "thead", - 4764, - 4768, - { - "value": "thead" - } - ], - [ - "comma-token", - ",", - 4769, - 4769, - null - ], - [ - "ident-token", - "tr", - 4770, - 4771, - { - "value": "tr" - } - ], - [ - "{-token", - "{", - 4772, - 4772, - null - ], - [ - "ident-token", - "border-color", - 4773, - 4784, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 4785, - 4785, - null - ], - [ - "ident-token", - "inherit", - 4786, - 4792, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4793, - 4793, - null - ], - [ - "ident-token", - "border-style", - 4794, - 4805, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 4806, - 4806, - null - ], - [ - "ident-token", - "solid", - 4807, - 4811, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 4812, - 4812, - null - ], - [ - "ident-token", - "border-width", - 4813, - 4824, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 4825, - 4825, - null - ], - [ - "number-token", - "0", - 4826, - 4826, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 4827, - 4827, - null - ], - [ - "ident-token", - "label", - 4828, - 4832, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 4833, - 4833, - null - ], - [ - "ident-token", - "display", - 4834, - 4840, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 4841, - 4841, - null - ], - [ - "ident-token", - "inline-block", - 4842, - 4853, - { - "value": "inline-block" - } - ], - [ - "}-token", - "}", - 4854, - 4854, - null - ], - [ - "ident-token", - "button", - 4855, - 4860, - { - "value": "button" - } - ], - [ - "{-token", - "{", - 4861, - 4861, - null - ], - [ - "ident-token", - "border-radius", - 4862, - 4874, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 4875, - 4875, - null - ], - [ - "number-token", - "0", - 4876, - 4876, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 4877, - 4877, - null - ], - [ - "ident-token", - "button", - 4878, - 4883, - { - "value": "button" - } - ], - [ - "colon-token", - ":", - 4884, - 4884, - null - ], - [ - "ident-token", - "focus", - 4885, - 4889, - { - "value": "focus" - } - ], - [ - "colon-token", - ":", - 4890, - 4890, - null - ], - [ - "function-token", - "not(", - 4891, - 4894, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 4895, - 4895, - null - ], - [ - "ident-token", - "focus-visible", - 4896, - 4908, - { - "value": "focus-visible" - } - ], - [ - ")-token", - ")", - 4909, - 4909, - null - ], - [ - "{-token", - "{", - 4910, - 4910, - null - ], - [ - "ident-token", - "outline", - 4911, - 4917, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 4918, - 4918, - null - ], - [ - "number-token", - "0", - 4919, - 4919, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 4920, - 4920, - null - ], - [ - "ident-token", - "button", - 4921, - 4926, - { - "value": "button" - } - ], - [ - "comma-token", - ",", - 4927, - 4927, - null - ], - [ - "ident-token", - "input", - 4928, - 4932, - { - "value": "input" - } - ], - [ - "comma-token", - ",", - 4933, - 4933, - null - ], - [ - "ident-token", - "optgroup", - 4934, - 4941, - { - "value": "optgroup" - } - ], - [ - "comma-token", - ",", - 4942, - 4942, - null - ], - [ - "ident-token", - "select", - 4943, - 4948, - { - "value": "select" - } - ], - [ - "comma-token", - ",", - 4949, - 4949, - null - ], - [ - "ident-token", - "textarea", - 4950, - 4957, - { - "value": "textarea" - } - ], - [ - "{-token", - "{", - 4958, - 4958, - null - ], - [ - "ident-token", - "margin", - 4959, - 4964, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 4965, - 4965, - null - ], - [ - "number-token", - "0", - 4966, - 4966, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 4967, - 4967, - null - ], - [ - "ident-token", - "font-family", - 4968, - 4978, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 4979, - 4979, - null - ], - [ - "ident-token", - "inherit", - 4980, - 4986, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 4987, - 4987, - null - ], - [ - "ident-token", - "font-size", - 4988, - 4996, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 4997, - 4997, - null - ], - [ - "ident-token", - "inherit", - 4998, - 5004, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 5005, - 5005, - null - ], - [ - "ident-token", - "line-height", - 5006, - 5016, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 5017, - 5017, - null - ], - [ - "ident-token", - "inherit", - 5018, - 5024, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 5025, - 5025, - null - ], - [ - "ident-token", - "button", - 5026, - 5031, - { - "value": "button" - } - ], - [ - "comma-token", - ",", - 5032, - 5032, - null - ], - [ - "ident-token", - "select", - 5033, - 5038, - { - "value": "select" - } - ], - [ - "{-token", - "{", - 5039, - 5039, - null - ], - [ - "ident-token", - "text-transform", - 5040, - 5053, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 5054, - 5054, - null - ], - [ - "ident-token", - "none", - 5055, - 5058, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 5059, - 5059, - null - ], - [ - "[-token", - "[", - 5060, - 5060, - null - ], - [ - "ident-token", - "role", - 5061, - 5064, - { - "value": "role" - } - ], - [ - "delim-token", - "=", - 5065, - 5065, - { - "value": "=" - } - ], - [ - "ident-token", - "button", - 5066, - 5071, - { - "value": "button" - } - ], - [ - "]-token", - "]", - 5072, - 5072, - null - ], - [ - "{-token", - "{", - 5073, - 5073, - null - ], - [ - "ident-token", - "cursor", - 5074, - 5079, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 5080, - 5080, - null - ], - [ - "ident-token", - "pointer", - 5081, - 5087, - { - "value": "pointer" - } - ], - [ - "}-token", - "}", - 5088, - 5088, - null - ], - [ - "ident-token", - "select", - 5089, - 5094, - { - "value": "select" - } - ], - [ - "{-token", - "{", - 5095, - 5095, - null - ], - [ - "ident-token", - "word-wrap", - 5096, - 5104, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 5105, - 5105, - null - ], - [ - "ident-token", - "normal", - 5106, - 5111, - { - "value": "normal" - } - ], - [ - "}-token", - "}", - 5112, - 5112, - null - ], - [ - "ident-token", - "select", - 5113, - 5118, - { - "value": "select" - } - ], - [ - "colon-token", - ":", - 5119, - 5119, - null - ], - [ - "ident-token", - "disabled", - 5120, - 5127, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 5128, - 5128, - null - ], - [ - "ident-token", - "opacity", - 5129, - 5135, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 5136, - 5136, - null - ], - [ - "number-token", - "1", - 5137, - 5137, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 5138, - 5138, - null - ], - [ - "[-token", - "[", - 5139, - 5139, - null - ], - [ - "ident-token", - "list", - 5140, - 5143, - { - "value": "list" - } - ], - [ - "]-token", - "]", - 5144, - 5144, - null - ], - [ - "colon-token", - ":", - 5145, - 5145, - null - ], - [ - "function-token", - "not(", - 5146, - 5149, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 5150, - 5150, - null - ], - [ - "ident-token", - "type", - 5151, - 5154, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5155, - 5155, - { - "value": "=" - } - ], - [ - "ident-token", - "date", - 5156, - 5159, - { - "value": "date" - } - ], - [ - "]-token", - "]", - 5160, - 5160, - null - ], - [ - ")-token", - ")", - 5161, - 5161, - null - ], - [ - "colon-token", - ":", - 5162, - 5162, - null - ], - [ - "function-token", - "not(", - 5163, - 5166, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 5167, - 5167, - null - ], - [ - "ident-token", - "type", - 5168, - 5171, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5172, - 5172, - { - "value": "=" - } - ], - [ - "ident-token", - "datetime-local", - 5173, - 5186, - { - "value": "datetime-local" - } - ], - [ - "]-token", - "]", - 5187, - 5187, - null - ], - [ - ")-token", - ")", - 5188, - 5188, - null - ], - [ - "colon-token", - ":", - 5189, - 5189, - null - ], - [ - "function-token", - "not(", - 5190, - 5193, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 5194, - 5194, - null - ], - [ - "ident-token", - "type", - 5195, - 5198, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5199, - 5199, - { - "value": "=" - } - ], - [ - "ident-token", - "month", - 5200, - 5204, - { - "value": "month" - } - ], - [ - "]-token", - "]", - 5205, - 5205, - null - ], - [ - ")-token", - ")", - 5206, - 5206, - null - ], - [ - "colon-token", - ":", - 5207, - 5207, - null - ], - [ - "function-token", - "not(", - 5208, - 5211, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 5212, - 5212, - null - ], - [ - "ident-token", - "type", - 5213, - 5216, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5217, - 5217, - { - "value": "=" - } - ], - [ - "ident-token", - "week", - 5218, - 5221, - { - "value": "week" - } - ], - [ - "]-token", - "]", - 5222, - 5222, - null - ], - [ - ")-token", - ")", - 5223, - 5223, - null - ], - [ - "colon-token", - ":", - 5224, - 5224, - null - ], - [ - "function-token", - "not(", - 5225, - 5228, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 5229, - 5229, - null - ], - [ - "ident-token", - "type", - 5230, - 5233, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5234, - 5234, - { - "value": "=" - } - ], - [ - "ident-token", - "time", - 5235, - 5238, - { - "value": "time" - } - ], - [ - "]-token", - "]", - 5239, - 5239, - null - ], - [ - ")-token", - ")", - 5240, - 5240, - null - ], - [ - "colon-token", - ":", - 5241, - 5241, - null - ], - [ - "colon-token", - ":", - 5242, - 5242, - null - ], - [ - "ident-token", - "-webkit-calendar-picker-indicator", - 5243, - 5275, - { - "value": "-webkit-calendar-picker-indicator" - } - ], - [ - "{-token", - "{", - 5276, - 5276, - null - ], - [ - "ident-token", - "display", - 5277, - 5283, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 5284, - 5284, - null - ], - [ - "ident-token", - "none", - 5285, - 5288, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 5289, - 5289, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 5290, - 5298, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 5299, - 5299, - null - ], - [ - "[-token", - "[", - 5300, - 5300, - null - ], - [ - "ident-token", - "type", - 5301, - 5304, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5305, - 5305, - { - "value": "=" - } - ], - [ - "ident-token", - "button", - 5306, - 5311, - { - "value": "button" - } - ], - [ - "]-token", - "]", - 5312, - 5312, - null - ], - [ - "comma-token", - ",", - 5313, - 5313, - null - ], - [ - "[-token", - "[", - 5314, - 5314, - null - ], - [ - "ident-token", - "type", - 5315, - 5318, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5319, - 5319, - { - "value": "=" - } - ], - [ - "ident-token", - "reset", - 5320, - 5324, - { - "value": "reset" - } - ], - [ - "]-token", - "]", - 5325, - 5325, - null - ], - [ - "comma-token", - ",", - 5326, - 5326, - null - ], - [ - "[-token", - "[", - 5327, - 5327, - null - ], - [ - "ident-token", - "type", - 5328, - 5331, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5332, - 5332, - { - "value": "=" - } - ], - [ - "ident-token", - "submit", - 5333, - 5338, - { - "value": "submit" - } - ], - [ - "]-token", - "]", - 5339, - 5339, - null - ], - [ - "comma-token", - ",", - 5340, - 5340, - null - ], - [ - "ident-token", - "button", - 5341, - 5346, - { - "value": "button" - } - ], - [ - "{-token", - "{", - 5347, - 5347, - null - ], - [ - "ident-token", - "-webkit-appearance", - 5348, - 5365, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 5366, - 5366, - null - ], - [ - "ident-token", - "button", - 5367, - 5372, - { - "value": "button" - } - ], - [ - "}-token", - "}", - 5373, - 5373, - null - ], - [ - "[-token", - "[", - 5374, - 5374, - null - ], - [ - "ident-token", - "type", - 5375, - 5378, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5379, - 5379, - { - "value": "=" - } - ], - [ - "ident-token", - "button", - 5380, - 5385, - { - "value": "button" - } - ], - [ - "]-token", - "]", - 5386, - 5386, - null - ], - [ - "colon-token", - ":", - 5387, - 5387, - null - ], - [ - "function-token", - "not(", - 5388, - 5391, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 5392, - 5392, - null - ], - [ - "ident-token", - "disabled", - 5393, - 5400, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 5401, - 5401, - null - ], - [ - "comma-token", - ",", - 5402, - 5402, - null - ], - [ - "[-token", - "[", - 5403, - 5403, - null - ], - [ - "ident-token", - "type", - 5404, - 5407, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5408, - 5408, - { - "value": "=" - } - ], - [ - "ident-token", - "reset", - 5409, - 5413, - { - "value": "reset" - } - ], - [ - "]-token", - "]", - 5414, - 5414, - null - ], - [ - "colon-token", - ":", - 5415, - 5415, - null - ], - [ - "function-token", - "not(", - 5416, - 5419, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 5420, - 5420, - null - ], - [ - "ident-token", - "disabled", - 5421, - 5428, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 5429, - 5429, - null - ], - [ - "comma-token", - ",", - 5430, - 5430, - null - ], - [ - "[-token", - "[", - 5431, - 5431, - null - ], - [ - "ident-token", - "type", - 5432, - 5435, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 5436, - 5436, - { - "value": "=" - } - ], - [ - "ident-token", - "submit", - 5437, - 5442, - { - "value": "submit" - } - ], - [ - "]-token", - "]", - 5443, - 5443, - null - ], - [ - "colon-token", - ":", - 5444, - 5444, - null - ], - [ - "function-token", - "not(", - 5445, - 5448, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 5449, - 5449, - null - ], - [ - "ident-token", - "disabled", - 5450, - 5457, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 5458, - 5458, - null - ], - [ - "comma-token", - ",", - 5459, - 5459, - null - ], - [ - "ident-token", - "button", - 5460, - 5465, - { - "value": "button" - } - ], - [ - "colon-token", - ":", - 5466, - 5466, - null - ], - [ - "function-token", - "not(", - 5467, - 5470, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 5471, - 5471, - null - ], - [ - "ident-token", - "disabled", - 5472, - 5479, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 5480, - 5480, - null - ], - [ - "{-token", - "{", - 5481, - 5481, - null - ], - [ - "ident-token", - "cursor", - 5482, - 5487, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 5488, - 5488, - null - ], - [ - "ident-token", - "pointer", - 5489, - 5495, - { - "value": "pointer" - } - ], - [ - "}-token", - "}", - 5496, - 5496, - null - ], - [ - "colon-token", - ":", - 5497, - 5497, - null - ], - [ - "colon-token", - ":", - 5498, - 5498, - null - ], - [ - "ident-token", - "-moz-focus-inner", - 5499, - 5514, - { - "value": "-moz-focus-inner" - } - ], - [ - "{-token", - "{", - 5515, - 5515, - null - ], - [ - "ident-token", - "padding", - 5516, - 5522, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 5523, - 5523, - null - ], - [ - "number-token", - "0", - 5524, - 5524, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 5525, - 5525, - null - ], - [ - "ident-token", - "border-style", - 5526, - 5537, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 5538, - 5538, - null - ], - [ - "ident-token", - "none", - 5539, - 5542, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 5543, - 5543, - null - ], - [ - "ident-token", - "textarea", - 5544, - 5551, - { - "value": "textarea" - } - ], - [ - "{-token", - "{", - 5552, - 5552, - null - ], - [ - "ident-token", - "resize", - 5553, - 5558, - { - "value": "resize" - } - ], - [ - "colon-token", - ":", - 5559, - 5559, - null - ], - [ - "ident-token", - "vertical", - 5560, - 5567, - { - "value": "vertical" - } - ], - [ - "}-token", - "}", - 5568, - 5568, - null - ], - [ - "ident-token", - "fieldset", - 5569, - 5576, - { - "value": "fieldset" - } - ], - [ - "{-token", - "{", - 5577, - 5577, - null - ], - [ - "ident-token", - "min-width", - 5578, - 5586, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 5587, - 5587, - null - ], - [ - "number-token", - "0", - 5588, - 5588, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 5589, - 5589, - null - ], - [ - "ident-token", - "padding", - 5590, - 5596, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 5597, - 5597, - null - ], - [ - "number-token", - "0", - 5598, - 5598, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 5599, - 5599, - null - ], - [ - "ident-token", - "margin", - 5600, - 5605, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 5606, - 5606, - null - ], - [ - "number-token", - "0", - 5607, - 5607, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 5608, - 5608, - null - ], - [ - "ident-token", - "border", - 5609, - 5614, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 5615, - 5615, - null - ], - [ - "number-token", - "0", - 5616, - 5616, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 5617, - 5617, - null - ], - [ - "ident-token", - "legend", - 5618, - 5623, - { - "value": "legend" - } - ], - [ - "{-token", - "{", - 5624, - 5624, - null - ], - [ - "ident-token", - "float", - 5625, - 5629, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 5630, - 5630, - null - ], - [ - "ident-token", - "left", - 5631, - 5634, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 5635, - 5635, - null - ], - [ - "ident-token", - "width", - 5636, - 5640, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 5641, - 5641, - null - ], - [ - "percentage-token", - "100%", - 5642, - 5645, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 5646, - 5646, - null - ], - [ - "ident-token", - "padding", - 5647, - 5653, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 5654, - 5654, - null - ], - [ - "number-token", - "0", - 5655, - 5655, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 5656, - 5656, - null - ], - [ - "ident-token", - "margin-bottom", - 5657, - 5669, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 5670, - 5670, - null - ], - [ - "dimension-token", - ".5rem", - 5671, - 5675, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 5676, - 5676, - null - ], - [ - "ident-token", - "font-size", - 5677, - 5685, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 5686, - 5686, - null - ], - [ - "function-token", - "calc(", - 5687, - 5691, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.275rem", - 5692, - 5699, - { - "value": 1.275, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 5700, - 5700, - null - ], - [ - "delim-token", - "+", - 5701, - 5701, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 5702, - 5702, - null - ], - [ - "dimension-token", - ".3vw", - 5703, - 5706, - { - "value": 0.3, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 5707, - 5707, - null - ], - [ - "semicolon-token", - ";", - 5708, - 5708, - null - ], - [ - "ident-token", - "line-height", - 5709, - 5719, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 5720, - 5720, - null - ], - [ - "ident-token", - "inherit", - 5721, - 5727, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 5728, - 5728, - null - ], - [ - "at-keyword-token", - "@media", - 5729, - 5734, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 5735, - 5735, - null - ], - [ - "(-token", - "(", - 5736, - 5736, - null - ], - [ - "ident-token", - "min-width", - 5737, - 5745, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 5746, - 5746, - null - ], - [ - "dimension-token", - "1200px", - 5747, - 5752, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 5753, - 5753, - null - ], - [ - "{-token", - "{", - 5754, - 5754, - null - ], - [ - "ident-token", - "legend", - 5755, - 5760, - { - "value": "legend" - } - ], - [ - "{-token", - "{", - 5761, - 5761, - null - ], - [ - "ident-token", - "font-size", - 5762, - 5770, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 5771, - 5771, - null - ], - [ - "dimension-token", - "1.5rem", - 5772, - 5777, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 5778, - 5778, - null - ], - [ - "}-token", - "}", - 5779, - 5779, - null - ], - [ - "ident-token", - "legend", - 5780, - 5785, - { - "value": "legend" - } - ], - [ - "delim-token", - "+", - 5786, - 5786, - { - "value": "+" - } - ], - [ - "delim-token", - "*", - 5787, - 5787, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 5788, - 5788, - null - ], - [ - "ident-token", - "clear", - 5789, - 5793, - { - "value": "clear" - } - ], - [ - "colon-token", - ":", - 5794, - 5794, - null - ], - [ - "ident-token", - "left", - 5795, - 5798, - { - "value": "left" - } - ], - [ - "}-token", - "}", - 5799, - 5799, - null - ], - [ - "colon-token", - ":", - 5800, - 5800, - null - ], - [ - "colon-token", - ":", - 5801, - 5801, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-day-field", - 5802, - 5832, - { - "value": "-webkit-datetime-edit-day-field" - } - ], - [ - "comma-token", - ",", - 5833, - 5833, - null - ], - [ - "colon-token", - ":", - 5834, - 5834, - null - ], - [ - "colon-token", - ":", - 5835, - 5835, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-fields-wrapper", - 5836, - 5871, - { - "value": "-webkit-datetime-edit-fields-wrapper" - } - ], - [ - "comma-token", - ",", - 5872, - 5872, - null - ], - [ - "colon-token", - ":", - 5873, - 5873, - null - ], - [ - "colon-token", - ":", - 5874, - 5874, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-hour-field", - 5875, - 5906, - { - "value": "-webkit-datetime-edit-hour-field" - } - ], - [ - "comma-token", - ",", - 5907, - 5907, - null - ], - [ - "colon-token", - ":", - 5908, - 5908, - null - ], - [ - "colon-token", - ":", - 5909, - 5909, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-minute", - 5910, - 5937, - { - "value": "-webkit-datetime-edit-minute" - } - ], - [ - "comma-token", - ",", - 5938, - 5938, - null - ], - [ - "colon-token", - ":", - 5939, - 5939, - null - ], - [ - "colon-token", - ":", - 5940, - 5940, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-month-field", - 5941, - 5973, - { - "value": "-webkit-datetime-edit-month-field" - } - ], - [ - "comma-token", - ",", - 5974, - 5974, - null - ], - [ - "colon-token", - ":", - 5975, - 5975, - null - ], - [ - "colon-token", - ":", - 5976, - 5976, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-text", - 5977, - 6002, - { - "value": "-webkit-datetime-edit-text" - } - ], - [ - "comma-token", - ",", - 6003, - 6003, - null - ], - [ - "colon-token", - ":", - 6004, - 6004, - null - ], - [ - "colon-token", - ":", - 6005, - 6005, - null - ], - [ - "ident-token", - "-webkit-datetime-edit-year-field", - 6006, - 6037, - { - "value": "-webkit-datetime-edit-year-field" - } - ], - [ - "{-token", - "{", - 6038, - 6038, - null - ], - [ - "ident-token", - "padding", - 6039, - 6045, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 6046, - 6046, - null - ], - [ - "number-token", - "0", - 6047, - 6047, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 6048, - 6048, - null - ], - [ - "colon-token", - ":", - 6049, - 6049, - null - ], - [ - "colon-token", - ":", - 6050, - 6050, - null - ], - [ - "ident-token", - "-webkit-inner-spin-button", - 6051, - 6075, - { - "value": "-webkit-inner-spin-button" - } - ], - [ - "{-token", - "{", - 6076, - 6076, - null - ], - [ - "ident-token", - "height", - 6077, - 6082, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 6083, - 6083, - null - ], - [ - "ident-token", - "auto", - 6084, - 6087, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 6088, - 6088, - null - ], - [ - "[-token", - "[", - 6089, - 6089, - null - ], - [ - "ident-token", - "type", - 6090, - 6093, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 6094, - 6094, - { - "value": "=" - } - ], - [ - "ident-token", - "search", - 6095, - 6100, - { - "value": "search" - } - ], - [ - "]-token", - "]", - 6101, - 6101, - null - ], - [ - "{-token", - "{", - 6102, - 6102, - null - ], - [ - "ident-token", - "outline-offset", - 6103, - 6116, - { - "value": "outline-offset" - } - ], - [ - "colon-token", - ":", - 6117, - 6117, - null - ], - [ - "dimension-token", - "-2px", - 6118, - 6121, - { - "value": -2, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 6122, - 6122, - null - ], - [ - "ident-token", - "-webkit-appearance", - 6123, - 6140, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 6141, - 6141, - null - ], - [ - "ident-token", - "textfield", - 6142, - 6150, - { - "value": "textfield" - } - ], - [ - "}-token", - "}", - 6151, - 6151, - null - ], - [ - "colon-token", - ":", - 6152, - 6152, - null - ], - [ - "colon-token", - ":", - 6153, - 6153, - null - ], - [ - "ident-token", - "-webkit-search-decoration", - 6154, - 6178, - { - "value": "-webkit-search-decoration" - } - ], - [ - "{-token", - "{", - 6179, - 6179, - null - ], - [ - "ident-token", - "-webkit-appearance", - 6180, - 6197, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 6198, - 6198, - null - ], - [ - "ident-token", - "none", - 6199, - 6202, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 6203, - 6203, - null - ], - [ - "colon-token", - ":", - 6204, - 6204, - null - ], - [ - "colon-token", - ":", - 6205, - 6205, - null - ], - [ - "ident-token", - "-webkit-color-swatch-wrapper", - 6206, - 6233, - { - "value": "-webkit-color-swatch-wrapper" - } - ], - [ - "{-token", - "{", - 6234, - 6234, - null - ], - [ - "ident-token", - "padding", - 6235, - 6241, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 6242, - 6242, - null - ], - [ - "number-token", - "0", - 6243, - 6243, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 6244, - 6244, - null - ], - [ - "colon-token", - ":", - 6245, - 6245, - null - ], - [ - "colon-token", - ":", - 6246, - 6246, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 6247, - 6272, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 6273, - 6273, - null - ], - [ - "ident-token", - "font", - 6274, - 6277, - { - "value": "font" - } - ], - [ - "colon-token", - ":", - 6278, - 6278, - null - ], - [ - "ident-token", - "inherit", - 6279, - 6285, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 6286, - 6286, - null - ], - [ - "ident-token", - "-webkit-appearance", - 6287, - 6304, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 6305, - 6305, - null - ], - [ - "ident-token", - "button", - 6306, - 6311, - { - "value": "button" - } - ], - [ - "}-token", - "}", - 6312, - 6312, - null - ], - [ - "colon-token", - ":", - 6313, - 6313, - null - ], - [ - "colon-token", - ":", - 6314, - 6314, - null - ], - [ - "ident-token", - "file-selector-button", - 6315, - 6334, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 6335, - 6335, - null - ], - [ - "ident-token", - "font", - 6336, - 6339, - { - "value": "font" - } - ], - [ - "colon-token", - ":", - 6340, - 6340, - null - ], - [ - "ident-token", - "inherit", - 6341, - 6347, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 6348, - 6348, - null - ], - [ - "ident-token", - "-webkit-appearance", - 6349, - 6366, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 6367, - 6367, - null - ], - [ - "ident-token", - "button", - 6368, - 6373, - { - "value": "button" - } - ], - [ - "}-token", - "}", - 6374, - 6374, - null - ], - [ - "ident-token", - "output", - 6375, - 6380, - { - "value": "output" - } - ], - [ - "{-token", - "{", - 6381, - 6381, - null - ], - [ - "ident-token", - "display", - 6382, - 6388, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 6389, - 6389, - null - ], - [ - "ident-token", - "inline-block", - 6390, - 6401, - { - "value": "inline-block" - } - ], - [ - "}-token", - "}", - 6402, - 6402, - null - ], - [ - "ident-token", - "iframe", - 6403, - 6408, - { - "value": "iframe" - } - ], - [ - "{-token", - "{", - 6409, - 6409, - null - ], - [ - "ident-token", - "border", - 6410, - 6415, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 6416, - 6416, - null - ], - [ - "number-token", - "0", - 6417, - 6417, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 6418, - 6418, - null - ], - [ - "ident-token", - "summary", - 6419, - 6425, - { - "value": "summary" - } - ], - [ - "{-token", - "{", - 6426, - 6426, - null - ], - [ - "ident-token", - "display", - 6427, - 6433, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 6434, - 6434, - null - ], - [ - "ident-token", - "list-item", - 6435, - 6443, - { - "value": "list-item" - } - ], - [ - "semicolon-token", - ";", - 6444, - 6444, - null - ], - [ - "ident-token", - "cursor", - 6445, - 6450, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 6451, - 6451, - null - ], - [ - "ident-token", - "pointer", - 6452, - 6458, - { - "value": "pointer" - } - ], - [ - "}-token", - "}", - 6459, - 6459, - null - ], - [ - "ident-token", - "progress", - 6460, - 6467, - { - "value": "progress" - } - ], - [ - "{-token", - "{", - 6468, - 6468, - null - ], - [ - "ident-token", - "vertical-align", - 6469, - 6482, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 6483, - 6483, - null - ], - [ - "ident-token", - "baseline", - 6484, - 6491, - { - "value": "baseline" - } - ], - [ - "}-token", - "}", - 6492, - 6492, - null - ], - [ - "[-token", - "[", - 6493, - 6493, - null - ], - [ - "ident-token", - "hidden", - 6494, - 6499, - { - "value": "hidden" - } - ], - [ - "]-token", - "]", - 6500, - 6500, - null - ], - [ - "{-token", - "{", - 6501, - 6501, - null - ], - [ - "ident-token", - "display", - 6502, - 6508, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 6509, - 6509, - null - ], - [ - "ident-token", - "none", - 6510, - 6513, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 6514, - 6514, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 6515, - 6523, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 6524, - 6524, - null - ], - [ - "delim-token", - ".", - 6525, - 6525, - { - "value": "." - } - ], - [ - "ident-token", - "lead", - 6526, - 6529, - { - "value": "lead" - } - ], - [ - "{-token", - "{", - 6530, - 6530, - null - ], - [ - "ident-token", - "font-size", - 6531, - 6539, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6540, - 6540, - null - ], - [ - "dimension-token", - "1.25rem", - 6541, - 6547, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 6548, - 6548, - null - ], - [ - "ident-token", - "font-weight", - 6549, - 6559, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 6560, - 6560, - null - ], - [ - "number-token", - "300", - 6561, - 6563, - { - "value": 300, - "type": "integer" - } - ], - [ - "}-token", - "}", - 6564, - 6564, - null - ], - [ - "delim-token", - ".", - 6565, - 6565, - { - "value": "." - } - ], - [ - "ident-token", - "display-1", - 6566, - 6574, - { - "value": "display-1" - } - ], - [ - "{-token", - "{", - 6575, - 6575, - null - ], - [ - "ident-token", - "font-size", - 6576, - 6584, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6585, - 6585, - null - ], - [ - "function-token", - "calc(", - 6586, - 6590, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.625rem", - 6591, - 6598, - { - "value": 1.625, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 6599, - 6599, - null - ], - [ - "delim-token", - "+", - 6600, - 6600, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 6601, - 6601, - null - ], - [ - "dimension-token", - "4.5vw", - 6602, - 6606, - { - "value": 4.5, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 6607, - 6607, - null - ], - [ - "semicolon-token", - ";", - 6608, - 6608, - null - ], - [ - "ident-token", - "font-weight", - 6609, - 6619, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 6620, - 6620, - null - ], - [ - "number-token", - "300", - 6621, - 6623, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 6624, - 6624, - null - ], - [ - "ident-token", - "line-height", - 6625, - 6635, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 6636, - 6636, - null - ], - [ - "number-token", - "1.2", - 6637, - 6639, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 6640, - 6640, - null - ], - [ - "at-keyword-token", - "@media", - 6641, - 6646, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 6647, - 6647, - null - ], - [ - "(-token", - "(", - 6648, - 6648, - null - ], - [ - "ident-token", - "min-width", - 6649, - 6657, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 6658, - 6658, - null - ], - [ - "dimension-token", - "1200px", - 6659, - 6664, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 6665, - 6665, - null - ], - [ - "{-token", - "{", - 6666, - 6666, - null - ], - [ - "delim-token", - ".", - 6667, - 6667, - { - "value": "." - } - ], - [ - "ident-token", - "display-1", - 6668, - 6676, - { - "value": "display-1" - } - ], - [ - "{-token", - "{", - 6677, - 6677, - null - ], - [ - "ident-token", - "font-size", - 6678, - 6686, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6687, - 6687, - null - ], - [ - "dimension-token", - "5rem", - 6688, - 6691, - { - "value": 5, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 6692, - 6692, - null - ], - [ - "}-token", - "}", - 6693, - 6693, - null - ], - [ - "delim-token", - ".", - 6694, - 6694, - { - "value": "." - } - ], - [ - "ident-token", - "display-2", - 6695, - 6703, - { - "value": "display-2" - } - ], - [ - "{-token", - "{", - 6704, - 6704, - null - ], - [ - "ident-token", - "font-size", - 6705, - 6713, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6714, - 6714, - null - ], - [ - "function-token", - "calc(", - 6715, - 6719, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.575rem", - 6720, - 6727, - { - "value": 1.575, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 6728, - 6728, - null - ], - [ - "delim-token", - "+", - 6729, - 6729, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 6730, - 6730, - null - ], - [ - "dimension-token", - "3.9vw", - 6731, - 6735, - { - "value": 3.9, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 6736, - 6736, - null - ], - [ - "semicolon-token", - ";", - 6737, - 6737, - null - ], - [ - "ident-token", - "font-weight", - 6738, - 6748, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 6749, - 6749, - null - ], - [ - "number-token", - "300", - 6750, - 6752, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 6753, - 6753, - null - ], - [ - "ident-token", - "line-height", - 6754, - 6764, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 6765, - 6765, - null - ], - [ - "number-token", - "1.2", - 6766, - 6768, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 6769, - 6769, - null - ], - [ - "at-keyword-token", - "@media", - 6770, - 6775, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 6776, - 6776, - null - ], - [ - "(-token", - "(", - 6777, - 6777, - null - ], - [ - "ident-token", - "min-width", - 6778, - 6786, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 6787, - 6787, - null - ], - [ - "dimension-token", - "1200px", - 6788, - 6793, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 6794, - 6794, - null - ], - [ - "{-token", - "{", - 6795, - 6795, - null - ], - [ - "delim-token", - ".", - 6796, - 6796, - { - "value": "." - } - ], - [ - "ident-token", - "display-2", - 6797, - 6805, - { - "value": "display-2" - } - ], - [ - "{-token", - "{", - 6806, - 6806, - null - ], - [ - "ident-token", - "font-size", - 6807, - 6815, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6816, - 6816, - null - ], - [ - "dimension-token", - "4.5rem", - 6817, - 6822, - { - "value": 4.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 6823, - 6823, - null - ], - [ - "}-token", - "}", - 6824, - 6824, - null - ], - [ - "delim-token", - ".", - 6825, - 6825, - { - "value": "." - } - ], - [ - "ident-token", - "display-3", - 6826, - 6834, - { - "value": "display-3" - } - ], - [ - "{-token", - "{", - 6835, - 6835, - null - ], - [ - "ident-token", - "font-size", - 6836, - 6844, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6845, - 6845, - null - ], - [ - "function-token", - "calc(", - 6846, - 6850, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.525rem", - 6851, - 6858, - { - "value": 1.525, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 6859, - 6859, - null - ], - [ - "delim-token", - "+", - 6860, - 6860, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 6861, - 6861, - null - ], - [ - "dimension-token", - "3.3vw", - 6862, - 6866, - { - "value": 3.3, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 6867, - 6867, - null - ], - [ - "semicolon-token", - ";", - 6868, - 6868, - null - ], - [ - "ident-token", - "font-weight", - 6869, - 6879, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 6880, - 6880, - null - ], - [ - "number-token", - "300", - 6881, - 6883, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 6884, - 6884, - null - ], - [ - "ident-token", - "line-height", - 6885, - 6895, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 6896, - 6896, - null - ], - [ - "number-token", - "1.2", - 6897, - 6899, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 6900, - 6900, - null - ], - [ - "at-keyword-token", - "@media", - 6901, - 6906, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 6907, - 6907, - null - ], - [ - "(-token", - "(", - 6908, - 6908, - null - ], - [ - "ident-token", - "min-width", - 6909, - 6917, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 6918, - 6918, - null - ], - [ - "dimension-token", - "1200px", - 6919, - 6924, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 6925, - 6925, - null - ], - [ - "{-token", - "{", - 6926, - 6926, - null - ], - [ - "delim-token", - ".", - 6927, - 6927, - { - "value": "." - } - ], - [ - "ident-token", - "display-3", - 6928, - 6936, - { - "value": "display-3" - } - ], - [ - "{-token", - "{", - 6937, - 6937, - null - ], - [ - "ident-token", - "font-size", - 6938, - 6946, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6947, - 6947, - null - ], - [ - "dimension-token", - "4rem", - 6948, - 6951, - { - "value": 4, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 6952, - 6952, - null - ], - [ - "}-token", - "}", - 6953, - 6953, - null - ], - [ - "delim-token", - ".", - 6954, - 6954, - { - "value": "." - } - ], - [ - "ident-token", - "display-4", - 6955, - 6963, - { - "value": "display-4" - } - ], - [ - "{-token", - "{", - 6964, - 6964, - null - ], - [ - "ident-token", - "font-size", - 6965, - 6973, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 6974, - 6974, - null - ], - [ - "function-token", - "calc(", - 6975, - 6979, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.475rem", - 6980, - 6987, - { - "value": 1.475, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 6988, - 6988, - null - ], - [ - "delim-token", - "+", - 6989, - 6989, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 6990, - 6990, - null - ], - [ - "dimension-token", - "2.7vw", - 6991, - 6995, - { - "value": 2.7, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 6996, - 6996, - null - ], - [ - "semicolon-token", - ";", - 6997, - 6997, - null - ], - [ - "ident-token", - "font-weight", - 6998, - 7008, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 7009, - 7009, - null - ], - [ - "number-token", - "300", - 7010, - 7012, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 7013, - 7013, - null - ], - [ - "ident-token", - "line-height", - 7014, - 7024, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 7025, - 7025, - null - ], - [ - "number-token", - "1.2", - 7026, - 7028, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 7029, - 7029, - null - ], - [ - "at-keyword-token", - "@media", - 7030, - 7035, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 7036, - 7036, - null - ], - [ - "(-token", - "(", - 7037, - 7037, - null - ], - [ - "ident-token", - "min-width", - 7038, - 7046, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 7047, - 7047, - null - ], - [ - "dimension-token", - "1200px", - 7048, - 7053, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 7054, - 7054, - null - ], - [ - "{-token", - "{", - 7055, - 7055, - null - ], - [ - "delim-token", - ".", - 7056, - 7056, - { - "value": "." - } - ], - [ - "ident-token", - "display-4", - 7057, - 7065, - { - "value": "display-4" - } - ], - [ - "{-token", - "{", - 7066, - 7066, - null - ], - [ - "ident-token", - "font-size", - 7067, - 7075, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7076, - 7076, - null - ], - [ - "dimension-token", - "3.5rem", - 7077, - 7082, - { - "value": 3.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 7083, - 7083, - null - ], - [ - "}-token", - "}", - 7084, - 7084, - null - ], - [ - "delim-token", - ".", - 7085, - 7085, - { - "value": "." - } - ], - [ - "ident-token", - "display-5", - 7086, - 7094, - { - "value": "display-5" - } - ], - [ - "{-token", - "{", - 7095, - 7095, - null - ], - [ - "ident-token", - "font-size", - 7096, - 7104, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7105, - 7105, - null - ], - [ - "function-token", - "calc(", - 7106, - 7110, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.425rem", - 7111, - 7118, - { - "value": 1.425, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 7119, - 7119, - null - ], - [ - "delim-token", - "+", - 7120, - 7120, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 7121, - 7121, - null - ], - [ - "dimension-token", - "2.1vw", - 7122, - 7126, - { - "value": 2.1, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 7127, - 7127, - null - ], - [ - "semicolon-token", - ";", - 7128, - 7128, - null - ], - [ - "ident-token", - "font-weight", - 7129, - 7139, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 7140, - 7140, - null - ], - [ - "number-token", - "300", - 7141, - 7143, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 7144, - 7144, - null - ], - [ - "ident-token", - "line-height", - 7145, - 7155, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 7156, - 7156, - null - ], - [ - "number-token", - "1.2", - 7157, - 7159, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 7160, - 7160, - null - ], - [ - "at-keyword-token", - "@media", - 7161, - 7166, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 7167, - 7167, - null - ], - [ - "(-token", - "(", - 7168, - 7168, - null - ], - [ - "ident-token", - "min-width", - 7169, - 7177, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 7178, - 7178, - null - ], - [ - "dimension-token", - "1200px", - 7179, - 7184, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 7185, - 7185, - null - ], - [ - "{-token", - "{", - 7186, - 7186, - null - ], - [ - "delim-token", - ".", - 7187, - 7187, - { - "value": "." - } - ], - [ - "ident-token", - "display-5", - 7188, - 7196, - { - "value": "display-5" - } - ], - [ - "{-token", - "{", - 7197, - 7197, - null - ], - [ - "ident-token", - "font-size", - 7198, - 7206, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7207, - 7207, - null - ], - [ - "dimension-token", - "3rem", - 7208, - 7211, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 7212, - 7212, - null - ], - [ - "}-token", - "}", - 7213, - 7213, - null - ], - [ - "delim-token", - ".", - 7214, - 7214, - { - "value": "." - } - ], - [ - "ident-token", - "display-6", - 7215, - 7223, - { - "value": "display-6" - } - ], - [ - "{-token", - "{", - 7224, - 7224, - null - ], - [ - "ident-token", - "font-size", - 7225, - 7233, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7234, - 7234, - null - ], - [ - "function-token", - "calc(", - 7235, - 7239, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.375rem", - 7240, - 7247, - { - "value": 1.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 7248, - 7248, - null - ], - [ - "delim-token", - "+", - 7249, - 7249, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 7250, - 7250, - null - ], - [ - "dimension-token", - "1.5vw", - 7251, - 7255, - { - "value": 1.5, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 7256, - 7256, - null - ], - [ - "semicolon-token", - ";", - 7257, - 7257, - null - ], - [ - "ident-token", - "font-weight", - 7258, - 7268, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 7269, - 7269, - null - ], - [ - "number-token", - "300", - 7270, - 7272, - { - "value": 300, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 7273, - 7273, - null - ], - [ - "ident-token", - "line-height", - 7274, - 7284, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 7285, - 7285, - null - ], - [ - "number-token", - "1.2", - 7286, - 7288, - { - "value": 1.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 7289, - 7289, - null - ], - [ - "at-keyword-token", - "@media", - 7290, - 7295, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 7296, - 7296, - null - ], - [ - "(-token", - "(", - 7297, - 7297, - null - ], - [ - "ident-token", - "min-width", - 7298, - 7306, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 7307, - 7307, - null - ], - [ - "dimension-token", - "1200px", - 7308, - 7313, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 7314, - 7314, - null - ], - [ - "{-token", - "{", - 7315, - 7315, - null - ], - [ - "delim-token", - ".", - 7316, - 7316, - { - "value": "." - } - ], - [ - "ident-token", - "display-6", - 7317, - 7325, - { - "value": "display-6" - } - ], - [ - "{-token", - "{", - 7326, - 7326, - null - ], - [ - "ident-token", - "font-size", - 7327, - 7335, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7336, - 7336, - null - ], - [ - "dimension-token", - "2.5rem", - 7337, - 7342, - { - "value": 2.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 7343, - 7343, - null - ], - [ - "}-token", - "}", - 7344, - 7344, - null - ], - [ - "delim-token", - ".", - 7345, - 7345, - { - "value": "." - } - ], - [ - "ident-token", - "list-unstyled", - 7346, - 7358, - { - "value": "list-unstyled" - } - ], - [ - "{-token", - "{", - 7359, - 7359, - null - ], - [ - "ident-token", - "padding-left", - 7360, - 7371, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 7372, - 7372, - null - ], - [ - "number-token", - "0", - 7373, - 7373, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 7374, - 7374, - null - ], - [ - "ident-token", - "list-style", - 7375, - 7384, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 7385, - 7385, - null - ], - [ - "ident-token", - "none", - 7386, - 7389, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 7390, - 7390, - null - ], - [ - "delim-token", - ".", - 7391, - 7391, - { - "value": "." - } - ], - [ - "ident-token", - "list-inline", - 7392, - 7402, - { - "value": "list-inline" - } - ], - [ - "{-token", - "{", - 7403, - 7403, - null - ], - [ - "ident-token", - "padding-left", - 7404, - 7415, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 7416, - 7416, - null - ], - [ - "number-token", - "0", - 7417, - 7417, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 7418, - 7418, - null - ], - [ - "ident-token", - "list-style", - 7419, - 7428, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 7429, - 7429, - null - ], - [ - "ident-token", - "none", - 7430, - 7433, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 7434, - 7434, - null - ], - [ - "delim-token", - ".", - 7435, - 7435, - { - "value": "." - } - ], - [ - "ident-token", - "list-inline-item", - 7436, - 7451, - { - "value": "list-inline-item" - } - ], - [ - "{-token", - "{", - 7452, - 7452, - null - ], - [ - "ident-token", - "display", - 7453, - 7459, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 7460, - 7460, - null - ], - [ - "ident-token", - "inline-block", - 7461, - 7472, - { - "value": "inline-block" - } - ], - [ - "}-token", - "}", - 7473, - 7473, - null - ], - [ - "delim-token", - ".", - 7474, - 7474, - { - "value": "." - } - ], - [ - "ident-token", - "list-inline-item", - 7475, - 7490, - { - "value": "list-inline-item" - } - ], - [ - "colon-token", - ":", - 7491, - 7491, - null - ], - [ - "function-token", - "not(", - 7492, - 7495, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 7496, - 7496, - null - ], - [ - "ident-token", - "last-child", - 7497, - 7506, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 7507, - 7507, - null - ], - [ - "{-token", - "{", - 7508, - 7508, - null - ], - [ - "ident-token", - "margin-right", - 7509, - 7520, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 7521, - 7521, - null - ], - [ - "dimension-token", - ".5rem", - 7522, - 7526, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 7527, - 7527, - null - ], - [ - "delim-token", - ".", - 7528, - 7528, - { - "value": "." - } - ], - [ - "ident-token", - "initialism", - 7529, - 7538, - { - "value": "initialism" - } - ], - [ - "{-token", - "{", - 7539, - 7539, - null - ], - [ - "ident-token", - "font-size", - 7540, - 7548, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7549, - 7549, - null - ], - [ - "dimension-token", - ".875em", - 7550, - 7555, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 7556, - 7556, - null - ], - [ - "ident-token", - "text-transform", - 7557, - 7570, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 7571, - 7571, - null - ], - [ - "ident-token", - "uppercase", - 7572, - 7580, - { - "value": "uppercase" - } - ], - [ - "}-token", - "}", - 7581, - 7581, - null - ], - [ - "delim-token", - ".", - 7582, - 7582, - { - "value": "." - } - ], - [ - "ident-token", - "blockquote", - 7583, - 7592, - { - "value": "blockquote" - } - ], - [ - "{-token", - "{", - 7593, - 7593, - null - ], - [ - "ident-token", - "margin-bottom", - 7594, - 7606, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 7607, - 7607, - null - ], - [ - "dimension-token", - "1rem", - 7608, - 7611, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 7612, - 7612, - null - ], - [ - "ident-token", - "font-size", - 7613, - 7621, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7622, - 7622, - null - ], - [ - "dimension-token", - "1.25rem", - 7623, - 7629, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 7630, - 7630, - null - ], - [ - "delim-token", - ".", - 7631, - 7631, - { - "value": "." - } - ], - [ - "ident-token", - "blockquote", - 7632, - 7641, - { - "value": "blockquote" - } - ], - [ - "delim-token", - ">", - 7642, - 7642, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 7643, - 7643, - null - ], - [ - "ident-token", - "last-child", - 7644, - 7653, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 7654, - 7654, - null - ], - [ - "ident-token", - "margin-bottom", - 7655, - 7667, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 7668, - 7668, - null - ], - [ - "number-token", - "0", - 7669, - 7669, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 7670, - 7670, - null - ], - [ - "delim-token", - ".", - 7671, - 7671, - { - "value": "." - } - ], - [ - "ident-token", - "blockquote-footer", - 7672, - 7688, - { - "value": "blockquote-footer" - } - ], - [ - "{-token", - "{", - 7689, - 7689, - null - ], - [ - "ident-token", - "margin-top", - 7690, - 7699, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 7700, - 7700, - null - ], - [ - "dimension-token", - "-1rem", - 7701, - 7705, - { - "value": -1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 7706, - 7706, - null - ], - [ - "ident-token", - "margin-bottom", - 7707, - 7719, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 7720, - 7720, - null - ], - [ - "dimension-token", - "1rem", - 7721, - 7724, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 7725, - 7725, - null - ], - [ - "ident-token", - "font-size", - 7726, - 7734, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 7735, - 7735, - null - ], - [ - "dimension-token", - ".875em", - 7736, - 7741, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 7742, - 7742, - null - ], - [ - "ident-token", - "color", - 7743, - 7747, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 7748, - 7748, - null - ], - [ - "hash-token", - "#6c757d", - 7749, - 7755, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 7756, - 7756, - null - ], - [ - "delim-token", - ".", - 7757, - 7757, - { - "value": "." - } - ], - [ - "ident-token", - "blockquote-footer", - 7758, - 7774, - { - "value": "blockquote-footer" - } - ], - [ - "colon-token", - ":", - 7775, - 7775, - null - ], - [ - "colon-token", - ":", - 7776, - 7776, - null - ], - [ - "ident-token", - "before", - 7777, - 7782, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 7783, - 7783, - null - ], - [ - "ident-token", - "content", - 7784, - 7790, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 7791, - 7791, - null - ], - [ - "string-token", - "\"— \"", - 7792, - 7795, - { - "value": "— " - } - ], - [ - "}-token", - "}", - 7796, - 7796, - null - ], - [ - "delim-token", - ".", - 7797, - 7797, - { - "value": "." - } - ], - [ - "ident-token", - "img-fluid", - 7798, - 7806, - { - "value": "img-fluid" - } - ], - [ - "{-token", - "{", - 7807, - 7807, - null - ], - [ - "ident-token", - "max-width", - 7808, - 7816, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 7817, - 7817, - null - ], - [ - "percentage-token", - "100%", - 7818, - 7821, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 7822, - 7822, - null - ], - [ - "ident-token", - "height", - 7823, - 7828, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 7829, - 7829, - null - ], - [ - "ident-token", - "auto", - 7830, - 7833, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 7834, - 7834, - null - ], - [ - "delim-token", - ".", - 7835, - 7835, - { - "value": "." - } - ], - [ - "ident-token", - "img-thumbnail", - 7836, - 7848, - { - "value": "img-thumbnail" - } - ], - [ - "{-token", - "{", - 7849, - 7849, - null - ], - [ - "ident-token", - "padding", - 7850, - 7856, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 7857, - 7857, - null - ], - [ - "dimension-token", - ".25rem", - 7858, - 7863, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 7864, - 7864, - null - ], - [ - "ident-token", - "background-color", - 7865, - 7880, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 7881, - 7881, - null - ], - [ - "hash-token", - "#fff", - 7882, - 7885, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 7886, - 7886, - null - ], - [ - "ident-token", - "border", - 7887, - 7892, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 7893, - 7893, - null - ], - [ - "dimension-token", - "1px", - 7894, - 7896, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 7897, - 7897, - null - ], - [ - "ident-token", - "solid", - 7898, - 7902, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 7903, - 7903, - null - ], - [ - "function-token", - "var(", - 7904, - 7907, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 7908, - 7924, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 7925, - 7925, - null - ], - [ - "semicolon-token", - ";", - 7926, - 7926, - null - ], - [ - "ident-token", - "border-radius", - 7927, - 7939, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 7940, - 7940, - null - ], - [ - "dimension-token", - ".375rem", - 7941, - 7947, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 7948, - 7948, - null - ], - [ - "ident-token", - "max-width", - 7949, - 7957, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 7958, - 7958, - null - ], - [ - "percentage-token", - "100%", - 7959, - 7962, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 7963, - 7963, - null - ], - [ - "ident-token", - "height", - 7964, - 7969, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 7970, - 7970, - null - ], - [ - "ident-token", - "auto", - 7971, - 7974, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 7975, - 7975, - null - ], - [ - "delim-token", - ".", - 7976, - 7976, - { - "value": "." - } - ], - [ - "ident-token", - "figure", - 7977, - 7982, - { - "value": "figure" - } - ], - [ - "{-token", - "{", - 7983, - 7983, - null - ], - [ - "ident-token", - "display", - 7984, - 7990, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 7991, - 7991, - null - ], - [ - "ident-token", - "inline-block", - 7992, - 8003, - { - "value": "inline-block" - } - ], - [ - "}-token", - "}", - 8004, - 8004, - null - ], - [ - "delim-token", - ".", - 8005, - 8005, - { - "value": "." - } - ], - [ - "ident-token", - "figure-img", - 8006, - 8015, - { - "value": "figure-img" - } - ], - [ - "{-token", - "{", - 8016, - 8016, - null - ], - [ - "ident-token", - "margin-bottom", - 8017, - 8029, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 8030, - 8030, - null - ], - [ - "dimension-token", - ".5rem", - 8031, - 8035, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 8036, - 8036, - null - ], - [ - "ident-token", - "line-height", - 8037, - 8047, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 8048, - 8048, - null - ], - [ - "number-token", - "1", - 8049, - 8049, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 8050, - 8050, - null - ], - [ - "delim-token", - ".", - 8051, - 8051, - { - "value": "." - } - ], - [ - "ident-token", - "figure-caption", - 8052, - 8065, - { - "value": "figure-caption" - } - ], - [ - "{-token", - "{", - 8066, - 8066, - null - ], - [ - "ident-token", - "font-size", - 8067, - 8075, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 8076, - 8076, - null - ], - [ - "dimension-token", - ".875em", - 8077, - 8082, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 8083, - 8083, - null - ], - [ - "ident-token", - "color", - 8084, - 8088, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 8089, - 8089, - null - ], - [ - "hash-token", - "#6c757d", - 8090, - 8096, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 8097, - 8097, - null - ], - [ - "delim-token", - ".", - 8098, - 8098, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8099, - 8107, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8108, - 8108, - null - ], - [ - "delim-token", - ".", - 8109, - 8109, - { - "value": "." - } - ], - [ - "ident-token", - "container-fluid", - 8110, - 8124, - { - "value": "container-fluid" - } - ], - [ - "comma-token", - ",", - 8125, - 8125, - null - ], - [ - "delim-token", - ".", - 8126, - 8126, - { - "value": "." - } - ], - [ - "ident-token", - "container-lg", - 8127, - 8138, - { - "value": "container-lg" - } - ], - [ - "comma-token", - ",", - 8139, - 8139, - null - ], - [ - "delim-token", - ".", - 8140, - 8140, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 8141, - 8152, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 8153, - 8153, - null - ], - [ - "delim-token", - ".", - 8154, - 8154, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8155, - 8166, - { - "value": "container-sm" - } - ], - [ - "comma-token", - ",", - 8167, - 8167, - null - ], - [ - "delim-token", - ".", - 8168, - 8168, - { - "value": "." - } - ], - [ - "ident-token", - "container-xl", - 8169, - 8180, - { - "value": "container-xl" - } - ], - [ - "comma-token", - ",", - 8181, - 8181, - null - ], - [ - "delim-token", - ".", - 8182, - 8182, - { - "value": "." - } - ], - [ - "ident-token", - "container-xxl", - 8183, - 8195, - { - "value": "container-xxl" - } - ], - [ - "{-token", - "{", - 8196, - 8196, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 8197, - 8209, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 8210, - 8210, - null - ], - [ - "dimension-token", - "1.5rem", - 8211, - 8216, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 8217, - 8217, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 8218, - 8230, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 8231, - 8231, - null - ], - [ - "number-token", - "0", - 8232, - 8232, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 8233, - 8233, - null - ], - [ - "ident-token", - "width", - 8234, - 8238, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 8239, - 8239, - null - ], - [ - "percentage-token", - "100%", - 8240, - 8243, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 8244, - 8244, - null - ], - [ - "ident-token", - "padding-right", - 8245, - 8257, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 8258, - 8258, - null - ], - [ - "function-token", - "calc(", - 8259, - 8263, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 8264, - 8267, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 8268, - 8280, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 8281, - 8281, - null - ], - [ - "whitespace-token", - " ", - 8282, - 8282, - null - ], - [ - "delim-token", - "*", - 8283, - 8283, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 8284, - 8284, - null - ], - [ - "number-token", - ".5", - 8285, - 8286, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 8287, - 8287, - null - ], - [ - "semicolon-token", - ";", - 8288, - 8288, - null - ], - [ - "ident-token", - "padding-left", - 8289, - 8300, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 8301, - 8301, - null - ], - [ - "function-token", - "calc(", - 8302, - 8306, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 8307, - 8310, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 8311, - 8323, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 8324, - 8324, - null - ], - [ - "whitespace-token", - " ", - 8325, - 8325, - null - ], - [ - "delim-token", - "*", - 8326, - 8326, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 8327, - 8327, - null - ], - [ - "number-token", - ".5", - 8328, - 8329, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 8330, - 8330, - null - ], - [ - "semicolon-token", - ";", - 8331, - 8331, - null - ], - [ - "ident-token", - "margin-right", - 8332, - 8343, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 8344, - 8344, - null - ], - [ - "ident-token", - "auto", - 8345, - 8348, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 8349, - 8349, - null - ], - [ - "ident-token", - "margin-left", - 8350, - 8360, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 8361, - 8361, - null - ], - [ - "ident-token", - "auto", - 8362, - 8365, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 8366, - 8366, - null - ], - [ - "at-keyword-token", - "@media", - 8367, - 8372, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 8373, - 8373, - null - ], - [ - "(-token", - "(", - 8374, - 8374, - null - ], - [ - "ident-token", - "min-width", - 8375, - 8383, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 8384, - 8384, - null - ], - [ - "dimension-token", - "576px", - 8385, - 8389, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 8390, - 8390, - null - ], - [ - "{-token", - "{", - 8391, - 8391, - null - ], - [ - "delim-token", - ".", - 8392, - 8392, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8393, - 8401, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8402, - 8402, - null - ], - [ - "delim-token", - ".", - 8403, - 8403, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8404, - 8415, - { - "value": "container-sm" - } - ], - [ - "{-token", - "{", - 8416, - 8416, - null - ], - [ - "ident-token", - "max-width", - 8417, - 8425, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 8426, - 8426, - null - ], - [ - "dimension-token", - "540px", - 8427, - 8431, - { - "value": 540, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 8432, - 8432, - null - ], - [ - "}-token", - "}", - 8433, - 8433, - null - ], - [ - "at-keyword-token", - "@media", - 8434, - 8439, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 8440, - 8440, - null - ], - [ - "(-token", - "(", - 8441, - 8441, - null - ], - [ - "ident-token", - "min-width", - 8442, - 8450, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 8451, - 8451, - null - ], - [ - "dimension-token", - "768px", - 8452, - 8456, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 8457, - 8457, - null - ], - [ - "{-token", - "{", - 8458, - 8458, - null - ], - [ - "delim-token", - ".", - 8459, - 8459, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8460, - 8468, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8469, - 8469, - null - ], - [ - "delim-token", - ".", - 8470, - 8470, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 8471, - 8482, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 8483, - 8483, - null - ], - [ - "delim-token", - ".", - 8484, - 8484, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8485, - 8496, - { - "value": "container-sm" - } - ], - [ - "{-token", - "{", - 8497, - 8497, - null - ], - [ - "ident-token", - "max-width", - 8498, - 8506, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 8507, - 8507, - null - ], - [ - "dimension-token", - "720px", - 8508, - 8512, - { - "value": 720, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 8513, - 8513, - null - ], - [ - "}-token", - "}", - 8514, - 8514, - null - ], - [ - "at-keyword-token", - "@media", - 8515, - 8520, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 8521, - 8521, - null - ], - [ - "(-token", - "(", - 8522, - 8522, - null - ], - [ - "ident-token", - "min-width", - 8523, - 8531, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 8532, - 8532, - null - ], - [ - "dimension-token", - "992px", - 8533, - 8537, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 8538, - 8538, - null - ], - [ - "{-token", - "{", - 8539, - 8539, - null - ], - [ - "delim-token", - ".", - 8540, - 8540, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8541, - 8549, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8550, - 8550, - null - ], - [ - "delim-token", - ".", - 8551, - 8551, - { - "value": "." - } - ], - [ - "ident-token", - "container-lg", - 8552, - 8563, - { - "value": "container-lg" - } - ], - [ - "comma-token", - ",", - 8564, - 8564, - null - ], - [ - "delim-token", - ".", - 8565, - 8565, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 8566, - 8577, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 8578, - 8578, - null - ], - [ - "delim-token", - ".", - 8579, - 8579, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8580, - 8591, - { - "value": "container-sm" - } - ], - [ - "{-token", - "{", - 8592, - 8592, - null - ], - [ - "ident-token", - "max-width", - 8593, - 8601, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 8602, - 8602, - null - ], - [ - "dimension-token", - "960px", - 8603, - 8607, - { - "value": 960, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 8608, - 8608, - null - ], - [ - "}-token", - "}", - 8609, - 8609, - null - ], - [ - "at-keyword-token", - "@media", - 8610, - 8615, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 8616, - 8616, - null - ], - [ - "(-token", - "(", - 8617, - 8617, - null - ], - [ - "ident-token", - "min-width", - 8618, - 8626, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 8627, - 8627, - null - ], - [ - "dimension-token", - "1200px", - 8628, - 8633, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 8634, - 8634, - null - ], - [ - "{-token", - "{", - 8635, - 8635, - null - ], - [ - "delim-token", - ".", - 8636, - 8636, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8637, - 8645, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8646, - 8646, - null - ], - [ - "delim-token", - ".", - 8647, - 8647, - { - "value": "." - } - ], - [ - "ident-token", - "container-lg", - 8648, - 8659, - { - "value": "container-lg" - } - ], - [ - "comma-token", - ",", - 8660, - 8660, - null - ], - [ - "delim-token", - ".", - 8661, - 8661, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 8662, - 8673, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 8674, - 8674, - null - ], - [ - "delim-token", - ".", - 8675, - 8675, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8676, - 8687, - { - "value": "container-sm" - } - ], - [ - "comma-token", - ",", - 8688, - 8688, - null - ], - [ - "delim-token", - ".", - 8689, - 8689, - { - "value": "." - } - ], - [ - "ident-token", - "container-xl", - 8690, - 8701, - { - "value": "container-xl" - } - ], - [ - "{-token", - "{", - 8702, - 8702, - null - ], - [ - "ident-token", - "max-width", - 8703, - 8711, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 8712, - 8712, - null - ], - [ - "dimension-token", - "1140px", - 8713, - 8718, - { - "value": 1140, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 8719, - 8719, - null - ], - [ - "}-token", - "}", - 8720, - 8720, - null - ], - [ - "at-keyword-token", - "@media", - 8721, - 8726, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 8727, - 8727, - null - ], - [ - "(-token", - "(", - 8728, - 8728, - null - ], - [ - "ident-token", - "min-width", - 8729, - 8737, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 8738, - 8738, - null - ], - [ - "dimension-token", - "1400px", - 8739, - 8744, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 8745, - 8745, - null - ], - [ - "{-token", - "{", - 8746, - 8746, - null - ], - [ - "delim-token", - ".", - 8747, - 8747, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 8748, - 8756, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 8757, - 8757, - null - ], - [ - "delim-token", - ".", - 8758, - 8758, - { - "value": "." - } - ], - [ - "ident-token", - "container-lg", - 8759, - 8770, - { - "value": "container-lg" - } - ], - [ - "comma-token", - ",", - 8771, - 8771, - null - ], - [ - "delim-token", - ".", - 8772, - 8772, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 8773, - 8784, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 8785, - 8785, - null - ], - [ - "delim-token", - ".", - 8786, - 8786, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 8787, - 8798, - { - "value": "container-sm" - } - ], - [ - "comma-token", - ",", - 8799, - 8799, - null - ], - [ - "delim-token", - ".", - 8800, - 8800, - { - "value": "." - } - ], - [ - "ident-token", - "container-xl", - 8801, - 8812, - { - "value": "container-xl" - } - ], - [ - "comma-token", - ",", - 8813, - 8813, - null - ], - [ - "delim-token", - ".", - 8814, - 8814, - { - "value": "." - } - ], - [ - "ident-token", - "container-xxl", - 8815, - 8827, - { - "value": "container-xxl" - } - ], - [ - "{-token", - "{", - 8828, - 8828, - null - ], - [ - "ident-token", - "max-width", - 8829, - 8837, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 8838, - 8838, - null - ], - [ - "dimension-token", - "1320px", - 8839, - 8844, - { - "value": 1320, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 8845, - 8845, - null - ], - [ - "}-token", - "}", - 8846, - 8846, - null - ], - [ - "delim-token", - ".", - 8847, - 8847, - { - "value": "." - } - ], - [ - "ident-token", - "row", - 8848, - 8850, - { - "value": "row" - } - ], - [ - "{-token", - "{", - 8851, - 8851, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 8852, - 8864, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 8865, - 8865, - null - ], - [ - "dimension-token", - "1.5rem", - 8866, - 8871, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 8872, - 8872, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 8873, - 8885, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 8886, - 8886, - null - ], - [ - "number-token", - "0", - 8887, - 8887, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 8888, - 8888, - null - ], - [ - "ident-token", - "display", - 8889, - 8895, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 8896, - 8896, - null - ], - [ - "ident-token", - "flex", - 8897, - 8900, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 8901, - 8901, - null - ], - [ - "ident-token", - "flex-wrap", - 8902, - 8910, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 8911, - 8911, - null - ], - [ - "ident-token", - "wrap", - 8912, - 8915, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 8916, - 8916, - null - ], - [ - "ident-token", - "margin-top", - 8917, - 8926, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 8927, - 8927, - null - ], - [ - "function-token", - "calc(", - 8928, - 8932, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 8933, - 8934, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 8935, - 8935, - null - ], - [ - "delim-token", - "*", - 8936, - 8936, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 8937, - 8937, - null - ], - [ - "function-token", - "var(", - 8938, - 8941, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-y", - 8942, - 8954, - { - "value": "--bs-gutter-y" - } - ], - [ - ")-token", - ")", - 8955, - 8955, - null - ], - [ - ")-token", - ")", - 8956, - 8956, - null - ], - [ - "semicolon-token", - ";", - 8957, - 8957, - null - ], - [ - "ident-token", - "margin-right", - 8958, - 8969, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 8970, - 8970, - null - ], - [ - "function-token", - "calc(", - 8971, - 8975, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 8976, - 8978, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 8979, - 8979, - null - ], - [ - "delim-token", - "*", - 8980, - 8980, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 8981, - 8981, - null - ], - [ - "function-token", - "var(", - 8982, - 8985, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 8986, - 8998, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 8999, - 8999, - null - ], - [ - ")-token", - ")", - 9000, - 9000, - null - ], - [ - "semicolon-token", - ";", - 9001, - 9001, - null - ], - [ - "ident-token", - "margin-left", - 9002, - 9012, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 9013, - 9013, - null - ], - [ - "function-token", - "calc(", - 9014, - 9018, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 9019, - 9021, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 9022, - 9022, - null - ], - [ - "delim-token", - "*", - 9023, - 9023, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 9024, - 9024, - null - ], - [ - "function-token", - "var(", - 9025, - 9028, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 9029, - 9041, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 9042, - 9042, - null - ], - [ - ")-token", - ")", - 9043, - 9043, - null - ], - [ - "}-token", - "}", - 9044, - 9044, - null - ], - [ - "delim-token", - ".", - 9045, - 9045, - { - "value": "." - } - ], - [ - "ident-token", - "row", - 9046, - 9048, - { - "value": "row" - } - ], - [ - "delim-token", - ">", - 9049, - 9049, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9050, - 9050, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9051, - 9051, - null - ], - [ - "ident-token", - "flex-shrink", - 9052, - 9062, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 9063, - 9063, - null - ], - [ - "number-token", - "0", - 9064, - 9064, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 9065, - 9065, - null - ], - [ - "ident-token", - "width", - 9066, - 9070, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9071, - 9071, - null - ], - [ - "percentage-token", - "100%", - 9072, - 9075, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 9076, - 9076, - null - ], - [ - "ident-token", - "max-width", - 9077, - 9085, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 9086, - 9086, - null - ], - [ - "percentage-token", - "100%", - 9087, - 9090, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 9091, - 9091, - null - ], - [ - "ident-token", - "padding-right", - 9092, - 9104, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 9105, - 9105, - null - ], - [ - "function-token", - "calc(", - 9106, - 9110, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 9111, - 9114, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 9115, - 9127, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 9128, - 9128, - null - ], - [ - "whitespace-token", - " ", - 9129, - 9129, - null - ], - [ - "delim-token", - "*", - 9130, - 9130, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 9131, - 9131, - null - ], - [ - "number-token", - ".5", - 9132, - 9133, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 9134, - 9134, - null - ], - [ - "semicolon-token", - ";", - 9135, - 9135, - null - ], - [ - "ident-token", - "padding-left", - 9136, - 9147, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 9148, - 9148, - null - ], - [ - "function-token", - "calc(", - 9149, - 9153, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 9154, - 9157, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-x", - 9158, - 9170, - { - "value": "--bs-gutter-x" - } - ], - [ - ")-token", - ")", - 9171, - 9171, - null - ], - [ - "whitespace-token", - " ", - 9172, - 9172, - null - ], - [ - "delim-token", - "*", - 9173, - 9173, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 9174, - 9174, - null - ], - [ - "number-token", - ".5", - 9175, - 9176, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 9177, - 9177, - null - ], - [ - "semicolon-token", - ";", - 9178, - 9178, - null - ], - [ - "ident-token", - "margin-top", - 9179, - 9188, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 9189, - 9189, - null - ], - [ - "function-token", - "var(", - 9190, - 9193, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gutter-y", - 9194, - 9206, - { - "value": "--bs-gutter-y" - } - ], - [ - ")-token", - ")", - 9207, - 9207, - null - ], - [ - "}-token", - "}", - 9208, - 9208, - null - ], - [ - "delim-token", - ".", - 9209, - 9209, - { - "value": "." - } - ], - [ - "ident-token", - "col", - 9210, - 9212, - { - "value": "col" - } - ], - [ - "{-token", - "{", - 9213, - 9213, - null - ], - [ - "ident-token", - "flex", - 9214, - 9217, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9218, - 9218, - null - ], - [ - "number-token", - "1", - 9219, - 9219, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9220, - 9220, - null - ], - [ - "number-token", - "0", - 9221, - 9221, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9222, - 9222, - null - ], - [ - "percentage-token", - "0%", - 9223, - 9224, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 9225, - 9225, - null - ], - [ - "delim-token", - ".", - 9226, - 9226, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-auto", - 9227, - 9239, - { - "value": "row-cols-auto" - } - ], - [ - "delim-token", - ">", - 9240, - 9240, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9241, - 9241, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9242, - 9242, - null - ], - [ - "ident-token", - "flex", - 9243, - 9246, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9247, - 9247, - null - ], - [ - "number-token", - "0", - 9248, - 9248, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9249, - 9249, - null - ], - [ - "number-token", - "0", - 9250, - 9250, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9251, - 9251, - null - ], - [ - "ident-token", - "auto", - 9252, - 9255, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9256, - 9256, - null - ], - [ - "ident-token", - "width", - 9257, - 9261, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9262, - 9262, - null - ], - [ - "ident-token", - "auto", - 9263, - 9266, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 9267, - 9267, - null - ], - [ - "delim-token", - ".", - 9268, - 9268, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-1", - 9269, - 9278, - { - "value": "row-cols-1" - } - ], - [ - "delim-token", - ">", - 9279, - 9279, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9280, - 9280, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9281, - 9281, - null - ], - [ - "ident-token", - "flex", - 9282, - 9285, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9286, - 9286, - null - ], - [ - "number-token", - "0", - 9287, - 9287, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9288, - 9288, - null - ], - [ - "number-token", - "0", - 9289, - 9289, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9290, - 9290, - null - ], - [ - "ident-token", - "auto", - 9291, - 9294, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9295, - 9295, - null - ], - [ - "ident-token", - "width", - 9296, - 9300, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9301, - 9301, - null - ], - [ - "percentage-token", - "100%", - 9302, - 9305, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 9306, - 9306, - null - ], - [ - "delim-token", - ".", - 9307, - 9307, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-2", - 9308, - 9317, - { - "value": "row-cols-2" - } - ], - [ - "delim-token", - ">", - 9318, - 9318, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9319, - 9319, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9320, - 9320, - null - ], - [ - "ident-token", - "flex", - 9321, - 9324, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9325, - 9325, - null - ], - [ - "number-token", - "0", - 9326, - 9326, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9327, - 9327, - null - ], - [ - "number-token", - "0", - 9328, - 9328, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9329, - 9329, - null - ], - [ - "ident-token", - "auto", - 9330, - 9333, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9334, - 9334, - null - ], - [ - "ident-token", - "width", - 9335, - 9339, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9340, - 9340, - null - ], - [ - "percentage-token", - "50%", - 9341, - 9343, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 9344, - 9344, - null - ], - [ - "delim-token", - ".", - 9345, - 9345, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-3", - 9346, - 9355, - { - "value": "row-cols-3" - } - ], - [ - "delim-token", - ">", - 9356, - 9356, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9357, - 9357, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9358, - 9358, - null - ], - [ - "ident-token", - "flex", - 9359, - 9362, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9363, - 9363, - null - ], - [ - "number-token", - "0", - 9364, - 9364, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9365, - 9365, - null - ], - [ - "number-token", - "0", - 9366, - 9366, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9367, - 9367, - null - ], - [ - "ident-token", - "auto", - 9368, - 9371, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9372, - 9372, - null - ], - [ - "ident-token", - "width", - 9373, - 9377, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9378, - 9378, - null - ], - [ - "percentage-token", - "33.3333333333%", - 9379, - 9392, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 9393, - 9393, - null - ], - [ - "delim-token", - ".", - 9394, - 9394, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-4", - 9395, - 9404, - { - "value": "row-cols-4" - } - ], - [ - "delim-token", - ">", - 9405, - 9405, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9406, - 9406, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9407, - 9407, - null - ], - [ - "ident-token", - "flex", - 9408, - 9411, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9412, - 9412, - null - ], - [ - "number-token", - "0", - 9413, - 9413, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9414, - 9414, - null - ], - [ - "number-token", - "0", - 9415, - 9415, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9416, - 9416, - null - ], - [ - "ident-token", - "auto", - 9417, - 9420, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9421, - 9421, - null - ], - [ - "ident-token", - "width", - 9422, - 9426, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9427, - 9427, - null - ], - [ - "percentage-token", - "25%", - 9428, - 9430, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 9431, - 9431, - null - ], - [ - "delim-token", - ".", - 9432, - 9432, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-5", - 9433, - 9442, - { - "value": "row-cols-5" - } - ], - [ - "delim-token", - ">", - 9443, - 9443, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9444, - 9444, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9445, - 9445, - null - ], - [ - "ident-token", - "flex", - 9446, - 9449, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9450, - 9450, - null - ], - [ - "number-token", - "0", - 9451, - 9451, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9452, - 9452, - null - ], - [ - "number-token", - "0", - 9453, - 9453, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9454, - 9454, - null - ], - [ - "ident-token", - "auto", - 9455, - 9458, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9459, - 9459, - null - ], - [ - "ident-token", - "width", - 9460, - 9464, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9465, - 9465, - null - ], - [ - "percentage-token", - "20%", - 9466, - 9468, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 9469, - 9469, - null - ], - [ - "delim-token", - ".", - 9470, - 9470, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-6", - 9471, - 9480, - { - "value": "row-cols-6" - } - ], - [ - "delim-token", - ">", - 9481, - 9481, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 9482, - 9482, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 9483, - 9483, - null - ], - [ - "ident-token", - "flex", - 9484, - 9487, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9488, - 9488, - null - ], - [ - "number-token", - "0", - 9489, - 9489, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9490, - 9490, - null - ], - [ - "number-token", - "0", - 9491, - 9491, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9492, - 9492, - null - ], - [ - "ident-token", - "auto", - 9493, - 9496, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9497, - 9497, - null - ], - [ - "ident-token", - "width", - 9498, - 9502, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9503, - 9503, - null - ], - [ - "percentage-token", - "16.6666666667%", - 9504, - 9517, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 9518, - 9518, - null - ], - [ - "delim-token", - ".", - 9519, - 9519, - { - "value": "." - } - ], - [ - "ident-token", - "col-auto", - 9520, - 9527, - { - "value": "col-auto" - } - ], - [ - "{-token", - "{", - 9528, - 9528, - null - ], - [ - "ident-token", - "flex", - 9529, - 9532, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9533, - 9533, - null - ], - [ - "number-token", - "0", - 9534, - 9534, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9535, - 9535, - null - ], - [ - "number-token", - "0", - 9536, - 9536, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9537, - 9537, - null - ], - [ - "ident-token", - "auto", - 9538, - 9541, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9542, - 9542, - null - ], - [ - "ident-token", - "width", - 9543, - 9547, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9548, - 9548, - null - ], - [ - "ident-token", - "auto", - 9549, - 9552, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 9553, - 9553, - null - ], - [ - "delim-token", - ".", - 9554, - 9554, - { - "value": "." - } - ], - [ - "ident-token", - "col-1", - 9555, - 9559, - { - "value": "col-1" - } - ], - [ - "{-token", - "{", - 9560, - 9560, - null - ], - [ - "ident-token", - "flex", - 9561, - 9564, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9565, - 9565, - null - ], - [ - "number-token", - "0", - 9566, - 9566, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9567, - 9567, - null - ], - [ - "number-token", - "0", - 9568, - 9568, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9569, - 9569, - null - ], - [ - "ident-token", - "auto", - 9570, - 9573, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9574, - 9574, - null - ], - [ - "ident-token", - "width", - 9575, - 9579, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9580, - 9580, - null - ], - [ - "percentage-token", - "8.33333333%", - 9581, - 9591, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 9592, - 9592, - null - ], - [ - "delim-token", - ".", - 9593, - 9593, - { - "value": "." - } - ], - [ - "ident-token", - "col-2", - 9594, - 9598, - { - "value": "col-2" - } - ], - [ - "{-token", - "{", - 9599, - 9599, - null - ], - [ - "ident-token", - "flex", - 9600, - 9603, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9604, - 9604, - null - ], - [ - "number-token", - "0", - 9605, - 9605, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9606, - 9606, - null - ], - [ - "number-token", - "0", - 9607, - 9607, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9608, - 9608, - null - ], - [ - "ident-token", - "auto", - 9609, - 9612, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9613, - 9613, - null - ], - [ - "ident-token", - "width", - 9614, - 9618, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9619, - 9619, - null - ], - [ - "percentage-token", - "16.66666667%", - 9620, - 9631, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 9632, - 9632, - null - ], - [ - "delim-token", - ".", - 9633, - 9633, - { - "value": "." - } - ], - [ - "ident-token", - "col-3", - 9634, - 9638, - { - "value": "col-3" - } - ], - [ - "{-token", - "{", - 9639, - 9639, - null - ], - [ - "ident-token", - "flex", - 9640, - 9643, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9644, - 9644, - null - ], - [ - "number-token", - "0", - 9645, - 9645, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9646, - 9646, - null - ], - [ - "number-token", - "0", - 9647, - 9647, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9648, - 9648, - null - ], - [ - "ident-token", - "auto", - 9649, - 9652, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9653, - 9653, - null - ], - [ - "ident-token", - "width", - 9654, - 9658, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9659, - 9659, - null - ], - [ - "percentage-token", - "25%", - 9660, - 9662, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 9663, - 9663, - null - ], - [ - "delim-token", - ".", - 9664, - 9664, - { - "value": "." - } - ], - [ - "ident-token", - "col-4", - 9665, - 9669, - { - "value": "col-4" - } - ], - [ - "{-token", - "{", - 9670, - 9670, - null - ], - [ - "ident-token", - "flex", - 9671, - 9674, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9675, - 9675, - null - ], - [ - "number-token", - "0", - 9676, - 9676, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9677, - 9677, - null - ], - [ - "number-token", - "0", - 9678, - 9678, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9679, - 9679, - null - ], - [ - "ident-token", - "auto", - 9680, - 9683, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9684, - 9684, - null - ], - [ - "ident-token", - "width", - 9685, - 9689, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9690, - 9690, - null - ], - [ - "percentage-token", - "33.33333333%", - 9691, - 9702, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 9703, - 9703, - null - ], - [ - "delim-token", - ".", - 9704, - 9704, - { - "value": "." - } - ], - [ - "ident-token", - "col-5", - 9705, - 9709, - { - "value": "col-5" - } - ], - [ - "{-token", - "{", - 9710, - 9710, - null - ], - [ - "ident-token", - "flex", - 9711, - 9714, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9715, - 9715, - null - ], - [ - "number-token", - "0", - 9716, - 9716, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9717, - 9717, - null - ], - [ - "number-token", - "0", - 9718, - 9718, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9719, - 9719, - null - ], - [ - "ident-token", - "auto", - 9720, - 9723, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9724, - 9724, - null - ], - [ - "ident-token", - "width", - 9725, - 9729, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9730, - 9730, - null - ], - [ - "percentage-token", - "41.66666667%", - 9731, - 9742, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 9743, - 9743, - null - ], - [ - "delim-token", - ".", - 9744, - 9744, - { - "value": "." - } - ], - [ - "ident-token", - "col-6", - 9745, - 9749, - { - "value": "col-6" - } - ], - [ - "{-token", - "{", - 9750, - 9750, - null - ], - [ - "ident-token", - "flex", - 9751, - 9754, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9755, - 9755, - null - ], - [ - "number-token", - "0", - 9756, - 9756, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9757, - 9757, - null - ], - [ - "number-token", - "0", - 9758, - 9758, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9759, - 9759, - null - ], - [ - "ident-token", - "auto", - 9760, - 9763, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9764, - 9764, - null - ], - [ - "ident-token", - "width", - 9765, - 9769, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9770, - 9770, - null - ], - [ - "percentage-token", - "50%", - 9771, - 9773, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 9774, - 9774, - null - ], - [ - "delim-token", - ".", - 9775, - 9775, - { - "value": "." - } - ], - [ - "ident-token", - "col-7", - 9776, - 9780, - { - "value": "col-7" - } - ], - [ - "{-token", - "{", - 9781, - 9781, - null - ], - [ - "ident-token", - "flex", - 9782, - 9785, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9786, - 9786, - null - ], - [ - "number-token", - "0", - 9787, - 9787, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9788, - 9788, - null - ], - [ - "number-token", - "0", - 9789, - 9789, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9790, - 9790, - null - ], - [ - "ident-token", - "auto", - 9791, - 9794, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9795, - 9795, - null - ], - [ - "ident-token", - "width", - 9796, - 9800, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9801, - 9801, - null - ], - [ - "percentage-token", - "58.33333333%", - 9802, - 9813, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 9814, - 9814, - null - ], - [ - "delim-token", - ".", - 9815, - 9815, - { - "value": "." - } - ], - [ - "ident-token", - "col-8", - 9816, - 9820, - { - "value": "col-8" - } - ], - [ - "{-token", - "{", - 9821, - 9821, - null - ], - [ - "ident-token", - "flex", - 9822, - 9825, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9826, - 9826, - null - ], - [ - "number-token", - "0", - 9827, - 9827, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9828, - 9828, - null - ], - [ - "number-token", - "0", - 9829, - 9829, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9830, - 9830, - null - ], - [ - "ident-token", - "auto", - 9831, - 9834, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9835, - 9835, - null - ], - [ - "ident-token", - "width", - 9836, - 9840, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9841, - 9841, - null - ], - [ - "percentage-token", - "66.66666667%", - 9842, - 9853, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 9854, - 9854, - null - ], - [ - "delim-token", - ".", - 9855, - 9855, - { - "value": "." - } - ], - [ - "ident-token", - "col-9", - 9856, - 9860, - { - "value": "col-9" - } - ], - [ - "{-token", - "{", - 9861, - 9861, - null - ], - [ - "ident-token", - "flex", - 9862, - 9865, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9866, - 9866, - null - ], - [ - "number-token", - "0", - 9867, - 9867, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9868, - 9868, - null - ], - [ - "number-token", - "0", - 9869, - 9869, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9870, - 9870, - null - ], - [ - "ident-token", - "auto", - 9871, - 9874, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9875, - 9875, - null - ], - [ - "ident-token", - "width", - 9876, - 9880, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9881, - 9881, - null - ], - [ - "percentage-token", - "75%", - 9882, - 9884, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 9885, - 9885, - null - ], - [ - "delim-token", - ".", - 9886, - 9886, - { - "value": "." - } - ], - [ - "ident-token", - "col-10", - 9887, - 9892, - { - "value": "col-10" - } - ], - [ - "{-token", - "{", - 9893, - 9893, - null - ], - [ - "ident-token", - "flex", - 9894, - 9897, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9898, - 9898, - null - ], - [ - "number-token", - "0", - 9899, - 9899, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9900, - 9900, - null - ], - [ - "number-token", - "0", - 9901, - 9901, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9902, - 9902, - null - ], - [ - "ident-token", - "auto", - 9903, - 9906, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9907, - 9907, - null - ], - [ - "ident-token", - "width", - 9908, - 9912, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9913, - 9913, - null - ], - [ - "percentage-token", - "83.33333333%", - 9914, - 9925, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 9926, - 9926, - null - ], - [ - "delim-token", - ".", - 9927, - 9927, - { - "value": "." - } - ], - [ - "ident-token", - "col-11", - 9928, - 9933, - { - "value": "col-11" - } - ], - [ - "{-token", - "{", - 9934, - 9934, - null - ], - [ - "ident-token", - "flex", - 9935, - 9938, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9939, - 9939, - null - ], - [ - "number-token", - "0", - 9940, - 9940, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9941, - 9941, - null - ], - [ - "number-token", - "0", - 9942, - 9942, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9943, - 9943, - null - ], - [ - "ident-token", - "auto", - 9944, - 9947, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9948, - 9948, - null - ], - [ - "ident-token", - "width", - 9949, - 9953, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9954, - 9954, - null - ], - [ - "percentage-token", - "91.66666667%", - 9955, - 9966, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 9967, - 9967, - null - ], - [ - "delim-token", - ".", - 9968, - 9968, - { - "value": "." - } - ], - [ - "ident-token", - "col-12", - 9969, - 9974, - { - "value": "col-12" - } - ], - [ - "{-token", - "{", - 9975, - 9975, - null - ], - [ - "ident-token", - "flex", - 9976, - 9979, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 9980, - 9980, - null - ], - [ - "number-token", - "0", - 9981, - 9981, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9982, - 9982, - null - ], - [ - "number-token", - "0", - 9983, - 9983, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 9984, - 9984, - null - ], - [ - "ident-token", - "auto", - 9985, - 9988, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 9989, - 9989, - null - ], - [ - "ident-token", - "width", - 9990, - 9994, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 9995, - 9995, - null - ], - [ - "percentage-token", - "100%", - 9996, - 9999, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 10000, - 10000, - null - ], - [ - "delim-token", - ".", - 10001, - 10001, - { - "value": "." - } - ], - [ - "ident-token", - "offset-1", - 10002, - 10009, - { - "value": "offset-1" - } - ], - [ - "{-token", - "{", - 10010, - 10010, - null - ], - [ - "ident-token", - "margin-left", - 10011, - 10021, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10022, - 10022, - null - ], - [ - "percentage-token", - "8.33333333%", - 10023, - 10033, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 10034, - 10034, - null - ], - [ - "delim-token", - ".", - 10035, - 10035, - { - "value": "." - } - ], - [ - "ident-token", - "offset-2", - 10036, - 10043, - { - "value": "offset-2" - } - ], - [ - "{-token", - "{", - 10044, - 10044, - null - ], - [ - "ident-token", - "margin-left", - 10045, - 10055, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10056, - 10056, - null - ], - [ - "percentage-token", - "16.66666667%", - 10057, - 10068, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 10069, - 10069, - null - ], - [ - "delim-token", - ".", - 10070, - 10070, - { - "value": "." - } - ], - [ - "ident-token", - "offset-3", - 10071, - 10078, - { - "value": "offset-3" - } - ], - [ - "{-token", - "{", - 10079, - 10079, - null - ], - [ - "ident-token", - "margin-left", - 10080, - 10090, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10091, - 10091, - null - ], - [ - "percentage-token", - "25%", - 10092, - 10094, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 10095, - 10095, - null - ], - [ - "delim-token", - ".", - 10096, - 10096, - { - "value": "." - } - ], - [ - "ident-token", - "offset-4", - 10097, - 10104, - { - "value": "offset-4" - } - ], - [ - "{-token", - "{", - 10105, - 10105, - null - ], - [ - "ident-token", - "margin-left", - 10106, - 10116, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10117, - 10117, - null - ], - [ - "percentage-token", - "33.33333333%", - 10118, - 10129, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 10130, - 10130, - null - ], - [ - "delim-token", - ".", - 10131, - 10131, - { - "value": "." - } - ], - [ - "ident-token", - "offset-5", - 10132, - 10139, - { - "value": "offset-5" - } - ], - [ - "{-token", - "{", - 10140, - 10140, - null - ], - [ - "ident-token", - "margin-left", - 10141, - 10151, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10152, - 10152, - null - ], - [ - "percentage-token", - "41.66666667%", - 10153, - 10164, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 10165, - 10165, - null - ], - [ - "delim-token", - ".", - 10166, - 10166, - { - "value": "." - } - ], - [ - "ident-token", - "offset-6", - 10167, - 10174, - { - "value": "offset-6" - } - ], - [ - "{-token", - "{", - 10175, - 10175, - null - ], - [ - "ident-token", - "margin-left", - 10176, - 10186, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10187, - 10187, - null - ], - [ - "percentage-token", - "50%", - 10188, - 10190, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 10191, - 10191, - null - ], - [ - "delim-token", - ".", - 10192, - 10192, - { - "value": "." - } - ], - [ - "ident-token", - "offset-7", - 10193, - 10200, - { - "value": "offset-7" - } - ], - [ - "{-token", - "{", - 10201, - 10201, - null - ], - [ - "ident-token", - "margin-left", - 10202, - 10212, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10213, - 10213, - null - ], - [ - "percentage-token", - "58.33333333%", - 10214, - 10225, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 10226, - 10226, - null - ], - [ - "delim-token", - ".", - 10227, - 10227, - { - "value": "." - } - ], - [ - "ident-token", - "offset-8", - 10228, - 10235, - { - "value": "offset-8" - } - ], - [ - "{-token", - "{", - 10236, - 10236, - null - ], - [ - "ident-token", - "margin-left", - 10237, - 10247, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10248, - 10248, - null - ], - [ - "percentage-token", - "66.66666667%", - 10249, - 10260, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 10261, - 10261, - null - ], - [ - "delim-token", - ".", - 10262, - 10262, - { - "value": "." - } - ], - [ - "ident-token", - "offset-9", - 10263, - 10270, - { - "value": "offset-9" - } - ], - [ - "{-token", - "{", - 10271, - 10271, - null - ], - [ - "ident-token", - "margin-left", - 10272, - 10282, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10283, - 10283, - null - ], - [ - "percentage-token", - "75%", - 10284, - 10286, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 10287, - 10287, - null - ], - [ - "delim-token", - ".", - 10288, - 10288, - { - "value": "." - } - ], - [ - "ident-token", - "offset-10", - 10289, - 10297, - { - "value": "offset-10" - } - ], - [ - "{-token", - "{", - 10298, - 10298, - null - ], - [ - "ident-token", - "margin-left", - 10299, - 10309, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10310, - 10310, - null - ], - [ - "percentage-token", - "83.33333333%", - 10311, - 10322, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 10323, - 10323, - null - ], - [ - "delim-token", - ".", - 10324, - 10324, - { - "value": "." - } - ], - [ - "ident-token", - "offset-11", - 10325, - 10333, - { - "value": "offset-11" - } - ], - [ - "{-token", - "{", - 10334, - 10334, - null - ], - [ - "ident-token", - "margin-left", - 10335, - 10345, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 10346, - 10346, - null - ], - [ - "percentage-token", - "91.66666667%", - 10347, - 10358, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 10359, - 10359, - null - ], - [ - "delim-token", - ".", - 10360, - 10360, - { - "value": "." - } - ], - [ - "ident-token", - "g-0", - 10361, - 10363, - { - "value": "g-0" - } - ], - [ - "comma-token", - ",", - 10364, - 10364, - null - ], - [ - "delim-token", - ".", - 10365, - 10365, - { - "value": "." - } - ], - [ - "ident-token", - "gx-0", - 10366, - 10369, - { - "value": "gx-0" - } - ], - [ - "{-token", - "{", - 10370, - 10370, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10371, - 10383, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10384, - 10384, - null - ], - [ - "number-token", - "0", - 10385, - 10385, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 10386, - 10386, - null - ], - [ - "delim-token", - ".", - 10387, - 10387, - { - "value": "." - } - ], - [ - "ident-token", - "g-0", - 10388, - 10390, - { - "value": "g-0" - } - ], - [ - "comma-token", - ",", - 10391, - 10391, - null - ], - [ - "delim-token", - ".", - 10392, - 10392, - { - "value": "." - } - ], - [ - "ident-token", - "gy-0", - 10393, - 10396, - { - "value": "gy-0" - } - ], - [ - "{-token", - "{", - 10397, - 10397, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10398, - 10410, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10411, - 10411, - null - ], - [ - "number-token", - "0", - 10412, - 10412, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 10413, - 10413, - null - ], - [ - "delim-token", - ".", - 10414, - 10414, - { - "value": "." - } - ], - [ - "ident-token", - "g-1", - 10415, - 10417, - { - "value": "g-1" - } - ], - [ - "comma-token", - ",", - 10418, - 10418, - null - ], - [ - "delim-token", - ".", - 10419, - 10419, - { - "value": "." - } - ], - [ - "ident-token", - "gx-1", - 10420, - 10423, - { - "value": "gx-1" - } - ], - [ - "{-token", - "{", - 10424, - 10424, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10425, - 10437, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10438, - 10438, - null - ], - [ - "dimension-token", - "0.25rem", - 10439, - 10445, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10446, - 10446, - null - ], - [ - "delim-token", - ".", - 10447, - 10447, - { - "value": "." - } - ], - [ - "ident-token", - "g-1", - 10448, - 10450, - { - "value": "g-1" - } - ], - [ - "comma-token", - ",", - 10451, - 10451, - null - ], - [ - "delim-token", - ".", - 10452, - 10452, - { - "value": "." - } - ], - [ - "ident-token", - "gy-1", - 10453, - 10456, - { - "value": "gy-1" - } - ], - [ - "{-token", - "{", - 10457, - 10457, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10458, - 10470, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10471, - 10471, - null - ], - [ - "dimension-token", - "0.25rem", - 10472, - 10478, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10479, - 10479, - null - ], - [ - "delim-token", - ".", - 10480, - 10480, - { - "value": "." - } - ], - [ - "ident-token", - "g-2", - 10481, - 10483, - { - "value": "g-2" - } - ], - [ - "comma-token", - ",", - 10484, - 10484, - null - ], - [ - "delim-token", - ".", - 10485, - 10485, - { - "value": "." - } - ], - [ - "ident-token", - "gx-2", - 10486, - 10489, - { - "value": "gx-2" - } - ], - [ - "{-token", - "{", - 10490, - 10490, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10491, - 10503, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10504, - 10504, - null - ], - [ - "dimension-token", - "0.5rem", - 10505, - 10510, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10511, - 10511, - null - ], - [ - "delim-token", - ".", - 10512, - 10512, - { - "value": "." - } - ], - [ - "ident-token", - "g-2", - 10513, - 10515, - { - "value": "g-2" - } - ], - [ - "comma-token", - ",", - 10516, - 10516, - null - ], - [ - "delim-token", - ".", - 10517, - 10517, - { - "value": "." - } - ], - [ - "ident-token", - "gy-2", - 10518, - 10521, - { - "value": "gy-2" - } - ], - [ - "{-token", - "{", - 10522, - 10522, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10523, - 10535, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10536, - 10536, - null - ], - [ - "dimension-token", - "0.5rem", - 10537, - 10542, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10543, - 10543, - null - ], - [ - "delim-token", - ".", - 10544, - 10544, - { - "value": "." - } - ], - [ - "ident-token", - "g-3", - 10545, - 10547, - { - "value": "g-3" - } - ], - [ - "comma-token", - ",", - 10548, - 10548, - null - ], - [ - "delim-token", - ".", - 10549, - 10549, - { - "value": "." - } - ], - [ - "ident-token", - "gx-3", - 10550, - 10553, - { - "value": "gx-3" - } - ], - [ - "{-token", - "{", - 10554, - 10554, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10555, - 10567, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10568, - 10568, - null - ], - [ - "dimension-token", - "1rem", - 10569, - 10572, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10573, - 10573, - null - ], - [ - "delim-token", - ".", - 10574, - 10574, - { - "value": "." - } - ], - [ - "ident-token", - "g-3", - 10575, - 10577, - { - "value": "g-3" - } - ], - [ - "comma-token", - ",", - 10578, - 10578, - null - ], - [ - "delim-token", - ".", - 10579, - 10579, - { - "value": "." - } - ], - [ - "ident-token", - "gy-3", - 10580, - 10583, - { - "value": "gy-3" - } - ], - [ - "{-token", - "{", - 10584, - 10584, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10585, - 10597, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10598, - 10598, - null - ], - [ - "dimension-token", - "1rem", - 10599, - 10602, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10603, - 10603, - null - ], - [ - "delim-token", - ".", - 10604, - 10604, - { - "value": "." - } - ], - [ - "ident-token", - "g-4", - 10605, - 10607, - { - "value": "g-4" - } - ], - [ - "comma-token", - ",", - 10608, - 10608, - null - ], - [ - "delim-token", - ".", - 10609, - 10609, - { - "value": "." - } - ], - [ - "ident-token", - "gx-4", - 10610, - 10613, - { - "value": "gx-4" - } - ], - [ - "{-token", - "{", - 10614, - 10614, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10615, - 10627, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10628, - 10628, - null - ], - [ - "dimension-token", - "1.5rem", - 10629, - 10634, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10635, - 10635, - null - ], - [ - "delim-token", - ".", - 10636, - 10636, - { - "value": "." - } - ], - [ - "ident-token", - "g-4", - 10637, - 10639, - { - "value": "g-4" - } - ], - [ - "comma-token", - ",", - 10640, - 10640, - null - ], - [ - "delim-token", - ".", - 10641, - 10641, - { - "value": "." - } - ], - [ - "ident-token", - "gy-4", - 10642, - 10645, - { - "value": "gy-4" - } - ], - [ - "{-token", - "{", - 10646, - 10646, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10647, - 10659, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10660, - 10660, - null - ], - [ - "dimension-token", - "1.5rem", - 10661, - 10666, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10667, - 10667, - null - ], - [ - "delim-token", - ".", - 10668, - 10668, - { - "value": "." - } - ], - [ - "ident-token", - "g-5", - 10669, - 10671, - { - "value": "g-5" - } - ], - [ - "comma-token", - ",", - 10672, - 10672, - null - ], - [ - "delim-token", - ".", - 10673, - 10673, - { - "value": "." - } - ], - [ - "ident-token", - "gx-5", - 10674, - 10677, - { - "value": "gx-5" - } - ], - [ - "{-token", - "{", - 10678, - 10678, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 10679, - 10691, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 10692, - 10692, - null - ], - [ - "dimension-token", - "3rem", - 10693, - 10696, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10697, - 10697, - null - ], - [ - "delim-token", - ".", - 10698, - 10698, - { - "value": "." - } - ], - [ - "ident-token", - "g-5", - 10699, - 10701, - { - "value": "g-5" - } - ], - [ - "comma-token", - ",", - 10702, - 10702, - null - ], - [ - "delim-token", - ".", - 10703, - 10703, - { - "value": "." - } - ], - [ - "ident-token", - "gy-5", - 10704, - 10707, - { - "value": "gy-5" - } - ], - [ - "{-token", - "{", - 10708, - 10708, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 10709, - 10721, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 10722, - 10722, - null - ], - [ - "dimension-token", - "3rem", - 10723, - 10726, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 10727, - 10727, - null - ], - [ - "at-keyword-token", - "@media", - 10728, - 10733, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 10734, - 10734, - null - ], - [ - "(-token", - "(", - 10735, - 10735, - null - ], - [ - "ident-token", - "min-width", - 10736, - 10744, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 10745, - 10745, - null - ], - [ - "dimension-token", - "576px", - 10746, - 10750, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 10751, - 10751, - null - ], - [ - "{-token", - "{", - 10752, - 10752, - null - ], - [ - "delim-token", - ".", - 10753, - 10753, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm", - 10754, - 10759, - { - "value": "col-sm" - } - ], - [ - "{-token", - "{", - 10760, - 10760, - null - ], - [ - "ident-token", - "flex", - 10761, - 10764, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10765, - 10765, - null - ], - [ - "number-token", - "1", - 10766, - 10766, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10767, - 10767, - null - ], - [ - "number-token", - "0", - 10768, - 10768, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10769, - 10769, - null - ], - [ - "percentage-token", - "0%", - 10770, - 10771, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 10772, - 10772, - null - ], - [ - "delim-token", - ".", - 10773, - 10773, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-auto", - 10774, - 10789, - { - "value": "row-cols-sm-auto" - } - ], - [ - "delim-token", - ">", - 10790, - 10790, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 10791, - 10791, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 10792, - 10792, - null - ], - [ - "ident-token", - "flex", - 10793, - 10796, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10797, - 10797, - null - ], - [ - "number-token", - "0", - 10798, - 10798, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10799, - 10799, - null - ], - [ - "number-token", - "0", - 10800, - 10800, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10801, - 10801, - null - ], - [ - "ident-token", - "auto", - 10802, - 10805, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 10806, - 10806, - null - ], - [ - "ident-token", - "width", - 10807, - 10811, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 10812, - 10812, - null - ], - [ - "ident-token", - "auto", - 10813, - 10816, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 10817, - 10817, - null - ], - [ - "delim-token", - ".", - 10818, - 10818, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-1", - 10819, - 10831, - { - "value": "row-cols-sm-1" - } - ], - [ - "delim-token", - ">", - 10832, - 10832, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 10833, - 10833, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 10834, - 10834, - null - ], - [ - "ident-token", - "flex", - 10835, - 10838, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10839, - 10839, - null - ], - [ - "number-token", - "0", - 10840, - 10840, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10841, - 10841, - null - ], - [ - "number-token", - "0", - 10842, - 10842, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10843, - 10843, - null - ], - [ - "ident-token", - "auto", - 10844, - 10847, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 10848, - 10848, - null - ], - [ - "ident-token", - "width", - 10849, - 10853, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 10854, - 10854, - null - ], - [ - "percentage-token", - "100%", - 10855, - 10858, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 10859, - 10859, - null - ], - [ - "delim-token", - ".", - 10860, - 10860, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-2", - 10861, - 10873, - { - "value": "row-cols-sm-2" - } - ], - [ - "delim-token", - ">", - 10874, - 10874, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 10875, - 10875, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 10876, - 10876, - null - ], - [ - "ident-token", - "flex", - 10877, - 10880, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10881, - 10881, - null - ], - [ - "number-token", - "0", - 10882, - 10882, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10883, - 10883, - null - ], - [ - "number-token", - "0", - 10884, - 10884, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10885, - 10885, - null - ], - [ - "ident-token", - "auto", - 10886, - 10889, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 10890, - 10890, - null - ], - [ - "ident-token", - "width", - 10891, - 10895, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 10896, - 10896, - null - ], - [ - "percentage-token", - "50%", - 10897, - 10899, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 10900, - 10900, - null - ], - [ - "delim-token", - ".", - 10901, - 10901, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-3", - 10902, - 10914, - { - "value": "row-cols-sm-3" - } - ], - [ - "delim-token", - ">", - 10915, - 10915, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 10916, - 10916, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 10917, - 10917, - null - ], - [ - "ident-token", - "flex", - 10918, - 10921, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10922, - 10922, - null - ], - [ - "number-token", - "0", - 10923, - 10923, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10924, - 10924, - null - ], - [ - "number-token", - "0", - 10925, - 10925, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10926, - 10926, - null - ], - [ - "ident-token", - "auto", - 10927, - 10930, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 10931, - 10931, - null - ], - [ - "ident-token", - "width", - 10932, - 10936, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 10937, - 10937, - null - ], - [ - "percentage-token", - "33.3333333333%", - 10938, - 10951, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 10952, - 10952, - null - ], - [ - "delim-token", - ".", - 10953, - 10953, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-4", - 10954, - 10966, - { - "value": "row-cols-sm-4" - } - ], - [ - "delim-token", - ">", - 10967, - 10967, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 10968, - 10968, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 10969, - 10969, - null - ], - [ - "ident-token", - "flex", - 10970, - 10973, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 10974, - 10974, - null - ], - [ - "number-token", - "0", - 10975, - 10975, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10976, - 10976, - null - ], - [ - "number-token", - "0", - 10977, - 10977, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 10978, - 10978, - null - ], - [ - "ident-token", - "auto", - 10979, - 10982, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 10983, - 10983, - null - ], - [ - "ident-token", - "width", - 10984, - 10988, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 10989, - 10989, - null - ], - [ - "percentage-token", - "25%", - 10990, - 10992, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 10993, - 10993, - null - ], - [ - "delim-token", - ".", - 10994, - 10994, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-5", - 10995, - 11007, - { - "value": "row-cols-sm-5" - } - ], - [ - "delim-token", - ">", - 11008, - 11008, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 11009, - 11009, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 11010, - 11010, - null - ], - [ - "ident-token", - "flex", - 11011, - 11014, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11015, - 11015, - null - ], - [ - "number-token", - "0", - 11016, - 11016, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11017, - 11017, - null - ], - [ - "number-token", - "0", - 11018, - 11018, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11019, - 11019, - null - ], - [ - "ident-token", - "auto", - 11020, - 11023, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11024, - 11024, - null - ], - [ - "ident-token", - "width", - 11025, - 11029, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11030, - 11030, - null - ], - [ - "percentage-token", - "20%", - 11031, - 11033, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 11034, - 11034, - null - ], - [ - "delim-token", - ".", - 11035, - 11035, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-sm-6", - 11036, - 11048, - { - "value": "row-cols-sm-6" - } - ], - [ - "delim-token", - ">", - 11049, - 11049, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 11050, - 11050, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 11051, - 11051, - null - ], - [ - "ident-token", - "flex", - 11052, - 11055, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11056, - 11056, - null - ], - [ - "number-token", - "0", - 11057, - 11057, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11058, - 11058, - null - ], - [ - "number-token", - "0", - 11059, - 11059, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11060, - 11060, - null - ], - [ - "ident-token", - "auto", - 11061, - 11064, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11065, - 11065, - null - ], - [ - "ident-token", - "width", - 11066, - 11070, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11071, - 11071, - null - ], - [ - "percentage-token", - "16.6666666667%", - 11072, - 11085, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 11086, - 11086, - null - ], - [ - "delim-token", - ".", - 11087, - 11087, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-auto", - 11088, - 11098, - { - "value": "col-sm-auto" - } - ], - [ - "{-token", - "{", - 11099, - 11099, - null - ], - [ - "ident-token", - "flex", - 11100, - 11103, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11104, - 11104, - null - ], - [ - "number-token", - "0", - 11105, - 11105, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11106, - 11106, - null - ], - [ - "number-token", - "0", - 11107, - 11107, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11108, - 11108, - null - ], - [ - "ident-token", - "auto", - 11109, - 11112, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11113, - 11113, - null - ], - [ - "ident-token", - "width", - 11114, - 11118, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11119, - 11119, - null - ], - [ - "ident-token", - "auto", - 11120, - 11123, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 11124, - 11124, - null - ], - [ - "delim-token", - ".", - 11125, - 11125, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-1", - 11126, - 11133, - { - "value": "col-sm-1" - } - ], - [ - "{-token", - "{", - 11134, - 11134, - null - ], - [ - "ident-token", - "flex", - 11135, - 11138, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11139, - 11139, - null - ], - [ - "number-token", - "0", - 11140, - 11140, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11141, - 11141, - null - ], - [ - "number-token", - "0", - 11142, - 11142, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11143, - 11143, - null - ], - [ - "ident-token", - "auto", - 11144, - 11147, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11148, - 11148, - null - ], - [ - "ident-token", - "width", - 11149, - 11153, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11154, - 11154, - null - ], - [ - "percentage-token", - "8.33333333%", - 11155, - 11165, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 11166, - 11166, - null - ], - [ - "delim-token", - ".", - 11167, - 11167, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-2", - 11168, - 11175, - { - "value": "col-sm-2" - } - ], - [ - "{-token", - "{", - 11176, - 11176, - null - ], - [ - "ident-token", - "flex", - 11177, - 11180, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11181, - 11181, - null - ], - [ - "number-token", - "0", - 11182, - 11182, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11183, - 11183, - null - ], - [ - "number-token", - "0", - 11184, - 11184, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11185, - 11185, - null - ], - [ - "ident-token", - "auto", - 11186, - 11189, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11190, - 11190, - null - ], - [ - "ident-token", - "width", - 11191, - 11195, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11196, - 11196, - null - ], - [ - "percentage-token", - "16.66666667%", - 11197, - 11208, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 11209, - 11209, - null - ], - [ - "delim-token", - ".", - 11210, - 11210, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-3", - 11211, - 11218, - { - "value": "col-sm-3" - } - ], - [ - "{-token", - "{", - 11219, - 11219, - null - ], - [ - "ident-token", - "flex", - 11220, - 11223, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11224, - 11224, - null - ], - [ - "number-token", - "0", - 11225, - 11225, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11226, - 11226, - null - ], - [ - "number-token", - "0", - 11227, - 11227, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11228, - 11228, - null - ], - [ - "ident-token", - "auto", - 11229, - 11232, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11233, - 11233, - null - ], - [ - "ident-token", - "width", - 11234, - 11238, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11239, - 11239, - null - ], - [ - "percentage-token", - "25%", - 11240, - 11242, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 11243, - 11243, - null - ], - [ - "delim-token", - ".", - 11244, - 11244, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-4", - 11245, - 11252, - { - "value": "col-sm-4" - } - ], - [ - "{-token", - "{", - 11253, - 11253, - null - ], - [ - "ident-token", - "flex", - 11254, - 11257, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11258, - 11258, - null - ], - [ - "number-token", - "0", - 11259, - 11259, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11260, - 11260, - null - ], - [ - "number-token", - "0", - 11261, - 11261, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11262, - 11262, - null - ], - [ - "ident-token", - "auto", - 11263, - 11266, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11267, - 11267, - null - ], - [ - "ident-token", - "width", - 11268, - 11272, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11273, - 11273, - null - ], - [ - "percentage-token", - "33.33333333%", - 11274, - 11285, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 11286, - 11286, - null - ], - [ - "delim-token", - ".", - 11287, - 11287, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-5", - 11288, - 11295, - { - "value": "col-sm-5" - } - ], - [ - "{-token", - "{", - 11296, - 11296, - null - ], - [ - "ident-token", - "flex", - 11297, - 11300, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11301, - 11301, - null - ], - [ - "number-token", - "0", - 11302, - 11302, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11303, - 11303, - null - ], - [ - "number-token", - "0", - 11304, - 11304, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11305, - 11305, - null - ], - [ - "ident-token", - "auto", - 11306, - 11309, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11310, - 11310, - null - ], - [ - "ident-token", - "width", - 11311, - 11315, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11316, - 11316, - null - ], - [ - "percentage-token", - "41.66666667%", - 11317, - 11328, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 11329, - 11329, - null - ], - [ - "delim-token", - ".", - 11330, - 11330, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-6", - 11331, - 11338, - { - "value": "col-sm-6" - } - ], - [ - "{-token", - "{", - 11339, - 11339, - null - ], - [ - "ident-token", - "flex", - 11340, - 11343, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11344, - 11344, - null - ], - [ - "number-token", - "0", - 11345, - 11345, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11346, - 11346, - null - ], - [ - "number-token", - "0", - 11347, - 11347, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11348, - 11348, - null - ], - [ - "ident-token", - "auto", - 11349, - 11352, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11353, - 11353, - null - ], - [ - "ident-token", - "width", - 11354, - 11358, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11359, - 11359, - null - ], - [ - "percentage-token", - "50%", - 11360, - 11362, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 11363, - 11363, - null - ], - [ - "delim-token", - ".", - 11364, - 11364, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-7", - 11365, - 11372, - { - "value": "col-sm-7" - } - ], - [ - "{-token", - "{", - 11373, - 11373, - null - ], - [ - "ident-token", - "flex", - 11374, - 11377, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11378, - 11378, - null - ], - [ - "number-token", - "0", - 11379, - 11379, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11380, - 11380, - null - ], - [ - "number-token", - "0", - 11381, - 11381, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11382, - 11382, - null - ], - [ - "ident-token", - "auto", - 11383, - 11386, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11387, - 11387, - null - ], - [ - "ident-token", - "width", - 11388, - 11392, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11393, - 11393, - null - ], - [ - "percentage-token", - "58.33333333%", - 11394, - 11405, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 11406, - 11406, - null - ], - [ - "delim-token", - ".", - 11407, - 11407, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-8", - 11408, - 11415, - { - "value": "col-sm-8" - } - ], - [ - "{-token", - "{", - 11416, - 11416, - null - ], - [ - "ident-token", - "flex", - 11417, - 11420, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11421, - 11421, - null - ], - [ - "number-token", - "0", - 11422, - 11422, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11423, - 11423, - null - ], - [ - "number-token", - "0", - 11424, - 11424, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11425, - 11425, - null - ], - [ - "ident-token", - "auto", - 11426, - 11429, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11430, - 11430, - null - ], - [ - "ident-token", - "width", - 11431, - 11435, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11436, - 11436, - null - ], - [ - "percentage-token", - "66.66666667%", - 11437, - 11448, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 11449, - 11449, - null - ], - [ - "delim-token", - ".", - 11450, - 11450, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-9", - 11451, - 11458, - { - "value": "col-sm-9" - } - ], - [ - "{-token", - "{", - 11459, - 11459, - null - ], - [ - "ident-token", - "flex", - 11460, - 11463, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11464, - 11464, - null - ], - [ - "number-token", - "0", - 11465, - 11465, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11466, - 11466, - null - ], - [ - "number-token", - "0", - 11467, - 11467, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11468, - 11468, - null - ], - [ - "ident-token", - "auto", - 11469, - 11472, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11473, - 11473, - null - ], - [ - "ident-token", - "width", - 11474, - 11478, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11479, - 11479, - null - ], - [ - "percentage-token", - "75%", - 11480, - 11482, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 11483, - 11483, - null - ], - [ - "delim-token", - ".", - 11484, - 11484, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-10", - 11485, - 11493, - { - "value": "col-sm-10" - } - ], - [ - "{-token", - "{", - 11494, - 11494, - null - ], - [ - "ident-token", - "flex", - 11495, - 11498, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11499, - 11499, - null - ], - [ - "number-token", - "0", - 11500, - 11500, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11501, - 11501, - null - ], - [ - "number-token", - "0", - 11502, - 11502, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11503, - 11503, - null - ], - [ - "ident-token", - "auto", - 11504, - 11507, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11508, - 11508, - null - ], - [ - "ident-token", - "width", - 11509, - 11513, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11514, - 11514, - null - ], - [ - "percentage-token", - "83.33333333%", - 11515, - 11526, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 11527, - 11527, - null - ], - [ - "delim-token", - ".", - 11528, - 11528, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-11", - 11529, - 11537, - { - "value": "col-sm-11" - } - ], - [ - "{-token", - "{", - 11538, - 11538, - null - ], - [ - "ident-token", - "flex", - 11539, - 11542, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11543, - 11543, - null - ], - [ - "number-token", - "0", - 11544, - 11544, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11545, - 11545, - null - ], - [ - "number-token", - "0", - 11546, - 11546, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11547, - 11547, - null - ], - [ - "ident-token", - "auto", - 11548, - 11551, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11552, - 11552, - null - ], - [ - "ident-token", - "width", - 11553, - 11557, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11558, - 11558, - null - ], - [ - "percentage-token", - "91.66666667%", - 11559, - 11570, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 11571, - 11571, - null - ], - [ - "delim-token", - ".", - 11572, - 11572, - { - "value": "." - } - ], - [ - "ident-token", - "col-sm-12", - 11573, - 11581, - { - "value": "col-sm-12" - } - ], - [ - "{-token", - "{", - 11582, - 11582, - null - ], - [ - "ident-token", - "flex", - 11583, - 11586, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 11587, - 11587, - null - ], - [ - "number-token", - "0", - 11588, - 11588, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11589, - 11589, - null - ], - [ - "number-token", - "0", - 11590, - 11590, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 11591, - 11591, - null - ], - [ - "ident-token", - "auto", - 11592, - 11595, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 11596, - 11596, - null - ], - [ - "ident-token", - "width", - 11597, - 11601, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 11602, - 11602, - null - ], - [ - "percentage-token", - "100%", - 11603, - 11606, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 11607, - 11607, - null - ], - [ - "delim-token", - ".", - 11608, - 11608, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-0", - 11609, - 11619, - { - "value": "offset-sm-0" - } - ], - [ - "{-token", - "{", - 11620, - 11620, - null - ], - [ - "ident-token", - "margin-left", - 11621, - 11631, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11632, - 11632, - null - ], - [ - "number-token", - "0", - 11633, - 11633, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 11634, - 11634, - null - ], - [ - "delim-token", - ".", - 11635, - 11635, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-1", - 11636, - 11646, - { - "value": "offset-sm-1" - } - ], - [ - "{-token", - "{", - 11647, - 11647, - null - ], - [ - "ident-token", - "margin-left", - 11648, - 11658, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11659, - 11659, - null - ], - [ - "percentage-token", - "8.33333333%", - 11660, - 11670, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 11671, - 11671, - null - ], - [ - "delim-token", - ".", - 11672, - 11672, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-2", - 11673, - 11683, - { - "value": "offset-sm-2" - } - ], - [ - "{-token", - "{", - 11684, - 11684, - null - ], - [ - "ident-token", - "margin-left", - 11685, - 11695, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11696, - 11696, - null - ], - [ - "percentage-token", - "16.66666667%", - 11697, - 11708, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 11709, - 11709, - null - ], - [ - "delim-token", - ".", - 11710, - 11710, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-3", - 11711, - 11721, - { - "value": "offset-sm-3" - } - ], - [ - "{-token", - "{", - 11722, - 11722, - null - ], - [ - "ident-token", - "margin-left", - 11723, - 11733, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11734, - 11734, - null - ], - [ - "percentage-token", - "25%", - 11735, - 11737, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 11738, - 11738, - null - ], - [ - "delim-token", - ".", - 11739, - 11739, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-4", - 11740, - 11750, - { - "value": "offset-sm-4" - } - ], - [ - "{-token", - "{", - 11751, - 11751, - null - ], - [ - "ident-token", - "margin-left", - 11752, - 11762, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11763, - 11763, - null - ], - [ - "percentage-token", - "33.33333333%", - 11764, - 11775, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 11776, - 11776, - null - ], - [ - "delim-token", - ".", - 11777, - 11777, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-5", - 11778, - 11788, - { - "value": "offset-sm-5" - } - ], - [ - "{-token", - "{", - 11789, - 11789, - null - ], - [ - "ident-token", - "margin-left", - 11790, - 11800, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11801, - 11801, - null - ], - [ - "percentage-token", - "41.66666667%", - 11802, - 11813, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 11814, - 11814, - null - ], - [ - "delim-token", - ".", - 11815, - 11815, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-6", - 11816, - 11826, - { - "value": "offset-sm-6" - } - ], - [ - "{-token", - "{", - 11827, - 11827, - null - ], - [ - "ident-token", - "margin-left", - 11828, - 11838, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11839, - 11839, - null - ], - [ - "percentage-token", - "50%", - 11840, - 11842, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 11843, - 11843, - null - ], - [ - "delim-token", - ".", - 11844, - 11844, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-7", - 11845, - 11855, - { - "value": "offset-sm-7" - } - ], - [ - "{-token", - "{", - 11856, - 11856, - null - ], - [ - "ident-token", - "margin-left", - 11857, - 11867, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11868, - 11868, - null - ], - [ - "percentage-token", - "58.33333333%", - 11869, - 11880, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 11881, - 11881, - null - ], - [ - "delim-token", - ".", - 11882, - 11882, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-8", - 11883, - 11893, - { - "value": "offset-sm-8" - } - ], - [ - "{-token", - "{", - 11894, - 11894, - null - ], - [ - "ident-token", - "margin-left", - 11895, - 11905, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11906, - 11906, - null - ], - [ - "percentage-token", - "66.66666667%", - 11907, - 11918, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 11919, - 11919, - null - ], - [ - "delim-token", - ".", - 11920, - 11920, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-9", - 11921, - 11931, - { - "value": "offset-sm-9" - } - ], - [ - "{-token", - "{", - 11932, - 11932, - null - ], - [ - "ident-token", - "margin-left", - 11933, - 11943, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11944, - 11944, - null - ], - [ - "percentage-token", - "75%", - 11945, - 11947, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 11948, - 11948, - null - ], - [ - "delim-token", - ".", - 11949, - 11949, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-10", - 11950, - 11961, - { - "value": "offset-sm-10" - } - ], - [ - "{-token", - "{", - 11962, - 11962, - null - ], - [ - "ident-token", - "margin-left", - 11963, - 11973, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 11974, - 11974, - null - ], - [ - "percentage-token", - "83.33333333%", - 11975, - 11986, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 11987, - 11987, - null - ], - [ - "delim-token", - ".", - 11988, - 11988, - { - "value": "." - } - ], - [ - "ident-token", - "offset-sm-11", - 11989, - 12000, - { - "value": "offset-sm-11" - } - ], - [ - "{-token", - "{", - 12001, - 12001, - null - ], - [ - "ident-token", - "margin-left", - 12002, - 12012, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 12013, - 12013, - null - ], - [ - "percentage-token", - "91.66666667%", - 12014, - 12025, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 12026, - 12026, - null - ], - [ - "delim-token", - ".", - 12027, - 12027, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-0", - 12028, - 12033, - { - "value": "g-sm-0" - } - ], - [ - "comma-token", - ",", - 12034, - 12034, - null - ], - [ - "delim-token", - ".", - 12035, - 12035, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-0", - 12036, - 12042, - { - "value": "gx-sm-0" - } - ], - [ - "{-token", - "{", - 12043, - 12043, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12044, - 12056, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12057, - 12057, - null - ], - [ - "number-token", - "0", - 12058, - 12058, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 12059, - 12059, - null - ], - [ - "delim-token", - ".", - 12060, - 12060, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-0", - 12061, - 12066, - { - "value": "g-sm-0" - } - ], - [ - "comma-token", - ",", - 12067, - 12067, - null - ], - [ - "delim-token", - ".", - 12068, - 12068, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-0", - 12069, - 12075, - { - "value": "gy-sm-0" - } - ], - [ - "{-token", - "{", - 12076, - 12076, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12077, - 12089, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12090, - 12090, - null - ], - [ - "number-token", - "0", - 12091, - 12091, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 12092, - 12092, - null - ], - [ - "delim-token", - ".", - 12093, - 12093, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-1", - 12094, - 12099, - { - "value": "g-sm-1" - } - ], - [ - "comma-token", - ",", - 12100, - 12100, - null - ], - [ - "delim-token", - ".", - 12101, - 12101, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-1", - 12102, - 12108, - { - "value": "gx-sm-1" - } - ], - [ - "{-token", - "{", - 12109, - 12109, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12110, - 12122, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12123, - 12123, - null - ], - [ - "dimension-token", - "0.25rem", - 12124, - 12130, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12131, - 12131, - null - ], - [ - "delim-token", - ".", - 12132, - 12132, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-1", - 12133, - 12138, - { - "value": "g-sm-1" - } - ], - [ - "comma-token", - ",", - 12139, - 12139, - null - ], - [ - "delim-token", - ".", - 12140, - 12140, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-1", - 12141, - 12147, - { - "value": "gy-sm-1" - } - ], - [ - "{-token", - "{", - 12148, - 12148, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12149, - 12161, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12162, - 12162, - null - ], - [ - "dimension-token", - "0.25rem", - 12163, - 12169, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12170, - 12170, - null - ], - [ - "delim-token", - ".", - 12171, - 12171, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-2", - 12172, - 12177, - { - "value": "g-sm-2" - } - ], - [ - "comma-token", - ",", - 12178, - 12178, - null - ], - [ - "delim-token", - ".", - 12179, - 12179, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-2", - 12180, - 12186, - { - "value": "gx-sm-2" - } - ], - [ - "{-token", - "{", - 12187, - 12187, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12188, - 12200, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12201, - 12201, - null - ], - [ - "dimension-token", - "0.5rem", - 12202, - 12207, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12208, - 12208, - null - ], - [ - "delim-token", - ".", - 12209, - 12209, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-2", - 12210, - 12215, - { - "value": "g-sm-2" - } - ], - [ - "comma-token", - ",", - 12216, - 12216, - null - ], - [ - "delim-token", - ".", - 12217, - 12217, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-2", - 12218, - 12224, - { - "value": "gy-sm-2" - } - ], - [ - "{-token", - "{", - 12225, - 12225, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12226, - 12238, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12239, - 12239, - null - ], - [ - "dimension-token", - "0.5rem", - 12240, - 12245, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12246, - 12246, - null - ], - [ - "delim-token", - ".", - 12247, - 12247, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-3", - 12248, - 12253, - { - "value": "g-sm-3" - } - ], - [ - "comma-token", - ",", - 12254, - 12254, - null - ], - [ - "delim-token", - ".", - 12255, - 12255, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-3", - 12256, - 12262, - { - "value": "gx-sm-3" - } - ], - [ - "{-token", - "{", - 12263, - 12263, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12264, - 12276, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12277, - 12277, - null - ], - [ - "dimension-token", - "1rem", - 12278, - 12281, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12282, - 12282, - null - ], - [ - "delim-token", - ".", - 12283, - 12283, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-3", - 12284, - 12289, - { - "value": "g-sm-3" - } - ], - [ - "comma-token", - ",", - 12290, - 12290, - null - ], - [ - "delim-token", - ".", - 12291, - 12291, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-3", - 12292, - 12298, - { - "value": "gy-sm-3" - } - ], - [ - "{-token", - "{", - 12299, - 12299, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12300, - 12312, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12313, - 12313, - null - ], - [ - "dimension-token", - "1rem", - 12314, - 12317, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12318, - 12318, - null - ], - [ - "delim-token", - ".", - 12319, - 12319, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-4", - 12320, - 12325, - { - "value": "g-sm-4" - } - ], - [ - "comma-token", - ",", - 12326, - 12326, - null - ], - [ - "delim-token", - ".", - 12327, - 12327, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-4", - 12328, - 12334, - { - "value": "gx-sm-4" - } - ], - [ - "{-token", - "{", - 12335, - 12335, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12336, - 12348, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12349, - 12349, - null - ], - [ - "dimension-token", - "1.5rem", - 12350, - 12355, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12356, - 12356, - null - ], - [ - "delim-token", - ".", - 12357, - 12357, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-4", - 12358, - 12363, - { - "value": "g-sm-4" - } - ], - [ - "comma-token", - ",", - 12364, - 12364, - null - ], - [ - "delim-token", - ".", - 12365, - 12365, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-4", - 12366, - 12372, - { - "value": "gy-sm-4" - } - ], - [ - "{-token", - "{", - 12373, - 12373, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12374, - 12386, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12387, - 12387, - null - ], - [ - "dimension-token", - "1.5rem", - 12388, - 12393, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12394, - 12394, - null - ], - [ - "delim-token", - ".", - 12395, - 12395, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-5", - 12396, - 12401, - { - "value": "g-sm-5" - } - ], - [ - "comma-token", - ",", - 12402, - 12402, - null - ], - [ - "delim-token", - ".", - 12403, - 12403, - { - "value": "." - } - ], - [ - "ident-token", - "gx-sm-5", - 12404, - 12410, - { - "value": "gx-sm-5" - } - ], - [ - "{-token", - "{", - 12411, - 12411, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 12412, - 12424, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 12425, - 12425, - null - ], - [ - "dimension-token", - "3rem", - 12426, - 12429, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12430, - 12430, - null - ], - [ - "delim-token", - ".", - 12431, - 12431, - { - "value": "." - } - ], - [ - "ident-token", - "g-sm-5", - 12432, - 12437, - { - "value": "g-sm-5" - } - ], - [ - "comma-token", - ",", - 12438, - 12438, - null - ], - [ - "delim-token", - ".", - 12439, - 12439, - { - "value": "." - } - ], - [ - "ident-token", - "gy-sm-5", - 12440, - 12446, - { - "value": "gy-sm-5" - } - ], - [ - "{-token", - "{", - 12447, - 12447, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 12448, - 12460, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 12461, - 12461, - null - ], - [ - "dimension-token", - "3rem", - 12462, - 12465, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 12466, - 12466, - null - ], - [ - "}-token", - "}", - 12467, - 12467, - null - ], - [ - "at-keyword-token", - "@media", - 12468, - 12473, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 12474, - 12474, - null - ], - [ - "(-token", - "(", - 12475, - 12475, - null - ], - [ - "ident-token", - "min-width", - 12476, - 12484, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 12485, - 12485, - null - ], - [ - "dimension-token", - "768px", - 12486, - 12490, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 12491, - 12491, - null - ], - [ - "{-token", - "{", - 12492, - 12492, - null - ], - [ - "delim-token", - ".", - 12493, - 12493, - { - "value": "." - } - ], - [ - "ident-token", - "col-md", - 12494, - 12499, - { - "value": "col-md" - } - ], - [ - "{-token", - "{", - 12500, - 12500, - null - ], - [ - "ident-token", - "flex", - 12501, - 12504, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12505, - 12505, - null - ], - [ - "number-token", - "1", - 12506, - 12506, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12507, - 12507, - null - ], - [ - "number-token", - "0", - 12508, - 12508, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12509, - 12509, - null - ], - [ - "percentage-token", - "0%", - 12510, - 12511, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 12512, - 12512, - null - ], - [ - "delim-token", - ".", - 12513, - 12513, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-auto", - 12514, - 12529, - { - "value": "row-cols-md-auto" - } - ], - [ - "delim-token", - ">", - 12530, - 12530, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12531, - 12531, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12532, - 12532, - null - ], - [ - "ident-token", - "flex", - 12533, - 12536, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12537, - 12537, - null - ], - [ - "number-token", - "0", - 12538, - 12538, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12539, - 12539, - null - ], - [ - "number-token", - "0", - 12540, - 12540, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12541, - 12541, - null - ], - [ - "ident-token", - "auto", - 12542, - 12545, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12546, - 12546, - null - ], - [ - "ident-token", - "width", - 12547, - 12551, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12552, - 12552, - null - ], - [ - "ident-token", - "auto", - 12553, - 12556, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 12557, - 12557, - null - ], - [ - "delim-token", - ".", - 12558, - 12558, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-1", - 12559, - 12571, - { - "value": "row-cols-md-1" - } - ], - [ - "delim-token", - ">", - 12572, - 12572, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12573, - 12573, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12574, - 12574, - null - ], - [ - "ident-token", - "flex", - 12575, - 12578, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12579, - 12579, - null - ], - [ - "number-token", - "0", - 12580, - 12580, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12581, - 12581, - null - ], - [ - "number-token", - "0", - 12582, - 12582, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12583, - 12583, - null - ], - [ - "ident-token", - "auto", - 12584, - 12587, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12588, - 12588, - null - ], - [ - "ident-token", - "width", - 12589, - 12593, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12594, - 12594, - null - ], - [ - "percentage-token", - "100%", - 12595, - 12598, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 12599, - 12599, - null - ], - [ - "delim-token", - ".", - 12600, - 12600, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-2", - 12601, - 12613, - { - "value": "row-cols-md-2" - } - ], - [ - "delim-token", - ">", - 12614, - 12614, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12615, - 12615, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12616, - 12616, - null - ], - [ - "ident-token", - "flex", - 12617, - 12620, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12621, - 12621, - null - ], - [ - "number-token", - "0", - 12622, - 12622, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12623, - 12623, - null - ], - [ - "number-token", - "0", - 12624, - 12624, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12625, - 12625, - null - ], - [ - "ident-token", - "auto", - 12626, - 12629, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12630, - 12630, - null - ], - [ - "ident-token", - "width", - 12631, - 12635, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12636, - 12636, - null - ], - [ - "percentage-token", - "50%", - 12637, - 12639, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 12640, - 12640, - null - ], - [ - "delim-token", - ".", - 12641, - 12641, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-3", - 12642, - 12654, - { - "value": "row-cols-md-3" - } - ], - [ - "delim-token", - ">", - 12655, - 12655, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12656, - 12656, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12657, - 12657, - null - ], - [ - "ident-token", - "flex", - 12658, - 12661, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12662, - 12662, - null - ], - [ - "number-token", - "0", - 12663, - 12663, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12664, - 12664, - null - ], - [ - "number-token", - "0", - 12665, - 12665, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12666, - 12666, - null - ], - [ - "ident-token", - "auto", - 12667, - 12670, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12671, - 12671, - null - ], - [ - "ident-token", - "width", - 12672, - 12676, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12677, - 12677, - null - ], - [ - "percentage-token", - "33.3333333333%", - 12678, - 12691, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 12692, - 12692, - null - ], - [ - "delim-token", - ".", - 12693, - 12693, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-4", - 12694, - 12706, - { - "value": "row-cols-md-4" - } - ], - [ - "delim-token", - ">", - 12707, - 12707, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12708, - 12708, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12709, - 12709, - null - ], - [ - "ident-token", - "flex", - 12710, - 12713, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12714, - 12714, - null - ], - [ - "number-token", - "0", - 12715, - 12715, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12716, - 12716, - null - ], - [ - "number-token", - "0", - 12717, - 12717, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12718, - 12718, - null - ], - [ - "ident-token", - "auto", - 12719, - 12722, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12723, - 12723, - null - ], - [ - "ident-token", - "width", - 12724, - 12728, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12729, - 12729, - null - ], - [ - "percentage-token", - "25%", - 12730, - 12732, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 12733, - 12733, - null - ], - [ - "delim-token", - ".", - 12734, - 12734, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-5", - 12735, - 12747, - { - "value": "row-cols-md-5" - } - ], - [ - "delim-token", - ">", - 12748, - 12748, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12749, - 12749, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12750, - 12750, - null - ], - [ - "ident-token", - "flex", - 12751, - 12754, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12755, - 12755, - null - ], - [ - "number-token", - "0", - 12756, - 12756, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12757, - 12757, - null - ], - [ - "number-token", - "0", - 12758, - 12758, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12759, - 12759, - null - ], - [ - "ident-token", - "auto", - 12760, - 12763, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12764, - 12764, - null - ], - [ - "ident-token", - "width", - 12765, - 12769, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12770, - 12770, - null - ], - [ - "percentage-token", - "20%", - 12771, - 12773, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 12774, - 12774, - null - ], - [ - "delim-token", - ".", - 12775, - 12775, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-md-6", - 12776, - 12788, - { - "value": "row-cols-md-6" - } - ], - [ - "delim-token", - ">", - 12789, - 12789, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 12790, - 12790, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 12791, - 12791, - null - ], - [ - "ident-token", - "flex", - 12792, - 12795, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12796, - 12796, - null - ], - [ - "number-token", - "0", - 12797, - 12797, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12798, - 12798, - null - ], - [ - "number-token", - "0", - 12799, - 12799, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12800, - 12800, - null - ], - [ - "ident-token", - "auto", - 12801, - 12804, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12805, - 12805, - null - ], - [ - "ident-token", - "width", - 12806, - 12810, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12811, - 12811, - null - ], - [ - "percentage-token", - "16.6666666667%", - 12812, - 12825, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 12826, - 12826, - null - ], - [ - "delim-token", - ".", - 12827, - 12827, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-auto", - 12828, - 12838, - { - "value": "col-md-auto" - } - ], - [ - "{-token", - "{", - 12839, - 12839, - null - ], - [ - "ident-token", - "flex", - 12840, - 12843, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12844, - 12844, - null - ], - [ - "number-token", - "0", - 12845, - 12845, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12846, - 12846, - null - ], - [ - "number-token", - "0", - 12847, - 12847, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12848, - 12848, - null - ], - [ - "ident-token", - "auto", - 12849, - 12852, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12853, - 12853, - null - ], - [ - "ident-token", - "width", - 12854, - 12858, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12859, - 12859, - null - ], - [ - "ident-token", - "auto", - 12860, - 12863, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 12864, - 12864, - null - ], - [ - "delim-token", - ".", - 12865, - 12865, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-1", - 12866, - 12873, - { - "value": "col-md-1" - } - ], - [ - "{-token", - "{", - 12874, - 12874, - null - ], - [ - "ident-token", - "flex", - 12875, - 12878, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12879, - 12879, - null - ], - [ - "number-token", - "0", - 12880, - 12880, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12881, - 12881, - null - ], - [ - "number-token", - "0", - 12882, - 12882, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12883, - 12883, - null - ], - [ - "ident-token", - "auto", - 12884, - 12887, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12888, - 12888, - null - ], - [ - "ident-token", - "width", - 12889, - 12893, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12894, - 12894, - null - ], - [ - "percentage-token", - "8.33333333%", - 12895, - 12905, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 12906, - 12906, - null - ], - [ - "delim-token", - ".", - 12907, - 12907, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-2", - 12908, - 12915, - { - "value": "col-md-2" - } - ], - [ - "{-token", - "{", - 12916, - 12916, - null - ], - [ - "ident-token", - "flex", - 12917, - 12920, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12921, - 12921, - null - ], - [ - "number-token", - "0", - 12922, - 12922, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12923, - 12923, - null - ], - [ - "number-token", - "0", - 12924, - 12924, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12925, - 12925, - null - ], - [ - "ident-token", - "auto", - 12926, - 12929, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12930, - 12930, - null - ], - [ - "ident-token", - "width", - 12931, - 12935, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12936, - 12936, - null - ], - [ - "percentage-token", - "16.66666667%", - 12937, - 12948, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 12949, - 12949, - null - ], - [ - "delim-token", - ".", - 12950, - 12950, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-3", - 12951, - 12958, - { - "value": "col-md-3" - } - ], - [ - "{-token", - "{", - 12959, - 12959, - null - ], - [ - "ident-token", - "flex", - 12960, - 12963, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12964, - 12964, - null - ], - [ - "number-token", - "0", - 12965, - 12965, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12966, - 12966, - null - ], - [ - "number-token", - "0", - 12967, - 12967, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 12968, - 12968, - null - ], - [ - "ident-token", - "auto", - 12969, - 12972, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 12973, - 12973, - null - ], - [ - "ident-token", - "width", - 12974, - 12978, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 12979, - 12979, - null - ], - [ - "percentage-token", - "25%", - 12980, - 12982, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 12983, - 12983, - null - ], - [ - "delim-token", - ".", - 12984, - 12984, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-4", - 12985, - 12992, - { - "value": "col-md-4" - } - ], - [ - "{-token", - "{", - 12993, - 12993, - null - ], - [ - "ident-token", - "flex", - 12994, - 12997, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 12998, - 12998, - null - ], - [ - "number-token", - "0", - 12999, - 12999, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13000, - 13000, - null - ], - [ - "number-token", - "0", - 13001, - 13001, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13002, - 13002, - null - ], - [ - "ident-token", - "auto", - 13003, - 13006, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13007, - 13007, - null - ], - [ - "ident-token", - "width", - 13008, - 13012, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13013, - 13013, - null - ], - [ - "percentage-token", - "33.33333333%", - 13014, - 13025, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 13026, - 13026, - null - ], - [ - "delim-token", - ".", - 13027, - 13027, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-5", - 13028, - 13035, - { - "value": "col-md-5" - } - ], - [ - "{-token", - "{", - 13036, - 13036, - null - ], - [ - "ident-token", - "flex", - 13037, - 13040, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13041, - 13041, - null - ], - [ - "number-token", - "0", - 13042, - 13042, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13043, - 13043, - null - ], - [ - "number-token", - "0", - 13044, - 13044, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13045, - 13045, - null - ], - [ - "ident-token", - "auto", - 13046, - 13049, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13050, - 13050, - null - ], - [ - "ident-token", - "width", - 13051, - 13055, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13056, - 13056, - null - ], - [ - "percentage-token", - "41.66666667%", - 13057, - 13068, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 13069, - 13069, - null - ], - [ - "delim-token", - ".", - 13070, - 13070, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-6", - 13071, - 13078, - { - "value": "col-md-6" - } - ], - [ - "{-token", - "{", - 13079, - 13079, - null - ], - [ - "ident-token", - "flex", - 13080, - 13083, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13084, - 13084, - null - ], - [ - "number-token", - "0", - 13085, - 13085, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13086, - 13086, - null - ], - [ - "number-token", - "0", - 13087, - 13087, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13088, - 13088, - null - ], - [ - "ident-token", - "auto", - 13089, - 13092, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13093, - 13093, - null - ], - [ - "ident-token", - "width", - 13094, - 13098, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13099, - 13099, - null - ], - [ - "percentage-token", - "50%", - 13100, - 13102, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 13103, - 13103, - null - ], - [ - "delim-token", - ".", - 13104, - 13104, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-7", - 13105, - 13112, - { - "value": "col-md-7" - } - ], - [ - "{-token", - "{", - 13113, - 13113, - null - ], - [ - "ident-token", - "flex", - 13114, - 13117, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13118, - 13118, - null - ], - [ - "number-token", - "0", - 13119, - 13119, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13120, - 13120, - null - ], - [ - "number-token", - "0", - 13121, - 13121, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13122, - 13122, - null - ], - [ - "ident-token", - "auto", - 13123, - 13126, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13127, - 13127, - null - ], - [ - "ident-token", - "width", - 13128, - 13132, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13133, - 13133, - null - ], - [ - "percentage-token", - "58.33333333%", - 13134, - 13145, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 13146, - 13146, - null - ], - [ - "delim-token", - ".", - 13147, - 13147, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-8", - 13148, - 13155, - { - "value": "col-md-8" - } - ], - [ - "{-token", - "{", - 13156, - 13156, - null - ], - [ - "ident-token", - "flex", - 13157, - 13160, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13161, - 13161, - null - ], - [ - "number-token", - "0", - 13162, - 13162, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13163, - 13163, - null - ], - [ - "number-token", - "0", - 13164, - 13164, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13165, - 13165, - null - ], - [ - "ident-token", - "auto", - 13166, - 13169, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13170, - 13170, - null - ], - [ - "ident-token", - "width", - 13171, - 13175, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13176, - 13176, - null - ], - [ - "percentage-token", - "66.66666667%", - 13177, - 13188, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 13189, - 13189, - null - ], - [ - "delim-token", - ".", - 13190, - 13190, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-9", - 13191, - 13198, - { - "value": "col-md-9" - } - ], - [ - "{-token", - "{", - 13199, - 13199, - null - ], - [ - "ident-token", - "flex", - 13200, - 13203, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13204, - 13204, - null - ], - [ - "number-token", - "0", - 13205, - 13205, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13206, - 13206, - null - ], - [ - "number-token", - "0", - 13207, - 13207, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13208, - 13208, - null - ], - [ - "ident-token", - "auto", - 13209, - 13212, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13213, - 13213, - null - ], - [ - "ident-token", - "width", - 13214, - 13218, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13219, - 13219, - null - ], - [ - "percentage-token", - "75%", - 13220, - 13222, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 13223, - 13223, - null - ], - [ - "delim-token", - ".", - 13224, - 13224, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-10", - 13225, - 13233, - { - "value": "col-md-10" - } - ], - [ - "{-token", - "{", - 13234, - 13234, - null - ], - [ - "ident-token", - "flex", - 13235, - 13238, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13239, - 13239, - null - ], - [ - "number-token", - "0", - 13240, - 13240, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13241, - 13241, - null - ], - [ - "number-token", - "0", - 13242, - 13242, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13243, - 13243, - null - ], - [ - "ident-token", - "auto", - 13244, - 13247, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13248, - 13248, - null - ], - [ - "ident-token", - "width", - 13249, - 13253, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13254, - 13254, - null - ], - [ - "percentage-token", - "83.33333333%", - 13255, - 13266, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 13267, - 13267, - null - ], - [ - "delim-token", - ".", - 13268, - 13268, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-11", - 13269, - 13277, - { - "value": "col-md-11" - } - ], - [ - "{-token", - "{", - 13278, - 13278, - null - ], - [ - "ident-token", - "flex", - 13279, - 13282, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13283, - 13283, - null - ], - [ - "number-token", - "0", - 13284, - 13284, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13285, - 13285, - null - ], - [ - "number-token", - "0", - 13286, - 13286, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13287, - 13287, - null - ], - [ - "ident-token", - "auto", - 13288, - 13291, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13292, - 13292, - null - ], - [ - "ident-token", - "width", - 13293, - 13297, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13298, - 13298, - null - ], - [ - "percentage-token", - "91.66666667%", - 13299, - 13310, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 13311, - 13311, - null - ], - [ - "delim-token", - ".", - 13312, - 13312, - { - "value": "." - } - ], - [ - "ident-token", - "col-md-12", - 13313, - 13321, - { - "value": "col-md-12" - } - ], - [ - "{-token", - "{", - 13322, - 13322, - null - ], - [ - "ident-token", - "flex", - 13323, - 13326, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 13327, - 13327, - null - ], - [ - "number-token", - "0", - 13328, - 13328, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13329, - 13329, - null - ], - [ - "number-token", - "0", - 13330, - 13330, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 13331, - 13331, - null - ], - [ - "ident-token", - "auto", - 13332, - 13335, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 13336, - 13336, - null - ], - [ - "ident-token", - "width", - 13337, - 13341, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 13342, - 13342, - null - ], - [ - "percentage-token", - "100%", - 13343, - 13346, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 13347, - 13347, - null - ], - [ - "delim-token", - ".", - 13348, - 13348, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-0", - 13349, - 13359, - { - "value": "offset-md-0" - } - ], - [ - "{-token", - "{", - 13360, - 13360, - null - ], - [ - "ident-token", - "margin-left", - 13361, - 13371, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13372, - 13372, - null - ], - [ - "number-token", - "0", - 13373, - 13373, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 13374, - 13374, - null - ], - [ - "delim-token", - ".", - 13375, - 13375, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-1", - 13376, - 13386, - { - "value": "offset-md-1" - } - ], - [ - "{-token", - "{", - 13387, - 13387, - null - ], - [ - "ident-token", - "margin-left", - 13388, - 13398, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13399, - 13399, - null - ], - [ - "percentage-token", - "8.33333333%", - 13400, - 13410, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 13411, - 13411, - null - ], - [ - "delim-token", - ".", - 13412, - 13412, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-2", - 13413, - 13423, - { - "value": "offset-md-2" - } - ], - [ - "{-token", - "{", - 13424, - 13424, - null - ], - [ - "ident-token", - "margin-left", - 13425, - 13435, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13436, - 13436, - null - ], - [ - "percentage-token", - "16.66666667%", - 13437, - 13448, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 13449, - 13449, - null - ], - [ - "delim-token", - ".", - 13450, - 13450, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-3", - 13451, - 13461, - { - "value": "offset-md-3" - } - ], - [ - "{-token", - "{", - 13462, - 13462, - null - ], - [ - "ident-token", - "margin-left", - 13463, - 13473, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13474, - 13474, - null - ], - [ - "percentage-token", - "25%", - 13475, - 13477, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 13478, - 13478, - null - ], - [ - "delim-token", - ".", - 13479, - 13479, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-4", - 13480, - 13490, - { - "value": "offset-md-4" - } - ], - [ - "{-token", - "{", - 13491, - 13491, - null - ], - [ - "ident-token", - "margin-left", - 13492, - 13502, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13503, - 13503, - null - ], - [ - "percentage-token", - "33.33333333%", - 13504, - 13515, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 13516, - 13516, - null - ], - [ - "delim-token", - ".", - 13517, - 13517, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-5", - 13518, - 13528, - { - "value": "offset-md-5" - } - ], - [ - "{-token", - "{", - 13529, - 13529, - null - ], - [ - "ident-token", - "margin-left", - 13530, - 13540, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13541, - 13541, - null - ], - [ - "percentage-token", - "41.66666667%", - 13542, - 13553, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 13554, - 13554, - null - ], - [ - "delim-token", - ".", - 13555, - 13555, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-6", - 13556, - 13566, - { - "value": "offset-md-6" - } - ], - [ - "{-token", - "{", - 13567, - 13567, - null - ], - [ - "ident-token", - "margin-left", - 13568, - 13578, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13579, - 13579, - null - ], - [ - "percentage-token", - "50%", - 13580, - 13582, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 13583, - 13583, - null - ], - [ - "delim-token", - ".", - 13584, - 13584, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-7", - 13585, - 13595, - { - "value": "offset-md-7" - } - ], - [ - "{-token", - "{", - 13596, - 13596, - null - ], - [ - "ident-token", - "margin-left", - 13597, - 13607, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13608, - 13608, - null - ], - [ - "percentage-token", - "58.33333333%", - 13609, - 13620, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 13621, - 13621, - null - ], - [ - "delim-token", - ".", - 13622, - 13622, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-8", - 13623, - 13633, - { - "value": "offset-md-8" - } - ], - [ - "{-token", - "{", - 13634, - 13634, - null - ], - [ - "ident-token", - "margin-left", - 13635, - 13645, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13646, - 13646, - null - ], - [ - "percentage-token", - "66.66666667%", - 13647, - 13658, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 13659, - 13659, - null - ], - [ - "delim-token", - ".", - 13660, - 13660, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-9", - 13661, - 13671, - { - "value": "offset-md-9" - } - ], - [ - "{-token", - "{", - 13672, - 13672, - null - ], - [ - "ident-token", - "margin-left", - 13673, - 13683, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13684, - 13684, - null - ], - [ - "percentage-token", - "75%", - 13685, - 13687, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 13688, - 13688, - null - ], - [ - "delim-token", - ".", - 13689, - 13689, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-10", - 13690, - 13701, - { - "value": "offset-md-10" - } - ], - [ - "{-token", - "{", - 13702, - 13702, - null - ], - [ - "ident-token", - "margin-left", - 13703, - 13713, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13714, - 13714, - null - ], - [ - "percentage-token", - "83.33333333%", - 13715, - 13726, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 13727, - 13727, - null - ], - [ - "delim-token", - ".", - 13728, - 13728, - { - "value": "." - } - ], - [ - "ident-token", - "offset-md-11", - 13729, - 13740, - { - "value": "offset-md-11" - } - ], - [ - "{-token", - "{", - 13741, - 13741, - null - ], - [ - "ident-token", - "margin-left", - 13742, - 13752, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 13753, - 13753, - null - ], - [ - "percentage-token", - "91.66666667%", - 13754, - 13765, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 13766, - 13766, - null - ], - [ - "delim-token", - ".", - 13767, - 13767, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-0", - 13768, - 13773, - { - "value": "g-md-0" - } - ], - [ - "comma-token", - ",", - 13774, - 13774, - null - ], - [ - "delim-token", - ".", - 13775, - 13775, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-0", - 13776, - 13782, - { - "value": "gx-md-0" - } - ], - [ - "{-token", - "{", - 13783, - 13783, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 13784, - 13796, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 13797, - 13797, - null - ], - [ - "number-token", - "0", - 13798, - 13798, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 13799, - 13799, - null - ], - [ - "delim-token", - ".", - 13800, - 13800, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-0", - 13801, - 13806, - { - "value": "g-md-0" - } - ], - [ - "comma-token", - ",", - 13807, - 13807, - null - ], - [ - "delim-token", - ".", - 13808, - 13808, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-0", - 13809, - 13815, - { - "value": "gy-md-0" - } - ], - [ - "{-token", - "{", - 13816, - 13816, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 13817, - 13829, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 13830, - 13830, - null - ], - [ - "number-token", - "0", - 13831, - 13831, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 13832, - 13832, - null - ], - [ - "delim-token", - ".", - 13833, - 13833, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-1", - 13834, - 13839, - { - "value": "g-md-1" - } - ], - [ - "comma-token", - ",", - 13840, - 13840, - null - ], - [ - "delim-token", - ".", - 13841, - 13841, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-1", - 13842, - 13848, - { - "value": "gx-md-1" - } - ], - [ - "{-token", - "{", - 13849, - 13849, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 13850, - 13862, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 13863, - 13863, - null - ], - [ - "dimension-token", - "0.25rem", - 13864, - 13870, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 13871, - 13871, - null - ], - [ - "delim-token", - ".", - 13872, - 13872, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-1", - 13873, - 13878, - { - "value": "g-md-1" - } - ], - [ - "comma-token", - ",", - 13879, - 13879, - null - ], - [ - "delim-token", - ".", - 13880, - 13880, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-1", - 13881, - 13887, - { - "value": "gy-md-1" - } - ], - [ - "{-token", - "{", - 13888, - 13888, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 13889, - 13901, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 13902, - 13902, - null - ], - [ - "dimension-token", - "0.25rem", - 13903, - 13909, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 13910, - 13910, - null - ], - [ - "delim-token", - ".", - 13911, - 13911, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-2", - 13912, - 13917, - { - "value": "g-md-2" - } - ], - [ - "comma-token", - ",", - 13918, - 13918, - null - ], - [ - "delim-token", - ".", - 13919, - 13919, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-2", - 13920, - 13926, - { - "value": "gx-md-2" - } - ], - [ - "{-token", - "{", - 13927, - 13927, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 13928, - 13940, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 13941, - 13941, - null - ], - [ - "dimension-token", - "0.5rem", - 13942, - 13947, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 13948, - 13948, - null - ], - [ - "delim-token", - ".", - 13949, - 13949, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-2", - 13950, - 13955, - { - "value": "g-md-2" - } - ], - [ - "comma-token", - ",", - 13956, - 13956, - null - ], - [ - "delim-token", - ".", - 13957, - 13957, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-2", - 13958, - 13964, - { - "value": "gy-md-2" - } - ], - [ - "{-token", - "{", - 13965, - 13965, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 13966, - 13978, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 13979, - 13979, - null - ], - [ - "dimension-token", - "0.5rem", - 13980, - 13985, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 13986, - 13986, - null - ], - [ - "delim-token", - ".", - 13987, - 13987, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-3", - 13988, - 13993, - { - "value": "g-md-3" - } - ], - [ - "comma-token", - ",", - 13994, - 13994, - null - ], - [ - "delim-token", - ".", - 13995, - 13995, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-3", - 13996, - 14002, - { - "value": "gx-md-3" - } - ], - [ - "{-token", - "{", - 14003, - 14003, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 14004, - 14016, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 14017, - 14017, - null - ], - [ - "dimension-token", - "1rem", - 14018, - 14021, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14022, - 14022, - null - ], - [ - "delim-token", - ".", - 14023, - 14023, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-3", - 14024, - 14029, - { - "value": "g-md-3" - } - ], - [ - "comma-token", - ",", - 14030, - 14030, - null - ], - [ - "delim-token", - ".", - 14031, - 14031, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-3", - 14032, - 14038, - { - "value": "gy-md-3" - } - ], - [ - "{-token", - "{", - 14039, - 14039, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 14040, - 14052, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 14053, - 14053, - null - ], - [ - "dimension-token", - "1rem", - 14054, - 14057, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14058, - 14058, - null - ], - [ - "delim-token", - ".", - 14059, - 14059, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-4", - 14060, - 14065, - { - "value": "g-md-4" - } - ], - [ - "comma-token", - ",", - 14066, - 14066, - null - ], - [ - "delim-token", - ".", - 14067, - 14067, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-4", - 14068, - 14074, - { - "value": "gx-md-4" - } - ], - [ - "{-token", - "{", - 14075, - 14075, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 14076, - 14088, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 14089, - 14089, - null - ], - [ - "dimension-token", - "1.5rem", - 14090, - 14095, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14096, - 14096, - null - ], - [ - "delim-token", - ".", - 14097, - 14097, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-4", - 14098, - 14103, - { - "value": "g-md-4" - } - ], - [ - "comma-token", - ",", - 14104, - 14104, - null - ], - [ - "delim-token", - ".", - 14105, - 14105, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-4", - 14106, - 14112, - { - "value": "gy-md-4" - } - ], - [ - "{-token", - "{", - 14113, - 14113, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 14114, - 14126, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 14127, - 14127, - null - ], - [ - "dimension-token", - "1.5rem", - 14128, - 14133, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14134, - 14134, - null - ], - [ - "delim-token", - ".", - 14135, - 14135, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-5", - 14136, - 14141, - { - "value": "g-md-5" - } - ], - [ - "comma-token", - ",", - 14142, - 14142, - null - ], - [ - "delim-token", - ".", - 14143, - 14143, - { - "value": "." - } - ], - [ - "ident-token", - "gx-md-5", - 14144, - 14150, - { - "value": "gx-md-5" - } - ], - [ - "{-token", - "{", - 14151, - 14151, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 14152, - 14164, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 14165, - 14165, - null - ], - [ - "dimension-token", - "3rem", - 14166, - 14169, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14170, - 14170, - null - ], - [ - "delim-token", - ".", - 14171, - 14171, - { - "value": "." - } - ], - [ - "ident-token", - "g-md-5", - 14172, - 14177, - { - "value": "g-md-5" - } - ], - [ - "comma-token", - ",", - 14178, - 14178, - null - ], - [ - "delim-token", - ".", - 14179, - 14179, - { - "value": "." - } - ], - [ - "ident-token", - "gy-md-5", - 14180, - 14186, - { - "value": "gy-md-5" - } - ], - [ - "{-token", - "{", - 14187, - 14187, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 14188, - 14200, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 14201, - 14201, - null - ], - [ - "dimension-token", - "3rem", - 14202, - 14205, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 14206, - 14206, - null - ], - [ - "}-token", - "}", - 14207, - 14207, - null - ], - [ - "at-keyword-token", - "@media", - 14208, - 14213, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 14214, - 14214, - null - ], - [ - "(-token", - "(", - 14215, - 14215, - null - ], - [ - "ident-token", - "min-width", - 14216, - 14224, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 14225, - 14225, - null - ], - [ - "dimension-token", - "992px", - 14226, - 14230, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 14231, - 14231, - null - ], - [ - "{-token", - "{", - 14232, - 14232, - null - ], - [ - "delim-token", - ".", - 14233, - 14233, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg", - 14234, - 14239, - { - "value": "col-lg" - } - ], - [ - "{-token", - "{", - 14240, - 14240, - null - ], - [ - "ident-token", - "flex", - 14241, - 14244, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14245, - 14245, - null - ], - [ - "number-token", - "1", - 14246, - 14246, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14247, - 14247, - null - ], - [ - "number-token", - "0", - 14248, - 14248, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14249, - 14249, - null - ], - [ - "percentage-token", - "0%", - 14250, - 14251, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 14252, - 14252, - null - ], - [ - "delim-token", - ".", - 14253, - 14253, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-auto", - 14254, - 14269, - { - "value": "row-cols-lg-auto" - } - ], - [ - "delim-token", - ">", - 14270, - 14270, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14271, - 14271, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14272, - 14272, - null - ], - [ - "ident-token", - "flex", - 14273, - 14276, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14277, - 14277, - null - ], - [ - "number-token", - "0", - 14278, - 14278, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14279, - 14279, - null - ], - [ - "number-token", - "0", - 14280, - 14280, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14281, - 14281, - null - ], - [ - "ident-token", - "auto", - 14282, - 14285, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14286, - 14286, - null - ], - [ - "ident-token", - "width", - 14287, - 14291, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14292, - 14292, - null - ], - [ - "ident-token", - "auto", - 14293, - 14296, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 14297, - 14297, - null - ], - [ - "delim-token", - ".", - 14298, - 14298, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-1", - 14299, - 14311, - { - "value": "row-cols-lg-1" - } - ], - [ - "delim-token", - ">", - 14312, - 14312, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14313, - 14313, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14314, - 14314, - null - ], - [ - "ident-token", - "flex", - 14315, - 14318, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14319, - 14319, - null - ], - [ - "number-token", - "0", - 14320, - 14320, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14321, - 14321, - null - ], - [ - "number-token", - "0", - 14322, - 14322, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14323, - 14323, - null - ], - [ - "ident-token", - "auto", - 14324, - 14327, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14328, - 14328, - null - ], - [ - "ident-token", - "width", - 14329, - 14333, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14334, - 14334, - null - ], - [ - "percentage-token", - "100%", - 14335, - 14338, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 14339, - 14339, - null - ], - [ - "delim-token", - ".", - 14340, - 14340, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-2", - 14341, - 14353, - { - "value": "row-cols-lg-2" - } - ], - [ - "delim-token", - ">", - 14354, - 14354, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14355, - 14355, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14356, - 14356, - null - ], - [ - "ident-token", - "flex", - 14357, - 14360, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14361, - 14361, - null - ], - [ - "number-token", - "0", - 14362, - 14362, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14363, - 14363, - null - ], - [ - "number-token", - "0", - 14364, - 14364, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14365, - 14365, - null - ], - [ - "ident-token", - "auto", - 14366, - 14369, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14370, - 14370, - null - ], - [ - "ident-token", - "width", - 14371, - 14375, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14376, - 14376, - null - ], - [ - "percentage-token", - "50%", - 14377, - 14379, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 14380, - 14380, - null - ], - [ - "delim-token", - ".", - 14381, - 14381, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-3", - 14382, - 14394, - { - "value": "row-cols-lg-3" - } - ], - [ - "delim-token", - ">", - 14395, - 14395, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14396, - 14396, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14397, - 14397, - null - ], - [ - "ident-token", - "flex", - 14398, - 14401, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14402, - 14402, - null - ], - [ - "number-token", - "0", - 14403, - 14403, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14404, - 14404, - null - ], - [ - "number-token", - "0", - 14405, - 14405, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14406, - 14406, - null - ], - [ - "ident-token", - "auto", - 14407, - 14410, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14411, - 14411, - null - ], - [ - "ident-token", - "width", - 14412, - 14416, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14417, - 14417, - null - ], - [ - "percentage-token", - "33.3333333333%", - 14418, - 14431, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 14432, - 14432, - null - ], - [ - "delim-token", - ".", - 14433, - 14433, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-4", - 14434, - 14446, - { - "value": "row-cols-lg-4" - } - ], - [ - "delim-token", - ">", - 14447, - 14447, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14448, - 14448, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14449, - 14449, - null - ], - [ - "ident-token", - "flex", - 14450, - 14453, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14454, - 14454, - null - ], - [ - "number-token", - "0", - 14455, - 14455, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14456, - 14456, - null - ], - [ - "number-token", - "0", - 14457, - 14457, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14458, - 14458, - null - ], - [ - "ident-token", - "auto", - 14459, - 14462, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14463, - 14463, - null - ], - [ - "ident-token", - "width", - 14464, - 14468, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14469, - 14469, - null - ], - [ - "percentage-token", - "25%", - 14470, - 14472, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 14473, - 14473, - null - ], - [ - "delim-token", - ".", - 14474, - 14474, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-5", - 14475, - 14487, - { - "value": "row-cols-lg-5" - } - ], - [ - "delim-token", - ">", - 14488, - 14488, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14489, - 14489, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14490, - 14490, - null - ], - [ - "ident-token", - "flex", - 14491, - 14494, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14495, - 14495, - null - ], - [ - "number-token", - "0", - 14496, - 14496, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14497, - 14497, - null - ], - [ - "number-token", - "0", - 14498, - 14498, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14499, - 14499, - null - ], - [ - "ident-token", - "auto", - 14500, - 14503, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14504, - 14504, - null - ], - [ - "ident-token", - "width", - 14505, - 14509, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14510, - 14510, - null - ], - [ - "percentage-token", - "20%", - 14511, - 14513, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 14514, - 14514, - null - ], - [ - "delim-token", - ".", - 14515, - 14515, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-lg-6", - 14516, - 14528, - { - "value": "row-cols-lg-6" - } - ], - [ - "delim-token", - ">", - 14529, - 14529, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 14530, - 14530, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 14531, - 14531, - null - ], - [ - "ident-token", - "flex", - 14532, - 14535, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14536, - 14536, - null - ], - [ - "number-token", - "0", - 14537, - 14537, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14538, - 14538, - null - ], - [ - "number-token", - "0", - 14539, - 14539, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14540, - 14540, - null - ], - [ - "ident-token", - "auto", - 14541, - 14544, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14545, - 14545, - null - ], - [ - "ident-token", - "width", - 14546, - 14550, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14551, - 14551, - null - ], - [ - "percentage-token", - "16.6666666667%", - 14552, - 14565, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 14566, - 14566, - null - ], - [ - "delim-token", - ".", - 14567, - 14567, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-auto", - 14568, - 14578, - { - "value": "col-lg-auto" - } - ], - [ - "{-token", - "{", - 14579, - 14579, - null - ], - [ - "ident-token", - "flex", - 14580, - 14583, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14584, - 14584, - null - ], - [ - "number-token", - "0", - 14585, - 14585, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14586, - 14586, - null - ], - [ - "number-token", - "0", - 14587, - 14587, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14588, - 14588, - null - ], - [ - "ident-token", - "auto", - 14589, - 14592, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14593, - 14593, - null - ], - [ - "ident-token", - "width", - 14594, - 14598, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14599, - 14599, - null - ], - [ - "ident-token", - "auto", - 14600, - 14603, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 14604, - 14604, - null - ], - [ - "delim-token", - ".", - 14605, - 14605, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-1", - 14606, - 14613, - { - "value": "col-lg-1" - } - ], - [ - "{-token", - "{", - 14614, - 14614, - null - ], - [ - "ident-token", - "flex", - 14615, - 14618, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14619, - 14619, - null - ], - [ - "number-token", - "0", - 14620, - 14620, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14621, - 14621, - null - ], - [ - "number-token", - "0", - 14622, - 14622, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14623, - 14623, - null - ], - [ - "ident-token", - "auto", - 14624, - 14627, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14628, - 14628, - null - ], - [ - "ident-token", - "width", - 14629, - 14633, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14634, - 14634, - null - ], - [ - "percentage-token", - "8.33333333%", - 14635, - 14645, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 14646, - 14646, - null - ], - [ - "delim-token", - ".", - 14647, - 14647, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-2", - 14648, - 14655, - { - "value": "col-lg-2" - } - ], - [ - "{-token", - "{", - 14656, - 14656, - null - ], - [ - "ident-token", - "flex", - 14657, - 14660, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14661, - 14661, - null - ], - [ - "number-token", - "0", - 14662, - 14662, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14663, - 14663, - null - ], - [ - "number-token", - "0", - 14664, - 14664, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14665, - 14665, - null - ], - [ - "ident-token", - "auto", - 14666, - 14669, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14670, - 14670, - null - ], - [ - "ident-token", - "width", - 14671, - 14675, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14676, - 14676, - null - ], - [ - "percentage-token", - "16.66666667%", - 14677, - 14688, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 14689, - 14689, - null - ], - [ - "delim-token", - ".", - 14690, - 14690, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-3", - 14691, - 14698, - { - "value": "col-lg-3" - } - ], - [ - "{-token", - "{", - 14699, - 14699, - null - ], - [ - "ident-token", - "flex", - 14700, - 14703, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14704, - 14704, - null - ], - [ - "number-token", - "0", - 14705, - 14705, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14706, - 14706, - null - ], - [ - "number-token", - "0", - 14707, - 14707, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14708, - 14708, - null - ], - [ - "ident-token", - "auto", - 14709, - 14712, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14713, - 14713, - null - ], - [ - "ident-token", - "width", - 14714, - 14718, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14719, - 14719, - null - ], - [ - "percentage-token", - "25%", - 14720, - 14722, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 14723, - 14723, - null - ], - [ - "delim-token", - ".", - 14724, - 14724, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-4", - 14725, - 14732, - { - "value": "col-lg-4" - } - ], - [ - "{-token", - "{", - 14733, - 14733, - null - ], - [ - "ident-token", - "flex", - 14734, - 14737, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14738, - 14738, - null - ], - [ - "number-token", - "0", - 14739, - 14739, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14740, - 14740, - null - ], - [ - "number-token", - "0", - 14741, - 14741, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14742, - 14742, - null - ], - [ - "ident-token", - "auto", - 14743, - 14746, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14747, - 14747, - null - ], - [ - "ident-token", - "width", - 14748, - 14752, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14753, - 14753, - null - ], - [ - "percentage-token", - "33.33333333%", - 14754, - 14765, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 14766, - 14766, - null - ], - [ - "delim-token", - ".", - 14767, - 14767, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-5", - 14768, - 14775, - { - "value": "col-lg-5" - } - ], - [ - "{-token", - "{", - 14776, - 14776, - null - ], - [ - "ident-token", - "flex", - 14777, - 14780, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14781, - 14781, - null - ], - [ - "number-token", - "0", - 14782, - 14782, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14783, - 14783, - null - ], - [ - "number-token", - "0", - 14784, - 14784, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14785, - 14785, - null - ], - [ - "ident-token", - "auto", - 14786, - 14789, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14790, - 14790, - null - ], - [ - "ident-token", - "width", - 14791, - 14795, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14796, - 14796, - null - ], - [ - "percentage-token", - "41.66666667%", - 14797, - 14808, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 14809, - 14809, - null - ], - [ - "delim-token", - ".", - 14810, - 14810, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-6", - 14811, - 14818, - { - "value": "col-lg-6" - } - ], - [ - "{-token", - "{", - 14819, - 14819, - null - ], - [ - "ident-token", - "flex", - 14820, - 14823, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14824, - 14824, - null - ], - [ - "number-token", - "0", - 14825, - 14825, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14826, - 14826, - null - ], - [ - "number-token", - "0", - 14827, - 14827, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14828, - 14828, - null - ], - [ - "ident-token", - "auto", - 14829, - 14832, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14833, - 14833, - null - ], - [ - "ident-token", - "width", - 14834, - 14838, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14839, - 14839, - null - ], - [ - "percentage-token", - "50%", - 14840, - 14842, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 14843, - 14843, - null - ], - [ - "delim-token", - ".", - 14844, - 14844, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-7", - 14845, - 14852, - { - "value": "col-lg-7" - } - ], - [ - "{-token", - "{", - 14853, - 14853, - null - ], - [ - "ident-token", - "flex", - 14854, - 14857, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14858, - 14858, - null - ], - [ - "number-token", - "0", - 14859, - 14859, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14860, - 14860, - null - ], - [ - "number-token", - "0", - 14861, - 14861, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14862, - 14862, - null - ], - [ - "ident-token", - "auto", - 14863, - 14866, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14867, - 14867, - null - ], - [ - "ident-token", - "width", - 14868, - 14872, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14873, - 14873, - null - ], - [ - "percentage-token", - "58.33333333%", - 14874, - 14885, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 14886, - 14886, - null - ], - [ - "delim-token", - ".", - 14887, - 14887, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-8", - 14888, - 14895, - { - "value": "col-lg-8" - } - ], - [ - "{-token", - "{", - 14896, - 14896, - null - ], - [ - "ident-token", - "flex", - 14897, - 14900, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14901, - 14901, - null - ], - [ - "number-token", - "0", - 14902, - 14902, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14903, - 14903, - null - ], - [ - "number-token", - "0", - 14904, - 14904, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14905, - 14905, - null - ], - [ - "ident-token", - "auto", - 14906, - 14909, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14910, - 14910, - null - ], - [ - "ident-token", - "width", - 14911, - 14915, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14916, - 14916, - null - ], - [ - "percentage-token", - "66.66666667%", - 14917, - 14928, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 14929, - 14929, - null - ], - [ - "delim-token", - ".", - 14930, - 14930, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-9", - 14931, - 14938, - { - "value": "col-lg-9" - } - ], - [ - "{-token", - "{", - 14939, - 14939, - null - ], - [ - "ident-token", - "flex", - 14940, - 14943, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14944, - 14944, - null - ], - [ - "number-token", - "0", - 14945, - 14945, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14946, - 14946, - null - ], - [ - "number-token", - "0", - 14947, - 14947, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14948, - 14948, - null - ], - [ - "ident-token", - "auto", - 14949, - 14952, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14953, - 14953, - null - ], - [ - "ident-token", - "width", - 14954, - 14958, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14959, - 14959, - null - ], - [ - "percentage-token", - "75%", - 14960, - 14962, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 14963, - 14963, - null - ], - [ - "delim-token", - ".", - 14964, - 14964, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-10", - 14965, - 14973, - { - "value": "col-lg-10" - } - ], - [ - "{-token", - "{", - 14974, - 14974, - null - ], - [ - "ident-token", - "flex", - 14975, - 14978, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 14979, - 14979, - null - ], - [ - "number-token", - "0", - 14980, - 14980, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14981, - 14981, - null - ], - [ - "number-token", - "0", - 14982, - 14982, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 14983, - 14983, - null - ], - [ - "ident-token", - "auto", - 14984, - 14987, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 14988, - 14988, - null - ], - [ - "ident-token", - "width", - 14989, - 14993, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 14994, - 14994, - null - ], - [ - "percentage-token", - "83.33333333%", - 14995, - 15006, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 15007, - 15007, - null - ], - [ - "delim-token", - ".", - 15008, - 15008, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-11", - 15009, - 15017, - { - "value": "col-lg-11" - } - ], - [ - "{-token", - "{", - 15018, - 15018, - null - ], - [ - "ident-token", - "flex", - 15019, - 15022, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 15023, - 15023, - null - ], - [ - "number-token", - "0", - 15024, - 15024, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15025, - 15025, - null - ], - [ - "number-token", - "0", - 15026, - 15026, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15027, - 15027, - null - ], - [ - "ident-token", - "auto", - 15028, - 15031, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 15032, - 15032, - null - ], - [ - "ident-token", - "width", - 15033, - 15037, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 15038, - 15038, - null - ], - [ - "percentage-token", - "91.66666667%", - 15039, - 15050, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 15051, - 15051, - null - ], - [ - "delim-token", - ".", - 15052, - 15052, - { - "value": "." - } - ], - [ - "ident-token", - "col-lg-12", - 15053, - 15061, - { - "value": "col-lg-12" - } - ], - [ - "{-token", - "{", - 15062, - 15062, - null - ], - [ - "ident-token", - "flex", - 15063, - 15066, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 15067, - 15067, - null - ], - [ - "number-token", - "0", - 15068, - 15068, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15069, - 15069, - null - ], - [ - "number-token", - "0", - 15070, - 15070, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15071, - 15071, - null - ], - [ - "ident-token", - "auto", - 15072, - 15075, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 15076, - 15076, - null - ], - [ - "ident-token", - "width", - 15077, - 15081, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 15082, - 15082, - null - ], - [ - "percentage-token", - "100%", - 15083, - 15086, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 15087, - 15087, - null - ], - [ - "delim-token", - ".", - 15088, - 15088, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-0", - 15089, - 15099, - { - "value": "offset-lg-0" - } - ], - [ - "{-token", - "{", - 15100, - 15100, - null - ], - [ - "ident-token", - "margin-left", - 15101, - 15111, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15112, - 15112, - null - ], - [ - "number-token", - "0", - 15113, - 15113, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 15114, - 15114, - null - ], - [ - "delim-token", - ".", - 15115, - 15115, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-1", - 15116, - 15126, - { - "value": "offset-lg-1" - } - ], - [ - "{-token", - "{", - 15127, - 15127, - null - ], - [ - "ident-token", - "margin-left", - 15128, - 15138, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15139, - 15139, - null - ], - [ - "percentage-token", - "8.33333333%", - 15140, - 15150, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 15151, - 15151, - null - ], - [ - "delim-token", - ".", - 15152, - 15152, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-2", - 15153, - 15163, - { - "value": "offset-lg-2" - } - ], - [ - "{-token", - "{", - 15164, - 15164, - null - ], - [ - "ident-token", - "margin-left", - 15165, - 15175, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15176, - 15176, - null - ], - [ - "percentage-token", - "16.66666667%", - 15177, - 15188, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 15189, - 15189, - null - ], - [ - "delim-token", - ".", - 15190, - 15190, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-3", - 15191, - 15201, - { - "value": "offset-lg-3" - } - ], - [ - "{-token", - "{", - 15202, - 15202, - null - ], - [ - "ident-token", - "margin-left", - 15203, - 15213, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15214, - 15214, - null - ], - [ - "percentage-token", - "25%", - 15215, - 15217, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 15218, - 15218, - null - ], - [ - "delim-token", - ".", - 15219, - 15219, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-4", - 15220, - 15230, - { - "value": "offset-lg-4" - } - ], - [ - "{-token", - "{", - 15231, - 15231, - null - ], - [ - "ident-token", - "margin-left", - 15232, - 15242, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15243, - 15243, - null - ], - [ - "percentage-token", - "33.33333333%", - 15244, - 15255, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 15256, - 15256, - null - ], - [ - "delim-token", - ".", - 15257, - 15257, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-5", - 15258, - 15268, - { - "value": "offset-lg-5" - } - ], - [ - "{-token", - "{", - 15269, - 15269, - null - ], - [ - "ident-token", - "margin-left", - 15270, - 15280, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15281, - 15281, - null - ], - [ - "percentage-token", - "41.66666667%", - 15282, - 15293, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 15294, - 15294, - null - ], - [ - "delim-token", - ".", - 15295, - 15295, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-6", - 15296, - 15306, - { - "value": "offset-lg-6" - } - ], - [ - "{-token", - "{", - 15307, - 15307, - null - ], - [ - "ident-token", - "margin-left", - 15308, - 15318, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15319, - 15319, - null - ], - [ - "percentage-token", - "50%", - 15320, - 15322, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 15323, - 15323, - null - ], - [ - "delim-token", - ".", - 15324, - 15324, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-7", - 15325, - 15335, - { - "value": "offset-lg-7" - } - ], - [ - "{-token", - "{", - 15336, - 15336, - null - ], - [ - "ident-token", - "margin-left", - 15337, - 15347, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15348, - 15348, - null - ], - [ - "percentage-token", - "58.33333333%", - 15349, - 15360, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 15361, - 15361, - null - ], - [ - "delim-token", - ".", - 15362, - 15362, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-8", - 15363, - 15373, - { - "value": "offset-lg-8" - } - ], - [ - "{-token", - "{", - 15374, - 15374, - null - ], - [ - "ident-token", - "margin-left", - 15375, - 15385, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15386, - 15386, - null - ], - [ - "percentage-token", - "66.66666667%", - 15387, - 15398, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 15399, - 15399, - null - ], - [ - "delim-token", - ".", - 15400, - 15400, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-9", - 15401, - 15411, - { - "value": "offset-lg-9" - } - ], - [ - "{-token", - "{", - 15412, - 15412, - null - ], - [ - "ident-token", - "margin-left", - 15413, - 15423, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15424, - 15424, - null - ], - [ - "percentage-token", - "75%", - 15425, - 15427, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 15428, - 15428, - null - ], - [ - "delim-token", - ".", - 15429, - 15429, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-10", - 15430, - 15441, - { - "value": "offset-lg-10" - } - ], - [ - "{-token", - "{", - 15442, - 15442, - null - ], - [ - "ident-token", - "margin-left", - 15443, - 15453, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15454, - 15454, - null - ], - [ - "percentage-token", - "83.33333333%", - 15455, - 15466, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 15467, - 15467, - null - ], - [ - "delim-token", - ".", - 15468, - 15468, - { - "value": "." - } - ], - [ - "ident-token", - "offset-lg-11", - 15469, - 15480, - { - "value": "offset-lg-11" - } - ], - [ - "{-token", - "{", - 15481, - 15481, - null - ], - [ - "ident-token", - "margin-left", - 15482, - 15492, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 15493, - 15493, - null - ], - [ - "percentage-token", - "91.66666667%", - 15494, - 15505, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 15506, - 15506, - null - ], - [ - "delim-token", - ".", - 15507, - 15507, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-0", - 15508, - 15513, - { - "value": "g-lg-0" - } - ], - [ - "comma-token", - ",", - 15514, - 15514, - null - ], - [ - "delim-token", - ".", - 15515, - 15515, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-0", - 15516, - 15522, - { - "value": "gx-lg-0" - } - ], - [ - "{-token", - "{", - 15523, - 15523, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15524, - 15536, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15537, - 15537, - null - ], - [ - "number-token", - "0", - 15538, - 15538, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 15539, - 15539, - null - ], - [ - "delim-token", - ".", - 15540, - 15540, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-0", - 15541, - 15546, - { - "value": "g-lg-0" - } - ], - [ - "comma-token", - ",", - 15547, - 15547, - null - ], - [ - "delim-token", - ".", - 15548, - 15548, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-0", - 15549, - 15555, - { - "value": "gy-lg-0" - } - ], - [ - "{-token", - "{", - 15556, - 15556, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15557, - 15569, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15570, - 15570, - null - ], - [ - "number-token", - "0", - 15571, - 15571, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 15572, - 15572, - null - ], - [ - "delim-token", - ".", - 15573, - 15573, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-1", - 15574, - 15579, - { - "value": "g-lg-1" - } - ], - [ - "comma-token", - ",", - 15580, - 15580, - null - ], - [ - "delim-token", - ".", - 15581, - 15581, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-1", - 15582, - 15588, - { - "value": "gx-lg-1" - } - ], - [ - "{-token", - "{", - 15589, - 15589, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15590, - 15602, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15603, - 15603, - null - ], - [ - "dimension-token", - "0.25rem", - 15604, - 15610, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15611, - 15611, - null - ], - [ - "delim-token", - ".", - 15612, - 15612, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-1", - 15613, - 15618, - { - "value": "g-lg-1" - } - ], - [ - "comma-token", - ",", - 15619, - 15619, - null - ], - [ - "delim-token", - ".", - 15620, - 15620, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-1", - 15621, - 15627, - { - "value": "gy-lg-1" - } - ], - [ - "{-token", - "{", - 15628, - 15628, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15629, - 15641, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15642, - 15642, - null - ], - [ - "dimension-token", - "0.25rem", - 15643, - 15649, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15650, - 15650, - null - ], - [ - "delim-token", - ".", - 15651, - 15651, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-2", - 15652, - 15657, - { - "value": "g-lg-2" - } - ], - [ - "comma-token", - ",", - 15658, - 15658, - null - ], - [ - "delim-token", - ".", - 15659, - 15659, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-2", - 15660, - 15666, - { - "value": "gx-lg-2" - } - ], - [ - "{-token", - "{", - 15667, - 15667, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15668, - 15680, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15681, - 15681, - null - ], - [ - "dimension-token", - "0.5rem", - 15682, - 15687, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15688, - 15688, - null - ], - [ - "delim-token", - ".", - 15689, - 15689, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-2", - 15690, - 15695, - { - "value": "g-lg-2" - } - ], - [ - "comma-token", - ",", - 15696, - 15696, - null - ], - [ - "delim-token", - ".", - 15697, - 15697, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-2", - 15698, - 15704, - { - "value": "gy-lg-2" - } - ], - [ - "{-token", - "{", - 15705, - 15705, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15706, - 15718, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15719, - 15719, - null - ], - [ - "dimension-token", - "0.5rem", - 15720, - 15725, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15726, - 15726, - null - ], - [ - "delim-token", - ".", - 15727, - 15727, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-3", - 15728, - 15733, - { - "value": "g-lg-3" - } - ], - [ - "comma-token", - ",", - 15734, - 15734, - null - ], - [ - "delim-token", - ".", - 15735, - 15735, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-3", - 15736, - 15742, - { - "value": "gx-lg-3" - } - ], - [ - "{-token", - "{", - 15743, - 15743, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15744, - 15756, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15757, - 15757, - null - ], - [ - "dimension-token", - "1rem", - 15758, - 15761, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15762, - 15762, - null - ], - [ - "delim-token", - ".", - 15763, - 15763, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-3", - 15764, - 15769, - { - "value": "g-lg-3" - } - ], - [ - "comma-token", - ",", - 15770, - 15770, - null - ], - [ - "delim-token", - ".", - 15771, - 15771, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-3", - 15772, - 15778, - { - "value": "gy-lg-3" - } - ], - [ - "{-token", - "{", - 15779, - 15779, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15780, - 15792, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15793, - 15793, - null - ], - [ - "dimension-token", - "1rem", - 15794, - 15797, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15798, - 15798, - null - ], - [ - "delim-token", - ".", - 15799, - 15799, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-4", - 15800, - 15805, - { - "value": "g-lg-4" - } - ], - [ - "comma-token", - ",", - 15806, - 15806, - null - ], - [ - "delim-token", - ".", - 15807, - 15807, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-4", - 15808, - 15814, - { - "value": "gx-lg-4" - } - ], - [ - "{-token", - "{", - 15815, - 15815, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15816, - 15828, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15829, - 15829, - null - ], - [ - "dimension-token", - "1.5rem", - 15830, - 15835, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15836, - 15836, - null - ], - [ - "delim-token", - ".", - 15837, - 15837, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-4", - 15838, - 15843, - { - "value": "g-lg-4" - } - ], - [ - "comma-token", - ",", - 15844, - 15844, - null - ], - [ - "delim-token", - ".", - 15845, - 15845, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-4", - 15846, - 15852, - { - "value": "gy-lg-4" - } - ], - [ - "{-token", - "{", - 15853, - 15853, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15854, - 15866, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15867, - 15867, - null - ], - [ - "dimension-token", - "1.5rem", - 15868, - 15873, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15874, - 15874, - null - ], - [ - "delim-token", - ".", - 15875, - 15875, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-5", - 15876, - 15881, - { - "value": "g-lg-5" - } - ], - [ - "comma-token", - ",", - 15882, - 15882, - null - ], - [ - "delim-token", - ".", - 15883, - 15883, - { - "value": "." - } - ], - [ - "ident-token", - "gx-lg-5", - 15884, - 15890, - { - "value": "gx-lg-5" - } - ], - [ - "{-token", - "{", - 15891, - 15891, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 15892, - 15904, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 15905, - 15905, - null - ], - [ - "dimension-token", - "3rem", - 15906, - 15909, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15910, - 15910, - null - ], - [ - "delim-token", - ".", - 15911, - 15911, - { - "value": "." - } - ], - [ - "ident-token", - "g-lg-5", - 15912, - 15917, - { - "value": "g-lg-5" - } - ], - [ - "comma-token", - ",", - 15918, - 15918, - null - ], - [ - "delim-token", - ".", - 15919, - 15919, - { - "value": "." - } - ], - [ - "ident-token", - "gy-lg-5", - 15920, - 15926, - { - "value": "gy-lg-5" - } - ], - [ - "{-token", - "{", - 15927, - 15927, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 15928, - 15940, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 15941, - 15941, - null - ], - [ - "dimension-token", - "3rem", - 15942, - 15945, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 15946, - 15946, - null - ], - [ - "}-token", - "}", - 15947, - 15947, - null - ], - [ - "at-keyword-token", - "@media", - 15948, - 15953, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 15954, - 15954, - null - ], - [ - "(-token", - "(", - 15955, - 15955, - null - ], - [ - "ident-token", - "min-width", - 15956, - 15964, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 15965, - 15965, - null - ], - [ - "dimension-token", - "1200px", - 15966, - 15971, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 15972, - 15972, - null - ], - [ - "{-token", - "{", - 15973, - 15973, - null - ], - [ - "delim-token", - ".", - 15974, - 15974, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl", - 15975, - 15980, - { - "value": "col-xl" - } - ], - [ - "{-token", - "{", - 15981, - 15981, - null - ], - [ - "ident-token", - "flex", - 15982, - 15985, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 15986, - 15986, - null - ], - [ - "number-token", - "1", - 15987, - 15987, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15988, - 15988, - null - ], - [ - "number-token", - "0", - 15989, - 15989, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 15990, - 15990, - null - ], - [ - "percentage-token", - "0%", - 15991, - 15992, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 15993, - 15993, - null - ], - [ - "delim-token", - ".", - 15994, - 15994, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-auto", - 15995, - 16010, - { - "value": "row-cols-xl-auto" - } - ], - [ - "delim-token", - ">", - 16011, - 16011, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16012, - 16012, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16013, - 16013, - null - ], - [ - "ident-token", - "flex", - 16014, - 16017, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16018, - 16018, - null - ], - [ - "number-token", - "0", - 16019, - 16019, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16020, - 16020, - null - ], - [ - "number-token", - "0", - 16021, - 16021, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16022, - 16022, - null - ], - [ - "ident-token", - "auto", - 16023, - 16026, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16027, - 16027, - null - ], - [ - "ident-token", - "width", - 16028, - 16032, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16033, - 16033, - null - ], - [ - "ident-token", - "auto", - 16034, - 16037, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 16038, - 16038, - null - ], - [ - "delim-token", - ".", - 16039, - 16039, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-1", - 16040, - 16052, - { - "value": "row-cols-xl-1" - } - ], - [ - "delim-token", - ">", - 16053, - 16053, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16054, - 16054, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16055, - 16055, - null - ], - [ - "ident-token", - "flex", - 16056, - 16059, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16060, - 16060, - null - ], - [ - "number-token", - "0", - 16061, - 16061, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16062, - 16062, - null - ], - [ - "number-token", - "0", - 16063, - 16063, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16064, - 16064, - null - ], - [ - "ident-token", - "auto", - 16065, - 16068, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16069, - 16069, - null - ], - [ - "ident-token", - "width", - 16070, - 16074, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16075, - 16075, - null - ], - [ - "percentage-token", - "100%", - 16076, - 16079, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 16080, - 16080, - null - ], - [ - "delim-token", - ".", - 16081, - 16081, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-2", - 16082, - 16094, - { - "value": "row-cols-xl-2" - } - ], - [ - "delim-token", - ">", - 16095, - 16095, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16096, - 16096, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16097, - 16097, - null - ], - [ - "ident-token", - "flex", - 16098, - 16101, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16102, - 16102, - null - ], - [ - "number-token", - "0", - 16103, - 16103, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16104, - 16104, - null - ], - [ - "number-token", - "0", - 16105, - 16105, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16106, - 16106, - null - ], - [ - "ident-token", - "auto", - 16107, - 16110, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16111, - 16111, - null - ], - [ - "ident-token", - "width", - 16112, - 16116, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16117, - 16117, - null - ], - [ - "percentage-token", - "50%", - 16118, - 16120, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 16121, - 16121, - null - ], - [ - "delim-token", - ".", - 16122, - 16122, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-3", - 16123, - 16135, - { - "value": "row-cols-xl-3" - } - ], - [ - "delim-token", - ">", - 16136, - 16136, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16137, - 16137, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16138, - 16138, - null - ], - [ - "ident-token", - "flex", - 16139, - 16142, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16143, - 16143, - null - ], - [ - "number-token", - "0", - 16144, - 16144, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16145, - 16145, - null - ], - [ - "number-token", - "0", - 16146, - 16146, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16147, - 16147, - null - ], - [ - "ident-token", - "auto", - 16148, - 16151, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16152, - 16152, - null - ], - [ - "ident-token", - "width", - 16153, - 16157, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16158, - 16158, - null - ], - [ - "percentage-token", - "33.3333333333%", - 16159, - 16172, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 16173, - 16173, - null - ], - [ - "delim-token", - ".", - 16174, - 16174, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-4", - 16175, - 16187, - { - "value": "row-cols-xl-4" - } - ], - [ - "delim-token", - ">", - 16188, - 16188, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16189, - 16189, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16190, - 16190, - null - ], - [ - "ident-token", - "flex", - 16191, - 16194, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16195, - 16195, - null - ], - [ - "number-token", - "0", - 16196, - 16196, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16197, - 16197, - null - ], - [ - "number-token", - "0", - 16198, - 16198, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16199, - 16199, - null - ], - [ - "ident-token", - "auto", - 16200, - 16203, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16204, - 16204, - null - ], - [ - "ident-token", - "width", - 16205, - 16209, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16210, - 16210, - null - ], - [ - "percentage-token", - "25%", - 16211, - 16213, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 16214, - 16214, - null - ], - [ - "delim-token", - ".", - 16215, - 16215, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-5", - 16216, - 16228, - { - "value": "row-cols-xl-5" - } - ], - [ - "delim-token", - ">", - 16229, - 16229, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16230, - 16230, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16231, - 16231, - null - ], - [ - "ident-token", - "flex", - 16232, - 16235, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16236, - 16236, - null - ], - [ - "number-token", - "0", - 16237, - 16237, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16238, - 16238, - null - ], - [ - "number-token", - "0", - 16239, - 16239, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16240, - 16240, - null - ], - [ - "ident-token", - "auto", - 16241, - 16244, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16245, - 16245, - null - ], - [ - "ident-token", - "width", - 16246, - 16250, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16251, - 16251, - null - ], - [ - "percentage-token", - "20%", - 16252, - 16254, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 16255, - 16255, - null - ], - [ - "delim-token", - ".", - 16256, - 16256, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xl-6", - 16257, - 16269, - { - "value": "row-cols-xl-6" - } - ], - [ - "delim-token", - ">", - 16270, - 16270, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 16271, - 16271, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 16272, - 16272, - null - ], - [ - "ident-token", - "flex", - 16273, - 16276, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16277, - 16277, - null - ], - [ - "number-token", - "0", - 16278, - 16278, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16279, - 16279, - null - ], - [ - "number-token", - "0", - 16280, - 16280, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16281, - 16281, - null - ], - [ - "ident-token", - "auto", - 16282, - 16285, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16286, - 16286, - null - ], - [ - "ident-token", - "width", - 16287, - 16291, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16292, - 16292, - null - ], - [ - "percentage-token", - "16.6666666667%", - 16293, - 16306, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 16307, - 16307, - null - ], - [ - "delim-token", - ".", - 16308, - 16308, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-auto", - 16309, - 16319, - { - "value": "col-xl-auto" - } - ], - [ - "{-token", - "{", - 16320, - 16320, - null - ], - [ - "ident-token", - "flex", - 16321, - 16324, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16325, - 16325, - null - ], - [ - "number-token", - "0", - 16326, - 16326, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16327, - 16327, - null - ], - [ - "number-token", - "0", - 16328, - 16328, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16329, - 16329, - null - ], - [ - "ident-token", - "auto", - 16330, - 16333, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16334, - 16334, - null - ], - [ - "ident-token", - "width", - 16335, - 16339, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16340, - 16340, - null - ], - [ - "ident-token", - "auto", - 16341, - 16344, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 16345, - 16345, - null - ], - [ - "delim-token", - ".", - 16346, - 16346, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-1", - 16347, - 16354, - { - "value": "col-xl-1" - } - ], - [ - "{-token", - "{", - 16355, - 16355, - null - ], - [ - "ident-token", - "flex", - 16356, - 16359, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16360, - 16360, - null - ], - [ - "number-token", - "0", - 16361, - 16361, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16362, - 16362, - null - ], - [ - "number-token", - "0", - 16363, - 16363, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16364, - 16364, - null - ], - [ - "ident-token", - "auto", - 16365, - 16368, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16369, - 16369, - null - ], - [ - "ident-token", - "width", - 16370, - 16374, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16375, - 16375, - null - ], - [ - "percentage-token", - "8.33333333%", - 16376, - 16386, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 16387, - 16387, - null - ], - [ - "delim-token", - ".", - 16388, - 16388, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-2", - 16389, - 16396, - { - "value": "col-xl-2" - } - ], - [ - "{-token", - "{", - 16397, - 16397, - null - ], - [ - "ident-token", - "flex", - 16398, - 16401, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16402, - 16402, - null - ], - [ - "number-token", - "0", - 16403, - 16403, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16404, - 16404, - null - ], - [ - "number-token", - "0", - 16405, - 16405, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16406, - 16406, - null - ], - [ - "ident-token", - "auto", - 16407, - 16410, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16411, - 16411, - null - ], - [ - "ident-token", - "width", - 16412, - 16416, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16417, - 16417, - null - ], - [ - "percentage-token", - "16.66666667%", - 16418, - 16429, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 16430, - 16430, - null - ], - [ - "delim-token", - ".", - 16431, - 16431, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-3", - 16432, - 16439, - { - "value": "col-xl-3" - } - ], - [ - "{-token", - "{", - 16440, - 16440, - null - ], - [ - "ident-token", - "flex", - 16441, - 16444, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16445, - 16445, - null - ], - [ - "number-token", - "0", - 16446, - 16446, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16447, - 16447, - null - ], - [ - "number-token", - "0", - 16448, - 16448, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16449, - 16449, - null - ], - [ - "ident-token", - "auto", - 16450, - 16453, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16454, - 16454, - null - ], - [ - "ident-token", - "width", - 16455, - 16459, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16460, - 16460, - null - ], - [ - "percentage-token", - "25%", - 16461, - 16463, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 16464, - 16464, - null - ], - [ - "delim-token", - ".", - 16465, - 16465, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-4", - 16466, - 16473, - { - "value": "col-xl-4" - } - ], - [ - "{-token", - "{", - 16474, - 16474, - null - ], - [ - "ident-token", - "flex", - 16475, - 16478, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16479, - 16479, - null - ], - [ - "number-token", - "0", - 16480, - 16480, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16481, - 16481, - null - ], - [ - "number-token", - "0", - 16482, - 16482, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16483, - 16483, - null - ], - [ - "ident-token", - "auto", - 16484, - 16487, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16488, - 16488, - null - ], - [ - "ident-token", - "width", - 16489, - 16493, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16494, - 16494, - null - ], - [ - "percentage-token", - "33.33333333%", - 16495, - 16506, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 16507, - 16507, - null - ], - [ - "delim-token", - ".", - 16508, - 16508, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-5", - 16509, - 16516, - { - "value": "col-xl-5" - } - ], - [ - "{-token", - "{", - 16517, - 16517, - null - ], - [ - "ident-token", - "flex", - 16518, - 16521, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16522, - 16522, - null - ], - [ - "number-token", - "0", - 16523, - 16523, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16524, - 16524, - null - ], - [ - "number-token", - "0", - 16525, - 16525, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16526, - 16526, - null - ], - [ - "ident-token", - "auto", - 16527, - 16530, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16531, - 16531, - null - ], - [ - "ident-token", - "width", - 16532, - 16536, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16537, - 16537, - null - ], - [ - "percentage-token", - "41.66666667%", - 16538, - 16549, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 16550, - 16550, - null - ], - [ - "delim-token", - ".", - 16551, - 16551, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-6", - 16552, - 16559, - { - "value": "col-xl-6" - } - ], - [ - "{-token", - "{", - 16560, - 16560, - null - ], - [ - "ident-token", - "flex", - 16561, - 16564, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16565, - 16565, - null - ], - [ - "number-token", - "0", - 16566, - 16566, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16567, - 16567, - null - ], - [ - "number-token", - "0", - 16568, - 16568, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16569, - 16569, - null - ], - [ - "ident-token", - "auto", - 16570, - 16573, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16574, - 16574, - null - ], - [ - "ident-token", - "width", - 16575, - 16579, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16580, - 16580, - null - ], - [ - "percentage-token", - "50%", - 16581, - 16583, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 16584, - 16584, - null - ], - [ - "delim-token", - ".", - 16585, - 16585, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-7", - 16586, - 16593, - { - "value": "col-xl-7" - } - ], - [ - "{-token", - "{", - 16594, - 16594, - null - ], - [ - "ident-token", - "flex", - 16595, - 16598, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16599, - 16599, - null - ], - [ - "number-token", - "0", - 16600, - 16600, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16601, - 16601, - null - ], - [ - "number-token", - "0", - 16602, - 16602, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16603, - 16603, - null - ], - [ - "ident-token", - "auto", - 16604, - 16607, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16608, - 16608, - null - ], - [ - "ident-token", - "width", - 16609, - 16613, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16614, - 16614, - null - ], - [ - "percentage-token", - "58.33333333%", - 16615, - 16626, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 16627, - 16627, - null - ], - [ - "delim-token", - ".", - 16628, - 16628, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-8", - 16629, - 16636, - { - "value": "col-xl-8" - } - ], - [ - "{-token", - "{", - 16637, - 16637, - null - ], - [ - "ident-token", - "flex", - 16638, - 16641, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16642, - 16642, - null - ], - [ - "number-token", - "0", - 16643, - 16643, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16644, - 16644, - null - ], - [ - "number-token", - "0", - 16645, - 16645, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16646, - 16646, - null - ], - [ - "ident-token", - "auto", - 16647, - 16650, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16651, - 16651, - null - ], - [ - "ident-token", - "width", - 16652, - 16656, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16657, - 16657, - null - ], - [ - "percentage-token", - "66.66666667%", - 16658, - 16669, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 16670, - 16670, - null - ], - [ - "delim-token", - ".", - 16671, - 16671, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-9", - 16672, - 16679, - { - "value": "col-xl-9" - } - ], - [ - "{-token", - "{", - 16680, - 16680, - null - ], - [ - "ident-token", - "flex", - 16681, - 16684, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16685, - 16685, - null - ], - [ - "number-token", - "0", - 16686, - 16686, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16687, - 16687, - null - ], - [ - "number-token", - "0", - 16688, - 16688, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16689, - 16689, - null - ], - [ - "ident-token", - "auto", - 16690, - 16693, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16694, - 16694, - null - ], - [ - "ident-token", - "width", - 16695, - 16699, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16700, - 16700, - null - ], - [ - "percentage-token", - "75%", - 16701, - 16703, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 16704, - 16704, - null - ], - [ - "delim-token", - ".", - 16705, - 16705, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-10", - 16706, - 16714, - { - "value": "col-xl-10" - } - ], - [ - "{-token", - "{", - 16715, - 16715, - null - ], - [ - "ident-token", - "flex", - 16716, - 16719, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16720, - 16720, - null - ], - [ - "number-token", - "0", - 16721, - 16721, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16722, - 16722, - null - ], - [ - "number-token", - "0", - 16723, - 16723, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16724, - 16724, - null - ], - [ - "ident-token", - "auto", - 16725, - 16728, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16729, - 16729, - null - ], - [ - "ident-token", - "width", - 16730, - 16734, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16735, - 16735, - null - ], - [ - "percentage-token", - "83.33333333%", - 16736, - 16747, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 16748, - 16748, - null - ], - [ - "delim-token", - ".", - 16749, - 16749, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-11", - 16750, - 16758, - { - "value": "col-xl-11" - } - ], - [ - "{-token", - "{", - 16759, - 16759, - null - ], - [ - "ident-token", - "flex", - 16760, - 16763, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16764, - 16764, - null - ], - [ - "number-token", - "0", - 16765, - 16765, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16766, - 16766, - null - ], - [ - "number-token", - "0", - 16767, - 16767, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16768, - 16768, - null - ], - [ - "ident-token", - "auto", - 16769, - 16772, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16773, - 16773, - null - ], - [ - "ident-token", - "width", - 16774, - 16778, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16779, - 16779, - null - ], - [ - "percentage-token", - "91.66666667%", - 16780, - 16791, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 16792, - 16792, - null - ], - [ - "delim-token", - ".", - 16793, - 16793, - { - "value": "." - } - ], - [ - "ident-token", - "col-xl-12", - 16794, - 16802, - { - "value": "col-xl-12" - } - ], - [ - "{-token", - "{", - 16803, - 16803, - null - ], - [ - "ident-token", - "flex", - 16804, - 16807, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 16808, - 16808, - null - ], - [ - "number-token", - "0", - 16809, - 16809, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16810, - 16810, - null - ], - [ - "number-token", - "0", - 16811, - 16811, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 16812, - 16812, - null - ], - [ - "ident-token", - "auto", - 16813, - 16816, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 16817, - 16817, - null - ], - [ - "ident-token", - "width", - 16818, - 16822, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 16823, - 16823, - null - ], - [ - "percentage-token", - "100%", - 16824, - 16827, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 16828, - 16828, - null - ], - [ - "delim-token", - ".", - 16829, - 16829, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-0", - 16830, - 16840, - { - "value": "offset-xl-0" - } - ], - [ - "{-token", - "{", - 16841, - 16841, - null - ], - [ - "ident-token", - "margin-left", - 16842, - 16852, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 16853, - 16853, - null - ], - [ - "number-token", - "0", - 16854, - 16854, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 16855, - 16855, - null - ], - [ - "delim-token", - ".", - 16856, - 16856, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-1", - 16857, - 16867, - { - "value": "offset-xl-1" - } - ], - [ - "{-token", - "{", - 16868, - 16868, - null - ], - [ - "ident-token", - "margin-left", - 16869, - 16879, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 16880, - 16880, - null - ], - [ - "percentage-token", - "8.33333333%", - 16881, - 16891, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 16892, - 16892, - null - ], - [ - "delim-token", - ".", - 16893, - 16893, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-2", - 16894, - 16904, - { - "value": "offset-xl-2" - } - ], - [ - "{-token", - "{", - 16905, - 16905, - null - ], - [ - "ident-token", - "margin-left", - 16906, - 16916, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 16917, - 16917, - null - ], - [ - "percentage-token", - "16.66666667%", - 16918, - 16929, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 16930, - 16930, - null - ], - [ - "delim-token", - ".", - 16931, - 16931, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-3", - 16932, - 16942, - { - "value": "offset-xl-3" - } - ], - [ - "{-token", - "{", - 16943, - 16943, - null - ], - [ - "ident-token", - "margin-left", - 16944, - 16954, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 16955, - 16955, - null - ], - [ - "percentage-token", - "25%", - 16956, - 16958, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 16959, - 16959, - null - ], - [ - "delim-token", - ".", - 16960, - 16960, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-4", - 16961, - 16971, - { - "value": "offset-xl-4" - } - ], - [ - "{-token", - "{", - 16972, - 16972, - null - ], - [ - "ident-token", - "margin-left", - 16973, - 16983, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 16984, - 16984, - null - ], - [ - "percentage-token", - "33.33333333%", - 16985, - 16996, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 16997, - 16997, - null - ], - [ - "delim-token", - ".", - 16998, - 16998, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-5", - 16999, - 17009, - { - "value": "offset-xl-5" - } - ], - [ - "{-token", - "{", - 17010, - 17010, - null - ], - [ - "ident-token", - "margin-left", - 17011, - 17021, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17022, - 17022, - null - ], - [ - "percentage-token", - "41.66666667%", - 17023, - 17034, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 17035, - 17035, - null - ], - [ - "delim-token", - ".", - 17036, - 17036, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-6", - 17037, - 17047, - { - "value": "offset-xl-6" - } - ], - [ - "{-token", - "{", - 17048, - 17048, - null - ], - [ - "ident-token", - "margin-left", - 17049, - 17059, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17060, - 17060, - null - ], - [ - "percentage-token", - "50%", - 17061, - 17063, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 17064, - 17064, - null - ], - [ - "delim-token", - ".", - 17065, - 17065, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-7", - 17066, - 17076, - { - "value": "offset-xl-7" - } - ], - [ - "{-token", - "{", - 17077, - 17077, - null - ], - [ - "ident-token", - "margin-left", - 17078, - 17088, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17089, - 17089, - null - ], - [ - "percentage-token", - "58.33333333%", - 17090, - 17101, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 17102, - 17102, - null - ], - [ - "delim-token", - ".", - 17103, - 17103, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-8", - 17104, - 17114, - { - "value": "offset-xl-8" - } - ], - [ - "{-token", - "{", - 17115, - 17115, - null - ], - [ - "ident-token", - "margin-left", - 17116, - 17126, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17127, - 17127, - null - ], - [ - "percentage-token", - "66.66666667%", - 17128, - 17139, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 17140, - 17140, - null - ], - [ - "delim-token", - ".", - 17141, - 17141, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-9", - 17142, - 17152, - { - "value": "offset-xl-9" - } - ], - [ - "{-token", - "{", - 17153, - 17153, - null - ], - [ - "ident-token", - "margin-left", - 17154, - 17164, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17165, - 17165, - null - ], - [ - "percentage-token", - "75%", - 17166, - 17168, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 17169, - 17169, - null - ], - [ - "delim-token", - ".", - 17170, - 17170, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-10", - 17171, - 17182, - { - "value": "offset-xl-10" - } - ], - [ - "{-token", - "{", - 17183, - 17183, - null - ], - [ - "ident-token", - "margin-left", - 17184, - 17194, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17195, - 17195, - null - ], - [ - "percentage-token", - "83.33333333%", - 17196, - 17207, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 17208, - 17208, - null - ], - [ - "delim-token", - ".", - 17209, - 17209, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xl-11", - 17210, - 17221, - { - "value": "offset-xl-11" - } - ], - [ - "{-token", - "{", - 17222, - 17222, - null - ], - [ - "ident-token", - "margin-left", - 17223, - 17233, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 17234, - 17234, - null - ], - [ - "percentage-token", - "91.66666667%", - 17235, - 17246, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 17247, - 17247, - null - ], - [ - "delim-token", - ".", - 17248, - 17248, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-0", - 17249, - 17254, - { - "value": "g-xl-0" - } - ], - [ - "comma-token", - ",", - 17255, - 17255, - null - ], - [ - "delim-token", - ".", - 17256, - 17256, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-0", - 17257, - 17263, - { - "value": "gx-xl-0" - } - ], - [ - "{-token", - "{", - 17264, - 17264, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17265, - 17277, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17278, - 17278, - null - ], - [ - "number-token", - "0", - 17279, - 17279, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 17280, - 17280, - null - ], - [ - "delim-token", - ".", - 17281, - 17281, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-0", - 17282, - 17287, - { - "value": "g-xl-0" - } - ], - [ - "comma-token", - ",", - 17288, - 17288, - null - ], - [ - "delim-token", - ".", - 17289, - 17289, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-0", - 17290, - 17296, - { - "value": "gy-xl-0" - } - ], - [ - "{-token", - "{", - 17297, - 17297, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17298, - 17310, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17311, - 17311, - null - ], - [ - "number-token", - "0", - 17312, - 17312, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 17313, - 17313, - null - ], - [ - "delim-token", - ".", - 17314, - 17314, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-1", - 17315, - 17320, - { - "value": "g-xl-1" - } - ], - [ - "comma-token", - ",", - 17321, - 17321, - null - ], - [ - "delim-token", - ".", - 17322, - 17322, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-1", - 17323, - 17329, - { - "value": "gx-xl-1" - } - ], - [ - "{-token", - "{", - 17330, - 17330, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17331, - 17343, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17344, - 17344, - null - ], - [ - "dimension-token", - "0.25rem", - 17345, - 17351, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17352, - 17352, - null - ], - [ - "delim-token", - ".", - 17353, - 17353, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-1", - 17354, - 17359, - { - "value": "g-xl-1" - } - ], - [ - "comma-token", - ",", - 17360, - 17360, - null - ], - [ - "delim-token", - ".", - 17361, - 17361, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-1", - 17362, - 17368, - { - "value": "gy-xl-1" - } - ], - [ - "{-token", - "{", - 17369, - 17369, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17370, - 17382, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17383, - 17383, - null - ], - [ - "dimension-token", - "0.25rem", - 17384, - 17390, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17391, - 17391, - null - ], - [ - "delim-token", - ".", - 17392, - 17392, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-2", - 17393, - 17398, - { - "value": "g-xl-2" - } - ], - [ - "comma-token", - ",", - 17399, - 17399, - null - ], - [ - "delim-token", - ".", - 17400, - 17400, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-2", - 17401, - 17407, - { - "value": "gx-xl-2" - } - ], - [ - "{-token", - "{", - 17408, - 17408, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17409, - 17421, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17422, - 17422, - null - ], - [ - "dimension-token", - "0.5rem", - 17423, - 17428, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17429, - 17429, - null - ], - [ - "delim-token", - ".", - 17430, - 17430, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-2", - 17431, - 17436, - { - "value": "g-xl-2" - } - ], - [ - "comma-token", - ",", - 17437, - 17437, - null - ], - [ - "delim-token", - ".", - 17438, - 17438, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-2", - 17439, - 17445, - { - "value": "gy-xl-2" - } - ], - [ - "{-token", - "{", - 17446, - 17446, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17447, - 17459, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17460, - 17460, - null - ], - [ - "dimension-token", - "0.5rem", - 17461, - 17466, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17467, - 17467, - null - ], - [ - "delim-token", - ".", - 17468, - 17468, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-3", - 17469, - 17474, - { - "value": "g-xl-3" - } - ], - [ - "comma-token", - ",", - 17475, - 17475, - null - ], - [ - "delim-token", - ".", - 17476, - 17476, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-3", - 17477, - 17483, - { - "value": "gx-xl-3" - } - ], - [ - "{-token", - "{", - 17484, - 17484, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17485, - 17497, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17498, - 17498, - null - ], - [ - "dimension-token", - "1rem", - 17499, - 17502, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17503, - 17503, - null - ], - [ - "delim-token", - ".", - 17504, - 17504, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-3", - 17505, - 17510, - { - "value": "g-xl-3" - } - ], - [ - "comma-token", - ",", - 17511, - 17511, - null - ], - [ - "delim-token", - ".", - 17512, - 17512, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-3", - 17513, - 17519, - { - "value": "gy-xl-3" - } - ], - [ - "{-token", - "{", - 17520, - 17520, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17521, - 17533, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17534, - 17534, - null - ], - [ - "dimension-token", - "1rem", - 17535, - 17538, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17539, - 17539, - null - ], - [ - "delim-token", - ".", - 17540, - 17540, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-4", - 17541, - 17546, - { - "value": "g-xl-4" - } - ], - [ - "comma-token", - ",", - 17547, - 17547, - null - ], - [ - "delim-token", - ".", - 17548, - 17548, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-4", - 17549, - 17555, - { - "value": "gx-xl-4" - } - ], - [ - "{-token", - "{", - 17556, - 17556, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17557, - 17569, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17570, - 17570, - null - ], - [ - "dimension-token", - "1.5rem", - 17571, - 17576, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17577, - 17577, - null - ], - [ - "delim-token", - ".", - 17578, - 17578, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-4", - 17579, - 17584, - { - "value": "g-xl-4" - } - ], - [ - "comma-token", - ",", - 17585, - 17585, - null - ], - [ - "delim-token", - ".", - 17586, - 17586, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-4", - 17587, - 17593, - { - "value": "gy-xl-4" - } - ], - [ - "{-token", - "{", - 17594, - 17594, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17595, - 17607, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17608, - 17608, - null - ], - [ - "dimension-token", - "1.5rem", - 17609, - 17614, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17615, - 17615, - null - ], - [ - "delim-token", - ".", - 17616, - 17616, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-5", - 17617, - 17622, - { - "value": "g-xl-5" - } - ], - [ - "comma-token", - ",", - 17623, - 17623, - null - ], - [ - "delim-token", - ".", - 17624, - 17624, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xl-5", - 17625, - 17631, - { - "value": "gx-xl-5" - } - ], - [ - "{-token", - "{", - 17632, - 17632, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 17633, - 17645, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 17646, - 17646, - null - ], - [ - "dimension-token", - "3rem", - 17647, - 17650, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17651, - 17651, - null - ], - [ - "delim-token", - ".", - 17652, - 17652, - { - "value": "." - } - ], - [ - "ident-token", - "g-xl-5", - 17653, - 17658, - { - "value": "g-xl-5" - } - ], - [ - "comma-token", - ",", - 17659, - 17659, - null - ], - [ - "delim-token", - ".", - 17660, - 17660, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xl-5", - 17661, - 17667, - { - "value": "gy-xl-5" - } - ], - [ - "{-token", - "{", - 17668, - 17668, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 17669, - 17681, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 17682, - 17682, - null - ], - [ - "dimension-token", - "3rem", - 17683, - 17686, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 17687, - 17687, - null - ], - [ - "}-token", - "}", - 17688, - 17688, - null - ], - [ - "at-keyword-token", - "@media", - 17689, - 17694, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 17695, - 17695, - null - ], - [ - "(-token", - "(", - 17696, - 17696, - null - ], - [ - "ident-token", - "min-width", - 17697, - 17705, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 17706, - 17706, - null - ], - [ - "dimension-token", - "1400px", - 17707, - 17712, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 17713, - 17713, - null - ], - [ - "{-token", - "{", - 17714, - 17714, - null - ], - [ - "delim-token", - ".", - 17715, - 17715, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl", - 17716, - 17722, - { - "value": "col-xxl" - } - ], - [ - "{-token", - "{", - 17723, - 17723, - null - ], - [ - "ident-token", - "flex", - 17724, - 17727, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17728, - 17728, - null - ], - [ - "number-token", - "1", - 17729, - 17729, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17730, - 17730, - null - ], - [ - "number-token", - "0", - 17731, - 17731, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17732, - 17732, - null - ], - [ - "percentage-token", - "0%", - 17733, - 17734, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 17735, - 17735, - null - ], - [ - "delim-token", - ".", - 17736, - 17736, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-auto", - 17737, - 17753, - { - "value": "row-cols-xxl-auto" - } - ], - [ - "delim-token", - ">", - 17754, - 17754, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17755, - 17755, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17756, - 17756, - null - ], - [ - "ident-token", - "flex", - 17757, - 17760, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17761, - 17761, - null - ], - [ - "number-token", - "0", - 17762, - 17762, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17763, - 17763, - null - ], - [ - "number-token", - "0", - 17764, - 17764, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17765, - 17765, - null - ], - [ - "ident-token", - "auto", - 17766, - 17769, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17770, - 17770, - null - ], - [ - "ident-token", - "width", - 17771, - 17775, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17776, - 17776, - null - ], - [ - "ident-token", - "auto", - 17777, - 17780, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 17781, - 17781, - null - ], - [ - "delim-token", - ".", - 17782, - 17782, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-1", - 17783, - 17796, - { - "value": "row-cols-xxl-1" - } - ], - [ - "delim-token", - ">", - 17797, - 17797, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17798, - 17798, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17799, - 17799, - null - ], - [ - "ident-token", - "flex", - 17800, - 17803, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17804, - 17804, - null - ], - [ - "number-token", - "0", - 17805, - 17805, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17806, - 17806, - null - ], - [ - "number-token", - "0", - 17807, - 17807, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17808, - 17808, - null - ], - [ - "ident-token", - "auto", - 17809, - 17812, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17813, - 17813, - null - ], - [ - "ident-token", - "width", - 17814, - 17818, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17819, - 17819, - null - ], - [ - "percentage-token", - "100%", - 17820, - 17823, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 17824, - 17824, - null - ], - [ - "delim-token", - ".", - 17825, - 17825, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-2", - 17826, - 17839, - { - "value": "row-cols-xxl-2" - } - ], - [ - "delim-token", - ">", - 17840, - 17840, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17841, - 17841, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17842, - 17842, - null - ], - [ - "ident-token", - "flex", - 17843, - 17846, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17847, - 17847, - null - ], - [ - "number-token", - "0", - 17848, - 17848, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17849, - 17849, - null - ], - [ - "number-token", - "0", - 17850, - 17850, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17851, - 17851, - null - ], - [ - "ident-token", - "auto", - 17852, - 17855, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17856, - 17856, - null - ], - [ - "ident-token", - "width", - 17857, - 17861, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17862, - 17862, - null - ], - [ - "percentage-token", - "50%", - 17863, - 17865, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 17866, - 17866, - null - ], - [ - "delim-token", - ".", - 17867, - 17867, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-3", - 17868, - 17881, - { - "value": "row-cols-xxl-3" - } - ], - [ - "delim-token", - ">", - 17882, - 17882, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17883, - 17883, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17884, - 17884, - null - ], - [ - "ident-token", - "flex", - 17885, - 17888, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17889, - 17889, - null - ], - [ - "number-token", - "0", - 17890, - 17890, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17891, - 17891, - null - ], - [ - "number-token", - "0", - 17892, - 17892, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17893, - 17893, - null - ], - [ - "ident-token", - "auto", - 17894, - 17897, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17898, - 17898, - null - ], - [ - "ident-token", - "width", - 17899, - 17903, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17904, - 17904, - null - ], - [ - "percentage-token", - "33.3333333333%", - 17905, - 17918, - { - "value": 33.3333333333 - } - ], - [ - "}-token", - "}", - 17919, - 17919, - null - ], - [ - "delim-token", - ".", - 17920, - 17920, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-4", - 17921, - 17934, - { - "value": "row-cols-xxl-4" - } - ], - [ - "delim-token", - ">", - 17935, - 17935, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17936, - 17936, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17937, - 17937, - null - ], - [ - "ident-token", - "flex", - 17938, - 17941, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17942, - 17942, - null - ], - [ - "number-token", - "0", - 17943, - 17943, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17944, - 17944, - null - ], - [ - "number-token", - "0", - 17945, - 17945, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17946, - 17946, - null - ], - [ - "ident-token", - "auto", - 17947, - 17950, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17951, - 17951, - null - ], - [ - "ident-token", - "width", - 17952, - 17956, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17957, - 17957, - null - ], - [ - "percentage-token", - "25%", - 17958, - 17960, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 17961, - 17961, - null - ], - [ - "delim-token", - ".", - 17962, - 17962, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-5", - 17963, - 17976, - { - "value": "row-cols-xxl-5" - } - ], - [ - "delim-token", - ">", - 17977, - 17977, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 17978, - 17978, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 17979, - 17979, - null - ], - [ - "ident-token", - "flex", - 17980, - 17983, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 17984, - 17984, - null - ], - [ - "number-token", - "0", - 17985, - 17985, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17986, - 17986, - null - ], - [ - "number-token", - "0", - 17987, - 17987, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 17988, - 17988, - null - ], - [ - "ident-token", - "auto", - 17989, - 17992, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 17993, - 17993, - null - ], - [ - "ident-token", - "width", - 17994, - 17998, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 17999, - 17999, - null - ], - [ - "percentage-token", - "20%", - 18000, - 18002, - { - "value": 20 - } - ], - [ - "}-token", - "}", - 18003, - 18003, - null - ], - [ - "delim-token", - ".", - 18004, - 18004, - { - "value": "." - } - ], - [ - "ident-token", - "row-cols-xxl-6", - 18005, - 18018, - { - "value": "row-cols-xxl-6" - } - ], - [ - "delim-token", - ">", - 18019, - 18019, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 18020, - 18020, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 18021, - 18021, - null - ], - [ - "ident-token", - "flex", - 18022, - 18025, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18026, - 18026, - null - ], - [ - "number-token", - "0", - 18027, - 18027, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18028, - 18028, - null - ], - [ - "number-token", - "0", - 18029, - 18029, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18030, - 18030, - null - ], - [ - "ident-token", - "auto", - 18031, - 18034, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18035, - 18035, - null - ], - [ - "ident-token", - "width", - 18036, - 18040, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18041, - 18041, - null - ], - [ - "percentage-token", - "16.6666666667%", - 18042, - 18055, - { - "value": 16.6666666667 - } - ], - [ - "}-token", - "}", - 18056, - 18056, - null - ], - [ - "delim-token", - ".", - 18057, - 18057, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-auto", - 18058, - 18069, - { - "value": "col-xxl-auto" - } - ], - [ - "{-token", - "{", - 18070, - 18070, - null - ], - [ - "ident-token", - "flex", - 18071, - 18074, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18075, - 18075, - null - ], - [ - "number-token", - "0", - 18076, - 18076, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18077, - 18077, - null - ], - [ - "number-token", - "0", - 18078, - 18078, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18079, - 18079, - null - ], - [ - "ident-token", - "auto", - 18080, - 18083, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18084, - 18084, - null - ], - [ - "ident-token", - "width", - 18085, - 18089, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18090, - 18090, - null - ], - [ - "ident-token", - "auto", - 18091, - 18094, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 18095, - 18095, - null - ], - [ - "delim-token", - ".", - 18096, - 18096, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-1", - 18097, - 18105, - { - "value": "col-xxl-1" - } - ], - [ - "{-token", - "{", - 18106, - 18106, - null - ], - [ - "ident-token", - "flex", - 18107, - 18110, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18111, - 18111, - null - ], - [ - "number-token", - "0", - 18112, - 18112, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18113, - 18113, - null - ], - [ - "number-token", - "0", - 18114, - 18114, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18115, - 18115, - null - ], - [ - "ident-token", - "auto", - 18116, - 18119, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18120, - 18120, - null - ], - [ - "ident-token", - "width", - 18121, - 18125, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18126, - 18126, - null - ], - [ - "percentage-token", - "8.33333333%", - 18127, - 18137, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 18138, - 18138, - null - ], - [ - "delim-token", - ".", - 18139, - 18139, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-2", - 18140, - 18148, - { - "value": "col-xxl-2" - } - ], - [ - "{-token", - "{", - 18149, - 18149, - null - ], - [ - "ident-token", - "flex", - 18150, - 18153, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18154, - 18154, - null - ], - [ - "number-token", - "0", - 18155, - 18155, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18156, - 18156, - null - ], - [ - "number-token", - "0", - 18157, - 18157, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18158, - 18158, - null - ], - [ - "ident-token", - "auto", - 18159, - 18162, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18163, - 18163, - null - ], - [ - "ident-token", - "width", - 18164, - 18168, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18169, - 18169, - null - ], - [ - "percentage-token", - "16.66666667%", - 18170, - 18181, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 18182, - 18182, - null - ], - [ - "delim-token", - ".", - 18183, - 18183, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-3", - 18184, - 18192, - { - "value": "col-xxl-3" - } - ], - [ - "{-token", - "{", - 18193, - 18193, - null - ], - [ - "ident-token", - "flex", - 18194, - 18197, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18198, - 18198, - null - ], - [ - "number-token", - "0", - 18199, - 18199, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18200, - 18200, - null - ], - [ - "number-token", - "0", - 18201, - 18201, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18202, - 18202, - null - ], - [ - "ident-token", - "auto", - 18203, - 18206, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18207, - 18207, - null - ], - [ - "ident-token", - "width", - 18208, - 18212, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18213, - 18213, - null - ], - [ - "percentage-token", - "25%", - 18214, - 18216, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 18217, - 18217, - null - ], - [ - "delim-token", - ".", - 18218, - 18218, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-4", - 18219, - 18227, - { - "value": "col-xxl-4" - } - ], - [ - "{-token", - "{", - 18228, - 18228, - null - ], - [ - "ident-token", - "flex", - 18229, - 18232, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18233, - 18233, - null - ], - [ - "number-token", - "0", - 18234, - 18234, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18235, - 18235, - null - ], - [ - "number-token", - "0", - 18236, - 18236, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18237, - 18237, - null - ], - [ - "ident-token", - "auto", - 18238, - 18241, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18242, - 18242, - null - ], - [ - "ident-token", - "width", - 18243, - 18247, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18248, - 18248, - null - ], - [ - "percentage-token", - "33.33333333%", - 18249, - 18260, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 18261, - 18261, - null - ], - [ - "delim-token", - ".", - 18262, - 18262, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-5", - 18263, - 18271, - { - "value": "col-xxl-5" - } - ], - [ - "{-token", - "{", - 18272, - 18272, - null - ], - [ - "ident-token", - "flex", - 18273, - 18276, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18277, - 18277, - null - ], - [ - "number-token", - "0", - 18278, - 18278, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18279, - 18279, - null - ], - [ - "number-token", - "0", - 18280, - 18280, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18281, - 18281, - null - ], - [ - "ident-token", - "auto", - 18282, - 18285, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18286, - 18286, - null - ], - [ - "ident-token", - "width", - 18287, - 18291, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18292, - 18292, - null - ], - [ - "percentage-token", - "41.66666667%", - 18293, - 18304, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 18305, - 18305, - null - ], - [ - "delim-token", - ".", - 18306, - 18306, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-6", - 18307, - 18315, - { - "value": "col-xxl-6" - } - ], - [ - "{-token", - "{", - 18316, - 18316, - null - ], - [ - "ident-token", - "flex", - 18317, - 18320, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18321, - 18321, - null - ], - [ - "number-token", - "0", - 18322, - 18322, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18323, - 18323, - null - ], - [ - "number-token", - "0", - 18324, - 18324, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18325, - 18325, - null - ], - [ - "ident-token", - "auto", - 18326, - 18329, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18330, - 18330, - null - ], - [ - "ident-token", - "width", - 18331, - 18335, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18336, - 18336, - null - ], - [ - "percentage-token", - "50%", - 18337, - 18339, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 18340, - 18340, - null - ], - [ - "delim-token", - ".", - 18341, - 18341, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-7", - 18342, - 18350, - { - "value": "col-xxl-7" - } - ], - [ - "{-token", - "{", - 18351, - 18351, - null - ], - [ - "ident-token", - "flex", - 18352, - 18355, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18356, - 18356, - null - ], - [ - "number-token", - "0", - 18357, - 18357, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18358, - 18358, - null - ], - [ - "number-token", - "0", - 18359, - 18359, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18360, - 18360, - null - ], - [ - "ident-token", - "auto", - 18361, - 18364, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18365, - 18365, - null - ], - [ - "ident-token", - "width", - 18366, - 18370, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18371, - 18371, - null - ], - [ - "percentage-token", - "58.33333333%", - 18372, - 18383, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 18384, - 18384, - null - ], - [ - "delim-token", - ".", - 18385, - 18385, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-8", - 18386, - 18394, - { - "value": "col-xxl-8" - } - ], - [ - "{-token", - "{", - 18395, - 18395, - null - ], - [ - "ident-token", - "flex", - 18396, - 18399, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18400, - 18400, - null - ], - [ - "number-token", - "0", - 18401, - 18401, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18402, - 18402, - null - ], - [ - "number-token", - "0", - 18403, - 18403, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18404, - 18404, - null - ], - [ - "ident-token", - "auto", - 18405, - 18408, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18409, - 18409, - null - ], - [ - "ident-token", - "width", - 18410, - 18414, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18415, - 18415, - null - ], - [ - "percentage-token", - "66.66666667%", - 18416, - 18427, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 18428, - 18428, - null - ], - [ - "delim-token", - ".", - 18429, - 18429, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-9", - 18430, - 18438, - { - "value": "col-xxl-9" - } - ], - [ - "{-token", - "{", - 18439, - 18439, - null - ], - [ - "ident-token", - "flex", - 18440, - 18443, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18444, - 18444, - null - ], - [ - "number-token", - "0", - 18445, - 18445, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18446, - 18446, - null - ], - [ - "number-token", - "0", - 18447, - 18447, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18448, - 18448, - null - ], - [ - "ident-token", - "auto", - 18449, - 18452, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18453, - 18453, - null - ], - [ - "ident-token", - "width", - 18454, - 18458, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18459, - 18459, - null - ], - [ - "percentage-token", - "75%", - 18460, - 18462, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 18463, - 18463, - null - ], - [ - "delim-token", - ".", - 18464, - 18464, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-10", - 18465, - 18474, - { - "value": "col-xxl-10" - } - ], - [ - "{-token", - "{", - 18475, - 18475, - null - ], - [ - "ident-token", - "flex", - 18476, - 18479, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18480, - 18480, - null - ], - [ - "number-token", - "0", - 18481, - 18481, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18482, - 18482, - null - ], - [ - "number-token", - "0", - 18483, - 18483, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18484, - 18484, - null - ], - [ - "ident-token", - "auto", - 18485, - 18488, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18489, - 18489, - null - ], - [ - "ident-token", - "width", - 18490, - 18494, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18495, - 18495, - null - ], - [ - "percentage-token", - "83.33333333%", - 18496, - 18507, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 18508, - 18508, - null - ], - [ - "delim-token", - ".", - 18509, - 18509, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-11", - 18510, - 18519, - { - "value": "col-xxl-11" - } - ], - [ - "{-token", - "{", - 18520, - 18520, - null - ], - [ - "ident-token", - "flex", - 18521, - 18524, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18525, - 18525, - null - ], - [ - "number-token", - "0", - 18526, - 18526, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18527, - 18527, - null - ], - [ - "number-token", - "0", - 18528, - 18528, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18529, - 18529, - null - ], - [ - "ident-token", - "auto", - 18530, - 18533, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18534, - 18534, - null - ], - [ - "ident-token", - "width", - 18535, - 18539, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18540, - 18540, - null - ], - [ - "percentage-token", - "91.66666667%", - 18541, - 18552, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 18553, - 18553, - null - ], - [ - "delim-token", - ".", - 18554, - 18554, - { - "value": "." - } - ], - [ - "ident-token", - "col-xxl-12", - 18555, - 18564, - { - "value": "col-xxl-12" - } - ], - [ - "{-token", - "{", - 18565, - 18565, - null - ], - [ - "ident-token", - "flex", - 18566, - 18569, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 18570, - 18570, - null - ], - [ - "number-token", - "0", - 18571, - 18571, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18572, - 18572, - null - ], - [ - "number-token", - "0", - 18573, - 18573, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 18574, - 18574, - null - ], - [ - "ident-token", - "auto", - 18575, - 18578, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 18579, - 18579, - null - ], - [ - "ident-token", - "width", - 18580, - 18584, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 18585, - 18585, - null - ], - [ - "percentage-token", - "100%", - 18586, - 18589, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 18590, - 18590, - null - ], - [ - "delim-token", - ".", - 18591, - 18591, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-0", - 18592, - 18603, - { - "value": "offset-xxl-0" - } - ], - [ - "{-token", - "{", - 18604, - 18604, - null - ], - [ - "ident-token", - "margin-left", - 18605, - 18615, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18616, - 18616, - null - ], - [ - "number-token", - "0", - 18617, - 18617, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 18618, - 18618, - null - ], - [ - "delim-token", - ".", - 18619, - 18619, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-1", - 18620, - 18631, - { - "value": "offset-xxl-1" - } - ], - [ - "{-token", - "{", - 18632, - 18632, - null - ], - [ - "ident-token", - "margin-left", - 18633, - 18643, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18644, - 18644, - null - ], - [ - "percentage-token", - "8.33333333%", - 18645, - 18655, - { - "value": 8.33333333 - } - ], - [ - "}-token", - "}", - 18656, - 18656, - null - ], - [ - "delim-token", - ".", - 18657, - 18657, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-2", - 18658, - 18669, - { - "value": "offset-xxl-2" - } - ], - [ - "{-token", - "{", - 18670, - 18670, - null - ], - [ - "ident-token", - "margin-left", - 18671, - 18681, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18682, - 18682, - null - ], - [ - "percentage-token", - "16.66666667%", - 18683, - 18694, - { - "value": 16.66666667 - } - ], - [ - "}-token", - "}", - 18695, - 18695, - null - ], - [ - "delim-token", - ".", - 18696, - 18696, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-3", - 18697, - 18708, - { - "value": "offset-xxl-3" - } - ], - [ - "{-token", - "{", - 18709, - 18709, - null - ], - [ - "ident-token", - "margin-left", - 18710, - 18720, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18721, - 18721, - null - ], - [ - "percentage-token", - "25%", - 18722, - 18724, - { - "value": 25 - } - ], - [ - "}-token", - "}", - 18725, - 18725, - null - ], - [ - "delim-token", - ".", - 18726, - 18726, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-4", - 18727, - 18738, - { - "value": "offset-xxl-4" - } - ], - [ - "{-token", - "{", - 18739, - 18739, - null - ], - [ - "ident-token", - "margin-left", - 18740, - 18750, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18751, - 18751, - null - ], - [ - "percentage-token", - "33.33333333%", - 18752, - 18763, - { - "value": 33.33333333 - } - ], - [ - "}-token", - "}", - 18764, - 18764, - null - ], - [ - "delim-token", - ".", - 18765, - 18765, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-5", - 18766, - 18777, - { - "value": "offset-xxl-5" - } - ], - [ - "{-token", - "{", - 18778, - 18778, - null - ], - [ - "ident-token", - "margin-left", - 18779, - 18789, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18790, - 18790, - null - ], - [ - "percentage-token", - "41.66666667%", - 18791, - 18802, - { - "value": 41.66666667 - } - ], - [ - "}-token", - "}", - 18803, - 18803, - null - ], - [ - "delim-token", - ".", - 18804, - 18804, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-6", - 18805, - 18816, - { - "value": "offset-xxl-6" - } - ], - [ - "{-token", - "{", - 18817, - 18817, - null - ], - [ - "ident-token", - "margin-left", - 18818, - 18828, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18829, - 18829, - null - ], - [ - "percentage-token", - "50%", - 18830, - 18832, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 18833, - 18833, - null - ], - [ - "delim-token", - ".", - 18834, - 18834, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-7", - 18835, - 18846, - { - "value": "offset-xxl-7" - } - ], - [ - "{-token", - "{", - 18847, - 18847, - null - ], - [ - "ident-token", - "margin-left", - 18848, - 18858, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18859, - 18859, - null - ], - [ - "percentage-token", - "58.33333333%", - 18860, - 18871, - { - "value": 58.33333333 - } - ], - [ - "}-token", - "}", - 18872, - 18872, - null - ], - [ - "delim-token", - ".", - 18873, - 18873, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-8", - 18874, - 18885, - { - "value": "offset-xxl-8" - } - ], - [ - "{-token", - "{", - 18886, - 18886, - null - ], - [ - "ident-token", - "margin-left", - 18887, - 18897, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18898, - 18898, - null - ], - [ - "percentage-token", - "66.66666667%", - 18899, - 18910, - { - "value": 66.66666667 - } - ], - [ - "}-token", - "}", - 18911, - 18911, - null - ], - [ - "delim-token", - ".", - 18912, - 18912, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-9", - 18913, - 18924, - { - "value": "offset-xxl-9" - } - ], - [ - "{-token", - "{", - 18925, - 18925, - null - ], - [ - "ident-token", - "margin-left", - 18926, - 18936, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18937, - 18937, - null - ], - [ - "percentage-token", - "75%", - 18938, - 18940, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 18941, - 18941, - null - ], - [ - "delim-token", - ".", - 18942, - 18942, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-10", - 18943, - 18955, - { - "value": "offset-xxl-10" - } - ], - [ - "{-token", - "{", - 18956, - 18956, - null - ], - [ - "ident-token", - "margin-left", - 18957, - 18967, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 18968, - 18968, - null - ], - [ - "percentage-token", - "83.33333333%", - 18969, - 18980, - { - "value": 83.33333333 - } - ], - [ - "}-token", - "}", - 18981, - 18981, - null - ], - [ - "delim-token", - ".", - 18982, - 18982, - { - "value": "." - } - ], - [ - "ident-token", - "offset-xxl-11", - 18983, - 18995, - { - "value": "offset-xxl-11" - } - ], - [ - "{-token", - "{", - 18996, - 18996, - null - ], - [ - "ident-token", - "margin-left", - 18997, - 19007, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 19008, - 19008, - null - ], - [ - "percentage-token", - "91.66666667%", - 19009, - 19020, - { - "value": 91.66666667 - } - ], - [ - "}-token", - "}", - 19021, - 19021, - null - ], - [ - "delim-token", - ".", - 19022, - 19022, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-0", - 19023, - 19029, - { - "value": "g-xxl-0" - } - ], - [ - "comma-token", - ",", - 19030, - 19030, - null - ], - [ - "delim-token", - ".", - 19031, - 19031, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-0", - 19032, - 19039, - { - "value": "gx-xxl-0" - } - ], - [ - "{-token", - "{", - 19040, - 19040, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19041, - 19053, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19054, - 19054, - null - ], - [ - "number-token", - "0", - 19055, - 19055, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 19056, - 19056, - null - ], - [ - "delim-token", - ".", - 19057, - 19057, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-0", - 19058, - 19064, - { - "value": "g-xxl-0" - } - ], - [ - "comma-token", - ",", - 19065, - 19065, - null - ], - [ - "delim-token", - ".", - 19066, - 19066, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-0", - 19067, - 19074, - { - "value": "gy-xxl-0" - } - ], - [ - "{-token", - "{", - 19075, - 19075, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19076, - 19088, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19089, - 19089, - null - ], - [ - "number-token", - "0", - 19090, - 19090, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 19091, - 19091, - null - ], - [ - "delim-token", - ".", - 19092, - 19092, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-1", - 19093, - 19099, - { - "value": "g-xxl-1" - } - ], - [ - "comma-token", - ",", - 19100, - 19100, - null - ], - [ - "delim-token", - ".", - 19101, - 19101, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-1", - 19102, - 19109, - { - "value": "gx-xxl-1" - } - ], - [ - "{-token", - "{", - 19110, - 19110, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19111, - 19123, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19124, - 19124, - null - ], - [ - "dimension-token", - "0.25rem", - 19125, - 19131, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19132, - 19132, - null - ], - [ - "delim-token", - ".", - 19133, - 19133, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-1", - 19134, - 19140, - { - "value": "g-xxl-1" - } - ], - [ - "comma-token", - ",", - 19141, - 19141, - null - ], - [ - "delim-token", - ".", - 19142, - 19142, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-1", - 19143, - 19150, - { - "value": "gy-xxl-1" - } - ], - [ - "{-token", - "{", - 19151, - 19151, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19152, - 19164, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19165, - 19165, - null - ], - [ - "dimension-token", - "0.25rem", - 19166, - 19172, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19173, - 19173, - null - ], - [ - "delim-token", - ".", - 19174, - 19174, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-2", - 19175, - 19181, - { - "value": "g-xxl-2" - } - ], - [ - "comma-token", - ",", - 19182, - 19182, - null - ], - [ - "delim-token", - ".", - 19183, - 19183, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-2", - 19184, - 19191, - { - "value": "gx-xxl-2" - } - ], - [ - "{-token", - "{", - 19192, - 19192, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19193, - 19205, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19206, - 19206, - null - ], - [ - "dimension-token", - "0.5rem", - 19207, - 19212, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19213, - 19213, - null - ], - [ - "delim-token", - ".", - 19214, - 19214, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-2", - 19215, - 19221, - { - "value": "g-xxl-2" - } - ], - [ - "comma-token", - ",", - 19222, - 19222, - null - ], - [ - "delim-token", - ".", - 19223, - 19223, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-2", - 19224, - 19231, - { - "value": "gy-xxl-2" - } - ], - [ - "{-token", - "{", - 19232, - 19232, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19233, - 19245, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19246, - 19246, - null - ], - [ - "dimension-token", - "0.5rem", - 19247, - 19252, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19253, - 19253, - null - ], - [ - "delim-token", - ".", - 19254, - 19254, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-3", - 19255, - 19261, - { - "value": "g-xxl-3" - } - ], - [ - "comma-token", - ",", - 19262, - 19262, - null - ], - [ - "delim-token", - ".", - 19263, - 19263, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-3", - 19264, - 19271, - { - "value": "gx-xxl-3" - } - ], - [ - "{-token", - "{", - 19272, - 19272, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19273, - 19285, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19286, - 19286, - null - ], - [ - "dimension-token", - "1rem", - 19287, - 19290, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19291, - 19291, - null - ], - [ - "delim-token", - ".", - 19292, - 19292, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-3", - 19293, - 19299, - { - "value": "g-xxl-3" - } - ], - [ - "comma-token", - ",", - 19300, - 19300, - null - ], - [ - "delim-token", - ".", - 19301, - 19301, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-3", - 19302, - 19309, - { - "value": "gy-xxl-3" - } - ], - [ - "{-token", - "{", - 19310, - 19310, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19311, - 19323, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19324, - 19324, - null - ], - [ - "dimension-token", - "1rem", - 19325, - 19328, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19329, - 19329, - null - ], - [ - "delim-token", - ".", - 19330, - 19330, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-4", - 19331, - 19337, - { - "value": "g-xxl-4" - } - ], - [ - "comma-token", - ",", - 19338, - 19338, - null - ], - [ - "delim-token", - ".", - 19339, - 19339, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-4", - 19340, - 19347, - { - "value": "gx-xxl-4" - } - ], - [ - "{-token", - "{", - 19348, - 19348, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19349, - 19361, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19362, - 19362, - null - ], - [ - "dimension-token", - "1.5rem", - 19363, - 19368, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19369, - 19369, - null - ], - [ - "delim-token", - ".", - 19370, - 19370, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-4", - 19371, - 19377, - { - "value": "g-xxl-4" - } - ], - [ - "comma-token", - ",", - 19378, - 19378, - null - ], - [ - "delim-token", - ".", - 19379, - 19379, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-4", - 19380, - 19387, - { - "value": "gy-xxl-4" - } - ], - [ - "{-token", - "{", - 19388, - 19388, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19389, - 19401, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19402, - 19402, - null - ], - [ - "dimension-token", - "1.5rem", - 19403, - 19408, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19409, - 19409, - null - ], - [ - "delim-token", - ".", - 19410, - 19410, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-5", - 19411, - 19417, - { - "value": "g-xxl-5" - } - ], - [ - "comma-token", - ",", - 19418, - 19418, - null - ], - [ - "delim-token", - ".", - 19419, - 19419, - { - "value": "." - } - ], - [ - "ident-token", - "gx-xxl-5", - 19420, - 19427, - { - "value": "gx-xxl-5" - } - ], - [ - "{-token", - "{", - 19428, - 19428, - null - ], - [ - "ident-token", - "--bs-gutter-x", - 19429, - 19441, - { - "value": "--bs-gutter-x" - } - ], - [ - "colon-token", - ":", - 19442, - 19442, - null - ], - [ - "dimension-token", - "3rem", - 19443, - 19446, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19447, - 19447, - null - ], - [ - "delim-token", - ".", - 19448, - 19448, - { - "value": "." - } - ], - [ - "ident-token", - "g-xxl-5", - 19449, - 19455, - { - "value": "g-xxl-5" - } - ], - [ - "comma-token", - ",", - 19456, - 19456, - null - ], - [ - "delim-token", - ".", - 19457, - 19457, - { - "value": "." - } - ], - [ - "ident-token", - "gy-xxl-5", - 19458, - 19465, - { - "value": "gy-xxl-5" - } - ], - [ - "{-token", - "{", - 19466, - 19466, - null - ], - [ - "ident-token", - "--bs-gutter-y", - 19467, - 19479, - { - "value": "--bs-gutter-y" - } - ], - [ - "colon-token", - ":", - 19480, - 19480, - null - ], - [ - "dimension-token", - "3rem", - 19481, - 19484, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 19485, - 19485, - null - ], - [ - "}-token", - "}", - 19486, - 19486, - null - ], - [ - "delim-token", - ".", - 19487, - 19487, - { - "value": "." - } - ], - [ - "ident-token", - "table", - 19488, - 19492, - { - "value": "table" - } - ], - [ - "{-token", - "{", - 19493, - 19493, - null - ], - [ - "ident-token", - "--bs-table-color", - 19494, - 19509, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 19510, - 19510, - null - ], - [ - "function-token", - "var(", - 19511, - 19514, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 19515, - 19529, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 19530, - 19530, - null - ], - [ - "semicolon-token", - ";", - 19531, - 19531, - null - ], - [ - "ident-token", - "--bs-table-bg", - 19532, - 19544, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 19545, - 19545, - null - ], - [ - "ident-token", - "transparent", - 19546, - 19556, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 19557, - 19557, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 19558, - 19580, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 19581, - 19581, - null - ], - [ - "function-token", - "var(", - 19582, - 19585, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 19586, - 19602, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 19603, - 19603, - null - ], - [ - "semicolon-token", - ";", - 19604, - 19604, - null - ], - [ - "ident-token", - "--bs-table-accent-bg", - 19605, - 19624, - { - "value": "--bs-table-accent-bg" - } - ], - [ - "colon-token", - ":", - 19625, - 19625, - null - ], - [ - "ident-token", - "transparent", - 19626, - 19636, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 19637, - 19637, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 19638, - 19661, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 19662, - 19662, - null - ], - [ - "function-token", - "var(", - 19663, - 19666, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 19667, - 19681, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 19682, - 19682, - null - ], - [ - "semicolon-token", - ";", - 19683, - 19683, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 19684, - 19704, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 19705, - 19705, - null - ], - [ - "function-token", - "rgba(", - 19706, - 19710, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 19711, - 19711, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19712, - 19712, - null - ], - [ - "whitespace-token", - " ", - 19713, - 19713, - null - ], - [ - "number-token", - "0", - 19714, - 19714, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19715, - 19715, - null - ], - [ - "whitespace-token", - " ", - 19716, - 19716, - null - ], - [ - "number-token", - "0", - 19717, - 19717, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19718, - 19718, - null - ], - [ - "whitespace-token", - " ", - 19719, - 19719, - null - ], - [ - "number-token", - "0.05", - 19720, - 19723, - { - "value": 0.05, - "type": "number" - } - ], - [ - ")-token", - ")", - 19724, - 19724, - null - ], - [ - "semicolon-token", - ";", - 19725, - 19725, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 19726, - 19748, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 19749, - 19749, - null - ], - [ - "function-token", - "var(", - 19750, - 19753, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 19754, - 19768, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 19769, - 19769, - null - ], - [ - "semicolon-token", - ";", - 19770, - 19770, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 19771, - 19790, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 19791, - 19791, - null - ], - [ - "function-token", - "rgba(", - 19792, - 19796, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 19797, - 19797, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19798, - 19798, - null - ], - [ - "whitespace-token", - " ", - 19799, - 19799, - null - ], - [ - "number-token", - "0", - 19800, - 19800, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19801, - 19801, - null - ], - [ - "whitespace-token", - " ", - 19802, - 19802, - null - ], - [ - "number-token", - "0", - 19803, - 19803, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19804, - 19804, - null - ], - [ - "whitespace-token", - " ", - 19805, - 19805, - null - ], - [ - "number-token", - "0.1", - 19806, - 19808, - { - "value": 0.1, - "type": "number" - } - ], - [ - ")-token", - ")", - 19809, - 19809, - null - ], - [ - "semicolon-token", - ";", - 19810, - 19810, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 19811, - 19832, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 19833, - 19833, - null - ], - [ - "function-token", - "var(", - 19834, - 19837, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 19838, - 19852, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 19853, - 19853, - null - ], - [ - "semicolon-token", - ";", - 19854, - 19854, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 19855, - 19873, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 19874, - 19874, - null - ], - [ - "function-token", - "rgba(", - 19875, - 19879, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 19880, - 19880, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19881, - 19881, - null - ], - [ - "whitespace-token", - " ", - 19882, - 19882, - null - ], - [ - "number-token", - "0", - 19883, - 19883, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19884, - 19884, - null - ], - [ - "whitespace-token", - " ", - 19885, - 19885, - null - ], - [ - "number-token", - "0", - 19886, - 19886, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 19887, - 19887, - null - ], - [ - "whitespace-token", - " ", - 19888, - 19888, - null - ], - [ - "number-token", - "0.075", - 19889, - 19893, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 19894, - 19894, - null - ], - [ - "semicolon-token", - ";", - 19895, - 19895, - null - ], - [ - "ident-token", - "width", - 19896, - 19900, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 19901, - 19901, - null - ], - [ - "percentage-token", - "100%", - 19902, - 19905, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 19906, - 19906, - null - ], - [ - "ident-token", - "margin-bottom", - 19907, - 19919, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 19920, - 19920, - null - ], - [ - "dimension-token", - "1rem", - 19921, - 19924, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 19925, - 19925, - null - ], - [ - "ident-token", - "color", - 19926, - 19930, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 19931, - 19931, - null - ], - [ - "function-token", - "var(", - 19932, - 19935, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 19936, - 19951, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 19952, - 19952, - null - ], - [ - "semicolon-token", - ";", - 19953, - 19953, - null - ], - [ - "ident-token", - "vertical-align", - 19954, - 19967, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 19968, - 19968, - null - ], - [ - "ident-token", - "top", - 19969, - 19971, - { - "value": "top" - } - ], - [ - "semicolon-token", - ";", - 19972, - 19972, - null - ], - [ - "ident-token", - "border-color", - 19973, - 19984, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 19985, - 19985, - null - ], - [ - "function-token", - "var(", - 19986, - 19989, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 19990, - 20012, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 20013, - 20013, - null - ], - [ - "}-token", - "}", - 20014, - 20014, - null - ], - [ - "delim-token", - ".", - 20015, - 20015, - { - "value": "." - } - ], - [ - "ident-token", - "table", - 20016, - 20020, - { - "value": "table" - } - ], - [ - "delim-token", - ">", - 20021, - 20021, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20022, - 20022, - null - ], - [ - "function-token", - "not(", - 20023, - 20026, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20027, - 20033, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20034, - 20034, - null - ], - [ - "delim-token", - ">", - 20035, - 20035, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20036, - 20036, - { - "value": "*" - } - ], - [ - "delim-token", - ">", - 20037, - 20037, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20038, - 20038, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20039, - 20039, - null - ], - [ - "ident-token", - "padding", - 20040, - 20046, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 20047, - 20047, - null - ], - [ - "dimension-token", - ".5rem", - 20048, - 20052, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 20053, - 20053, - null - ], - [ - "dimension-token", - ".5rem", - 20054, - 20058, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 20059, - 20059, - null - ], - [ - "ident-token", - "background-color", - 20060, - 20075, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 20076, - 20076, - null - ], - [ - "function-token", - "var(", - 20077, - 20080, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-bg", - 20081, - 20093, - { - "value": "--bs-table-bg" - } - ], - [ - ")-token", - ")", - 20094, - 20094, - null - ], - [ - "semicolon-token", - ";", - 20095, - 20095, - null - ], - [ - "ident-token", - "border-bottom-width", - 20096, - 20114, - { - "value": "border-bottom-width" - } - ], - [ - "colon-token", - ":", - 20115, - 20115, - null - ], - [ - "dimension-token", - "1px", - 20116, - 20118, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 20119, - 20119, - null - ], - [ - "ident-token", - "box-shadow", - 20120, - 20129, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 20130, - 20130, - null - ], - [ - "ident-token", - "inset", - 20131, - 20135, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 20136, - 20136, - null - ], - [ - "number-token", - "0", - 20137, - 20137, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 20138, - 20138, - null - ], - [ - "number-token", - "0", - 20139, - 20139, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 20140, - 20140, - null - ], - [ - "number-token", - "0", - 20141, - 20141, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 20142, - 20142, - null - ], - [ - "dimension-token", - "9999px", - 20143, - 20148, - { - "value": 9999, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 20149, - 20149, - null - ], - [ - "function-token", - "var(", - 20150, - 20153, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-accent-bg", - 20154, - 20173, - { - "value": "--bs-table-accent-bg" - } - ], - [ - ")-token", - ")", - 20174, - 20174, - null - ], - [ - "}-token", - "}", - 20175, - 20175, - null - ], - [ - "delim-token", - ".", - 20176, - 20176, - { - "value": "." - } - ], - [ - "ident-token", - "table", - 20177, - 20181, - { - "value": "table" - } - ], - [ - "delim-token", - ">", - 20182, - 20182, - { - "value": ">" - } - ], - [ - "ident-token", - "tbody", - 20183, - 20187, - { - "value": "tbody" - } - ], - [ - "{-token", - "{", - 20188, - 20188, - null - ], - [ - "ident-token", - "vertical-align", - 20189, - 20202, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 20203, - 20203, - null - ], - [ - "ident-token", - "inherit", - 20204, - 20210, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 20211, - 20211, - null - ], - [ - "delim-token", - ".", - 20212, - 20212, - { - "value": "." - } - ], - [ - "ident-token", - "table", - 20213, - 20217, - { - "value": "table" - } - ], - [ - "delim-token", - ">", - 20218, - 20218, - { - "value": ">" - } - ], - [ - "ident-token", - "thead", - 20219, - 20223, - { - "value": "thead" - } - ], - [ - "{-token", - "{", - 20224, - 20224, - null - ], - [ - "ident-token", - "vertical-align", - 20225, - 20238, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 20239, - 20239, - null - ], - [ - "ident-token", - "bottom", - 20240, - 20245, - { - "value": "bottom" - } - ], - [ - "}-token", - "}", - 20246, - 20246, - null - ], - [ - "delim-token", - ".", - 20247, - 20247, - { - "value": "." - } - ], - [ - "ident-token", - "table-group-divider", - 20248, - 20266, - { - "value": "table-group-divider" - } - ], - [ - "{-token", - "{", - 20267, - 20267, - null - ], - [ - "ident-token", - "border-top", - 20268, - 20277, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 20278, - 20278, - null - ], - [ - "dimension-token", - "2px", - 20279, - 20281, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 20282, - 20282, - null - ], - [ - "ident-token", - "solid", - 20283, - 20287, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 20288, - 20288, - null - ], - [ - "ident-token", - "currentcolor", - 20289, - 20300, - { - "value": "currentcolor" - } - ], - [ - "}-token", - "}", - 20301, - 20301, - null - ], - [ - "delim-token", - ".", - 20302, - 20302, - { - "value": "." - } - ], - [ - "ident-token", - "caption-top", - 20303, - 20313, - { - "value": "caption-top" - } - ], - [ - "{-token", - "{", - 20314, - 20314, - null - ], - [ - "ident-token", - "caption-side", - 20315, - 20326, - { - "value": "caption-side" - } - ], - [ - "colon-token", - ":", - 20327, - 20327, - null - ], - [ - "ident-token", - "top", - 20328, - 20330, - { - "value": "top" - } - ], - [ - "}-token", - "}", - 20331, - 20331, - null - ], - [ - "delim-token", - ".", - 20332, - 20332, - { - "value": "." - } - ], - [ - "ident-token", - "table-sm", - 20333, - 20340, - { - "value": "table-sm" - } - ], - [ - "delim-token", - ">", - 20341, - 20341, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20342, - 20342, - null - ], - [ - "function-token", - "not(", - 20343, - 20346, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20347, - 20353, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20354, - 20354, - null - ], - [ - "delim-token", - ">", - 20355, - 20355, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20356, - 20356, - { - "value": "*" - } - ], - [ - "delim-token", - ">", - 20357, - 20357, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20358, - 20358, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20359, - 20359, - null - ], - [ - "ident-token", - "padding", - 20360, - 20366, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 20367, - 20367, - null - ], - [ - "dimension-token", - ".25rem", - 20368, - 20373, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 20374, - 20374, - null - ], - [ - "dimension-token", - ".25rem", - 20375, - 20380, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 20381, - 20381, - null - ], - [ - "delim-token", - ".", - 20382, - 20382, - { - "value": "." - } - ], - [ - "ident-token", - "table-bordered", - 20383, - 20396, - { - "value": "table-bordered" - } - ], - [ - "delim-token", - ">", - 20397, - 20397, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20398, - 20398, - null - ], - [ - "function-token", - "not(", - 20399, - 20402, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20403, - 20409, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20410, - 20410, - null - ], - [ - "delim-token", - ">", - 20411, - 20411, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20412, - 20412, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20413, - 20413, - null - ], - [ - "ident-token", - "border-width", - 20414, - 20425, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 20426, - 20426, - null - ], - [ - "dimension-token", - "1px", - 20427, - 20429, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 20430, - 20430, - null - ], - [ - "number-token", - "0", - 20431, - 20431, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 20432, - 20432, - null - ], - [ - "delim-token", - ".", - 20433, - 20433, - { - "value": "." - } - ], - [ - "ident-token", - "table-bordered", - 20434, - 20447, - { - "value": "table-bordered" - } - ], - [ - "delim-token", - ">", - 20448, - 20448, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20449, - 20449, - null - ], - [ - "function-token", - "not(", - 20450, - 20453, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20454, - 20460, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20461, - 20461, - null - ], - [ - "delim-token", - ">", - 20462, - 20462, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20463, - 20463, - { - "value": "*" - } - ], - [ - "delim-token", - ">", - 20464, - 20464, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20465, - 20465, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20466, - 20466, - null - ], - [ - "ident-token", - "border-width", - 20467, - 20478, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 20479, - 20479, - null - ], - [ - "number-token", - "0", - 20480, - 20480, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 20481, - 20481, - null - ], - [ - "dimension-token", - "1px", - 20482, - 20484, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 20485, - 20485, - null - ], - [ - "delim-token", - ".", - 20486, - 20486, - { - "value": "." - } - ], - [ - "ident-token", - "table-borderless", - 20487, - 20502, - { - "value": "table-borderless" - } - ], - [ - "delim-token", - ">", - 20503, - 20503, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20504, - 20504, - null - ], - [ - "function-token", - "not(", - 20505, - 20508, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20509, - 20515, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20516, - 20516, - null - ], - [ - "delim-token", - ">", - 20517, - 20517, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20518, - 20518, - { - "value": "*" - } - ], - [ - "delim-token", - ">", - 20519, - 20519, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20520, - 20520, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20521, - 20521, - null - ], - [ - "ident-token", - "border-bottom-width", - 20522, - 20540, - { - "value": "border-bottom-width" - } - ], - [ - "colon-token", - ":", - 20541, - 20541, - null - ], - [ - "number-token", - "0", - 20542, - 20542, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 20543, - 20543, - null - ], - [ - "delim-token", - ".", - 20544, - 20544, - { - "value": "." - } - ], - [ - "ident-token", - "table-borderless", - 20545, - 20560, - { - "value": "table-borderless" - } - ], - [ - "delim-token", - ">", - 20561, - 20561, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20562, - 20562, - null - ], - [ - "function-token", - "not(", - 20563, - 20566, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 20567, - 20567, - null - ], - [ - "ident-token", - "first-child", - 20568, - 20578, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 20579, - 20579, - null - ], - [ - "{-token", - "{", - 20580, - 20580, - null - ], - [ - "ident-token", - "border-top-width", - 20581, - 20596, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 20597, - 20597, - null - ], - [ - "number-token", - "0", - 20598, - 20598, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 20599, - 20599, - null - ], - [ - "delim-token", - ".", - 20600, - 20600, - { - "value": "." - } - ], - [ - "ident-token", - "table-striped", - 20601, - 20613, - { - "value": "table-striped" - } - ], - [ - "delim-token", - ">", - 20614, - 20614, - { - "value": ">" - } - ], - [ - "ident-token", - "tbody", - 20615, - 20619, - { - "value": "tbody" - } - ], - [ - "delim-token", - ">", - 20620, - 20620, - { - "value": ">" - } - ], - [ - "ident-token", - "tr", - 20621, - 20622, - { - "value": "tr" - } - ], - [ - "colon-token", - ":", - 20623, - 20623, - null - ], - [ - "function-token", - "nth-of-type(", - 20624, - 20635, - { - "value": "nth-of-type" - } - ], - [ - "ident-token", - "odd", - 20636, - 20638, - { - "value": "odd" - } - ], - [ - ")-token", - ")", - 20639, - 20639, - null - ], - [ - "delim-token", - ">", - 20640, - 20640, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20641, - 20641, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20642, - 20642, - null - ], - [ - "ident-token", - "--bs-table-accent-bg", - 20643, - 20662, - { - "value": "--bs-table-accent-bg" - } - ], - [ - "colon-token", - ":", - 20663, - 20663, - null - ], - [ - "function-token", - "var(", - 20664, - 20667, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-striped-bg", - 20668, - 20688, - { - "value": "--bs-table-striped-bg" - } - ], - [ - ")-token", - ")", - 20689, - 20689, - null - ], - [ - "semicolon-token", - ";", - 20690, - 20690, - null - ], - [ - "ident-token", - "color", - 20691, - 20695, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 20696, - 20696, - null - ], - [ - "function-token", - "var(", - 20697, - 20700, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-striped-color", - 20701, - 20724, - { - "value": "--bs-table-striped-color" - } - ], - [ - ")-token", - ")", - 20725, - 20725, - null - ], - [ - "}-token", - "}", - 20726, - 20726, - null - ], - [ - "delim-token", - ".", - 20727, - 20727, - { - "value": "." - } - ], - [ - "ident-token", - "table-striped-columns", - 20728, - 20748, - { - "value": "table-striped-columns" - } - ], - [ - "delim-token", - ">", - 20749, - 20749, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20750, - 20750, - null - ], - [ - "function-token", - "not(", - 20751, - 20754, - { - "value": "not" - } - ], - [ - "ident-token", - "caption", - 20755, - 20761, - { - "value": "caption" - } - ], - [ - ")-token", - ")", - 20762, - 20762, - null - ], - [ - "delim-token", - ">", - 20763, - 20763, - { - "value": ">" - } - ], - [ - "ident-token", - "tr", - 20764, - 20765, - { - "value": "tr" - } - ], - [ - "delim-token", - ">", - 20766, - 20766, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 20767, - 20767, - null - ], - [ - "function-token", - "nth-child(", - 20768, - 20777, - { - "value": "nth-child" - } - ], - [ - "dimension-token", - "2n", - 20778, - 20779, - { - "value": 2, - "type": "integer", - "unit": "n" - } - ], - [ - ")-token", - ")", - 20780, - 20780, - null - ], - [ - "{-token", - "{", - 20781, - 20781, - null - ], - [ - "ident-token", - "--bs-table-accent-bg", - 20782, - 20801, - { - "value": "--bs-table-accent-bg" - } - ], - [ - "colon-token", - ":", - 20802, - 20802, - null - ], - [ - "function-token", - "var(", - 20803, - 20806, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-striped-bg", - 20807, - 20827, - { - "value": "--bs-table-striped-bg" - } - ], - [ - ")-token", - ")", - 20828, - 20828, - null - ], - [ - "semicolon-token", - ";", - 20829, - 20829, - null - ], - [ - "ident-token", - "color", - 20830, - 20834, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 20835, - 20835, - null - ], - [ - "function-token", - "var(", - 20836, - 20839, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-striped-color", - 20840, - 20863, - { - "value": "--bs-table-striped-color" - } - ], - [ - ")-token", - ")", - 20864, - 20864, - null - ], - [ - "}-token", - "}", - 20865, - 20865, - null - ], - [ - "delim-token", - ".", - 20866, - 20866, - { - "value": "." - } - ], - [ - "ident-token", - "table-active", - 20867, - 20878, - { - "value": "table-active" - } - ], - [ - "{-token", - "{", - 20879, - 20879, - null - ], - [ - "ident-token", - "--bs-table-accent-bg", - 20880, - 20899, - { - "value": "--bs-table-accent-bg" - } - ], - [ - "colon-token", - ":", - 20900, - 20900, - null - ], - [ - "function-token", - "var(", - 20901, - 20904, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-active-bg", - 20905, - 20924, - { - "value": "--bs-table-active-bg" - } - ], - [ - ")-token", - ")", - 20925, - 20925, - null - ], - [ - "semicolon-token", - ";", - 20926, - 20926, - null - ], - [ - "ident-token", - "color", - 20927, - 20931, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 20932, - 20932, - null - ], - [ - "function-token", - "var(", - 20933, - 20936, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-active-color", - 20937, - 20959, - { - "value": "--bs-table-active-color" - } - ], - [ - ")-token", - ")", - 20960, - 20960, - null - ], - [ - "}-token", - "}", - 20961, - 20961, - null - ], - [ - "delim-token", - ".", - 20962, - 20962, - { - "value": "." - } - ], - [ - "ident-token", - "table-hover", - 20963, - 20973, - { - "value": "table-hover" - } - ], - [ - "delim-token", - ">", - 20974, - 20974, - { - "value": ">" - } - ], - [ - "ident-token", - "tbody", - 20975, - 20979, - { - "value": "tbody" - } - ], - [ - "delim-token", - ">", - 20980, - 20980, - { - "value": ">" - } - ], - [ - "ident-token", - "tr", - 20981, - 20982, - { - "value": "tr" - } - ], - [ - "colon-token", - ":", - 20983, - 20983, - null - ], - [ - "ident-token", - "hover", - 20984, - 20988, - { - "value": "hover" - } - ], - [ - "delim-token", - ">", - 20989, - 20989, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 20990, - 20990, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 20991, - 20991, - null - ], - [ - "ident-token", - "--bs-table-accent-bg", - 20992, - 21011, - { - "value": "--bs-table-accent-bg" - } - ], - [ - "colon-token", - ":", - 21012, - 21012, - null - ], - [ - "function-token", - "var(", - 21013, - 21016, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-hover-bg", - 21017, - 21035, - { - "value": "--bs-table-hover-bg" - } - ], - [ - ")-token", - ")", - 21036, - 21036, - null - ], - [ - "semicolon-token", - ";", - 21037, - 21037, - null - ], - [ - "ident-token", - "color", - 21038, - 21042, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 21043, - 21043, - null - ], - [ - "function-token", - "var(", - 21044, - 21047, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-hover-color", - 21048, - 21069, - { - "value": "--bs-table-hover-color" - } - ], - [ - ")-token", - ")", - 21070, - 21070, - null - ], - [ - "}-token", - "}", - 21071, - 21071, - null - ], - [ - "delim-token", - ".", - 21072, - 21072, - { - "value": "." - } - ], - [ - "ident-token", - "table-primary", - 21073, - 21085, - { - "value": "table-primary" - } - ], - [ - "{-token", - "{", - 21086, - 21086, - null - ], - [ - "ident-token", - "--bs-table-color", - 21087, - 21102, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 21103, - 21103, - null - ], - [ - "hash-token", - "#000", - 21104, - 21107, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21108, - 21108, - null - ], - [ - "ident-token", - "--bs-table-bg", - 21109, - 21121, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 21122, - 21122, - null - ], - [ - "hash-token", - "#cfe2ff", - 21123, - 21129, - { - "value": "cfe2ff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21130, - 21130, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 21131, - 21153, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 21154, - 21154, - null - ], - [ - "hash-token", - "#bacbe6", - 21155, - 21161, - { - "value": "bacbe6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21162, - 21162, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 21163, - 21183, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 21184, - 21184, - null - ], - [ - "hash-token", - "#c5d7f2", - 21185, - 21191, - { - "value": "c5d7f2", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21192, - 21192, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 21193, - 21216, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 21217, - 21217, - null - ], - [ - "hash-token", - "#000", - 21218, - 21221, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21222, - 21222, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 21223, - 21242, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 21243, - 21243, - null - ], - [ - "hash-token", - "#bacbe6", - 21244, - 21250, - { - "value": "bacbe6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21251, - 21251, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 21252, - 21274, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 21275, - 21275, - null - ], - [ - "hash-token", - "#000", - 21276, - 21279, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21280, - 21280, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 21281, - 21299, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 21300, - 21300, - null - ], - [ - "hash-token", - "#bfd1ec", - 21301, - 21307, - { - "value": "bfd1ec", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21308, - 21308, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 21309, - 21330, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 21331, - 21331, - null - ], - [ - "hash-token", - "#000", - 21332, - 21335, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21336, - 21336, - null - ], - [ - "ident-token", - "color", - 21337, - 21341, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 21342, - 21342, - null - ], - [ - "function-token", - "var(", - 21343, - 21346, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 21347, - 21362, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 21363, - 21363, - null - ], - [ - "semicolon-token", - ";", - 21364, - 21364, - null - ], - [ - "ident-token", - "border-color", - 21365, - 21376, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 21377, - 21377, - null - ], - [ - "function-token", - "var(", - 21378, - 21381, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 21382, - 21404, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 21405, - 21405, - null - ], - [ - "}-token", - "}", - 21406, - 21406, - null - ], - [ - "delim-token", - ".", - 21407, - 21407, - { - "value": "." - } - ], - [ - "ident-token", - "table-secondary", - 21408, - 21422, - { - "value": "table-secondary" - } - ], - [ - "{-token", - "{", - 21423, - 21423, - null - ], - [ - "ident-token", - "--bs-table-color", - 21424, - 21439, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 21440, - 21440, - null - ], - [ - "hash-token", - "#000", - 21441, - 21444, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21445, - 21445, - null - ], - [ - "ident-token", - "--bs-table-bg", - 21446, - 21458, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 21459, - 21459, - null - ], - [ - "hash-token", - "#e2e3e5", - 21460, - 21466, - { - "value": "e2e3e5", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21467, - 21467, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 21468, - 21490, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 21491, - 21491, - null - ], - [ - "hash-token", - "#cbccce", - 21492, - 21498, - { - "value": "cbccce", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21499, - 21499, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 21500, - 21520, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 21521, - 21521, - null - ], - [ - "hash-token", - "#d7d8da", - 21522, - 21528, - { - "value": "d7d8da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21529, - 21529, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 21530, - 21553, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 21554, - 21554, - null - ], - [ - "hash-token", - "#000", - 21555, - 21558, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21559, - 21559, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 21560, - 21579, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 21580, - 21580, - null - ], - [ - "hash-token", - "#cbccce", - 21581, - 21587, - { - "value": "cbccce", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21588, - 21588, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 21589, - 21611, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 21612, - 21612, - null - ], - [ - "hash-token", - "#000", - 21613, - 21616, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21617, - 21617, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 21618, - 21636, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 21637, - 21637, - null - ], - [ - "hash-token", - "#d1d2d4", - 21638, - 21644, - { - "value": "d1d2d4", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21645, - 21645, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 21646, - 21667, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 21668, - 21668, - null - ], - [ - "hash-token", - "#000", - 21669, - 21672, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21673, - 21673, - null - ], - [ - "ident-token", - "color", - 21674, - 21678, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 21679, - 21679, - null - ], - [ - "function-token", - "var(", - 21680, - 21683, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 21684, - 21699, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 21700, - 21700, - null - ], - [ - "semicolon-token", - ";", - 21701, - 21701, - null - ], - [ - "ident-token", - "border-color", - 21702, - 21713, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 21714, - 21714, - null - ], - [ - "function-token", - "var(", - 21715, - 21718, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 21719, - 21741, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 21742, - 21742, - null - ], - [ - "}-token", - "}", - 21743, - 21743, - null - ], - [ - "delim-token", - ".", - 21744, - 21744, - { - "value": "." - } - ], - [ - "ident-token", - "table-success", - 21745, - 21757, - { - "value": "table-success" - } - ], - [ - "{-token", - "{", - 21758, - 21758, - null - ], - [ - "ident-token", - "--bs-table-color", - 21759, - 21774, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 21775, - 21775, - null - ], - [ - "hash-token", - "#000", - 21776, - 21779, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21780, - 21780, - null - ], - [ - "ident-token", - "--bs-table-bg", - 21781, - 21793, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 21794, - 21794, - null - ], - [ - "hash-token", - "#d1e7dd", - 21795, - 21801, - { - "value": "d1e7dd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21802, - 21802, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 21803, - 21825, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 21826, - 21826, - null - ], - [ - "hash-token", - "#bcd0c7", - 21827, - 21833, - { - "value": "bcd0c7", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21834, - 21834, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 21835, - 21855, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 21856, - 21856, - null - ], - [ - "hash-token", - "#c7dbd2", - 21857, - 21863, - { - "value": "c7dbd2", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21864, - 21864, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 21865, - 21888, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 21889, - 21889, - null - ], - [ - "hash-token", - "#000", - 21890, - 21893, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21894, - 21894, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 21895, - 21914, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 21915, - 21915, - null - ], - [ - "hash-token", - "#bcd0c7", - 21916, - 21922, - { - "value": "bcd0c7", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21923, - 21923, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 21924, - 21946, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 21947, - 21947, - null - ], - [ - "hash-token", - "#000", - 21948, - 21951, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 21952, - 21952, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 21953, - 21971, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 21972, - 21972, - null - ], - [ - "hash-token", - "#c1d6cc", - 21973, - 21979, - { - "value": "c1d6cc", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 21980, - 21980, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 21981, - 22002, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 22003, - 22003, - null - ], - [ - "hash-token", - "#000", - 22004, - 22007, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22008, - 22008, - null - ], - [ - "ident-token", - "color", - 22009, - 22013, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 22014, - 22014, - null - ], - [ - "function-token", - "var(", - 22015, - 22018, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 22019, - 22034, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 22035, - 22035, - null - ], - [ - "semicolon-token", - ";", - 22036, - 22036, - null - ], - [ - "ident-token", - "border-color", - 22037, - 22048, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 22049, - 22049, - null - ], - [ - "function-token", - "var(", - 22050, - 22053, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 22054, - 22076, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 22077, - 22077, - null - ], - [ - "}-token", - "}", - 22078, - 22078, - null - ], - [ - "delim-token", - ".", - 22079, - 22079, - { - "value": "." - } - ], - [ - "ident-token", - "table-info", - 22080, - 22089, - { - "value": "table-info" - } - ], - [ - "{-token", - "{", - 22090, - 22090, - null - ], - [ - "ident-token", - "--bs-table-color", - 22091, - 22106, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 22107, - 22107, - null - ], - [ - "hash-token", - "#000", - 22108, - 22111, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22112, - 22112, - null - ], - [ - "ident-token", - "--bs-table-bg", - 22113, - 22125, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 22126, - 22126, - null - ], - [ - "hash-token", - "#cff4fc", - 22127, - 22133, - { - "value": "cff4fc", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22134, - 22134, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 22135, - 22157, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 22158, - 22158, - null - ], - [ - "hash-token", - "#badce3", - 22159, - 22165, - { - "value": "badce3", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22166, - 22166, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 22167, - 22187, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 22188, - 22188, - null - ], - [ - "hash-token", - "#c5e8ef", - 22189, - 22195, - { - "value": "c5e8ef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22196, - 22196, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 22197, - 22220, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 22221, - 22221, - null - ], - [ - "hash-token", - "#000", - 22222, - 22225, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22226, - 22226, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 22227, - 22246, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 22247, - 22247, - null - ], - [ - "hash-token", - "#badce3", - 22248, - 22254, - { - "value": "badce3", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22255, - 22255, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 22256, - 22278, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 22279, - 22279, - null - ], - [ - "hash-token", - "#000", - 22280, - 22283, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22284, - 22284, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 22285, - 22303, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 22304, - 22304, - null - ], - [ - "hash-token", - "#bfe2e9", - 22305, - 22311, - { - "value": "bfe2e9", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22312, - 22312, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 22313, - 22334, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 22335, - 22335, - null - ], - [ - "hash-token", - "#000", - 22336, - 22339, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22340, - 22340, - null - ], - [ - "ident-token", - "color", - 22341, - 22345, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 22346, - 22346, - null - ], - [ - "function-token", - "var(", - 22347, - 22350, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 22351, - 22366, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 22367, - 22367, - null - ], - [ - "semicolon-token", - ";", - 22368, - 22368, - null - ], - [ - "ident-token", - "border-color", - 22369, - 22380, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 22381, - 22381, - null - ], - [ - "function-token", - "var(", - 22382, - 22385, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 22386, - 22408, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 22409, - 22409, - null - ], - [ - "}-token", - "}", - 22410, - 22410, - null - ], - [ - "delim-token", - ".", - 22411, - 22411, - { - "value": "." - } - ], - [ - "ident-token", - "table-warning", - 22412, - 22424, - { - "value": "table-warning" - } - ], - [ - "{-token", - "{", - 22425, - 22425, - null - ], - [ - "ident-token", - "--bs-table-color", - 22426, - 22441, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 22442, - 22442, - null - ], - [ - "hash-token", - "#000", - 22443, - 22446, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22447, - 22447, - null - ], - [ - "ident-token", - "--bs-table-bg", - 22448, - 22460, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 22461, - 22461, - null - ], - [ - "hash-token", - "#fff3cd", - 22462, - 22468, - { - "value": "fff3cd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22469, - 22469, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 22470, - 22492, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 22493, - 22493, - null - ], - [ - "hash-token", - "#e6dbb9", - 22494, - 22500, - { - "value": "e6dbb9", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22501, - 22501, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 22502, - 22522, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 22523, - 22523, - null - ], - [ - "hash-token", - "#f2e7c3", - 22524, - 22530, - { - "value": "f2e7c3", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22531, - 22531, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 22532, - 22555, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 22556, - 22556, - null - ], - [ - "hash-token", - "#000", - 22557, - 22560, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22561, - 22561, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 22562, - 22581, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 22582, - 22582, - null - ], - [ - "hash-token", - "#e6dbb9", - 22583, - 22589, - { - "value": "e6dbb9", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22590, - 22590, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 22591, - 22613, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 22614, - 22614, - null - ], - [ - "hash-token", - "#000", - 22615, - 22618, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22619, - 22619, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 22620, - 22638, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 22639, - 22639, - null - ], - [ - "hash-token", - "#ece1be", - 22640, - 22646, - { - "value": "ece1be", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22647, - 22647, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 22648, - 22669, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 22670, - 22670, - null - ], - [ - "hash-token", - "#000", - 22671, - 22674, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22675, - 22675, - null - ], - [ - "ident-token", - "color", - 22676, - 22680, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 22681, - 22681, - null - ], - [ - "function-token", - "var(", - 22682, - 22685, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 22686, - 22701, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 22702, - 22702, - null - ], - [ - "semicolon-token", - ";", - 22703, - 22703, - null - ], - [ - "ident-token", - "border-color", - 22704, - 22715, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 22716, - 22716, - null - ], - [ - "function-token", - "var(", - 22717, - 22720, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 22721, - 22743, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 22744, - 22744, - null - ], - [ - "}-token", - "}", - 22745, - 22745, - null - ], - [ - "delim-token", - ".", - 22746, - 22746, - { - "value": "." - } - ], - [ - "ident-token", - "table-danger", - 22747, - 22758, - { - "value": "table-danger" - } - ], - [ - "{-token", - "{", - 22759, - 22759, - null - ], - [ - "ident-token", - "--bs-table-color", - 22760, - 22775, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 22776, - 22776, - null - ], - [ - "hash-token", - "#000", - 22777, - 22780, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22781, - 22781, - null - ], - [ - "ident-token", - "--bs-table-bg", - 22782, - 22794, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 22795, - 22795, - null - ], - [ - "hash-token", - "#f8d7da", - 22796, - 22802, - { - "value": "f8d7da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22803, - 22803, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 22804, - 22826, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 22827, - 22827, - null - ], - [ - "hash-token", - "#dfc2c4", - 22828, - 22834, - { - "value": "dfc2c4", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22835, - 22835, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 22836, - 22856, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 22857, - 22857, - null - ], - [ - "hash-token", - "#eccccf", - 22858, - 22864, - { - "value": "eccccf", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22865, - 22865, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 22866, - 22889, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 22890, - 22890, - null - ], - [ - "hash-token", - "#000", - 22891, - 22894, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22895, - 22895, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 22896, - 22915, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 22916, - 22916, - null - ], - [ - "hash-token", - "#dfc2c4", - 22917, - 22923, - { - "value": "dfc2c4", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22924, - 22924, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 22925, - 22947, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 22948, - 22948, - null - ], - [ - "hash-token", - "#000", - 22949, - 22952, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 22953, - 22953, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 22954, - 22972, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 22973, - 22973, - null - ], - [ - "hash-token", - "#e5c7ca", - 22974, - 22980, - { - "value": "e5c7ca", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 22981, - 22981, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 22982, - 23003, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 23004, - 23004, - null - ], - [ - "hash-token", - "#000", - 23005, - 23008, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23009, - 23009, - null - ], - [ - "ident-token", - "color", - 23010, - 23014, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 23015, - 23015, - null - ], - [ - "function-token", - "var(", - 23016, - 23019, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 23020, - 23035, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 23036, - 23036, - null - ], - [ - "semicolon-token", - ";", - 23037, - 23037, - null - ], - [ - "ident-token", - "border-color", - 23038, - 23049, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 23050, - 23050, - null - ], - [ - "function-token", - "var(", - 23051, - 23054, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 23055, - 23077, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 23078, - 23078, - null - ], - [ - "}-token", - "}", - 23079, - 23079, - null - ], - [ - "delim-token", - ".", - 23080, - 23080, - { - "value": "." - } - ], - [ - "ident-token", - "table-light", - 23081, - 23091, - { - "value": "table-light" - } - ], - [ - "{-token", - "{", - 23092, - 23092, - null - ], - [ - "ident-token", - "--bs-table-color", - 23093, - 23108, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 23109, - 23109, - null - ], - [ - "hash-token", - "#000", - 23110, - 23113, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23114, - 23114, - null - ], - [ - "ident-token", - "--bs-table-bg", - 23115, - 23127, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 23128, - 23128, - null - ], - [ - "hash-token", - "#f8f9fa", - 23129, - 23135, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23136, - 23136, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 23137, - 23159, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 23160, - 23160, - null - ], - [ - "hash-token", - "#dfe0e1", - 23161, - 23167, - { - "value": "dfe0e1", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23168, - 23168, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 23169, - 23189, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 23190, - 23190, - null - ], - [ - "hash-token", - "#ecedee", - 23191, - 23197, - { - "value": "ecedee", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23198, - 23198, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 23199, - 23222, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 23223, - 23223, - null - ], - [ - "hash-token", - "#000", - 23224, - 23227, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23228, - 23228, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 23229, - 23248, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 23249, - 23249, - null - ], - [ - "hash-token", - "#dfe0e1", - 23250, - 23256, - { - "value": "dfe0e1", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23257, - 23257, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 23258, - 23280, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 23281, - 23281, - null - ], - [ - "hash-token", - "#000", - 23282, - 23285, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23286, - 23286, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 23287, - 23305, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 23306, - 23306, - null - ], - [ - "hash-token", - "#e5e6e7", - 23307, - 23313, - { - "value": "e5e6e7", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23314, - 23314, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 23315, - 23336, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 23337, - 23337, - null - ], - [ - "hash-token", - "#000", - 23338, - 23341, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23342, - 23342, - null - ], - [ - "ident-token", - "color", - 23343, - 23347, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 23348, - 23348, - null - ], - [ - "function-token", - "var(", - 23349, - 23352, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 23353, - 23368, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 23369, - 23369, - null - ], - [ - "semicolon-token", - ";", - 23370, - 23370, - null - ], - [ - "ident-token", - "border-color", - 23371, - 23382, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 23383, - 23383, - null - ], - [ - "function-token", - "var(", - 23384, - 23387, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 23388, - 23410, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 23411, - 23411, - null - ], - [ - "}-token", - "}", - 23412, - 23412, - null - ], - [ - "delim-token", - ".", - 23413, - 23413, - { - "value": "." - } - ], - [ - "ident-token", - "table-dark", - 23414, - 23423, - { - "value": "table-dark" - } - ], - [ - "{-token", - "{", - 23424, - 23424, - null - ], - [ - "ident-token", - "--bs-table-color", - 23425, - 23440, - { - "value": "--bs-table-color" - } - ], - [ - "colon-token", - ":", - 23441, - 23441, - null - ], - [ - "hash-token", - "#fff", - 23442, - 23445, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23446, - 23446, - null - ], - [ - "ident-token", - "--bs-table-bg", - 23447, - 23459, - { - "value": "--bs-table-bg" - } - ], - [ - "colon-token", - ":", - 23460, - 23460, - null - ], - [ - "hash-token", - "#212529", - 23461, - 23467, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23468, - 23468, - null - ], - [ - "ident-token", - "--bs-table-border-color", - 23469, - 23491, - { - "value": "--bs-table-border-color" - } - ], - [ - "colon-token", - ":", - 23492, - 23492, - null - ], - [ - "hash-token", - "#373b3e", - 23493, - 23499, - { - "value": "373b3e", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23500, - 23500, - null - ], - [ - "ident-token", - "--bs-table-striped-bg", - 23501, - 23521, - { - "value": "--bs-table-striped-bg" - } - ], - [ - "colon-token", - ":", - 23522, - 23522, - null - ], - [ - "hash-token", - "#2c3034", - 23523, - 23529, - { - "value": "2c3034", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23530, - 23530, - null - ], - [ - "ident-token", - "--bs-table-striped-color", - 23531, - 23554, - { - "value": "--bs-table-striped-color" - } - ], - [ - "colon-token", - ":", - 23555, - 23555, - null - ], - [ - "hash-token", - "#fff", - 23556, - 23559, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23560, - 23560, - null - ], - [ - "ident-token", - "--bs-table-active-bg", - 23561, - 23580, - { - "value": "--bs-table-active-bg" - } - ], - [ - "colon-token", - ":", - 23581, - 23581, - null - ], - [ - "hash-token", - "#373b3e", - 23582, - 23588, - { - "value": "373b3e", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23589, - 23589, - null - ], - [ - "ident-token", - "--bs-table-active-color", - 23590, - 23612, - { - "value": "--bs-table-active-color" - } - ], - [ - "colon-token", - ":", - 23613, - 23613, - null - ], - [ - "hash-token", - "#fff", - 23614, - 23617, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23618, - 23618, - null - ], - [ - "ident-token", - "--bs-table-hover-bg", - 23619, - 23637, - { - "value": "--bs-table-hover-bg" - } - ], - [ - "colon-token", - ":", - 23638, - 23638, - null - ], - [ - "hash-token", - "#323539", - 23639, - 23645, - { - "value": "323539", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 23646, - 23646, - null - ], - [ - "ident-token", - "--bs-table-hover-color", - 23647, - 23668, - { - "value": "--bs-table-hover-color" - } - ], - [ - "colon-token", - ":", - 23669, - 23669, - null - ], - [ - "hash-token", - "#fff", - 23670, - 23673, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 23674, - 23674, - null - ], - [ - "ident-token", - "color", - 23675, - 23679, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 23680, - 23680, - null - ], - [ - "function-token", - "var(", - 23681, - 23684, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-color", - 23685, - 23700, - { - "value": "--bs-table-color" - } - ], - [ - ")-token", - ")", - 23701, - 23701, - null - ], - [ - "semicolon-token", - ";", - 23702, - 23702, - null - ], - [ - "ident-token", - "border-color", - 23703, - 23714, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 23715, - 23715, - null - ], - [ - "function-token", - "var(", - 23716, - 23719, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-table-border-color", - 23720, - 23742, - { - "value": "--bs-table-border-color" - } - ], - [ - ")-token", - ")", - 23743, - 23743, - null - ], - [ - "}-token", - "}", - 23744, - 23744, - null - ], - [ - "delim-token", - ".", - 23745, - 23745, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive", - 23746, - 23761, - { - "value": "table-responsive" - } - ], - [ - "{-token", - "{", - 23762, - 23762, - null - ], - [ - "ident-token", - "overflow-x", - 23763, - 23772, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 23773, - 23773, - null - ], - [ - "ident-token", - "auto", - 23774, - 23777, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 23778, - 23778, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 23779, - 23804, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 23805, - 23805, - null - ], - [ - "ident-token", - "touch", - 23806, - 23810, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 23811, - 23811, - null - ], - [ - "at-keyword-token", - "@media", - 23812, - 23817, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 23818, - 23818, - null - ], - [ - "(-token", - "(", - 23819, - 23819, - null - ], - [ - "ident-token", - "max-width", - 23820, - 23828, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 23829, - 23829, - null - ], - [ - "dimension-token", - "575.98px", - 23830, - 23837, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 23838, - 23838, - null - ], - [ - "{-token", - "{", - 23839, - 23839, - null - ], - [ - "delim-token", - ".", - 23840, - 23840, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive-sm", - 23841, - 23859, - { - "value": "table-responsive-sm" - } - ], - [ - "{-token", - "{", - 23860, - 23860, - null - ], - [ - "ident-token", - "overflow-x", - 23861, - 23870, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 23871, - 23871, - null - ], - [ - "ident-token", - "auto", - 23872, - 23875, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 23876, - 23876, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 23877, - 23902, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 23903, - 23903, - null - ], - [ - "ident-token", - "touch", - 23904, - 23908, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 23909, - 23909, - null - ], - [ - "}-token", - "}", - 23910, - 23910, - null - ], - [ - "at-keyword-token", - "@media", - 23911, - 23916, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 23917, - 23917, - null - ], - [ - "(-token", - "(", - 23918, - 23918, - null - ], - [ - "ident-token", - "max-width", - 23919, - 23927, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 23928, - 23928, - null - ], - [ - "dimension-token", - "767.98px", - 23929, - 23936, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 23937, - 23937, - null - ], - [ - "{-token", - "{", - 23938, - 23938, - null - ], - [ - "delim-token", - ".", - 23939, - 23939, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive-md", - 23940, - 23958, - { - "value": "table-responsive-md" - } - ], - [ - "{-token", - "{", - 23959, - 23959, - null - ], - [ - "ident-token", - "overflow-x", - 23960, - 23969, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 23970, - 23970, - null - ], - [ - "ident-token", - "auto", - 23971, - 23974, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 23975, - 23975, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 23976, - 24001, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 24002, - 24002, - null - ], - [ - "ident-token", - "touch", - 24003, - 24007, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 24008, - 24008, - null - ], - [ - "}-token", - "}", - 24009, - 24009, - null - ], - [ - "at-keyword-token", - "@media", - 24010, - 24015, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 24016, - 24016, - null - ], - [ - "(-token", - "(", - 24017, - 24017, - null - ], - [ - "ident-token", - "max-width", - 24018, - 24026, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 24027, - 24027, - null - ], - [ - "dimension-token", - "991.98px", - 24028, - 24035, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24036, - 24036, - null - ], - [ - "{-token", - "{", - 24037, - 24037, - null - ], - [ - "delim-token", - ".", - 24038, - 24038, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive-lg", - 24039, - 24057, - { - "value": "table-responsive-lg" - } - ], - [ - "{-token", - "{", - 24058, - 24058, - null - ], - [ - "ident-token", - "overflow-x", - 24059, - 24068, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 24069, - 24069, - null - ], - [ - "ident-token", - "auto", - 24070, - 24073, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 24074, - 24074, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 24075, - 24100, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 24101, - 24101, - null - ], - [ - "ident-token", - "touch", - 24102, - 24106, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 24107, - 24107, - null - ], - [ - "}-token", - "}", - 24108, - 24108, - null - ], - [ - "at-keyword-token", - "@media", - 24109, - 24114, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 24115, - 24115, - null - ], - [ - "(-token", - "(", - 24116, - 24116, - null - ], - [ - "ident-token", - "max-width", - 24117, - 24125, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 24126, - 24126, - null - ], - [ - "dimension-token", - "1199.98px", - 24127, - 24135, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24136, - 24136, - null - ], - [ - "{-token", - "{", - 24137, - 24137, - null - ], - [ - "delim-token", - ".", - 24138, - 24138, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive-xl", - 24139, - 24157, - { - "value": "table-responsive-xl" - } - ], - [ - "{-token", - "{", - 24158, - 24158, - null - ], - [ - "ident-token", - "overflow-x", - 24159, - 24168, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 24169, - 24169, - null - ], - [ - "ident-token", - "auto", - 24170, - 24173, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 24174, - 24174, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 24175, - 24200, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 24201, - 24201, - null - ], - [ - "ident-token", - "touch", - 24202, - 24206, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 24207, - 24207, - null - ], - [ - "}-token", - "}", - 24208, - 24208, - null - ], - [ - "at-keyword-token", - "@media", - 24209, - 24214, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 24215, - 24215, - null - ], - [ - "(-token", - "(", - 24216, - 24216, - null - ], - [ - "ident-token", - "max-width", - 24217, - 24225, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 24226, - 24226, - null - ], - [ - "dimension-token", - "1399.98px", - 24227, - 24235, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24236, - 24236, - null - ], - [ - "{-token", - "{", - 24237, - 24237, - null - ], - [ - "delim-token", - ".", - 24238, - 24238, - { - "value": "." - } - ], - [ - "ident-token", - "table-responsive-xxl", - 24239, - 24258, - { - "value": "table-responsive-xxl" - } - ], - [ - "{-token", - "{", - 24259, - 24259, - null - ], - [ - "ident-token", - "overflow-x", - 24260, - 24269, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 24270, - 24270, - null - ], - [ - "ident-token", - "auto", - 24271, - 24274, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 24275, - 24275, - null - ], - [ - "ident-token", - "-webkit-overflow-scrolling", - 24276, - 24301, - { - "value": "-webkit-overflow-scrolling" - } - ], - [ - "colon-token", - ":", - 24302, - 24302, - null - ], - [ - "ident-token", - "touch", - 24303, - 24307, - { - "value": "touch" - } - ], - [ - "}-token", - "}", - 24308, - 24308, - null - ], - [ - "}-token", - "}", - 24309, - 24309, - null - ], - [ - "delim-token", - ".", - 24310, - 24310, - { - "value": "." - } - ], - [ - "ident-token", - "form-label", - 24311, - 24320, - { - "value": "form-label" - } - ], - [ - "{-token", - "{", - 24321, - 24321, - null - ], - [ - "ident-token", - "margin-bottom", - 24322, - 24334, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 24335, - 24335, - null - ], - [ - "dimension-token", - ".5rem", - 24336, - 24340, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 24341, - 24341, - null - ], - [ - "delim-token", - ".", - 24342, - 24342, - { - "value": "." - } - ], - [ - "ident-token", - "col-form-label", - 24343, - 24356, - { - "value": "col-form-label" - } - ], - [ - "{-token", - "{", - 24357, - 24357, - null - ], - [ - "ident-token", - "padding-top", - 24358, - 24368, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 24369, - 24369, - null - ], - [ - "function-token", - "calc(", - 24370, - 24374, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375rem", - 24375, - 24381, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24382, - 24382, - null - ], - [ - "delim-token", - "+", - 24383, - 24383, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24384, - 24384, - null - ], - [ - "dimension-token", - "1px", - 24385, - 24387, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24388, - 24388, - null - ], - [ - "semicolon-token", - ";", - 24389, - 24389, - null - ], - [ - "ident-token", - "padding-bottom", - 24390, - 24403, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 24404, - 24404, - null - ], - [ - "function-token", - "calc(", - 24405, - 24409, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375rem", - 24410, - 24416, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24417, - 24417, - null - ], - [ - "delim-token", - "+", - 24418, - 24418, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24419, - 24419, - null - ], - [ - "dimension-token", - "1px", - 24420, - 24422, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24423, - 24423, - null - ], - [ - "semicolon-token", - ";", - 24424, - 24424, - null - ], - [ - "ident-token", - "margin-bottom", - 24425, - 24437, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 24438, - 24438, - null - ], - [ - "number-token", - "0", - 24439, - 24439, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 24440, - 24440, - null - ], - [ - "ident-token", - "font-size", - 24441, - 24449, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 24450, - 24450, - null - ], - [ - "ident-token", - "inherit", - 24451, - 24457, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 24458, - 24458, - null - ], - [ - "ident-token", - "line-height", - 24459, - 24469, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 24470, - 24470, - null - ], - [ - "number-token", - "1.5", - 24471, - 24473, - { - "value": 1.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 24474, - 24474, - null - ], - [ - "delim-token", - ".", - 24475, - 24475, - { - "value": "." - } - ], - [ - "ident-token", - "col-form-label-lg", - 24476, - 24492, - { - "value": "col-form-label-lg" - } - ], - [ - "{-token", - "{", - 24493, - 24493, - null - ], - [ - "ident-token", - "padding-top", - 24494, - 24504, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 24505, - 24505, - null - ], - [ - "function-token", - "calc(", - 24506, - 24510, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".5rem", - 24511, - 24515, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24516, - 24516, - null - ], - [ - "delim-token", - "+", - 24517, - 24517, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24518, - 24518, - null - ], - [ - "dimension-token", - "1px", - 24519, - 24521, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24522, - 24522, - null - ], - [ - "semicolon-token", - ";", - 24523, - 24523, - null - ], - [ - "ident-token", - "padding-bottom", - 24524, - 24537, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 24538, - 24538, - null - ], - [ - "function-token", - "calc(", - 24539, - 24543, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".5rem", - 24544, - 24548, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24549, - 24549, - null - ], - [ - "delim-token", - "+", - 24550, - 24550, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24551, - 24551, - null - ], - [ - "dimension-token", - "1px", - 24552, - 24554, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24555, - 24555, - null - ], - [ - "semicolon-token", - ";", - 24556, - 24556, - null - ], - [ - "ident-token", - "font-size", - 24557, - 24565, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 24566, - 24566, - null - ], - [ - "dimension-token", - "1.25rem", - 24567, - 24573, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 24574, - 24574, - null - ], - [ - "delim-token", - ".", - 24575, - 24575, - { - "value": "." - } - ], - [ - "ident-token", - "col-form-label-sm", - 24576, - 24592, - { - "value": "col-form-label-sm" - } - ], - [ - "{-token", - "{", - 24593, - 24593, - null - ], - [ - "ident-token", - "padding-top", - 24594, - 24604, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 24605, - 24605, - null - ], - [ - "function-token", - "calc(", - 24606, - 24610, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".25rem", - 24611, - 24616, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24617, - 24617, - null - ], - [ - "delim-token", - "+", - 24618, - 24618, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24619, - 24619, - null - ], - [ - "dimension-token", - "1px", - 24620, - 24622, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24623, - 24623, - null - ], - [ - "semicolon-token", - ";", - 24624, - 24624, - null - ], - [ - "ident-token", - "padding-bottom", - 24625, - 24638, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 24639, - 24639, - null - ], - [ - "function-token", - "calc(", - 24640, - 24644, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".25rem", - 24645, - 24650, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24651, - 24651, - null - ], - [ - "delim-token", - "+", - 24652, - 24652, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 24653, - 24653, - null - ], - [ - "dimension-token", - "1px", - 24654, - 24656, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 24657, - 24657, - null - ], - [ - "semicolon-token", - ";", - 24658, - 24658, - null - ], - [ - "ident-token", - "font-size", - 24659, - 24667, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 24668, - 24668, - null - ], - [ - "dimension-token", - ".875rem", - 24669, - 24675, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 24676, - 24676, - null - ], - [ - "delim-token", - ".", - 24677, - 24677, - { - "value": "." - } - ], - [ - "ident-token", - "form-text", - 24678, - 24686, - { - "value": "form-text" - } - ], - [ - "{-token", - "{", - 24687, - 24687, - null - ], - [ - "ident-token", - "margin-top", - 24688, - 24697, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 24698, - 24698, - null - ], - [ - "dimension-token", - ".25rem", - 24699, - 24704, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 24705, - 24705, - null - ], - [ - "ident-token", - "font-size", - 24706, - 24714, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 24715, - 24715, - null - ], - [ - "dimension-token", - ".875em", - 24716, - 24721, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 24722, - 24722, - null - ], - [ - "ident-token", - "color", - 24723, - 24727, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 24728, - 24728, - null - ], - [ - "hash-token", - "#6c757d", - 24729, - 24735, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 24736, - 24736, - null - ], - [ - "delim-token", - ".", - 24737, - 24737, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 24738, - 24749, - { - "value": "form-control" - } - ], - [ - "{-token", - "{", - 24750, - 24750, - null - ], - [ - "ident-token", - "display", - 24751, - 24757, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 24758, - 24758, - null - ], - [ - "ident-token", - "block", - 24759, - 24763, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 24764, - 24764, - null - ], - [ - "ident-token", - "width", - 24765, - 24769, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 24770, - 24770, - null - ], - [ - "percentage-token", - "100%", - 24771, - 24774, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 24775, - 24775, - null - ], - [ - "ident-token", - "padding", - 24776, - 24782, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 24783, - 24783, - null - ], - [ - "dimension-token", - ".375rem", - 24784, - 24790, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 24791, - 24791, - null - ], - [ - "dimension-token", - ".75rem", - 24792, - 24797, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 24798, - 24798, - null - ], - [ - "ident-token", - "font-size", - 24799, - 24807, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 24808, - 24808, - null - ], - [ - "dimension-token", - "1rem", - 24809, - 24812, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 24813, - 24813, - null - ], - [ - "ident-token", - "font-weight", - 24814, - 24824, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 24825, - 24825, - null - ], - [ - "number-token", - "400", - 24826, - 24828, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 24829, - 24829, - null - ], - [ - "ident-token", - "line-height", - 24830, - 24840, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 24841, - 24841, - null - ], - [ - "number-token", - "1.5", - 24842, - 24844, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 24845, - 24845, - null - ], - [ - "ident-token", - "color", - 24846, - 24850, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 24851, - 24851, - null - ], - [ - "hash-token", - "#212529", - 24852, - 24858, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 24859, - 24859, - null - ], - [ - "ident-token", - "background-color", - 24860, - 24875, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 24876, - 24876, - null - ], - [ - "hash-token", - "#fff", - 24877, - 24880, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 24881, - 24881, - null - ], - [ - "ident-token", - "background-clip", - 24882, - 24896, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 24897, - 24897, - null - ], - [ - "ident-token", - "padding-box", - 24898, - 24908, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 24909, - 24909, - null - ], - [ - "ident-token", - "border", - 24910, - 24915, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 24916, - 24916, - null - ], - [ - "dimension-token", - "1px", - 24917, - 24919, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 24920, - 24920, - null - ], - [ - "ident-token", - "solid", - 24921, - 24925, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 24926, - 24926, - null - ], - [ - "hash-token", - "#ced4da", - 24927, - 24933, - { - "value": "ced4da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 24934, - 24934, - null - ], - [ - "ident-token", - "-webkit-appearance", - 24935, - 24952, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 24953, - 24953, - null - ], - [ - "ident-token", - "none", - 24954, - 24957, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 24958, - 24958, - null - ], - [ - "ident-token", - "-moz-appearance", - 24959, - 24973, - { - "value": "-moz-appearance" - } - ], - [ - "colon-token", - ":", - 24974, - 24974, - null - ], - [ - "ident-token", - "none", - 24975, - 24978, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 24979, - 24979, - null - ], - [ - "ident-token", - "appearance", - 24980, - 24989, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 24990, - 24990, - null - ], - [ - "ident-token", - "none", - 24991, - 24994, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 24995, - 24995, - null - ], - [ - "ident-token", - "border-radius", - 24996, - 25008, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 25009, - 25009, - null - ], - [ - "dimension-token", - ".375rem", - 25010, - 25016, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 25017, - 25017, - null - ], - [ - "ident-token", - "transition", - 25018, - 25027, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 25028, - 25028, - null - ], - [ - "ident-token", - "border-color", - 25029, - 25040, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 25041, - 25041, - null - ], - [ - "dimension-token", - ".15s", - 25042, - 25045, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 25046, - 25046, - null - ], - [ - "ident-token", - "ease-in-out", - 25047, - 25057, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 25058, - 25058, - null - ], - [ - "ident-token", - "box-shadow", - 25059, - 25068, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 25069, - 25069, - null - ], - [ - "dimension-token", - ".15s", - 25070, - 25073, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 25074, - 25074, - null - ], - [ - "ident-token", - "ease-in-out", - 25075, - 25085, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 25086, - 25086, - null - ], - [ - "at-keyword-token", - "@media", - 25087, - 25092, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 25093, - 25093, - null - ], - [ - "(-token", - "(", - 25094, - 25094, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 25095, - 25116, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 25117, - 25117, - null - ], - [ - "ident-token", - "reduce", - 25118, - 25123, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 25124, - 25124, - null - ], - [ - "{-token", - "{", - 25125, - 25125, - null - ], - [ - "delim-token", - ".", - 25126, - 25126, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25127, - 25138, - { - "value": "form-control" - } - ], - [ - "{-token", - "{", - 25139, - 25139, - null - ], - [ - "ident-token", - "transition", - 25140, - 25149, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 25150, - 25150, - null - ], - [ - "ident-token", - "none", - 25151, - 25154, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 25155, - 25155, - null - ], - [ - "}-token", - "}", - 25156, - 25156, - null - ], - [ - "delim-token", - ".", - 25157, - 25157, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25158, - 25169, - { - "value": "form-control" - } - ], - [ - "[-token", - "[", - 25170, - 25170, - null - ], - [ - "ident-token", - "type", - 25171, - 25174, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 25175, - 25175, - { - "value": "=" - } - ], - [ - "ident-token", - "file", - 25176, - 25179, - { - "value": "file" - } - ], - [ - "]-token", - "]", - 25180, - 25180, - null - ], - [ - "{-token", - "{", - 25181, - 25181, - null - ], - [ - "ident-token", - "overflow", - 25182, - 25189, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 25190, - 25190, - null - ], - [ - "ident-token", - "hidden", - 25191, - 25196, - { - "value": "hidden" - } - ], - [ - "}-token", - "}", - 25197, - 25197, - null - ], - [ - "delim-token", - ".", - 25198, - 25198, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25199, - 25210, - { - "value": "form-control" - } - ], - [ - "[-token", - "[", - 25211, - 25211, - null - ], - [ - "ident-token", - "type", - 25212, - 25215, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 25216, - 25216, - { - "value": "=" - } - ], - [ - "ident-token", - "file", - 25217, - 25220, - { - "value": "file" - } - ], - [ - "]-token", - "]", - 25221, - 25221, - null - ], - [ - "colon-token", - ":", - 25222, - 25222, - null - ], - [ - "function-token", - "not(", - 25223, - 25226, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 25227, - 25227, - null - ], - [ - "ident-token", - "disabled", - 25228, - 25235, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 25236, - 25236, - null - ], - [ - "colon-token", - ":", - 25237, - 25237, - null - ], - [ - "function-token", - "not(", - 25238, - 25241, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 25242, - 25242, - null - ], - [ - "ident-token", - "readonly", - 25243, - 25250, - { - "value": "readonly" - } - ], - [ - "]-token", - "]", - 25251, - 25251, - null - ], - [ - ")-token", - ")", - 25252, - 25252, - null - ], - [ - "{-token", - "{", - 25253, - 25253, - null - ], - [ - "ident-token", - "cursor", - 25254, - 25259, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 25260, - 25260, - null - ], - [ - "ident-token", - "pointer", - 25261, - 25267, - { - "value": "pointer" - } - ], - [ - "}-token", - "}", - 25268, - 25268, - null - ], - [ - "delim-token", - ".", - 25269, - 25269, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25270, - 25281, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25282, - 25282, - null - ], - [ - "ident-token", - "focus", - 25283, - 25287, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 25288, - 25288, - null - ], - [ - "ident-token", - "color", - 25289, - 25293, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 25294, - 25294, - null - ], - [ - "hash-token", - "#212529", - 25295, - 25301, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 25302, - 25302, - null - ], - [ - "ident-token", - "background-color", - 25303, - 25318, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 25319, - 25319, - null - ], - [ - "hash-token", - "#fff", - 25320, - 25323, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 25324, - 25324, - null - ], - [ - "ident-token", - "border-color", - 25325, - 25336, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 25337, - 25337, - null - ], - [ - "hash-token", - "#86b7fe", - 25338, - 25344, - { - "value": "86b7fe", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 25345, - 25345, - null - ], - [ - "ident-token", - "outline", - 25346, - 25352, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 25353, - 25353, - null - ], - [ - "number-token", - "0", - 25354, - 25354, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 25355, - 25355, - null - ], - [ - "ident-token", - "box-shadow", - 25356, - 25365, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 25366, - 25366, - null - ], - [ - "number-token", - "0", - 25367, - 25367, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 25368, - 25368, - null - ], - [ - "number-token", - "0", - 25369, - 25369, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 25370, - 25370, - null - ], - [ - "number-token", - "0", - 25371, - 25371, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 25372, - 25372, - null - ], - [ - "dimension-token", - ".25rem", - 25373, - 25378, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 25379, - 25379, - null - ], - [ - "function-token", - "rgba(", - 25380, - 25384, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 25385, - 25386, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 25387, - 25387, - null - ], - [ - "number-token", - "110", - 25388, - 25390, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 25391, - 25391, - null - ], - [ - "number-token", - "253", - 25392, - 25394, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 25395, - 25395, - null - ], - [ - "number-token", - ".25", - 25396, - 25398, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 25399, - 25399, - null - ], - [ - "}-token", - "}", - 25400, - 25400, - null - ], - [ - "delim-token", - ".", - 25401, - 25401, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25402, - 25413, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25414, - 25414, - null - ], - [ - "colon-token", - ":", - 25415, - 25415, - null - ], - [ - "ident-token", - "-webkit-date-and-time-value", - 25416, - 25442, - { - "value": "-webkit-date-and-time-value" - } - ], - [ - "{-token", - "{", - 25443, - 25443, - null - ], - [ - "ident-token", - "height", - 25444, - 25449, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 25450, - 25450, - null - ], - [ - "dimension-token", - "1.5em", - 25451, - 25455, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 25456, - 25456, - null - ], - [ - "delim-token", - ".", - 25457, - 25457, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25458, - 25469, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25470, - 25470, - null - ], - [ - "colon-token", - ":", - 25471, - 25471, - null - ], - [ - "ident-token", - "-moz-placeholder", - 25472, - 25487, - { - "value": "-moz-placeholder" - } - ], - [ - "{-token", - "{", - 25488, - 25488, - null - ], - [ - "ident-token", - "color", - 25489, - 25493, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 25494, - 25494, - null - ], - [ - "hash-token", - "#6c757d", - 25495, - 25501, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 25502, - 25502, - null - ], - [ - "ident-token", - "opacity", - 25503, - 25509, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 25510, - 25510, - null - ], - [ - "number-token", - "1", - 25511, - 25511, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 25512, - 25512, - null - ], - [ - "delim-token", - ".", - 25513, - 25513, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25514, - 25525, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25526, - 25526, - null - ], - [ - "colon-token", - ":", - 25527, - 25527, - null - ], - [ - "ident-token", - "placeholder", - 25528, - 25538, - { - "value": "placeholder" - } - ], - [ - "{-token", - "{", - 25539, - 25539, - null - ], - [ - "ident-token", - "color", - 25540, - 25544, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 25545, - 25545, - null - ], - [ - "hash-token", - "#6c757d", - 25546, - 25552, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 25553, - 25553, - null - ], - [ - "ident-token", - "opacity", - 25554, - 25560, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 25561, - 25561, - null - ], - [ - "number-token", - "1", - 25562, - 25562, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 25563, - 25563, - null - ], - [ - "delim-token", - ".", - 25564, - 25564, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25565, - 25576, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25577, - 25577, - null - ], - [ - "ident-token", - "disabled", - 25578, - 25585, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 25586, - 25586, - null - ], - [ - "ident-token", - "background-color", - 25587, - 25602, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 25603, - 25603, - null - ], - [ - "hash-token", - "#e9ecef", - 25604, - 25610, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 25611, - 25611, - null - ], - [ - "ident-token", - "opacity", - 25612, - 25618, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 25619, - 25619, - null - ], - [ - "number-token", - "1", - 25620, - 25620, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 25621, - 25621, - null - ], - [ - "delim-token", - ".", - 25622, - 25622, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 25623, - 25634, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 25635, - 25635, - null - ], - [ - "colon-token", - ":", - 25636, - 25636, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 25637, - 25662, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 25663, - 25663, - null - ], - [ - "ident-token", - "padding", - 25664, - 25670, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 25671, - 25671, - null - ], - [ - "dimension-token", - ".375rem", - 25672, - 25678, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 25679, - 25679, - null - ], - [ - "dimension-token", - ".75rem", - 25680, - 25685, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 25686, - 25686, - null - ], - [ - "ident-token", - "margin", - 25687, - 25692, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 25693, - 25693, - null - ], - [ - "dimension-token", - "-.375rem", - 25694, - 25701, - { - "value": -0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 25702, - 25702, - null - ], - [ - "dimension-token", - "-.75rem", - 25703, - 25709, - { - "value": -0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 25710, - 25710, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 25711, - 25728, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 25729, - 25729, - null - ], - [ - "dimension-token", - ".75rem", - 25730, - 25735, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 25736, - 25736, - null - ], - [ - "ident-token", - "margin-inline-end", - 25737, - 25753, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 25754, - 25754, - null - ], - [ - "dimension-token", - ".75rem", - 25755, - 25760, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 25761, - 25761, - null - ], - [ - "ident-token", - "color", - 25762, - 25766, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 25767, - 25767, - null - ], - [ - "hash-token", - "#212529", - 25768, - 25774, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 25775, - 25775, - null - ], - [ - "ident-token", - "background-color", - 25776, - 25791, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 25792, - 25792, - null - ], - [ - "hash-token", - "#e9ecef", - 25793, - 25799, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 25800, - 25800, - null - ], - [ - "ident-token", - "pointer-events", - 25801, - 25814, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 25815, - 25815, - null - ], - [ - "ident-token", - "none", - 25816, - 25819, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 25820, - 25820, - null - ], - [ - "ident-token", - "border-color", - 25821, - 25832, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 25833, - 25833, - null - ], - [ - "ident-token", - "inherit", - 25834, - 25840, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 25841, - 25841, - null - ], - [ - "ident-token", - "border-style", - 25842, - 25853, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 25854, - 25854, - null - ], - [ - "ident-token", - "solid", - 25855, - 25859, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 25860, - 25860, - null - ], - [ - "ident-token", - "border-width", - 25861, - 25872, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 25873, - 25873, - null - ], - [ - "number-token", - "0", - 25874, - 25874, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 25875, - 25875, - null - ], - [ - "ident-token", - "border-inline-end-width", - 25876, - 25898, - { - "value": "border-inline-end-width" - } - ], - [ - "colon-token", - ":", - 25899, - 25899, - null - ], - [ - "dimension-token", - "1px", - 25900, - 25902, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 25903, - 25903, - null - ], - [ - "ident-token", - "border-radius", - 25904, - 25916, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 25917, - 25917, - null - ], - [ - "number-token", - "0", - 25918, - 25918, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 25919, - 25919, - null - ], - [ - "ident-token", - "-webkit-transition", - 25920, - 25937, - { - "value": "-webkit-transition" - } - ], - [ - "colon-token", - ":", - 25938, - 25938, - null - ], - [ - "ident-token", - "color", - 25939, - 25943, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 25944, - 25944, - null - ], - [ - "dimension-token", - ".15s", - 25945, - 25948, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 25949, - 25949, - null - ], - [ - "ident-token", - "ease-in-out", - 25950, - 25960, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 25961, - 25961, - null - ], - [ - "ident-token", - "background-color", - 25962, - 25977, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 25978, - 25978, - null - ], - [ - "dimension-token", - ".15s", - 25979, - 25982, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 25983, - 25983, - null - ], - [ - "ident-token", - "ease-in-out", - 25984, - 25994, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 25995, - 25995, - null - ], - [ - "ident-token", - "border-color", - 25996, - 26007, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 26008, - 26008, - null - ], - [ - "dimension-token", - ".15s", - 26009, - 26012, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26013, - 26013, - null - ], - [ - "ident-token", - "ease-in-out", - 26014, - 26024, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26025, - 26025, - null - ], - [ - "ident-token", - "box-shadow", - 26026, - 26035, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 26036, - 26036, - null - ], - [ - "dimension-token", - ".15s", - 26037, - 26040, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26041, - 26041, - null - ], - [ - "ident-token", - "ease-in-out", - 26042, - 26052, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 26053, - 26053, - null - ], - [ - "ident-token", - "transition", - 26054, - 26063, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 26064, - 26064, - null - ], - [ - "ident-token", - "color", - 26065, - 26069, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 26070, - 26070, - null - ], - [ - "dimension-token", - ".15s", - 26071, - 26074, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26075, - 26075, - null - ], - [ - "ident-token", - "ease-in-out", - 26076, - 26086, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26087, - 26087, - null - ], - [ - "ident-token", - "background-color", - 26088, - 26103, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 26104, - 26104, - null - ], - [ - "dimension-token", - ".15s", - 26105, - 26108, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26109, - 26109, - null - ], - [ - "ident-token", - "ease-in-out", - 26110, - 26120, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26121, - 26121, - null - ], - [ - "ident-token", - "border-color", - 26122, - 26133, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 26134, - 26134, - null - ], - [ - "dimension-token", - ".15s", - 26135, - 26138, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26139, - 26139, - null - ], - [ - "ident-token", - "ease-in-out", - 26140, - 26150, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26151, - 26151, - null - ], - [ - "ident-token", - "box-shadow", - 26152, - 26161, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 26162, - 26162, - null - ], - [ - "dimension-token", - ".15s", - 26163, - 26166, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26167, - 26167, - null - ], - [ - "ident-token", - "ease-in-out", - 26168, - 26178, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 26179, - 26179, - null - ], - [ - "delim-token", - ".", - 26180, - 26180, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 26181, - 26192, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 26193, - 26193, - null - ], - [ - "colon-token", - ":", - 26194, - 26194, - null - ], - [ - "ident-token", - "file-selector-button", - 26195, - 26214, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 26215, - 26215, - null - ], - [ - "ident-token", - "padding", - 26216, - 26222, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 26223, - 26223, - null - ], - [ - "dimension-token", - ".375rem", - 26224, - 26230, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 26231, - 26231, - null - ], - [ - "dimension-token", - ".75rem", - 26232, - 26237, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 26238, - 26238, - null - ], - [ - "ident-token", - "margin", - 26239, - 26244, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 26245, - 26245, - null - ], - [ - "dimension-token", - "-.375rem", - 26246, - 26253, - { - "value": -0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 26254, - 26254, - null - ], - [ - "dimension-token", - "-.75rem", - 26255, - 26261, - { - "value": -0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 26262, - 26262, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 26263, - 26280, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 26281, - 26281, - null - ], - [ - "dimension-token", - ".75rem", - 26282, - 26287, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 26288, - 26288, - null - ], - [ - "ident-token", - "margin-inline-end", - 26289, - 26305, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 26306, - 26306, - null - ], - [ - "dimension-token", - ".75rem", - 26307, - 26312, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 26313, - 26313, - null - ], - [ - "ident-token", - "color", - 26314, - 26318, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 26319, - 26319, - null - ], - [ - "hash-token", - "#212529", - 26320, - 26326, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 26327, - 26327, - null - ], - [ - "ident-token", - "background-color", - 26328, - 26343, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 26344, - 26344, - null - ], - [ - "hash-token", - "#e9ecef", - 26345, - 26351, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 26352, - 26352, - null - ], - [ - "ident-token", - "pointer-events", - 26353, - 26366, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 26367, - 26367, - null - ], - [ - "ident-token", - "none", - 26368, - 26371, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 26372, - 26372, - null - ], - [ - "ident-token", - "border-color", - 26373, - 26384, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 26385, - 26385, - null - ], - [ - "ident-token", - "inherit", - 26386, - 26392, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 26393, - 26393, - null - ], - [ - "ident-token", - "border-style", - 26394, - 26405, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 26406, - 26406, - null - ], - [ - "ident-token", - "solid", - 26407, - 26411, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 26412, - 26412, - null - ], - [ - "ident-token", - "border-width", - 26413, - 26424, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 26425, - 26425, - null - ], - [ - "number-token", - "0", - 26426, - 26426, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 26427, - 26427, - null - ], - [ - "ident-token", - "border-inline-end-width", - 26428, - 26450, - { - "value": "border-inline-end-width" - } - ], - [ - "colon-token", - ":", - 26451, - 26451, - null - ], - [ - "dimension-token", - "1px", - 26452, - 26454, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 26455, - 26455, - null - ], - [ - "ident-token", - "border-radius", - 26456, - 26468, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 26469, - 26469, - null - ], - [ - "number-token", - "0", - 26470, - 26470, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 26471, - 26471, - null - ], - [ - "ident-token", - "transition", - 26472, - 26481, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 26482, - 26482, - null - ], - [ - "ident-token", - "color", - 26483, - 26487, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 26488, - 26488, - null - ], - [ - "dimension-token", - ".15s", - 26489, - 26492, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26493, - 26493, - null - ], - [ - "ident-token", - "ease-in-out", - 26494, - 26504, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26505, - 26505, - null - ], - [ - "ident-token", - "background-color", - 26506, - 26521, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 26522, - 26522, - null - ], - [ - "dimension-token", - ".15s", - 26523, - 26526, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26527, - 26527, - null - ], - [ - "ident-token", - "ease-in-out", - 26528, - 26538, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26539, - 26539, - null - ], - [ - "ident-token", - "border-color", - 26540, - 26551, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 26552, - 26552, - null - ], - [ - "dimension-token", - ".15s", - 26553, - 26556, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26557, - 26557, - null - ], - [ - "ident-token", - "ease-in-out", - 26558, - 26568, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 26569, - 26569, - null - ], - [ - "ident-token", - "box-shadow", - 26570, - 26579, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 26580, - 26580, - null - ], - [ - "dimension-token", - ".15s", - 26581, - 26584, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 26585, - 26585, - null - ], - [ - "ident-token", - "ease-in-out", - 26586, - 26596, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 26597, - 26597, - null - ], - [ - "at-keyword-token", - "@media", - 26598, - 26603, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 26604, - 26604, - null - ], - [ - "(-token", - "(", - 26605, - 26605, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 26606, - 26627, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 26628, - 26628, - null - ], - [ - "ident-token", - "reduce", - 26629, - 26634, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 26635, - 26635, - null - ], - [ - "{-token", - "{", - 26636, - 26636, - null - ], - [ - "delim-token", - ".", - 26637, - 26637, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 26638, - 26649, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 26650, - 26650, - null - ], - [ - "colon-token", - ":", - 26651, - 26651, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 26652, - 26677, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 26678, - 26678, - null - ], - [ - "ident-token", - "-webkit-transition", - 26679, - 26696, - { - "value": "-webkit-transition" - } - ], - [ - "colon-token", - ":", - 26697, - 26697, - null - ], - [ - "ident-token", - "none", - 26698, - 26701, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 26702, - 26702, - null - ], - [ - "ident-token", - "transition", - 26703, - 26712, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 26713, - 26713, - null - ], - [ - "ident-token", - "none", - 26714, - 26717, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 26718, - 26718, - null - ], - [ - "delim-token", - ".", - 26719, - 26719, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 26720, - 26731, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 26732, - 26732, - null - ], - [ - "colon-token", - ":", - 26733, - 26733, - null - ], - [ - "ident-token", - "file-selector-button", - 26734, - 26753, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 26754, - 26754, - null - ], - [ - "ident-token", - "transition", - 26755, - 26764, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 26765, - 26765, - null - ], - [ - "ident-token", - "none", - 26766, - 26769, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 26770, - 26770, - null - ], - [ - "}-token", - "}", - 26771, - 26771, - null - ], - [ - "delim-token", - ".", - 26772, - 26772, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 26773, - 26784, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 26785, - 26785, - null - ], - [ - "ident-token", - "hover", - 26786, - 26790, - { - "value": "hover" - } - ], - [ - "colon-token", - ":", - 26791, - 26791, - null - ], - [ - "function-token", - "not(", - 26792, - 26795, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 26796, - 26796, - null - ], - [ - "ident-token", - "disabled", - 26797, - 26804, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 26805, - 26805, - null - ], - [ - "colon-token", - ":", - 26806, - 26806, - null - ], - [ - "function-token", - "not(", - 26807, - 26810, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 26811, - 26811, - null - ], - [ - "ident-token", - "readonly", - 26812, - 26819, - { - "value": "readonly" - } - ], - [ - "]-token", - "]", - 26820, - 26820, - null - ], - [ - ")-token", - ")", - 26821, - 26821, - null - ], - [ - "colon-token", - ":", - 26822, - 26822, - null - ], - [ - "colon-token", - ":", - 26823, - 26823, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 26824, - 26849, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 26850, - 26850, - null - ], - [ - "ident-token", - "background-color", - 26851, - 26866, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 26867, - 26867, - null - ], - [ - "hash-token", - "#dde0e3", - 26868, - 26874, - { - "value": "dde0e3", - "type": "id" - } - ], - [ - "}-token", - "}", - 26875, - 26875, - null - ], - [ - "delim-token", - ".", - 26876, - 26876, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 26877, - 26888, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 26889, - 26889, - null - ], - [ - "ident-token", - "hover", - 26890, - 26894, - { - "value": "hover" - } - ], - [ - "colon-token", - ":", - 26895, - 26895, - null - ], - [ - "function-token", - "not(", - 26896, - 26899, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 26900, - 26900, - null - ], - [ - "ident-token", - "disabled", - 26901, - 26908, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 26909, - 26909, - null - ], - [ - "colon-token", - ":", - 26910, - 26910, - null - ], - [ - "function-token", - "not(", - 26911, - 26914, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 26915, - 26915, - null - ], - [ - "ident-token", - "readonly", - 26916, - 26923, - { - "value": "readonly" - } - ], - [ - "]-token", - "]", - 26924, - 26924, - null - ], - [ - ")-token", - ")", - 26925, - 26925, - null - ], - [ - "colon-token", - ":", - 26926, - 26926, - null - ], - [ - "colon-token", - ":", - 26927, - 26927, - null - ], - [ - "ident-token", - "file-selector-button", - 26928, - 26947, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 26948, - 26948, - null - ], - [ - "ident-token", - "background-color", - 26949, - 26964, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 26965, - 26965, - null - ], - [ - "hash-token", - "#dde0e3", - 26966, - 26972, - { - "value": "dde0e3", - "type": "id" - } - ], - [ - "}-token", - "}", - 26973, - 26973, - null - ], - [ - "delim-token", - ".", - 26974, - 26974, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 26975, - 26996, - { - "value": "form-control-plaintext" - } - ], - [ - "{-token", - "{", - 26997, - 26997, - null - ], - [ - "ident-token", - "display", - 26998, - 27004, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 27005, - 27005, - null - ], - [ - "ident-token", - "block", - 27006, - 27010, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 27011, - 27011, - null - ], - [ - "ident-token", - "width", - 27012, - 27016, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 27017, - 27017, - null - ], - [ - "percentage-token", - "100%", - 27018, - 27021, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 27022, - 27022, - null - ], - [ - "ident-token", - "padding", - 27023, - 27029, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27030, - 27030, - null - ], - [ - "dimension-token", - ".375rem", - 27031, - 27037, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27038, - 27038, - null - ], - [ - "number-token", - "0", - 27039, - 27039, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 27040, - 27040, - null - ], - [ - "ident-token", - "margin-bottom", - 27041, - 27053, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 27054, - 27054, - null - ], - [ - "number-token", - "0", - 27055, - 27055, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 27056, - 27056, - null - ], - [ - "ident-token", - "line-height", - 27057, - 27067, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 27068, - 27068, - null - ], - [ - "number-token", - "1.5", - 27069, - 27071, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 27072, - 27072, - null - ], - [ - "ident-token", - "color", - 27073, - 27077, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 27078, - 27078, - null - ], - [ - "hash-token", - "#212529", - 27079, - 27085, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 27086, - 27086, - null - ], - [ - "ident-token", - "background-color", - 27087, - 27102, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 27103, - 27103, - null - ], - [ - "ident-token", - "transparent", - 27104, - 27114, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 27115, - 27115, - null - ], - [ - "ident-token", - "border", - 27116, - 27121, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 27122, - 27122, - null - ], - [ - "ident-token", - "solid", - 27123, - 27127, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 27128, - 27128, - null - ], - [ - "ident-token", - "transparent", - 27129, - 27139, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 27140, - 27140, - null - ], - [ - "ident-token", - "border-width", - 27141, - 27152, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 27153, - 27153, - null - ], - [ - "dimension-token", - "1px", - 27154, - 27156, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 27157, - 27157, - null - ], - [ - "number-token", - "0", - 27158, - 27158, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 27159, - 27159, - null - ], - [ - "delim-token", - ".", - 27160, - 27160, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 27161, - 27182, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 27183, - 27183, - null - ], - [ - "ident-token", - "focus", - 27184, - 27188, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 27189, - 27189, - null - ], - [ - "ident-token", - "outline", - 27190, - 27196, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 27197, - 27197, - null - ], - [ - "number-token", - "0", - 27198, - 27198, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 27199, - 27199, - null - ], - [ - "delim-token", - ".", - 27200, - 27200, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 27201, - 27222, - { - "value": "form-control-plaintext" - } - ], - [ - "delim-token", - ".", - 27223, - 27223, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 27224, - 27238, - { - "value": "form-control-lg" - } - ], - [ - "comma-token", - ",", - 27239, - 27239, - null - ], - [ - "delim-token", - ".", - 27240, - 27240, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 27241, - 27262, - { - "value": "form-control-plaintext" - } - ], - [ - "delim-token", - ".", - 27263, - 27263, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 27264, - 27278, - { - "value": "form-control-sm" - } - ], - [ - "{-token", - "{", - 27279, - 27279, - null - ], - [ - "ident-token", - "padding-right", - 27280, - 27292, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 27293, - 27293, - null - ], - [ - "number-token", - "0", - 27294, - 27294, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 27295, - 27295, - null - ], - [ - "ident-token", - "padding-left", - 27296, - 27307, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 27308, - 27308, - null - ], - [ - "number-token", - "0", - 27309, - 27309, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 27310, - 27310, - null - ], - [ - "delim-token", - ".", - 27311, - 27311, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 27312, - 27326, - { - "value": "form-control-sm" - } - ], - [ - "{-token", - "{", - 27327, - 27327, - null - ], - [ - "ident-token", - "min-height", - 27328, - 27337, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 27338, - 27338, - null - ], - [ - "function-token", - "calc(", - 27339, - 27343, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 27344, - 27348, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 27349, - 27349, - null - ], - [ - "delim-token", - "+", - 27350, - 27350, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 27351, - 27351, - null - ], - [ - "dimension-token", - ".5rem", - 27352, - 27356, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27357, - 27357, - null - ], - [ - "delim-token", - "+", - 27358, - 27358, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 27359, - 27359, - null - ], - [ - "dimension-token", - "2px", - 27360, - 27362, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 27363, - 27363, - null - ], - [ - "semicolon-token", - ";", - 27364, - 27364, - null - ], - [ - "ident-token", - "padding", - 27365, - 27371, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27372, - 27372, - null - ], - [ - "dimension-token", - ".25rem", - 27373, - 27378, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27379, - 27379, - null - ], - [ - "dimension-token", - ".5rem", - 27380, - 27384, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27385, - 27385, - null - ], - [ - "ident-token", - "font-size", - 27386, - 27394, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 27395, - 27395, - null - ], - [ - "dimension-token", - ".875rem", - 27396, - 27402, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27403, - 27403, - null - ], - [ - "ident-token", - "border-radius", - 27404, - 27416, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 27417, - 27417, - null - ], - [ - "dimension-token", - ".25rem", - 27418, - 27423, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 27424, - 27424, - null - ], - [ - "delim-token", - ".", - 27425, - 27425, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 27426, - 27440, - { - "value": "form-control-sm" - } - ], - [ - "colon-token", - ":", - 27441, - 27441, - null - ], - [ - "colon-token", - ":", - 27442, - 27442, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 27443, - 27468, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 27469, - 27469, - null - ], - [ - "ident-token", - "padding", - 27470, - 27476, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27477, - 27477, - null - ], - [ - "dimension-token", - ".25rem", - 27478, - 27483, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27484, - 27484, - null - ], - [ - "dimension-token", - ".5rem", - 27485, - 27489, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27490, - 27490, - null - ], - [ - "ident-token", - "margin", - 27491, - 27496, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 27497, - 27497, - null - ], - [ - "dimension-token", - "-.25rem", - 27498, - 27504, - { - "value": -0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27505, - 27505, - null - ], - [ - "dimension-token", - "-.5rem", - 27506, - 27511, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27512, - 27512, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 27513, - 27530, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 27531, - 27531, - null - ], - [ - "dimension-token", - ".5rem", - 27532, - 27536, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27537, - 27537, - null - ], - [ - "ident-token", - "margin-inline-end", - 27538, - 27554, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 27555, - 27555, - null - ], - [ - "dimension-token", - ".5rem", - 27556, - 27560, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 27561, - 27561, - null - ], - [ - "delim-token", - ".", - 27562, - 27562, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 27563, - 27577, - { - "value": "form-control-sm" - } - ], - [ - "colon-token", - ":", - 27578, - 27578, - null - ], - [ - "colon-token", - ":", - 27579, - 27579, - null - ], - [ - "ident-token", - "file-selector-button", - 27580, - 27599, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 27600, - 27600, - null - ], - [ - "ident-token", - "padding", - 27601, - 27607, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27608, - 27608, - null - ], - [ - "dimension-token", - ".25rem", - 27609, - 27614, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27615, - 27615, - null - ], - [ - "dimension-token", - ".5rem", - 27616, - 27620, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27621, - 27621, - null - ], - [ - "ident-token", - "margin", - 27622, - 27627, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 27628, - 27628, - null - ], - [ - "dimension-token", - "-.25rem", - 27629, - 27635, - { - "value": -0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27636, - 27636, - null - ], - [ - "dimension-token", - "-.5rem", - 27637, - 27642, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27643, - 27643, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 27644, - 27661, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 27662, - 27662, - null - ], - [ - "dimension-token", - ".5rem", - 27663, - 27667, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27668, - 27668, - null - ], - [ - "ident-token", - "margin-inline-end", - 27669, - 27685, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 27686, - 27686, - null - ], - [ - "dimension-token", - ".5rem", - 27687, - 27691, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 27692, - 27692, - null - ], - [ - "delim-token", - ".", - 27693, - 27693, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 27694, - 27708, - { - "value": "form-control-lg" - } - ], - [ - "{-token", - "{", - 27709, - 27709, - null - ], - [ - "ident-token", - "min-height", - 27710, - 27719, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 27720, - 27720, - null - ], - [ - "function-token", - "calc(", - 27721, - 27725, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 27726, - 27730, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 27731, - 27731, - null - ], - [ - "delim-token", - "+", - 27732, - 27732, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 27733, - 27733, - null - ], - [ - "dimension-token", - "1rem", - 27734, - 27737, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27738, - 27738, - null - ], - [ - "delim-token", - "+", - 27739, - 27739, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 27740, - 27740, - null - ], - [ - "dimension-token", - "2px", - 27741, - 27743, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 27744, - 27744, - null - ], - [ - "semicolon-token", - ";", - 27745, - 27745, - null - ], - [ - "ident-token", - "padding", - 27746, - 27752, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27753, - 27753, - null - ], - [ - "dimension-token", - ".5rem", - 27754, - 27758, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27759, - 27759, - null - ], - [ - "dimension-token", - "1rem", - 27760, - 27763, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27764, - 27764, - null - ], - [ - "ident-token", - "font-size", - 27765, - 27773, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 27774, - 27774, - null - ], - [ - "dimension-token", - "1.25rem", - 27775, - 27781, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27782, - 27782, - null - ], - [ - "ident-token", - "border-radius", - 27783, - 27795, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 27796, - 27796, - null - ], - [ - "dimension-token", - ".5rem", - 27797, - 27801, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 27802, - 27802, - null - ], - [ - "delim-token", - ".", - 27803, - 27803, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 27804, - 27818, - { - "value": "form-control-lg" - } - ], - [ - "colon-token", - ":", - 27819, - 27819, - null - ], - [ - "colon-token", - ":", - 27820, - 27820, - null - ], - [ - "ident-token", - "-webkit-file-upload-button", - 27821, - 27846, - { - "value": "-webkit-file-upload-button" - } - ], - [ - "{-token", - "{", - 27847, - 27847, - null - ], - [ - "ident-token", - "padding", - 27848, - 27854, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27855, - 27855, - null - ], - [ - "dimension-token", - ".5rem", - 27856, - 27860, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27861, - 27861, - null - ], - [ - "dimension-token", - "1rem", - 27862, - 27865, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27866, - 27866, - null - ], - [ - "ident-token", - "margin", - 27867, - 27872, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 27873, - 27873, - null - ], - [ - "dimension-token", - "-.5rem", - 27874, - 27879, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27880, - 27880, - null - ], - [ - "dimension-token", - "-1rem", - 27881, - 27885, - { - "value": -1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27886, - 27886, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 27887, - 27904, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 27905, - 27905, - null - ], - [ - "dimension-token", - "1rem", - 27906, - 27909, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27910, - 27910, - null - ], - [ - "ident-token", - "margin-inline-end", - 27911, - 27927, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 27928, - 27928, - null - ], - [ - "dimension-token", - "1rem", - 27929, - 27932, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 27933, - 27933, - null - ], - [ - "delim-token", - ".", - 27934, - 27934, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 27935, - 27949, - { - "value": "form-control-lg" - } - ], - [ - "colon-token", - ":", - 27950, - 27950, - null - ], - [ - "colon-token", - ":", - 27951, - 27951, - null - ], - [ - "ident-token", - "file-selector-button", - 27952, - 27971, - { - "value": "file-selector-button" - } - ], - [ - "{-token", - "{", - 27972, - 27972, - null - ], - [ - "ident-token", - "padding", - 27973, - 27979, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 27980, - 27980, - null - ], - [ - "dimension-token", - ".5rem", - 27981, - 27985, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 27986, - 27986, - null - ], - [ - "dimension-token", - "1rem", - 27987, - 27990, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 27991, - 27991, - null - ], - [ - "ident-token", - "margin", - 27992, - 27997, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 27998, - 27998, - null - ], - [ - "dimension-token", - "-.5rem", - 27999, - 28004, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28005, - 28005, - null - ], - [ - "dimension-token", - "-1rem", - 28006, - 28010, - { - "value": -1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 28011, - 28011, - null - ], - [ - "ident-token", - "-webkit-margin-end", - 28012, - 28029, - { - "value": "-webkit-margin-end" - } - ], - [ - "colon-token", - ":", - 28030, - 28030, - null - ], - [ - "dimension-token", - "1rem", - 28031, - 28034, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 28035, - 28035, - null - ], - [ - "ident-token", - "margin-inline-end", - 28036, - 28052, - { - "value": "margin-inline-end" - } - ], - [ - "colon-token", - ":", - 28053, - 28053, - null - ], - [ - "dimension-token", - "1rem", - 28054, - 28057, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 28058, - 28058, - null - ], - [ - "ident-token", - "textarea", - 28059, - 28066, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 28067, - 28067, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 28068, - 28079, - { - "value": "form-control" - } - ], - [ - "{-token", - "{", - 28080, - 28080, - null - ], - [ - "ident-token", - "min-height", - 28081, - 28090, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 28091, - 28091, - null - ], - [ - "function-token", - "calc(", - 28092, - 28096, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28097, - 28101, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28102, - 28102, - null - ], - [ - "delim-token", - "+", - 28103, - 28103, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28104, - 28104, - null - ], - [ - "dimension-token", - ".75rem", - 28105, - 28110, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28111, - 28111, - null - ], - [ - "delim-token", - "+", - 28112, - 28112, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28113, - 28113, - null - ], - [ - "dimension-token", - "2px", - 28114, - 28116, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28117, - 28117, - null - ], - [ - "}-token", - "}", - 28118, - 28118, - null - ], - [ - "ident-token", - "textarea", - 28119, - 28126, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 28127, - 28127, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 28128, - 28142, - { - "value": "form-control-sm" - } - ], - [ - "{-token", - "{", - 28143, - 28143, - null - ], - [ - "ident-token", - "min-height", - 28144, - 28153, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 28154, - 28154, - null - ], - [ - "function-token", - "calc(", - 28155, - 28159, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28160, - 28164, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28165, - 28165, - null - ], - [ - "delim-token", - "+", - 28166, - 28166, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28167, - 28167, - null - ], - [ - "dimension-token", - ".5rem", - 28168, - 28172, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28173, - 28173, - null - ], - [ - "delim-token", - "+", - 28174, - 28174, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28175, - 28175, - null - ], - [ - "dimension-token", - "2px", - 28176, - 28178, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28179, - 28179, - null - ], - [ - "}-token", - "}", - 28180, - 28180, - null - ], - [ - "ident-token", - "textarea", - 28181, - 28188, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 28189, - 28189, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 28190, - 28204, - { - "value": "form-control-lg" - } - ], - [ - "{-token", - "{", - 28205, - 28205, - null - ], - [ - "ident-token", - "min-height", - 28206, - 28215, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 28216, - 28216, - null - ], - [ - "function-token", - "calc(", - 28217, - 28221, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28222, - 28226, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28227, - 28227, - null - ], - [ - "delim-token", - "+", - 28228, - 28228, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28229, - 28229, - null - ], - [ - "dimension-token", - "1rem", - 28230, - 28233, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28234, - 28234, - null - ], - [ - "delim-token", - "+", - 28235, - 28235, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28236, - 28236, - null - ], - [ - "dimension-token", - "2px", - 28237, - 28239, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28240, - 28240, - null - ], - [ - "}-token", - "}", - 28241, - 28241, - null - ], - [ - "delim-token", - ".", - 28242, - 28242, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28243, - 28260, - { - "value": "form-control-color" - } - ], - [ - "{-token", - "{", - 28261, - 28261, - null - ], - [ - "ident-token", - "width", - 28262, - 28266, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 28267, - 28267, - null - ], - [ - "dimension-token", - "3rem", - 28268, - 28271, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 28272, - 28272, - null - ], - [ - "ident-token", - "height", - 28273, - 28278, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 28279, - 28279, - null - ], - [ - "function-token", - "calc(", - 28280, - 28284, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28285, - 28289, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28290, - 28290, - null - ], - [ - "delim-token", - "+", - 28291, - 28291, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28292, - 28292, - null - ], - [ - "dimension-token", - ".75rem", - 28293, - 28298, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28299, - 28299, - null - ], - [ - "delim-token", - "+", - 28300, - 28300, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28301, - 28301, - null - ], - [ - "dimension-token", - "2px", - 28302, - 28304, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28305, - 28305, - null - ], - [ - "semicolon-token", - ";", - 28306, - 28306, - null - ], - [ - "ident-token", - "padding", - 28307, - 28313, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 28314, - 28314, - null - ], - [ - "dimension-token", - ".375rem", - 28315, - 28321, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 28322, - 28322, - null - ], - [ - "delim-token", - ".", - 28323, - 28323, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28324, - 28341, - { - "value": "form-control-color" - } - ], - [ - "colon-token", - ":", - 28342, - 28342, - null - ], - [ - "function-token", - "not(", - 28343, - 28346, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 28347, - 28347, - null - ], - [ - "ident-token", - "disabled", - 28348, - 28355, - { - "value": "disabled" - } - ], - [ - ")-token", - ")", - 28356, - 28356, - null - ], - [ - "colon-token", - ":", - 28357, - 28357, - null - ], - [ - "function-token", - "not(", - 28358, - 28361, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 28362, - 28362, - null - ], - [ - "ident-token", - "readonly", - 28363, - 28370, - { - "value": "readonly" - } - ], - [ - "]-token", - "]", - 28371, - 28371, - null - ], - [ - ")-token", - ")", - 28372, - 28372, - null - ], - [ - "{-token", - "{", - 28373, - 28373, - null - ], - [ - "ident-token", - "cursor", - 28374, - 28379, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 28380, - 28380, - null - ], - [ - "ident-token", - "pointer", - 28381, - 28387, - { - "value": "pointer" - } - ], - [ - "}-token", - "}", - 28388, - 28388, - null - ], - [ - "delim-token", - ".", - 28389, - 28389, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28390, - 28407, - { - "value": "form-control-color" - } - ], - [ - "colon-token", - ":", - 28408, - 28408, - null - ], - [ - "colon-token", - ":", - 28409, - 28409, - null - ], - [ - "ident-token", - "-moz-color-swatch", - 28410, - 28426, - { - "value": "-moz-color-swatch" - } - ], - [ - "{-token", - "{", - 28427, - 28427, - null - ], - [ - "ident-token", - "border", - 28428, - 28433, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 28434, - 28434, - null - ], - [ - "number-token", - "0", - 28435, - 28435, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 28436, - 28436, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 28437, - 28445, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 28446, - 28446, - null - ], - [ - "ident-token", - "border-radius", - 28447, - 28459, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 28460, - 28460, - null - ], - [ - "dimension-token", - ".375rem", - 28461, - 28467, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 28468, - 28468, - null - ], - [ - "delim-token", - ".", - 28469, - 28469, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28470, - 28487, - { - "value": "form-control-color" - } - ], - [ - "colon-token", - ":", - 28488, - 28488, - null - ], - [ - "colon-token", - ":", - 28489, - 28489, - null - ], - [ - "ident-token", - "-webkit-color-swatch", - 28490, - 28509, - { - "value": "-webkit-color-swatch" - } - ], - [ - "{-token", - "{", - 28510, - 28510, - null - ], - [ - "ident-token", - "border-radius", - 28511, - 28523, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 28524, - 28524, - null - ], - [ - "dimension-token", - ".375rem", - 28525, - 28531, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 28532, - 28532, - null - ], - [ - "delim-token", - ".", - 28533, - 28533, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28534, - 28551, - { - "value": "form-control-color" - } - ], - [ - "delim-token", - ".", - 28552, - 28552, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-sm", - 28553, - 28567, - { - "value": "form-control-sm" - } - ], - [ - "{-token", - "{", - 28568, - 28568, - null - ], - [ - "ident-token", - "height", - 28569, - 28574, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 28575, - 28575, - null - ], - [ - "function-token", - "calc(", - 28576, - 28580, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28581, - 28585, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28586, - 28586, - null - ], - [ - "delim-token", - "+", - 28587, - 28587, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28588, - 28588, - null - ], - [ - "dimension-token", - ".5rem", - 28589, - 28593, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28594, - 28594, - null - ], - [ - "delim-token", - "+", - 28595, - 28595, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28596, - 28596, - null - ], - [ - "dimension-token", - "2px", - 28597, - 28599, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28600, - 28600, - null - ], - [ - "}-token", - "}", - 28601, - 28601, - null - ], - [ - "delim-token", - ".", - 28602, - 28602, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 28603, - 28620, - { - "value": "form-control-color" - } - ], - [ - "delim-token", - ".", - 28621, - 28621, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-lg", - 28622, - 28636, - { - "value": "form-control-lg" - } - ], - [ - "{-token", - "{", - 28637, - 28637, - null - ], - [ - "ident-token", - "height", - 28638, - 28643, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 28644, - 28644, - null - ], - [ - "function-token", - "calc(", - 28645, - 28649, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 28650, - 28654, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 28655, - 28655, - null - ], - [ - "delim-token", - "+", - 28656, - 28656, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28657, - 28657, - null - ], - [ - "dimension-token", - "1rem", - 28658, - 28661, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28662, - 28662, - null - ], - [ - "delim-token", - "+", - 28663, - 28663, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 28664, - 28664, - null - ], - [ - "dimension-token", - "2px", - 28665, - 28667, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28668, - 28668, - null - ], - [ - "}-token", - "}", - 28669, - 28669, - null - ], - [ - "delim-token", - ".", - 28670, - 28670, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 28671, - 28681, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 28682, - 28682, - null - ], - [ - "ident-token", - "display", - 28683, - 28689, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 28690, - 28690, - null - ], - [ - "ident-token", - "block", - 28691, - 28695, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 28696, - 28696, - null - ], - [ - "ident-token", - "width", - 28697, - 28701, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 28702, - 28702, - null - ], - [ - "percentage-token", - "100%", - 28703, - 28706, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 28707, - 28707, - null - ], - [ - "ident-token", - "padding", - 28708, - 28714, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 28715, - 28715, - null - ], - [ - "dimension-token", - ".375rem", - 28716, - 28722, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28723, - 28723, - null - ], - [ - "dimension-token", - "2.25rem", - 28724, - 28730, - { - "value": 2.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28731, - 28731, - null - ], - [ - "dimension-token", - ".375rem", - 28732, - 28738, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28739, - 28739, - null - ], - [ - "dimension-token", - ".75rem", - 28740, - 28745, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 28746, - 28746, - null - ], - [ - "ident-token", - "-moz-padding-start", - 28747, - 28764, - { - "value": "-moz-padding-start" - } - ], - [ - "colon-token", - ":", - 28765, - 28765, - null - ], - [ - "function-token", - "calc(", - 28766, - 28770, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.75rem", - 28771, - 28777, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 28778, - 28778, - null - ], - [ - "delim-token", - "-", - 28779, - 28779, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 28780, - 28780, - null - ], - [ - "dimension-token", - "3px", - 28781, - 28783, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 28784, - 28784, - null - ], - [ - "semicolon-token", - ";", - 28785, - 28785, - null - ], - [ - "ident-token", - "font-size", - 28786, - 28794, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 28795, - 28795, - null - ], - [ - "dimension-token", - "1rem", - 28796, - 28799, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 28800, - 28800, - null - ], - [ - "ident-token", - "font-weight", - 28801, - 28811, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 28812, - 28812, - null - ], - [ - "number-token", - "400", - 28813, - 28815, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 28816, - 28816, - null - ], - [ - "ident-token", - "line-height", - 28817, - 28827, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 28828, - 28828, - null - ], - [ - "number-token", - "1.5", - 28829, - 28831, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 28832, - 28832, - null - ], - [ - "ident-token", - "color", - 28833, - 28837, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 28838, - 28838, - null - ], - [ - "hash-token", - "#212529", - 28839, - 28845, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 28846, - 28846, - null - ], - [ - "ident-token", - "background-color", - 28847, - 28862, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 28863, - 28863, - null - ], - [ - "hash-token", - "#fff", - 28864, - 28867, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 28868, - 28868, - null - ], - [ - "ident-token", - "background-image", - 28869, - 28884, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 28885, - 28885, - null - ], - [ - "function-token", - "url(", - 28886, - 28889, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", - 28890, - 29107, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 29108, - 29108, - null - ], - [ - "semicolon-token", - ";", - 29109, - 29109, - null - ], - [ - "ident-token", - "background-repeat", - 29110, - 29126, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 29127, - 29127, - null - ], - [ - "ident-token", - "no-repeat", - 29128, - 29136, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 29137, - 29137, - null - ], - [ - "ident-token", - "background-position", - 29138, - 29156, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 29157, - 29157, - null - ], - [ - "ident-token", - "right", - 29158, - 29162, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 29163, - 29163, - null - ], - [ - "dimension-token", - ".75rem", - 29164, - 29169, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 29170, - 29170, - null - ], - [ - "ident-token", - "center", - 29171, - 29176, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 29177, - 29177, - null - ], - [ - "ident-token", - "background-size", - 29178, - 29192, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 29193, - 29193, - null - ], - [ - "dimension-token", - "16px", - 29194, - 29197, - { - "value": 16, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 29198, - 29198, - null - ], - [ - "dimension-token", - "12px", - 29199, - 29202, - { - "value": 12, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 29203, - 29203, - null - ], - [ - "ident-token", - "border", - 29204, - 29209, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 29210, - 29210, - null - ], - [ - "dimension-token", - "1px", - 29211, - 29213, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 29214, - 29214, - null - ], - [ - "ident-token", - "solid", - 29215, - 29219, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 29220, - 29220, - null - ], - [ - "hash-token", - "#ced4da", - 29221, - 29227, - { - "value": "ced4da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 29228, - 29228, - null - ], - [ - "ident-token", - "border-radius", - 29229, - 29241, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 29242, - 29242, - null - ], - [ - "dimension-token", - ".375rem", - 29243, - 29249, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29250, - 29250, - null - ], - [ - "ident-token", - "transition", - 29251, - 29260, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 29261, - 29261, - null - ], - [ - "ident-token", - "border-color", - 29262, - 29273, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 29274, - 29274, - null - ], - [ - "dimension-token", - ".15s", - 29275, - 29278, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 29279, - 29279, - null - ], - [ - "ident-token", - "ease-in-out", - 29280, - 29290, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 29291, - 29291, - null - ], - [ - "ident-token", - "box-shadow", - 29292, - 29301, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 29302, - 29302, - null - ], - [ - "dimension-token", - ".15s", - 29303, - 29306, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 29307, - 29307, - null - ], - [ - "ident-token", - "ease-in-out", - 29308, - 29318, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 29319, - 29319, - null - ], - [ - "ident-token", - "-webkit-appearance", - 29320, - 29337, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 29338, - 29338, - null - ], - [ - "ident-token", - "none", - 29339, - 29342, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 29343, - 29343, - null - ], - [ - "ident-token", - "-moz-appearance", - 29344, - 29358, - { - "value": "-moz-appearance" - } - ], - [ - "colon-token", - ":", - 29359, - 29359, - null - ], - [ - "ident-token", - "none", - 29360, - 29363, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 29364, - 29364, - null - ], - [ - "ident-token", - "appearance", - 29365, - 29374, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 29375, - 29375, - null - ], - [ - "ident-token", - "none", - 29376, - 29379, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 29380, - 29380, - null - ], - [ - "at-keyword-token", - "@media", - 29381, - 29386, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 29387, - 29387, - null - ], - [ - "(-token", - "(", - 29388, - 29388, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 29389, - 29410, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 29411, - 29411, - null - ], - [ - "ident-token", - "reduce", - 29412, - 29417, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 29418, - 29418, - null - ], - [ - "{-token", - "{", - 29419, - 29419, - null - ], - [ - "delim-token", - ".", - 29420, - 29420, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29421, - 29431, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 29432, - 29432, - null - ], - [ - "ident-token", - "transition", - 29433, - 29442, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 29443, - 29443, - null - ], - [ - "ident-token", - "none", - 29444, - 29447, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 29448, - 29448, - null - ], - [ - "}-token", - "}", - 29449, - 29449, - null - ], - [ - "delim-token", - ".", - 29450, - 29450, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29451, - 29461, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 29462, - 29462, - null - ], - [ - "ident-token", - "focus", - 29463, - 29467, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 29468, - 29468, - null - ], - [ - "ident-token", - "border-color", - 29469, - 29480, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 29481, - 29481, - null - ], - [ - "hash-token", - "#86b7fe", - 29482, - 29488, - { - "value": "86b7fe", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 29489, - 29489, - null - ], - [ - "ident-token", - "outline", - 29490, - 29496, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 29497, - 29497, - null - ], - [ - "number-token", - "0", - 29498, - 29498, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 29499, - 29499, - null - ], - [ - "ident-token", - "box-shadow", - 29500, - 29509, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 29510, - 29510, - null - ], - [ - "number-token", - "0", - 29511, - 29511, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29512, - 29512, - null - ], - [ - "number-token", - "0", - 29513, - 29513, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29514, - 29514, - null - ], - [ - "number-token", - "0", - 29515, - 29515, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29516, - 29516, - null - ], - [ - "dimension-token", - ".25rem", - 29517, - 29522, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 29523, - 29523, - null - ], - [ - "function-token", - "rgba(", - 29524, - 29528, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 29529, - 29530, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 29531, - 29531, - null - ], - [ - "number-token", - "110", - 29532, - 29534, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 29535, - 29535, - null - ], - [ - "number-token", - "253", - 29536, - 29538, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 29539, - 29539, - null - ], - [ - "number-token", - ".25", - 29540, - 29542, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 29543, - 29543, - null - ], - [ - "}-token", - "}", - 29544, - 29544, - null - ], - [ - "delim-token", - ".", - 29545, - 29545, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29546, - 29556, - { - "value": "form-select" - } - ], - [ - "[-token", - "[", - 29557, - 29557, - null - ], - [ - "ident-token", - "multiple", - 29558, - 29565, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 29566, - 29566, - null - ], - [ - "comma-token", - ",", - 29567, - 29567, - null - ], - [ - "delim-token", - ".", - 29568, - 29568, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29569, - 29579, - { - "value": "form-select" - } - ], - [ - "[-token", - "[", - 29580, - 29580, - null - ], - [ - "ident-token", - "size", - 29581, - 29584, - { - "value": "size" - } - ], - [ - "]-token", - "]", - 29585, - 29585, - null - ], - [ - "colon-token", - ":", - 29586, - 29586, - null - ], - [ - "function-token", - "not(", - 29587, - 29590, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 29591, - 29591, - null - ], - [ - "ident-token", - "size", - 29592, - 29595, - { - "value": "size" - } - ], - [ - "delim-token", - "=", - 29596, - 29596, - { - "value": "=" - } - ], - [ - "string-token", - "\"1\"", - 29597, - 29599, - { - "value": "1" - } - ], - [ - "]-token", - "]", - 29600, - 29600, - null - ], - [ - ")-token", - ")", - 29601, - 29601, - null - ], - [ - "{-token", - "{", - 29602, - 29602, - null - ], - [ - "ident-token", - "padding-right", - 29603, - 29615, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 29616, - 29616, - null - ], - [ - "dimension-token", - ".75rem", - 29617, - 29622, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29623, - 29623, - null - ], - [ - "ident-token", - "background-image", - 29624, - 29639, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 29640, - 29640, - null - ], - [ - "ident-token", - "none", - 29641, - 29644, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 29645, - 29645, - null - ], - [ - "delim-token", - ".", - 29646, - 29646, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29647, - 29657, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 29658, - 29658, - null - ], - [ - "ident-token", - "disabled", - 29659, - 29666, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 29667, - 29667, - null - ], - [ - "ident-token", - "background-color", - 29668, - 29683, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 29684, - 29684, - null - ], - [ - "hash-token", - "#e9ecef", - 29685, - 29691, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "}-token", - "}", - 29692, - 29692, - null - ], - [ - "delim-token", - ".", - 29693, - 29693, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 29694, - 29704, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 29705, - 29705, - null - ], - [ - "ident-token", - "-moz-focusring", - 29706, - 29719, - { - "value": "-moz-focusring" - } - ], - [ - "{-token", - "{", - 29720, - 29720, - null - ], - [ - "ident-token", - "color", - 29721, - 29725, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 29726, - 29726, - null - ], - [ - "ident-token", - "transparent", - 29727, - 29737, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 29738, - 29738, - null - ], - [ - "ident-token", - "text-shadow", - 29739, - 29749, - { - "value": "text-shadow" - } - ], - [ - "colon-token", - ":", - 29750, - 29750, - null - ], - [ - "number-token", - "0", - 29751, - 29751, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29752, - 29752, - null - ], - [ - "number-token", - "0", - 29753, - 29753, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29754, - 29754, - null - ], - [ - "number-token", - "0", - 29755, - 29755, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 29756, - 29756, - null - ], - [ - "hash-token", - "#212529", - 29757, - 29763, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 29764, - 29764, - null - ], - [ - "delim-token", - ".", - 29765, - 29765, - { - "value": "." - } - ], - [ - "ident-token", - "form-select-sm", - 29766, - 29779, - { - "value": "form-select-sm" - } - ], - [ - "{-token", - "{", - 29780, - 29780, - null - ], - [ - "ident-token", - "padding-top", - 29781, - 29791, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 29792, - 29792, - null - ], - [ - "dimension-token", - ".25rem", - 29793, - 29798, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29799, - 29799, - null - ], - [ - "ident-token", - "padding-bottom", - 29800, - 29813, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 29814, - 29814, - null - ], - [ - "dimension-token", - ".25rem", - 29815, - 29820, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29821, - 29821, - null - ], - [ - "ident-token", - "padding-left", - 29822, - 29833, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 29834, - 29834, - null - ], - [ - "dimension-token", - ".5rem", - 29835, - 29839, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29840, - 29840, - null - ], - [ - "ident-token", - "font-size", - 29841, - 29849, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 29850, - 29850, - null - ], - [ - "dimension-token", - ".875rem", - 29851, - 29857, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29858, - 29858, - null - ], - [ - "ident-token", - "border-radius", - 29859, - 29871, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 29872, - 29872, - null - ], - [ - "dimension-token", - ".25rem", - 29873, - 29878, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 29879, - 29879, - null - ], - [ - "delim-token", - ".", - 29880, - 29880, - { - "value": "." - } - ], - [ - "ident-token", - "form-select-lg", - 29881, - 29894, - { - "value": "form-select-lg" - } - ], - [ - "{-token", - "{", - 29895, - 29895, - null - ], - [ - "ident-token", - "padding-top", - 29896, - 29906, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 29907, - 29907, - null - ], - [ - "dimension-token", - ".5rem", - 29908, - 29912, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29913, - 29913, - null - ], - [ - "ident-token", - "padding-bottom", - 29914, - 29927, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 29928, - 29928, - null - ], - [ - "dimension-token", - ".5rem", - 29929, - 29933, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29934, - 29934, - null - ], - [ - "ident-token", - "padding-left", - 29935, - 29946, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 29947, - 29947, - null - ], - [ - "dimension-token", - "1rem", - 29948, - 29951, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29952, - 29952, - null - ], - [ - "ident-token", - "font-size", - 29953, - 29961, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 29962, - 29962, - null - ], - [ - "dimension-token", - "1.25rem", - 29963, - 29969, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 29970, - 29970, - null - ], - [ - "ident-token", - "border-radius", - 29971, - 29983, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 29984, - 29984, - null - ], - [ - "dimension-token", - ".5rem", - 29985, - 29989, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 29990, - 29990, - null - ], - [ - "delim-token", - ".", - 29991, - 29991, - { - "value": "." - } - ], - [ - "ident-token", - "form-check", - 29992, - 30001, - { - "value": "form-check" - } - ], - [ - "{-token", - "{", - 30002, - 30002, - null - ], - [ - "ident-token", - "display", - 30003, - 30009, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 30010, - 30010, - null - ], - [ - "ident-token", - "block", - 30011, - 30015, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 30016, - 30016, - null - ], - [ - "ident-token", - "min-height", - 30017, - 30026, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 30027, - 30027, - null - ], - [ - "dimension-token", - "1.5rem", - 30028, - 30033, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 30034, - 30034, - null - ], - [ - "ident-token", - "padding-left", - 30035, - 30046, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 30047, - 30047, - null - ], - [ - "dimension-token", - "1.5em", - 30048, - 30052, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30053, - 30053, - null - ], - [ - "ident-token", - "margin-bottom", - 30054, - 30066, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 30067, - 30067, - null - ], - [ - "dimension-token", - ".125rem", - 30068, - 30074, - { - "value": 0.125, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 30075, - 30075, - null - ], - [ - "delim-token", - ".", - 30076, - 30076, - { - "value": "." - } - ], - [ - "ident-token", - "form-check", - 30077, - 30086, - { - "value": "form-check" - } - ], - [ - "whitespace-token", - " ", - 30087, - 30087, - null - ], - [ - "delim-token", - ".", - 30088, - 30088, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30089, - 30104, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 30105, - 30105, - null - ], - [ - "ident-token", - "float", - 30106, - 30110, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 30111, - 30111, - null - ], - [ - "ident-token", - "left", - 30112, - 30115, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 30116, - 30116, - null - ], - [ - "ident-token", - "margin-left", - 30117, - 30127, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 30128, - 30128, - null - ], - [ - "dimension-token", - "-1.5em", - 30129, - 30134, - { - "value": -1.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 30135, - 30135, - null - ], - [ - "delim-token", - ".", - 30136, - 30136, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-reverse", - 30137, - 30154, - { - "value": "form-check-reverse" - } - ], - [ - "{-token", - "{", - 30155, - 30155, - null - ], - [ - "ident-token", - "padding-right", - 30156, - 30168, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 30169, - 30169, - null - ], - [ - "dimension-token", - "1.5em", - 30170, - 30174, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30175, - 30175, - null - ], - [ - "ident-token", - "padding-left", - 30176, - 30187, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 30188, - 30188, - null - ], - [ - "number-token", - "0", - 30189, - 30189, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 30190, - 30190, - null - ], - [ - "ident-token", - "text-align", - 30191, - 30200, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 30201, - 30201, - null - ], - [ - "ident-token", - "right", - 30202, - 30206, - { - "value": "right" - } - ], - [ - "}-token", - "}", - 30207, - 30207, - null - ], - [ - "delim-token", - ".", - 30208, - 30208, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-reverse", - 30209, - 30226, - { - "value": "form-check-reverse" - } - ], - [ - "whitespace-token", - " ", - 30227, - 30227, - null - ], - [ - "delim-token", - ".", - 30228, - 30228, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30229, - 30244, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 30245, - 30245, - null - ], - [ - "ident-token", - "float", - 30246, - 30250, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 30251, - 30251, - null - ], - [ - "ident-token", - "right", - 30252, - 30256, - { - "value": "right" - } - ], - [ - "semicolon-token", - ";", - 30257, - 30257, - null - ], - [ - "ident-token", - "margin-right", - 30258, - 30269, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 30270, - 30270, - null - ], - [ - "dimension-token", - "-1.5em", - 30271, - 30276, - { - "value": -1.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30277, - 30277, - null - ], - [ - "ident-token", - "margin-left", - 30278, - 30288, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 30289, - 30289, - null - ], - [ - "number-token", - "0", - 30290, - 30290, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 30291, - 30291, - null - ], - [ - "delim-token", - ".", - 30292, - 30292, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30293, - 30308, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 30309, - 30309, - null - ], - [ - "ident-token", - "width", - 30310, - 30314, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 30315, - 30315, - null - ], - [ - "dimension-token", - "1em", - 30316, - 30318, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30319, - 30319, - null - ], - [ - "ident-token", - "height", - 30320, - 30325, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 30326, - 30326, - null - ], - [ - "dimension-token", - "1em", - 30327, - 30329, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30330, - 30330, - null - ], - [ - "ident-token", - "margin-top", - 30331, - 30340, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 30341, - 30341, - null - ], - [ - "dimension-token", - ".25em", - 30342, - 30346, - { - "value": 0.25, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 30347, - 30347, - null - ], - [ - "ident-token", - "vertical-align", - 30348, - 30361, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 30362, - 30362, - null - ], - [ - "ident-token", - "top", - 30363, - 30365, - { - "value": "top" - } - ], - [ - "semicolon-token", - ";", - 30366, - 30366, - null - ], - [ - "ident-token", - "background-color", - 30367, - 30382, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 30383, - 30383, - null - ], - [ - "hash-token", - "#fff", - 30384, - 30387, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 30388, - 30388, - null - ], - [ - "ident-token", - "background-repeat", - 30389, - 30405, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 30406, - 30406, - null - ], - [ - "ident-token", - "no-repeat", - 30407, - 30415, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 30416, - 30416, - null - ], - [ - "ident-token", - "background-position", - 30417, - 30435, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 30436, - 30436, - null - ], - [ - "ident-token", - "center", - 30437, - 30442, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 30443, - 30443, - null - ], - [ - "ident-token", - "background-size", - 30444, - 30458, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 30459, - 30459, - null - ], - [ - "ident-token", - "contain", - 30460, - 30466, - { - "value": "contain" - } - ], - [ - "semicolon-token", - ";", - 30467, - 30467, - null - ], - [ - "ident-token", - "border", - 30468, - 30473, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 30474, - 30474, - null - ], - [ - "dimension-token", - "1px", - 30475, - 30477, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 30478, - 30478, - null - ], - [ - "ident-token", - "solid", - 30479, - 30483, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 30484, - 30484, - null - ], - [ - "function-token", - "rgba(", - 30485, - 30489, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 30490, - 30490, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30491, - 30491, - null - ], - [ - "number-token", - "0", - 30492, - 30492, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30493, - 30493, - null - ], - [ - "number-token", - "0", - 30494, - 30494, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30495, - 30495, - null - ], - [ - "number-token", - ".25", - 30496, - 30498, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 30499, - 30499, - null - ], - [ - "semicolon-token", - ";", - 30500, - 30500, - null - ], - [ - "ident-token", - "-webkit-appearance", - 30501, - 30518, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 30519, - 30519, - null - ], - [ - "ident-token", - "none", - 30520, - 30523, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 30524, - 30524, - null - ], - [ - "ident-token", - "-moz-appearance", - 30525, - 30539, - { - "value": "-moz-appearance" - } - ], - [ - "colon-token", - ":", - 30540, - 30540, - null - ], - [ - "ident-token", - "none", - 30541, - 30544, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 30545, - 30545, - null - ], - [ - "ident-token", - "appearance", - 30546, - 30555, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 30556, - 30556, - null - ], - [ - "ident-token", - "none", - 30557, - 30560, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 30561, - 30561, - null - ], - [ - "ident-token", - "-webkit-print-color-adjust", - 30562, - 30587, - { - "value": "-webkit-print-color-adjust" - } - ], - [ - "colon-token", - ":", - 30588, - 30588, - null - ], - [ - "ident-token", - "exact", - 30589, - 30593, - { - "value": "exact" - } - ], - [ - "semicolon-token", - ";", - 30594, - 30594, - null - ], - [ - "ident-token", - "color-adjust", - 30595, - 30606, - { - "value": "color-adjust" - } - ], - [ - "colon-token", - ":", - 30607, - 30607, - null - ], - [ - "ident-token", - "exact", - 30608, - 30612, - { - "value": "exact" - } - ], - [ - "semicolon-token", - ";", - 30613, - 30613, - null - ], - [ - "ident-token", - "print-color-adjust", - 30614, - 30631, - { - "value": "print-color-adjust" - } - ], - [ - "colon-token", - ":", - 30632, - 30632, - null - ], - [ - "ident-token", - "exact", - 30633, - 30637, - { - "value": "exact" - } - ], - [ - "}-token", - "}", - 30638, - 30638, - null - ], - [ - "delim-token", - ".", - 30639, - 30639, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30640, - 30655, - { - "value": "form-check-input" - } - ], - [ - "[-token", - "[", - 30656, - 30656, - null - ], - [ - "ident-token", - "type", - 30657, - 30660, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 30661, - 30661, - { - "value": "=" - } - ], - [ - "ident-token", - "checkbox", - 30662, - 30669, - { - "value": "checkbox" - } - ], - [ - "]-token", - "]", - 30670, - 30670, - null - ], - [ - "{-token", - "{", - 30671, - 30671, - null - ], - [ - "ident-token", - "border-radius", - 30672, - 30684, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 30685, - 30685, - null - ], - [ - "dimension-token", - ".25em", - 30686, - 30690, - { - "value": 0.25, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 30691, - 30691, - null - ], - [ - "delim-token", - ".", - 30692, - 30692, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30693, - 30708, - { - "value": "form-check-input" - } - ], - [ - "[-token", - "[", - 30709, - 30709, - null - ], - [ - "ident-token", - "type", - 30710, - 30713, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 30714, - 30714, - { - "value": "=" - } - ], - [ - "ident-token", - "radio", - 30715, - 30719, - { - "value": "radio" - } - ], - [ - "]-token", - "]", - 30720, - 30720, - null - ], - [ - "{-token", - "{", - 30721, - 30721, - null - ], - [ - "ident-token", - "border-radius", - 30722, - 30734, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 30735, - 30735, - null - ], - [ - "percentage-token", - "50%", - 30736, - 30738, - { - "value": 50 - } - ], - [ - "}-token", - "}", - 30739, - 30739, - null - ], - [ - "delim-token", - ".", - 30740, - 30740, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30741, - 30756, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 30757, - 30757, - null - ], - [ - "ident-token", - "active", - 30758, - 30763, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 30764, - 30764, - null - ], - [ - "ident-token", - "filter", - 30765, - 30770, - { - "value": "filter" - } - ], - [ - "colon-token", - ":", - 30771, - 30771, - null - ], - [ - "function-token", - "brightness(", - 30772, - 30782, - { - "value": "brightness" - } - ], - [ - "percentage-token", - "90%", - 30783, - 30785, - { - "value": 90 - } - ], - [ - ")-token", - ")", - 30786, - 30786, - null - ], - [ - "}-token", - "}", - 30787, - 30787, - null - ], - [ - "delim-token", - ".", - 30788, - 30788, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30789, - 30804, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 30805, - 30805, - null - ], - [ - "ident-token", - "focus", - 30806, - 30810, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 30811, - 30811, - null - ], - [ - "ident-token", - "border-color", - 30812, - 30823, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 30824, - 30824, - null - ], - [ - "hash-token", - "#86b7fe", - 30825, - 30831, - { - "value": "86b7fe", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 30832, - 30832, - null - ], - [ - "ident-token", - "outline", - 30833, - 30839, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 30840, - 30840, - null - ], - [ - "number-token", - "0", - 30841, - 30841, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 30842, - 30842, - null - ], - [ - "ident-token", - "box-shadow", - 30843, - 30852, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 30853, - 30853, - null - ], - [ - "number-token", - "0", - 30854, - 30854, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 30855, - 30855, - null - ], - [ - "number-token", - "0", - 30856, - 30856, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 30857, - 30857, - null - ], - [ - "number-token", - "0", - 30858, - 30858, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 30859, - 30859, - null - ], - [ - "dimension-token", - ".25rem", - 30860, - 30865, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 30866, - 30866, - null - ], - [ - "function-token", - "rgba(", - 30867, - 30871, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 30872, - 30873, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30874, - 30874, - null - ], - [ - "number-token", - "110", - 30875, - 30877, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30878, - 30878, - null - ], - [ - "number-token", - "253", - 30879, - 30881, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 30882, - 30882, - null - ], - [ - "number-token", - ".25", - 30883, - 30885, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 30886, - 30886, - null - ], - [ - "}-token", - "}", - 30887, - 30887, - null - ], - [ - "delim-token", - ".", - 30888, - 30888, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30889, - 30904, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 30905, - 30905, - null - ], - [ - "ident-token", - "checked", - 30906, - 30912, - { - "value": "checked" - } - ], - [ - "{-token", - "{", - 30913, - 30913, - null - ], - [ - "ident-token", - "background-color", - 30914, - 30929, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 30930, - 30930, - null - ], - [ - "hash-token", - "#0d6efd", - 30931, - 30937, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 30938, - 30938, - null - ], - [ - "ident-token", - "border-color", - 30939, - 30950, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 30951, - 30951, - null - ], - [ - "hash-token", - "#0d6efd", - 30952, - 30958, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 30959, - 30959, - null - ], - [ - "delim-token", - ".", - 30960, - 30960, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 30961, - 30976, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 30977, - 30977, - null - ], - [ - "ident-token", - "checked", - 30978, - 30984, - { - "value": "checked" - } - ], - [ - "[-token", - "[", - 30985, - 30985, - null - ], - [ - "ident-token", - "type", - 30986, - 30989, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 30990, - 30990, - { - "value": "=" - } - ], - [ - "ident-token", - "checkbox", - 30991, - 30998, - { - "value": "checkbox" - } - ], - [ - "]-token", - "]", - 30999, - 30999, - null - ], - [ - "{-token", - "{", - 31000, - 31000, - null - ], - [ - "ident-token", - "background-image", - 31001, - 31016, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 31017, - 31017, - null - ], - [ - "function-token", - "url(", - 31018, - 31021, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e\"", - 31022, - 31237, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 31238, - 31238, - null - ], - [ - "}-token", - "}", - 31239, - 31239, - null - ], - [ - "delim-token", - ".", - 31240, - 31240, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31241, - 31256, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 31257, - 31257, - null - ], - [ - "ident-token", - "checked", - 31258, - 31264, - { - "value": "checked" - } - ], - [ - "[-token", - "[", - 31265, - 31265, - null - ], - [ - "ident-token", - "type", - 31266, - 31269, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 31270, - 31270, - { - "value": "=" - } - ], - [ - "ident-token", - "radio", - 31271, - 31275, - { - "value": "radio" - } - ], - [ - "]-token", - "]", - 31276, - 31276, - null - ], - [ - "{-token", - "{", - 31277, - 31277, - null - ], - [ - "ident-token", - "background-image", - 31278, - 31293, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 31294, - 31294, - null - ], - [ - "function-token", - "url(", - 31295, - 31298, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\"", - 31299, - 31426, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 31427, - 31427, - null - ], - [ - "}-token", - "}", - 31428, - 31428, - null - ], - [ - "delim-token", - ".", - 31429, - 31429, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31430, - 31445, - { - "value": "form-check-input" - } - ], - [ - "[-token", - "[", - 31446, - 31446, - null - ], - [ - "ident-token", - "type", - 31447, - 31450, - { - "value": "type" - } - ], - [ - "delim-token", - "=", - 31451, - 31451, - { - "value": "=" - } - ], - [ - "ident-token", - "checkbox", - 31452, - 31459, - { - "value": "checkbox" - } - ], - [ - "]-token", - "]", - 31460, - 31460, - null - ], - [ - "colon-token", - ":", - 31461, - 31461, - null - ], - [ - "ident-token", - "indeterminate", - 31462, - 31474, - { - "value": "indeterminate" - } - ], - [ - "{-token", - "{", - 31475, - 31475, - null - ], - [ - "ident-token", - "background-color", - 31476, - 31491, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 31492, - 31492, - null - ], - [ - "hash-token", - "#0d6efd", - 31493, - 31499, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 31500, - 31500, - null - ], - [ - "ident-token", - "border-color", - 31501, - 31512, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 31513, - 31513, - null - ], - [ - "hash-token", - "#0d6efd", - 31514, - 31520, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 31521, - 31521, - null - ], - [ - "ident-token", - "background-image", - 31522, - 31537, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 31538, - 31538, - null - ], - [ - "function-token", - "url(", - 31539, - 31542, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\"", - 31543, - 31752, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 31753, - 31753, - null - ], - [ - "}-token", - "}", - 31754, - 31754, - null - ], - [ - "delim-token", - ".", - 31755, - 31755, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31756, - 31771, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 31772, - 31772, - null - ], - [ - "ident-token", - "disabled", - 31773, - 31780, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 31781, - 31781, - null - ], - [ - "ident-token", - "pointer-events", - 31782, - 31795, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 31796, - 31796, - null - ], - [ - "ident-token", - "none", - 31797, - 31800, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 31801, - 31801, - null - ], - [ - "ident-token", - "filter", - 31802, - 31807, - { - "value": "filter" - } - ], - [ - "colon-token", - ":", - 31808, - 31808, - null - ], - [ - "ident-token", - "none", - 31809, - 31812, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 31813, - 31813, - null - ], - [ - "ident-token", - "opacity", - 31814, - 31820, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 31821, - 31821, - null - ], - [ - "number-token", - ".5", - 31822, - 31823, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 31824, - 31824, - null - ], - [ - "delim-token", - ".", - 31825, - 31825, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31826, - 31841, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 31842, - 31842, - null - ], - [ - "ident-token", - "disabled", - 31843, - 31850, - { - "value": "disabled" - } - ], - [ - "delim-token", - "~", - 31851, - 31851, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 31852, - 31852, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 31853, - 31868, - { - "value": "form-check-label" - } - ], - [ - "comma-token", - ",", - 31869, - 31869, - null - ], - [ - "delim-token", - ".", - 31870, - 31870, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31871, - 31886, - { - "value": "form-check-input" - } - ], - [ - "[-token", - "[", - 31887, - 31887, - null - ], - [ - "ident-token", - "disabled", - 31888, - 31895, - { - "value": "disabled" - } - ], - [ - "]-token", - "]", - 31896, - 31896, - null - ], - [ - "delim-token", - "~", - 31897, - 31897, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 31898, - 31898, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 31899, - 31914, - { - "value": "form-check-label" - } - ], - [ - "{-token", - "{", - 31915, - 31915, - null - ], - [ - "ident-token", - "cursor", - 31916, - 31921, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 31922, - 31922, - null - ], - [ - "ident-token", - "default", - 31923, - 31929, - { - "value": "default" - } - ], - [ - "semicolon-token", - ";", - 31930, - 31930, - null - ], - [ - "ident-token", - "opacity", - 31931, - 31937, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 31938, - 31938, - null - ], - [ - "number-token", - ".5", - 31939, - 31940, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 31941, - 31941, - null - ], - [ - "delim-token", - ".", - 31942, - 31942, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 31943, - 31953, - { - "value": "form-switch" - } - ], - [ - "{-token", - "{", - 31954, - 31954, - null - ], - [ - "ident-token", - "padding-left", - 31955, - 31966, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 31967, - 31967, - null - ], - [ - "dimension-token", - "2.5em", - 31968, - 31972, - { - "value": 2.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 31973, - 31973, - null - ], - [ - "delim-token", - ".", - 31974, - 31974, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 31975, - 31985, - { - "value": "form-switch" - } - ], - [ - "whitespace-token", - " ", - 31986, - 31986, - null - ], - [ - "delim-token", - ".", - 31987, - 31987, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 31988, - 32003, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 32004, - 32004, - null - ], - [ - "ident-token", - "width", - 32005, - 32009, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 32010, - 32010, - null - ], - [ - "dimension-token", - "2em", - 32011, - 32013, - { - "value": 2, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 32014, - 32014, - null - ], - [ - "ident-token", - "margin-left", - 32015, - 32025, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 32026, - 32026, - null - ], - [ - "dimension-token", - "-2.5em", - 32027, - 32032, - { - "value": -2.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 32033, - 32033, - null - ], - [ - "ident-token", - "background-image", - 32034, - 32049, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 32050, - 32050, - null - ], - [ - "function-token", - "url(", - 32051, - 32054, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\"", - 32055, - 32199, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 32200, - 32200, - null - ], - [ - "semicolon-token", - ";", - 32201, - 32201, - null - ], - [ - "ident-token", - "background-position", - 32202, - 32220, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 32221, - 32221, - null - ], - [ - "ident-token", - "left", - 32222, - 32225, - { - "value": "left" - } - ], - [ - "whitespace-token", - " ", - 32226, - 32226, - null - ], - [ - "ident-token", - "center", - 32227, - 32232, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 32233, - 32233, - null - ], - [ - "ident-token", - "border-radius", - 32234, - 32246, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 32247, - 32247, - null - ], - [ - "dimension-token", - "2em", - 32248, - 32250, - { - "value": 2, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 32251, - 32251, - null - ], - [ - "ident-token", - "transition", - 32252, - 32261, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 32262, - 32262, - null - ], - [ - "ident-token", - "background-position", - 32263, - 32281, - { - "value": "background-position" - } - ], - [ - "whitespace-token", - " ", - 32282, - 32282, - null - ], - [ - "dimension-token", - ".15s", - 32283, - 32286, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 32287, - 32287, - null - ], - [ - "ident-token", - "ease-in-out", - 32288, - 32298, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 32299, - 32299, - null - ], - [ - "at-keyword-token", - "@media", - 32300, - 32305, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 32306, - 32306, - null - ], - [ - "(-token", - "(", - 32307, - 32307, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 32308, - 32329, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 32330, - 32330, - null - ], - [ - "ident-token", - "reduce", - 32331, - 32336, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 32337, - 32337, - null - ], - [ - "{-token", - "{", - 32338, - 32338, - null - ], - [ - "delim-token", - ".", - 32339, - 32339, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 32340, - 32350, - { - "value": "form-switch" - } - ], - [ - "whitespace-token", - " ", - 32351, - 32351, - null - ], - [ - "delim-token", - ".", - 32352, - 32352, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 32353, - 32368, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 32369, - 32369, - null - ], - [ - "ident-token", - "transition", - 32370, - 32379, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 32380, - 32380, - null - ], - [ - "ident-token", - "none", - 32381, - 32384, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 32385, - 32385, - null - ], - [ - "}-token", - "}", - 32386, - 32386, - null - ], - [ - "delim-token", - ".", - 32387, - 32387, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 32388, - 32398, - { - "value": "form-switch" - } - ], - [ - "whitespace-token", - " ", - 32399, - 32399, - null - ], - [ - "delim-token", - ".", - 32400, - 32400, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 32401, - 32416, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 32417, - 32417, - null - ], - [ - "ident-token", - "focus", - 32418, - 32422, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 32423, - 32423, - null - ], - [ - "ident-token", - "background-image", - 32424, - 32439, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 32440, - 32440, - null - ], - [ - "function-token", - "url(", - 32441, - 32444, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\"", - 32445, - 32575, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 32576, - 32576, - null - ], - [ - "}-token", - "}", - 32577, - 32577, - null - ], - [ - "delim-token", - ".", - 32578, - 32578, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 32579, - 32589, - { - "value": "form-switch" - } - ], - [ - "whitespace-token", - " ", - 32590, - 32590, - null - ], - [ - "delim-token", - ".", - 32591, - 32591, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 32592, - 32607, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 32608, - 32608, - null - ], - [ - "ident-token", - "checked", - 32609, - 32615, - { - "value": "checked" - } - ], - [ - "{-token", - "{", - 32616, - 32616, - null - ], - [ - "ident-token", - "background-position", - 32617, - 32635, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 32636, - 32636, - null - ], - [ - "ident-token", - "right", - 32637, - 32641, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 32642, - 32642, - null - ], - [ - "ident-token", - "center", - 32643, - 32648, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 32649, - 32649, - null - ], - [ - "ident-token", - "background-image", - 32650, - 32665, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 32666, - 32666, - null - ], - [ - "function-token", - "url(", - 32667, - 32670, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\"", - 32671, - 32798, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 32799, - 32799, - null - ], - [ - "}-token", - "}", - 32800, - 32800, - null - ], - [ - "delim-token", - ".", - 32801, - 32801, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 32802, - 32812, - { - "value": "form-switch" - } - ], - [ - "delim-token", - ".", - 32813, - 32813, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-reverse", - 32814, - 32831, - { - "value": "form-check-reverse" - } - ], - [ - "{-token", - "{", - 32832, - 32832, - null - ], - [ - "ident-token", - "padding-right", - 32833, - 32845, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 32846, - 32846, - null - ], - [ - "dimension-token", - "2.5em", - 32847, - 32851, - { - "value": 2.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 32852, - 32852, - null - ], - [ - "ident-token", - "padding-left", - 32853, - 32864, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 32865, - 32865, - null - ], - [ - "number-token", - "0", - 32866, - 32866, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 32867, - 32867, - null - ], - [ - "delim-token", - ".", - 32868, - 32868, - { - "value": "." - } - ], - [ - "ident-token", - "form-switch", - 32869, - 32879, - { - "value": "form-switch" - } - ], - [ - "delim-token", - ".", - 32880, - 32880, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-reverse", - 32881, - 32898, - { - "value": "form-check-reverse" - } - ], - [ - "whitespace-token", - " ", - 32899, - 32899, - null - ], - [ - "delim-token", - ".", - 32900, - 32900, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 32901, - 32916, - { - "value": "form-check-input" - } - ], - [ - "{-token", - "{", - 32917, - 32917, - null - ], - [ - "ident-token", - "margin-right", - 32918, - 32929, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 32930, - 32930, - null - ], - [ - "dimension-token", - "-2.5em", - 32931, - 32936, - { - "value": -2.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 32937, - 32937, - null - ], - [ - "ident-token", - "margin-left", - 32938, - 32948, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 32949, - 32949, - null - ], - [ - "number-token", - "0", - 32950, - 32950, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 32951, - 32951, - null - ], - [ - "delim-token", - ".", - 32952, - 32952, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-inline", - 32953, - 32969, - { - "value": "form-check-inline" - } - ], - [ - "{-token", - "{", - 32970, - 32970, - null - ], - [ - "ident-token", - "display", - 32971, - 32977, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 32978, - 32978, - null - ], - [ - "ident-token", - "inline-block", - 32979, - 32990, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 32991, - 32991, - null - ], - [ - "ident-token", - "margin-right", - 32992, - 33003, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 33004, - 33004, - null - ], - [ - "dimension-token", - "1rem", - 33005, - 33008, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 33009, - 33009, - null - ], - [ - "delim-token", - ".", - 33010, - 33010, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 33011, - 33019, - { - "value": "btn-check" - } - ], - [ - "{-token", - "{", - 33020, - 33020, - null - ], - [ - "ident-token", - "position", - 33021, - 33028, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 33029, - 33029, - null - ], - [ - "ident-token", - "absolute", - 33030, - 33037, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 33038, - 33038, - null - ], - [ - "ident-token", - "clip", - 33039, - 33042, - { - "value": "clip" - } - ], - [ - "colon-token", - ":", - 33043, - 33043, - null - ], - [ - "function-token", - "rect(", - 33044, - 33048, - { - "value": "rect" - } - ], - [ - "number-token", - "0", - 33049, - 33049, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33050, - 33050, - null - ], - [ - "number-token", - "0", - 33051, - 33051, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33052, - 33052, - null - ], - [ - "number-token", - "0", - 33053, - 33053, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33054, - 33054, - null - ], - [ - "number-token", - "0", - 33055, - 33055, - { - "value": 0, - "type": "integer" - } - ], - [ - ")-token", - ")", - 33056, - 33056, - null - ], - [ - "semicolon-token", - ";", - 33057, - 33057, - null - ], - [ - "ident-token", - "pointer-events", - 33058, - 33071, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 33072, - 33072, - null - ], - [ - "ident-token", - "none", - 33073, - 33076, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 33077, - 33077, - null - ], - [ - "delim-token", - ".", - 33078, - 33078, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 33079, - 33087, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 33088, - 33088, - null - ], - [ - "ident-token", - "disabled", - 33089, - 33096, - { - "value": "disabled" - } - ], - [ - "delim-token", - "+", - 33097, - 33097, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 33098, - 33098, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 33099, - 33101, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 33102, - 33102, - null - ], - [ - "delim-token", - ".", - 33103, - 33103, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 33104, - 33112, - { - "value": "btn-check" - } - ], - [ - "[-token", - "[", - 33113, - 33113, - null - ], - [ - "ident-token", - "disabled", - 33114, - 33121, - { - "value": "disabled" - } - ], - [ - "]-token", - "]", - 33122, - 33122, - null - ], - [ - "delim-token", - "+", - 33123, - 33123, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 33124, - 33124, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 33125, - 33127, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 33128, - 33128, - null - ], - [ - "ident-token", - "pointer-events", - 33129, - 33142, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 33143, - 33143, - null - ], - [ - "ident-token", - "none", - 33144, - 33147, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 33148, - 33148, - null - ], - [ - "ident-token", - "filter", - 33149, - 33154, - { - "value": "filter" - } - ], - [ - "colon-token", - ":", - 33155, - 33155, - null - ], - [ - "ident-token", - "none", - 33156, - 33159, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 33160, - 33160, - null - ], - [ - "ident-token", - "opacity", - 33161, - 33167, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 33168, - 33168, - null - ], - [ - "number-token", - ".65", - 33169, - 33171, - { - "value": 0.65, - "type": "number" - } - ], - [ - "}-token", - "}", - 33172, - 33172, - null - ], - [ - "delim-token", - ".", - 33173, - 33173, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33174, - 33183, - { - "value": "form-range" - } - ], - [ - "{-token", - "{", - 33184, - 33184, - null - ], - [ - "ident-token", - "width", - 33185, - 33189, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 33190, - 33190, - null - ], - [ - "percentage-token", - "100%", - 33191, - 33194, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 33195, - 33195, - null - ], - [ - "ident-token", - "height", - 33196, - 33201, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 33202, - 33202, - null - ], - [ - "dimension-token", - "1.5rem", - 33203, - 33208, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 33209, - 33209, - null - ], - [ - "ident-token", - "padding", - 33210, - 33216, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 33217, - 33217, - null - ], - [ - "number-token", - "0", - 33218, - 33218, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 33219, - 33219, - null - ], - [ - "ident-token", - "background-color", - 33220, - 33235, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 33236, - 33236, - null - ], - [ - "ident-token", - "transparent", - 33237, - 33247, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 33248, - 33248, - null - ], - [ - "ident-token", - "-webkit-appearance", - 33249, - 33266, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 33267, - 33267, - null - ], - [ - "ident-token", - "none", - 33268, - 33271, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 33272, - 33272, - null - ], - [ - "ident-token", - "-moz-appearance", - 33273, - 33287, - { - "value": "-moz-appearance" - } - ], - [ - "colon-token", - ":", - 33288, - 33288, - null - ], - [ - "ident-token", - "none", - 33289, - 33292, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 33293, - 33293, - null - ], - [ - "ident-token", - "appearance", - 33294, - 33303, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 33304, - 33304, - null - ], - [ - "ident-token", - "none", - 33305, - 33308, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 33309, - 33309, - null - ], - [ - "delim-token", - ".", - 33310, - 33310, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33311, - 33320, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 33321, - 33321, - null - ], - [ - "ident-token", - "focus", - 33322, - 33326, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 33327, - 33327, - null - ], - [ - "ident-token", - "outline", - 33328, - 33334, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 33335, - 33335, - null - ], - [ - "number-token", - "0", - 33336, - 33336, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 33337, - 33337, - null - ], - [ - "delim-token", - ".", - 33338, - 33338, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33339, - 33348, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 33349, - 33349, - null - ], - [ - "ident-token", - "focus", - 33350, - 33354, - { - "value": "focus" - } - ], - [ - "colon-token", - ":", - 33355, - 33355, - null - ], - [ - "colon-token", - ":", - 33356, - 33356, - null - ], - [ - "ident-token", - "-webkit-slider-thumb", - 33357, - 33376, - { - "value": "-webkit-slider-thumb" - } - ], - [ - "{-token", - "{", - 33377, - 33377, - null - ], - [ - "ident-token", - "box-shadow", - 33378, - 33387, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 33388, - 33388, - null - ], - [ - "number-token", - "0", - 33389, - 33389, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33390, - 33390, - null - ], - [ - "number-token", - "0", - 33391, - 33391, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33392, - 33392, - null - ], - [ - "number-token", - "0", - 33393, - 33393, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33394, - 33394, - null - ], - [ - "dimension-token", - "1px", - 33395, - 33397, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 33398, - 33398, - null - ], - [ - "hash-token", - "#fff", - 33399, - 33402, - { - "value": "fff", - "type": "id" - } - ], - [ - "comma-token", - ",", - 33403, - 33403, - null - ], - [ - "number-token", - "0", - 33404, - 33404, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33405, - 33405, - null - ], - [ - "number-token", - "0", - 33406, - 33406, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33407, - 33407, - null - ], - [ - "number-token", - "0", - 33408, - 33408, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33409, - 33409, - null - ], - [ - "dimension-token", - ".25rem", - 33410, - 33415, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 33416, - 33416, - null - ], - [ - "function-token", - "rgba(", - 33417, - 33421, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 33422, - 33423, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33424, - 33424, - null - ], - [ - "number-token", - "110", - 33425, - 33427, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33428, - 33428, - null - ], - [ - "number-token", - "253", - 33429, - 33431, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33432, - 33432, - null - ], - [ - "number-token", - ".25", - 33433, - 33435, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 33436, - 33436, - null - ], - [ - "}-token", - "}", - 33437, - 33437, - null - ], - [ - "delim-token", - ".", - 33438, - 33438, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33439, - 33448, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 33449, - 33449, - null - ], - [ - "ident-token", - "focus", - 33450, - 33454, - { - "value": "focus" - } - ], - [ - "colon-token", - ":", - 33455, - 33455, - null - ], - [ - "colon-token", - ":", - 33456, - 33456, - null - ], - [ - "ident-token", - "-moz-range-thumb", - 33457, - 33472, - { - "value": "-moz-range-thumb" - } - ], - [ - "{-token", - "{", - 33473, - 33473, - null - ], - [ - "ident-token", - "box-shadow", - 33474, - 33483, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 33484, - 33484, - null - ], - [ - "number-token", - "0", - 33485, - 33485, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33486, - 33486, - null - ], - [ - "number-token", - "0", - 33487, - 33487, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33488, - 33488, - null - ], - [ - "number-token", - "0", - 33489, - 33489, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33490, - 33490, - null - ], - [ - "dimension-token", - "1px", - 33491, - 33493, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 33494, - 33494, - null - ], - [ - "hash-token", - "#fff", - 33495, - 33498, - { - "value": "fff", - "type": "id" - } - ], - [ - "comma-token", - ",", - 33499, - 33499, - null - ], - [ - "number-token", - "0", - 33500, - 33500, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33501, - 33501, - null - ], - [ - "number-token", - "0", - 33502, - 33502, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33503, - 33503, - null - ], - [ - "number-token", - "0", - 33504, - 33504, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 33505, - 33505, - null - ], - [ - "dimension-token", - ".25rem", - 33506, - 33511, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 33512, - 33512, - null - ], - [ - "function-token", - "rgba(", - 33513, - 33517, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 33518, - 33519, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33520, - 33520, - null - ], - [ - "number-token", - "110", - 33521, - 33523, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33524, - 33524, - null - ], - [ - "number-token", - "253", - 33525, - 33527, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 33528, - 33528, - null - ], - [ - "number-token", - ".25", - 33529, - 33531, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 33532, - 33532, - null - ], - [ - "}-token", - "}", - 33533, - 33533, - null - ], - [ - "delim-token", - ".", - 33534, - 33534, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33535, - 33544, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 33545, - 33545, - null - ], - [ - "colon-token", - ":", - 33546, - 33546, - null - ], - [ - "ident-token", - "-moz-focus-outer", - 33547, - 33562, - { - "value": "-moz-focus-outer" - } - ], - [ - "{-token", - "{", - 33563, - 33563, - null - ], - [ - "ident-token", - "border", - 33564, - 33569, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 33570, - 33570, - null - ], - [ - "number-token", - "0", - 33571, - 33571, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 33572, - 33572, - null - ], - [ - "delim-token", - ".", - 33573, - 33573, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33574, - 33583, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 33584, - 33584, - null - ], - [ - "colon-token", - ":", - 33585, - 33585, - null - ], - [ - "ident-token", - "-webkit-slider-thumb", - 33586, - 33605, - { - "value": "-webkit-slider-thumb" - } - ], - [ - "{-token", - "{", - 33606, - 33606, - null - ], - [ - "ident-token", - "width", - 33607, - 33611, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 33612, - 33612, - null - ], - [ - "dimension-token", - "1rem", - 33613, - 33616, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 33617, - 33617, - null - ], - [ - "ident-token", - "height", - 33618, - 33623, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 33624, - 33624, - null - ], - [ - "dimension-token", - "1rem", - 33625, - 33628, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 33629, - 33629, - null - ], - [ - "ident-token", - "margin-top", - 33630, - 33639, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 33640, - 33640, - null - ], - [ - "dimension-token", - "-.25rem", - 33641, - 33647, - { - "value": -0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 33648, - 33648, - null - ], - [ - "ident-token", - "background-color", - 33649, - 33664, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 33665, - 33665, - null - ], - [ - "hash-token", - "#0d6efd", - 33666, - 33672, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 33673, - 33673, - null - ], - [ - "ident-token", - "border", - 33674, - 33679, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 33680, - 33680, - null - ], - [ - "number-token", - "0", - 33681, - 33681, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 33682, - 33682, - null - ], - [ - "ident-token", - "border-radius", - 33683, - 33695, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 33696, - 33696, - null - ], - [ - "dimension-token", - "1rem", - 33697, - 33700, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 33701, - 33701, - null - ], - [ - "ident-token", - "-webkit-transition", - 33702, - 33719, - { - "value": "-webkit-transition" - } - ], - [ - "colon-token", - ":", - 33720, - 33720, - null - ], - [ - "ident-token", - "background-color", - 33721, - 33736, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 33737, - 33737, - null - ], - [ - "dimension-token", - ".15s", - 33738, - 33741, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33742, - 33742, - null - ], - [ - "ident-token", - "ease-in-out", - 33743, - 33753, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 33754, - 33754, - null - ], - [ - "ident-token", - "border-color", - 33755, - 33766, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 33767, - 33767, - null - ], - [ - "dimension-token", - ".15s", - 33768, - 33771, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33772, - 33772, - null - ], - [ - "ident-token", - "ease-in-out", - 33773, - 33783, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 33784, - 33784, - null - ], - [ - "ident-token", - "box-shadow", - 33785, - 33794, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 33795, - 33795, - null - ], - [ - "dimension-token", - ".15s", - 33796, - 33799, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33800, - 33800, - null - ], - [ - "ident-token", - "ease-in-out", - 33801, - 33811, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 33812, - 33812, - null - ], - [ - "ident-token", - "transition", - 33813, - 33822, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 33823, - 33823, - null - ], - [ - "ident-token", - "background-color", - 33824, - 33839, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 33840, - 33840, - null - ], - [ - "dimension-token", - ".15s", - 33841, - 33844, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33845, - 33845, - null - ], - [ - "ident-token", - "ease-in-out", - 33846, - 33856, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 33857, - 33857, - null - ], - [ - "ident-token", - "border-color", - 33858, - 33869, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 33870, - 33870, - null - ], - [ - "dimension-token", - ".15s", - 33871, - 33874, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33875, - 33875, - null - ], - [ - "ident-token", - "ease-in-out", - 33876, - 33886, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 33887, - 33887, - null - ], - [ - "ident-token", - "box-shadow", - 33888, - 33897, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 33898, - 33898, - null - ], - [ - "dimension-token", - ".15s", - 33899, - 33902, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 33903, - 33903, - null - ], - [ - "ident-token", - "ease-in-out", - 33904, - 33914, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 33915, - 33915, - null - ], - [ - "ident-token", - "-webkit-appearance", - 33916, - 33933, - { - "value": "-webkit-appearance" - } - ], - [ - "colon-token", - ":", - 33934, - 33934, - null - ], - [ - "ident-token", - "none", - 33935, - 33938, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 33939, - 33939, - null - ], - [ - "ident-token", - "appearance", - 33940, - 33949, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 33950, - 33950, - null - ], - [ - "ident-token", - "none", - 33951, - 33954, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 33955, - 33955, - null - ], - [ - "at-keyword-token", - "@media", - 33956, - 33961, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 33962, - 33962, - null - ], - [ - "(-token", - "(", - 33963, - 33963, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 33964, - 33985, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 33986, - 33986, - null - ], - [ - "ident-token", - "reduce", - 33987, - 33992, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 33993, - 33993, - null - ], - [ - "{-token", - "{", - 33994, - 33994, - null - ], - [ - "delim-token", - ".", - 33995, - 33995, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 33996, - 34005, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34006, - 34006, - null - ], - [ - "colon-token", - ":", - 34007, - 34007, - null - ], - [ - "ident-token", - "-webkit-slider-thumb", - 34008, - 34027, - { - "value": "-webkit-slider-thumb" - } - ], - [ - "{-token", - "{", - 34028, - 34028, - null - ], - [ - "ident-token", - "-webkit-transition", - 34029, - 34046, - { - "value": "-webkit-transition" - } - ], - [ - "colon-token", - ":", - 34047, - 34047, - null - ], - [ - "ident-token", - "none", - 34048, - 34051, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 34052, - 34052, - null - ], - [ - "ident-token", - "transition", - 34053, - 34062, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 34063, - 34063, - null - ], - [ - "ident-token", - "none", - 34064, - 34067, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 34068, - 34068, - null - ], - [ - "}-token", - "}", - 34069, - 34069, - null - ], - [ - "delim-token", - ".", - 34070, - 34070, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34071, - 34080, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34081, - 34081, - null - ], - [ - "colon-token", - ":", - 34082, - 34082, - null - ], - [ - "ident-token", - "-webkit-slider-thumb", - 34083, - 34102, - { - "value": "-webkit-slider-thumb" - } - ], - [ - "colon-token", - ":", - 34103, - 34103, - null - ], - [ - "ident-token", - "active", - 34104, - 34109, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 34110, - 34110, - null - ], - [ - "ident-token", - "background-color", - 34111, - 34126, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 34127, - 34127, - null - ], - [ - "hash-token", - "#b6d4fe", - 34128, - 34134, - { - "value": "b6d4fe", - "type": "id" - } - ], - [ - "}-token", - "}", - 34135, - 34135, - null - ], - [ - "delim-token", - ".", - 34136, - 34136, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34137, - 34146, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34147, - 34147, - null - ], - [ - "colon-token", - ":", - 34148, - 34148, - null - ], - [ - "ident-token", - "-webkit-slider-runnable-track", - 34149, - 34177, - { - "value": "-webkit-slider-runnable-track" - } - ], - [ - "{-token", - "{", - 34178, - 34178, - null - ], - [ - "ident-token", - "width", - 34179, - 34183, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 34184, - 34184, - null - ], - [ - "percentage-token", - "100%", - 34185, - 34188, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 34189, - 34189, - null - ], - [ - "ident-token", - "height", - 34190, - 34195, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 34196, - 34196, - null - ], - [ - "dimension-token", - ".5rem", - 34197, - 34201, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 34202, - 34202, - null - ], - [ - "ident-token", - "color", - 34203, - 34207, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 34208, - 34208, - null - ], - [ - "ident-token", - "transparent", - 34209, - 34219, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 34220, - 34220, - null - ], - [ - "ident-token", - "cursor", - 34221, - 34226, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 34227, - 34227, - null - ], - [ - "ident-token", - "pointer", - 34228, - 34234, - { - "value": "pointer" - } - ], - [ - "semicolon-token", - ";", - 34235, - 34235, - null - ], - [ - "ident-token", - "background-color", - 34236, - 34251, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 34252, - 34252, - null - ], - [ - "hash-token", - "#dee2e6", - 34253, - 34259, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 34260, - 34260, - null - ], - [ - "ident-token", - "border-color", - 34261, - 34272, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 34273, - 34273, - null - ], - [ - "ident-token", - "transparent", - 34274, - 34284, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 34285, - 34285, - null - ], - [ - "ident-token", - "border-radius", - 34286, - 34298, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 34299, - 34299, - null - ], - [ - "dimension-token", - "1rem", - 34300, - 34303, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 34304, - 34304, - null - ], - [ - "delim-token", - ".", - 34305, - 34305, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34306, - 34315, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34316, - 34316, - null - ], - [ - "colon-token", - ":", - 34317, - 34317, - null - ], - [ - "ident-token", - "-moz-range-thumb", - 34318, - 34333, - { - "value": "-moz-range-thumb" - } - ], - [ - "{-token", - "{", - 34334, - 34334, - null - ], - [ - "ident-token", - "width", - 34335, - 34339, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 34340, - 34340, - null - ], - [ - "dimension-token", - "1rem", - 34341, - 34344, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 34345, - 34345, - null - ], - [ - "ident-token", - "height", - 34346, - 34351, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 34352, - 34352, - null - ], - [ - "dimension-token", - "1rem", - 34353, - 34356, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 34357, - 34357, - null - ], - [ - "ident-token", - "background-color", - 34358, - 34373, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 34374, - 34374, - null - ], - [ - "hash-token", - "#0d6efd", - 34375, - 34381, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 34382, - 34382, - null - ], - [ - "ident-token", - "border", - 34383, - 34388, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 34389, - 34389, - null - ], - [ - "number-token", - "0", - 34390, - 34390, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 34391, - 34391, - null - ], - [ - "ident-token", - "border-radius", - 34392, - 34404, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 34405, - 34405, - null - ], - [ - "dimension-token", - "1rem", - 34406, - 34409, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 34410, - 34410, - null - ], - [ - "ident-token", - "-moz-transition", - 34411, - 34425, - { - "value": "-moz-transition" - } - ], - [ - "colon-token", - ":", - 34426, - 34426, - null - ], - [ - "ident-token", - "background-color", - 34427, - 34442, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 34443, - 34443, - null - ], - [ - "dimension-token", - ".15s", - 34444, - 34447, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34448, - 34448, - null - ], - [ - "ident-token", - "ease-in-out", - 34449, - 34459, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 34460, - 34460, - null - ], - [ - "ident-token", - "border-color", - 34461, - 34472, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 34473, - 34473, - null - ], - [ - "dimension-token", - ".15s", - 34474, - 34477, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34478, - 34478, - null - ], - [ - "ident-token", - "ease-in-out", - 34479, - 34489, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 34490, - 34490, - null - ], - [ - "ident-token", - "box-shadow", - 34491, - 34500, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 34501, - 34501, - null - ], - [ - "dimension-token", - ".15s", - 34502, - 34505, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34506, - 34506, - null - ], - [ - "ident-token", - "ease-in-out", - 34507, - 34517, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 34518, - 34518, - null - ], - [ - "ident-token", - "transition", - 34519, - 34528, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 34529, - 34529, - null - ], - [ - "ident-token", - "background-color", - 34530, - 34545, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 34546, - 34546, - null - ], - [ - "dimension-token", - ".15s", - 34547, - 34550, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34551, - 34551, - null - ], - [ - "ident-token", - "ease-in-out", - 34552, - 34562, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 34563, - 34563, - null - ], - [ - "ident-token", - "border-color", - 34564, - 34575, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 34576, - 34576, - null - ], - [ - "dimension-token", - ".15s", - 34577, - 34580, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34581, - 34581, - null - ], - [ - "ident-token", - "ease-in-out", - 34582, - 34592, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 34593, - 34593, - null - ], - [ - "ident-token", - "box-shadow", - 34594, - 34603, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 34604, - 34604, - null - ], - [ - "dimension-token", - ".15s", - 34605, - 34608, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 34609, - 34609, - null - ], - [ - "ident-token", - "ease-in-out", - 34610, - 34620, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 34621, - 34621, - null - ], - [ - "ident-token", - "-moz-appearance", - 34622, - 34636, - { - "value": "-moz-appearance" - } - ], - [ - "colon-token", - ":", - 34637, - 34637, - null - ], - [ - "ident-token", - "none", - 34638, - 34641, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 34642, - 34642, - null - ], - [ - "ident-token", - "appearance", - 34643, - 34652, - { - "value": "appearance" - } - ], - [ - "colon-token", - ":", - 34653, - 34653, - null - ], - [ - "ident-token", - "none", - 34654, - 34657, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 34658, - 34658, - null - ], - [ - "at-keyword-token", - "@media", - 34659, - 34664, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 34665, - 34665, - null - ], - [ - "(-token", - "(", - 34666, - 34666, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 34667, - 34688, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 34689, - 34689, - null - ], - [ - "ident-token", - "reduce", - 34690, - 34695, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 34696, - 34696, - null - ], - [ - "{-token", - "{", - 34697, - 34697, - null - ], - [ - "delim-token", - ".", - 34698, - 34698, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34699, - 34708, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34709, - 34709, - null - ], - [ - "colon-token", - ":", - 34710, - 34710, - null - ], - [ - "ident-token", - "-moz-range-thumb", - 34711, - 34726, - { - "value": "-moz-range-thumb" - } - ], - [ - "{-token", - "{", - 34727, - 34727, - null - ], - [ - "ident-token", - "-moz-transition", - 34728, - 34742, - { - "value": "-moz-transition" - } - ], - [ - "colon-token", - ":", - 34743, - 34743, - null - ], - [ - "ident-token", - "none", - 34744, - 34747, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 34748, - 34748, - null - ], - [ - "ident-token", - "transition", - 34749, - 34758, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 34759, - 34759, - null - ], - [ - "ident-token", - "none", - 34760, - 34763, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 34764, - 34764, - null - ], - [ - "}-token", - "}", - 34765, - 34765, - null - ], - [ - "delim-token", - ".", - 34766, - 34766, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34767, - 34776, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34777, - 34777, - null - ], - [ - "colon-token", - ":", - 34778, - 34778, - null - ], - [ - "ident-token", - "-moz-range-thumb", - 34779, - 34794, - { - "value": "-moz-range-thumb" - } - ], - [ - "colon-token", - ":", - 34795, - 34795, - null - ], - [ - "ident-token", - "active", - 34796, - 34801, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 34802, - 34802, - null - ], - [ - "ident-token", - "background-color", - 34803, - 34818, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 34819, - 34819, - null - ], - [ - "hash-token", - "#b6d4fe", - 34820, - 34826, - { - "value": "b6d4fe", - "type": "id" - } - ], - [ - "}-token", - "}", - 34827, - 34827, - null - ], - [ - "delim-token", - ".", - 34828, - 34828, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34829, - 34838, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34839, - 34839, - null - ], - [ - "colon-token", - ":", - 34840, - 34840, - null - ], - [ - "ident-token", - "-moz-range-track", - 34841, - 34856, - { - "value": "-moz-range-track" - } - ], - [ - "{-token", - "{", - 34857, - 34857, - null - ], - [ - "ident-token", - "width", - 34858, - 34862, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 34863, - 34863, - null - ], - [ - "percentage-token", - "100%", - 34864, - 34867, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 34868, - 34868, - null - ], - [ - "ident-token", - "height", - 34869, - 34874, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 34875, - 34875, - null - ], - [ - "dimension-token", - ".5rem", - 34876, - 34880, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 34881, - 34881, - null - ], - [ - "ident-token", - "color", - 34882, - 34886, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 34887, - 34887, - null - ], - [ - "ident-token", - "transparent", - 34888, - 34898, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 34899, - 34899, - null - ], - [ - "ident-token", - "cursor", - 34900, - 34905, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 34906, - 34906, - null - ], - [ - "ident-token", - "pointer", - 34907, - 34913, - { - "value": "pointer" - } - ], - [ - "semicolon-token", - ";", - 34914, - 34914, - null - ], - [ - "ident-token", - "background-color", - 34915, - 34930, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 34931, - 34931, - null - ], - [ - "hash-token", - "#dee2e6", - 34932, - 34938, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 34939, - 34939, - null - ], - [ - "ident-token", - "border-color", - 34940, - 34951, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 34952, - 34952, - null - ], - [ - "ident-token", - "transparent", - 34953, - 34963, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 34964, - 34964, - null - ], - [ - "ident-token", - "border-radius", - 34965, - 34977, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 34978, - 34978, - null - ], - [ - "dimension-token", - "1rem", - 34979, - 34982, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 34983, - 34983, - null - ], - [ - "delim-token", - ".", - 34984, - 34984, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 34985, - 34994, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 34995, - 34995, - null - ], - [ - "ident-token", - "disabled", - 34996, - 35003, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 35004, - 35004, - null - ], - [ - "ident-token", - "pointer-events", - 35005, - 35018, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 35019, - 35019, - null - ], - [ - "ident-token", - "none", - 35020, - 35023, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 35024, - 35024, - null - ], - [ - "delim-token", - ".", - 35025, - 35025, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 35026, - 35035, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 35036, - 35036, - null - ], - [ - "ident-token", - "disabled", - 35037, - 35044, - { - "value": "disabled" - } - ], - [ - "colon-token", - ":", - 35045, - 35045, - null - ], - [ - "colon-token", - ":", - 35046, - 35046, - null - ], - [ - "ident-token", - "-webkit-slider-thumb", - 35047, - 35066, - { - "value": "-webkit-slider-thumb" - } - ], - [ - "{-token", - "{", - 35067, - 35067, - null - ], - [ - "ident-token", - "background-color", - 35068, - 35083, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 35084, - 35084, - null - ], - [ - "hash-token", - "#adb5bd", - 35085, - 35091, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "}-token", - "}", - 35092, - 35092, - null - ], - [ - "delim-token", - ".", - 35093, - 35093, - { - "value": "." - } - ], - [ - "ident-token", - "form-range", - 35094, - 35103, - { - "value": "form-range" - } - ], - [ - "colon-token", - ":", - 35104, - 35104, - null - ], - [ - "ident-token", - "disabled", - 35105, - 35112, - { - "value": "disabled" - } - ], - [ - "colon-token", - ":", - 35113, - 35113, - null - ], - [ - "colon-token", - ":", - 35114, - 35114, - null - ], - [ - "ident-token", - "-moz-range-thumb", - 35115, - 35130, - { - "value": "-moz-range-thumb" - } - ], - [ - "{-token", - "{", - 35131, - 35131, - null - ], - [ - "ident-token", - "background-color", - 35132, - 35147, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 35148, - 35148, - null - ], - [ - "hash-token", - "#adb5bd", - 35149, - 35155, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "}-token", - "}", - 35156, - 35156, - null - ], - [ - "delim-token", - ".", - 35157, - 35157, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35158, - 35170, - { - "value": "form-floating" - } - ], - [ - "{-token", - "{", - 35171, - 35171, - null - ], - [ - "ident-token", - "position", - 35172, - 35179, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 35180, - 35180, - null - ], - [ - "ident-token", - "relative", - 35181, - 35188, - { - "value": "relative" - } - ], - [ - "}-token", - "}", - 35189, - 35189, - null - ], - [ - "delim-token", - ".", - 35190, - 35190, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35191, - 35203, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35204, - 35204, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35205, - 35205, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 35206, - 35217, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 35218, - 35218, - null - ], - [ - "delim-token", - ".", - 35219, - 35219, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35220, - 35232, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35233, - 35233, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35234, - 35234, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 35235, - 35256, - { - "value": "form-control-plaintext" - } - ], - [ - "comma-token", - ",", - 35257, - 35257, - null - ], - [ - "delim-token", - ".", - 35258, - 35258, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35259, - 35271, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35272, - 35272, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35273, - 35273, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 35274, - 35284, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 35285, - 35285, - null - ], - [ - "ident-token", - "height", - 35286, - 35291, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 35292, - 35292, - null - ], - [ - "function-token", - "calc(", - 35293, - 35297, - { - "value": "calc" - } - ], - [ - "dimension-token", - "3.5rem", - 35298, - 35303, - { - "value": 3.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 35304, - 35304, - null - ], - [ - "delim-token", - "+", - 35305, - 35305, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 35306, - 35306, - null - ], - [ - "dimension-token", - "2px", - 35307, - 35309, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 35310, - 35310, - null - ], - [ - "semicolon-token", - ";", - 35311, - 35311, - null - ], - [ - "ident-token", - "line-height", - 35312, - 35322, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 35323, - 35323, - null - ], - [ - "number-token", - "1.25", - 35324, - 35327, - { - "value": 1.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 35328, - 35328, - null - ], - [ - "delim-token", - ".", - 35329, - 35329, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35330, - 35342, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35343, - 35343, - { - "value": ">" - } - ], - [ - "ident-token", - "label", - 35344, - 35348, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 35349, - 35349, - null - ], - [ - "ident-token", - "position", - 35350, - 35357, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 35358, - 35358, - null - ], - [ - "ident-token", - "absolute", - 35359, - 35366, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 35367, - 35367, - null - ], - [ - "ident-token", - "top", - 35368, - 35370, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 35371, - 35371, - null - ], - [ - "number-token", - "0", - 35372, - 35372, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 35373, - 35373, - null - ], - [ - "ident-token", - "left", - 35374, - 35377, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 35378, - 35378, - null - ], - [ - "number-token", - "0", - 35379, - 35379, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 35380, - 35380, - null - ], - [ - "ident-token", - "width", - 35381, - 35385, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 35386, - 35386, - null - ], - [ - "percentage-token", - "100%", - 35387, - 35390, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 35391, - 35391, - null - ], - [ - "ident-token", - "height", - 35392, - 35397, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 35398, - 35398, - null - ], - [ - "percentage-token", - "100%", - 35399, - 35402, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 35403, - 35403, - null - ], - [ - "ident-token", - "padding", - 35404, - 35410, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 35411, - 35411, - null - ], - [ - "dimension-token", - "1rem", - 35412, - 35415, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 35416, - 35416, - null - ], - [ - "dimension-token", - ".75rem", - 35417, - 35422, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 35423, - 35423, - null - ], - [ - "ident-token", - "overflow", - 35424, - 35431, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 35432, - 35432, - null - ], - [ - "ident-token", - "hidden", - 35433, - 35438, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 35439, - 35439, - null - ], - [ - "ident-token", - "text-align", - 35440, - 35449, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 35450, - 35450, - null - ], - [ - "ident-token", - "start", - 35451, - 35455, - { - "value": "start" - } - ], - [ - "semicolon-token", - ";", - 35456, - 35456, - null - ], - [ - "ident-token", - "text-overflow", - 35457, - 35469, - { - "value": "text-overflow" - } - ], - [ - "colon-token", - ":", - 35470, - 35470, - null - ], - [ - "ident-token", - "ellipsis", - 35471, - 35478, - { - "value": "ellipsis" - } - ], - [ - "semicolon-token", - ";", - 35479, - 35479, - null - ], - [ - "ident-token", - "white-space", - 35480, - 35490, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 35491, - 35491, - null - ], - [ - "ident-token", - "nowrap", - 35492, - 35497, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 35498, - 35498, - null - ], - [ - "ident-token", - "pointer-events", - 35499, - 35512, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 35513, - 35513, - null - ], - [ - "ident-token", - "none", - 35514, - 35517, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 35518, - 35518, - null - ], - [ - "ident-token", - "border", - 35519, - 35524, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 35525, - 35525, - null - ], - [ - "dimension-token", - "1px", - 35526, - 35528, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 35529, - 35529, - null - ], - [ - "ident-token", - "solid", - 35530, - 35534, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 35535, - 35535, - null - ], - [ - "ident-token", - "transparent", - 35536, - 35546, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 35547, - 35547, - null - ], - [ - "ident-token", - "transform-origin", - 35548, - 35563, - { - "value": "transform-origin" - } - ], - [ - "colon-token", - ":", - 35564, - 35564, - null - ], - [ - "number-token", - "0", - 35565, - 35565, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 35566, - 35566, - null - ], - [ - "number-token", - "0", - 35567, - 35567, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 35568, - 35568, - null - ], - [ - "ident-token", - "transition", - 35569, - 35578, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 35579, - 35579, - null - ], - [ - "ident-token", - "opacity", - 35580, - 35586, - { - "value": "opacity" - } - ], - [ - "whitespace-token", - " ", - 35587, - 35587, - null - ], - [ - "dimension-token", - ".1s", - 35588, - 35590, - { - "value": 0.1, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 35591, - 35591, - null - ], - [ - "ident-token", - "ease-in-out", - 35592, - 35602, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 35603, - 35603, - null - ], - [ - "ident-token", - "transform", - 35604, - 35612, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 35613, - 35613, - null - ], - [ - "dimension-token", - ".1s", - 35614, - 35616, - { - "value": 0.1, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 35617, - 35617, - null - ], - [ - "ident-token", - "ease-in-out", - 35618, - 35628, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 35629, - 35629, - null - ], - [ - "at-keyword-token", - "@media", - 35630, - 35635, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 35636, - 35636, - null - ], - [ - "(-token", - "(", - 35637, - 35637, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 35638, - 35659, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 35660, - 35660, - null - ], - [ - "ident-token", - "reduce", - 35661, - 35666, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 35667, - 35667, - null - ], - [ - "{-token", - "{", - 35668, - 35668, - null - ], - [ - "delim-token", - ".", - 35669, - 35669, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35670, - 35682, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35683, - 35683, - { - "value": ">" - } - ], - [ - "ident-token", - "label", - 35684, - 35688, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 35689, - 35689, - null - ], - [ - "ident-token", - "transition", - 35690, - 35699, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 35700, - 35700, - null - ], - [ - "ident-token", - "none", - 35701, - 35704, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 35705, - 35705, - null - ], - [ - "}-token", - "}", - 35706, - 35706, - null - ], - [ - "delim-token", - ".", - 35707, - 35707, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35708, - 35720, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35721, - 35721, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35722, - 35722, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 35723, - 35734, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 35735, - 35735, - null - ], - [ - "delim-token", - ".", - 35736, - 35736, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35737, - 35749, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35750, - 35750, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35751, - 35751, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 35752, - 35773, - { - "value": "form-control-plaintext" - } - ], - [ - "{-token", - "{", - 35774, - 35774, - null - ], - [ - "ident-token", - "padding", - 35775, - 35781, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 35782, - 35782, - null - ], - [ - "dimension-token", - "1rem", - 35783, - 35786, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 35787, - 35787, - null - ], - [ - "dimension-token", - ".75rem", - 35788, - 35793, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 35794, - 35794, - null - ], - [ - "delim-token", - ".", - 35795, - 35795, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35796, - 35808, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35809, - 35809, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35810, - 35810, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 35811, - 35832, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 35833, - 35833, - null - ], - [ - "colon-token", - ":", - 35834, - 35834, - null - ], - [ - "ident-token", - "-moz-placeholder", - 35835, - 35850, - { - "value": "-moz-placeholder" - } - ], - [ - "comma-token", - ",", - 35851, - 35851, - null - ], - [ - "delim-token", - ".", - 35852, - 35852, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35853, - 35865, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35866, - 35866, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35867, - 35867, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 35868, - 35879, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 35880, - 35880, - null - ], - [ - "colon-token", - ":", - 35881, - 35881, - null - ], - [ - "ident-token", - "-moz-placeholder", - 35882, - 35897, - { - "value": "-moz-placeholder" - } - ], - [ - "{-token", - "{", - 35898, - 35898, - null - ], - [ - "ident-token", - "color", - 35899, - 35903, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 35904, - 35904, - null - ], - [ - "ident-token", - "transparent", - 35905, - 35915, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 35916, - 35916, - null - ], - [ - "delim-token", - ".", - 35917, - 35917, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35918, - 35930, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35931, - 35931, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35932, - 35932, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 35933, - 35954, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 35955, - 35955, - null - ], - [ - "colon-token", - ":", - 35956, - 35956, - null - ], - [ - "ident-token", - "placeholder", - 35957, - 35967, - { - "value": "placeholder" - } - ], - [ - "comma-token", - ",", - 35968, - 35968, - null - ], - [ - "delim-token", - ".", - 35969, - 35969, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 35970, - 35982, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 35983, - 35983, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 35984, - 35984, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 35985, - 35996, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 35997, - 35997, - null - ], - [ - "colon-token", - ":", - 35998, - 35998, - null - ], - [ - "ident-token", - "placeholder", - 35999, - 36009, - { - "value": "placeholder" - } - ], - [ - "{-token", - "{", - 36010, - 36010, - null - ], - [ - "ident-token", - "color", - 36011, - 36015, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 36016, - 36016, - null - ], - [ - "ident-token", - "transparent", - 36017, - 36027, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 36028, - 36028, - null - ], - [ - "delim-token", - ".", - 36029, - 36029, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36030, - 36042, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36043, - 36043, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36044, - 36044, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 36045, - 36066, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 36067, - 36067, - null - ], - [ - "function-token", - "not(", - 36068, - 36071, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36072, - 36072, - null - ], - [ - "ident-token", - "-moz-placeholder-shown", - 36073, - 36094, - { - "value": "-moz-placeholder-shown" - } - ], - [ - ")-token", - ")", - 36095, - 36095, - null - ], - [ - "comma-token", - ",", - 36096, - 36096, - null - ], - [ - "delim-token", - ".", - 36097, - 36097, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36098, - 36110, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36111, - 36111, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36112, - 36112, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36113, - 36124, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36125, - 36125, - null - ], - [ - "function-token", - "not(", - 36126, - 36129, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36130, - 36130, - null - ], - [ - "ident-token", - "-moz-placeholder-shown", - 36131, - 36152, - { - "value": "-moz-placeholder-shown" - } - ], - [ - ")-token", - ")", - 36153, - 36153, - null - ], - [ - "{-token", - "{", - 36154, - 36154, - null - ], - [ - "ident-token", - "padding-top", - 36155, - 36165, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 36166, - 36166, - null - ], - [ - "dimension-token", - "1.625rem", - 36167, - 36174, - { - "value": 1.625, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 36175, - 36175, - null - ], - [ - "ident-token", - "padding-bottom", - 36176, - 36189, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 36190, - 36190, - null - ], - [ - "dimension-token", - ".625rem", - 36191, - 36197, - { - "value": 0.625, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 36198, - 36198, - null - ], - [ - "delim-token", - ".", - 36199, - 36199, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36200, - 36212, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36213, - 36213, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36214, - 36214, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 36215, - 36236, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 36237, - 36237, - null - ], - [ - "ident-token", - "focus", - 36238, - 36242, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 36243, - 36243, - null - ], - [ - "delim-token", - ".", - 36244, - 36244, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36245, - 36257, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36258, - 36258, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36259, - 36259, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 36260, - 36281, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 36282, - 36282, - null - ], - [ - "function-token", - "not(", - 36283, - 36286, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36287, - 36287, - null - ], - [ - "ident-token", - "placeholder-shown", - 36288, - 36304, - { - "value": "placeholder-shown" - } - ], - [ - ")-token", - ")", - 36305, - 36305, - null - ], - [ - "comma-token", - ",", - 36306, - 36306, - null - ], - [ - "delim-token", - ".", - 36307, - 36307, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36308, - 36320, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36321, - 36321, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36322, - 36322, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36323, - 36334, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36335, - 36335, - null - ], - [ - "ident-token", - "focus", - 36336, - 36340, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 36341, - 36341, - null - ], - [ - "delim-token", - ".", - 36342, - 36342, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36343, - 36355, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36356, - 36356, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36357, - 36357, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36358, - 36369, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36370, - 36370, - null - ], - [ - "function-token", - "not(", - 36371, - 36374, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36375, - 36375, - null - ], - [ - "ident-token", - "placeholder-shown", - 36376, - 36392, - { - "value": "placeholder-shown" - } - ], - [ - ")-token", - ")", - 36393, - 36393, - null - ], - [ - "{-token", - "{", - 36394, - 36394, - null - ], - [ - "ident-token", - "padding-top", - 36395, - 36405, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 36406, - 36406, - null - ], - [ - "dimension-token", - "1.625rem", - 36407, - 36414, - { - "value": 1.625, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 36415, - 36415, - null - ], - [ - "ident-token", - "padding-bottom", - 36416, - 36429, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 36430, - 36430, - null - ], - [ - "dimension-token", - ".625rem", - 36431, - 36437, - { - "value": 0.625, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 36438, - 36438, - null - ], - [ - "delim-token", - ".", - 36439, - 36439, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36440, - 36452, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36453, - 36453, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36454, - 36454, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 36455, - 36476, - { - "value": "form-control-plaintext" - } - ], - [ - "colon-token", - ":", - 36477, - 36477, - null - ], - [ - "ident-token", - "-webkit-autofill", - 36478, - 36493, - { - "value": "-webkit-autofill" - } - ], - [ - "comma-token", - ",", - 36494, - 36494, - null - ], - [ - "delim-token", - ".", - 36495, - 36495, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36496, - 36508, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36509, - 36509, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36510, - 36510, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36511, - 36522, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36523, - 36523, - null - ], - [ - "ident-token", - "-webkit-autofill", - 36524, - 36539, - { - "value": "-webkit-autofill" - } - ], - [ - "{-token", - "{", - 36540, - 36540, - null - ], - [ - "ident-token", - "padding-top", - 36541, - 36551, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 36552, - 36552, - null - ], - [ - "dimension-token", - "1.625rem", - 36553, - 36560, - { - "value": 1.625, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 36561, - 36561, - null - ], - [ - "ident-token", - "padding-bottom", - 36562, - 36575, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 36576, - 36576, - null - ], - [ - "dimension-token", - ".625rem", - 36577, - 36583, - { - "value": 0.625, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 36584, - 36584, - null - ], - [ - "delim-token", - ".", - 36585, - 36585, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36586, - 36598, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36599, - 36599, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36600, - 36600, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 36601, - 36611, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 36612, - 36612, - null - ], - [ - "ident-token", - "padding-top", - 36613, - 36623, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 36624, - 36624, - null - ], - [ - "dimension-token", - "1.625rem", - 36625, - 36632, - { - "value": 1.625, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 36633, - 36633, - null - ], - [ - "ident-token", - "padding-bottom", - 36634, - 36647, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 36648, - 36648, - null - ], - [ - "dimension-token", - ".625rem", - 36649, - 36655, - { - "value": 0.625, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 36656, - 36656, - null - ], - [ - "delim-token", - ".", - 36657, - 36657, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36658, - 36670, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36671, - 36671, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36672, - 36672, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36673, - 36684, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36685, - 36685, - null - ], - [ - "function-token", - "not(", - 36686, - 36689, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36690, - 36690, - null - ], - [ - "ident-token", - "-moz-placeholder-shown", - 36691, - 36712, - { - "value": "-moz-placeholder-shown" - } - ], - [ - ")-token", - ")", - 36713, - 36713, - null - ], - [ - "delim-token", - "~", - 36714, - 36714, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 36715, - 36719, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 36720, - 36720, - null - ], - [ - "ident-token", - "opacity", - 36721, - 36727, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 36728, - 36728, - null - ], - [ - "number-token", - ".65", - 36729, - 36731, - { - "value": 0.65, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 36732, - 36732, - null - ], - [ - "ident-token", - "transform", - 36733, - 36741, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 36742, - 36742, - null - ], - [ - "function-token", - "scale(", - 36743, - 36748, - { - "value": "scale" - } - ], - [ - "number-token", - ".85", - 36749, - 36751, - { - "value": 0.85, - "type": "number" - } - ], - [ - ")-token", - ")", - 36752, - 36752, - null - ], - [ - "whitespace-token", - " ", - 36753, - 36753, - null - ], - [ - "function-token", - "translateY(", - 36754, - 36764, - { - "value": "translateY" - } - ], - [ - "dimension-token", - "-.5rem", - 36765, - 36770, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 36771, - 36771, - null - ], - [ - "whitespace-token", - " ", - 36772, - 36772, - null - ], - [ - "function-token", - "translateX(", - 36773, - 36783, - { - "value": "translateX" - } - ], - [ - "dimension-token", - ".15rem", - 36784, - 36789, - { - "value": 0.15, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 36790, - 36790, - null - ], - [ - "}-token", - "}", - 36791, - 36791, - null - ], - [ - "delim-token", - ".", - 36792, - 36792, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36793, - 36805, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36806, - 36806, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36807, - 36807, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 36808, - 36829, - { - "value": "form-control-plaintext" - } - ], - [ - "delim-token", - "~", - 36830, - 36830, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 36831, - 36835, - { - "value": "label" - } - ], - [ - "comma-token", - ",", - 36836, - 36836, - null - ], - [ - "delim-token", - ".", - 36837, - 36837, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36838, - 36850, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36851, - 36851, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36852, - 36852, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36853, - 36864, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36865, - 36865, - null - ], - [ - "ident-token", - "focus", - 36866, - 36870, - { - "value": "focus" - } - ], - [ - "delim-token", - "~", - 36871, - 36871, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 36872, - 36876, - { - "value": "label" - } - ], - [ - "comma-token", - ",", - 36877, - 36877, - null - ], - [ - "delim-token", - ".", - 36878, - 36878, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36879, - 36891, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36892, - 36892, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36893, - 36893, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 36894, - 36905, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 36906, - 36906, - null - ], - [ - "function-token", - "not(", - 36907, - 36910, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 36911, - 36911, - null - ], - [ - "ident-token", - "placeholder-shown", - 36912, - 36928, - { - "value": "placeholder-shown" - } - ], - [ - ")-token", - ")", - 36929, - 36929, - null - ], - [ - "delim-token", - "~", - 36930, - 36930, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 36931, - 36935, - { - "value": "label" - } - ], - [ - "comma-token", - ",", - 36936, - 36936, - null - ], - [ - "delim-token", - ".", - 36937, - 36937, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 36938, - 36950, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 36951, - 36951, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 36952, - 36952, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 36953, - 36963, - { - "value": "form-select" - } - ], - [ - "delim-token", - "~", - 36964, - 36964, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 36965, - 36969, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 36970, - 36970, - null - ], - [ - "ident-token", - "opacity", - 36971, - 36977, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 36978, - 36978, - null - ], - [ - "number-token", - ".65", - 36979, - 36981, - { - "value": 0.65, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 36982, - 36982, - null - ], - [ - "ident-token", - "transform", - 36983, - 36991, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 36992, - 36992, - null - ], - [ - "function-token", - "scale(", - 36993, - 36998, - { - "value": "scale" - } - ], - [ - "number-token", - ".85", - 36999, - 37001, - { - "value": 0.85, - "type": "number" - } - ], - [ - ")-token", - ")", - 37002, - 37002, - null - ], - [ - "whitespace-token", - " ", - 37003, - 37003, - null - ], - [ - "function-token", - "translateY(", - 37004, - 37014, - { - "value": "translateY" - } - ], - [ - "dimension-token", - "-.5rem", - 37015, - 37020, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 37021, - 37021, - null - ], - [ - "whitespace-token", - " ", - 37022, - 37022, - null - ], - [ - "function-token", - "translateX(", - 37023, - 37033, - { - "value": "translateX" - } - ], - [ - "dimension-token", - ".15rem", - 37034, - 37039, - { - "value": 0.15, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 37040, - 37040, - null - ], - [ - "}-token", - "}", - 37041, - 37041, - null - ], - [ - "delim-token", - ".", - 37042, - 37042, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 37043, - 37055, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 37056, - 37056, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37057, - 37057, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 37058, - 37069, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 37070, - 37070, - null - ], - [ - "ident-token", - "-webkit-autofill", - 37071, - 37086, - { - "value": "-webkit-autofill" - } - ], - [ - "delim-token", - "~", - 37087, - 37087, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 37088, - 37092, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 37093, - 37093, - null - ], - [ - "ident-token", - "opacity", - 37094, - 37100, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 37101, - 37101, - null - ], - [ - "number-token", - ".65", - 37102, - 37104, - { - "value": 0.65, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 37105, - 37105, - null - ], - [ - "ident-token", - "transform", - 37106, - 37114, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 37115, - 37115, - null - ], - [ - "function-token", - "scale(", - 37116, - 37121, - { - "value": "scale" - } - ], - [ - "number-token", - ".85", - 37122, - 37124, - { - "value": 0.85, - "type": "number" - } - ], - [ - ")-token", - ")", - 37125, - 37125, - null - ], - [ - "whitespace-token", - " ", - 37126, - 37126, - null - ], - [ - "function-token", - "translateY(", - 37127, - 37137, - { - "value": "translateY" - } - ], - [ - "dimension-token", - "-.5rem", - 37138, - 37143, - { - "value": -0.5, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 37144, - 37144, - null - ], - [ - "whitespace-token", - " ", - 37145, - 37145, - null - ], - [ - "function-token", - "translateX(", - 37146, - 37156, - { - "value": "translateX" - } - ], - [ - "dimension-token", - ".15rem", - 37157, - 37162, - { - "value": 0.15, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 37163, - 37163, - null - ], - [ - "}-token", - "}", - 37164, - 37164, - null - ], - [ - "delim-token", - ".", - 37165, - 37165, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 37166, - 37178, - { - "value": "form-floating" - } - ], - [ - "delim-token", - ">", - 37179, - 37179, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37180, - 37180, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-plaintext", - 37181, - 37202, - { - "value": "form-control-plaintext" - } - ], - [ - "delim-token", - "~", - 37203, - 37203, - { - "value": "~" - } - ], - [ - "ident-token", - "label", - 37204, - 37208, - { - "value": "label" - } - ], - [ - "{-token", - "{", - 37209, - 37209, - null - ], - [ - "ident-token", - "border-width", - 37210, - 37221, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 37222, - 37222, - null - ], - [ - "dimension-token", - "1px", - 37223, - 37225, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 37226, - 37226, - null - ], - [ - "number-token", - "0", - 37227, - 37227, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 37228, - 37228, - null - ], - [ - "delim-token", - ".", - 37229, - 37229, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37230, - 37240, - { - "value": "input-group" - } - ], - [ - "{-token", - "{", - 37241, - 37241, - null - ], - [ - "ident-token", - "position", - 37242, - 37249, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 37250, - 37250, - null - ], - [ - "ident-token", - "relative", - 37251, - 37258, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 37259, - 37259, - null - ], - [ - "ident-token", - "display", - 37260, - 37266, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 37267, - 37267, - null - ], - [ - "ident-token", - "flex", - 37268, - 37271, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 37272, - 37272, - null - ], - [ - "ident-token", - "flex-wrap", - 37273, - 37281, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 37282, - 37282, - null - ], - [ - "ident-token", - "wrap", - 37283, - 37286, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 37287, - 37287, - null - ], - [ - "ident-token", - "align-items", - 37288, - 37298, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 37299, - 37299, - null - ], - [ - "ident-token", - "stretch", - 37300, - 37306, - { - "value": "stretch" - } - ], - [ - "semicolon-token", - ";", - 37307, - 37307, - null - ], - [ - "ident-token", - "width", - 37308, - 37312, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 37313, - 37313, - null - ], - [ - "percentage-token", - "100%", - 37314, - 37317, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 37318, - 37318, - null - ], - [ - "delim-token", - ".", - 37319, - 37319, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37320, - 37330, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37331, - 37331, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37332, - 37332, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 37333, - 37344, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 37345, - 37345, - null - ], - [ - "delim-token", - ".", - 37346, - 37346, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37347, - 37357, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37358, - 37358, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37359, - 37359, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 37360, - 37372, - { - "value": "form-floating" - } - ], - [ - "comma-token", - ",", - 37373, - 37373, - null - ], - [ - "delim-token", - ".", - 37374, - 37374, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37375, - 37385, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37386, - 37386, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37387, - 37387, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 37388, - 37398, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 37399, - 37399, - null - ], - [ - "ident-token", - "position", - 37400, - 37407, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 37408, - 37408, - null - ], - [ - "ident-token", - "relative", - 37409, - 37416, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 37417, - 37417, - null - ], - [ - "ident-token", - "flex", - 37418, - 37421, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 37422, - 37422, - null - ], - [ - "number-token", - "1", - 37423, - 37423, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 37424, - 37424, - null - ], - [ - "number-token", - "1", - 37425, - 37425, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 37426, - 37426, - null - ], - [ - "ident-token", - "auto", - 37427, - 37430, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 37431, - 37431, - null - ], - [ - "ident-token", - "width", - 37432, - 37436, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 37437, - 37437, - null - ], - [ - "percentage-token", - "1%", - 37438, - 37439, - { - "value": 1 - } - ], - [ - "semicolon-token", - ";", - 37440, - 37440, - null - ], - [ - "ident-token", - "min-width", - 37441, - 37449, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 37450, - 37450, - null - ], - [ - "number-token", - "0", - 37451, - 37451, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 37452, - 37452, - null - ], - [ - "delim-token", - ".", - 37453, - 37453, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37454, - 37464, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37465, - 37465, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37466, - 37466, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 37467, - 37478, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 37479, - 37479, - null - ], - [ - "ident-token", - "focus", - 37480, - 37484, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 37485, - 37485, - null - ], - [ - "delim-token", - ".", - 37486, - 37486, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37487, - 37497, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37498, - 37498, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37499, - 37499, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 37500, - 37512, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 37513, - 37513, - null - ], - [ - "ident-token", - "focus-within", - 37514, - 37525, - { - "value": "focus-within" - } - ], - [ - "comma-token", - ",", - 37526, - 37526, - null - ], - [ - "delim-token", - ".", - 37527, - 37527, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37528, - 37538, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 37539, - 37539, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37540, - 37540, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 37541, - 37551, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 37552, - 37552, - null - ], - [ - "ident-token", - "focus", - 37553, - 37557, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 37558, - 37558, - null - ], - [ - "ident-token", - "z-index", - 37559, - 37565, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 37566, - 37566, - null - ], - [ - "number-token", - "5", - 37567, - 37567, - { - "value": 5, - "type": "integer" - } - ], - [ - "}-token", - "}", - 37568, - 37568, - null - ], - [ - "delim-token", - ".", - 37569, - 37569, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37570, - 37580, - { - "value": "input-group" - } - ], - [ - "whitespace-token", - " ", - 37581, - 37581, - null - ], - [ - "delim-token", - ".", - 37582, - 37582, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 37583, - 37585, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 37586, - 37586, - null - ], - [ - "ident-token", - "position", - 37587, - 37594, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 37595, - 37595, - null - ], - [ - "ident-token", - "relative", - 37596, - 37603, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 37604, - 37604, - null - ], - [ - "ident-token", - "z-index", - 37605, - 37611, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 37612, - 37612, - null - ], - [ - "number-token", - "2", - 37613, - 37613, - { - "value": 2, - "type": "integer" - } - ], - [ - "}-token", - "}", - 37614, - 37614, - null - ], - [ - "delim-token", - ".", - 37615, - 37615, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 37616, - 37626, - { - "value": "input-group" - } - ], - [ - "whitespace-token", - " ", - 37627, - 37627, - null - ], - [ - "delim-token", - ".", - 37628, - 37628, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 37629, - 37631, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 37632, - 37632, - null - ], - [ - "ident-token", - "focus", - 37633, - 37637, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 37638, - 37638, - null - ], - [ - "ident-token", - "z-index", - 37639, - 37645, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 37646, - 37646, - null - ], - [ - "number-token", - "5", - 37647, - 37647, - { - "value": 5, - "type": "integer" - } - ], - [ - "}-token", - "}", - 37648, - 37648, - null - ], - [ - "delim-token", - ".", - 37649, - 37649, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-text", - 37650, - 37665, - { - "value": "input-group-text" - } - ], - [ - "{-token", - "{", - 37666, - 37666, - null - ], - [ - "ident-token", - "display", - 37667, - 37673, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 37674, - 37674, - null - ], - [ - "ident-token", - "flex", - 37675, - 37678, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 37679, - 37679, - null - ], - [ - "ident-token", - "align-items", - 37680, - 37690, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 37691, - 37691, - null - ], - [ - "ident-token", - "center", - 37692, - 37697, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 37698, - 37698, - null - ], - [ - "ident-token", - "padding", - 37699, - 37705, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 37706, - 37706, - null - ], - [ - "dimension-token", - ".375rem", - 37707, - 37713, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 37714, - 37714, - null - ], - [ - "dimension-token", - ".75rem", - 37715, - 37720, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 37721, - 37721, - null - ], - [ - "ident-token", - "font-size", - 37722, - 37730, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 37731, - 37731, - null - ], - [ - "dimension-token", - "1rem", - 37732, - 37735, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 37736, - 37736, - null - ], - [ - "ident-token", - "font-weight", - 37737, - 37747, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 37748, - 37748, - null - ], - [ - "number-token", - "400", - 37749, - 37751, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 37752, - 37752, - null - ], - [ - "ident-token", - "line-height", - 37753, - 37763, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 37764, - 37764, - null - ], - [ - "number-token", - "1.5", - 37765, - 37767, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 37768, - 37768, - null - ], - [ - "ident-token", - "color", - 37769, - 37773, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 37774, - 37774, - null - ], - [ - "hash-token", - "#212529", - 37775, - 37781, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 37782, - 37782, - null - ], - [ - "ident-token", - "text-align", - 37783, - 37792, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 37793, - 37793, - null - ], - [ - "ident-token", - "center", - 37794, - 37799, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 37800, - 37800, - null - ], - [ - "ident-token", - "white-space", - 37801, - 37811, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 37812, - 37812, - null - ], - [ - "ident-token", - "nowrap", - 37813, - 37818, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 37819, - 37819, - null - ], - [ - "ident-token", - "background-color", - 37820, - 37835, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 37836, - 37836, - null - ], - [ - "hash-token", - "#e9ecef", - 37837, - 37843, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 37844, - 37844, - null - ], - [ - "ident-token", - "border", - 37845, - 37850, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 37851, - 37851, - null - ], - [ - "dimension-token", - "1px", - 37852, - 37854, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 37855, - 37855, - null - ], - [ - "ident-token", - "solid", - 37856, - 37860, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 37861, - 37861, - null - ], - [ - "hash-token", - "#ced4da", - 37862, - 37868, - { - "value": "ced4da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 37869, - 37869, - null - ], - [ - "ident-token", - "border-radius", - 37870, - 37882, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 37883, - 37883, - null - ], - [ - "dimension-token", - ".375rem", - 37884, - 37890, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 37891, - 37891, - null - ], - [ - "delim-token", - ".", - 37892, - 37892, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-lg", - 37893, - 37906, - { - "value": "input-group-lg" - } - ], - [ - "delim-token", - ">", - 37907, - 37907, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37908, - 37908, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 37909, - 37911, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 37912, - 37912, - null - ], - [ - "delim-token", - ".", - 37913, - 37913, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-lg", - 37914, - 37927, - { - "value": "input-group-lg" - } - ], - [ - "delim-token", - ">", - 37928, - 37928, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37929, - 37929, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 37930, - 37941, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 37942, - 37942, - null - ], - [ - "delim-token", - ".", - 37943, - 37943, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-lg", - 37944, - 37957, - { - "value": "input-group-lg" - } - ], - [ - "delim-token", - ">", - 37958, - 37958, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37959, - 37959, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 37960, - 37970, - { - "value": "form-select" - } - ], - [ - "comma-token", - ",", - 37971, - 37971, - null - ], - [ - "delim-token", - ".", - 37972, - 37972, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-lg", - 37973, - 37986, - { - "value": "input-group-lg" - } - ], - [ - "delim-token", - ">", - 37987, - 37987, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 37988, - 37988, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-text", - 37989, - 38004, - { - "value": "input-group-text" - } - ], - [ - "{-token", - "{", - 38005, - 38005, - null - ], - [ - "ident-token", - "padding", - 38006, - 38012, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 38013, - 38013, - null - ], - [ - "dimension-token", - ".5rem", - 38014, - 38018, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 38019, - 38019, - null - ], - [ - "dimension-token", - "1rem", - 38020, - 38023, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 38024, - 38024, - null - ], - [ - "ident-token", - "font-size", - 38025, - 38033, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 38034, - 38034, - null - ], - [ - "dimension-token", - "1.25rem", - 38035, - 38041, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 38042, - 38042, - null - ], - [ - "ident-token", - "border-radius", - 38043, - 38055, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 38056, - 38056, - null - ], - [ - "dimension-token", - ".5rem", - 38057, - 38061, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 38062, - 38062, - null - ], - [ - "delim-token", - ".", - 38063, - 38063, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-sm", - 38064, - 38077, - { - "value": "input-group-sm" - } - ], - [ - "delim-token", - ">", - 38078, - 38078, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38079, - 38079, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 38080, - 38082, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 38083, - 38083, - null - ], - [ - "delim-token", - ".", - 38084, - 38084, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-sm", - 38085, - 38098, - { - "value": "input-group-sm" - } - ], - [ - "delim-token", - ">", - 38099, - 38099, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38100, - 38100, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 38101, - 38112, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 38113, - 38113, - null - ], - [ - "delim-token", - ".", - 38114, - 38114, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-sm", - 38115, - 38128, - { - "value": "input-group-sm" - } - ], - [ - "delim-token", - ">", - 38129, - 38129, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38130, - 38130, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 38131, - 38141, - { - "value": "form-select" - } - ], - [ - "comma-token", - ",", - 38142, - 38142, - null - ], - [ - "delim-token", - ".", - 38143, - 38143, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-sm", - 38144, - 38157, - { - "value": "input-group-sm" - } - ], - [ - "delim-token", - ">", - 38158, - 38158, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38159, - 38159, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-text", - 38160, - 38175, - { - "value": "input-group-text" - } - ], - [ - "{-token", - "{", - 38176, - 38176, - null - ], - [ - "ident-token", - "padding", - 38177, - 38183, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 38184, - 38184, - null - ], - [ - "dimension-token", - ".25rem", - 38185, - 38190, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 38191, - 38191, - null - ], - [ - "dimension-token", - ".5rem", - 38192, - 38196, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 38197, - 38197, - null - ], - [ - "ident-token", - "font-size", - 38198, - 38206, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 38207, - 38207, - null - ], - [ - "dimension-token", - ".875rem", - 38208, - 38214, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 38215, - 38215, - null - ], - [ - "ident-token", - "border-radius", - 38216, - 38228, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 38229, - 38229, - null - ], - [ - "dimension-token", - ".25rem", - 38230, - 38235, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 38236, - 38236, - null - ], - [ - "delim-token", - ".", - 38237, - 38237, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-lg", - 38238, - 38251, - { - "value": "input-group-lg" - } - ], - [ - "delim-token", - ">", - 38252, - 38252, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38253, - 38253, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 38254, - 38264, - { - "value": "form-select" - } - ], - [ - "comma-token", - ",", - 38265, - 38265, - null - ], - [ - "delim-token", - ".", - 38266, - 38266, - { - "value": "." - } - ], - [ - "ident-token", - "input-group-sm", - 38267, - 38280, - { - "value": "input-group-sm" - } - ], - [ - "delim-token", - ">", - 38281, - 38281, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38282, - 38282, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 38283, - 38293, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 38294, - 38294, - null - ], - [ - "ident-token", - "padding-right", - 38295, - 38307, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 38308, - 38308, - null - ], - [ - "dimension-token", - "3rem", - 38309, - 38312, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 38313, - 38313, - null - ], - [ - "delim-token", - ".", - 38314, - 38314, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38315, - 38325, - { - "value": "input-group" - } - ], - [ - "colon-token", - ":", - 38326, - 38326, - null - ], - [ - "function-token", - "not(", - 38327, - 38330, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38331, - 38331, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38332, - 38345, - { - "value": "has-validation" - } - ], - [ - ")-token", - ")", - 38346, - 38346, - null - ], - [ - "delim-token", - ">", - 38347, - 38347, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38348, - 38348, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 38349, - 38363, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 38364, - 38364, - null - ], - [ - "function-token", - "nth-last-child(", - 38365, - 38379, - { - "value": "nth-last-child" - } - ], - [ - "ident-token", - "n", - 38380, - 38380, - { - "value": "n" - } - ], - [ - "number-token", - "+3", - 38381, - 38382, - { - "value": 3, - "type": "integer" - } - ], - [ - ")-token", - ")", - 38383, - 38383, - null - ], - [ - "comma-token", - ",", - 38384, - 38384, - null - ], - [ - "delim-token", - ".", - 38385, - 38385, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38386, - 38396, - { - "value": "input-group" - } - ], - [ - "colon-token", - ":", - 38397, - 38397, - null - ], - [ - "function-token", - "not(", - 38398, - 38401, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38402, - 38402, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38403, - 38416, - { - "value": "has-validation" - } - ], - [ - ")-token", - ")", - 38417, - 38417, - null - ], - [ - "delim-token", - ">", - 38418, - 38418, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38419, - 38419, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 38420, - 38432, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 38433, - 38433, - null - ], - [ - "function-token", - "not(", - 38434, - 38437, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 38438, - 38438, - null - ], - [ - "ident-token", - "last-child", - 38439, - 38448, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 38449, - 38449, - null - ], - [ - "delim-token", - ">", - 38450, - 38450, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38451, - 38451, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 38452, - 38463, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 38464, - 38464, - null - ], - [ - "delim-token", - ".", - 38465, - 38465, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38466, - 38476, - { - "value": "input-group" - } - ], - [ - "colon-token", - ":", - 38477, - 38477, - null - ], - [ - "function-token", - "not(", - 38478, - 38481, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38482, - 38482, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38483, - 38496, - { - "value": "has-validation" - } - ], - [ - ")-token", - ")", - 38497, - 38497, - null - ], - [ - "delim-token", - ">", - 38498, - 38498, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38499, - 38499, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 38500, - 38512, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 38513, - 38513, - null - ], - [ - "function-token", - "not(", - 38514, - 38517, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 38518, - 38518, - null - ], - [ - "ident-token", - "last-child", - 38519, - 38528, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 38529, - 38529, - null - ], - [ - "delim-token", - ">", - 38530, - 38530, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38531, - 38531, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 38532, - 38542, - { - "value": "form-select" - } - ], - [ - "comma-token", - ",", - 38543, - 38543, - null - ], - [ - "delim-token", - ".", - 38544, - 38544, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38545, - 38555, - { - "value": "input-group" - } - ], - [ - "colon-token", - ":", - 38556, - 38556, - null - ], - [ - "function-token", - "not(", - 38557, - 38560, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38561, - 38561, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38562, - 38575, - { - "value": "has-validation" - } - ], - [ - ")-token", - ")", - 38576, - 38576, - null - ], - [ - "delim-token", - ">", - 38577, - 38577, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 38578, - 38578, - null - ], - [ - "function-token", - "not(", - 38579, - 38582, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 38583, - 38583, - null - ], - [ - "ident-token", - "last-child", - 38584, - 38593, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 38594, - 38594, - null - ], - [ - "colon-token", - ":", - 38595, - 38595, - null - ], - [ - "function-token", - "not(", - 38596, - 38599, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38600, - 38600, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 38601, - 38615, - { - "value": "dropdown-toggle" - } - ], - [ - ")-token", - ")", - 38616, - 38616, - null - ], - [ - "colon-token", - ":", - 38617, - 38617, - null - ], - [ - "function-token", - "not(", - 38618, - 38621, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38622, - 38622, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 38623, - 38635, - { - "value": "dropdown-menu" - } - ], - [ - ")-token", - ")", - 38636, - 38636, - null - ], - [ - "colon-token", - ":", - 38637, - 38637, - null - ], - [ - "function-token", - "not(", - 38638, - 38641, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38642, - 38642, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 38643, - 38655, - { - "value": "form-floating" - } - ], - [ - ")-token", - ")", - 38656, - 38656, - null - ], - [ - "{-token", - "{", - 38657, - 38657, - null - ], - [ - "ident-token", - "border-top-right-radius", - 38658, - 38680, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 38681, - 38681, - null - ], - [ - "number-token", - "0", - 38682, - 38682, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 38683, - 38683, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 38684, - 38709, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 38710, - 38710, - null - ], - [ - "number-token", - "0", - 38711, - 38711, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 38712, - 38712, - null - ], - [ - "delim-token", - ".", - 38713, - 38713, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38714, - 38724, - { - "value": "input-group" - } - ], - [ - "delim-token", - ".", - 38725, - 38725, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38726, - 38739, - { - "value": "has-validation" - } - ], - [ - "delim-token", - ">", - 38740, - 38740, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38741, - 38741, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 38742, - 38756, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 38757, - 38757, - null - ], - [ - "function-token", - "nth-last-child(", - 38758, - 38772, - { - "value": "nth-last-child" - } - ], - [ - "ident-token", - "n", - 38773, - 38773, - { - "value": "n" - } - ], - [ - "number-token", - "+4", - 38774, - 38775, - { - "value": 4, - "type": "integer" - } - ], - [ - ")-token", - ")", - 38776, - 38776, - null - ], - [ - "comma-token", - ",", - 38777, - 38777, - null - ], - [ - "delim-token", - ".", - 38778, - 38778, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38779, - 38789, - { - "value": "input-group" - } - ], - [ - "delim-token", - ".", - 38790, - 38790, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38791, - 38804, - { - "value": "has-validation" - } - ], - [ - "delim-token", - ">", - 38805, - 38805, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38806, - 38806, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 38807, - 38819, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 38820, - 38820, - null - ], - [ - "function-token", - "nth-last-child(", - 38821, - 38835, - { - "value": "nth-last-child" - } - ], - [ - "ident-token", - "n", - 38836, - 38836, - { - "value": "n" - } - ], - [ - "number-token", - "+3", - 38837, - 38838, - { - "value": 3, - "type": "integer" - } - ], - [ - ")-token", - ")", - 38839, - 38839, - null - ], - [ - "delim-token", - ">", - 38840, - 38840, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38841, - 38841, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 38842, - 38853, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 38854, - 38854, - null - ], - [ - "delim-token", - ".", - 38855, - 38855, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38856, - 38866, - { - "value": "input-group" - } - ], - [ - "delim-token", - ".", - 38867, - 38867, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38868, - 38881, - { - "value": "has-validation" - } - ], - [ - "delim-token", - ">", - 38882, - 38882, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38883, - 38883, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 38884, - 38896, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 38897, - 38897, - null - ], - [ - "function-token", - "nth-last-child(", - 38898, - 38912, - { - "value": "nth-last-child" - } - ], - [ - "ident-token", - "n", - 38913, - 38913, - { - "value": "n" - } - ], - [ - "number-token", - "+3", - 38914, - 38915, - { - "value": 3, - "type": "integer" - } - ], - [ - ")-token", - ")", - 38916, - 38916, - null - ], - [ - "delim-token", - ">", - 38917, - 38917, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 38918, - 38918, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 38919, - 38929, - { - "value": "form-select" - } - ], - [ - "comma-token", - ",", - 38930, - 38930, - null - ], - [ - "delim-token", - ".", - 38931, - 38931, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 38932, - 38942, - { - "value": "input-group" - } - ], - [ - "delim-token", - ".", - 38943, - 38943, - { - "value": "." - } - ], - [ - "ident-token", - "has-validation", - 38944, - 38957, - { - "value": "has-validation" - } - ], - [ - "delim-token", - ">", - 38958, - 38958, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 38959, - 38959, - null - ], - [ - "function-token", - "nth-last-child(", - 38960, - 38974, - { - "value": "nth-last-child" - } - ], - [ - "ident-token", - "n", - 38975, - 38975, - { - "value": "n" - } - ], - [ - "number-token", - "+3", - 38976, - 38977, - { - "value": 3, - "type": "integer" - } - ], - [ - ")-token", - ")", - 38978, - 38978, - null - ], - [ - "colon-token", - ":", - 38979, - 38979, - null - ], - [ - "function-token", - "not(", - 38980, - 38983, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 38984, - 38984, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 38985, - 38999, - { - "value": "dropdown-toggle" - } - ], - [ - ")-token", - ")", - 39000, - 39000, - null - ], - [ - "colon-token", - ":", - 39001, - 39001, - null - ], - [ - "function-token", - "not(", - 39002, - 39005, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39006, - 39006, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 39007, - 39019, - { - "value": "dropdown-menu" - } - ], - [ - ")-token", - ")", - 39020, - 39020, - null - ], - [ - "colon-token", - ":", - 39021, - 39021, - null - ], - [ - "function-token", - "not(", - 39022, - 39025, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39026, - 39026, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 39027, - 39039, - { - "value": "form-floating" - } - ], - [ - ")-token", - ")", - 39040, - 39040, - null - ], - [ - "{-token", - "{", - 39041, - 39041, - null - ], - [ - "ident-token", - "border-top-right-radius", - 39042, - 39064, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 39065, - 39065, - null - ], - [ - "number-token", - "0", - 39066, - 39066, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 39067, - 39067, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 39068, - 39093, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 39094, - 39094, - null - ], - [ - "number-token", - "0", - 39095, - 39095, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 39096, - 39096, - null - ], - [ - "delim-token", - ".", - 39097, - 39097, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 39098, - 39108, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 39109, - 39109, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 39110, - 39110, - null - ], - [ - "function-token", - "not(", - 39111, - 39114, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 39115, - 39115, - null - ], - [ - "ident-token", - "first-child", - 39116, - 39126, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 39127, - 39127, - null - ], - [ - "colon-token", - ":", - 39128, - 39128, - null - ], - [ - "function-token", - "not(", - 39129, - 39132, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39133, - 39133, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 39134, - 39146, - { - "value": "dropdown-menu" - } - ], - [ - ")-token", - ")", - 39147, - 39147, - null - ], - [ - "colon-token", - ":", - 39148, - 39148, - null - ], - [ - "function-token", - "not(", - 39149, - 39152, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39153, - 39153, - { - "value": "." - } - ], - [ - "ident-token", - "valid-tooltip", - 39154, - 39166, - { - "value": "valid-tooltip" - } - ], - [ - ")-token", - ")", - 39167, - 39167, - null - ], - [ - "colon-token", - ":", - 39168, - 39168, - null - ], - [ - "function-token", - "not(", - 39169, - 39172, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39173, - 39173, - { - "value": "." - } - ], - [ - "ident-token", - "valid-feedback", - 39174, - 39187, - { - "value": "valid-feedback" - } - ], - [ - ")-token", - ")", - 39188, - 39188, - null - ], - [ - "colon-token", - ":", - 39189, - 39189, - null - ], - [ - "function-token", - "not(", - 39190, - 39193, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39194, - 39194, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-tooltip", - 39195, - 39209, - { - "value": "invalid-tooltip" - } - ], - [ - ")-token", - ")", - 39210, - 39210, - null - ], - [ - "colon-token", - ":", - 39211, - 39211, - null - ], - [ - "function-token", - "not(", - 39212, - 39215, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 39216, - 39216, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-feedback", - 39217, - 39232, - { - "value": "invalid-feedback" - } - ], - [ - ")-token", - ")", - 39233, - 39233, - null - ], - [ - "{-token", - "{", - 39234, - 39234, - null - ], - [ - "ident-token", - "margin-left", - 39235, - 39245, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 39246, - 39246, - null - ], - [ - "dimension-token", - "-1px", - 39247, - 39250, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 39251, - 39251, - null - ], - [ - "ident-token", - "border-top-left-radius", - 39252, - 39273, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 39274, - 39274, - null - ], - [ - "number-token", - "0", - 39275, - 39275, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 39276, - 39276, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 39277, - 39301, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 39302, - 39302, - null - ], - [ - "number-token", - "0", - 39303, - 39303, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 39304, - 39304, - null - ], - [ - "delim-token", - ".", - 39305, - 39305, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 39306, - 39316, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 39317, - 39317, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 39318, - 39318, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 39319, - 39331, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 39332, - 39332, - null - ], - [ - "function-token", - "not(", - 39333, - 39336, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 39337, - 39337, - null - ], - [ - "ident-token", - "first-child", - 39338, - 39348, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 39349, - 39349, - null - ], - [ - "delim-token", - ">", - 39350, - 39350, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 39351, - 39351, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 39352, - 39363, - { - "value": "form-control" - } - ], - [ - "comma-token", - ",", - 39364, - 39364, - null - ], - [ - "delim-token", - ".", - 39365, - 39365, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 39366, - 39376, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 39377, - 39377, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 39378, - 39378, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 39379, - 39391, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 39392, - 39392, - null - ], - [ - "function-token", - "not(", - 39393, - 39396, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 39397, - 39397, - null - ], - [ - "ident-token", - "first-child", - 39398, - 39408, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 39409, - 39409, - null - ], - [ - "delim-token", - ">", - 39410, - 39410, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 39411, - 39411, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 39412, - 39422, - { - "value": "form-select" - } - ], - [ - "{-token", - "{", - 39423, - 39423, - null - ], - [ - "ident-token", - "border-top-left-radius", - 39424, - 39445, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 39446, - 39446, - null - ], - [ - "number-token", - "0", - 39447, - 39447, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 39448, - 39448, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 39449, - 39473, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 39474, - 39474, - null - ], - [ - "number-token", - "0", - 39475, - 39475, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 39476, - 39476, - null - ], - [ - "delim-token", - ".", - 39477, - 39477, - { - "value": "." - } - ], - [ - "ident-token", - "valid-feedback", - 39478, - 39491, - { - "value": "valid-feedback" - } - ], - [ - "{-token", - "{", - 39492, - 39492, - null - ], - [ - "ident-token", - "display", - 39493, - 39499, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 39500, - 39500, - null - ], - [ - "ident-token", - "none", - 39501, - 39504, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 39505, - 39505, - null - ], - [ - "ident-token", - "width", - 39506, - 39510, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 39511, - 39511, - null - ], - [ - "percentage-token", - "100%", - 39512, - 39515, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 39516, - 39516, - null - ], - [ - "ident-token", - "margin-top", - 39517, - 39526, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 39527, - 39527, - null - ], - [ - "dimension-token", - ".25rem", - 39528, - 39533, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 39534, - 39534, - null - ], - [ - "ident-token", - "font-size", - 39535, - 39543, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 39544, - 39544, - null - ], - [ - "dimension-token", - ".875em", - 39545, - 39550, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 39551, - 39551, - null - ], - [ - "ident-token", - "color", - 39552, - 39556, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 39557, - 39557, - null - ], - [ - "hash-token", - "#198754", - 39558, - 39564, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 39565, - 39565, - null - ], - [ - "delim-token", - ".", - 39566, - 39566, - { - "value": "." - } - ], - [ - "ident-token", - "valid-tooltip", - 39567, - 39579, - { - "value": "valid-tooltip" - } - ], - [ - "{-token", - "{", - 39580, - 39580, - null - ], - [ - "ident-token", - "position", - 39581, - 39588, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 39589, - 39589, - null - ], - [ - "ident-token", - "absolute", - 39590, - 39597, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 39598, - 39598, - null - ], - [ - "ident-token", - "top", - 39599, - 39601, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 39602, - 39602, - null - ], - [ - "percentage-token", - "100%", - 39603, - 39606, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 39607, - 39607, - null - ], - [ - "ident-token", - "z-index", - 39608, - 39614, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 39615, - 39615, - null - ], - [ - "number-token", - "5", - 39616, - 39616, - { - "value": 5, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 39617, - 39617, - null - ], - [ - "ident-token", - "display", - 39618, - 39624, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 39625, - 39625, - null - ], - [ - "ident-token", - "none", - 39626, - 39629, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 39630, - 39630, - null - ], - [ - "ident-token", - "max-width", - 39631, - 39639, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 39640, - 39640, - null - ], - [ - "percentage-token", - "100%", - 39641, - 39644, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 39645, - 39645, - null - ], - [ - "ident-token", - "padding", - 39646, - 39652, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 39653, - 39653, - null - ], - [ - "dimension-token", - ".25rem", - 39654, - 39659, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 39660, - 39660, - null - ], - [ - "dimension-token", - ".5rem", - 39661, - 39665, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 39666, - 39666, - null - ], - [ - "ident-token", - "margin-top", - 39667, - 39676, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 39677, - 39677, - null - ], - [ - "dimension-token", - ".1rem", - 39678, - 39682, - { - "value": 0.1, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 39683, - 39683, - null - ], - [ - "ident-token", - "font-size", - 39684, - 39692, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 39693, - 39693, - null - ], - [ - "dimension-token", - ".875rem", - 39694, - 39700, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 39701, - 39701, - null - ], - [ - "ident-token", - "color", - 39702, - 39706, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 39707, - 39707, - null - ], - [ - "hash-token", - "#fff", - 39708, - 39711, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 39712, - 39712, - null - ], - [ - "ident-token", - "background-color", - 39713, - 39728, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 39729, - 39729, - null - ], - [ - "function-token", - "rgba(", - 39730, - 39734, - { - "value": "rgba" - } - ], - [ - "number-token", - "25", - 39735, - 39736, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 39737, - 39737, - null - ], - [ - "number-token", - "135", - 39738, - 39740, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 39741, - 39741, - null - ], - [ - "number-token", - "84", - 39742, - 39743, - { - "value": 84, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 39744, - 39744, - null - ], - [ - "number-token", - ".9", - 39745, - 39746, - { - "value": 0.9, - "type": "number" - } - ], - [ - ")-token", - ")", - 39747, - 39747, - null - ], - [ - "semicolon-token", - ";", - 39748, - 39748, - null - ], - [ - "ident-token", - "border-radius", - 39749, - 39761, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 39762, - 39762, - null - ], - [ - "dimension-token", - ".375rem", - 39763, - 39769, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 39770, - 39770, - null - ], - [ - "delim-token", - ".", - 39771, - 39771, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 39772, - 39779, - { - "value": "is-valid" - } - ], - [ - "delim-token", - "~", - 39780, - 39780, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 39781, - 39781, - { - "value": "." - } - ], - [ - "ident-token", - "valid-feedback", - 39782, - 39795, - { - "value": "valid-feedback" - } - ], - [ - "comma-token", - ",", - 39796, - 39796, - null - ], - [ - "delim-token", - ".", - 39797, - 39797, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 39798, - 39805, - { - "value": "is-valid" - } - ], - [ - "delim-token", - "~", - 39806, - 39806, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 39807, - 39807, - { - "value": "." - } - ], - [ - "ident-token", - "valid-tooltip", - 39808, - 39820, - { - "value": "valid-tooltip" - } - ], - [ - "comma-token", - ",", - 39821, - 39821, - null - ], - [ - "delim-token", - ".", - 39822, - 39822, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 39823, - 39835, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 39836, - 39836, - null - ], - [ - "colon-token", - ":", - 39837, - 39837, - null - ], - [ - "ident-token", - "valid", - 39838, - 39842, - { - "value": "valid" - } - ], - [ - "delim-token", - "~", - 39843, - 39843, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 39844, - 39844, - { - "value": "." - } - ], - [ - "ident-token", - "valid-feedback", - 39845, - 39858, - { - "value": "valid-feedback" - } - ], - [ - "comma-token", - ",", - 39859, - 39859, - null - ], - [ - "delim-token", - ".", - 39860, - 39860, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 39861, - 39873, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 39874, - 39874, - null - ], - [ - "colon-token", - ":", - 39875, - 39875, - null - ], - [ - "ident-token", - "valid", - 39876, - 39880, - { - "value": "valid" - } - ], - [ - "delim-token", - "~", - 39881, - 39881, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 39882, - 39882, - { - "value": "." - } - ], - [ - "ident-token", - "valid-tooltip", - 39883, - 39895, - { - "value": "valid-tooltip" - } - ], - [ - "{-token", - "{", - 39896, - 39896, - null - ], - [ - "ident-token", - "display", - 39897, - 39903, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 39904, - 39904, - null - ], - [ - "ident-token", - "block", - 39905, - 39909, - { - "value": "block" - } - ], - [ - "}-token", - "}", - 39910, - 39910, - null - ], - [ - "delim-token", - ".", - 39911, - 39911, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 39912, - 39923, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 39924, - 39924, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 39925, - 39932, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 39933, - 39933, - null - ], - [ - "delim-token", - ".", - 39934, - 39934, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 39935, - 39947, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 39948, - 39948, - null - ], - [ - "delim-token", - ".", - 39949, - 39949, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 39950, - 39961, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 39962, - 39962, - null - ], - [ - "ident-token", - "valid", - 39963, - 39967, - { - "value": "valid" - } - ], - [ - "{-token", - "{", - 39968, - 39968, - null - ], - [ - "ident-token", - "border-color", - 39969, - 39980, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 39981, - 39981, - null - ], - [ - "hash-token", - "#198754", - 39982, - 39988, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 39989, - 39989, - null - ], - [ - "ident-token", - "padding-right", - 39990, - 40002, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 40003, - 40003, - null - ], - [ - "function-token", - "calc(", - 40004, - 40008, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 40009, - 40013, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40014, - 40014, - null - ], - [ - "delim-token", - "+", - 40015, - 40015, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40016, - 40016, - null - ], - [ - "dimension-token", - ".75rem", - 40017, - 40022, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40023, - 40023, - null - ], - [ - "semicolon-token", - ";", - 40024, - 40024, - null - ], - [ - "ident-token", - "background-image", - 40025, - 40040, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 40041, - 40041, - null - ], - [ - "function-token", - "url(", - 40042, - 40045, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\"", - 40046, - 40273, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 40274, - 40274, - null - ], - [ - "semicolon-token", - ";", - 40275, - 40275, - null - ], - [ - "ident-token", - "background-repeat", - 40276, - 40292, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 40293, - 40293, - null - ], - [ - "ident-token", - "no-repeat", - 40294, - 40302, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 40303, - 40303, - null - ], - [ - "ident-token", - "background-position", - 40304, - 40322, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 40323, - 40323, - null - ], - [ - "ident-token", - "right", - 40324, - 40328, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 40329, - 40329, - null - ], - [ - "function-token", - "calc(", - 40330, - 40334, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 40335, - 40340, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40341, - 40341, - null - ], - [ - "delim-token", - "+", - 40342, - 40342, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40343, - 40343, - null - ], - [ - "dimension-token", - ".1875rem", - 40344, - 40351, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40352, - 40352, - null - ], - [ - "whitespace-token", - " ", - 40353, - 40353, - null - ], - [ - "ident-token", - "center", - 40354, - 40359, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 40360, - 40360, - null - ], - [ - "ident-token", - "background-size", - 40361, - 40375, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 40376, - 40376, - null - ], - [ - "function-token", - "calc(", - 40377, - 40381, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 40382, - 40386, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40387, - 40387, - null - ], - [ - "delim-token", - "+", - 40388, - 40388, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40389, - 40389, - null - ], - [ - "dimension-token", - ".375rem", - 40390, - 40396, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40397, - 40397, - null - ], - [ - "whitespace-token", - " ", - 40398, - 40398, - null - ], - [ - "function-token", - "calc(", - 40399, - 40403, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 40404, - 40408, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40409, - 40409, - null - ], - [ - "delim-token", - "+", - 40410, - 40410, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40411, - 40411, - null - ], - [ - "dimension-token", - ".375rem", - 40412, - 40418, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40419, - 40419, - null - ], - [ - "}-token", - "}", - 40420, - 40420, - null - ], - [ - "delim-token", - ".", - 40421, - 40421, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 40422, - 40433, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 40434, - 40434, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 40435, - 40442, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 40443, - 40443, - null - ], - [ - "ident-token", - "focus", - 40444, - 40448, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 40449, - 40449, - null - ], - [ - "delim-token", - ".", - 40450, - 40450, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 40451, - 40463, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 40464, - 40464, - null - ], - [ - "delim-token", - ".", - 40465, - 40465, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 40466, - 40477, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 40478, - 40478, - null - ], - [ - "ident-token", - "valid", - 40479, - 40483, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 40484, - 40484, - null - ], - [ - "ident-token", - "focus", - 40485, - 40489, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 40490, - 40490, - null - ], - [ - "ident-token", - "border-color", - 40491, - 40502, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 40503, - 40503, - null - ], - [ - "hash-token", - "#198754", - 40504, - 40510, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 40511, - 40511, - null - ], - [ - "ident-token", - "box-shadow", - 40512, - 40521, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 40522, - 40522, - null - ], - [ - "number-token", - "0", - 40523, - 40523, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 40524, - 40524, - null - ], - [ - "number-token", - "0", - 40525, - 40525, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 40526, - 40526, - null - ], - [ - "number-token", - "0", - 40527, - 40527, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 40528, - 40528, - null - ], - [ - "dimension-token", - ".25rem", - 40529, - 40534, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 40535, - 40535, - null - ], - [ - "function-token", - "rgba(", - 40536, - 40540, - { - "value": "rgba" - } - ], - [ - "number-token", - "25", - 40541, - 40542, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 40543, - 40543, - null - ], - [ - "number-token", - "135", - 40544, - 40546, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 40547, - 40547, - null - ], - [ - "number-token", - "84", - 40548, - 40549, - { - "value": 84, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 40550, - 40550, - null - ], - [ - "number-token", - ".25", - 40551, - 40553, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 40554, - 40554, - null - ], - [ - "}-token", - "}", - 40555, - 40555, - null - ], - [ - "delim-token", - ".", - 40556, - 40556, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 40557, - 40569, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 40570, - 40570, - null - ], - [ - "ident-token", - "textarea", - 40571, - 40578, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 40579, - 40579, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 40580, - 40591, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 40592, - 40592, - null - ], - [ - "ident-token", - "valid", - 40593, - 40597, - { - "value": "valid" - } - ], - [ - "comma-token", - ",", - 40598, - 40598, - null - ], - [ - "ident-token", - "textarea", - 40599, - 40606, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 40607, - 40607, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 40608, - 40619, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 40620, - 40620, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 40621, - 40628, - { - "value": "is-valid" - } - ], - [ - "{-token", - "{", - 40629, - 40629, - null - ], - [ - "ident-token", - "padding-right", - 40630, - 40642, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 40643, - 40643, - null - ], - [ - "function-token", - "calc(", - 40644, - 40648, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 40649, - 40653, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40654, - 40654, - null - ], - [ - "delim-token", - "+", - 40655, - 40655, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40656, - 40656, - null - ], - [ - "dimension-token", - ".75rem", - 40657, - 40662, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40663, - 40663, - null - ], - [ - "semicolon-token", - ";", - 40664, - 40664, - null - ], - [ - "ident-token", - "background-position", - 40665, - 40683, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 40684, - 40684, - null - ], - [ - "ident-token", - "top", - 40685, - 40687, - { - "value": "top" - } - ], - [ - "whitespace-token", - " ", - 40688, - 40688, - null - ], - [ - "function-token", - "calc(", - 40689, - 40693, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 40694, - 40699, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40700, - 40700, - null - ], - [ - "delim-token", - "+", - 40701, - 40701, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40702, - 40702, - null - ], - [ - "dimension-token", - ".1875rem", - 40703, - 40710, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40711, - 40711, - null - ], - [ - "whitespace-token", - " ", - 40712, - 40712, - null - ], - [ - "ident-token", - "right", - 40713, - 40717, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 40718, - 40718, - null - ], - [ - "function-token", - "calc(", - 40719, - 40723, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 40724, - 40729, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 40730, - 40730, - null - ], - [ - "delim-token", - "+", - 40731, - 40731, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 40732, - 40732, - null - ], - [ - "dimension-token", - ".1875rem", - 40733, - 40740, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 40741, - 40741, - null - ], - [ - "}-token", - "}", - 40742, - 40742, - null - ], - [ - "delim-token", - ".", - 40743, - 40743, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40744, - 40754, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 40755, - 40755, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 40756, - 40763, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 40764, - 40764, - null - ], - [ - "delim-token", - ".", - 40765, - 40765, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 40766, - 40778, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 40779, - 40779, - null - ], - [ - "delim-token", - ".", - 40780, - 40780, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40781, - 40791, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 40792, - 40792, - null - ], - [ - "ident-token", - "valid", - 40793, - 40797, - { - "value": "valid" - } - ], - [ - "{-token", - "{", - 40798, - 40798, - null - ], - [ - "ident-token", - "border-color", - 40799, - 40810, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 40811, - 40811, - null - ], - [ - "hash-token", - "#198754", - 40812, - 40818, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 40819, - 40819, - null - ], - [ - "delim-token", - ".", - 40820, - 40820, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40821, - 40831, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 40832, - 40832, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 40833, - 40840, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 40841, - 40841, - null - ], - [ - "function-token", - "not(", - 40842, - 40845, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 40846, - 40846, - null - ], - [ - "ident-token", - "multiple", - 40847, - 40854, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 40855, - 40855, - null - ], - [ - ")-token", - ")", - 40856, - 40856, - null - ], - [ - "colon-token", - ":", - 40857, - 40857, - null - ], - [ - "function-token", - "not(", - 40858, - 40861, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 40862, - 40862, - null - ], - [ - "ident-token", - "size", - 40863, - 40866, - { - "value": "size" - } - ], - [ - "]-token", - "]", - 40867, - 40867, - null - ], - [ - ")-token", - ")", - 40868, - 40868, - null - ], - [ - "comma-token", - ",", - 40869, - 40869, - null - ], - [ - "delim-token", - ".", - 40870, - 40870, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40871, - 40881, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 40882, - 40882, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 40883, - 40890, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 40891, - 40891, - null - ], - [ - "function-token", - "not(", - 40892, - 40895, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 40896, - 40896, - null - ], - [ - "ident-token", - "multiple", - 40897, - 40904, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 40905, - 40905, - null - ], - [ - ")-token", - ")", - 40906, - 40906, - null - ], - [ - "[-token", - "[", - 40907, - 40907, - null - ], - [ - "ident-token", - "size", - 40908, - 40911, - { - "value": "size" - } - ], - [ - "delim-token", - "=", - 40912, - 40912, - { - "value": "=" - } - ], - [ - "string-token", - "\"1\"", - 40913, - 40915, - { - "value": "1" - } - ], - [ - "]-token", - "]", - 40916, - 40916, - null - ], - [ - "comma-token", - ",", - 40917, - 40917, - null - ], - [ - "delim-token", - ".", - 40918, - 40918, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 40919, - 40931, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 40932, - 40932, - null - ], - [ - "delim-token", - ".", - 40933, - 40933, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40934, - 40944, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 40945, - 40945, - null - ], - [ - "ident-token", - "valid", - 40946, - 40950, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 40951, - 40951, - null - ], - [ - "function-token", - "not(", - 40952, - 40955, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 40956, - 40956, - null - ], - [ - "ident-token", - "multiple", - 40957, - 40964, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 40965, - 40965, - null - ], - [ - ")-token", - ")", - 40966, - 40966, - null - ], - [ - "colon-token", - ":", - 40967, - 40967, - null - ], - [ - "function-token", - "not(", - 40968, - 40971, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 40972, - 40972, - null - ], - [ - "ident-token", - "size", - 40973, - 40976, - { - "value": "size" - } - ], - [ - "]-token", - "]", - 40977, - 40977, - null - ], - [ - ")-token", - ")", - 40978, - 40978, - null - ], - [ - "comma-token", - ",", - 40979, - 40979, - null - ], - [ - "delim-token", - ".", - 40980, - 40980, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 40981, - 40993, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 40994, - 40994, - null - ], - [ - "delim-token", - ".", - 40995, - 40995, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 40996, - 41006, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 41007, - 41007, - null - ], - [ - "ident-token", - "valid", - 41008, - 41012, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 41013, - 41013, - null - ], - [ - "function-token", - "not(", - 41014, - 41017, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 41018, - 41018, - null - ], - [ - "ident-token", - "multiple", - 41019, - 41026, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 41027, - 41027, - null - ], - [ - ")-token", - ")", - 41028, - 41028, - null - ], - [ - "[-token", - "[", - 41029, - 41029, - null - ], - [ - "ident-token", - "size", - 41030, - 41033, - { - "value": "size" - } - ], - [ - "delim-token", - "=", - 41034, - 41034, - { - "value": "=" - } - ], - [ - "string-token", - "\"1\"", - 41035, - 41037, - { - "value": "1" - } - ], - [ - "]-token", - "]", - 41038, - 41038, - null - ], - [ - "{-token", - "{", - 41039, - 41039, - null - ], - [ - "ident-token", - "padding-right", - 41040, - 41052, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 41053, - 41053, - null - ], - [ - "dimension-token", - "4.125rem", - 41054, - 41061, - { - "value": 4.125, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 41062, - 41062, - null - ], - [ - "ident-token", - "background-image", - 41063, - 41078, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 41079, - 41079, - null - ], - [ - "function-token", - "url(", - 41080, - 41083, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", - 41084, - 41301, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 41302, - 41302, - null - ], - [ - "comma-token", - ",", - 41303, - 41303, - null - ], - [ - "function-token", - "url(", - 41304, - 41307, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\"", - 41308, - 41535, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 41536, - 41536, - null - ], - [ - "semicolon-token", - ";", - 41537, - 41537, - null - ], - [ - "ident-token", - "background-position", - 41538, - 41556, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 41557, - 41557, - null - ], - [ - "ident-token", - "right", - 41558, - 41562, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 41563, - 41563, - null - ], - [ - "dimension-token", - ".75rem", - 41564, - 41569, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 41570, - 41570, - null - ], - [ - "ident-token", - "center", - 41571, - 41576, - { - "value": "center" - } - ], - [ - "comma-token", - ",", - 41577, - 41577, - null - ], - [ - "ident-token", - "center", - 41578, - 41583, - { - "value": "center" - } - ], - [ - "whitespace-token", - " ", - 41584, - 41584, - null - ], - [ - "ident-token", - "right", - 41585, - 41589, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 41590, - 41590, - null - ], - [ - "dimension-token", - "2.25rem", - 41591, - 41597, - { - "value": 2.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 41598, - 41598, - null - ], - [ - "ident-token", - "background-size", - 41599, - 41613, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 41614, - 41614, - null - ], - [ - "dimension-token", - "16px", - 41615, - 41618, - { - "value": 16, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 41619, - 41619, - null - ], - [ - "dimension-token", - "12px", - 41620, - 41623, - { - "value": 12, - "type": "integer", - "unit": "px" - } - ], - [ - "comma-token", - ",", - 41624, - 41624, - null - ], - [ - "function-token", - "calc(", - 41625, - 41629, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 41630, - 41634, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 41635, - 41635, - null - ], - [ - "delim-token", - "+", - 41636, - 41636, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 41637, - 41637, - null - ], - [ - "dimension-token", - ".375rem", - 41638, - 41644, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 41645, - 41645, - null - ], - [ - "whitespace-token", - " ", - 41646, - 41646, - null - ], - [ - "function-token", - "calc(", - 41647, - 41651, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 41652, - 41656, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 41657, - 41657, - null - ], - [ - "delim-token", - "+", - 41658, - 41658, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 41659, - 41659, - null - ], - [ - "dimension-token", - ".375rem", - 41660, - 41666, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 41667, - 41667, - null - ], - [ - "}-token", - "}", - 41668, - 41668, - null - ], - [ - "delim-token", - ".", - 41669, - 41669, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 41670, - 41680, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 41681, - 41681, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 41682, - 41689, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 41690, - 41690, - null - ], - [ - "ident-token", - "focus", - 41691, - 41695, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 41696, - 41696, - null - ], - [ - "delim-token", - ".", - 41697, - 41697, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 41698, - 41710, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 41711, - 41711, - null - ], - [ - "delim-token", - ".", - 41712, - 41712, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 41713, - 41723, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 41724, - 41724, - null - ], - [ - "ident-token", - "valid", - 41725, - 41729, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 41730, - 41730, - null - ], - [ - "ident-token", - "focus", - 41731, - 41735, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 41736, - 41736, - null - ], - [ - "ident-token", - "border-color", - 41737, - 41748, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 41749, - 41749, - null - ], - [ - "hash-token", - "#198754", - 41750, - 41756, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 41757, - 41757, - null - ], - [ - "ident-token", - "box-shadow", - 41758, - 41767, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 41768, - 41768, - null - ], - [ - "number-token", - "0", - 41769, - 41769, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 41770, - 41770, - null - ], - [ - "number-token", - "0", - 41771, - 41771, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 41772, - 41772, - null - ], - [ - "number-token", - "0", - 41773, - 41773, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 41774, - 41774, - null - ], - [ - "dimension-token", - ".25rem", - 41775, - 41780, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 41781, - 41781, - null - ], - [ - "function-token", - "rgba(", - 41782, - 41786, - { - "value": "rgba" - } - ], - [ - "number-token", - "25", - 41787, - 41788, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 41789, - 41789, - null - ], - [ - "number-token", - "135", - 41790, - 41792, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 41793, - 41793, - null - ], - [ - "number-token", - "84", - 41794, - 41795, - { - "value": 84, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 41796, - 41796, - null - ], - [ - "number-token", - ".25", - 41797, - 41799, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 41800, - 41800, - null - ], - [ - "}-token", - "}", - 41801, - 41801, - null - ], - [ - "delim-token", - ".", - 41802, - 41802, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 41803, - 41820, - { - "value": "form-control-color" - } - ], - [ - "delim-token", - ".", - 41821, - 41821, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 41822, - 41829, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 41830, - 41830, - null - ], - [ - "delim-token", - ".", - 41831, - 41831, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 41832, - 41844, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 41845, - 41845, - null - ], - [ - "delim-token", - ".", - 41846, - 41846, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 41847, - 41864, - { - "value": "form-control-color" - } - ], - [ - "colon-token", - ":", - 41865, - 41865, - null - ], - [ - "ident-token", - "valid", - 41866, - 41870, - { - "value": "valid" - } - ], - [ - "{-token", - "{", - 41871, - 41871, - null - ], - [ - "ident-token", - "width", - 41872, - 41876, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 41877, - 41877, - null - ], - [ - "function-token", - "calc(", - 41878, - 41882, - { - "value": "calc" - } - ], - [ - "dimension-token", - "3rem", - 41883, - 41886, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 41887, - 41887, - null - ], - [ - "delim-token", - "+", - 41888, - 41888, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 41889, - 41889, - null - ], - [ - "function-token", - "calc(", - 41890, - 41894, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 41895, - 41899, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 41900, - 41900, - null - ], - [ - "delim-token", - "+", - 41901, - 41901, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 41902, - 41902, - null - ], - [ - "dimension-token", - ".75rem", - 41903, - 41908, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 41909, - 41909, - null - ], - [ - ")-token", - ")", - 41910, - 41910, - null - ], - [ - "}-token", - "}", - 41911, - 41911, - null - ], - [ - "delim-token", - ".", - 41912, - 41912, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 41913, - 41928, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 41929, - 41929, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 41930, - 41937, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 41938, - 41938, - null - ], - [ - "delim-token", - ".", - 41939, - 41939, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 41940, - 41952, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 41953, - 41953, - null - ], - [ - "delim-token", - ".", - 41954, - 41954, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 41955, - 41970, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 41971, - 41971, - null - ], - [ - "ident-token", - "valid", - 41972, - 41976, - { - "value": "valid" - } - ], - [ - "{-token", - "{", - 41977, - 41977, - null - ], - [ - "ident-token", - "border-color", - 41978, - 41989, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 41990, - 41990, - null - ], - [ - "hash-token", - "#198754", - 41991, - 41997, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 41998, - 41998, - null - ], - [ - "delim-token", - ".", - 41999, - 41999, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42000, - 42015, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 42016, - 42016, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42017, - 42024, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 42025, - 42025, - null - ], - [ - "ident-token", - "checked", - 42026, - 42032, - { - "value": "checked" - } - ], - [ - "comma-token", - ",", - 42033, - 42033, - null - ], - [ - "delim-token", - ".", - 42034, - 42034, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42035, - 42047, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42048, - 42048, - null - ], - [ - "delim-token", - ".", - 42049, - 42049, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42050, - 42065, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 42066, - 42066, - null - ], - [ - "ident-token", - "valid", - 42067, - 42071, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 42072, - 42072, - null - ], - [ - "ident-token", - "checked", - 42073, - 42079, - { - "value": "checked" - } - ], - [ - "{-token", - "{", - 42080, - 42080, - null - ], - [ - "ident-token", - "background-color", - 42081, - 42096, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 42097, - 42097, - null - ], - [ - "hash-token", - "#198754", - 42098, - 42104, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 42105, - 42105, - null - ], - [ - "delim-token", - ".", - 42106, - 42106, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42107, - 42122, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 42123, - 42123, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42124, - 42131, - { - "value": "is-valid" - } - ], - [ - "colon-token", - ":", - 42132, - 42132, - null - ], - [ - "ident-token", - "focus", - 42133, - 42137, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 42138, - 42138, - null - ], - [ - "delim-token", - ".", - 42139, - 42139, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42140, - 42152, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42153, - 42153, - null - ], - [ - "delim-token", - ".", - 42154, - 42154, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42155, - 42170, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 42171, - 42171, - null - ], - [ - "ident-token", - "valid", - 42172, - 42176, - { - "value": "valid" - } - ], - [ - "colon-token", - ":", - 42177, - 42177, - null - ], - [ - "ident-token", - "focus", - 42178, - 42182, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 42183, - 42183, - null - ], - [ - "ident-token", - "box-shadow", - 42184, - 42193, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 42194, - 42194, - null - ], - [ - "number-token", - "0", - 42195, - 42195, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 42196, - 42196, - null - ], - [ - "number-token", - "0", - 42197, - 42197, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 42198, - 42198, - null - ], - [ - "number-token", - "0", - 42199, - 42199, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 42200, - 42200, - null - ], - [ - "dimension-token", - ".25rem", - 42201, - 42206, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 42207, - 42207, - null - ], - [ - "function-token", - "rgba(", - 42208, - 42212, - { - "value": "rgba" - } - ], - [ - "number-token", - "25", - 42213, - 42214, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 42215, - 42215, - null - ], - [ - "number-token", - "135", - 42216, - 42218, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 42219, - 42219, - null - ], - [ - "number-token", - "84", - 42220, - 42221, - { - "value": 84, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 42222, - 42222, - null - ], - [ - "number-token", - ".25", - 42223, - 42225, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 42226, - 42226, - null - ], - [ - "}-token", - "}", - 42227, - 42227, - null - ], - [ - "delim-token", - ".", - 42228, - 42228, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42229, - 42244, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 42245, - 42245, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42246, - 42253, - { - "value": "is-valid" - } - ], - [ - "delim-token", - "~", - 42254, - 42254, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 42255, - 42255, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 42256, - 42271, - { - "value": "form-check-label" - } - ], - [ - "comma-token", - ",", - 42272, - 42272, - null - ], - [ - "delim-token", - ".", - 42273, - 42273, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42274, - 42286, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42287, - 42287, - null - ], - [ - "delim-token", - ".", - 42288, - 42288, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42289, - 42304, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 42305, - 42305, - null - ], - [ - "ident-token", - "valid", - 42306, - 42310, - { - "value": "valid" - } - ], - [ - "delim-token", - "~", - 42311, - 42311, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 42312, - 42312, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 42313, - 42328, - { - "value": "form-check-label" - } - ], - [ - "{-token", - "{", - 42329, - 42329, - null - ], - [ - "ident-token", - "color", - 42330, - 42334, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 42335, - 42335, - null - ], - [ - "hash-token", - "#198754", - 42336, - 42342, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 42343, - 42343, - null - ], - [ - "delim-token", - ".", - 42344, - 42344, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-inline", - 42345, - 42361, - { - "value": "form-check-inline" - } - ], - [ - "whitespace-token", - " ", - 42362, - 42362, - null - ], - [ - "delim-token", - ".", - 42363, - 42363, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 42364, - 42379, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - "~", - 42380, - 42380, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 42381, - 42381, - { - "value": "." - } - ], - [ - "ident-token", - "valid-feedback", - 42382, - 42395, - { - "value": "valid-feedback" - } - ], - [ - "{-token", - "{", - 42396, - 42396, - null - ], - [ - "ident-token", - "margin-left", - 42397, - 42407, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 42408, - 42408, - null - ], - [ - "dimension-token", - ".5em", - 42409, - 42412, - { - "value": 0.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 42413, - 42413, - null - ], - [ - "delim-token", - ".", - 42414, - 42414, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42415, - 42425, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42426, - 42426, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42427, - 42427, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 42428, - 42439, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 42440, - 42440, - null - ], - [ - "function-token", - "not(", - 42441, - 42444, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42445, - 42445, - null - ], - [ - "ident-token", - "focus", - 42446, - 42450, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 42451, - 42451, - null - ], - [ - "delim-token", - ".", - 42452, - 42452, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42453, - 42460, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 42461, - 42461, - null - ], - [ - "delim-token", - ".", - 42462, - 42462, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42463, - 42473, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42474, - 42474, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42475, - 42475, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 42476, - 42488, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 42489, - 42489, - null - ], - [ - "function-token", - "not(", - 42490, - 42493, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42494, - 42494, - null - ], - [ - "ident-token", - "focus-within", - 42495, - 42506, - { - "value": "focus-within" - } - ], - [ - ")-token", - ")", - 42507, - 42507, - null - ], - [ - "delim-token", - ".", - 42508, - 42508, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42509, - 42516, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 42517, - 42517, - null - ], - [ - "delim-token", - ".", - 42518, - 42518, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42519, - 42529, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42530, - 42530, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42531, - 42531, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 42532, - 42542, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 42543, - 42543, - null - ], - [ - "function-token", - "not(", - 42544, - 42547, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42548, - 42548, - null - ], - [ - "ident-token", - "focus", - 42549, - 42553, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 42554, - 42554, - null - ], - [ - "delim-token", - ".", - 42555, - 42555, - { - "value": "." - } - ], - [ - "ident-token", - "is-valid", - 42556, - 42563, - { - "value": "is-valid" - } - ], - [ - "comma-token", - ",", - 42564, - 42564, - null - ], - [ - "delim-token", - ".", - 42565, - 42565, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42566, - 42578, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42579, - 42579, - null - ], - [ - "delim-token", - ".", - 42580, - 42580, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42581, - 42591, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42592, - 42592, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42593, - 42593, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 42594, - 42605, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 42606, - 42606, - null - ], - [ - "function-token", - "not(", - 42607, - 42610, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42611, - 42611, - null - ], - [ - "ident-token", - "focus", - 42612, - 42616, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 42617, - 42617, - null - ], - [ - "colon-token", - ":", - 42618, - 42618, - null - ], - [ - "ident-token", - "valid", - 42619, - 42623, - { - "value": "valid" - } - ], - [ - "comma-token", - ",", - 42624, - 42624, - null - ], - [ - "delim-token", - ".", - 42625, - 42625, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42626, - 42638, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42639, - 42639, - null - ], - [ - "delim-token", - ".", - 42640, - 42640, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42641, - 42651, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42652, - 42652, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42653, - 42653, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 42654, - 42666, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 42667, - 42667, - null - ], - [ - "function-token", - "not(", - 42668, - 42671, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42672, - 42672, - null - ], - [ - "ident-token", - "focus-within", - 42673, - 42684, - { - "value": "focus-within" - } - ], - [ - ")-token", - ")", - 42685, - 42685, - null - ], - [ - "colon-token", - ":", - 42686, - 42686, - null - ], - [ - "ident-token", - "valid", - 42687, - 42691, - { - "value": "valid" - } - ], - [ - "comma-token", - ",", - 42692, - 42692, - null - ], - [ - "delim-token", - ".", - 42693, - 42693, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 42694, - 42706, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 42707, - 42707, - null - ], - [ - "delim-token", - ".", - 42708, - 42708, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 42709, - 42719, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 42720, - 42720, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 42721, - 42721, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 42722, - 42732, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 42733, - 42733, - null - ], - [ - "function-token", - "not(", - 42734, - 42737, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 42738, - 42738, - null - ], - [ - "ident-token", - "focus", - 42739, - 42743, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 42744, - 42744, - null - ], - [ - "colon-token", - ":", - 42745, - 42745, - null - ], - [ - "ident-token", - "valid", - 42746, - 42750, - { - "value": "valid" - } - ], - [ - "{-token", - "{", - 42751, - 42751, - null - ], - [ - "ident-token", - "z-index", - 42752, - 42758, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 42759, - 42759, - null - ], - [ - "number-token", - "3", - 42760, - 42760, - { - "value": 3, - "type": "integer" - } - ], - [ - "}-token", - "}", - 42761, - 42761, - null - ], - [ - "delim-token", - ".", - 42762, - 42762, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-feedback", - 42763, - 42778, - { - "value": "invalid-feedback" - } - ], - [ - "{-token", - "{", - 42779, - 42779, - null - ], - [ - "ident-token", - "display", - 42780, - 42786, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 42787, - 42787, - null - ], - [ - "ident-token", - "none", - 42788, - 42791, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 42792, - 42792, - null - ], - [ - "ident-token", - "width", - 42793, - 42797, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 42798, - 42798, - null - ], - [ - "percentage-token", - "100%", - 42799, - 42802, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 42803, - 42803, - null - ], - [ - "ident-token", - "margin-top", - 42804, - 42813, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 42814, - 42814, - null - ], - [ - "dimension-token", - ".25rem", - 42815, - 42820, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 42821, - 42821, - null - ], - [ - "ident-token", - "font-size", - 42822, - 42830, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 42831, - 42831, - null - ], - [ - "dimension-token", - ".875em", - 42832, - 42837, - { - "value": 0.875, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 42838, - 42838, - null - ], - [ - "ident-token", - "color", - 42839, - 42843, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 42844, - 42844, - null - ], - [ - "hash-token", - "#dc3545", - 42845, - 42851, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 42852, - 42852, - null - ], - [ - "delim-token", - ".", - 42853, - 42853, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-tooltip", - 42854, - 42868, - { - "value": "invalid-tooltip" - } - ], - [ - "{-token", - "{", - 42869, - 42869, - null - ], - [ - "ident-token", - "position", - 42870, - 42877, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 42878, - 42878, - null - ], - [ - "ident-token", - "absolute", - 42879, - 42886, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 42887, - 42887, - null - ], - [ - "ident-token", - "top", - 42888, - 42890, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 42891, - 42891, - null - ], - [ - "percentage-token", - "100%", - 42892, - 42895, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 42896, - 42896, - null - ], - [ - "ident-token", - "z-index", - 42897, - 42903, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 42904, - 42904, - null - ], - [ - "number-token", - "5", - 42905, - 42905, - { - "value": 5, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 42906, - 42906, - null - ], - [ - "ident-token", - "display", - 42907, - 42913, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 42914, - 42914, - null - ], - [ - "ident-token", - "none", - 42915, - 42918, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 42919, - 42919, - null - ], - [ - "ident-token", - "max-width", - 42920, - 42928, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 42929, - 42929, - null - ], - [ - "percentage-token", - "100%", - 42930, - 42933, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 42934, - 42934, - null - ], - [ - "ident-token", - "padding", - 42935, - 42941, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 42942, - 42942, - null - ], - [ - "dimension-token", - ".25rem", - 42943, - 42948, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 42949, - 42949, - null - ], - [ - "dimension-token", - ".5rem", - 42950, - 42954, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 42955, - 42955, - null - ], - [ - "ident-token", - "margin-top", - 42956, - 42965, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 42966, - 42966, - null - ], - [ - "dimension-token", - ".1rem", - 42967, - 42971, - { - "value": 0.1, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 42972, - 42972, - null - ], - [ - "ident-token", - "font-size", - 42973, - 42981, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 42982, - 42982, - null - ], - [ - "dimension-token", - ".875rem", - 42983, - 42989, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 42990, - 42990, - null - ], - [ - "ident-token", - "color", - 42991, - 42995, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 42996, - 42996, - null - ], - [ - "hash-token", - "#fff", - 42997, - 43000, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 43001, - 43001, - null - ], - [ - "ident-token", - "background-color", - 43002, - 43017, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 43018, - 43018, - null - ], - [ - "function-token", - "rgba(", - 43019, - 43023, - { - "value": "rgba" - } - ], - [ - "number-token", - "220", - 43024, - 43026, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43027, - 43027, - null - ], - [ - "number-token", - "53", - 43028, - 43029, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43030, - 43030, - null - ], - [ - "number-token", - "69", - 43031, - 43032, - { - "value": 69, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43033, - 43033, - null - ], - [ - "number-token", - ".9", - 43034, - 43035, - { - "value": 0.9, - "type": "number" - } - ], - [ - ")-token", - ")", - 43036, - 43036, - null - ], - [ - "semicolon-token", - ";", - 43037, - 43037, - null - ], - [ - "ident-token", - "border-radius", - 43038, - 43050, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 43051, - 43051, - null - ], - [ - "dimension-token", - ".375rem", - 43052, - 43058, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 43059, - 43059, - null - ], - [ - "delim-token", - ".", - 43060, - 43060, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 43061, - 43070, - { - "value": "is-invalid" - } - ], - [ - "delim-token", - "~", - 43071, - 43071, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 43072, - 43072, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-feedback", - 43073, - 43088, - { - "value": "invalid-feedback" - } - ], - [ - "comma-token", - ",", - 43089, - 43089, - null - ], - [ - "delim-token", - ".", - 43090, - 43090, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 43091, - 43100, - { - "value": "is-invalid" - } - ], - [ - "delim-token", - "~", - 43101, - 43101, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 43102, - 43102, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-tooltip", - 43103, - 43117, - { - "value": "invalid-tooltip" - } - ], - [ - "comma-token", - ",", - 43118, - 43118, - null - ], - [ - "delim-token", - ".", - 43119, - 43119, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 43120, - 43132, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 43133, - 43133, - null - ], - [ - "colon-token", - ":", - 43134, - 43134, - null - ], - [ - "ident-token", - "invalid", - 43135, - 43141, - { - "value": "invalid" - } - ], - [ - "delim-token", - "~", - 43142, - 43142, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 43143, - 43143, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-feedback", - 43144, - 43159, - { - "value": "invalid-feedback" - } - ], - [ - "comma-token", - ",", - 43160, - 43160, - null - ], - [ - "delim-token", - ".", - 43161, - 43161, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 43162, - 43174, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 43175, - 43175, - null - ], - [ - "colon-token", - ":", - 43176, - 43176, - null - ], - [ - "ident-token", - "invalid", - 43177, - 43183, - { - "value": "invalid" - } - ], - [ - "delim-token", - "~", - 43184, - 43184, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 43185, - 43185, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-tooltip", - 43186, - 43200, - { - "value": "invalid-tooltip" - } - ], - [ - "{-token", - "{", - 43201, - 43201, - null - ], - [ - "ident-token", - "display", - 43202, - 43208, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 43209, - 43209, - null - ], - [ - "ident-token", - "block", - 43210, - 43214, - { - "value": "block" - } - ], - [ - "}-token", - "}", - 43215, - 43215, - null - ], - [ - "delim-token", - ".", - 43216, - 43216, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 43217, - 43228, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 43229, - 43229, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 43230, - 43239, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 43240, - 43240, - null - ], - [ - "delim-token", - ".", - 43241, - 43241, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 43242, - 43254, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 43255, - 43255, - null - ], - [ - "delim-token", - ".", - 43256, - 43256, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 43257, - 43268, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 43269, - 43269, - null - ], - [ - "ident-token", - "invalid", - 43270, - 43276, - { - "value": "invalid" - } - ], - [ - "{-token", - "{", - 43277, - 43277, - null - ], - [ - "ident-token", - "border-color", - 43278, - 43289, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 43290, - 43290, - null - ], - [ - "hash-token", - "#dc3545", - 43291, - 43297, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 43298, - 43298, - null - ], - [ - "ident-token", - "padding-right", - 43299, - 43311, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 43312, - 43312, - null - ], - [ - "function-token", - "calc(", - 43313, - 43317, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 43318, - 43322, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 43323, - 43323, - null - ], - [ - "delim-token", - "+", - 43324, - 43324, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 43325, - 43325, - null - ], - [ - "dimension-token", - ".75rem", - 43326, - 43331, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 43332, - 43332, - null - ], - [ - "semicolon-token", - ";", - 43333, - 43333, - null - ], - [ - "ident-token", - "background-image", - 43334, - 43349, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 43350, - 43350, - null - ], - [ - "function-token", - "url(", - 43351, - 43354, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\"", - 43355, - 43663, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 43664, - 43664, - null - ], - [ - "semicolon-token", - ";", - 43665, - 43665, - null - ], - [ - "ident-token", - "background-repeat", - 43666, - 43682, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 43683, - 43683, - null - ], - [ - "ident-token", - "no-repeat", - 43684, - 43692, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 43693, - 43693, - null - ], - [ - "ident-token", - "background-position", - 43694, - 43712, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 43713, - 43713, - null - ], - [ - "ident-token", - "right", - 43714, - 43718, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 43719, - 43719, - null - ], - [ - "function-token", - "calc(", - 43720, - 43724, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 43725, - 43730, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 43731, - 43731, - null - ], - [ - "delim-token", - "+", - 43732, - 43732, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 43733, - 43733, - null - ], - [ - "dimension-token", - ".1875rem", - 43734, - 43741, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 43742, - 43742, - null - ], - [ - "whitespace-token", - " ", - 43743, - 43743, - null - ], - [ - "ident-token", - "center", - 43744, - 43749, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 43750, - 43750, - null - ], - [ - "ident-token", - "background-size", - 43751, - 43765, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 43766, - 43766, - null - ], - [ - "function-token", - "calc(", - 43767, - 43771, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 43772, - 43776, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 43777, - 43777, - null - ], - [ - "delim-token", - "+", - 43778, - 43778, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 43779, - 43779, - null - ], - [ - "dimension-token", - ".375rem", - 43780, - 43786, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 43787, - 43787, - null - ], - [ - "whitespace-token", - " ", - 43788, - 43788, - null - ], - [ - "function-token", - "calc(", - 43789, - 43793, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 43794, - 43798, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 43799, - 43799, - null - ], - [ - "delim-token", - "+", - 43800, - 43800, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 43801, - 43801, - null - ], - [ - "dimension-token", - ".375rem", - 43802, - 43808, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 43809, - 43809, - null - ], - [ - "}-token", - "}", - 43810, - 43810, - null - ], - [ - "delim-token", - ".", - 43811, - 43811, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 43812, - 43823, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 43824, - 43824, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 43825, - 43834, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 43835, - 43835, - null - ], - [ - "ident-token", - "focus", - 43836, - 43840, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 43841, - 43841, - null - ], - [ - "delim-token", - ".", - 43842, - 43842, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 43843, - 43855, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 43856, - 43856, - null - ], - [ - "delim-token", - ".", - 43857, - 43857, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 43858, - 43869, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 43870, - 43870, - null - ], - [ - "ident-token", - "invalid", - 43871, - 43877, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 43878, - 43878, - null - ], - [ - "ident-token", - "focus", - 43879, - 43883, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 43884, - 43884, - null - ], - [ - "ident-token", - "border-color", - 43885, - 43896, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 43897, - 43897, - null - ], - [ - "hash-token", - "#dc3545", - 43898, - 43904, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 43905, - 43905, - null - ], - [ - "ident-token", - "box-shadow", - 43906, - 43915, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 43916, - 43916, - null - ], - [ - "number-token", - "0", - 43917, - 43917, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 43918, - 43918, - null - ], - [ - "number-token", - "0", - 43919, - 43919, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 43920, - 43920, - null - ], - [ - "number-token", - "0", - 43921, - 43921, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 43922, - 43922, - null - ], - [ - "dimension-token", - ".25rem", - 43923, - 43928, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 43929, - 43929, - null - ], - [ - "function-token", - "rgba(", - 43930, - 43934, - { - "value": "rgba" - } - ], - [ - "number-token", - "220", - 43935, - 43937, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43938, - 43938, - null - ], - [ - "number-token", - "53", - 43939, - 43940, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43941, - 43941, - null - ], - [ - "number-token", - "69", - 43942, - 43943, - { - "value": 69, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 43944, - 43944, - null - ], - [ - "number-token", - ".25", - 43945, - 43947, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 43948, - 43948, - null - ], - [ - "}-token", - "}", - 43949, - 43949, - null - ], - [ - "delim-token", - ".", - 43950, - 43950, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 43951, - 43963, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 43964, - 43964, - null - ], - [ - "ident-token", - "textarea", - 43965, - 43972, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 43973, - 43973, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 43974, - 43985, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 43986, - 43986, - null - ], - [ - "ident-token", - "invalid", - 43987, - 43993, - { - "value": "invalid" - } - ], - [ - "comma-token", - ",", - 43994, - 43994, - null - ], - [ - "ident-token", - "textarea", - 43995, - 44002, - { - "value": "textarea" - } - ], - [ - "delim-token", - ".", - 44003, - 44003, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 44004, - 44015, - { - "value": "form-control" - } - ], - [ - "delim-token", - ".", - 44016, - 44016, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 44017, - 44026, - { - "value": "is-invalid" - } - ], - [ - "{-token", - "{", - 44027, - 44027, - null - ], - [ - "ident-token", - "padding-right", - 44028, - 44040, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 44041, - 44041, - null - ], - [ - "function-token", - "calc(", - 44042, - 44046, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 44047, - 44051, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 44052, - 44052, - null - ], - [ - "delim-token", - "+", - 44053, - 44053, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 44054, - 44054, - null - ], - [ - "dimension-token", - ".75rem", - 44055, - 44060, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 44061, - 44061, - null - ], - [ - "semicolon-token", - ";", - 44062, - 44062, - null - ], - [ - "ident-token", - "background-position", - 44063, - 44081, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 44082, - 44082, - null - ], - [ - "ident-token", - "top", - 44083, - 44085, - { - "value": "top" - } - ], - [ - "whitespace-token", - " ", - 44086, - 44086, - null - ], - [ - "function-token", - "calc(", - 44087, - 44091, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 44092, - 44097, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 44098, - 44098, - null - ], - [ - "delim-token", - "+", - 44099, - 44099, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 44100, - 44100, - null - ], - [ - "dimension-token", - ".1875rem", - 44101, - 44108, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 44109, - 44109, - null - ], - [ - "whitespace-token", - " ", - 44110, - 44110, - null - ], - [ - "ident-token", - "right", - 44111, - 44115, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 44116, - 44116, - null - ], - [ - "function-token", - "calc(", - 44117, - 44121, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".375em", - 44122, - 44127, - { - "value": 0.375, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 44128, - 44128, - null - ], - [ - "delim-token", - "+", - 44129, - 44129, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 44130, - 44130, - null - ], - [ - "dimension-token", - ".1875rem", - 44131, - 44138, - { - "value": 0.1875, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 44139, - 44139, - null - ], - [ - "}-token", - "}", - 44140, - 44140, - null - ], - [ - "delim-token", - ".", - 44141, - 44141, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44142, - 44152, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 44153, - 44153, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 44154, - 44163, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 44164, - 44164, - null - ], - [ - "delim-token", - ".", - 44165, - 44165, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 44166, - 44178, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 44179, - 44179, - null - ], - [ - "delim-token", - ".", - 44180, - 44180, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44181, - 44191, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 44192, - 44192, - null - ], - [ - "ident-token", - "invalid", - 44193, - 44199, - { - "value": "invalid" - } - ], - [ - "{-token", - "{", - 44200, - 44200, - null - ], - [ - "ident-token", - "border-color", - 44201, - 44212, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 44213, - 44213, - null - ], - [ - "hash-token", - "#dc3545", - 44214, - 44220, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 44221, - 44221, - null - ], - [ - "delim-token", - ".", - 44222, - 44222, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44223, - 44233, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 44234, - 44234, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 44235, - 44244, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 44245, - 44245, - null - ], - [ - "function-token", - "not(", - 44246, - 44249, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44250, - 44250, - null - ], - [ - "ident-token", - "multiple", - 44251, - 44258, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 44259, - 44259, - null - ], - [ - ")-token", - ")", - 44260, - 44260, - null - ], - [ - "colon-token", - ":", - 44261, - 44261, - null - ], - [ - "function-token", - "not(", - 44262, - 44265, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44266, - 44266, - null - ], - [ - "ident-token", - "size", - 44267, - 44270, - { - "value": "size" - } - ], - [ - "]-token", - "]", - 44271, - 44271, - null - ], - [ - ")-token", - ")", - 44272, - 44272, - null - ], - [ - "comma-token", - ",", - 44273, - 44273, - null - ], - [ - "delim-token", - ".", - 44274, - 44274, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44275, - 44285, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 44286, - 44286, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 44287, - 44296, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 44297, - 44297, - null - ], - [ - "function-token", - "not(", - 44298, - 44301, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44302, - 44302, - null - ], - [ - "ident-token", - "multiple", - 44303, - 44310, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 44311, - 44311, - null - ], - [ - ")-token", - ")", - 44312, - 44312, - null - ], - [ - "[-token", - "[", - 44313, - 44313, - null - ], - [ - "ident-token", - "size", - 44314, - 44317, - { - "value": "size" - } - ], - [ - "delim-token", - "=", - 44318, - 44318, - { - "value": "=" - } - ], - [ - "string-token", - "\"1\"", - 44319, - 44321, - { - "value": "1" - } - ], - [ - "]-token", - "]", - 44322, - 44322, - null - ], - [ - "comma-token", - ",", - 44323, - 44323, - null - ], - [ - "delim-token", - ".", - 44324, - 44324, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 44325, - 44337, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 44338, - 44338, - null - ], - [ - "delim-token", - ".", - 44339, - 44339, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44340, - 44350, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 44351, - 44351, - null - ], - [ - "ident-token", - "invalid", - 44352, - 44358, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 44359, - 44359, - null - ], - [ - "function-token", - "not(", - 44360, - 44363, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44364, - 44364, - null - ], - [ - "ident-token", - "multiple", - 44365, - 44372, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 44373, - 44373, - null - ], - [ - ")-token", - ")", - 44374, - 44374, - null - ], - [ - "colon-token", - ":", - 44375, - 44375, - null - ], - [ - "function-token", - "not(", - 44376, - 44379, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44380, - 44380, - null - ], - [ - "ident-token", - "size", - 44381, - 44384, - { - "value": "size" - } - ], - [ - "]-token", - "]", - 44385, - 44385, - null - ], - [ - ")-token", - ")", - 44386, - 44386, - null - ], - [ - "comma-token", - ",", - 44387, - 44387, - null - ], - [ - "delim-token", - ".", - 44388, - 44388, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 44389, - 44401, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 44402, - 44402, - null - ], - [ - "delim-token", - ".", - 44403, - 44403, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 44404, - 44414, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 44415, - 44415, - null - ], - [ - "ident-token", - "invalid", - 44416, - 44422, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 44423, - 44423, - null - ], - [ - "function-token", - "not(", - 44424, - 44427, - { - "value": "not" - } - ], - [ - "[-token", - "[", - 44428, - 44428, - null - ], - [ - "ident-token", - "multiple", - 44429, - 44436, - { - "value": "multiple" - } - ], - [ - "]-token", - "]", - 44437, - 44437, - null - ], - [ - ")-token", - ")", - 44438, - 44438, - null - ], - [ - "[-token", - "[", - 44439, - 44439, - null - ], - [ - "ident-token", - "size", - 44440, - 44443, - { - "value": "size" - } - ], - [ - "delim-token", - "=", - 44444, - 44444, - { - "value": "=" - } - ], - [ - "string-token", - "\"1\"", - 44445, - 44447, - { - "value": "1" - } - ], - [ - "]-token", - "]", - 44448, - 44448, - null - ], - [ - "{-token", - "{", - 44449, - 44449, - null - ], - [ - "ident-token", - "padding-right", - 44450, - 44462, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 44463, - 44463, - null - ], - [ - "dimension-token", - "4.125rem", - 44464, - 44471, - { - "value": 4.125, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 44472, - 44472, - null - ], - [ - "ident-token", - "background-image", - 44473, - 44488, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 44489, - 44489, - null - ], - [ - "function-token", - "url(", - 44490, - 44493, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"", - 44494, - 44711, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 44712, - 44712, - null - ], - [ - "comma-token", - ",", - 44713, - 44713, - null - ], - [ - "function-token", - "url(", - 44714, - 44717, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\"", - 44718, - 45026, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 45027, - 45027, - null - ], - [ - "semicolon-token", - ";", - 45028, - 45028, - null - ], - [ - "ident-token", - "background-position", - 45029, - 45047, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 45048, - 45048, - null - ], - [ - "ident-token", - "right", - 45049, - 45053, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 45054, - 45054, - null - ], - [ - "dimension-token", - ".75rem", - 45055, - 45060, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 45061, - 45061, - null - ], - [ - "ident-token", - "center", - 45062, - 45067, - { - "value": "center" - } - ], - [ - "comma-token", - ",", - 45068, - 45068, - null - ], - [ - "ident-token", - "center", - 45069, - 45074, - { - "value": "center" - } - ], - [ - "whitespace-token", - " ", - 45075, - 45075, - null - ], - [ - "ident-token", - "right", - 45076, - 45080, - { - "value": "right" - } - ], - [ - "whitespace-token", - " ", - 45081, - 45081, - null - ], - [ - "dimension-token", - "2.25rem", - 45082, - 45088, - { - "value": 2.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 45089, - 45089, - null - ], - [ - "ident-token", - "background-size", - 45090, - 45104, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 45105, - 45105, - null - ], - [ - "dimension-token", - "16px", - 45106, - 45109, - { - "value": 16, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 45110, - 45110, - null - ], - [ - "dimension-token", - "12px", - 45111, - 45114, - { - "value": 12, - "type": "integer", - "unit": "px" - } - ], - [ - "comma-token", - ",", - 45115, - 45115, - null - ], - [ - "function-token", - "calc(", - 45116, - 45120, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 45121, - 45125, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 45126, - 45126, - null - ], - [ - "delim-token", - "+", - 45127, - 45127, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 45128, - 45128, - null - ], - [ - "dimension-token", - ".375rem", - 45129, - 45135, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 45136, - 45136, - null - ], - [ - "whitespace-token", - " ", - 45137, - 45137, - null - ], - [ - "function-token", - "calc(", - 45138, - 45142, - { - "value": "calc" - } - ], - [ - "dimension-token", - ".75em", - 45143, - 45147, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 45148, - 45148, - null - ], - [ - "delim-token", - "+", - 45149, - 45149, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 45150, - 45150, - null - ], - [ - "dimension-token", - ".375rem", - 45151, - 45157, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 45158, - 45158, - null - ], - [ - "}-token", - "}", - 45159, - 45159, - null - ], - [ - "delim-token", - ".", - 45160, - 45160, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 45161, - 45171, - { - "value": "form-select" - } - ], - [ - "delim-token", - ".", - 45172, - 45172, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45173, - 45182, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 45183, - 45183, - null - ], - [ - "ident-token", - "focus", - 45184, - 45188, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 45189, - 45189, - null - ], - [ - "delim-token", - ".", - 45190, - 45190, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45191, - 45203, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45204, - 45204, - null - ], - [ - "delim-token", - ".", - 45205, - 45205, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 45206, - 45216, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 45217, - 45217, - null - ], - [ - "ident-token", - "invalid", - 45218, - 45224, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 45225, - 45225, - null - ], - [ - "ident-token", - "focus", - 45226, - 45230, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 45231, - 45231, - null - ], - [ - "ident-token", - "border-color", - 45232, - 45243, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 45244, - 45244, - null - ], - [ - "hash-token", - "#dc3545", - 45245, - 45251, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 45252, - 45252, - null - ], - [ - "ident-token", - "box-shadow", - 45253, - 45262, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 45263, - 45263, - null - ], - [ - "number-token", - "0", - 45264, - 45264, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45265, - 45265, - null - ], - [ - "number-token", - "0", - 45266, - 45266, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45267, - 45267, - null - ], - [ - "number-token", - "0", - 45268, - 45268, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45269, - 45269, - null - ], - [ - "dimension-token", - ".25rem", - 45270, - 45275, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 45276, - 45276, - null - ], - [ - "function-token", - "rgba(", - 45277, - 45281, - { - "value": "rgba" - } - ], - [ - "number-token", - "220", - 45282, - 45284, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45285, - 45285, - null - ], - [ - "number-token", - "53", - 45286, - 45287, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45288, - 45288, - null - ], - [ - "number-token", - "69", - 45289, - 45290, - { - "value": 69, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45291, - 45291, - null - ], - [ - "number-token", - ".25", - 45292, - 45294, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 45295, - 45295, - null - ], - [ - "}-token", - "}", - 45296, - 45296, - null - ], - [ - "delim-token", - ".", - 45297, - 45297, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 45298, - 45315, - { - "value": "form-control-color" - } - ], - [ - "delim-token", - ".", - 45316, - 45316, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45317, - 45326, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 45327, - 45327, - null - ], - [ - "delim-token", - ".", - 45328, - 45328, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45329, - 45341, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45342, - 45342, - null - ], - [ - "delim-token", - ".", - 45343, - 45343, - { - "value": "." - } - ], - [ - "ident-token", - "form-control-color", - 45344, - 45361, - { - "value": "form-control-color" - } - ], - [ - "colon-token", - ":", - 45362, - 45362, - null - ], - [ - "ident-token", - "invalid", - 45363, - 45369, - { - "value": "invalid" - } - ], - [ - "{-token", - "{", - 45370, - 45370, - null - ], - [ - "ident-token", - "width", - 45371, - 45375, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 45376, - 45376, - null - ], - [ - "function-token", - "calc(", - 45377, - 45381, - { - "value": "calc" - } - ], - [ - "dimension-token", - "3rem", - 45382, - 45385, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 45386, - 45386, - null - ], - [ - "delim-token", - "+", - 45387, - 45387, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 45388, - 45388, - null - ], - [ - "function-token", - "calc(", - 45389, - 45393, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.5em", - 45394, - 45398, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 45399, - 45399, - null - ], - [ - "delim-token", - "+", - 45400, - 45400, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 45401, - 45401, - null - ], - [ - "dimension-token", - ".75rem", - 45402, - 45407, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - ")-token", - ")", - 45408, - 45408, - null - ], - [ - ")-token", - ")", - 45409, - 45409, - null - ], - [ - "}-token", - "}", - 45410, - 45410, - null - ], - [ - "delim-token", - ".", - 45411, - 45411, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45412, - 45427, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 45428, - 45428, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45429, - 45438, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 45439, - 45439, - null - ], - [ - "delim-token", - ".", - 45440, - 45440, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45441, - 45453, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45454, - 45454, - null - ], - [ - "delim-token", - ".", - 45455, - 45455, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45456, - 45471, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 45472, - 45472, - null - ], - [ - "ident-token", - "invalid", - 45473, - 45479, - { - "value": "invalid" - } - ], - [ - "{-token", - "{", - 45480, - 45480, - null - ], - [ - "ident-token", - "border-color", - 45481, - 45492, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 45493, - 45493, - null - ], - [ - "hash-token", - "#dc3545", - 45494, - 45500, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 45501, - 45501, - null - ], - [ - "delim-token", - ".", - 45502, - 45502, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45503, - 45518, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 45519, - 45519, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45520, - 45529, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 45530, - 45530, - null - ], - [ - "ident-token", - "checked", - 45531, - 45537, - { - "value": "checked" - } - ], - [ - "comma-token", - ",", - 45538, - 45538, - null - ], - [ - "delim-token", - ".", - 45539, - 45539, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45540, - 45552, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45553, - 45553, - null - ], - [ - "delim-token", - ".", - 45554, - 45554, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45555, - 45570, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 45571, - 45571, - null - ], - [ - "ident-token", - "invalid", - 45572, - 45578, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 45579, - 45579, - null - ], - [ - "ident-token", - "checked", - 45580, - 45586, - { - "value": "checked" - } - ], - [ - "{-token", - "{", - 45587, - 45587, - null - ], - [ - "ident-token", - "background-color", - 45588, - 45603, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 45604, - 45604, - null - ], - [ - "hash-token", - "#dc3545", - 45605, - 45611, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 45612, - 45612, - null - ], - [ - "delim-token", - ".", - 45613, - 45613, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45614, - 45629, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 45630, - 45630, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45631, - 45640, - { - "value": "is-invalid" - } - ], - [ - "colon-token", - ":", - 45641, - 45641, - null - ], - [ - "ident-token", - "focus", - 45642, - 45646, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 45647, - 45647, - null - ], - [ - "delim-token", - ".", - 45648, - 45648, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45649, - 45661, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45662, - 45662, - null - ], - [ - "delim-token", - ".", - 45663, - 45663, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45664, - 45679, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 45680, - 45680, - null - ], - [ - "ident-token", - "invalid", - 45681, - 45687, - { - "value": "invalid" - } - ], - [ - "colon-token", - ":", - 45688, - 45688, - null - ], - [ - "ident-token", - "focus", - 45689, - 45693, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 45694, - 45694, - null - ], - [ - "ident-token", - "box-shadow", - 45695, - 45704, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 45705, - 45705, - null - ], - [ - "number-token", - "0", - 45706, - 45706, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45707, - 45707, - null - ], - [ - "number-token", - "0", - 45708, - 45708, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45709, - 45709, - null - ], - [ - "number-token", - "0", - 45710, - 45710, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 45711, - 45711, - null - ], - [ - "dimension-token", - ".25rem", - 45712, - 45717, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 45718, - 45718, - null - ], - [ - "function-token", - "rgba(", - 45719, - 45723, - { - "value": "rgba" - } - ], - [ - "number-token", - "220", - 45724, - 45726, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45727, - 45727, - null - ], - [ - "number-token", - "53", - 45728, - 45729, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45730, - 45730, - null - ], - [ - "number-token", - "69", - 45731, - 45732, - { - "value": 69, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 45733, - 45733, - null - ], - [ - "number-token", - ".25", - 45734, - 45736, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 45737, - 45737, - null - ], - [ - "}-token", - "}", - 45738, - 45738, - null - ], - [ - "delim-token", - ".", - 45739, - 45739, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45740, - 45755, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - ".", - 45756, - 45756, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45757, - 45766, - { - "value": "is-invalid" - } - ], - [ - "delim-token", - "~", - 45767, - 45767, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 45768, - 45768, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 45769, - 45784, - { - "value": "form-check-label" - } - ], - [ - "comma-token", - ",", - 45785, - 45785, - null - ], - [ - "delim-token", - ".", - 45786, - 45786, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 45787, - 45799, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 45800, - 45800, - null - ], - [ - "delim-token", - ".", - 45801, - 45801, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45802, - 45817, - { - "value": "form-check-input" - } - ], - [ - "colon-token", - ":", - 45818, - 45818, - null - ], - [ - "ident-token", - "invalid", - 45819, - 45825, - { - "value": "invalid" - } - ], - [ - "delim-token", - "~", - 45826, - 45826, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 45827, - 45827, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-label", - 45828, - 45843, - { - "value": "form-check-label" - } - ], - [ - "{-token", - "{", - 45844, - 45844, - null - ], - [ - "ident-token", - "color", - 45845, - 45849, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 45850, - 45850, - null - ], - [ - "hash-token", - "#dc3545", - 45851, - 45857, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 45858, - 45858, - null - ], - [ - "delim-token", - ".", - 45859, - 45859, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-inline", - 45860, - 45876, - { - "value": "form-check-inline" - } - ], - [ - "whitespace-token", - " ", - 45877, - 45877, - null - ], - [ - "delim-token", - ".", - 45878, - 45878, - { - "value": "." - } - ], - [ - "ident-token", - "form-check-input", - 45879, - 45894, - { - "value": "form-check-input" - } - ], - [ - "delim-token", - "~", - 45895, - 45895, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 45896, - 45896, - { - "value": "." - } - ], - [ - "ident-token", - "invalid-feedback", - 45897, - 45912, - { - "value": "invalid-feedback" - } - ], - [ - "{-token", - "{", - 45913, - 45913, - null - ], - [ - "ident-token", - "margin-left", - 45914, - 45924, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 45925, - 45925, - null - ], - [ - "dimension-token", - ".5em", - 45926, - 45929, - { - "value": 0.5, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 45930, - 45930, - null - ], - [ - "delim-token", - ".", - 45931, - 45931, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 45932, - 45942, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 45943, - 45943, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 45944, - 45944, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 45945, - 45956, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 45957, - 45957, - null - ], - [ - "function-token", - "not(", - 45958, - 45961, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 45962, - 45962, - null - ], - [ - "ident-token", - "focus", - 45963, - 45967, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 45968, - 45968, - null - ], - [ - "delim-token", - ".", - 45969, - 45969, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 45970, - 45979, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 45980, - 45980, - null - ], - [ - "delim-token", - ".", - 45981, - 45981, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 45982, - 45992, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 45993, - 45993, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 45994, - 45994, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 45995, - 46007, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 46008, - 46008, - null - ], - [ - "function-token", - "not(", - 46009, - 46012, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 46013, - 46013, - null - ], - [ - "ident-token", - "focus-within", - 46014, - 46025, - { - "value": "focus-within" - } - ], - [ - ")-token", - ")", - 46026, - 46026, - null - ], - [ - "delim-token", - ".", - 46027, - 46027, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 46028, - 46037, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 46038, - 46038, - null - ], - [ - "delim-token", - ".", - 46039, - 46039, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 46040, - 46050, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 46051, - 46051, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 46052, - 46052, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 46053, - 46063, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 46064, - 46064, - null - ], - [ - "function-token", - "not(", - 46065, - 46068, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 46069, - 46069, - null - ], - [ - "ident-token", - "focus", - 46070, - 46074, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 46075, - 46075, - null - ], - [ - "delim-token", - ".", - 46076, - 46076, - { - "value": "." - } - ], - [ - "ident-token", - "is-invalid", - 46077, - 46086, - { - "value": "is-invalid" - } - ], - [ - "comma-token", - ",", - 46087, - 46087, - null - ], - [ - "delim-token", - ".", - 46088, - 46088, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 46089, - 46101, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 46102, - 46102, - null - ], - [ - "delim-token", - ".", - 46103, - 46103, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 46104, - 46114, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 46115, - 46115, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 46116, - 46116, - { - "value": "." - } - ], - [ - "ident-token", - "form-control", - 46117, - 46128, - { - "value": "form-control" - } - ], - [ - "colon-token", - ":", - 46129, - 46129, - null - ], - [ - "function-token", - "not(", - 46130, - 46133, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 46134, - 46134, - null - ], - [ - "ident-token", - "focus", - 46135, - 46139, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 46140, - 46140, - null - ], - [ - "colon-token", - ":", - 46141, - 46141, - null - ], - [ - "ident-token", - "invalid", - 46142, - 46148, - { - "value": "invalid" - } - ], - [ - "comma-token", - ",", - 46149, - 46149, - null - ], - [ - "delim-token", - ".", - 46150, - 46150, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 46151, - 46163, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 46164, - 46164, - null - ], - [ - "delim-token", - ".", - 46165, - 46165, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 46166, - 46176, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 46177, - 46177, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 46178, - 46178, - { - "value": "." - } - ], - [ - "ident-token", - "form-floating", - 46179, - 46191, - { - "value": "form-floating" - } - ], - [ - "colon-token", - ":", - 46192, - 46192, - null - ], - [ - "function-token", - "not(", - 46193, - 46196, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 46197, - 46197, - null - ], - [ - "ident-token", - "focus-within", - 46198, - 46209, - { - "value": "focus-within" - } - ], - [ - ")-token", - ")", - 46210, - 46210, - null - ], - [ - "colon-token", - ":", - 46211, - 46211, - null - ], - [ - "ident-token", - "invalid", - 46212, - 46218, - { - "value": "invalid" - } - ], - [ - "comma-token", - ",", - 46219, - 46219, - null - ], - [ - "delim-token", - ".", - 46220, - 46220, - { - "value": "." - } - ], - [ - "ident-token", - "was-validated", - 46221, - 46233, - { - "value": "was-validated" - } - ], - [ - "whitespace-token", - " ", - 46234, - 46234, - null - ], - [ - "delim-token", - ".", - 46235, - 46235, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 46236, - 46246, - { - "value": "input-group" - } - ], - [ - "delim-token", - ">", - 46247, - 46247, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 46248, - 46248, - { - "value": "." - } - ], - [ - "ident-token", - "form-select", - 46249, - 46259, - { - "value": "form-select" - } - ], - [ - "colon-token", - ":", - 46260, - 46260, - null - ], - [ - "function-token", - "not(", - 46261, - 46264, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 46265, - 46265, - null - ], - [ - "ident-token", - "focus", - 46266, - 46270, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 46271, - 46271, - null - ], - [ - "colon-token", - ":", - 46272, - 46272, - null - ], - [ - "ident-token", - "invalid", - 46273, - 46279, - { - "value": "invalid" - } - ], - [ - "{-token", - "{", - 46280, - 46280, - null - ], - [ - "ident-token", - "z-index", - 46281, - 46287, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 46288, - 46288, - null - ], - [ - "number-token", - "4", - 46289, - 46289, - { - "value": 4, - "type": "integer" - } - ], - [ - "}-token", - "}", - 46290, - 46290, - null - ], - [ - "delim-token", - ".", - 46291, - 46291, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 46292, - 46294, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 46295, - 46295, - null - ], - [ - "ident-token", - "--bs-btn-padding-x", - 46296, - 46313, - { - "value": "--bs-btn-padding-x" - } - ], - [ - "colon-token", - ":", - 46314, - 46314, - null - ], - [ - "dimension-token", - "0.75rem", - 46315, - 46321, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 46322, - 46322, - null - ], - [ - "ident-token", - "--bs-btn-padding-y", - 46323, - 46340, - { - "value": "--bs-btn-padding-y" - } - ], - [ - "colon-token", - ":", - 46341, - 46341, - null - ], - [ - "dimension-token", - "0.375rem", - 46342, - 46349, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 46350, - 46350, - null - ], - [ - "ident-token", - "--bs-btn-font-family", - 46351, - 46370, - { - "value": "--bs-btn-font-family" - } - ], - [ - "colon-token", - ":", - 46371, - 46371, - null - ], - [ - "whitespace-token", - " ", - 46372, - 46372, - null - ], - [ - "semicolon-token", - ";", - 46373, - 46373, - null - ], - [ - "ident-token", - "--bs-btn-font-size", - 46374, - 46391, - { - "value": "--bs-btn-font-size" - } - ], - [ - "colon-token", - ":", - 46392, - 46392, - null - ], - [ - "dimension-token", - "1rem", - 46393, - 46396, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 46397, - 46397, - null - ], - [ - "ident-token", - "--bs-btn-font-weight", - 46398, - 46417, - { - "value": "--bs-btn-font-weight" - } - ], - [ - "colon-token", - ":", - 46418, - 46418, - null - ], - [ - "number-token", - "400", - 46419, - 46421, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 46422, - 46422, - null - ], - [ - "ident-token", - "--bs-btn-line-height", - 46423, - 46442, - { - "value": "--bs-btn-line-height" - } - ], - [ - "colon-token", - ":", - 46443, - 46443, - null - ], - [ - "number-token", - "1.5", - 46444, - 46446, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 46447, - 46447, - null - ], - [ - "ident-token", - "--bs-btn-color", - 46448, - 46461, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 46462, - 46462, - null - ], - [ - "hash-token", - "#212529", - 46463, - 46469, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 46470, - 46470, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 46471, - 46481, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 46482, - 46482, - null - ], - [ - "ident-token", - "transparent", - 46483, - 46493, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 46494, - 46494, - null - ], - [ - "ident-token", - "--bs-btn-border-width", - 46495, - 46515, - { - "value": "--bs-btn-border-width" - } - ], - [ - "colon-token", - ":", - 46516, - 46516, - null - ], - [ - "dimension-token", - "1px", - 46517, - 46519, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 46520, - 46520, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 46521, - 46541, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 46542, - 46542, - null - ], - [ - "ident-token", - "transparent", - 46543, - 46553, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 46554, - 46554, - null - ], - [ - "ident-token", - "--bs-btn-border-radius", - 46555, - 46576, - { - "value": "--bs-btn-border-radius" - } - ], - [ - "colon-token", - ":", - 46577, - 46577, - null - ], - [ - "dimension-token", - "0.375rem", - 46578, - 46585, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 46586, - 46586, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 46587, - 46613, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 46614, - 46614, - null - ], - [ - "ident-token", - "transparent", - 46615, - 46625, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 46626, - 46626, - null - ], - [ - "ident-token", - "--bs-btn-box-shadow", - 46627, - 46645, - { - "value": "--bs-btn-box-shadow" - } - ], - [ - "colon-token", - ":", - 46646, - 46646, - null - ], - [ - "ident-token", - "inset", - 46647, - 46651, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 46652, - 46652, - null - ], - [ - "number-token", - "0", - 46653, - 46653, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46654, - 46654, - null - ], - [ - "dimension-token", - "1px", - 46655, - 46657, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 46658, - 46658, - null - ], - [ - "number-token", - "0", - 46659, - 46659, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46660, - 46660, - null - ], - [ - "function-token", - "rgba(", - 46661, - 46665, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 46666, - 46668, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46669, - 46669, - null - ], - [ - "whitespace-token", - " ", - 46670, - 46670, - null - ], - [ - "number-token", - "255", - 46671, - 46673, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46674, - 46674, - null - ], - [ - "whitespace-token", - " ", - 46675, - 46675, - null - ], - [ - "number-token", - "255", - 46676, - 46678, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46679, - 46679, - null - ], - [ - "whitespace-token", - " ", - 46680, - 46680, - null - ], - [ - "number-token", - "0.15", - 46681, - 46684, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 46685, - 46685, - null - ], - [ - "comma-token", - ",", - 46686, - 46686, - null - ], - [ - "number-token", - "0", - 46687, - 46687, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46688, - 46688, - null - ], - [ - "dimension-token", - "1px", - 46689, - 46691, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 46692, - 46692, - null - ], - [ - "dimension-token", - "1px", - 46693, - 46695, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 46696, - 46696, - null - ], - [ - "function-token", - "rgba(", - 46697, - 46701, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 46702, - 46702, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46703, - 46703, - null - ], - [ - "whitespace-token", - " ", - 46704, - 46704, - null - ], - [ - "number-token", - "0", - 46705, - 46705, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46706, - 46706, - null - ], - [ - "whitespace-token", - " ", - 46707, - 46707, - null - ], - [ - "number-token", - "0", - 46708, - 46708, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 46709, - 46709, - null - ], - [ - "whitespace-token", - " ", - 46710, - 46710, - null - ], - [ - "number-token", - "0.075", - 46711, - 46715, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 46716, - 46716, - null - ], - [ - "semicolon-token", - ";", - 46717, - 46717, - null - ], - [ - "ident-token", - "--bs-btn-disabled-opacity", - 46718, - 46742, - { - "value": "--bs-btn-disabled-opacity" - } - ], - [ - "colon-token", - ":", - 46743, - 46743, - null - ], - [ - "number-token", - "0.65", - 46744, - 46747, - { - "value": 0.65, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 46748, - 46748, - null - ], - [ - "ident-token", - "--bs-btn-focus-box-shadow", - 46749, - 46773, - { - "value": "--bs-btn-focus-box-shadow" - } - ], - [ - "colon-token", - ":", - 46774, - 46774, - null - ], - [ - "number-token", - "0", - 46775, - 46775, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46776, - 46776, - null - ], - [ - "number-token", - "0", - 46777, - 46777, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46778, - 46778, - null - ], - [ - "number-token", - "0", - 46779, - 46779, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 46780, - 46780, - null - ], - [ - "dimension-token", - "0.25rem", - 46781, - 46787, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 46788, - 46788, - null - ], - [ - "function-token", - "rgba(", - 46789, - 46793, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 46794, - 46797, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 46798, - 46822, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - ")-token", - ")", - 46823, - 46823, - null - ], - [ - "comma-token", - ",", - 46824, - 46824, - null - ], - [ - "whitespace-token", - " ", - 46825, - 46825, - null - ], - [ - "number-token", - ".5", - 46826, - 46827, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 46828, - 46828, - null - ], - [ - "semicolon-token", - ";", - 46829, - 46829, - null - ], - [ - "ident-token", - "display", - 46830, - 46836, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 46837, - 46837, - null - ], - [ - "ident-token", - "inline-block", - 46838, - 46849, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 46850, - 46850, - null - ], - [ - "ident-token", - "padding", - 46851, - 46857, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 46858, - 46858, - null - ], - [ - "function-token", - "var(", - 46859, - 46862, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-padding-y", - 46863, - 46880, - { - "value": "--bs-btn-padding-y" - } - ], - [ - ")-token", - ")", - 46881, - 46881, - null - ], - [ - "whitespace-token", - " ", - 46882, - 46882, - null - ], - [ - "function-token", - "var(", - 46883, - 46886, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-padding-x", - 46887, - 46904, - { - "value": "--bs-btn-padding-x" - } - ], - [ - ")-token", - ")", - 46905, - 46905, - null - ], - [ - "semicolon-token", - ";", - 46906, - 46906, - null - ], - [ - "ident-token", - "font-family", - 46907, - 46917, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 46918, - 46918, - null - ], - [ - "function-token", - "var(", - 46919, - 46922, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-font-family", - 46923, - 46942, - { - "value": "--bs-btn-font-family" - } - ], - [ - ")-token", - ")", - 46943, - 46943, - null - ], - [ - "semicolon-token", - ";", - 46944, - 46944, - null - ], - [ - "ident-token", - "font-size", - 46945, - 46953, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 46954, - 46954, - null - ], - [ - "function-token", - "var(", - 46955, - 46958, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-font-size", - 46959, - 46976, - { - "value": "--bs-btn-font-size" - } - ], - [ - ")-token", - ")", - 46977, - 46977, - null - ], - [ - "semicolon-token", - ";", - 46978, - 46978, - null - ], - [ - "ident-token", - "font-weight", - 46979, - 46989, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 46990, - 46990, - null - ], - [ - "function-token", - "var(", - 46991, - 46994, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-font-weight", - 46995, - 47014, - { - "value": "--bs-btn-font-weight" - } - ], - [ - ")-token", - ")", - 47015, - 47015, - null - ], - [ - "semicolon-token", - ";", - 47016, - 47016, - null - ], - [ - "ident-token", - "line-height", - 47017, - 47027, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 47028, - 47028, - null - ], - [ - "function-token", - "var(", - 47029, - 47032, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-line-height", - 47033, - 47052, - { - "value": "--bs-btn-line-height" - } - ], - [ - ")-token", - ")", - 47053, - 47053, - null - ], - [ - "semicolon-token", - ";", - 47054, - 47054, - null - ], - [ - "ident-token", - "color", - 47055, - 47059, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 47060, - 47060, - null - ], - [ - "function-token", - "var(", - 47061, - 47064, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-color", - 47065, - 47078, - { - "value": "--bs-btn-color" - } - ], - [ - ")-token", - ")", - 47079, - 47079, - null - ], - [ - "semicolon-token", - ";", - 47080, - 47080, - null - ], - [ - "ident-token", - "text-align", - 47081, - 47090, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 47091, - 47091, - null - ], - [ - "ident-token", - "center", - 47092, - 47097, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 47098, - 47098, - null - ], - [ - "ident-token", - "text-decoration", - 47099, - 47113, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 47114, - 47114, - null - ], - [ - "ident-token", - "none", - 47115, - 47118, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 47119, - 47119, - null - ], - [ - "ident-token", - "vertical-align", - 47120, - 47133, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 47134, - 47134, - null - ], - [ - "ident-token", - "middle", - 47135, - 47140, - { - "value": "middle" - } - ], - [ - "semicolon-token", - ";", - 47141, - 47141, - null - ], - [ - "ident-token", - "cursor", - 47142, - 47147, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 47148, - 47148, - null - ], - [ - "ident-token", - "pointer", - 47149, - 47155, - { - "value": "pointer" - } - ], - [ - "semicolon-token", - ";", - 47156, - 47156, - null - ], - [ - "ident-token", - "-webkit-user-select", - 47157, - 47175, - { - "value": "-webkit-user-select" - } - ], - [ - "colon-token", - ":", - 47176, - 47176, - null - ], - [ - "ident-token", - "none", - 47177, - 47180, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 47181, - 47181, - null - ], - [ - "ident-token", - "-moz-user-select", - 47182, - 47197, - { - "value": "-moz-user-select" - } - ], - [ - "colon-token", - ":", - 47198, - 47198, - null - ], - [ - "ident-token", - "none", - 47199, - 47202, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 47203, - 47203, - null - ], - [ - "ident-token", - "user-select", - 47204, - 47214, - { - "value": "user-select" - } - ], - [ - "colon-token", - ":", - 47215, - 47215, - null - ], - [ - "ident-token", - "none", - 47216, - 47219, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 47220, - 47220, - null - ], - [ - "ident-token", - "border", - 47221, - 47226, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 47227, - 47227, - null - ], - [ - "function-token", - "var(", - 47228, - 47231, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-border-width", - 47232, - 47252, - { - "value": "--bs-btn-border-width" - } - ], - [ - ")-token", - ")", - 47253, - 47253, - null - ], - [ - "whitespace-token", - " ", - 47254, - 47254, - null - ], - [ - "ident-token", - "solid", - 47255, - 47259, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 47260, - 47260, - null - ], - [ - "function-token", - "var(", - 47261, - 47264, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-border-color", - 47265, - 47285, - { - "value": "--bs-btn-border-color" - } - ], - [ - ")-token", - ")", - 47286, - 47286, - null - ], - [ - "semicolon-token", - ";", - 47287, - 47287, - null - ], - [ - "ident-token", - "border-radius", - 47288, - 47300, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 47301, - 47301, - null - ], - [ - "function-token", - "var(", - 47302, - 47305, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-border-radius", - 47306, - 47327, - { - "value": "--bs-btn-border-radius" - } - ], - [ - ")-token", - ")", - 47328, - 47328, - null - ], - [ - "semicolon-token", - ";", - 47329, - 47329, - null - ], - [ - "ident-token", - "background-color", - 47330, - 47345, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 47346, - 47346, - null - ], - [ - "function-token", - "var(", - 47347, - 47350, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-bg", - 47351, - 47361, - { - "value": "--bs-btn-bg" - } - ], - [ - ")-token", - ")", - 47362, - 47362, - null - ], - [ - "semicolon-token", - ";", - 47363, - 47363, - null - ], - [ - "ident-token", - "transition", - 47364, - 47373, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 47374, - 47374, - null - ], - [ - "ident-token", - "color", - 47375, - 47379, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 47380, - 47380, - null - ], - [ - "dimension-token", - ".15s", - 47381, - 47384, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 47385, - 47385, - null - ], - [ - "ident-token", - "ease-in-out", - 47386, - 47396, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 47397, - 47397, - null - ], - [ - "ident-token", - "background-color", - 47398, - 47413, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 47414, - 47414, - null - ], - [ - "dimension-token", - ".15s", - 47415, - 47418, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 47419, - 47419, - null - ], - [ - "ident-token", - "ease-in-out", - 47420, - 47430, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 47431, - 47431, - null - ], - [ - "ident-token", - "border-color", - 47432, - 47443, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 47444, - 47444, - null - ], - [ - "dimension-token", - ".15s", - 47445, - 47448, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 47449, - 47449, - null - ], - [ - "ident-token", - "ease-in-out", - 47450, - 47460, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 47461, - 47461, - null - ], - [ - "ident-token", - "box-shadow", - 47462, - 47471, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 47472, - 47472, - null - ], - [ - "dimension-token", - ".15s", - 47473, - 47476, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 47477, - 47477, - null - ], - [ - "ident-token", - "ease-in-out", - 47478, - 47488, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 47489, - 47489, - null - ], - [ - "at-keyword-token", - "@media", - 47490, - 47495, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 47496, - 47496, - null - ], - [ - "(-token", - "(", - 47497, - 47497, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 47498, - 47519, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 47520, - 47520, - null - ], - [ - "ident-token", - "reduce", - 47521, - 47526, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 47527, - 47527, - null - ], - [ - "{-token", - "{", - 47528, - 47528, - null - ], - [ - "delim-token", - ".", - 47529, - 47529, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 47530, - 47532, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 47533, - 47533, - null - ], - [ - "ident-token", - "transition", - 47534, - 47543, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 47544, - 47544, - null - ], - [ - "ident-token", - "none", - 47545, - 47548, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 47549, - 47549, - null - ], - [ - "}-token", - "}", - 47550, - 47550, - null - ], - [ - "delim-token", - ".", - 47551, - 47551, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 47552, - 47554, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 47555, - 47555, - null - ], - [ - "ident-token", - "first-child", - 47556, - 47566, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 47567, - 47567, - null - ], - [ - "ident-token", - "hover", - 47568, - 47572, - { - "value": "hover" - } - ], - [ - "comma-token", - ",", - 47573, - 47573, - null - ], - [ - "colon-token", - ":", - 47574, - 47574, - null - ], - [ - "function-token", - "not(", - 47575, - 47578, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 47579, - 47579, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 47580, - 47588, - { - "value": "btn-check" - } - ], - [ - ")-token", - ")", - 47589, - 47589, - null - ], - [ - "delim-token", - "+", - 47590, - 47590, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 47591, - 47591, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 47592, - 47594, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 47595, - 47595, - null - ], - [ - "ident-token", - "hover", - 47596, - 47600, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 47601, - 47601, - null - ], - [ - "ident-token", - "color", - 47602, - 47606, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 47607, - 47607, - null - ], - [ - "function-token", - "var(", - 47608, - 47611, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-color", - 47612, - 47631, - { - "value": "--bs-btn-hover-color" - } - ], - [ - ")-token", - ")", - 47632, - 47632, - null - ], - [ - "semicolon-token", - ";", - 47633, - 47633, - null - ], - [ - "ident-token", - "background-color", - 47634, - 47649, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 47650, - 47650, - null - ], - [ - "function-token", - "var(", - 47651, - 47654, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 47655, - 47671, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - ")-token", - ")", - 47672, - 47672, - null - ], - [ - "semicolon-token", - ";", - 47673, - 47673, - null - ], - [ - "ident-token", - "border-color", - 47674, - 47685, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 47686, - 47686, - null - ], - [ - "function-token", - "var(", - 47687, - 47690, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 47691, - 47717, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - ")-token", - ")", - 47718, - 47718, - null - ], - [ - "}-token", - "}", - 47719, - 47719, - null - ], - [ - "delim-token", - ".", - 47720, - 47720, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 47721, - 47723, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 47724, - 47724, - null - ], - [ - "ident-token", - "focus-visible", - 47725, - 47737, - { - "value": "focus-visible" - } - ], - [ - "{-token", - "{", - 47738, - 47738, - null - ], - [ - "ident-token", - "color", - 47739, - 47743, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 47744, - 47744, - null - ], - [ - "function-token", - "var(", - 47745, - 47748, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-color", - 47749, - 47768, - { - "value": "--bs-btn-hover-color" - } - ], - [ - ")-token", - ")", - 47769, - 47769, - null - ], - [ - "semicolon-token", - ";", - 47770, - 47770, - null - ], - [ - "ident-token", - "background-color", - 47771, - 47786, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 47787, - 47787, - null - ], - [ - "function-token", - "var(", - 47788, - 47791, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 47792, - 47808, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - ")-token", - ")", - 47809, - 47809, - null - ], - [ - "semicolon-token", - ";", - 47810, - 47810, - null - ], - [ - "ident-token", - "border-color", - 47811, - 47822, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 47823, - 47823, - null - ], - [ - "function-token", - "var(", - 47824, - 47827, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 47828, - 47854, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - ")-token", - ")", - 47855, - 47855, - null - ], - [ - "semicolon-token", - ";", - 47856, - 47856, - null - ], - [ - "ident-token", - "outline", - 47857, - 47863, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 47864, - 47864, - null - ], - [ - "number-token", - "0", - 47865, - 47865, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 47866, - 47866, - null - ], - [ - "ident-token", - "box-shadow", - 47867, - 47876, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 47877, - 47877, - null - ], - [ - "function-token", - "var(", - 47878, - 47881, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-focus-box-shadow", - 47882, - 47906, - { - "value": "--bs-btn-focus-box-shadow" - } - ], - [ - ")-token", - ")", - 47907, - 47907, - null - ], - [ - "}-token", - "}", - 47908, - 47908, - null - ], - [ - "delim-token", - ".", - 47909, - 47909, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 47910, - 47918, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 47919, - 47919, - null - ], - [ - "ident-token", - "focus-visible", - 47920, - 47932, - { - "value": "focus-visible" - } - ], - [ - "delim-token", - "+", - 47933, - 47933, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 47934, - 47934, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 47935, - 47937, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 47938, - 47938, - null - ], - [ - "ident-token", - "border-color", - 47939, - 47950, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 47951, - 47951, - null - ], - [ - "function-token", - "var(", - 47952, - 47955, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 47956, - 47982, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - ")-token", - ")", - 47983, - 47983, - null - ], - [ - "semicolon-token", - ";", - 47984, - 47984, - null - ], - [ - "ident-token", - "outline", - 47985, - 47991, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 47992, - 47992, - null - ], - [ - "number-token", - "0", - 47993, - 47993, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 47994, - 47994, - null - ], - [ - "ident-token", - "box-shadow", - 47995, - 48004, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 48005, - 48005, - null - ], - [ - "function-token", - "var(", - 48006, - 48009, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-focus-box-shadow", - 48010, - 48034, - { - "value": "--bs-btn-focus-box-shadow" - } - ], - [ - ")-token", - ")", - 48035, - 48035, - null - ], - [ - "}-token", - "}", - 48036, - 48036, - null - ], - [ - "delim-token", - ".", - 48037, - 48037, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 48038, - 48046, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 48047, - 48047, - null - ], - [ - "ident-token", - "checked", - 48048, - 48054, - { - "value": "checked" - } - ], - [ - "delim-token", - "+", - 48055, - 48055, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 48056, - 48056, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48057, - 48059, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 48060, - 48060, - null - ], - [ - "delim-token", - ".", - 48061, - 48061, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48062, - 48064, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 48065, - 48065, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 48066, - 48071, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 48072, - 48072, - null - ], - [ - "delim-token", - ".", - 48073, - 48073, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48074, - 48076, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 48077, - 48077, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 48078, - 48081, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 48082, - 48082, - null - ], - [ - "delim-token", - ".", - 48083, - 48083, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48084, - 48086, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48087, - 48087, - null - ], - [ - "ident-token", - "first-child", - 48088, - 48098, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 48099, - 48099, - null - ], - [ - "ident-token", - "active", - 48100, - 48105, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 48106, - 48106, - null - ], - [ - "colon-token", - ":", - 48107, - 48107, - null - ], - [ - "function-token", - "not(", - 48108, - 48111, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 48112, - 48112, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 48113, - 48121, - { - "value": "btn-check" - } - ], - [ - ")-token", - ")", - 48122, - 48122, - null - ], - [ - "delim-token", - "+", - 48123, - 48123, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 48124, - 48124, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48125, - 48127, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48128, - 48128, - null - ], - [ - "ident-token", - "active", - 48129, - 48134, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 48135, - 48135, - null - ], - [ - "ident-token", - "color", - 48136, - 48140, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 48141, - 48141, - null - ], - [ - "function-token", - "var(", - 48142, - 48145, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-active-color", - 48146, - 48166, - { - "value": "--bs-btn-active-color" - } - ], - [ - ")-token", - ")", - 48167, - 48167, - null - ], - [ - "semicolon-token", - ";", - 48168, - 48168, - null - ], - [ - "ident-token", - "background-color", - 48169, - 48184, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 48185, - 48185, - null - ], - [ - "function-token", - "var(", - 48186, - 48189, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-active-bg", - 48190, - 48207, - { - "value": "--bs-btn-active-bg" - } - ], - [ - ")-token", - ")", - 48208, - 48208, - null - ], - [ - "semicolon-token", - ";", - 48209, - 48209, - null - ], - [ - "ident-token", - "border-color", - 48210, - 48221, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 48222, - 48222, - null - ], - [ - "function-token", - "var(", - 48223, - 48226, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 48227, - 48254, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - ")-token", - ")", - 48255, - 48255, - null - ], - [ - "}-token", - "}", - 48256, - 48256, - null - ], - [ - "delim-token", - ".", - 48257, - 48257, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 48258, - 48266, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 48267, - 48267, - null - ], - [ - "ident-token", - "checked", - 48268, - 48274, - { - "value": "checked" - } - ], - [ - "delim-token", - "+", - 48275, - 48275, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 48276, - 48276, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48277, - 48279, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48280, - 48280, - null - ], - [ - "ident-token", - "focus-visible", - 48281, - 48293, - { - "value": "focus-visible" - } - ], - [ - "comma-token", - ",", - 48294, - 48294, - null - ], - [ - "delim-token", - ".", - 48295, - 48295, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48296, - 48298, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 48299, - 48299, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 48300, - 48305, - { - "value": "active" - } - ], - [ - "colon-token", - ":", - 48306, - 48306, - null - ], - [ - "ident-token", - "focus-visible", - 48307, - 48319, - { - "value": "focus-visible" - } - ], - [ - "comma-token", - ",", - 48320, - 48320, - null - ], - [ - "delim-token", - ".", - 48321, - 48321, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48322, - 48324, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 48325, - 48325, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 48326, - 48329, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 48330, - 48330, - null - ], - [ - "ident-token", - "focus-visible", - 48331, - 48343, - { - "value": "focus-visible" - } - ], - [ - "comma-token", - ",", - 48344, - 48344, - null - ], - [ - "delim-token", - ".", - 48345, - 48345, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48346, - 48348, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48349, - 48349, - null - ], - [ - "ident-token", - "first-child", - 48350, - 48360, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 48361, - 48361, - null - ], - [ - "ident-token", - "active", - 48362, - 48367, - { - "value": "active" - } - ], - [ - "colon-token", - ":", - 48368, - 48368, - null - ], - [ - "ident-token", - "focus-visible", - 48369, - 48381, - { - "value": "focus-visible" - } - ], - [ - "comma-token", - ",", - 48382, - 48382, - null - ], - [ - "colon-token", - ":", - 48383, - 48383, - null - ], - [ - "function-token", - "not(", - 48384, - 48387, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 48388, - 48388, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 48389, - 48397, - { - "value": "btn-check" - } - ], - [ - ")-token", - ")", - 48398, - 48398, - null - ], - [ - "delim-token", - "+", - 48399, - 48399, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 48400, - 48400, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48401, - 48403, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48404, - 48404, - null - ], - [ - "ident-token", - "active", - 48405, - 48410, - { - "value": "active" - } - ], - [ - "colon-token", - ":", - 48411, - 48411, - null - ], - [ - "ident-token", - "focus-visible", - 48412, - 48424, - { - "value": "focus-visible" - } - ], - [ - "{-token", - "{", - 48425, - 48425, - null - ], - [ - "ident-token", - "box-shadow", - 48426, - 48435, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 48436, - 48436, - null - ], - [ - "function-token", - "var(", - 48437, - 48440, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-focus-box-shadow", - 48441, - 48465, - { - "value": "--bs-btn-focus-box-shadow" - } - ], - [ - ")-token", - ")", - 48466, - 48466, - null - ], - [ - "}-token", - "}", - 48467, - 48467, - null - ], - [ - "delim-token", - ".", - 48468, - 48468, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48469, - 48471, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 48472, - 48472, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 48473, - 48480, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 48481, - 48481, - null - ], - [ - "delim-token", - ".", - 48482, - 48482, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48483, - 48485, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 48486, - 48486, - null - ], - [ - "ident-token", - "disabled", - 48487, - 48494, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 48495, - 48495, - null - ], - [ - "ident-token", - "fieldset", - 48496, - 48503, - { - "value": "fieldset" - } - ], - [ - "colon-token", - ":", - 48504, - 48504, - null - ], - [ - "ident-token", - "disabled", - 48505, - 48512, - { - "value": "disabled" - } - ], - [ - "whitespace-token", - " ", - 48513, - 48513, - null - ], - [ - "delim-token", - ".", - 48514, - 48514, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 48515, - 48517, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 48518, - 48518, - null - ], - [ - "ident-token", - "color", - 48519, - 48523, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 48524, - 48524, - null - ], - [ - "function-token", - "var(", - 48525, - 48528, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 48529, - 48551, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - ")-token", - ")", - 48552, - 48552, - null - ], - [ - "semicolon-token", - ";", - 48553, - 48553, - null - ], - [ - "ident-token", - "pointer-events", - 48554, - 48567, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 48568, - 48568, - null - ], - [ - "ident-token", - "none", - 48569, - 48572, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 48573, - 48573, - null - ], - [ - "ident-token", - "background-color", - 48574, - 48589, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 48590, - 48590, - null - ], - [ - "function-token", - "var(", - 48591, - 48594, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 48595, - 48614, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - ")-token", - ")", - 48615, - 48615, - null - ], - [ - "semicolon-token", - ";", - 48616, - 48616, - null - ], - [ - "ident-token", - "border-color", - 48617, - 48628, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 48629, - 48629, - null - ], - [ - "function-token", - "var(", - 48630, - 48633, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 48634, - 48663, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - ")-token", - ")", - 48664, - 48664, - null - ], - [ - "semicolon-token", - ";", - 48665, - 48665, - null - ], - [ - "ident-token", - "opacity", - 48666, - 48672, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 48673, - 48673, - null - ], - [ - "function-token", - "var(", - 48674, - 48677, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-disabled-opacity", - 48678, - 48702, - { - "value": "--bs-btn-disabled-opacity" - } - ], - [ - ")-token", - ")", - 48703, - 48703, - null - ], - [ - "}-token", - "}", - 48704, - 48704, - null - ], - [ - "delim-token", - ".", - 48705, - 48705, - { - "value": "." - } - ], - [ - "ident-token", - "btn-primary", - 48706, - 48716, - { - "value": "btn-primary" - } - ], - [ - "{-token", - "{", - 48717, - 48717, - null - ], - [ - "ident-token", - "--bs-btn-color", - 48718, - 48731, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 48732, - 48732, - null - ], - [ - "hash-token", - "#fff", - 48733, - 48736, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 48737, - 48737, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 48738, - 48748, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 48749, - 48749, - null - ], - [ - "hash-token", - "#0d6efd", - 48750, - 48756, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 48757, - 48757, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 48758, - 48778, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 48779, - 48779, - null - ], - [ - "hash-token", - "#0d6efd", - 48780, - 48786, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 48787, - 48787, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 48788, - 48807, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 48808, - 48808, - null - ], - [ - "hash-token", - "#fff", - 48809, - 48812, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 48813, - 48813, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 48814, - 48830, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 48831, - 48831, - null - ], - [ - "hash-token", - "#0b5ed7", - 48832, - 48838, - { - "value": "0b5ed7", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 48839, - 48839, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 48840, - 48866, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 48867, - 48867, - null - ], - [ - "hash-token", - "#0a58ca", - 48868, - 48874, - { - "value": "0a58ca", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 48875, - 48875, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 48876, - 48900, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 48901, - 48901, - null - ], - [ - "number-token", - "49", - 48902, - 48903, - { - "value": 49, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 48904, - 48904, - null - ], - [ - "number-token", - "132", - 48905, - 48907, - { - "value": 132, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 48908, - 48908, - null - ], - [ - "number-token", - "253", - 48909, - 48911, - { - "value": 253, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 48912, - 48912, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 48913, - 48933, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 48934, - 48934, - null - ], - [ - "hash-token", - "#fff", - 48935, - 48938, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 48939, - 48939, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 48940, - 48957, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 48958, - 48958, - null - ], - [ - "hash-token", - "#0a58ca", - 48959, - 48965, - { - "value": "0a58ca", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 48966, - 48966, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 48967, - 48994, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 48995, - 48995, - null - ], - [ - "hash-token", - "#0a53be", - 48996, - 49002, - { - "value": "0a53be", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49003, - 49003, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 49004, - 49025, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 49026, - 49026, - null - ], - [ - "ident-token", - "inset", - 49027, - 49031, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 49032, - 49032, - null - ], - [ - "number-token", - "0", - 49033, - 49033, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 49034, - 49034, - null - ], - [ - "dimension-token", - "3px", - 49035, - 49037, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49038, - 49038, - null - ], - [ - "dimension-token", - "5px", - 49039, - 49041, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49042, - 49042, - null - ], - [ - "function-token", - "rgba(", - 49043, - 49047, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 49048, - 49048, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49049, - 49049, - null - ], - [ - "whitespace-token", - " ", - 49050, - 49050, - null - ], - [ - "number-token", - "0", - 49051, - 49051, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49052, - 49052, - null - ], - [ - "whitespace-token", - " ", - 49053, - 49053, - null - ], - [ - "number-token", - "0", - 49054, - 49054, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49055, - 49055, - null - ], - [ - "whitespace-token", - " ", - 49056, - 49056, - null - ], - [ - "number-token", - "0.125", - 49057, - 49061, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 49062, - 49062, - null - ], - [ - "semicolon-token", - ";", - 49063, - 49063, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 49064, - 49086, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 49087, - 49087, - null - ], - [ - "hash-token", - "#fff", - 49088, - 49091, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49092, - 49092, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 49093, - 49112, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 49113, - 49113, - null - ], - [ - "hash-token", - "#0d6efd", - 49114, - 49120, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49121, - 49121, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 49122, - 49151, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 49152, - 49152, - null - ], - [ - "hash-token", - "#0d6efd", - 49153, - 49159, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 49160, - 49160, - null - ], - [ - "delim-token", - ".", - 49161, - 49161, - { - "value": "." - } - ], - [ - "ident-token", - "btn-secondary", - 49162, - 49174, - { - "value": "btn-secondary" - } - ], - [ - "{-token", - "{", - 49175, - 49175, - null - ], - [ - "ident-token", - "--bs-btn-color", - 49176, - 49189, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 49190, - 49190, - null - ], - [ - "hash-token", - "#fff", - 49191, - 49194, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49195, - 49195, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 49196, - 49206, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 49207, - 49207, - null - ], - [ - "hash-token", - "#6c757d", - 49208, - 49214, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49215, - 49215, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 49216, - 49236, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 49237, - 49237, - null - ], - [ - "hash-token", - "#6c757d", - 49238, - 49244, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49245, - 49245, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 49246, - 49265, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 49266, - 49266, - null - ], - [ - "hash-token", - "#fff", - 49267, - 49270, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49271, - 49271, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 49272, - 49288, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 49289, - 49289, - null - ], - [ - "hash-token", - "#5c636a", - 49290, - 49296, - { - "value": "5c636a", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49297, - 49297, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 49298, - 49324, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 49325, - 49325, - null - ], - [ - "hash-token", - "#565e64", - 49326, - 49332, - { - "value": "565e64", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49333, - 49333, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 49334, - 49358, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 49359, - 49359, - null - ], - [ - "number-token", - "130", - 49360, - 49362, - { - "value": 130, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49363, - 49363, - null - ], - [ - "number-token", - "138", - 49364, - 49366, - { - "value": 138, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49367, - 49367, - null - ], - [ - "number-token", - "145", - 49368, - 49370, - { - "value": 145, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 49371, - 49371, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 49372, - 49392, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 49393, - 49393, - null - ], - [ - "hash-token", - "#fff", - 49394, - 49397, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49398, - 49398, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 49399, - 49416, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 49417, - 49417, - null - ], - [ - "hash-token", - "#565e64", - 49418, - 49424, - { - "value": "565e64", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49425, - 49425, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 49426, - 49453, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 49454, - 49454, - null - ], - [ - "hash-token", - "#51585e", - 49455, - 49461, - { - "value": "51585e", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49462, - 49462, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 49463, - 49484, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 49485, - 49485, - null - ], - [ - "ident-token", - "inset", - 49486, - 49490, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 49491, - 49491, - null - ], - [ - "number-token", - "0", - 49492, - 49492, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 49493, - 49493, - null - ], - [ - "dimension-token", - "3px", - 49494, - 49496, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49497, - 49497, - null - ], - [ - "dimension-token", - "5px", - 49498, - 49500, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49501, - 49501, - null - ], - [ - "function-token", - "rgba(", - 49502, - 49506, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 49507, - 49507, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49508, - 49508, - null - ], - [ - "whitespace-token", - " ", - 49509, - 49509, - null - ], - [ - "number-token", - "0", - 49510, - 49510, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49511, - 49511, - null - ], - [ - "whitespace-token", - " ", - 49512, - 49512, - null - ], - [ - "number-token", - "0", - 49513, - 49513, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49514, - 49514, - null - ], - [ - "whitespace-token", - " ", - 49515, - 49515, - null - ], - [ - "number-token", - "0.125", - 49516, - 49520, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 49521, - 49521, - null - ], - [ - "semicolon-token", - ";", - 49522, - 49522, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 49523, - 49545, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 49546, - 49546, - null - ], - [ - "hash-token", - "#fff", - 49547, - 49550, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49551, - 49551, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 49552, - 49571, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 49572, - 49572, - null - ], - [ - "hash-token", - "#6c757d", - 49573, - 49579, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49580, - 49580, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 49581, - 49610, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 49611, - 49611, - null - ], - [ - "hash-token", - "#6c757d", - 49612, - 49618, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 49619, - 49619, - null - ], - [ - "delim-token", - ".", - 49620, - 49620, - { - "value": "." - } - ], - [ - "ident-token", - "btn-success", - 49621, - 49631, - { - "value": "btn-success" - } - ], - [ - "{-token", - "{", - 49632, - 49632, - null - ], - [ - "ident-token", - "--bs-btn-color", - 49633, - 49646, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 49647, - 49647, - null - ], - [ - "hash-token", - "#fff", - 49648, - 49651, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49652, - 49652, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 49653, - 49663, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 49664, - 49664, - null - ], - [ - "hash-token", - "#198754", - 49665, - 49671, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49672, - 49672, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 49673, - 49693, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 49694, - 49694, - null - ], - [ - "hash-token", - "#198754", - 49695, - 49701, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49702, - 49702, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 49703, - 49722, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 49723, - 49723, - null - ], - [ - "hash-token", - "#fff", - 49724, - 49727, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49728, - 49728, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 49729, - 49745, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 49746, - 49746, - null - ], - [ - "hash-token", - "#157347", - 49747, - 49753, - { - "value": "157347", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49754, - 49754, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 49755, - 49781, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 49782, - 49782, - null - ], - [ - "hash-token", - "#146c43", - 49783, - 49789, - { - "value": "146c43", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49790, - 49790, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 49791, - 49815, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 49816, - 49816, - null - ], - [ - "number-token", - "60", - 49817, - 49818, - { - "value": 60, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49819, - 49819, - null - ], - [ - "number-token", - "153", - 49820, - 49822, - { - "value": 153, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49823, - 49823, - null - ], - [ - "number-token", - "110", - 49824, - 49826, - { - "value": 110, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 49827, - 49827, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 49828, - 49848, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 49849, - 49849, - null - ], - [ - "hash-token", - "#fff", - 49850, - 49853, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 49854, - 49854, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 49855, - 49872, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 49873, - 49873, - null - ], - [ - "hash-token", - "#146c43", - 49874, - 49880, - { - "value": "146c43", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49881, - 49881, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 49882, - 49909, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 49910, - 49910, - null - ], - [ - "hash-token", - "#13653f", - 49911, - 49917, - { - "value": "13653f", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 49918, - 49918, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 49919, - 49940, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 49941, - 49941, - null - ], - [ - "ident-token", - "inset", - 49942, - 49946, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 49947, - 49947, - null - ], - [ - "number-token", - "0", - 49948, - 49948, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 49949, - 49949, - null - ], - [ - "dimension-token", - "3px", - 49950, - 49952, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49953, - 49953, - null - ], - [ - "dimension-token", - "5px", - 49954, - 49956, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 49957, - 49957, - null - ], - [ - "function-token", - "rgba(", - 49958, - 49962, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 49963, - 49963, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49964, - 49964, - null - ], - [ - "whitespace-token", - " ", - 49965, - 49965, - null - ], - [ - "number-token", - "0", - 49966, - 49966, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49967, - 49967, - null - ], - [ - "whitespace-token", - " ", - 49968, - 49968, - null - ], - [ - "number-token", - "0", - 49969, - 49969, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 49970, - 49970, - null - ], - [ - "whitespace-token", - " ", - 49971, - 49971, - null - ], - [ - "number-token", - "0.125", - 49972, - 49976, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 49977, - 49977, - null - ], - [ - "semicolon-token", - ";", - 49978, - 49978, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 49979, - 50001, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 50002, - 50002, - null - ], - [ - "hash-token", - "#fff", - 50003, - 50006, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50007, - 50007, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 50008, - 50027, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 50028, - 50028, - null - ], - [ - "hash-token", - "#198754", - 50029, - 50035, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50036, - 50036, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 50037, - 50066, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 50067, - 50067, - null - ], - [ - "hash-token", - "#198754", - 50068, - 50074, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 50075, - 50075, - null - ], - [ - "delim-token", - ".", - 50076, - 50076, - { - "value": "." - } - ], - [ - "ident-token", - "btn-info", - 50077, - 50084, - { - "value": "btn-info" - } - ], - [ - "{-token", - "{", - 50085, - 50085, - null - ], - [ - "ident-token", - "--bs-btn-color", - 50086, - 50099, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 50100, - 50100, - null - ], - [ - "hash-token", - "#000", - 50101, - 50104, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50105, - 50105, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 50106, - 50116, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 50117, - 50117, - null - ], - [ - "hash-token", - "#0dcaf0", - 50118, - 50124, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50125, - 50125, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 50126, - 50146, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 50147, - 50147, - null - ], - [ - "hash-token", - "#0dcaf0", - 50148, - 50154, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50155, - 50155, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 50156, - 50175, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 50176, - 50176, - null - ], - [ - "hash-token", - "#000", - 50177, - 50180, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50181, - 50181, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 50182, - 50198, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 50199, - 50199, - null - ], - [ - "hash-token", - "#31d2f2", - 50200, - 50206, - { - "value": "31d2f2", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50207, - 50207, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 50208, - 50234, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 50235, - 50235, - null - ], - [ - "hash-token", - "#25cff2", - 50236, - 50242, - { - "value": "25cff2", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50243, - 50243, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 50244, - 50268, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 50269, - 50269, - null - ], - [ - "number-token", - "11", - 50270, - 50271, - { - "value": 11, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50272, - 50272, - null - ], - [ - "number-token", - "172", - 50273, - 50275, - { - "value": 172, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50276, - 50276, - null - ], - [ - "number-token", - "204", - 50277, - 50279, - { - "value": 204, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 50280, - 50280, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 50281, - 50301, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 50302, - 50302, - null - ], - [ - "hash-token", - "#000", - 50303, - 50306, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50307, - 50307, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 50308, - 50325, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 50326, - 50326, - null - ], - [ - "hash-token", - "#3dd5f3", - 50327, - 50333, - { - "value": "3dd5f3", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50334, - 50334, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 50335, - 50362, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 50363, - 50363, - null - ], - [ - "hash-token", - "#25cff2", - 50364, - 50370, - { - "value": "25cff2", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50371, - 50371, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 50372, - 50393, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 50394, - 50394, - null - ], - [ - "ident-token", - "inset", - 50395, - 50399, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 50400, - 50400, - null - ], - [ - "number-token", - "0", - 50401, - 50401, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 50402, - 50402, - null - ], - [ - "dimension-token", - "3px", - 50403, - 50405, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 50406, - 50406, - null - ], - [ - "dimension-token", - "5px", - 50407, - 50409, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 50410, - 50410, - null - ], - [ - "function-token", - "rgba(", - 50411, - 50415, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 50416, - 50416, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50417, - 50417, - null - ], - [ - "whitespace-token", - " ", - 50418, - 50418, - null - ], - [ - "number-token", - "0", - 50419, - 50419, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50420, - 50420, - null - ], - [ - "whitespace-token", - " ", - 50421, - 50421, - null - ], - [ - "number-token", - "0", - 50422, - 50422, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50423, - 50423, - null - ], - [ - "whitespace-token", - " ", - 50424, - 50424, - null - ], - [ - "number-token", - "0.125", - 50425, - 50429, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 50430, - 50430, - null - ], - [ - "semicolon-token", - ";", - 50431, - 50431, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 50432, - 50454, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 50455, - 50455, - null - ], - [ - "hash-token", - "#000", - 50456, - 50459, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50460, - 50460, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 50461, - 50480, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 50481, - 50481, - null - ], - [ - "hash-token", - "#0dcaf0", - 50482, - 50488, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50489, - 50489, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 50490, - 50519, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 50520, - 50520, - null - ], - [ - "hash-token", - "#0dcaf0", - 50521, - 50527, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 50528, - 50528, - null - ], - [ - "delim-token", - ".", - 50529, - 50529, - { - "value": "." - } - ], - [ - "ident-token", - "btn-warning", - 50530, - 50540, - { - "value": "btn-warning" - } - ], - [ - "{-token", - "{", - 50541, - 50541, - null - ], - [ - "ident-token", - "--bs-btn-color", - 50542, - 50555, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 50556, - 50556, - null - ], - [ - "hash-token", - "#000", - 50557, - 50560, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50561, - 50561, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 50562, - 50572, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 50573, - 50573, - null - ], - [ - "hash-token", - "#ffc107", - 50574, - 50580, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50581, - 50581, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 50582, - 50602, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 50603, - 50603, - null - ], - [ - "hash-token", - "#ffc107", - 50604, - 50610, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50611, - 50611, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 50612, - 50631, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 50632, - 50632, - null - ], - [ - "hash-token", - "#000", - 50633, - 50636, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50637, - 50637, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 50638, - 50654, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 50655, - 50655, - null - ], - [ - "hash-token", - "#ffca2c", - 50656, - 50662, - { - "value": "ffca2c", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50663, - 50663, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 50664, - 50690, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 50691, - 50691, - null - ], - [ - "hash-token", - "#ffc720", - 50692, - 50698, - { - "value": "ffc720", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50699, - 50699, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 50700, - 50724, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 50725, - 50725, - null - ], - [ - "number-token", - "217", - 50726, - 50728, - { - "value": 217, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50729, - 50729, - null - ], - [ - "number-token", - "164", - 50730, - 50732, - { - "value": 164, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50733, - 50733, - null - ], - [ - "number-token", - "6", - 50734, - 50734, - { - "value": 6, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 50735, - 50735, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 50736, - 50756, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 50757, - 50757, - null - ], - [ - "hash-token", - "#000", - 50758, - 50761, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50762, - 50762, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 50763, - 50780, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 50781, - 50781, - null - ], - [ - "hash-token", - "#ffcd39", - 50782, - 50788, - { - "value": "ffcd39", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50789, - 50789, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 50790, - 50817, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 50818, - 50818, - null - ], - [ - "hash-token", - "#ffc720", - 50819, - 50825, - { - "value": "ffc720", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50826, - 50826, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 50827, - 50848, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 50849, - 50849, - null - ], - [ - "ident-token", - "inset", - 50850, - 50854, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 50855, - 50855, - null - ], - [ - "number-token", - "0", - 50856, - 50856, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 50857, - 50857, - null - ], - [ - "dimension-token", - "3px", - 50858, - 50860, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 50861, - 50861, - null - ], - [ - "dimension-token", - "5px", - 50862, - 50864, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 50865, - 50865, - null - ], - [ - "function-token", - "rgba(", - 50866, - 50870, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 50871, - 50871, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50872, - 50872, - null - ], - [ - "whitespace-token", - " ", - 50873, - 50873, - null - ], - [ - "number-token", - "0", - 50874, - 50874, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50875, - 50875, - null - ], - [ - "whitespace-token", - " ", - 50876, - 50876, - null - ], - [ - "number-token", - "0", - 50877, - 50877, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 50878, - 50878, - null - ], - [ - "whitespace-token", - " ", - 50879, - 50879, - null - ], - [ - "number-token", - "0.125", - 50880, - 50884, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 50885, - 50885, - null - ], - [ - "semicolon-token", - ";", - 50886, - 50886, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 50887, - 50909, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 50910, - 50910, - null - ], - [ - "hash-token", - "#000", - 50911, - 50914, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 50915, - 50915, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 50916, - 50935, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 50936, - 50936, - null - ], - [ - "hash-token", - "#ffc107", - 50937, - 50943, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 50944, - 50944, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 50945, - 50974, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 50975, - 50975, - null - ], - [ - "hash-token", - "#ffc107", - 50976, - 50982, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "}-token", - "}", - 50983, - 50983, - null - ], - [ - "delim-token", - ".", - 50984, - 50984, - { - "value": "." - } - ], - [ - "ident-token", - "btn-danger", - 50985, - 50994, - { - "value": "btn-danger" - } - ], - [ - "{-token", - "{", - 50995, - 50995, - null - ], - [ - "ident-token", - "--bs-btn-color", - 50996, - 51009, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 51010, - 51010, - null - ], - [ - "hash-token", - "#fff", - 51011, - 51014, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51015, - 51015, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 51016, - 51026, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 51027, - 51027, - null - ], - [ - "hash-token", - "#dc3545", - 51028, - 51034, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51035, - 51035, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 51036, - 51056, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 51057, - 51057, - null - ], - [ - "hash-token", - "#dc3545", - 51058, - 51064, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51065, - 51065, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 51066, - 51085, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 51086, - 51086, - null - ], - [ - "hash-token", - "#fff", - 51087, - 51090, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51091, - 51091, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 51092, - 51108, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 51109, - 51109, - null - ], - [ - "hash-token", - "#bb2d3b", - 51110, - 51116, - { - "value": "bb2d3b", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51117, - 51117, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 51118, - 51144, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 51145, - 51145, - null - ], - [ - "hash-token", - "#b02a37", - 51146, - 51152, - { - "value": "b02a37", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51153, - 51153, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 51154, - 51178, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 51179, - 51179, - null - ], - [ - "number-token", - "225", - 51180, - 51182, - { - "value": 225, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51183, - 51183, - null - ], - [ - "number-token", - "83", - 51184, - 51185, - { - "value": 83, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51186, - 51186, - null - ], - [ - "number-token", - "97", - 51187, - 51188, - { - "value": 97, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 51189, - 51189, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 51190, - 51210, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 51211, - 51211, - null - ], - [ - "hash-token", - "#fff", - 51212, - 51215, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51216, - 51216, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 51217, - 51234, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 51235, - 51235, - null - ], - [ - "hash-token", - "#b02a37", - 51236, - 51242, - { - "value": "b02a37", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51243, - 51243, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 51244, - 51271, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 51272, - 51272, - null - ], - [ - "hash-token", - "#a52834", - 51273, - 51279, - { - "value": "a52834", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51280, - 51280, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 51281, - 51302, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 51303, - 51303, - null - ], - [ - "ident-token", - "inset", - 51304, - 51308, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 51309, - 51309, - null - ], - [ - "number-token", - "0", - 51310, - 51310, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 51311, - 51311, - null - ], - [ - "dimension-token", - "3px", - 51312, - 51314, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 51315, - 51315, - null - ], - [ - "dimension-token", - "5px", - 51316, - 51318, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 51319, - 51319, - null - ], - [ - "function-token", - "rgba(", - 51320, - 51324, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 51325, - 51325, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51326, - 51326, - null - ], - [ - "whitespace-token", - " ", - 51327, - 51327, - null - ], - [ - "number-token", - "0", - 51328, - 51328, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51329, - 51329, - null - ], - [ - "whitespace-token", - " ", - 51330, - 51330, - null - ], - [ - "number-token", - "0", - 51331, - 51331, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51332, - 51332, - null - ], - [ - "whitespace-token", - " ", - 51333, - 51333, - null - ], - [ - "number-token", - "0.125", - 51334, - 51338, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 51339, - 51339, - null - ], - [ - "semicolon-token", - ";", - 51340, - 51340, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 51341, - 51363, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 51364, - 51364, - null - ], - [ - "hash-token", - "#fff", - 51365, - 51368, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51369, - 51369, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 51370, - 51389, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 51390, - 51390, - null - ], - [ - "hash-token", - "#dc3545", - 51391, - 51397, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51398, - 51398, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 51399, - 51428, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 51429, - 51429, - null - ], - [ - "hash-token", - "#dc3545", - 51430, - 51436, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "}-token", - "}", - 51437, - 51437, - null - ], - [ - "delim-token", - ".", - 51438, - 51438, - { - "value": "." - } - ], - [ - "ident-token", - "btn-light", - 51439, - 51447, - { - "value": "btn-light" - } - ], - [ - "{-token", - "{", - 51448, - 51448, - null - ], - [ - "ident-token", - "--bs-btn-color", - 51449, - 51462, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 51463, - 51463, - null - ], - [ - "hash-token", - "#000", - 51464, - 51467, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51468, - 51468, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 51469, - 51479, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 51480, - 51480, - null - ], - [ - "hash-token", - "#f8f9fa", - 51481, - 51487, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51488, - 51488, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 51489, - 51509, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 51510, - 51510, - null - ], - [ - "hash-token", - "#f8f9fa", - 51511, - 51517, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51518, - 51518, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 51519, - 51538, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 51539, - 51539, - null - ], - [ - "hash-token", - "#000", - 51540, - 51543, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51544, - 51544, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 51545, - 51561, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 51562, - 51562, - null - ], - [ - "hash-token", - "#d3d4d5", - 51563, - 51569, - { - "value": "d3d4d5", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51570, - 51570, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 51571, - 51597, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 51598, - 51598, - null - ], - [ - "hash-token", - "#c6c7c8", - 51599, - 51605, - { - "value": "c6c7c8", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51606, - 51606, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 51607, - 51631, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 51632, - 51632, - null - ], - [ - "number-token", - "211", - 51633, - 51635, - { - "value": 211, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51636, - 51636, - null - ], - [ - "number-token", - "212", - 51637, - 51639, - { - "value": 212, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51640, - 51640, - null - ], - [ - "number-token", - "213", - 51641, - 51643, - { - "value": 213, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 51644, - 51644, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 51645, - 51665, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 51666, - 51666, - null - ], - [ - "hash-token", - "#000", - 51667, - 51670, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51671, - 51671, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 51672, - 51689, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 51690, - 51690, - null - ], - [ - "hash-token", - "#c6c7c8", - 51691, - 51697, - { - "value": "c6c7c8", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51698, - 51698, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 51699, - 51726, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 51727, - 51727, - null - ], - [ - "hash-token", - "#babbbc", - 51728, - 51734, - { - "value": "babbbc", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51735, - 51735, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 51736, - 51757, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 51758, - 51758, - null - ], - [ - "ident-token", - "inset", - 51759, - 51763, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 51764, - 51764, - null - ], - [ - "number-token", - "0", - 51765, - 51765, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 51766, - 51766, - null - ], - [ - "dimension-token", - "3px", - 51767, - 51769, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 51770, - 51770, - null - ], - [ - "dimension-token", - "5px", - 51771, - 51773, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 51774, - 51774, - null - ], - [ - "function-token", - "rgba(", - 51775, - 51779, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 51780, - 51780, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51781, - 51781, - null - ], - [ - "whitespace-token", - " ", - 51782, - 51782, - null - ], - [ - "number-token", - "0", - 51783, - 51783, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51784, - 51784, - null - ], - [ - "whitespace-token", - " ", - 51785, - 51785, - null - ], - [ - "number-token", - "0", - 51786, - 51786, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 51787, - 51787, - null - ], - [ - "whitespace-token", - " ", - 51788, - 51788, - null - ], - [ - "number-token", - "0.125", - 51789, - 51793, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 51794, - 51794, - null - ], - [ - "semicolon-token", - ";", - 51795, - 51795, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 51796, - 51818, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 51819, - 51819, - null - ], - [ - "hash-token", - "#000", - 51820, - 51823, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51824, - 51824, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 51825, - 51844, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 51845, - 51845, - null - ], - [ - "hash-token", - "#f8f9fa", - 51846, - 51852, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51853, - 51853, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 51854, - 51883, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 51884, - 51884, - null - ], - [ - "hash-token", - "#f8f9fa", - 51885, - 51891, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "}-token", - "}", - 51892, - 51892, - null - ], - [ - "delim-token", - ".", - 51893, - 51893, - { - "value": "." - } - ], - [ - "ident-token", - "btn-dark", - 51894, - 51901, - { - "value": "btn-dark" - } - ], - [ - "{-token", - "{", - 51902, - 51902, - null - ], - [ - "ident-token", - "--bs-btn-color", - 51903, - 51916, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 51917, - 51917, - null - ], - [ - "hash-token", - "#fff", - 51918, - 51921, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51922, - 51922, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 51923, - 51933, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 51934, - 51934, - null - ], - [ - "hash-token", - "#212529", - 51935, - 51941, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51942, - 51942, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 51943, - 51963, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 51964, - 51964, - null - ], - [ - "hash-token", - "#212529", - 51965, - 51971, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 51972, - 51972, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 51973, - 51992, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 51993, - 51993, - null - ], - [ - "hash-token", - "#fff", - 51994, - 51997, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 51998, - 51998, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 51999, - 52015, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 52016, - 52016, - null - ], - [ - "hash-token", - "#424649", - 52017, - 52023, - { - "value": "424649", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52024, - 52024, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 52025, - 52051, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 52052, - 52052, - null - ], - [ - "hash-token", - "#373b3e", - 52053, - 52059, - { - "value": "373b3e", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52060, - 52060, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 52061, - 52085, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 52086, - 52086, - null - ], - [ - "number-token", - "66", - 52087, - 52088, - { - "value": 66, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52089, - 52089, - null - ], - [ - "number-token", - "70", - 52090, - 52091, - { - "value": 70, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52092, - 52092, - null - ], - [ - "number-token", - "73", - 52093, - 52094, - { - "value": 73, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 52095, - 52095, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 52096, - 52116, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 52117, - 52117, - null - ], - [ - "hash-token", - "#fff", - 52118, - 52121, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 52122, - 52122, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 52123, - 52140, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 52141, - 52141, - null - ], - [ - "hash-token", - "#4d5154", - 52142, - 52148, - { - "value": "4d5154", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52149, - 52149, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 52150, - 52177, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 52178, - 52178, - null - ], - [ - "hash-token", - "#373b3e", - 52179, - 52185, - { - "value": "373b3e", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52186, - 52186, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 52187, - 52208, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 52209, - 52209, - null - ], - [ - "ident-token", - "inset", - 52210, - 52214, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 52215, - 52215, - null - ], - [ - "number-token", - "0", - 52216, - 52216, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 52217, - 52217, - null - ], - [ - "dimension-token", - "3px", - 52218, - 52220, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 52221, - 52221, - null - ], - [ - "dimension-token", - "5px", - 52222, - 52224, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 52225, - 52225, - null - ], - [ - "function-token", - "rgba(", - 52226, - 52230, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 52231, - 52231, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52232, - 52232, - null - ], - [ - "whitespace-token", - " ", - 52233, - 52233, - null - ], - [ - "number-token", - "0", - 52234, - 52234, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52235, - 52235, - null - ], - [ - "whitespace-token", - " ", - 52236, - 52236, - null - ], - [ - "number-token", - "0", - 52237, - 52237, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52238, - 52238, - null - ], - [ - "whitespace-token", - " ", - 52239, - 52239, - null - ], - [ - "number-token", - "0.125", - 52240, - 52244, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 52245, - 52245, - null - ], - [ - "semicolon-token", - ";", - 52246, - 52246, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 52247, - 52269, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 52270, - 52270, - null - ], - [ - "hash-token", - "#fff", - 52271, - 52274, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 52275, - 52275, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 52276, - 52295, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 52296, - 52296, - null - ], - [ - "hash-token", - "#212529", - 52297, - 52303, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52304, - 52304, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 52305, - 52334, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 52335, - 52335, - null - ], - [ - "hash-token", - "#212529", - 52336, - 52342, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 52343, - 52343, - null - ], - [ - "delim-token", - ".", - 52344, - 52344, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-primary", - 52345, - 52363, - { - "value": "btn-outline-primary" - } - ], - [ - "{-token", - "{", - 52364, - 52364, - null - ], - [ - "ident-token", - "--bs-btn-color", - 52365, - 52378, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 52379, - 52379, - null - ], - [ - "hash-token", - "#0d6efd", - 52380, - 52386, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52387, - 52387, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 52388, - 52408, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 52409, - 52409, - null - ], - [ - "hash-token", - "#0d6efd", - 52410, - 52416, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52417, - 52417, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 52418, - 52437, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 52438, - 52438, - null - ], - [ - "hash-token", - "#fff", - 52439, - 52442, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 52443, - 52443, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 52444, - 52460, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 52461, - 52461, - null - ], - [ - "hash-token", - "#0d6efd", - 52462, - 52468, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52469, - 52469, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 52470, - 52496, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 52497, - 52497, - null - ], - [ - "hash-token", - "#0d6efd", - 52498, - 52504, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52505, - 52505, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 52506, - 52530, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 52531, - 52531, - null - ], - [ - "number-token", - "13", - 52532, - 52533, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52534, - 52534, - null - ], - [ - "number-token", - "110", - 52535, - 52537, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52538, - 52538, - null - ], - [ - "number-token", - "253", - 52539, - 52541, - { - "value": 253, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 52542, - 52542, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 52543, - 52563, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 52564, - 52564, - null - ], - [ - "hash-token", - "#fff", - 52565, - 52568, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 52569, - 52569, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 52570, - 52587, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 52588, - 52588, - null - ], - [ - "hash-token", - "#0d6efd", - 52589, - 52595, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52596, - 52596, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 52597, - 52624, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 52625, - 52625, - null - ], - [ - "hash-token", - "#0d6efd", - 52626, - 52632, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52633, - 52633, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 52634, - 52655, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 52656, - 52656, - null - ], - [ - "ident-token", - "inset", - 52657, - 52661, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 52662, - 52662, - null - ], - [ - "number-token", - "0", - 52663, - 52663, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 52664, - 52664, - null - ], - [ - "dimension-token", - "3px", - 52665, - 52667, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 52668, - 52668, - null - ], - [ - "dimension-token", - "5px", - 52669, - 52671, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 52672, - 52672, - null - ], - [ - "function-token", - "rgba(", - 52673, - 52677, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 52678, - 52678, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52679, - 52679, - null - ], - [ - "whitespace-token", - " ", - 52680, - 52680, - null - ], - [ - "number-token", - "0", - 52681, - 52681, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52682, - 52682, - null - ], - [ - "whitespace-token", - " ", - 52683, - 52683, - null - ], - [ - "number-token", - "0", - 52684, - 52684, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 52685, - 52685, - null - ], - [ - "whitespace-token", - " ", - 52686, - 52686, - null - ], - [ - "number-token", - "0.125", - 52687, - 52691, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 52692, - 52692, - null - ], - [ - "semicolon-token", - ";", - 52693, - 52693, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 52694, - 52716, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 52717, - 52717, - null - ], - [ - "hash-token", - "#0d6efd", - 52718, - 52724, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52725, - 52725, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 52726, - 52745, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 52746, - 52746, - null - ], - [ - "ident-token", - "transparent", - 52747, - 52757, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 52758, - 52758, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 52759, - 52788, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 52789, - 52789, - null - ], - [ - "hash-token", - "#0d6efd", - 52790, - 52796, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52797, - 52797, - null - ], - [ - "ident-token", - "--bs-gradient", - 52798, - 52810, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 52811, - 52811, - null - ], - [ - "ident-token", - "none", - 52812, - 52815, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 52816, - 52816, - null - ], - [ - "delim-token", - ".", - 52817, - 52817, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-secondary", - 52818, - 52838, - { - "value": "btn-outline-secondary" - } - ], - [ - "{-token", - "{", - 52839, - 52839, - null - ], - [ - "ident-token", - "--bs-btn-color", - 52840, - 52853, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 52854, - 52854, - null - ], - [ - "hash-token", - "#6c757d", - 52855, - 52861, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52862, - 52862, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 52863, - 52883, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 52884, - 52884, - null - ], - [ - "hash-token", - "#6c757d", - 52885, - 52891, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52892, - 52892, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 52893, - 52912, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 52913, - 52913, - null - ], - [ - "hash-token", - "#fff", - 52914, - 52917, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 52918, - 52918, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 52919, - 52935, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 52936, - 52936, - null - ], - [ - "hash-token", - "#6c757d", - 52937, - 52943, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52944, - 52944, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 52945, - 52971, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 52972, - 52972, - null - ], - [ - "hash-token", - "#6c757d", - 52973, - 52979, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 52980, - 52980, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 52981, - 53005, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 53006, - 53006, - null - ], - [ - "number-token", - "108", - 53007, - 53009, - { - "value": 108, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53010, - 53010, - null - ], - [ - "number-token", - "117", - 53011, - 53013, - { - "value": 117, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53014, - 53014, - null - ], - [ - "number-token", - "125", - 53015, - 53017, - { - "value": 125, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 53018, - 53018, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 53019, - 53039, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 53040, - 53040, - null - ], - [ - "hash-token", - "#fff", - 53041, - 53044, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 53045, - 53045, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 53046, - 53063, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 53064, - 53064, - null - ], - [ - "hash-token", - "#6c757d", - 53065, - 53071, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53072, - 53072, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 53073, - 53100, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 53101, - 53101, - null - ], - [ - "hash-token", - "#6c757d", - 53102, - 53108, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53109, - 53109, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 53110, - 53131, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 53132, - 53132, - null - ], - [ - "ident-token", - "inset", - 53133, - 53137, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 53138, - 53138, - null - ], - [ - "number-token", - "0", - 53139, - 53139, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 53140, - 53140, - null - ], - [ - "dimension-token", - "3px", - 53141, - 53143, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 53144, - 53144, - null - ], - [ - "dimension-token", - "5px", - 53145, - 53147, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 53148, - 53148, - null - ], - [ - "function-token", - "rgba(", - 53149, - 53153, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 53154, - 53154, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53155, - 53155, - null - ], - [ - "whitespace-token", - " ", - 53156, - 53156, - null - ], - [ - "number-token", - "0", - 53157, - 53157, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53158, - 53158, - null - ], - [ - "whitespace-token", - " ", - 53159, - 53159, - null - ], - [ - "number-token", - "0", - 53160, - 53160, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53161, - 53161, - null - ], - [ - "whitespace-token", - " ", - 53162, - 53162, - null - ], - [ - "number-token", - "0.125", - 53163, - 53167, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 53168, - 53168, - null - ], - [ - "semicolon-token", - ";", - 53169, - 53169, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 53170, - 53192, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 53193, - 53193, - null - ], - [ - "hash-token", - "#6c757d", - 53194, - 53200, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53201, - 53201, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 53202, - 53221, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 53222, - 53222, - null - ], - [ - "ident-token", - "transparent", - 53223, - 53233, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 53234, - 53234, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 53235, - 53264, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 53265, - 53265, - null - ], - [ - "hash-token", - "#6c757d", - 53266, - 53272, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53273, - 53273, - null - ], - [ - "ident-token", - "--bs-gradient", - 53274, - 53286, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 53287, - 53287, - null - ], - [ - "ident-token", - "none", - 53288, - 53291, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 53292, - 53292, - null - ], - [ - "delim-token", - ".", - 53293, - 53293, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-success", - 53294, - 53312, - { - "value": "btn-outline-success" - } - ], - [ - "{-token", - "{", - 53313, - 53313, - null - ], - [ - "ident-token", - "--bs-btn-color", - 53314, - 53327, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 53328, - 53328, - null - ], - [ - "hash-token", - "#198754", - 53329, - 53335, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53336, - 53336, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 53337, - 53357, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 53358, - 53358, - null - ], - [ - "hash-token", - "#198754", - 53359, - 53365, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53366, - 53366, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 53367, - 53386, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 53387, - 53387, - null - ], - [ - "hash-token", - "#fff", - 53388, - 53391, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 53392, - 53392, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 53393, - 53409, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 53410, - 53410, - null - ], - [ - "hash-token", - "#198754", - 53411, - 53417, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53418, - 53418, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 53419, - 53445, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 53446, - 53446, - null - ], - [ - "hash-token", - "#198754", - 53447, - 53453, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53454, - 53454, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 53455, - 53479, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 53480, - 53480, - null - ], - [ - "number-token", - "25", - 53481, - 53482, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53483, - 53483, - null - ], - [ - "number-token", - "135", - 53484, - 53486, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53487, - 53487, - null - ], - [ - "number-token", - "84", - 53488, - 53489, - { - "value": 84, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 53490, - 53490, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 53491, - 53511, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 53512, - 53512, - null - ], - [ - "hash-token", - "#fff", - 53513, - 53516, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 53517, - 53517, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 53518, - 53535, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 53536, - 53536, - null - ], - [ - "hash-token", - "#198754", - 53537, - 53543, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53544, - 53544, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 53545, - 53572, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 53573, - 53573, - null - ], - [ - "hash-token", - "#198754", - 53574, - 53580, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53581, - 53581, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 53582, - 53603, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 53604, - 53604, - null - ], - [ - "ident-token", - "inset", - 53605, - 53609, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 53610, - 53610, - null - ], - [ - "number-token", - "0", - 53611, - 53611, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 53612, - 53612, - null - ], - [ - "dimension-token", - "3px", - 53613, - 53615, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 53616, - 53616, - null - ], - [ - "dimension-token", - "5px", - 53617, - 53619, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 53620, - 53620, - null - ], - [ - "function-token", - "rgba(", - 53621, - 53625, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 53626, - 53626, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53627, - 53627, - null - ], - [ - "whitespace-token", - " ", - 53628, - 53628, - null - ], - [ - "number-token", - "0", - 53629, - 53629, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53630, - 53630, - null - ], - [ - "whitespace-token", - " ", - 53631, - 53631, - null - ], - [ - "number-token", - "0", - 53632, - 53632, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53633, - 53633, - null - ], - [ - "whitespace-token", - " ", - 53634, - 53634, - null - ], - [ - "number-token", - "0.125", - 53635, - 53639, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 53640, - 53640, - null - ], - [ - "semicolon-token", - ";", - 53641, - 53641, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 53642, - 53664, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 53665, - 53665, - null - ], - [ - "hash-token", - "#198754", - 53666, - 53672, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53673, - 53673, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 53674, - 53693, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 53694, - 53694, - null - ], - [ - "ident-token", - "transparent", - 53695, - 53705, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 53706, - 53706, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 53707, - 53736, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 53737, - 53737, - null - ], - [ - "hash-token", - "#198754", - 53738, - 53744, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53745, - 53745, - null - ], - [ - "ident-token", - "--bs-gradient", - 53746, - 53758, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 53759, - 53759, - null - ], - [ - "ident-token", - "none", - 53760, - 53763, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 53764, - 53764, - null - ], - [ - "delim-token", - ".", - 53765, - 53765, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-info", - 53766, - 53781, - { - "value": "btn-outline-info" - } - ], - [ - "{-token", - "{", - 53782, - 53782, - null - ], - [ - "ident-token", - "--bs-btn-color", - 53783, - 53796, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 53797, - 53797, - null - ], - [ - "hash-token", - "#0dcaf0", - 53798, - 53804, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53805, - 53805, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 53806, - 53826, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 53827, - 53827, - null - ], - [ - "hash-token", - "#0dcaf0", - 53828, - 53834, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53835, - 53835, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 53836, - 53855, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 53856, - 53856, - null - ], - [ - "hash-token", - "#000", - 53857, - 53860, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53861, - 53861, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 53862, - 53878, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 53879, - 53879, - null - ], - [ - "hash-token", - "#0dcaf0", - 53880, - 53886, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53887, - 53887, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 53888, - 53914, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 53915, - 53915, - null - ], - [ - "hash-token", - "#0dcaf0", - 53916, - 53922, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53923, - 53923, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 53924, - 53948, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 53949, - 53949, - null - ], - [ - "number-token", - "13", - 53950, - 53951, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53952, - 53952, - null - ], - [ - "number-token", - "202", - 53953, - 53955, - { - "value": 202, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 53956, - 53956, - null - ], - [ - "number-token", - "240", - 53957, - 53959, - { - "value": 240, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 53960, - 53960, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 53961, - 53981, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 53982, - 53982, - null - ], - [ - "hash-token", - "#000", - 53983, - 53986, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 53987, - 53987, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 53988, - 54005, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 54006, - 54006, - null - ], - [ - "hash-token", - "#0dcaf0", - 54007, - 54013, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54014, - 54014, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 54015, - 54042, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 54043, - 54043, - null - ], - [ - "hash-token", - "#0dcaf0", - 54044, - 54050, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54051, - 54051, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 54052, - 54073, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 54074, - 54074, - null - ], - [ - "ident-token", - "inset", - 54075, - 54079, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 54080, - 54080, - null - ], - [ - "number-token", - "0", - 54081, - 54081, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 54082, - 54082, - null - ], - [ - "dimension-token", - "3px", - 54083, - 54085, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 54086, - 54086, - null - ], - [ - "dimension-token", - "5px", - 54087, - 54089, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 54090, - 54090, - null - ], - [ - "function-token", - "rgba(", - 54091, - 54095, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 54096, - 54096, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54097, - 54097, - null - ], - [ - "whitespace-token", - " ", - 54098, - 54098, - null - ], - [ - "number-token", - "0", - 54099, - 54099, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54100, - 54100, - null - ], - [ - "whitespace-token", - " ", - 54101, - 54101, - null - ], - [ - "number-token", - "0", - 54102, - 54102, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54103, - 54103, - null - ], - [ - "whitespace-token", - " ", - 54104, - 54104, - null - ], - [ - "number-token", - "0.125", - 54105, - 54109, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 54110, - 54110, - null - ], - [ - "semicolon-token", - ";", - 54111, - 54111, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 54112, - 54134, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 54135, - 54135, - null - ], - [ - "hash-token", - "#0dcaf0", - 54136, - 54142, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54143, - 54143, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 54144, - 54163, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 54164, - 54164, - null - ], - [ - "ident-token", - "transparent", - 54165, - 54175, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 54176, - 54176, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 54177, - 54206, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 54207, - 54207, - null - ], - [ - "hash-token", - "#0dcaf0", - 54208, - 54214, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54215, - 54215, - null - ], - [ - "ident-token", - "--bs-gradient", - 54216, - 54228, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 54229, - 54229, - null - ], - [ - "ident-token", - "none", - 54230, - 54233, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 54234, - 54234, - null - ], - [ - "delim-token", - ".", - 54235, - 54235, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-warning", - 54236, - 54254, - { - "value": "btn-outline-warning" - } - ], - [ - "{-token", - "{", - 54255, - 54255, - null - ], - [ - "ident-token", - "--bs-btn-color", - 54256, - 54269, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 54270, - 54270, - null - ], - [ - "hash-token", - "#ffc107", - 54271, - 54277, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54278, - 54278, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 54279, - 54299, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 54300, - 54300, - null - ], - [ - "hash-token", - "#ffc107", - 54301, - 54307, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54308, - 54308, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 54309, - 54328, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 54329, - 54329, - null - ], - [ - "hash-token", - "#000", - 54330, - 54333, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54334, - 54334, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 54335, - 54351, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 54352, - 54352, - null - ], - [ - "hash-token", - "#ffc107", - 54353, - 54359, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54360, - 54360, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 54361, - 54387, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 54388, - 54388, - null - ], - [ - "hash-token", - "#ffc107", - 54389, - 54395, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54396, - 54396, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 54397, - 54421, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 54422, - 54422, - null - ], - [ - "number-token", - "255", - 54423, - 54425, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54426, - 54426, - null - ], - [ - "number-token", - "193", - 54427, - 54429, - { - "value": 193, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54430, - 54430, - null - ], - [ - "number-token", - "7", - 54431, - 54431, - { - "value": 7, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 54432, - 54432, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 54433, - 54453, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 54454, - 54454, - null - ], - [ - "hash-token", - "#000", - 54455, - 54458, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 54459, - 54459, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 54460, - 54477, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 54478, - 54478, - null - ], - [ - "hash-token", - "#ffc107", - 54479, - 54485, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54486, - 54486, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 54487, - 54514, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 54515, - 54515, - null - ], - [ - "hash-token", - "#ffc107", - 54516, - 54522, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54523, - 54523, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 54524, - 54545, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 54546, - 54546, - null - ], - [ - "ident-token", - "inset", - 54547, - 54551, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 54552, - 54552, - null - ], - [ - "number-token", - "0", - 54553, - 54553, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 54554, - 54554, - null - ], - [ - "dimension-token", - "3px", - 54555, - 54557, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 54558, - 54558, - null - ], - [ - "dimension-token", - "5px", - 54559, - 54561, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 54562, - 54562, - null - ], - [ - "function-token", - "rgba(", - 54563, - 54567, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 54568, - 54568, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54569, - 54569, - null - ], - [ - "whitespace-token", - " ", - 54570, - 54570, - null - ], - [ - "number-token", - "0", - 54571, - 54571, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54572, - 54572, - null - ], - [ - "whitespace-token", - " ", - 54573, - 54573, - null - ], - [ - "number-token", - "0", - 54574, - 54574, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54575, - 54575, - null - ], - [ - "whitespace-token", - " ", - 54576, - 54576, - null - ], - [ - "number-token", - "0.125", - 54577, - 54581, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 54582, - 54582, - null - ], - [ - "semicolon-token", - ";", - 54583, - 54583, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 54584, - 54606, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 54607, - 54607, - null - ], - [ - "hash-token", - "#ffc107", - 54608, - 54614, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54615, - 54615, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 54616, - 54635, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 54636, - 54636, - null - ], - [ - "ident-token", - "transparent", - 54637, - 54647, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 54648, - 54648, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 54649, - 54678, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 54679, - 54679, - null - ], - [ - "hash-token", - "#ffc107", - 54680, - 54686, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54687, - 54687, - null - ], - [ - "ident-token", - "--bs-gradient", - 54688, - 54700, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 54701, - 54701, - null - ], - [ - "ident-token", - "none", - 54702, - 54705, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 54706, - 54706, - null - ], - [ - "delim-token", - ".", - 54707, - 54707, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-danger", - 54708, - 54725, - { - "value": "btn-outline-danger" - } - ], - [ - "{-token", - "{", - 54726, - 54726, - null - ], - [ - "ident-token", - "--bs-btn-color", - 54727, - 54740, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 54741, - 54741, - null - ], - [ - "hash-token", - "#dc3545", - 54742, - 54748, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54749, - 54749, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 54750, - 54770, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 54771, - 54771, - null - ], - [ - "hash-token", - "#dc3545", - 54772, - 54778, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54779, - 54779, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 54780, - 54799, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 54800, - 54800, - null - ], - [ - "hash-token", - "#fff", - 54801, - 54804, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54805, - 54805, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 54806, - 54822, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 54823, - 54823, - null - ], - [ - "hash-token", - "#dc3545", - 54824, - 54830, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54831, - 54831, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 54832, - 54858, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 54859, - 54859, - null - ], - [ - "hash-token", - "#dc3545", - 54860, - 54866, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54867, - 54867, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 54868, - 54892, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 54893, - 54893, - null - ], - [ - "number-token", - "220", - 54894, - 54896, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54897, - 54897, - null - ], - [ - "number-token", - "53", - 54898, - 54899, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 54900, - 54900, - null - ], - [ - "number-token", - "69", - 54901, - 54902, - { - "value": 69, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 54903, - 54903, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 54904, - 54924, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 54925, - 54925, - null - ], - [ - "hash-token", - "#fff", - 54926, - 54929, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54930, - 54930, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 54931, - 54948, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 54949, - 54949, - null - ], - [ - "hash-token", - "#dc3545", - 54950, - 54956, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54957, - 54957, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 54958, - 54985, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 54986, - 54986, - null - ], - [ - "hash-token", - "#dc3545", - 54987, - 54993, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 54994, - 54994, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 54995, - 55016, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 55017, - 55017, - null - ], - [ - "ident-token", - "inset", - 55018, - 55022, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 55023, - 55023, - null - ], - [ - "number-token", - "0", - 55024, - 55024, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 55025, - 55025, - null - ], - [ - "dimension-token", - "3px", - 55026, - 55028, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55029, - 55029, - null - ], - [ - "dimension-token", - "5px", - 55030, - 55032, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55033, - 55033, - null - ], - [ - "function-token", - "rgba(", - 55034, - 55038, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 55039, - 55039, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55040, - 55040, - null - ], - [ - "whitespace-token", - " ", - 55041, - 55041, - null - ], - [ - "number-token", - "0", - 55042, - 55042, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55043, - 55043, - null - ], - [ - "whitespace-token", - " ", - 55044, - 55044, - null - ], - [ - "number-token", - "0", - 55045, - 55045, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55046, - 55046, - null - ], - [ - "whitespace-token", - " ", - 55047, - 55047, - null - ], - [ - "number-token", - "0.125", - 55048, - 55052, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 55053, - 55053, - null - ], - [ - "semicolon-token", - ";", - 55054, - 55054, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 55055, - 55077, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 55078, - 55078, - null - ], - [ - "hash-token", - "#dc3545", - 55079, - 55085, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55086, - 55086, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 55087, - 55106, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 55107, - 55107, - null - ], - [ - "ident-token", - "transparent", - 55108, - 55118, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 55119, - 55119, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 55120, - 55149, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 55150, - 55150, - null - ], - [ - "hash-token", - "#dc3545", - 55151, - 55157, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55158, - 55158, - null - ], - [ - "ident-token", - "--bs-gradient", - 55159, - 55171, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 55172, - 55172, - null - ], - [ - "ident-token", - "none", - 55173, - 55176, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 55177, - 55177, - null - ], - [ - "delim-token", - ".", - 55178, - 55178, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-light", - 55179, - 55195, - { - "value": "btn-outline-light" - } - ], - [ - "{-token", - "{", - 55196, - 55196, - null - ], - [ - "ident-token", - "--bs-btn-color", - 55197, - 55210, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 55211, - 55211, - null - ], - [ - "hash-token", - "#f8f9fa", - 55212, - 55218, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55219, - 55219, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 55220, - 55240, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 55241, - 55241, - null - ], - [ - "hash-token", - "#f8f9fa", - 55242, - 55248, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55249, - 55249, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 55250, - 55269, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 55270, - 55270, - null - ], - [ - "hash-token", - "#000", - 55271, - 55274, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55275, - 55275, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 55276, - 55292, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 55293, - 55293, - null - ], - [ - "hash-token", - "#f8f9fa", - 55294, - 55300, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55301, - 55301, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 55302, - 55328, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 55329, - 55329, - null - ], - [ - "hash-token", - "#f8f9fa", - 55330, - 55336, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55337, - 55337, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 55338, - 55362, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 55363, - 55363, - null - ], - [ - "number-token", - "248", - 55364, - 55366, - { - "value": 248, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55367, - 55367, - null - ], - [ - "number-token", - "249", - 55368, - 55370, - { - "value": 249, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55371, - 55371, - null - ], - [ - "number-token", - "250", - 55372, - 55374, - { - "value": 250, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 55375, - 55375, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 55376, - 55396, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 55397, - 55397, - null - ], - [ - "hash-token", - "#000", - 55398, - 55401, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55402, - 55402, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 55403, - 55420, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 55421, - 55421, - null - ], - [ - "hash-token", - "#f8f9fa", - 55422, - 55428, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55429, - 55429, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 55430, - 55457, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 55458, - 55458, - null - ], - [ - "hash-token", - "#f8f9fa", - 55459, - 55465, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55466, - 55466, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 55467, - 55488, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 55489, - 55489, - null - ], - [ - "ident-token", - "inset", - 55490, - 55494, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 55495, - 55495, - null - ], - [ - "number-token", - "0", - 55496, - 55496, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 55497, - 55497, - null - ], - [ - "dimension-token", - "3px", - 55498, - 55500, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55501, - 55501, - null - ], - [ - "dimension-token", - "5px", - 55502, - 55504, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55505, - 55505, - null - ], - [ - "function-token", - "rgba(", - 55506, - 55510, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 55511, - 55511, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55512, - 55512, - null - ], - [ - "whitespace-token", - " ", - 55513, - 55513, - null - ], - [ - "number-token", - "0", - 55514, - 55514, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55515, - 55515, - null - ], - [ - "whitespace-token", - " ", - 55516, - 55516, - null - ], - [ - "number-token", - "0", - 55517, - 55517, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55518, - 55518, - null - ], - [ - "whitespace-token", - " ", - 55519, - 55519, - null - ], - [ - "number-token", - "0.125", - 55520, - 55524, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 55525, - 55525, - null - ], - [ - "semicolon-token", - ";", - 55526, - 55526, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 55527, - 55549, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 55550, - 55550, - null - ], - [ - "hash-token", - "#f8f9fa", - 55551, - 55557, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55558, - 55558, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 55559, - 55578, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 55579, - 55579, - null - ], - [ - "ident-token", - "transparent", - 55580, - 55590, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 55591, - 55591, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 55592, - 55621, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 55622, - 55622, - null - ], - [ - "hash-token", - "#f8f9fa", - 55623, - 55629, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55630, - 55630, - null - ], - [ - "ident-token", - "--bs-gradient", - 55631, - 55643, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 55644, - 55644, - null - ], - [ - "ident-token", - "none", - 55645, - 55648, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 55649, - 55649, - null - ], - [ - "delim-token", - ".", - 55650, - 55650, - { - "value": "." - } - ], - [ - "ident-token", - "btn-outline-dark", - 55651, - 55666, - { - "value": "btn-outline-dark" - } - ], - [ - "{-token", - "{", - 55667, - 55667, - null - ], - [ - "ident-token", - "--bs-btn-color", - 55668, - 55681, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 55682, - 55682, - null - ], - [ - "hash-token", - "#212529", - 55683, - 55689, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55690, - 55690, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 55691, - 55711, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 55712, - 55712, - null - ], - [ - "hash-token", - "#212529", - 55713, - 55719, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55720, - 55720, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 55721, - 55740, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 55741, - 55741, - null - ], - [ - "hash-token", - "#fff", - 55742, - 55745, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55746, - 55746, - null - ], - [ - "ident-token", - "--bs-btn-hover-bg", - 55747, - 55763, - { - "value": "--bs-btn-hover-bg" - } - ], - [ - "colon-token", - ":", - 55764, - 55764, - null - ], - [ - "hash-token", - "#212529", - 55765, - 55771, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55772, - 55772, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 55773, - 55799, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 55800, - 55800, - null - ], - [ - "hash-token", - "#212529", - 55801, - 55807, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55808, - 55808, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 55809, - 55833, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 55834, - 55834, - null - ], - [ - "number-token", - "33", - 55835, - 55836, - { - "value": 33, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55837, - 55837, - null - ], - [ - "number-token", - "37", - 55838, - 55839, - { - "value": 37, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55840, - 55840, - null - ], - [ - "number-token", - "41", - 55841, - 55842, - { - "value": 41, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 55843, - 55843, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 55844, - 55864, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 55865, - 55865, - null - ], - [ - "hash-token", - "#fff", - 55866, - 55869, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 55870, - 55870, - null - ], - [ - "ident-token", - "--bs-btn-active-bg", - 55871, - 55888, - { - "value": "--bs-btn-active-bg" - } - ], - [ - "colon-token", - ":", - 55889, - 55889, - null - ], - [ - "hash-token", - "#212529", - 55890, - 55896, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55897, - 55897, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 55898, - 55925, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 55926, - 55926, - null - ], - [ - "hash-token", - "#212529", - 55927, - 55933, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 55934, - 55934, - null - ], - [ - "ident-token", - "--bs-btn-active-shadow", - 55935, - 55956, - { - "value": "--bs-btn-active-shadow" - } - ], - [ - "colon-token", - ":", - 55957, - 55957, - null - ], - [ - "ident-token", - "inset", - 55958, - 55962, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 55963, - 55963, - null - ], - [ - "number-token", - "0", - 55964, - 55964, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 55965, - 55965, - null - ], - [ - "dimension-token", - "3px", - 55966, - 55968, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55969, - 55969, - null - ], - [ - "dimension-token", - "5px", - 55970, - 55972, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 55973, - 55973, - null - ], - [ - "function-token", - "rgba(", - 55974, - 55978, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 55979, - 55979, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55980, - 55980, - null - ], - [ - "whitespace-token", - " ", - 55981, - 55981, - null - ], - [ - "number-token", - "0", - 55982, - 55982, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55983, - 55983, - null - ], - [ - "whitespace-token", - " ", - 55984, - 55984, - null - ], - [ - "number-token", - "0", - 55985, - 55985, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 55986, - 55986, - null - ], - [ - "whitespace-token", - " ", - 55987, - 55987, - null - ], - [ - "number-token", - "0.125", - 55988, - 55992, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 55993, - 55993, - null - ], - [ - "semicolon-token", - ";", - 55994, - 55994, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 55995, - 56017, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 56018, - 56018, - null - ], - [ - "hash-token", - "#212529", - 56019, - 56025, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 56026, - 56026, - null - ], - [ - "ident-token", - "--bs-btn-disabled-bg", - 56027, - 56046, - { - "value": "--bs-btn-disabled-bg" - } - ], - [ - "colon-token", - ":", - 56047, - 56047, - null - ], - [ - "ident-token", - "transparent", - 56048, - 56058, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56059, - 56059, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 56060, - 56089, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 56090, - 56090, - null - ], - [ - "hash-token", - "#212529", - 56091, - 56097, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 56098, - 56098, - null - ], - [ - "ident-token", - "--bs-gradient", - 56099, - 56111, - { - "value": "--bs-gradient" - } - ], - [ - "colon-token", - ":", - 56112, - 56112, - null - ], - [ - "ident-token", - "none", - 56113, - 56116, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 56117, - 56117, - null - ], - [ - "delim-token", - ".", - 56118, - 56118, - { - "value": "." - } - ], - [ - "ident-token", - "btn-link", - 56119, - 56126, - { - "value": "btn-link" - } - ], - [ - "{-token", - "{", - 56127, - 56127, - null - ], - [ - "ident-token", - "--bs-btn-font-weight", - 56128, - 56147, - { - "value": "--bs-btn-font-weight" - } - ], - [ - "colon-token", - ":", - 56148, - 56148, - null - ], - [ - "number-token", - "400", - 56149, - 56151, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 56152, - 56152, - null - ], - [ - "ident-token", - "--bs-btn-color", - 56153, - 56166, - { - "value": "--bs-btn-color" - } - ], - [ - "colon-token", - ":", - 56167, - 56167, - null - ], - [ - "function-token", - "var(", - 56168, - 56171, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-color", - 56172, - 56186, - { - "value": "--bs-link-color" - } - ], - [ - ")-token", - ")", - 56187, - 56187, - null - ], - [ - "semicolon-token", - ";", - 56188, - 56188, - null - ], - [ - "ident-token", - "--bs-btn-bg", - 56189, - 56199, - { - "value": "--bs-btn-bg" - } - ], - [ - "colon-token", - ":", - 56200, - 56200, - null - ], - [ - "ident-token", - "transparent", - 56201, - 56211, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56212, - 56212, - null - ], - [ - "ident-token", - "--bs-btn-border-color", - 56213, - 56233, - { - "value": "--bs-btn-border-color" - } - ], - [ - "colon-token", - ":", - 56234, - 56234, - null - ], - [ - "ident-token", - "transparent", - 56235, - 56245, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56246, - 56246, - null - ], - [ - "ident-token", - "--bs-btn-hover-color", - 56247, - 56266, - { - "value": "--bs-btn-hover-color" - } - ], - [ - "colon-token", - ":", - 56267, - 56267, - null - ], - [ - "function-token", - "var(", - 56268, - 56271, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 56272, - 56292, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 56293, - 56293, - null - ], - [ - "semicolon-token", - ";", - 56294, - 56294, - null - ], - [ - "ident-token", - "--bs-btn-hover-border-color", - 56295, - 56321, - { - "value": "--bs-btn-hover-border-color" - } - ], - [ - "colon-token", - ":", - 56322, - 56322, - null - ], - [ - "ident-token", - "transparent", - 56323, - 56333, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56334, - 56334, - null - ], - [ - "ident-token", - "--bs-btn-active-color", - 56335, - 56355, - { - "value": "--bs-btn-active-color" - } - ], - [ - "colon-token", - ":", - 56356, - 56356, - null - ], - [ - "function-token", - "var(", - 56357, - 56360, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 56361, - 56381, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 56382, - 56382, - null - ], - [ - "semicolon-token", - ";", - 56383, - 56383, - null - ], - [ - "ident-token", - "--bs-btn-active-border-color", - 56384, - 56411, - { - "value": "--bs-btn-active-border-color" - } - ], - [ - "colon-token", - ":", - 56412, - 56412, - null - ], - [ - "ident-token", - "transparent", - 56413, - 56423, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56424, - 56424, - null - ], - [ - "ident-token", - "--bs-btn-disabled-color", - 56425, - 56447, - { - "value": "--bs-btn-disabled-color" - } - ], - [ - "colon-token", - ":", - 56448, - 56448, - null - ], - [ - "hash-token", - "#6c757d", - 56449, - 56455, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 56456, - 56456, - null - ], - [ - "ident-token", - "--bs-btn-disabled-border-color", - 56457, - 56486, - { - "value": "--bs-btn-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 56487, - 56487, - null - ], - [ - "ident-token", - "transparent", - 56488, - 56498, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 56499, - 56499, - null - ], - [ - "ident-token", - "--bs-btn-box-shadow", - 56500, - 56518, - { - "value": "--bs-btn-box-shadow" - } - ], - [ - "colon-token", - ":", - 56519, - 56519, - null - ], - [ - "ident-token", - "none", - 56520, - 56523, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 56524, - 56524, - null - ], - [ - "ident-token", - "--bs-btn-focus-shadow-rgb", - 56525, - 56549, - { - "value": "--bs-btn-focus-shadow-rgb" - } - ], - [ - "colon-token", - ":", - 56550, - 56550, - null - ], - [ - "number-token", - "49", - 56551, - 56552, - { - "value": 49, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 56553, - 56553, - null - ], - [ - "number-token", - "132", - 56554, - 56556, - { - "value": 132, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 56557, - 56557, - null - ], - [ - "number-token", - "253", - 56558, - 56560, - { - "value": 253, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 56561, - 56561, - null - ], - [ - "ident-token", - "text-decoration", - 56562, - 56576, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 56577, - 56577, - null - ], - [ - "ident-token", - "underline", - 56578, - 56586, - { - "value": "underline" - } - ], - [ - "}-token", - "}", - 56587, - 56587, - null - ], - [ - "delim-token", - ".", - 56588, - 56588, - { - "value": "." - } - ], - [ - "ident-token", - "btn-link", - 56589, - 56596, - { - "value": "btn-link" - } - ], - [ - "colon-token", - ":", - 56597, - 56597, - null - ], - [ - "ident-token", - "focus-visible", - 56598, - 56610, - { - "value": "focus-visible" - } - ], - [ - "{-token", - "{", - 56611, - 56611, - null - ], - [ - "ident-token", - "color", - 56612, - 56616, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 56617, - 56617, - null - ], - [ - "function-token", - "var(", - 56618, - 56621, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-color", - 56622, - 56635, - { - "value": "--bs-btn-color" - } - ], - [ - ")-token", - ")", - 56636, - 56636, - null - ], - [ - "}-token", - "}", - 56637, - 56637, - null - ], - [ - "delim-token", - ".", - 56638, - 56638, - { - "value": "." - } - ], - [ - "ident-token", - "btn-link", - 56639, - 56646, - { - "value": "btn-link" - } - ], - [ - "colon-token", - ":", - 56647, - 56647, - null - ], - [ - "ident-token", - "hover", - 56648, - 56652, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 56653, - 56653, - null - ], - [ - "ident-token", - "color", - 56654, - 56658, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 56659, - 56659, - null - ], - [ - "function-token", - "var(", - 56660, - 56663, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-btn-hover-color", - 56664, - 56683, - { - "value": "--bs-btn-hover-color" - } - ], - [ - ")-token", - ")", - 56684, - 56684, - null - ], - [ - "}-token", - "}", - 56685, - 56685, - null - ], - [ - "delim-token", - ".", - 56686, - 56686, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-lg", - 56687, - 56698, - { - "value": "btn-group-lg" - } - ], - [ - "delim-token", - ">", - 56699, - 56699, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 56700, - 56700, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 56701, - 56703, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 56704, - 56704, - null - ], - [ - "delim-token", - ".", - 56705, - 56705, - { - "value": "." - } - ], - [ - "ident-token", - "btn-lg", - 56706, - 56711, - { - "value": "btn-lg" - } - ], - [ - "{-token", - "{", - 56712, - 56712, - null - ], - [ - "ident-token", - "--bs-btn-padding-y", - 56713, - 56730, - { - "value": "--bs-btn-padding-y" - } - ], - [ - "colon-token", - ":", - 56731, - 56731, - null - ], - [ - "dimension-token", - "0.5rem", - 56732, - 56737, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56738, - 56738, - null - ], - [ - "ident-token", - "--bs-btn-padding-x", - 56739, - 56756, - { - "value": "--bs-btn-padding-x" - } - ], - [ - "colon-token", - ":", - 56757, - 56757, - null - ], - [ - "dimension-token", - "1rem", - 56758, - 56761, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56762, - 56762, - null - ], - [ - "ident-token", - "--bs-btn-font-size", - 56763, - 56780, - { - "value": "--bs-btn-font-size" - } - ], - [ - "colon-token", - ":", - 56781, - 56781, - null - ], - [ - "dimension-token", - "1.25rem", - 56782, - 56788, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56789, - 56789, - null - ], - [ - "ident-token", - "--bs-btn-border-radius", - 56790, - 56811, - { - "value": "--bs-btn-border-radius" - } - ], - [ - "colon-token", - ":", - 56812, - 56812, - null - ], - [ - "dimension-token", - "0.5rem", - 56813, - 56818, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 56819, - 56819, - null - ], - [ - "delim-token", - ".", - 56820, - 56820, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-sm", - 56821, - 56832, - { - "value": "btn-group-sm" - } - ], - [ - "delim-token", - ">", - 56833, - 56833, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 56834, - 56834, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 56835, - 56837, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 56838, - 56838, - null - ], - [ - "delim-token", - ".", - 56839, - 56839, - { - "value": "." - } - ], - [ - "ident-token", - "btn-sm", - 56840, - 56845, - { - "value": "btn-sm" - } - ], - [ - "{-token", - "{", - 56846, - 56846, - null - ], - [ - "ident-token", - "--bs-btn-padding-y", - 56847, - 56864, - { - "value": "--bs-btn-padding-y" - } - ], - [ - "colon-token", - ":", - 56865, - 56865, - null - ], - [ - "dimension-token", - "0.25rem", - 56866, - 56872, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56873, - 56873, - null - ], - [ - "ident-token", - "--bs-btn-padding-x", - 56874, - 56891, - { - "value": "--bs-btn-padding-x" - } - ], - [ - "colon-token", - ":", - 56892, - 56892, - null - ], - [ - "dimension-token", - "0.5rem", - 56893, - 56898, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56899, - 56899, - null - ], - [ - "ident-token", - "--bs-btn-font-size", - 56900, - 56917, - { - "value": "--bs-btn-font-size" - } - ], - [ - "colon-token", - ":", - 56918, - 56918, - null - ], - [ - "dimension-token", - "0.875rem", - 56919, - 56926, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 56927, - 56927, - null - ], - [ - "ident-token", - "--bs-btn-border-radius", - 56928, - 56949, - { - "value": "--bs-btn-border-radius" - } - ], - [ - "colon-token", - ":", - 56950, - 56950, - null - ], - [ - "dimension-token", - "0.25rem", - 56951, - 56957, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 56958, - 56958, - null - ], - [ - "delim-token", - ".", - 56959, - 56959, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 56960, - 56963, - { - "value": "fade" - } - ], - [ - "{-token", - "{", - 56964, - 56964, - null - ], - [ - "ident-token", - "transition", - 56965, - 56974, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 56975, - 56975, - null - ], - [ - "ident-token", - "opacity", - 56976, - 56982, - { - "value": "opacity" - } - ], - [ - "whitespace-token", - " ", - 56983, - 56983, - null - ], - [ - "dimension-token", - ".15s", - 56984, - 56987, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 56988, - 56988, - null - ], - [ - "ident-token", - "linear", - 56989, - 56994, - { - "value": "linear" - } - ], - [ - "}-token", - "}", - 56995, - 56995, - null - ], - [ - "at-keyword-token", - "@media", - 56996, - 57001, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 57002, - 57002, - null - ], - [ - "(-token", - "(", - 57003, - 57003, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 57004, - 57025, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 57026, - 57026, - null - ], - [ - "ident-token", - "reduce", - 57027, - 57032, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 57033, - 57033, - null - ], - [ - "{-token", - "{", - 57034, - 57034, - null - ], - [ - "delim-token", - ".", - 57035, - 57035, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 57036, - 57039, - { - "value": "fade" - } - ], - [ - "{-token", - "{", - 57040, - 57040, - null - ], - [ - "ident-token", - "transition", - 57041, - 57050, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 57051, - 57051, - null - ], - [ - "ident-token", - "none", - 57052, - 57055, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 57056, - 57056, - null - ], - [ - "}-token", - "}", - 57057, - 57057, - null - ], - [ - "delim-token", - ".", - 57058, - 57058, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 57059, - 57062, - { - "value": "fade" - } - ], - [ - "colon-token", - ":", - 57063, - 57063, - null - ], - [ - "function-token", - "not(", - 57064, - 57067, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 57068, - 57068, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 57069, - 57072, - { - "value": "show" - } - ], - [ - ")-token", - ")", - 57073, - 57073, - null - ], - [ - "{-token", - "{", - 57074, - 57074, - null - ], - [ - "ident-token", - "opacity", - 57075, - 57081, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 57082, - 57082, - null - ], - [ - "number-token", - "0", - 57083, - 57083, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 57084, - 57084, - null - ], - [ - "delim-token", - ".", - 57085, - 57085, - { - "value": "." - } - ], - [ - "ident-token", - "collapse", - 57086, - 57093, - { - "value": "collapse" - } - ], - [ - "colon-token", - ":", - 57094, - 57094, - null - ], - [ - "function-token", - "not(", - 57095, - 57098, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 57099, - 57099, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 57100, - 57103, - { - "value": "show" - } - ], - [ - ")-token", - ")", - 57104, - 57104, - null - ], - [ - "{-token", - "{", - 57105, - 57105, - null - ], - [ - "ident-token", - "display", - 57106, - 57112, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 57113, - 57113, - null - ], - [ - "ident-token", - "none", - 57114, - 57117, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 57118, - 57118, - null - ], - [ - "delim-token", - ".", - 57119, - 57119, - { - "value": "." - } - ], - [ - "ident-token", - "collapsing", - 57120, - 57129, - { - "value": "collapsing" - } - ], - [ - "{-token", - "{", - 57130, - 57130, - null - ], - [ - "ident-token", - "height", - 57131, - 57136, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 57137, - 57137, - null - ], - [ - "number-token", - "0", - 57138, - 57138, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 57139, - 57139, - null - ], - [ - "ident-token", - "overflow", - 57140, - 57147, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 57148, - 57148, - null - ], - [ - "ident-token", - "hidden", - 57149, - 57154, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 57155, - 57155, - null - ], - [ - "ident-token", - "transition", - 57156, - 57165, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 57166, - 57166, - null - ], - [ - "ident-token", - "height", - 57167, - 57172, - { - "value": "height" - } - ], - [ - "whitespace-token", - " ", - 57173, - 57173, - null - ], - [ - "dimension-token", - ".35s", - 57174, - 57177, - { - "value": 0.35, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 57178, - 57178, - null - ], - [ - "ident-token", - "ease", - 57179, - 57182, - { - "value": "ease" - } - ], - [ - "}-token", - "}", - 57183, - 57183, - null - ], - [ - "at-keyword-token", - "@media", - 57184, - 57189, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 57190, - 57190, - null - ], - [ - "(-token", - "(", - 57191, - 57191, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 57192, - 57213, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 57214, - 57214, - null - ], - [ - "ident-token", - "reduce", - 57215, - 57220, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 57221, - 57221, - null - ], - [ - "{-token", - "{", - 57222, - 57222, - null - ], - [ - "delim-token", - ".", - 57223, - 57223, - { - "value": "." - } - ], - [ - "ident-token", - "collapsing", - 57224, - 57233, - { - "value": "collapsing" - } - ], - [ - "{-token", - "{", - 57234, - 57234, - null - ], - [ - "ident-token", - "transition", - 57235, - 57244, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 57245, - 57245, - null - ], - [ - "ident-token", - "none", - 57246, - 57249, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 57250, - 57250, - null - ], - [ - "}-token", - "}", - 57251, - 57251, - null - ], - [ - "delim-token", - ".", - 57252, - 57252, - { - "value": "." - } - ], - [ - "ident-token", - "collapsing", - 57253, - 57262, - { - "value": "collapsing" - } - ], - [ - "delim-token", - ".", - 57263, - 57263, - { - "value": "." - } - ], - [ - "ident-token", - "collapse-horizontal", - 57264, - 57282, - { - "value": "collapse-horizontal" - } - ], - [ - "{-token", - "{", - 57283, - 57283, - null - ], - [ - "ident-token", - "width", - 57284, - 57288, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 57289, - 57289, - null - ], - [ - "number-token", - "0", - 57290, - 57290, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 57291, - 57291, - null - ], - [ - "ident-token", - "height", - 57292, - 57297, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 57298, - 57298, - null - ], - [ - "ident-token", - "auto", - 57299, - 57302, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 57303, - 57303, - null - ], - [ - "ident-token", - "transition", - 57304, - 57313, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 57314, - 57314, - null - ], - [ - "ident-token", - "width", - 57315, - 57319, - { - "value": "width" - } - ], - [ - "whitespace-token", - " ", - 57320, - 57320, - null - ], - [ - "dimension-token", - ".35s", - 57321, - 57324, - { - "value": 0.35, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 57325, - 57325, - null - ], - [ - "ident-token", - "ease", - 57326, - 57329, - { - "value": "ease" - } - ], - [ - "}-token", - "}", - 57330, - 57330, - null - ], - [ - "at-keyword-token", - "@media", - 57331, - 57336, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 57337, - 57337, - null - ], - [ - "(-token", - "(", - 57338, - 57338, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 57339, - 57360, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 57361, - 57361, - null - ], - [ - "ident-token", - "reduce", - 57362, - 57367, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 57368, - 57368, - null - ], - [ - "{-token", - "{", - 57369, - 57369, - null - ], - [ - "delim-token", - ".", - 57370, - 57370, - { - "value": "." - } - ], - [ - "ident-token", - "collapsing", - 57371, - 57380, - { - "value": "collapsing" - } - ], - [ - "delim-token", - ".", - 57381, - 57381, - { - "value": "." - } - ], - [ - "ident-token", - "collapse-horizontal", - 57382, - 57400, - { - "value": "collapse-horizontal" - } - ], - [ - "{-token", - "{", - 57401, - 57401, - null - ], - [ - "ident-token", - "transition", - 57402, - 57411, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 57412, - 57412, - null - ], - [ - "ident-token", - "none", - 57413, - 57416, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 57417, - 57417, - null - ], - [ - "}-token", - "}", - 57418, - 57418, - null - ], - [ - "delim-token", - ".", - 57419, - 57419, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown", - 57420, - 57427, - { - "value": "dropdown" - } - ], - [ - "comma-token", - ",", - 57428, - 57428, - null - ], - [ - "delim-token", - ".", - 57429, - 57429, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-center", - 57430, - 57444, - { - "value": "dropdown-center" - } - ], - [ - "comma-token", - ",", - 57445, - 57445, - null - ], - [ - "delim-token", - ".", - 57446, - 57446, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 57447, - 57453, - { - "value": "dropend" - } - ], - [ - "comma-token", - ",", - 57454, - 57454, - null - ], - [ - "delim-token", - ".", - 57455, - 57455, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 57456, - 57464, - { - "value": "dropstart" - } - ], - [ - "comma-token", - ",", - 57465, - 57465, - null - ], - [ - "delim-token", - ".", - 57466, - 57466, - { - "value": "." - } - ], - [ - "ident-token", - "dropup", - 57467, - 57472, - { - "value": "dropup" - } - ], - [ - "comma-token", - ",", - 57473, - 57473, - null - ], - [ - "delim-token", - ".", - 57474, - 57474, - { - "value": "." - } - ], - [ - "ident-token", - "dropup-center", - 57475, - 57487, - { - "value": "dropup-center" - } - ], - [ - "{-token", - "{", - 57488, - 57488, - null - ], - [ - "ident-token", - "position", - 57489, - 57496, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 57497, - 57497, - null - ], - [ - "ident-token", - "relative", - 57498, - 57505, - { - "value": "relative" - } - ], - [ - "}-token", - "}", - 57506, - 57506, - null - ], - [ - "delim-token", - ".", - 57507, - 57507, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 57508, - 57522, - { - "value": "dropdown-toggle" - } - ], - [ - "{-token", - "{", - 57523, - 57523, - null - ], - [ - "ident-token", - "white-space", - 57524, - 57534, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 57535, - 57535, - null - ], - [ - "ident-token", - "nowrap", - 57536, - 57541, - { - "value": "nowrap" - } - ], - [ - "}-token", - "}", - 57542, - 57542, - null - ], - [ - "delim-token", - ".", - 57543, - 57543, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 57544, - 57558, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 57559, - 57559, - null - ], - [ - "colon-token", - ":", - 57560, - 57560, - null - ], - [ - "ident-token", - "after", - 57561, - 57565, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 57566, - 57566, - null - ], - [ - "ident-token", - "display", - 57567, - 57573, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 57574, - 57574, - null - ], - [ - "ident-token", - "inline-block", - 57575, - 57586, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 57587, - 57587, - null - ], - [ - "ident-token", - "margin-left", - 57588, - 57598, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 57599, - 57599, - null - ], - [ - "dimension-token", - ".255em", - 57600, - 57605, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 57606, - 57606, - null - ], - [ - "ident-token", - "vertical-align", - 57607, - 57620, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 57621, - 57621, - null - ], - [ - "dimension-token", - ".255em", - 57622, - 57627, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 57628, - 57628, - null - ], - [ - "ident-token", - "content", - 57629, - 57635, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 57636, - 57636, - null - ], - [ - "string-token", - "\"\"", - 57637, - 57638, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 57639, - 57639, - null - ], - [ - "ident-token", - "border-top", - 57640, - 57649, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 57650, - 57650, - null - ], - [ - "dimension-token", - ".3em", - 57651, - 57654, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 57655, - 57655, - null - ], - [ - "ident-token", - "solid", - 57656, - 57660, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 57661, - 57661, - null - ], - [ - "ident-token", - "border-right", - 57662, - 57673, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 57674, - 57674, - null - ], - [ - "dimension-token", - ".3em", - 57675, - 57678, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 57679, - 57679, - null - ], - [ - "ident-token", - "solid", - 57680, - 57684, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 57685, - 57685, - null - ], - [ - "ident-token", - "transparent", - 57686, - 57696, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 57697, - 57697, - null - ], - [ - "ident-token", - "border-bottom", - 57698, - 57710, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 57711, - 57711, - null - ], - [ - "number-token", - "0", - 57712, - 57712, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 57713, - 57713, - null - ], - [ - "ident-token", - "border-left", - 57714, - 57724, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 57725, - 57725, - null - ], - [ - "dimension-token", - ".3em", - 57726, - 57729, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 57730, - 57730, - null - ], - [ - "ident-token", - "solid", - 57731, - 57735, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 57736, - 57736, - null - ], - [ - "ident-token", - "transparent", - 57737, - 57747, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 57748, - 57748, - null - ], - [ - "delim-token", - ".", - 57749, - 57749, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 57750, - 57764, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 57765, - 57765, - null - ], - [ - "ident-token", - "empty", - 57766, - 57770, - { - "value": "empty" - } - ], - [ - "colon-token", - ":", - 57771, - 57771, - null - ], - [ - "colon-token", - ":", - 57772, - 57772, - null - ], - [ - "ident-token", - "after", - 57773, - 57777, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 57778, - 57778, - null - ], - [ - "ident-token", - "margin-left", - 57779, - 57789, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 57790, - 57790, - null - ], - [ - "number-token", - "0", - 57791, - 57791, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 57792, - 57792, - null - ], - [ - "delim-token", - ".", - 57793, - 57793, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 57794, - 57806, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 57807, - 57807, - null - ], - [ - "ident-token", - "--bs-dropdown-zindex", - 57808, - 57827, - { - "value": "--bs-dropdown-zindex" - } - ], - [ - "colon-token", - ":", - 57828, - 57828, - null - ], - [ - "number-token", - "1000", - 57829, - 57832, - { - "value": 1000, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 57833, - 57833, - null - ], - [ - "ident-token", - "--bs-dropdown-min-width", - 57834, - 57856, - { - "value": "--bs-dropdown-min-width" - } - ], - [ - "colon-token", - ":", - 57857, - 57857, - null - ], - [ - "dimension-token", - "10rem", - 57858, - 57862, - { - "value": 10, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 57863, - 57863, - null - ], - [ - "ident-token", - "--bs-dropdown-padding-x", - 57864, - 57886, - { - "value": "--bs-dropdown-padding-x" - } - ], - [ - "colon-token", - ":", - 57887, - 57887, - null - ], - [ - "number-token", - "0", - 57888, - 57888, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 57889, - 57889, - null - ], - [ - "ident-token", - "--bs-dropdown-padding-y", - 57890, - 57912, - { - "value": "--bs-dropdown-padding-y" - } - ], - [ - "colon-token", - ":", - 57913, - 57913, - null - ], - [ - "dimension-token", - "0.5rem", - 57914, - 57919, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 57920, - 57920, - null - ], - [ - "ident-token", - "--bs-dropdown-spacer", - 57921, - 57940, - { - "value": "--bs-dropdown-spacer" - } - ], - [ - "colon-token", - ":", - 57941, - 57941, - null - ], - [ - "dimension-token", - "0.125rem", - 57942, - 57949, - { - "value": 0.125, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 57950, - 57950, - null - ], - [ - "ident-token", - "--bs-dropdown-font-size", - 57951, - 57973, - { - "value": "--bs-dropdown-font-size" - } - ], - [ - "colon-token", - ":", - 57974, - 57974, - null - ], - [ - "dimension-token", - "1rem", - 57975, - 57978, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 57979, - 57979, - null - ], - [ - "ident-token", - "--bs-dropdown-color", - 57980, - 57998, - { - "value": "--bs-dropdown-color" - } - ], - [ - "colon-token", - ":", - 57999, - 57999, - null - ], - [ - "hash-token", - "#212529", - 58000, - 58006, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 58007, - 58007, - null - ], - [ - "ident-token", - "--bs-dropdown-bg", - 58008, - 58023, - { - "value": "--bs-dropdown-bg" - } - ], - [ - "colon-token", - ":", - 58024, - 58024, - null - ], - [ - "hash-token", - "#fff", - 58025, - 58028, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 58029, - 58029, - null - ], - [ - "ident-token", - "--bs-dropdown-border-color", - 58030, - 58055, - { - "value": "--bs-dropdown-border-color" - } - ], - [ - "colon-token", - ":", - 58056, - 58056, - null - ], - [ - "function-token", - "var(", - 58057, - 58060, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 58061, - 58089, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 58090, - 58090, - null - ], - [ - "semicolon-token", - ";", - 58091, - 58091, - null - ], - [ - "ident-token", - "--bs-dropdown-border-radius", - 58092, - 58118, - { - "value": "--bs-dropdown-border-radius" - } - ], - [ - "colon-token", - ":", - 58119, - 58119, - null - ], - [ - "dimension-token", - "0.375rem", - 58120, - 58127, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58128, - 58128, - null - ], - [ - "ident-token", - "--bs-dropdown-border-width", - 58129, - 58154, - { - "value": "--bs-dropdown-border-width" - } - ], - [ - "colon-token", - ":", - 58155, - 58155, - null - ], - [ - "dimension-token", - "1px", - 58156, - 58158, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 58159, - 58159, - null - ], - [ - "ident-token", - "--bs-dropdown-inner-border-radius", - 58160, - 58192, - { - "value": "--bs-dropdown-inner-border-radius" - } - ], - [ - "colon-token", - ":", - 58193, - 58193, - null - ], - [ - "function-token", - "calc(", - 58194, - 58198, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.375rem", - 58199, - 58206, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 58207, - 58207, - null - ], - [ - "delim-token", - "-", - 58208, - 58208, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 58209, - 58209, - null - ], - [ - "dimension-token", - "1px", - 58210, - 58212, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 58213, - 58213, - null - ], - [ - "semicolon-token", - ";", - 58214, - 58214, - null - ], - [ - "ident-token", - "--bs-dropdown-divider-bg", - 58215, - 58238, - { - "value": "--bs-dropdown-divider-bg" - } - ], - [ - "colon-token", - ":", - 58239, - 58239, - null - ], - [ - "function-token", - "var(", - 58240, - 58243, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 58244, - 58272, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 58273, - 58273, - null - ], - [ - "semicolon-token", - ";", - 58274, - 58274, - null - ], - [ - "ident-token", - "--bs-dropdown-divider-margin-y", - 58275, - 58304, - { - "value": "--bs-dropdown-divider-margin-y" - } - ], - [ - "colon-token", - ":", - 58305, - 58305, - null - ], - [ - "dimension-token", - "0.5rem", - 58306, - 58311, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58312, - 58312, - null - ], - [ - "ident-token", - "--bs-dropdown-box-shadow", - 58313, - 58336, - { - "value": "--bs-dropdown-box-shadow" - } - ], - [ - "colon-token", - ":", - 58337, - 58337, - null - ], - [ - "number-token", - "0", - 58338, - 58338, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 58339, - 58339, - null - ], - [ - "dimension-token", - "0.5rem", - 58340, - 58345, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 58346, - 58346, - null - ], - [ - "dimension-token", - "1rem", - 58347, - 58350, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 58351, - 58351, - null - ], - [ - "function-token", - "rgba(", - 58352, - 58356, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 58357, - 58357, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 58358, - 58358, - null - ], - [ - "whitespace-token", - " ", - 58359, - 58359, - null - ], - [ - "number-token", - "0", - 58360, - 58360, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 58361, - 58361, - null - ], - [ - "whitespace-token", - " ", - 58362, - 58362, - null - ], - [ - "number-token", - "0", - 58363, - 58363, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 58364, - 58364, - null - ], - [ - "whitespace-token", - " ", - 58365, - 58365, - null - ], - [ - "number-token", - "0.15", - 58366, - 58369, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 58370, - 58370, - null - ], - [ - "semicolon-token", - ";", - 58371, - 58371, - null - ], - [ - "ident-token", - "--bs-dropdown-link-color", - 58372, - 58395, - { - "value": "--bs-dropdown-link-color" - } - ], - [ - "colon-token", - ":", - 58396, - 58396, - null - ], - [ - "hash-token", - "#212529", - 58397, - 58403, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 58404, - 58404, - null - ], - [ - "ident-token", - "--bs-dropdown-link-hover-color", - 58405, - 58434, - { - "value": "--bs-dropdown-link-hover-color" - } - ], - [ - "colon-token", - ":", - 58435, - 58435, - null - ], - [ - "hash-token", - "#1e2125", - 58436, - 58442, - { - "value": "1e2125", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 58443, - 58443, - null - ], - [ - "ident-token", - "--bs-dropdown-link-hover-bg", - 58444, - 58470, - { - "value": "--bs-dropdown-link-hover-bg" - } - ], - [ - "colon-token", - ":", - 58471, - 58471, - null - ], - [ - "hash-token", - "#e9ecef", - 58472, - 58478, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 58479, - 58479, - null - ], - [ - "ident-token", - "--bs-dropdown-link-active-color", - 58480, - 58510, - { - "value": "--bs-dropdown-link-active-color" - } - ], - [ - "colon-token", - ":", - 58511, - 58511, - null - ], - [ - "hash-token", - "#fff", - 58512, - 58515, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 58516, - 58516, - null - ], - [ - "ident-token", - "--bs-dropdown-link-active-bg", - 58517, - 58544, - { - "value": "--bs-dropdown-link-active-bg" - } - ], - [ - "colon-token", - ":", - 58545, - 58545, - null - ], - [ - "hash-token", - "#0d6efd", - 58546, - 58552, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 58553, - 58553, - null - ], - [ - "ident-token", - "--bs-dropdown-link-disabled-color", - 58554, - 58586, - { - "value": "--bs-dropdown-link-disabled-color" - } - ], - [ - "colon-token", - ":", - 58587, - 58587, - null - ], - [ - "hash-token", - "#adb5bd", - 58588, - 58594, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 58595, - 58595, - null - ], - [ - "ident-token", - "--bs-dropdown-item-padding-x", - 58596, - 58623, - { - "value": "--bs-dropdown-item-padding-x" - } - ], - [ - "colon-token", - ":", - 58624, - 58624, - null - ], - [ - "dimension-token", - "1rem", - 58625, - 58628, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58629, - 58629, - null - ], - [ - "ident-token", - "--bs-dropdown-item-padding-y", - 58630, - 58657, - { - "value": "--bs-dropdown-item-padding-y" - } - ], - [ - "colon-token", - ":", - 58658, - 58658, - null - ], - [ - "dimension-token", - "0.25rem", - 58659, - 58665, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58666, - 58666, - null - ], - [ - "ident-token", - "--bs-dropdown-header-color", - 58667, - 58692, - { - "value": "--bs-dropdown-header-color" - } - ], - [ - "colon-token", - ":", - 58693, - 58693, - null - ], - [ - "hash-token", - "#6c757d", - 58694, - 58700, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 58701, - 58701, - null - ], - [ - "ident-token", - "--bs-dropdown-header-padding-x", - 58702, - 58731, - { - "value": "--bs-dropdown-header-padding-x" - } - ], - [ - "colon-token", - ":", - 58732, - 58732, - null - ], - [ - "dimension-token", - "1rem", - 58733, - 58736, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58737, - 58737, - null - ], - [ - "ident-token", - "--bs-dropdown-header-padding-y", - 58738, - 58767, - { - "value": "--bs-dropdown-header-padding-y" - } - ], - [ - "colon-token", - ":", - 58768, - 58768, - null - ], - [ - "dimension-token", - "0.5rem", - 58769, - 58774, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 58775, - 58775, - null - ], - [ - "ident-token", - "position", - 58776, - 58783, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 58784, - 58784, - null - ], - [ - "ident-token", - "absolute", - 58785, - 58792, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 58793, - 58793, - null - ], - [ - "ident-token", - "z-index", - 58794, - 58800, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 58801, - 58801, - null - ], - [ - "function-token", - "var(", - 58802, - 58805, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-zindex", - 58806, - 58825, - { - "value": "--bs-dropdown-zindex" - } - ], - [ - ")-token", - ")", - 58826, - 58826, - null - ], - [ - "semicolon-token", - ";", - 58827, - 58827, - null - ], - [ - "ident-token", - "display", - 58828, - 58834, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 58835, - 58835, - null - ], - [ - "ident-token", - "none", - 58836, - 58839, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 58840, - 58840, - null - ], - [ - "ident-token", - "min-width", - 58841, - 58849, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 58850, - 58850, - null - ], - [ - "function-token", - "var(", - 58851, - 58854, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-min-width", - 58855, - 58877, - { - "value": "--bs-dropdown-min-width" - } - ], - [ - ")-token", - ")", - 58878, - 58878, - null - ], - [ - "semicolon-token", - ";", - 58879, - 58879, - null - ], - [ - "ident-token", - "padding", - 58880, - 58886, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 58887, - 58887, - null - ], - [ - "function-token", - "var(", - 58888, - 58891, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-padding-y", - 58892, - 58914, - { - "value": "--bs-dropdown-padding-y" - } - ], - [ - ")-token", - ")", - 58915, - 58915, - null - ], - [ - "whitespace-token", - " ", - 58916, - 58916, - null - ], - [ - "function-token", - "var(", - 58917, - 58920, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-padding-x", - 58921, - 58943, - { - "value": "--bs-dropdown-padding-x" - } - ], - [ - ")-token", - ")", - 58944, - 58944, - null - ], - [ - "semicolon-token", - ";", - 58945, - 58945, - null - ], - [ - "ident-token", - "margin", - 58946, - 58951, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 58952, - 58952, - null - ], - [ - "number-token", - "0", - 58953, - 58953, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 58954, - 58954, - null - ], - [ - "ident-token", - "font-size", - 58955, - 58963, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 58964, - 58964, - null - ], - [ - "function-token", - "var(", - 58965, - 58968, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-font-size", - 58969, - 58991, - { - "value": "--bs-dropdown-font-size" - } - ], - [ - ")-token", - ")", - 58992, - 58992, - null - ], - [ - "semicolon-token", - ";", - 58993, - 58993, - null - ], - [ - "ident-token", - "color", - 58994, - 58998, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 58999, - 58999, - null - ], - [ - "function-token", - "var(", - 59000, - 59003, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-color", - 59004, - 59022, - { - "value": "--bs-dropdown-color" - } - ], - [ - ")-token", - ")", - 59023, - 59023, - null - ], - [ - "semicolon-token", - ";", - 59024, - 59024, - null - ], - [ - "ident-token", - "text-align", - 59025, - 59034, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 59035, - 59035, - null - ], - [ - "ident-token", - "left", - 59036, - 59039, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 59040, - 59040, - null - ], - [ - "ident-token", - "list-style", - 59041, - 59050, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 59051, - 59051, - null - ], - [ - "ident-token", - "none", - 59052, - 59055, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 59056, - 59056, - null - ], - [ - "ident-token", - "background-color", - 59057, - 59072, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 59073, - 59073, - null - ], - [ - "function-token", - "var(", - 59074, - 59077, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-bg", - 59078, - 59093, - { - "value": "--bs-dropdown-bg" - } - ], - [ - ")-token", - ")", - 59094, - 59094, - null - ], - [ - "semicolon-token", - ";", - 59095, - 59095, - null - ], - [ - "ident-token", - "background-clip", - 59096, - 59110, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 59111, - 59111, - null - ], - [ - "ident-token", - "padding-box", - 59112, - 59122, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 59123, - 59123, - null - ], - [ - "ident-token", - "border", - 59124, - 59129, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 59130, - 59130, - null - ], - [ - "function-token", - "var(", - 59131, - 59134, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-border-width", - 59135, - 59160, - { - "value": "--bs-dropdown-border-width" - } - ], - [ - ")-token", - ")", - 59161, - 59161, - null - ], - [ - "whitespace-token", - " ", - 59162, - 59162, - null - ], - [ - "ident-token", - "solid", - 59163, - 59167, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 59168, - 59168, - null - ], - [ - "function-token", - "var(", - 59169, - 59172, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-border-color", - 59173, - 59198, - { - "value": "--bs-dropdown-border-color" - } - ], - [ - ")-token", - ")", - 59199, - 59199, - null - ], - [ - "semicolon-token", - ";", - 59200, - 59200, - null - ], - [ - "ident-token", - "border-radius", - 59201, - 59213, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 59214, - 59214, - null - ], - [ - "function-token", - "var(", - 59215, - 59218, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-border-radius", - 59219, - 59245, - { - "value": "--bs-dropdown-border-radius" - } - ], - [ - ")-token", - ")", - 59246, - 59246, - null - ], - [ - "}-token", - "}", - 59247, - 59247, - null - ], - [ - "delim-token", - ".", - 59248, - 59248, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 59249, - 59261, - { - "value": "dropdown-menu" - } - ], - [ - "[-token", - "[", - 59262, - 59262, - null - ], - [ - "ident-token", - "data-bs-popper", - 59263, - 59276, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59277, - 59277, - null - ], - [ - "{-token", - "{", - 59278, - 59278, - null - ], - [ - "ident-token", - "top", - 59279, - 59281, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 59282, - 59282, - null - ], - [ - "percentage-token", - "100%", - 59283, - 59286, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 59287, - 59287, - null - ], - [ - "ident-token", - "left", - 59288, - 59291, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59292, - 59292, - null - ], - [ - "number-token", - "0", - 59293, - 59293, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 59294, - 59294, - null - ], - [ - "ident-token", - "margin-top", - 59295, - 59304, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 59305, - 59305, - null - ], - [ - "function-token", - "var(", - 59306, - 59309, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-spacer", - 59310, - 59329, - { - "value": "--bs-dropdown-spacer" - } - ], - [ - ")-token", - ")", - 59330, - 59330, - null - ], - [ - "}-token", - "}", - 59331, - 59331, - null - ], - [ - "delim-token", - ".", - 59332, - 59332, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-start", - 59333, - 59351, - { - "value": "dropdown-menu-start" - } - ], - [ - "{-token", - "{", - 59352, - 59352, - null - ], - [ - "ident-token", - "--bs-position", - 59353, - 59365, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59366, - 59366, - null - ], - [ - "ident-token", - "start", - 59367, - 59371, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 59372, - 59372, - null - ], - [ - "delim-token", - ".", - 59373, - 59373, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-start", - 59374, - 59392, - { - "value": "dropdown-menu-start" - } - ], - [ - "[-token", - "[", - 59393, - 59393, - null - ], - [ - "ident-token", - "data-bs-popper", - 59394, - 59407, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59408, - 59408, - null - ], - [ - "{-token", - "{", - 59409, - 59409, - null - ], - [ - "ident-token", - "right", - 59410, - 59414, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59415, - 59415, - null - ], - [ - "ident-token", - "auto", - 59416, - 59419, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 59420, - 59420, - null - ], - [ - "ident-token", - "left", - 59421, - 59424, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59425, - 59425, - null - ], - [ - "number-token", - "0", - 59426, - 59426, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 59427, - 59427, - null - ], - [ - "delim-token", - ".", - 59428, - 59428, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-end", - 59429, - 59445, - { - "value": "dropdown-menu-end" - } - ], - [ - "{-token", - "{", - 59446, - 59446, - null - ], - [ - "ident-token", - "--bs-position", - 59447, - 59459, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59460, - 59460, - null - ], - [ - "ident-token", - "end", - 59461, - 59463, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 59464, - 59464, - null - ], - [ - "delim-token", - ".", - 59465, - 59465, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-end", - 59466, - 59482, - { - "value": "dropdown-menu-end" - } - ], - [ - "[-token", - "[", - 59483, - 59483, - null - ], - [ - "ident-token", - "data-bs-popper", - 59484, - 59497, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59498, - 59498, - null - ], - [ - "{-token", - "{", - 59499, - 59499, - null - ], - [ - "ident-token", - "right", - 59500, - 59504, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59505, - 59505, - null - ], - [ - "number-token", - "0", - 59506, - 59506, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 59507, - 59507, - null - ], - [ - "ident-token", - "left", - 59508, - 59511, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59512, - 59512, - null - ], - [ - "ident-token", - "auto", - 59513, - 59516, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 59517, - 59517, - null - ], - [ - "at-keyword-token", - "@media", - 59518, - 59523, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 59524, - 59524, - null - ], - [ - "(-token", - "(", - 59525, - 59525, - null - ], - [ - "ident-token", - "min-width", - 59526, - 59534, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 59535, - 59535, - null - ], - [ - "dimension-token", - "576px", - 59536, - 59540, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 59541, - 59541, - null - ], - [ - "{-token", - "{", - 59542, - 59542, - null - ], - [ - "delim-token", - ".", - 59543, - 59543, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-sm-start", - 59544, - 59565, - { - "value": "dropdown-menu-sm-start" - } - ], - [ - "{-token", - "{", - 59566, - 59566, - null - ], - [ - "ident-token", - "--bs-position", - 59567, - 59579, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59580, - 59580, - null - ], - [ - "ident-token", - "start", - 59581, - 59585, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 59586, - 59586, - null - ], - [ - "delim-token", - ".", - 59587, - 59587, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-sm-start", - 59588, - 59609, - { - "value": "dropdown-menu-sm-start" - } - ], - [ - "[-token", - "[", - 59610, - 59610, - null - ], - [ - "ident-token", - "data-bs-popper", - 59611, - 59624, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59625, - 59625, - null - ], - [ - "{-token", - "{", - 59626, - 59626, - null - ], - [ - "ident-token", - "right", - 59627, - 59631, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59632, - 59632, - null - ], - [ - "ident-token", - "auto", - 59633, - 59636, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 59637, - 59637, - null - ], - [ - "ident-token", - "left", - 59638, - 59641, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59642, - 59642, - null - ], - [ - "number-token", - "0", - 59643, - 59643, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 59644, - 59644, - null - ], - [ - "delim-token", - ".", - 59645, - 59645, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-sm-end", - 59646, - 59665, - { - "value": "dropdown-menu-sm-end" - } - ], - [ - "{-token", - "{", - 59666, - 59666, - null - ], - [ - "ident-token", - "--bs-position", - 59667, - 59679, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59680, - 59680, - null - ], - [ - "ident-token", - "end", - 59681, - 59683, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 59684, - 59684, - null - ], - [ - "delim-token", - ".", - 59685, - 59685, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-sm-end", - 59686, - 59705, - { - "value": "dropdown-menu-sm-end" - } - ], - [ - "[-token", - "[", - 59706, - 59706, - null - ], - [ - "ident-token", - "data-bs-popper", - 59707, - 59720, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59721, - 59721, - null - ], - [ - "{-token", - "{", - 59722, - 59722, - null - ], - [ - "ident-token", - "right", - 59723, - 59727, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59728, - 59728, - null - ], - [ - "number-token", - "0", - 59729, - 59729, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 59730, - 59730, - null - ], - [ - "ident-token", - "left", - 59731, - 59734, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59735, - 59735, - null - ], - [ - "ident-token", - "auto", - 59736, - 59739, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 59740, - 59740, - null - ], - [ - "}-token", - "}", - 59741, - 59741, - null - ], - [ - "at-keyword-token", - "@media", - 59742, - 59747, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 59748, - 59748, - null - ], - [ - "(-token", - "(", - 59749, - 59749, - null - ], - [ - "ident-token", - "min-width", - 59750, - 59758, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 59759, - 59759, - null - ], - [ - "dimension-token", - "768px", - 59760, - 59764, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 59765, - 59765, - null - ], - [ - "{-token", - "{", - 59766, - 59766, - null - ], - [ - "delim-token", - ".", - 59767, - 59767, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-md-start", - 59768, - 59789, - { - "value": "dropdown-menu-md-start" - } - ], - [ - "{-token", - "{", - 59790, - 59790, - null - ], - [ - "ident-token", - "--bs-position", - 59791, - 59803, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59804, - 59804, - null - ], - [ - "ident-token", - "start", - 59805, - 59809, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 59810, - 59810, - null - ], - [ - "delim-token", - ".", - 59811, - 59811, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-md-start", - 59812, - 59833, - { - "value": "dropdown-menu-md-start" - } - ], - [ - "[-token", - "[", - 59834, - 59834, - null - ], - [ - "ident-token", - "data-bs-popper", - 59835, - 59848, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59849, - 59849, - null - ], - [ - "{-token", - "{", - 59850, - 59850, - null - ], - [ - "ident-token", - "right", - 59851, - 59855, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59856, - 59856, - null - ], - [ - "ident-token", - "auto", - 59857, - 59860, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 59861, - 59861, - null - ], - [ - "ident-token", - "left", - 59862, - 59865, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59866, - 59866, - null - ], - [ - "number-token", - "0", - 59867, - 59867, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 59868, - 59868, - null - ], - [ - "delim-token", - ".", - 59869, - 59869, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-md-end", - 59870, - 59889, - { - "value": "dropdown-menu-md-end" - } - ], - [ - "{-token", - "{", - 59890, - 59890, - null - ], - [ - "ident-token", - "--bs-position", - 59891, - 59903, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 59904, - 59904, - null - ], - [ - "ident-token", - "end", - 59905, - 59907, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 59908, - 59908, - null - ], - [ - "delim-token", - ".", - 59909, - 59909, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-md-end", - 59910, - 59929, - { - "value": "dropdown-menu-md-end" - } - ], - [ - "[-token", - "[", - 59930, - 59930, - null - ], - [ - "ident-token", - "data-bs-popper", - 59931, - 59944, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 59945, - 59945, - null - ], - [ - "{-token", - "{", - 59946, - 59946, - null - ], - [ - "ident-token", - "right", - 59947, - 59951, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 59952, - 59952, - null - ], - [ - "number-token", - "0", - 59953, - 59953, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 59954, - 59954, - null - ], - [ - "ident-token", - "left", - 59955, - 59958, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 59959, - 59959, - null - ], - [ - "ident-token", - "auto", - 59960, - 59963, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 59964, - 59964, - null - ], - [ - "}-token", - "}", - 59965, - 59965, - null - ], - [ - "at-keyword-token", - "@media", - 59966, - 59971, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 59972, - 59972, - null - ], - [ - "(-token", - "(", - 59973, - 59973, - null - ], - [ - "ident-token", - "min-width", - 59974, - 59982, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 59983, - 59983, - null - ], - [ - "dimension-token", - "992px", - 59984, - 59988, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 59989, - 59989, - null - ], - [ - "{-token", - "{", - 59990, - 59990, - null - ], - [ - "delim-token", - ".", - 59991, - 59991, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-lg-start", - 59992, - 60013, - { - "value": "dropdown-menu-lg-start" - } - ], - [ - "{-token", - "{", - 60014, - 60014, - null - ], - [ - "ident-token", - "--bs-position", - 60015, - 60027, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60028, - 60028, - null - ], - [ - "ident-token", - "start", - 60029, - 60033, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 60034, - 60034, - null - ], - [ - "delim-token", - ".", - 60035, - 60035, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-lg-start", - 60036, - 60057, - { - "value": "dropdown-menu-lg-start" - } - ], - [ - "[-token", - "[", - 60058, - 60058, - null - ], - [ - "ident-token", - "data-bs-popper", - 60059, - 60072, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60073, - 60073, - null - ], - [ - "{-token", - "{", - 60074, - 60074, - null - ], - [ - "ident-token", - "right", - 60075, - 60079, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60080, - 60080, - null - ], - [ - "ident-token", - "auto", - 60081, - 60084, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 60085, - 60085, - null - ], - [ - "ident-token", - "left", - 60086, - 60089, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60090, - 60090, - null - ], - [ - "number-token", - "0", - 60091, - 60091, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 60092, - 60092, - null - ], - [ - "delim-token", - ".", - 60093, - 60093, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-lg-end", - 60094, - 60113, - { - "value": "dropdown-menu-lg-end" - } - ], - [ - "{-token", - "{", - 60114, - 60114, - null - ], - [ - "ident-token", - "--bs-position", - 60115, - 60127, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60128, - 60128, - null - ], - [ - "ident-token", - "end", - 60129, - 60131, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 60132, - 60132, - null - ], - [ - "delim-token", - ".", - 60133, - 60133, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-lg-end", - 60134, - 60153, - { - "value": "dropdown-menu-lg-end" - } - ], - [ - "[-token", - "[", - 60154, - 60154, - null - ], - [ - "ident-token", - "data-bs-popper", - 60155, - 60168, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60169, - 60169, - null - ], - [ - "{-token", - "{", - 60170, - 60170, - null - ], - [ - "ident-token", - "right", - 60171, - 60175, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60176, - 60176, - null - ], - [ - "number-token", - "0", - 60177, - 60177, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 60178, - 60178, - null - ], - [ - "ident-token", - "left", - 60179, - 60182, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60183, - 60183, - null - ], - [ - "ident-token", - "auto", - 60184, - 60187, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 60188, - 60188, - null - ], - [ - "}-token", - "}", - 60189, - 60189, - null - ], - [ - "at-keyword-token", - "@media", - 60190, - 60195, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 60196, - 60196, - null - ], - [ - "(-token", - "(", - 60197, - 60197, - null - ], - [ - "ident-token", - "min-width", - 60198, - 60206, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 60207, - 60207, - null - ], - [ - "dimension-token", - "1200px", - 60208, - 60213, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 60214, - 60214, - null - ], - [ - "{-token", - "{", - 60215, - 60215, - null - ], - [ - "delim-token", - ".", - 60216, - 60216, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xl-start", - 60217, - 60238, - { - "value": "dropdown-menu-xl-start" - } - ], - [ - "{-token", - "{", - 60239, - 60239, - null - ], - [ - "ident-token", - "--bs-position", - 60240, - 60252, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60253, - 60253, - null - ], - [ - "ident-token", - "start", - 60254, - 60258, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 60259, - 60259, - null - ], - [ - "delim-token", - ".", - 60260, - 60260, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xl-start", - 60261, - 60282, - { - "value": "dropdown-menu-xl-start" - } - ], - [ - "[-token", - "[", - 60283, - 60283, - null - ], - [ - "ident-token", - "data-bs-popper", - 60284, - 60297, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60298, - 60298, - null - ], - [ - "{-token", - "{", - 60299, - 60299, - null - ], - [ - "ident-token", - "right", - 60300, - 60304, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60305, - 60305, - null - ], - [ - "ident-token", - "auto", - 60306, - 60309, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 60310, - 60310, - null - ], - [ - "ident-token", - "left", - 60311, - 60314, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60315, - 60315, - null - ], - [ - "number-token", - "0", - 60316, - 60316, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 60317, - 60317, - null - ], - [ - "delim-token", - ".", - 60318, - 60318, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xl-end", - 60319, - 60338, - { - "value": "dropdown-menu-xl-end" - } - ], - [ - "{-token", - "{", - 60339, - 60339, - null - ], - [ - "ident-token", - "--bs-position", - 60340, - 60352, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60353, - 60353, - null - ], - [ - "ident-token", - "end", - 60354, - 60356, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 60357, - 60357, - null - ], - [ - "delim-token", - ".", - 60358, - 60358, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xl-end", - 60359, - 60378, - { - "value": "dropdown-menu-xl-end" - } - ], - [ - "[-token", - "[", - 60379, - 60379, - null - ], - [ - "ident-token", - "data-bs-popper", - 60380, - 60393, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60394, - 60394, - null - ], - [ - "{-token", - "{", - 60395, - 60395, - null - ], - [ - "ident-token", - "right", - 60396, - 60400, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60401, - 60401, - null - ], - [ - "number-token", - "0", - 60402, - 60402, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 60403, - 60403, - null - ], - [ - "ident-token", - "left", - 60404, - 60407, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60408, - 60408, - null - ], - [ - "ident-token", - "auto", - 60409, - 60412, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 60413, - 60413, - null - ], - [ - "}-token", - "}", - 60414, - 60414, - null - ], - [ - "at-keyword-token", - "@media", - 60415, - 60420, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 60421, - 60421, - null - ], - [ - "(-token", - "(", - 60422, - 60422, - null - ], - [ - "ident-token", - "min-width", - 60423, - 60431, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 60432, - 60432, - null - ], - [ - "dimension-token", - "1400px", - 60433, - 60438, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 60439, - 60439, - null - ], - [ - "{-token", - "{", - 60440, - 60440, - null - ], - [ - "delim-token", - ".", - 60441, - 60441, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xxl-start", - 60442, - 60464, - { - "value": "dropdown-menu-xxl-start" - } - ], - [ - "{-token", - "{", - 60465, - 60465, - null - ], - [ - "ident-token", - "--bs-position", - 60466, - 60478, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60479, - 60479, - null - ], - [ - "ident-token", - "start", - 60480, - 60484, - { - "value": "start" - } - ], - [ - "}-token", - "}", - 60485, - 60485, - null - ], - [ - "delim-token", - ".", - 60486, - 60486, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xxl-start", - 60487, - 60509, - { - "value": "dropdown-menu-xxl-start" - } - ], - [ - "[-token", - "[", - 60510, - 60510, - null - ], - [ - "ident-token", - "data-bs-popper", - 60511, - 60524, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60525, - 60525, - null - ], - [ - "{-token", - "{", - 60526, - 60526, - null - ], - [ - "ident-token", - "right", - 60527, - 60531, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60532, - 60532, - null - ], - [ - "ident-token", - "auto", - 60533, - 60536, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 60537, - 60537, - null - ], - [ - "ident-token", - "left", - 60538, - 60541, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60542, - 60542, - null - ], - [ - "number-token", - "0", - 60543, - 60543, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 60544, - 60544, - null - ], - [ - "delim-token", - ".", - 60545, - 60545, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xxl-end", - 60546, - 60566, - { - "value": "dropdown-menu-xxl-end" - } - ], - [ - "{-token", - "{", - 60567, - 60567, - null - ], - [ - "ident-token", - "--bs-position", - 60568, - 60580, - { - "value": "--bs-position" - } - ], - [ - "colon-token", - ":", - 60581, - 60581, - null - ], - [ - "ident-token", - "end", - 60582, - 60584, - { - "value": "end" - } - ], - [ - "}-token", - "}", - 60585, - 60585, - null - ], - [ - "delim-token", - ".", - 60586, - 60586, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-xxl-end", - 60587, - 60607, - { - "value": "dropdown-menu-xxl-end" - } - ], - [ - "[-token", - "[", - 60608, - 60608, - null - ], - [ - "ident-token", - "data-bs-popper", - 60609, - 60622, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60623, - 60623, - null - ], - [ - "{-token", - "{", - 60624, - 60624, - null - ], - [ - "ident-token", - "right", - 60625, - 60629, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 60630, - 60630, - null - ], - [ - "number-token", - "0", - 60631, - 60631, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 60632, - 60632, - null - ], - [ - "ident-token", - "left", - 60633, - 60636, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 60637, - 60637, - null - ], - [ - "ident-token", - "auto", - 60638, - 60641, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 60642, - 60642, - null - ], - [ - "}-token", - "}", - 60643, - 60643, - null - ], - [ - "delim-token", - ".", - 60644, - 60644, - { - "value": "." - } - ], - [ - "ident-token", - "dropup", - 60645, - 60650, - { - "value": "dropup" - } - ], - [ - "whitespace-token", - " ", - 60651, - 60651, - null - ], - [ - "delim-token", - ".", - 60652, - 60652, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 60653, - 60665, - { - "value": "dropdown-menu" - } - ], - [ - "[-token", - "[", - 60666, - 60666, - null - ], - [ - "ident-token", - "data-bs-popper", - 60667, - 60680, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 60681, - 60681, - null - ], - [ - "{-token", - "{", - 60682, - 60682, - null - ], - [ - "ident-token", - "top", - 60683, - 60685, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 60686, - 60686, - null - ], - [ - "ident-token", - "auto", - 60687, - 60690, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 60691, - 60691, - null - ], - [ - "ident-token", - "bottom", - 60692, - 60697, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 60698, - 60698, - null - ], - [ - "percentage-token", - "100%", - 60699, - 60702, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 60703, - 60703, - null - ], - [ - "ident-token", - "margin-top", - 60704, - 60713, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 60714, - 60714, - null - ], - [ - "number-token", - "0", - 60715, - 60715, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 60716, - 60716, - null - ], - [ - "ident-token", - "margin-bottom", - 60717, - 60729, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 60730, - 60730, - null - ], - [ - "function-token", - "var(", - 60731, - 60734, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-spacer", - 60735, - 60754, - { - "value": "--bs-dropdown-spacer" - } - ], - [ - ")-token", - ")", - 60755, - 60755, - null - ], - [ - "}-token", - "}", - 60756, - 60756, - null - ], - [ - "delim-token", - ".", - 60757, - 60757, - { - "value": "." - } - ], - [ - "ident-token", - "dropup", - 60758, - 60763, - { - "value": "dropup" - } - ], - [ - "whitespace-token", - " ", - 60764, - 60764, - null - ], - [ - "delim-token", - ".", - 60765, - 60765, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 60766, - 60780, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 60781, - 60781, - null - ], - [ - "colon-token", - ":", - 60782, - 60782, - null - ], - [ - "ident-token", - "after", - 60783, - 60787, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 60788, - 60788, - null - ], - [ - "ident-token", - "display", - 60789, - 60795, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 60796, - 60796, - null - ], - [ - "ident-token", - "inline-block", - 60797, - 60808, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 60809, - 60809, - null - ], - [ - "ident-token", - "margin-left", - 60810, - 60820, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 60821, - 60821, - null - ], - [ - "dimension-token", - ".255em", - 60822, - 60827, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 60828, - 60828, - null - ], - [ - "ident-token", - "vertical-align", - 60829, - 60842, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 60843, - 60843, - null - ], - [ - "dimension-token", - ".255em", - 60844, - 60849, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 60850, - 60850, - null - ], - [ - "ident-token", - "content", - 60851, - 60857, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 60858, - 60858, - null - ], - [ - "string-token", - "\"\"", - 60859, - 60860, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 60861, - 60861, - null - ], - [ - "ident-token", - "border-top", - 60862, - 60871, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 60872, - 60872, - null - ], - [ - "number-token", - "0", - 60873, - 60873, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 60874, - 60874, - null - ], - [ - "ident-token", - "border-right", - 60875, - 60886, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 60887, - 60887, - null - ], - [ - "dimension-token", - ".3em", - 60888, - 60891, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 60892, - 60892, - null - ], - [ - "ident-token", - "solid", - 60893, - 60897, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 60898, - 60898, - null - ], - [ - "ident-token", - "transparent", - 60899, - 60909, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 60910, - 60910, - null - ], - [ - "ident-token", - "border-bottom", - 60911, - 60923, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 60924, - 60924, - null - ], - [ - "dimension-token", - ".3em", - 60925, - 60928, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 60929, - 60929, - null - ], - [ - "ident-token", - "solid", - 60930, - 60934, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 60935, - 60935, - null - ], - [ - "ident-token", - "border-left", - 60936, - 60946, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 60947, - 60947, - null - ], - [ - "dimension-token", - ".3em", - 60948, - 60951, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 60952, - 60952, - null - ], - [ - "ident-token", - "solid", - 60953, - 60957, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 60958, - 60958, - null - ], - [ - "ident-token", - "transparent", - 60959, - 60969, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 60970, - 60970, - null - ], - [ - "delim-token", - ".", - 60971, - 60971, - { - "value": "." - } - ], - [ - "ident-token", - "dropup", - 60972, - 60977, - { - "value": "dropup" - } - ], - [ - "whitespace-token", - " ", - 60978, - 60978, - null - ], - [ - "delim-token", - ".", - 60979, - 60979, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 60980, - 60994, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 60995, - 60995, - null - ], - [ - "ident-token", - "empty", - 60996, - 61000, - { - "value": "empty" - } - ], - [ - "colon-token", - ":", - 61001, - 61001, - null - ], - [ - "colon-token", - ":", - 61002, - 61002, - null - ], - [ - "ident-token", - "after", - 61003, - 61007, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61008, - 61008, - null - ], - [ - "ident-token", - "margin-left", - 61009, - 61019, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61020, - 61020, - null - ], - [ - "number-token", - "0", - 61021, - 61021, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 61022, - 61022, - null - ], - [ - "delim-token", - ".", - 61023, - 61023, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 61024, - 61030, - { - "value": "dropend" - } - ], - [ - "whitespace-token", - " ", - 61031, - 61031, - null - ], - [ - "delim-token", - ".", - 61032, - 61032, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 61033, - 61045, - { - "value": "dropdown-menu" - } - ], - [ - "[-token", - "[", - 61046, - 61046, - null - ], - [ - "ident-token", - "data-bs-popper", - 61047, - 61060, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 61061, - 61061, - null - ], - [ - "{-token", - "{", - 61062, - 61062, - null - ], - [ - "ident-token", - "top", - 61063, - 61065, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 61066, - 61066, - null - ], - [ - "number-token", - "0", - 61067, - 61067, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 61068, - 61068, - null - ], - [ - "ident-token", - "right", - 61069, - 61073, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 61074, - 61074, - null - ], - [ - "ident-token", - "auto", - 61075, - 61078, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 61079, - 61079, - null - ], - [ - "ident-token", - "left", - 61080, - 61083, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 61084, - 61084, - null - ], - [ - "percentage-token", - "100%", - 61085, - 61088, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 61089, - 61089, - null - ], - [ - "ident-token", - "margin-top", - 61090, - 61099, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 61100, - 61100, - null - ], - [ - "number-token", - "0", - 61101, - 61101, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 61102, - 61102, - null - ], - [ - "ident-token", - "margin-left", - 61103, - 61113, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61114, - 61114, - null - ], - [ - "function-token", - "var(", - 61115, - 61118, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-spacer", - 61119, - 61138, - { - "value": "--bs-dropdown-spacer" - } - ], - [ - ")-token", - ")", - 61139, - 61139, - null - ], - [ - "}-token", - "}", - 61140, - 61140, - null - ], - [ - "delim-token", - ".", - 61141, - 61141, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 61142, - 61148, - { - "value": "dropend" - } - ], - [ - "whitespace-token", - " ", - 61149, - 61149, - null - ], - [ - "delim-token", - ".", - 61150, - 61150, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61151, - 61165, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61166, - 61166, - null - ], - [ - "colon-token", - ":", - 61167, - 61167, - null - ], - [ - "ident-token", - "after", - 61168, - 61172, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61173, - 61173, - null - ], - [ - "ident-token", - "display", - 61174, - 61180, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 61181, - 61181, - null - ], - [ - "ident-token", - "inline-block", - 61182, - 61193, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 61194, - 61194, - null - ], - [ - "ident-token", - "margin-left", - 61195, - 61205, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61206, - 61206, - null - ], - [ - "dimension-token", - ".255em", - 61207, - 61212, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61213, - 61213, - null - ], - [ - "ident-token", - "vertical-align", - 61214, - 61227, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 61228, - 61228, - null - ], - [ - "dimension-token", - ".255em", - 61229, - 61234, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61235, - 61235, - null - ], - [ - "ident-token", - "content", - 61236, - 61242, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 61243, - 61243, - null - ], - [ - "string-token", - "\"\"", - 61244, - 61245, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 61246, - 61246, - null - ], - [ - "ident-token", - "border-top", - 61247, - 61256, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 61257, - 61257, - null - ], - [ - "dimension-token", - ".3em", - 61258, - 61261, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61262, - 61262, - null - ], - [ - "ident-token", - "solid", - 61263, - 61267, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 61268, - 61268, - null - ], - [ - "ident-token", - "transparent", - 61269, - 61279, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 61280, - 61280, - null - ], - [ - "ident-token", - "border-right", - 61281, - 61292, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 61293, - 61293, - null - ], - [ - "number-token", - "0", - 61294, - 61294, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 61295, - 61295, - null - ], - [ - "ident-token", - "border-bottom", - 61296, - 61308, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 61309, - 61309, - null - ], - [ - "dimension-token", - ".3em", - 61310, - 61313, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61314, - 61314, - null - ], - [ - "ident-token", - "solid", - 61315, - 61319, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 61320, - 61320, - null - ], - [ - "ident-token", - "transparent", - 61321, - 61331, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 61332, - 61332, - null - ], - [ - "ident-token", - "border-left", - 61333, - 61343, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 61344, - 61344, - null - ], - [ - "dimension-token", - ".3em", - 61345, - 61348, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61349, - 61349, - null - ], - [ - "ident-token", - "solid", - 61350, - 61354, - { - "value": "solid" - } - ], - [ - "}-token", - "}", - 61355, - 61355, - null - ], - [ - "delim-token", - ".", - 61356, - 61356, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 61357, - 61363, - { - "value": "dropend" - } - ], - [ - "whitespace-token", - " ", - 61364, - 61364, - null - ], - [ - "delim-token", - ".", - 61365, - 61365, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61366, - 61380, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61381, - 61381, - null - ], - [ - "ident-token", - "empty", - 61382, - 61386, - { - "value": "empty" - } - ], - [ - "colon-token", - ":", - 61387, - 61387, - null - ], - [ - "colon-token", - ":", - 61388, - 61388, - null - ], - [ - "ident-token", - "after", - 61389, - 61393, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61394, - 61394, - null - ], - [ - "ident-token", - "margin-left", - 61395, - 61405, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61406, - 61406, - null - ], - [ - "number-token", - "0", - 61407, - 61407, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 61408, - 61408, - null - ], - [ - "delim-token", - ".", - 61409, - 61409, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 61410, - 61416, - { - "value": "dropend" - } - ], - [ - "whitespace-token", - " ", - 61417, - 61417, - null - ], - [ - "delim-token", - ".", - 61418, - 61418, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61419, - 61433, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61434, - 61434, - null - ], - [ - "colon-token", - ":", - 61435, - 61435, - null - ], - [ - "ident-token", - "after", - 61436, - 61440, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61441, - 61441, - null - ], - [ - "ident-token", - "vertical-align", - 61442, - 61455, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 61456, - 61456, - null - ], - [ - "number-token", - "0", - 61457, - 61457, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 61458, - 61458, - null - ], - [ - "delim-token", - ".", - 61459, - 61459, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61460, - 61468, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 61469, - 61469, - null - ], - [ - "delim-token", - ".", - 61470, - 61470, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 61471, - 61483, - { - "value": "dropdown-menu" - } - ], - [ - "[-token", - "[", - 61484, - 61484, - null - ], - [ - "ident-token", - "data-bs-popper", - 61485, - 61498, - { - "value": "data-bs-popper" - } - ], - [ - "]-token", - "]", - 61499, - 61499, - null - ], - [ - "{-token", - "{", - 61500, - 61500, - null - ], - [ - "ident-token", - "top", - 61501, - 61503, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 61504, - 61504, - null - ], - [ - "number-token", - "0", - 61505, - 61505, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 61506, - 61506, - null - ], - [ - "ident-token", - "right", - 61507, - 61511, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 61512, - 61512, - null - ], - [ - "percentage-token", - "100%", - 61513, - 61516, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 61517, - 61517, - null - ], - [ - "ident-token", - "left", - 61518, - 61521, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 61522, - 61522, - null - ], - [ - "ident-token", - "auto", - 61523, - 61526, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 61527, - 61527, - null - ], - [ - "ident-token", - "margin-top", - 61528, - 61537, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 61538, - 61538, - null - ], - [ - "number-token", - "0", - 61539, - 61539, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 61540, - 61540, - null - ], - [ - "ident-token", - "margin-right", - 61541, - 61552, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 61553, - 61553, - null - ], - [ - "function-token", - "var(", - 61554, - 61557, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-spacer", - 61558, - 61577, - { - "value": "--bs-dropdown-spacer" - } - ], - [ - ")-token", - ")", - 61578, - 61578, - null - ], - [ - "}-token", - "}", - 61579, - 61579, - null - ], - [ - "delim-token", - ".", - 61580, - 61580, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61581, - 61589, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 61590, - 61590, - null - ], - [ - "delim-token", - ".", - 61591, - 61591, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61592, - 61606, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61607, - 61607, - null - ], - [ - "colon-token", - ":", - 61608, - 61608, - null - ], - [ - "ident-token", - "after", - 61609, - 61613, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61614, - 61614, - null - ], - [ - "ident-token", - "display", - 61615, - 61621, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 61622, - 61622, - null - ], - [ - "ident-token", - "inline-block", - 61623, - 61634, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 61635, - 61635, - null - ], - [ - "ident-token", - "margin-left", - 61636, - 61646, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61647, - 61647, - null - ], - [ - "dimension-token", - ".255em", - 61648, - 61653, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61654, - 61654, - null - ], - [ - "ident-token", - "vertical-align", - 61655, - 61668, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 61669, - 61669, - null - ], - [ - "dimension-token", - ".255em", - 61670, - 61675, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61676, - 61676, - null - ], - [ - "ident-token", - "content", - 61677, - 61683, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 61684, - 61684, - null - ], - [ - "string-token", - "\"\"", - 61685, - 61686, - { - "value": "" - } - ], - [ - "}-token", - "}", - 61687, - 61687, - null - ], - [ - "delim-token", - ".", - 61688, - 61688, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61689, - 61697, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 61698, - 61698, - null - ], - [ - "delim-token", - ".", - 61699, - 61699, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61700, - 61714, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61715, - 61715, - null - ], - [ - "colon-token", - ":", - 61716, - 61716, - null - ], - [ - "ident-token", - "after", - 61717, - 61721, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61722, - 61722, - null - ], - [ - "ident-token", - "display", - 61723, - 61729, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 61730, - 61730, - null - ], - [ - "ident-token", - "none", - 61731, - 61734, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 61735, - 61735, - null - ], - [ - "delim-token", - ".", - 61736, - 61736, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61737, - 61745, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 61746, - 61746, - null - ], - [ - "delim-token", - ".", - 61747, - 61747, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61748, - 61762, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61763, - 61763, - null - ], - [ - "colon-token", - ":", - 61764, - 61764, - null - ], - [ - "ident-token", - "before", - 61765, - 61770, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 61771, - 61771, - null - ], - [ - "ident-token", - "display", - 61772, - 61778, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 61779, - 61779, - null - ], - [ - "ident-token", - "inline-block", - 61780, - 61791, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 61792, - 61792, - null - ], - [ - "ident-token", - "margin-right", - 61793, - 61804, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 61805, - 61805, - null - ], - [ - "dimension-token", - ".255em", - 61806, - 61811, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61812, - 61812, - null - ], - [ - "ident-token", - "vertical-align", - 61813, - 61826, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 61827, - 61827, - null - ], - [ - "dimension-token", - ".255em", - 61828, - 61833, - { - "value": 0.255, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 61834, - 61834, - null - ], - [ - "ident-token", - "content", - 61835, - 61841, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 61842, - 61842, - null - ], - [ - "string-token", - "\"\"", - 61843, - 61844, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 61845, - 61845, - null - ], - [ - "ident-token", - "border-top", - 61846, - 61855, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 61856, - 61856, - null - ], - [ - "dimension-token", - ".3em", - 61857, - 61860, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61861, - 61861, - null - ], - [ - "ident-token", - "solid", - 61862, - 61866, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 61867, - 61867, - null - ], - [ - "ident-token", - "transparent", - 61868, - 61878, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 61879, - 61879, - null - ], - [ - "ident-token", - "border-right", - 61880, - 61891, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 61892, - 61892, - null - ], - [ - "dimension-token", - ".3em", - 61893, - 61896, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61897, - 61897, - null - ], - [ - "ident-token", - "solid", - 61898, - 61902, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 61903, - 61903, - null - ], - [ - "ident-token", - "border-bottom", - 61904, - 61916, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 61917, - 61917, - null - ], - [ - "dimension-token", - ".3em", - 61918, - 61921, - { - "value": 0.3, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 61922, - 61922, - null - ], - [ - "ident-token", - "solid", - 61923, - 61927, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 61928, - 61928, - null - ], - [ - "ident-token", - "transparent", - 61929, - 61939, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 61940, - 61940, - null - ], - [ - "delim-token", - ".", - 61941, - 61941, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61942, - 61950, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 61951, - 61951, - null - ], - [ - "delim-token", - ".", - 61952, - 61952, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 61953, - 61967, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 61968, - 61968, - null - ], - [ - "ident-token", - "empty", - 61969, - 61973, - { - "value": "empty" - } - ], - [ - "colon-token", - ":", - 61974, - 61974, - null - ], - [ - "colon-token", - ":", - 61975, - 61975, - null - ], - [ - "ident-token", - "after", - 61976, - 61980, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 61981, - 61981, - null - ], - [ - "ident-token", - "margin-left", - 61982, - 61992, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 61993, - 61993, - null - ], - [ - "number-token", - "0", - 61994, - 61994, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 61995, - 61995, - null - ], - [ - "delim-token", - ".", - 61996, - 61996, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 61997, - 62005, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 62006, - 62006, - null - ], - [ - "delim-token", - ".", - 62007, - 62007, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 62008, - 62022, - { - "value": "dropdown-toggle" - } - ], - [ - "colon-token", - ":", - 62023, - 62023, - null - ], - [ - "colon-token", - ":", - 62024, - 62024, - null - ], - [ - "ident-token", - "before", - 62025, - 62030, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 62031, - 62031, - null - ], - [ - "ident-token", - "vertical-align", - 62032, - 62045, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 62046, - 62046, - null - ], - [ - "number-token", - "0", - 62047, - 62047, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 62048, - 62048, - null - ], - [ - "delim-token", - ".", - 62049, - 62049, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-divider", - 62050, - 62065, - { - "value": "dropdown-divider" - } - ], - [ - "{-token", - "{", - 62066, - 62066, - null - ], - [ - "ident-token", - "height", - 62067, - 62072, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 62073, - 62073, - null - ], - [ - "number-token", - "0", - 62074, - 62074, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 62075, - 62075, - null - ], - [ - "ident-token", - "margin", - 62076, - 62081, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 62082, - 62082, - null - ], - [ - "function-token", - "var(", - 62083, - 62086, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-divider-margin-y", - 62087, - 62116, - { - "value": "--bs-dropdown-divider-margin-y" - } - ], - [ - ")-token", - ")", - 62117, - 62117, - null - ], - [ - "whitespace-token", - " ", - 62118, - 62118, - null - ], - [ - "number-token", - "0", - 62119, - 62119, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 62120, - 62120, - null - ], - [ - "ident-token", - "overflow", - 62121, - 62128, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 62129, - 62129, - null - ], - [ - "ident-token", - "hidden", - 62130, - 62135, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 62136, - 62136, - null - ], - [ - "ident-token", - "border-top", - 62137, - 62146, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 62147, - 62147, - null - ], - [ - "dimension-token", - "1px", - 62148, - 62150, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 62151, - 62151, - null - ], - [ - "ident-token", - "solid", - 62152, - 62156, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 62157, - 62157, - null - ], - [ - "function-token", - "var(", - 62158, - 62161, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-divider-bg", - 62162, - 62185, - { - "value": "--bs-dropdown-divider-bg" - } - ], - [ - ")-token", - ")", - 62186, - 62186, - null - ], - [ - "semicolon-token", - ";", - 62187, - 62187, - null - ], - [ - "ident-token", - "opacity", - 62188, - 62194, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 62195, - 62195, - null - ], - [ - "number-token", - "1", - 62196, - 62196, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 62197, - 62197, - null - ], - [ - "delim-token", - ".", - 62198, - 62198, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62199, - 62211, - { - "value": "dropdown-item" - } - ], - [ - "{-token", - "{", - 62212, - 62212, - null - ], - [ - "ident-token", - "display", - 62213, - 62219, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 62220, - 62220, - null - ], - [ - "ident-token", - "block", - 62221, - 62225, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 62226, - 62226, - null - ], - [ - "ident-token", - "width", - 62227, - 62231, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 62232, - 62232, - null - ], - [ - "percentage-token", - "100%", - 62233, - 62236, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 62237, - 62237, - null - ], - [ - "ident-token", - "padding", - 62238, - 62244, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 62245, - 62245, - null - ], - [ - "function-token", - "var(", - 62246, - 62249, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-item-padding-y", - 62250, - 62277, - { - "value": "--bs-dropdown-item-padding-y" - } - ], - [ - ")-token", - ")", - 62278, - 62278, - null - ], - [ - "whitespace-token", - " ", - 62279, - 62279, - null - ], - [ - "function-token", - "var(", - 62280, - 62283, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-item-padding-x", - 62284, - 62311, - { - "value": "--bs-dropdown-item-padding-x" - } - ], - [ - ")-token", - ")", - 62312, - 62312, - null - ], - [ - "semicolon-token", - ";", - 62313, - 62313, - null - ], - [ - "ident-token", - "clear", - 62314, - 62318, - { - "value": "clear" - } - ], - [ - "colon-token", - ":", - 62319, - 62319, - null - ], - [ - "ident-token", - "both", - 62320, - 62323, - { - "value": "both" - } - ], - [ - "semicolon-token", - ";", - 62324, - 62324, - null - ], - [ - "ident-token", - "font-weight", - 62325, - 62335, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 62336, - 62336, - null - ], - [ - "number-token", - "400", - 62337, - 62339, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 62340, - 62340, - null - ], - [ - "ident-token", - "color", - 62341, - 62345, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 62346, - 62346, - null - ], - [ - "function-token", - "var(", - 62347, - 62350, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-color", - 62351, - 62374, - { - "value": "--bs-dropdown-link-color" - } - ], - [ - ")-token", - ")", - 62375, - 62375, - null - ], - [ - "semicolon-token", - ";", - 62376, - 62376, - null - ], - [ - "ident-token", - "text-align", - 62377, - 62386, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 62387, - 62387, - null - ], - [ - "ident-token", - "inherit", - 62388, - 62394, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 62395, - 62395, - null - ], - [ - "ident-token", - "text-decoration", - 62396, - 62410, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 62411, - 62411, - null - ], - [ - "ident-token", - "none", - 62412, - 62415, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 62416, - 62416, - null - ], - [ - "ident-token", - "white-space", - 62417, - 62427, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 62428, - 62428, - null - ], - [ - "ident-token", - "nowrap", - 62429, - 62434, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 62435, - 62435, - null - ], - [ - "ident-token", - "background-color", - 62436, - 62451, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 62452, - 62452, - null - ], - [ - "ident-token", - "transparent", - 62453, - 62463, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 62464, - 62464, - null - ], - [ - "ident-token", - "border", - 62465, - 62470, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 62471, - 62471, - null - ], - [ - "number-token", - "0", - 62472, - 62472, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 62473, - 62473, - null - ], - [ - "delim-token", - ".", - 62474, - 62474, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62475, - 62487, - { - "value": "dropdown-item" - } - ], - [ - "colon-token", - ":", - 62488, - 62488, - null - ], - [ - "ident-token", - "focus", - 62489, - 62493, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 62494, - 62494, - null - ], - [ - "delim-token", - ".", - 62495, - 62495, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62496, - 62508, - { - "value": "dropdown-item" - } - ], - [ - "colon-token", - ":", - 62509, - 62509, - null - ], - [ - "ident-token", - "hover", - 62510, - 62514, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 62515, - 62515, - null - ], - [ - "ident-token", - "color", - 62516, - 62520, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 62521, - 62521, - null - ], - [ - "function-token", - "var(", - 62522, - 62525, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-hover-color", - 62526, - 62555, - { - "value": "--bs-dropdown-link-hover-color" - } - ], - [ - ")-token", - ")", - 62556, - 62556, - null - ], - [ - "semicolon-token", - ";", - 62557, - 62557, - null - ], - [ - "ident-token", - "background-color", - 62558, - 62573, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 62574, - 62574, - null - ], - [ - "function-token", - "var(", - 62575, - 62578, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-hover-bg", - 62579, - 62605, - { - "value": "--bs-dropdown-link-hover-bg" - } - ], - [ - ")-token", - ")", - 62606, - 62606, - null - ], - [ - "}-token", - "}", - 62607, - 62607, - null - ], - [ - "delim-token", - ".", - 62608, - 62608, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62609, - 62621, - { - "value": "dropdown-item" - } - ], - [ - "delim-token", - ".", - 62622, - 62622, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 62623, - 62628, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 62629, - 62629, - null - ], - [ - "delim-token", - ".", - 62630, - 62630, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62631, - 62643, - { - "value": "dropdown-item" - } - ], - [ - "colon-token", - ":", - 62644, - 62644, - null - ], - [ - "ident-token", - "active", - 62645, - 62650, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 62651, - 62651, - null - ], - [ - "ident-token", - "color", - 62652, - 62656, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 62657, - 62657, - null - ], - [ - "function-token", - "var(", - 62658, - 62661, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-active-color", - 62662, - 62692, - { - "value": "--bs-dropdown-link-active-color" - } - ], - [ - ")-token", - ")", - 62693, - 62693, - null - ], - [ - "semicolon-token", - ";", - 62694, - 62694, - null - ], - [ - "ident-token", - "text-decoration", - 62695, - 62709, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 62710, - 62710, - null - ], - [ - "ident-token", - "none", - 62711, - 62714, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 62715, - 62715, - null - ], - [ - "ident-token", - "background-color", - 62716, - 62731, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 62732, - 62732, - null - ], - [ - "function-token", - "var(", - 62733, - 62736, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-active-bg", - 62737, - 62764, - { - "value": "--bs-dropdown-link-active-bg" - } - ], - [ - ")-token", - ")", - 62765, - 62765, - null - ], - [ - "}-token", - "}", - 62766, - 62766, - null - ], - [ - "delim-token", - ".", - 62767, - 62767, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62768, - 62780, - { - "value": "dropdown-item" - } - ], - [ - "delim-token", - ".", - 62781, - 62781, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 62782, - 62789, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 62790, - 62790, - null - ], - [ - "delim-token", - ".", - 62791, - 62791, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item", - 62792, - 62804, - { - "value": "dropdown-item" - } - ], - [ - "colon-token", - ":", - 62805, - 62805, - null - ], - [ - "ident-token", - "disabled", - 62806, - 62813, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 62814, - 62814, - null - ], - [ - "ident-token", - "color", - 62815, - 62819, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 62820, - 62820, - null - ], - [ - "function-token", - "var(", - 62821, - 62824, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-disabled-color", - 62825, - 62857, - { - "value": "--bs-dropdown-link-disabled-color" - } - ], - [ - ")-token", - ")", - 62858, - 62858, - null - ], - [ - "semicolon-token", - ";", - 62859, - 62859, - null - ], - [ - "ident-token", - "pointer-events", - 62860, - 62873, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 62874, - 62874, - null - ], - [ - "ident-token", - "none", - 62875, - 62878, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 62879, - 62879, - null - ], - [ - "ident-token", - "background-color", - 62880, - 62895, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 62896, - 62896, - null - ], - [ - "ident-token", - "transparent", - 62897, - 62907, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 62908, - 62908, - null - ], - [ - "delim-token", - ".", - 62909, - 62909, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 62910, - 62922, - { - "value": "dropdown-menu" - } - ], - [ - "delim-token", - ".", - 62923, - 62923, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 62924, - 62927, - { - "value": "show" - } - ], - [ - "{-token", - "{", - 62928, - 62928, - null - ], - [ - "ident-token", - "display", - 62929, - 62935, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 62936, - 62936, - null - ], - [ - "ident-token", - "block", - 62937, - 62941, - { - "value": "block" - } - ], - [ - "}-token", - "}", - 62942, - 62942, - null - ], - [ - "delim-token", - ".", - 62943, - 62943, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-header", - 62944, - 62958, - { - "value": "dropdown-header" - } - ], - [ - "{-token", - "{", - 62959, - 62959, - null - ], - [ - "ident-token", - "display", - 62960, - 62966, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 62967, - 62967, - null - ], - [ - "ident-token", - "block", - 62968, - 62972, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 62973, - 62973, - null - ], - [ - "ident-token", - "padding", - 62974, - 62980, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 62981, - 62981, - null - ], - [ - "function-token", - "var(", - 62982, - 62985, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-header-padding-y", - 62986, - 63015, - { - "value": "--bs-dropdown-header-padding-y" - } - ], - [ - ")-token", - ")", - 63016, - 63016, - null - ], - [ - "whitespace-token", - " ", - 63017, - 63017, - null - ], - [ - "function-token", - "var(", - 63018, - 63021, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-header-padding-x", - 63022, - 63051, - { - "value": "--bs-dropdown-header-padding-x" - } - ], - [ - ")-token", - ")", - 63052, - 63052, - null - ], - [ - "semicolon-token", - ";", - 63053, - 63053, - null - ], - [ - "ident-token", - "margin-bottom", - 63054, - 63066, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 63067, - 63067, - null - ], - [ - "number-token", - "0", - 63068, - 63068, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 63069, - 63069, - null - ], - [ - "ident-token", - "font-size", - 63070, - 63078, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 63079, - 63079, - null - ], - [ - "dimension-token", - ".875rem", - 63080, - 63086, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 63087, - 63087, - null - ], - [ - "ident-token", - "color", - 63088, - 63092, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 63093, - 63093, - null - ], - [ - "function-token", - "var(", - 63094, - 63097, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-header-color", - 63098, - 63123, - { - "value": "--bs-dropdown-header-color" - } - ], - [ - ")-token", - ")", - 63124, - 63124, - null - ], - [ - "semicolon-token", - ";", - 63125, - 63125, - null - ], - [ - "ident-token", - "white-space", - 63126, - 63136, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 63137, - 63137, - null - ], - [ - "ident-token", - "nowrap", - 63138, - 63143, - { - "value": "nowrap" - } - ], - [ - "}-token", - "}", - 63144, - 63144, - null - ], - [ - "delim-token", - ".", - 63145, - 63145, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-item-text", - 63146, - 63163, - { - "value": "dropdown-item-text" - } - ], - [ - "{-token", - "{", - 63164, - 63164, - null - ], - [ - "ident-token", - "display", - 63165, - 63171, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 63172, - 63172, - null - ], - [ - "ident-token", - "block", - 63173, - 63177, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 63178, - 63178, - null - ], - [ - "ident-token", - "padding", - 63179, - 63185, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 63186, - 63186, - null - ], - [ - "function-token", - "var(", - 63187, - 63190, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-item-padding-y", - 63191, - 63218, - { - "value": "--bs-dropdown-item-padding-y" - } - ], - [ - ")-token", - ")", - 63219, - 63219, - null - ], - [ - "whitespace-token", - " ", - 63220, - 63220, - null - ], - [ - "function-token", - "var(", - 63221, - 63224, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-item-padding-x", - 63225, - 63252, - { - "value": "--bs-dropdown-item-padding-x" - } - ], - [ - ")-token", - ")", - 63253, - 63253, - null - ], - [ - "semicolon-token", - ";", - 63254, - 63254, - null - ], - [ - "ident-token", - "color", - 63255, - 63259, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 63260, - 63260, - null - ], - [ - "function-token", - "var(", - 63261, - 63264, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dropdown-link-color", - 63265, - 63288, - { - "value": "--bs-dropdown-link-color" - } - ], - [ - ")-token", - ")", - 63289, - 63289, - null - ], - [ - "}-token", - "}", - 63290, - 63290, - null - ], - [ - "delim-token", - ".", - 63291, - 63291, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu-dark", - 63292, - 63309, - { - "value": "dropdown-menu-dark" - } - ], - [ - "{-token", - "{", - 63310, - 63310, - null - ], - [ - "ident-token", - "--bs-dropdown-color", - 63311, - 63329, - { - "value": "--bs-dropdown-color" - } - ], - [ - "colon-token", - ":", - 63330, - 63330, - null - ], - [ - "hash-token", - "#dee2e6", - 63331, - 63337, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 63338, - 63338, - null - ], - [ - "ident-token", - "--bs-dropdown-bg", - 63339, - 63354, - { - "value": "--bs-dropdown-bg" - } - ], - [ - "colon-token", - ":", - 63355, - 63355, - null - ], - [ - "hash-token", - "#343a40", - 63356, - 63362, - { - "value": "343a40", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 63363, - 63363, - null - ], - [ - "ident-token", - "--bs-dropdown-border-color", - 63364, - 63389, - { - "value": "--bs-dropdown-border-color" - } - ], - [ - "colon-token", - ":", - 63390, - 63390, - null - ], - [ - "function-token", - "var(", - 63391, - 63394, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 63395, - 63423, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 63424, - 63424, - null - ], - [ - "semicolon-token", - ";", - 63425, - 63425, - null - ], - [ - "ident-token", - "--bs-dropdown-box-shadow", - 63426, - 63449, - { - "value": "--bs-dropdown-box-shadow" - } - ], - [ - "colon-token", - ":", - 63450, - 63450, - null - ], - [ - "whitespace-token", - " ", - 63451, - 63451, - null - ], - [ - "semicolon-token", - ";", - 63452, - 63452, - null - ], - [ - "ident-token", - "--bs-dropdown-link-color", - 63453, - 63476, - { - "value": "--bs-dropdown-link-color" - } - ], - [ - "colon-token", - ":", - 63477, - 63477, - null - ], - [ - "hash-token", - "#dee2e6", - 63478, - 63484, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 63485, - 63485, - null - ], - [ - "ident-token", - "--bs-dropdown-link-hover-color", - 63486, - 63515, - { - "value": "--bs-dropdown-link-hover-color" - } - ], - [ - "colon-token", - ":", - 63516, - 63516, - null - ], - [ - "hash-token", - "#fff", - 63517, - 63520, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 63521, - 63521, - null - ], - [ - "ident-token", - "--bs-dropdown-divider-bg", - 63522, - 63545, - { - "value": "--bs-dropdown-divider-bg" - } - ], - [ - "colon-token", - ":", - 63546, - 63546, - null - ], - [ - "function-token", - "var(", - 63547, - 63550, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 63551, - 63579, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 63580, - 63580, - null - ], - [ - "semicolon-token", - ";", - 63581, - 63581, - null - ], - [ - "ident-token", - "--bs-dropdown-link-hover-bg", - 63582, - 63608, - { - "value": "--bs-dropdown-link-hover-bg" - } - ], - [ - "colon-token", - ":", - 63609, - 63609, - null - ], - [ - "function-token", - "rgba(", - 63610, - 63614, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 63615, - 63617, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 63618, - 63618, - null - ], - [ - "whitespace-token", - " ", - 63619, - 63619, - null - ], - [ - "number-token", - "255", - 63620, - 63622, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 63623, - 63623, - null - ], - [ - "whitespace-token", - " ", - 63624, - 63624, - null - ], - [ - "number-token", - "255", - 63625, - 63627, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 63628, - 63628, - null - ], - [ - "whitespace-token", - " ", - 63629, - 63629, - null - ], - [ - "number-token", - "0.15", - 63630, - 63633, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 63634, - 63634, - null - ], - [ - "semicolon-token", - ";", - 63635, - 63635, - null - ], - [ - "ident-token", - "--bs-dropdown-link-active-color", - 63636, - 63666, - { - "value": "--bs-dropdown-link-active-color" - } - ], - [ - "colon-token", - ":", - 63667, - 63667, - null - ], - [ - "hash-token", - "#fff", - 63668, - 63671, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 63672, - 63672, - null - ], - [ - "ident-token", - "--bs-dropdown-link-active-bg", - 63673, - 63700, - { - "value": "--bs-dropdown-link-active-bg" - } - ], - [ - "colon-token", - ":", - 63701, - 63701, - null - ], - [ - "hash-token", - "#0d6efd", - 63702, - 63708, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 63709, - 63709, - null - ], - [ - "ident-token", - "--bs-dropdown-link-disabled-color", - 63710, - 63742, - { - "value": "--bs-dropdown-link-disabled-color" - } - ], - [ - "colon-token", - ":", - 63743, - 63743, - null - ], - [ - "hash-token", - "#adb5bd", - 63744, - 63750, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 63751, - 63751, - null - ], - [ - "ident-token", - "--bs-dropdown-header-color", - 63752, - 63777, - { - "value": "--bs-dropdown-header-color" - } - ], - [ - "colon-token", - ":", - 63778, - 63778, - null - ], - [ - "hash-token", - "#adb5bd", - 63779, - 63785, - { - "value": "adb5bd", - "type": "id" - } - ], - [ - "}-token", - "}", - 63786, - 63786, - null - ], - [ - "delim-token", - ".", - 63787, - 63787, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 63788, - 63796, - { - "value": "btn-group" - } - ], - [ - "comma-token", - ",", - 63797, - 63797, - null - ], - [ - "delim-token", - ".", - 63798, - 63798, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 63799, - 63816, - { - "value": "btn-group-vertical" - } - ], - [ - "{-token", - "{", - 63817, - 63817, - null - ], - [ - "ident-token", - "position", - 63818, - 63825, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 63826, - 63826, - null - ], - [ - "ident-token", - "relative", - 63827, - 63834, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 63835, - 63835, - null - ], - [ - "ident-token", - "display", - 63836, - 63842, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 63843, - 63843, - null - ], - [ - "ident-token", - "inline-flex", - 63844, - 63854, - { - "value": "inline-flex" - } - ], - [ - "semicolon-token", - ";", - 63855, - 63855, - null - ], - [ - "ident-token", - "vertical-align", - 63856, - 63869, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 63870, - 63870, - null - ], - [ - "ident-token", - "middle", - 63871, - 63876, - { - "value": "middle" - } - ], - [ - "}-token", - "}", - 63877, - 63877, - null - ], - [ - "delim-token", - ".", - 63878, - 63878, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 63879, - 63896, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 63897, - 63897, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 63898, - 63898, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 63899, - 63901, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 63902, - 63902, - null - ], - [ - "delim-token", - ".", - 63903, - 63903, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 63904, - 63912, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 63913, - 63913, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 63914, - 63914, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 63915, - 63917, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 63918, - 63918, - null - ], - [ - "ident-token", - "position", - 63919, - 63926, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 63927, - 63927, - null - ], - [ - "ident-token", - "relative", - 63928, - 63935, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 63936, - 63936, - null - ], - [ - "ident-token", - "flex", - 63937, - 63940, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 63941, - 63941, - null - ], - [ - "number-token", - "1", - 63942, - 63942, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 63943, - 63943, - null - ], - [ - "number-token", - "1", - 63944, - 63944, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 63945, - 63945, - null - ], - [ - "ident-token", - "auto", - 63946, - 63949, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 63950, - 63950, - null - ], - [ - "delim-token", - ".", - 63951, - 63951, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 63952, - 63969, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 63970, - 63970, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 63971, - 63971, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 63972, - 63980, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 63981, - 63981, - null - ], - [ - "ident-token", - "checked", - 63982, - 63988, - { - "value": "checked" - } - ], - [ - "delim-token", - "+", - 63989, - 63989, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 63990, - 63990, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 63991, - 63993, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 63994, - 63994, - null - ], - [ - "delim-token", - ".", - 63995, - 63995, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 63996, - 64013, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 64014, - 64014, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64015, - 64015, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 64016, - 64024, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 64025, - 64025, - null - ], - [ - "ident-token", - "focus", - 64026, - 64030, - { - "value": "focus" - } - ], - [ - "delim-token", - "+", - 64031, - 64031, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 64032, - 64032, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64033, - 64035, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 64036, - 64036, - null - ], - [ - "delim-token", - ".", - 64037, - 64037, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 64038, - 64055, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 64056, - 64056, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64057, - 64057, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64058, - 64060, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 64061, - 64061, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 64062, - 64067, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 64068, - 64068, - null - ], - [ - "delim-token", - ".", - 64069, - 64069, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 64070, - 64087, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 64088, - 64088, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64089, - 64089, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64090, - 64092, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64093, - 64093, - null - ], - [ - "ident-token", - "active", - 64094, - 64099, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 64100, - 64100, - null - ], - [ - "delim-token", - ".", - 64101, - 64101, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 64102, - 64119, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 64120, - 64120, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64121, - 64121, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64122, - 64124, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64125, - 64125, - null - ], - [ - "ident-token", - "focus", - 64126, - 64130, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 64131, - 64131, - null - ], - [ - "delim-token", - ".", - 64132, - 64132, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 64133, - 64150, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 64151, - 64151, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64152, - 64152, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64153, - 64155, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64156, - 64156, - null - ], - [ - "ident-token", - "hover", - 64157, - 64161, - { - "value": "hover" - } - ], - [ - "comma-token", - ",", - 64162, - 64162, - null - ], - [ - "delim-token", - ".", - 64163, - 64163, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64164, - 64172, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64173, - 64173, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64174, - 64174, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 64175, - 64183, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 64184, - 64184, - null - ], - [ - "ident-token", - "checked", - 64185, - 64191, - { - "value": "checked" - } - ], - [ - "delim-token", - "+", - 64192, - 64192, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 64193, - 64193, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64194, - 64196, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 64197, - 64197, - null - ], - [ - "delim-token", - ".", - 64198, - 64198, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64199, - 64207, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64208, - 64208, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64209, - 64209, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 64210, - 64218, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 64219, - 64219, - null - ], - [ - "ident-token", - "focus", - 64220, - 64224, - { - "value": "focus" - } - ], - [ - "delim-token", - "+", - 64225, - 64225, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 64226, - 64226, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64227, - 64229, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 64230, - 64230, - null - ], - [ - "delim-token", - ".", - 64231, - 64231, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64232, - 64240, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64241, - 64241, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64242, - 64242, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64243, - 64245, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 64246, - 64246, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 64247, - 64252, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 64253, - 64253, - null - ], - [ - "delim-token", - ".", - 64254, - 64254, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64255, - 64263, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64264, - 64264, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64265, - 64265, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64266, - 64268, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64269, - 64269, - null - ], - [ - "ident-token", - "active", - 64270, - 64275, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 64276, - 64276, - null - ], - [ - "delim-token", - ".", - 64277, - 64277, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64278, - 64286, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64287, - 64287, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64288, - 64288, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64289, - 64291, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64292, - 64292, - null - ], - [ - "ident-token", - "focus", - 64293, - 64297, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 64298, - 64298, - null - ], - [ - "delim-token", - ".", - 64299, - 64299, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64300, - 64308, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64309, - 64309, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64310, - 64310, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64311, - 64313, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64314, - 64314, - null - ], - [ - "ident-token", - "hover", - 64315, - 64319, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 64320, - 64320, - null - ], - [ - "ident-token", - "z-index", - 64321, - 64327, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 64328, - 64328, - null - ], - [ - "number-token", - "1", - 64329, - 64329, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 64330, - 64330, - null - ], - [ - "delim-token", - ".", - 64331, - 64331, - { - "value": "." - } - ], - [ - "ident-token", - "btn-toolbar", - 64332, - 64342, - { - "value": "btn-toolbar" - } - ], - [ - "{-token", - "{", - 64343, - 64343, - null - ], - [ - "ident-token", - "display", - 64344, - 64350, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 64351, - 64351, - null - ], - [ - "ident-token", - "flex", - 64352, - 64355, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 64356, - 64356, - null - ], - [ - "ident-token", - "flex-wrap", - 64357, - 64365, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 64366, - 64366, - null - ], - [ - "ident-token", - "wrap", - 64367, - 64370, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 64371, - 64371, - null - ], - [ - "ident-token", - "justify-content", - 64372, - 64386, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 64387, - 64387, - null - ], - [ - "ident-token", - "flex-start", - 64388, - 64397, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 64398, - 64398, - null - ], - [ - "delim-token", - ".", - 64399, - 64399, - { - "value": "." - } - ], - [ - "ident-token", - "btn-toolbar", - 64400, - 64410, - { - "value": "btn-toolbar" - } - ], - [ - "whitespace-token", - " ", - 64411, - 64411, - null - ], - [ - "delim-token", - ".", - 64412, - 64412, - { - "value": "." - } - ], - [ - "ident-token", - "input-group", - 64413, - 64423, - { - "value": "input-group" - } - ], - [ - "{-token", - "{", - 64424, - 64424, - null - ], - [ - "ident-token", - "width", - 64425, - 64429, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 64430, - 64430, - null - ], - [ - "ident-token", - "auto", - 64431, - 64434, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 64435, - 64435, - null - ], - [ - "delim-token", - ".", - 64436, - 64436, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64437, - 64445, - { - "value": "btn-group" - } - ], - [ - "{-token", - "{", - 64446, - 64446, - null - ], - [ - "ident-token", - "border-radius", - 64447, - 64459, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 64460, - 64460, - null - ], - [ - "dimension-token", - ".375rem", - 64461, - 64467, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 64468, - 64468, - null - ], - [ - "delim-token", - ".", - 64469, - 64469, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64470, - 64478, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64479, - 64479, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64480, - 64480, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64481, - 64489, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 64490, - 64490, - null - ], - [ - "function-token", - "not(", - 64491, - 64494, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 64495, - 64495, - null - ], - [ - "ident-token", - "first-child", - 64496, - 64506, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 64507, - 64507, - null - ], - [ - "comma-token", - ",", - 64508, - 64508, - null - ], - [ - "delim-token", - ".", - 64509, - 64509, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64510, - 64518, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64519, - 64519, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 64520, - 64520, - null - ], - [ - "function-token", - "not(", - 64521, - 64524, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 64525, - 64525, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 64526, - 64534, - { - "value": "btn-check" - } - ], - [ - "colon-token", - ":", - 64535, - 64535, - null - ], - [ - "ident-token", - "first-child", - 64536, - 64546, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 64547, - 64547, - null - ], - [ - "delim-token", - "+", - 64548, - 64548, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 64549, - 64549, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64550, - 64552, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 64553, - 64553, - null - ], - [ - "ident-token", - "margin-left", - 64554, - 64564, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 64565, - 64565, - null - ], - [ - "dimension-token", - "-1px", - 64566, - 64569, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 64570, - 64570, - null - ], - [ - "delim-token", - ".", - 64571, - 64571, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64572, - 64580, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64581, - 64581, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64582, - 64582, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64583, - 64591, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 64592, - 64592, - null - ], - [ - "function-token", - "not(", - 64593, - 64596, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 64597, - 64597, - null - ], - [ - "ident-token", - "last-child", - 64598, - 64607, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 64608, - 64608, - null - ], - [ - "delim-token", - ">", - 64609, - 64609, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64610, - 64610, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64611, - 64613, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 64614, - 64614, - null - ], - [ - "delim-token", - ".", - 64615, - 64615, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64616, - 64624, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64625, - 64625, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64626, - 64626, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64627, - 64629, - { - "value": "btn" - } - ], - [ - "delim-token", - ".", - 64630, - 64630, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 64631, - 64651, - { - "value": "dropdown-toggle-split" - } - ], - [ - "colon-token", - ":", - 64652, - 64652, - null - ], - [ - "ident-token", - "first-child", - 64653, - 64663, - { - "value": "first-child" - } - ], - [ - "comma-token", - ",", - 64664, - 64664, - null - ], - [ - "delim-token", - ".", - 64665, - 64665, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64666, - 64674, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64675, - 64675, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64676, - 64676, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64677, - 64679, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64680, - 64680, - null - ], - [ - "function-token", - "not(", - 64681, - 64684, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 64685, - 64685, - null - ], - [ - "ident-token", - "last-child", - 64686, - 64695, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 64696, - 64696, - null - ], - [ - "colon-token", - ":", - 64697, - 64697, - null - ], - [ - "function-token", - "not(", - 64698, - 64701, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 64702, - 64702, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 64703, - 64717, - { - "value": "dropdown-toggle" - } - ], - [ - ")-token", - ")", - 64718, - 64718, - null - ], - [ - "{-token", - "{", - 64719, - 64719, - null - ], - [ - "ident-token", - "border-top-right-radius", - 64720, - 64742, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 64743, - 64743, - null - ], - [ - "number-token", - "0", - 64744, - 64744, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 64745, - 64745, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 64746, - 64771, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 64772, - 64772, - null - ], - [ - "number-token", - "0", - 64773, - 64773, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 64774, - 64774, - null - ], - [ - "delim-token", - ".", - 64775, - 64775, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64776, - 64784, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64785, - 64785, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64786, - 64786, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64787, - 64795, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 64796, - 64796, - null - ], - [ - "function-token", - "not(", - 64797, - 64800, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 64801, - 64801, - null - ], - [ - "ident-token", - "first-child", - 64802, - 64812, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 64813, - 64813, - null - ], - [ - "delim-token", - ">", - 64814, - 64814, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64815, - 64815, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64816, - 64818, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 64819, - 64819, - null - ], - [ - "delim-token", - ".", - 64820, - 64820, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64821, - 64829, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64830, - 64830, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 64831, - 64831, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64832, - 64834, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 64835, - 64835, - null - ], - [ - "function-token", - "nth-child(", - 64836, - 64845, - { - "value": "nth-child" - } - ], - [ - "ident-token", - "n", - 64846, - 64846, - { - "value": "n" - } - ], - [ - "number-token", - "+3", - 64847, - 64848, - { - "value": 3, - "type": "integer" - } - ], - [ - ")-token", - ")", - 64849, - 64849, - null - ], - [ - "comma-token", - ",", - 64850, - 64850, - null - ], - [ - "delim-token", - ".", - 64851, - 64851, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 64852, - 64860, - { - "value": "btn-group" - } - ], - [ - "delim-token", - ">", - 64861, - 64861, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 64862, - 64862, - null - ], - [ - "function-token", - "not(", - 64863, - 64866, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 64867, - 64867, - { - "value": "." - } - ], - [ - "ident-token", - "btn-check", - 64868, - 64876, - { - "value": "btn-check" - } - ], - [ - ")-token", - ")", - 64877, - 64877, - null - ], - [ - "delim-token", - "+", - 64878, - 64878, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 64879, - 64879, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 64880, - 64882, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 64883, - 64883, - null - ], - [ - "ident-token", - "border-top-left-radius", - 64884, - 64905, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 64906, - 64906, - null - ], - [ - "number-token", - "0", - 64907, - 64907, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 64908, - 64908, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 64909, - 64933, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 64934, - 64934, - null - ], - [ - "number-token", - "0", - 64935, - 64935, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 64936, - 64936, - null - ], - [ - "delim-token", - ".", - 64937, - 64937, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 64938, - 64958, - { - "value": "dropdown-toggle-split" - } - ], - [ - "{-token", - "{", - 64959, - 64959, - null - ], - [ - "ident-token", - "padding-right", - 64960, - 64972, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 64973, - 64973, - null - ], - [ - "dimension-token", - ".5625rem", - 64974, - 64981, - { - "value": 0.5625, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 64982, - 64982, - null - ], - [ - "ident-token", - "padding-left", - 64983, - 64994, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 64995, - 64995, - null - ], - [ - "dimension-token", - ".5625rem", - 64996, - 65003, - { - "value": 0.5625, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 65004, - 65004, - null - ], - [ - "delim-token", - ".", - 65005, - 65005, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65006, - 65026, - { - "value": "dropdown-toggle-split" - } - ], - [ - "colon-token", - ":", - 65027, - 65027, - null - ], - [ - "colon-token", - ":", - 65028, - 65028, - null - ], - [ - "ident-token", - "after", - 65029, - 65033, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 65034, - 65034, - null - ], - [ - "delim-token", - ".", - 65035, - 65035, - { - "value": "." - } - ], - [ - "ident-token", - "dropend", - 65036, - 65042, - { - "value": "dropend" - } - ], - [ - "whitespace-token", - " ", - 65043, - 65043, - null - ], - [ - "delim-token", - ".", - 65044, - 65044, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65045, - 65065, - { - "value": "dropdown-toggle-split" - } - ], - [ - "colon-token", - ":", - 65066, - 65066, - null - ], - [ - "colon-token", - ":", - 65067, - 65067, - null - ], - [ - "ident-token", - "after", - 65068, - 65072, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 65073, - 65073, - null - ], - [ - "delim-token", - ".", - 65074, - 65074, - { - "value": "." - } - ], - [ - "ident-token", - "dropup", - 65075, - 65080, - { - "value": "dropup" - } - ], - [ - "whitespace-token", - " ", - 65081, - 65081, - null - ], - [ - "delim-token", - ".", - 65082, - 65082, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65083, - 65103, - { - "value": "dropdown-toggle-split" - } - ], - [ - "colon-token", - ":", - 65104, - 65104, - null - ], - [ - "colon-token", - ":", - 65105, - 65105, - null - ], - [ - "ident-token", - "after", - 65106, - 65110, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 65111, - 65111, - null - ], - [ - "ident-token", - "margin-left", - 65112, - 65122, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 65123, - 65123, - null - ], - [ - "number-token", - "0", - 65124, - 65124, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 65125, - 65125, - null - ], - [ - "delim-token", - ".", - 65126, - 65126, - { - "value": "." - } - ], - [ - "ident-token", - "dropstart", - 65127, - 65135, - { - "value": "dropstart" - } - ], - [ - "whitespace-token", - " ", - 65136, - 65136, - null - ], - [ - "delim-token", - ".", - 65137, - 65137, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65138, - 65158, - { - "value": "dropdown-toggle-split" - } - ], - [ - "colon-token", - ":", - 65159, - 65159, - null - ], - [ - "colon-token", - ":", - 65160, - 65160, - null - ], - [ - "ident-token", - "before", - 65161, - 65166, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 65167, - 65167, - null - ], - [ - "ident-token", - "margin-right", - 65168, - 65179, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 65180, - 65180, - null - ], - [ - "number-token", - "0", - 65181, - 65181, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 65182, - 65182, - null - ], - [ - "delim-token", - ".", - 65183, - 65183, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-sm", - 65184, - 65195, - { - "value": "btn-group-sm" - } - ], - [ - "delim-token", - ">", - 65196, - 65196, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65197, - 65197, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65198, - 65200, - { - "value": "btn" - } - ], - [ - "delim-token", - "+", - 65201, - 65201, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 65202, - 65202, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65203, - 65223, - { - "value": "dropdown-toggle-split" - } - ], - [ - "comma-token", - ",", - 65224, - 65224, - null - ], - [ - "delim-token", - ".", - 65225, - 65225, - { - "value": "." - } - ], - [ - "ident-token", - "btn-sm", - 65226, - 65231, - { - "value": "btn-sm" - } - ], - [ - "delim-token", - "+", - 65232, - 65232, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 65233, - 65233, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65234, - 65254, - { - "value": "dropdown-toggle-split" - } - ], - [ - "{-token", - "{", - 65255, - 65255, - null - ], - [ - "ident-token", - "padding-right", - 65256, - 65268, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 65269, - 65269, - null - ], - [ - "dimension-token", - ".375rem", - 65270, - 65276, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 65277, - 65277, - null - ], - [ - "ident-token", - "padding-left", - 65278, - 65289, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 65290, - 65290, - null - ], - [ - "dimension-token", - ".375rem", - 65291, - 65297, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 65298, - 65298, - null - ], - [ - "delim-token", - ".", - 65299, - 65299, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-lg", - 65300, - 65311, - { - "value": "btn-group-lg" - } - ], - [ - "delim-token", - ">", - 65312, - 65312, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65313, - 65313, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65314, - 65316, - { - "value": "btn" - } - ], - [ - "delim-token", - "+", - 65317, - 65317, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 65318, - 65318, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65319, - 65339, - { - "value": "dropdown-toggle-split" - } - ], - [ - "comma-token", - ",", - 65340, - 65340, - null - ], - [ - "delim-token", - ".", - 65341, - 65341, - { - "value": "." - } - ], - [ - "ident-token", - "btn-lg", - 65342, - 65347, - { - "value": "btn-lg" - } - ], - [ - "delim-token", - "+", - 65348, - 65348, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 65349, - 65349, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle-split", - 65350, - 65370, - { - "value": "dropdown-toggle-split" - } - ], - [ - "{-token", - "{", - 65371, - 65371, - null - ], - [ - "ident-token", - "padding-right", - 65372, - 65384, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 65385, - 65385, - null - ], - [ - "dimension-token", - ".75rem", - 65386, - 65391, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 65392, - 65392, - null - ], - [ - "ident-token", - "padding-left", - 65393, - 65404, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 65405, - 65405, - null - ], - [ - "dimension-token", - ".75rem", - 65406, - 65411, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 65412, - 65412, - null - ], - [ - "delim-token", - ".", - 65413, - 65413, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65414, - 65431, - { - "value": "btn-group-vertical" - } - ], - [ - "{-token", - "{", - 65432, - 65432, - null - ], - [ - "ident-token", - "flex-direction", - 65433, - 65446, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 65447, - 65447, - null - ], - [ - "ident-token", - "column", - 65448, - 65453, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 65454, - 65454, - null - ], - [ - "ident-token", - "align-items", - 65455, - 65465, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 65466, - 65466, - null - ], - [ - "ident-token", - "flex-start", - 65467, - 65476, - { - "value": "flex-start" - } - ], - [ - "semicolon-token", - ";", - 65477, - 65477, - null - ], - [ - "ident-token", - "justify-content", - 65478, - 65492, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 65493, - 65493, - null - ], - [ - "ident-token", - "center", - 65494, - 65499, - { - "value": "center" - } - ], - [ - "}-token", - "}", - 65500, - 65500, - null - ], - [ - "delim-token", - ".", - 65501, - 65501, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65502, - 65519, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65520, - 65520, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65521, - 65521, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65522, - 65524, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 65525, - 65525, - null - ], - [ - "delim-token", - ".", - 65526, - 65526, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65527, - 65544, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65545, - 65545, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65546, - 65546, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 65547, - 65555, - { - "value": "btn-group" - } - ], - [ - "{-token", - "{", - 65556, - 65556, - null - ], - [ - "ident-token", - "width", - 65557, - 65561, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 65562, - 65562, - null - ], - [ - "percentage-token", - "100%", - 65563, - 65566, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 65567, - 65567, - null - ], - [ - "delim-token", - ".", - 65568, - 65568, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65569, - 65586, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65587, - 65587, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65588, - 65588, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 65589, - 65597, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 65598, - 65598, - null - ], - [ - "function-token", - "not(", - 65599, - 65602, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 65603, - 65603, - null - ], - [ - "ident-token", - "first-child", - 65604, - 65614, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 65615, - 65615, - null - ], - [ - "comma-token", - ",", - 65616, - 65616, - null - ], - [ - "delim-token", - ".", - 65617, - 65617, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65618, - 65635, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65636, - 65636, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65637, - 65637, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65638, - 65640, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 65641, - 65641, - null - ], - [ - "function-token", - "not(", - 65642, - 65645, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 65646, - 65646, - null - ], - [ - "ident-token", - "first-child", - 65647, - 65657, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 65658, - 65658, - null - ], - [ - "{-token", - "{", - 65659, - 65659, - null - ], - [ - "ident-token", - "margin-top", - 65660, - 65669, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 65670, - 65670, - null - ], - [ - "dimension-token", - "-1px", - 65671, - 65674, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 65675, - 65675, - null - ], - [ - "delim-token", - ".", - 65676, - 65676, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65677, - 65694, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65695, - 65695, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65696, - 65696, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 65697, - 65705, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 65706, - 65706, - null - ], - [ - "function-token", - "not(", - 65707, - 65710, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 65711, - 65711, - null - ], - [ - "ident-token", - "last-child", - 65712, - 65721, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 65722, - 65722, - null - ], - [ - "delim-token", - ">", - 65723, - 65723, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65724, - 65724, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65725, - 65727, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 65728, - 65728, - null - ], - [ - "delim-token", - ".", - 65729, - 65729, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65730, - 65747, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65748, - 65748, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65749, - 65749, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65750, - 65752, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 65753, - 65753, - null - ], - [ - "function-token", - "not(", - 65754, - 65757, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 65758, - 65758, - null - ], - [ - "ident-token", - "last-child", - 65759, - 65768, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 65769, - 65769, - null - ], - [ - "colon-token", - ":", - 65770, - 65770, - null - ], - [ - "function-token", - "not(", - 65771, - 65774, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 65775, - 65775, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-toggle", - 65776, - 65790, - { - "value": "dropdown-toggle" - } - ], - [ - ")-token", - ")", - 65791, - 65791, - null - ], - [ - "{-token", - "{", - 65792, - 65792, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 65793, - 65818, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 65819, - 65819, - null - ], - [ - "number-token", - "0", - 65820, - 65820, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 65821, - 65821, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 65822, - 65846, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 65847, - 65847, - null - ], - [ - "number-token", - "0", - 65848, - 65848, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 65849, - 65849, - null - ], - [ - "delim-token", - ".", - 65850, - 65850, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65851, - 65868, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65869, - 65869, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65870, - 65870, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group", - 65871, - 65879, - { - "value": "btn-group" - } - ], - [ - "colon-token", - ":", - 65880, - 65880, - null - ], - [ - "function-token", - "not(", - 65881, - 65884, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 65885, - 65885, - null - ], - [ - "ident-token", - "first-child", - 65886, - 65896, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 65897, - 65897, - null - ], - [ - "delim-token", - ">", - 65898, - 65898, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65899, - 65899, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65900, - 65902, - { - "value": "btn" - } - ], - [ - "comma-token", - ",", - 65903, - 65903, - null - ], - [ - "delim-token", - ".", - 65904, - 65904, - { - "value": "." - } - ], - [ - "ident-token", - "btn-group-vertical", - 65905, - 65922, - { - "value": "btn-group-vertical" - } - ], - [ - "delim-token", - ">", - 65923, - 65923, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 65924, - 65924, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65925, - 65927, - { - "value": "btn" - } - ], - [ - "delim-token", - "~", - 65928, - 65928, - { - "value": "~" - } - ], - [ - "delim-token", - ".", - 65929, - 65929, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 65930, - 65932, - { - "value": "btn" - } - ], - [ - "{-token", - "{", - 65933, - 65933, - null - ], - [ - "ident-token", - "border-top-left-radius", - 65934, - 65955, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 65956, - 65956, - null - ], - [ - "number-token", - "0", - 65957, - 65957, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 65958, - 65958, - null - ], - [ - "ident-token", - "border-top-right-radius", - 65959, - 65981, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 65982, - 65982, - null - ], - [ - "number-token", - "0", - 65983, - 65983, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 65984, - 65984, - null - ], - [ - "delim-token", - ".", - 65985, - 65985, - { - "value": "." - } - ], - [ - "ident-token", - "nav", - 65986, - 65988, - { - "value": "nav" - } - ], - [ - "{-token", - "{", - 65989, - 65989, - null - ], - [ - "ident-token", - "--bs-nav-link-padding-x", - 65990, - 66012, - { - "value": "--bs-nav-link-padding-x" - } - ], - [ - "colon-token", - ":", - 66013, - 66013, - null - ], - [ - "dimension-token", - "1rem", - 66014, - 66017, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 66018, - 66018, - null - ], - [ - "ident-token", - "--bs-nav-link-padding-y", - 66019, - 66041, - { - "value": "--bs-nav-link-padding-y" - } - ], - [ - "colon-token", - ":", - 66042, - 66042, - null - ], - [ - "dimension-token", - "0.5rem", - 66043, - 66048, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 66049, - 66049, - null - ], - [ - "ident-token", - "--bs-nav-link-font-weight", - 66050, - 66074, - { - "value": "--bs-nav-link-font-weight" - } - ], - [ - "colon-token", - ":", - 66075, - 66075, - null - ], - [ - "whitespace-token", - " ", - 66076, - 66076, - null - ], - [ - "semicolon-token", - ";", - 66077, - 66077, - null - ], - [ - "ident-token", - "--bs-nav-link-color", - 66078, - 66096, - { - "value": "--bs-nav-link-color" - } - ], - [ - "colon-token", - ":", - 66097, - 66097, - null - ], - [ - "function-token", - "var(", - 66098, - 66101, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-color", - 66102, - 66116, - { - "value": "--bs-link-color" - } - ], - [ - ")-token", - ")", - 66117, - 66117, - null - ], - [ - "semicolon-token", - ";", - 66118, - 66118, - null - ], - [ - "ident-token", - "--bs-nav-link-hover-color", - 66119, - 66143, - { - "value": "--bs-nav-link-hover-color" - } - ], - [ - "colon-token", - ":", - 66144, - 66144, - null - ], - [ - "function-token", - "var(", - 66145, - 66148, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 66149, - 66169, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 66170, - 66170, - null - ], - [ - "semicolon-token", - ";", - 66171, - 66171, - null - ], - [ - "ident-token", - "--bs-nav-link-disabled-color", - 66172, - 66199, - { - "value": "--bs-nav-link-disabled-color" - } - ], - [ - "colon-token", - ":", - 66200, - 66200, - null - ], - [ - "hash-token", - "#6c757d", - 66201, - 66207, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 66208, - 66208, - null - ], - [ - "ident-token", - "display", - 66209, - 66215, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 66216, - 66216, - null - ], - [ - "ident-token", - "flex", - 66217, - 66220, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 66221, - 66221, - null - ], - [ - "ident-token", - "flex-wrap", - 66222, - 66230, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 66231, - 66231, - null - ], - [ - "ident-token", - "wrap", - 66232, - 66235, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 66236, - 66236, - null - ], - [ - "ident-token", - "padding-left", - 66237, - 66248, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 66249, - 66249, - null - ], - [ - "number-token", - "0", - 66250, - 66250, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 66251, - 66251, - null - ], - [ - "ident-token", - "margin-bottom", - 66252, - 66264, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 66265, - 66265, - null - ], - [ - "number-token", - "0", - 66266, - 66266, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 66267, - 66267, - null - ], - [ - "ident-token", - "list-style", - 66268, - 66277, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 66278, - 66278, - null - ], - [ - "ident-token", - "none", - 66279, - 66282, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 66283, - 66283, - null - ], - [ - "delim-token", - ".", - 66284, - 66284, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 66285, - 66292, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 66293, - 66293, - null - ], - [ - "ident-token", - "display", - 66294, - 66300, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 66301, - 66301, - null - ], - [ - "ident-token", - "block", - 66302, - 66306, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 66307, - 66307, - null - ], - [ - "ident-token", - "padding", - 66308, - 66314, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 66315, - 66315, - null - ], - [ - "function-token", - "var(", - 66316, - 66319, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-padding-y", - 66320, - 66342, - { - "value": "--bs-nav-link-padding-y" - } - ], - [ - ")-token", - ")", - 66343, - 66343, - null - ], - [ - "whitespace-token", - " ", - 66344, - 66344, - null - ], - [ - "function-token", - "var(", - 66345, - 66348, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-padding-x", - 66349, - 66371, - { - "value": "--bs-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 66372, - 66372, - null - ], - [ - "semicolon-token", - ";", - 66373, - 66373, - null - ], - [ - "ident-token", - "font-size", - 66374, - 66382, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 66383, - 66383, - null - ], - [ - "function-token", - "var(", - 66384, - 66387, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-font-size", - 66388, - 66410, - { - "value": "--bs-nav-link-font-size" - } - ], - [ - ")-token", - ")", - 66411, - 66411, - null - ], - [ - "semicolon-token", - ";", - 66412, - 66412, - null - ], - [ - "ident-token", - "font-weight", - 66413, - 66423, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 66424, - 66424, - null - ], - [ - "function-token", - "var(", - 66425, - 66428, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-font-weight", - 66429, - 66453, - { - "value": "--bs-nav-link-font-weight" - } - ], - [ - ")-token", - ")", - 66454, - 66454, - null - ], - [ - "semicolon-token", - ";", - 66455, - 66455, - null - ], - [ - "ident-token", - "color", - 66456, - 66460, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 66461, - 66461, - null - ], - [ - "function-token", - "var(", - 66462, - 66465, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-color", - 66466, - 66484, - { - "value": "--bs-nav-link-color" - } - ], - [ - ")-token", - ")", - 66485, - 66485, - null - ], - [ - "semicolon-token", - ";", - 66486, - 66486, - null - ], - [ - "ident-token", - "text-decoration", - 66487, - 66501, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 66502, - 66502, - null - ], - [ - "ident-token", - "none", - 66503, - 66506, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 66507, - 66507, - null - ], - [ - "ident-token", - "transition", - 66508, - 66517, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 66518, - 66518, - null - ], - [ - "ident-token", - "color", - 66519, - 66523, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 66524, - 66524, - null - ], - [ - "dimension-token", - ".15s", - 66525, - 66528, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 66529, - 66529, - null - ], - [ - "ident-token", - "ease-in-out", - 66530, - 66540, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 66541, - 66541, - null - ], - [ - "ident-token", - "background-color", - 66542, - 66557, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 66558, - 66558, - null - ], - [ - "dimension-token", - ".15s", - 66559, - 66562, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 66563, - 66563, - null - ], - [ - "ident-token", - "ease-in-out", - 66564, - 66574, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 66575, - 66575, - null - ], - [ - "ident-token", - "border-color", - 66576, - 66587, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 66588, - 66588, - null - ], - [ - "dimension-token", - ".15s", - 66589, - 66592, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 66593, - 66593, - null - ], - [ - "ident-token", - "ease-in-out", - 66594, - 66604, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 66605, - 66605, - null - ], - [ - "at-keyword-token", - "@media", - 66606, - 66611, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 66612, - 66612, - null - ], - [ - "(-token", - "(", - 66613, - 66613, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 66614, - 66635, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 66636, - 66636, - null - ], - [ - "ident-token", - "reduce", - 66637, - 66642, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 66643, - 66643, - null - ], - [ - "{-token", - "{", - 66644, - 66644, - null - ], - [ - "delim-token", - ".", - 66645, - 66645, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 66646, - 66653, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 66654, - 66654, - null - ], - [ - "ident-token", - "transition", - 66655, - 66664, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 66665, - 66665, - null - ], - [ - "ident-token", - "none", - 66666, - 66669, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 66670, - 66670, - null - ], - [ - "}-token", - "}", - 66671, - 66671, - null - ], - [ - "delim-token", - ".", - 66672, - 66672, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 66673, - 66680, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 66681, - 66681, - null - ], - [ - "ident-token", - "focus", - 66682, - 66686, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 66687, - 66687, - null - ], - [ - "delim-token", - ".", - 66688, - 66688, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 66689, - 66696, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 66697, - 66697, - null - ], - [ - "ident-token", - "hover", - 66698, - 66702, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 66703, - 66703, - null - ], - [ - "ident-token", - "color", - 66704, - 66708, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 66709, - 66709, - null - ], - [ - "function-token", - "var(", - 66710, - 66713, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-hover-color", - 66714, - 66738, - { - "value": "--bs-nav-link-hover-color" - } - ], - [ - ")-token", - ")", - 66739, - 66739, - null - ], - [ - "}-token", - "}", - 66740, - 66740, - null - ], - [ - "delim-token", - ".", - 66741, - 66741, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 66742, - 66749, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 66750, - 66750, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 66751, - 66758, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 66759, - 66759, - null - ], - [ - "ident-token", - "color", - 66760, - 66764, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 66765, - 66765, - null - ], - [ - "function-token", - "var(", - 66766, - 66769, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-disabled-color", - 66770, - 66797, - { - "value": "--bs-nav-link-disabled-color" - } - ], - [ - ")-token", - ")", - 66798, - 66798, - null - ], - [ - "semicolon-token", - ";", - 66799, - 66799, - null - ], - [ - "ident-token", - "pointer-events", - 66800, - 66813, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 66814, - 66814, - null - ], - [ - "ident-token", - "none", - 66815, - 66818, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 66819, - 66819, - null - ], - [ - "ident-token", - "cursor", - 66820, - 66825, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 66826, - 66826, - null - ], - [ - "ident-token", - "default", - 66827, - 66833, - { - "value": "default" - } - ], - [ - "}-token", - "}", - 66834, - 66834, - null - ], - [ - "delim-token", - ".", - 66835, - 66835, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 66836, - 66843, - { - "value": "nav-tabs" - } - ], - [ - "{-token", - "{", - 66844, - 66844, - null - ], - [ - "ident-token", - "--bs-nav-tabs-border-width", - 66845, - 66870, - { - "value": "--bs-nav-tabs-border-width" - } - ], - [ - "colon-token", - ":", - 66871, - 66871, - null - ], - [ - "dimension-token", - "1px", - 66872, - 66874, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 66875, - 66875, - null - ], - [ - "ident-token", - "--bs-nav-tabs-border-color", - 66876, - 66901, - { - "value": "--bs-nav-tabs-border-color" - } - ], - [ - "colon-token", - ":", - 66902, - 66902, - null - ], - [ - "hash-token", - "#dee2e6", - 66903, - 66909, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 66910, - 66910, - null - ], - [ - "ident-token", - "--bs-nav-tabs-border-radius", - 66911, - 66937, - { - "value": "--bs-nav-tabs-border-radius" - } - ], - [ - "colon-token", - ":", - 66938, - 66938, - null - ], - [ - "dimension-token", - "0.375rem", - 66939, - 66946, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 66947, - 66947, - null - ], - [ - "ident-token", - "--bs-nav-tabs-link-hover-border-color", - 66948, - 66984, - { - "value": "--bs-nav-tabs-link-hover-border-color" - } - ], - [ - "colon-token", - ":", - 66985, - 66985, - null - ], - [ - "hash-token", - "#e9ecef", - 66986, - 66992, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "whitespace-token", - " ", - 66993, - 66993, - null - ], - [ - "hash-token", - "#e9ecef", - 66994, - 67000, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "whitespace-token", - " ", - 67001, - 67001, - null - ], - [ - "hash-token", - "#dee2e6", - 67002, - 67008, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 67009, - 67009, - null - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-color", - 67010, - 67040, - { - "value": "--bs-nav-tabs-link-active-color" - } - ], - [ - "colon-token", - ":", - 67041, - 67041, - null - ], - [ - "hash-token", - "#495057", - 67042, - 67048, - { - "value": "495057", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 67049, - 67049, - null - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-bg", - 67050, - 67077, - { - "value": "--bs-nav-tabs-link-active-bg" - } - ], - [ - "colon-token", - ":", - 67078, - 67078, - null - ], - [ - "hash-token", - "#fff", - 67079, - 67082, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 67083, - 67083, - null - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-border-color", - 67084, - 67121, - { - "value": "--bs-nav-tabs-link-active-border-color" - } - ], - [ - "colon-token", - ":", - 67122, - 67122, - null - ], - [ - "hash-token", - "#dee2e6", - 67123, - 67129, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "whitespace-token", - " ", - 67130, - 67130, - null - ], - [ - "hash-token", - "#dee2e6", - 67131, - 67137, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "whitespace-token", - " ", - 67138, - 67138, - null - ], - [ - "hash-token", - "#fff", - 67139, - 67142, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 67143, - 67143, - null - ], - [ - "ident-token", - "border-bottom", - 67144, - 67156, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 67157, - 67157, - null - ], - [ - "function-token", - "var(", - 67158, - 67161, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-width", - 67162, - 67187, - { - "value": "--bs-nav-tabs-border-width" - } - ], - [ - ")-token", - ")", - 67188, - 67188, - null - ], - [ - "whitespace-token", - " ", - 67189, - 67189, - null - ], - [ - "ident-token", - "solid", - 67190, - 67194, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 67195, - 67195, - null - ], - [ - "function-token", - "var(", - 67196, - 67199, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-color", - 67200, - 67225, - { - "value": "--bs-nav-tabs-border-color" - } - ], - [ - ")-token", - ")", - 67226, - 67226, - null - ], - [ - "}-token", - "}", - 67227, - 67227, - null - ], - [ - "delim-token", - ".", - 67228, - 67228, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67229, - 67236, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67237, - 67237, - null - ], - [ - "delim-token", - ".", - 67238, - 67238, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67239, - 67246, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 67247, - 67247, - null - ], - [ - "ident-token", - "margin-bottom", - 67248, - 67260, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 67261, - 67261, - null - ], - [ - "function-token", - "calc(", - 67262, - 67266, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 67267, - 67268, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 67269, - 67269, - null - ], - [ - "delim-token", - "*", - 67270, - 67270, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 67271, - 67271, - null - ], - [ - "function-token", - "var(", - 67272, - 67275, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-width", - 67276, - 67301, - { - "value": "--bs-nav-tabs-border-width" - } - ], - [ - ")-token", - ")", - 67302, - 67302, - null - ], - [ - ")-token", - ")", - 67303, - 67303, - null - ], - [ - "semicolon-token", - ";", - 67304, - 67304, - null - ], - [ - "ident-token", - "background", - 67305, - 67314, - { - "value": "background" - } - ], - [ - "colon-token", - ":", - 67315, - 67315, - null - ], - [ - "number-token", - "0", - 67316, - 67316, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 67317, - 67317, - null - ], - [ - "number-token", - "0", - 67318, - 67318, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 67319, - 67319, - null - ], - [ - "ident-token", - "border", - 67320, - 67325, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 67326, - 67326, - null - ], - [ - "function-token", - "var(", - 67327, - 67330, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-width", - 67331, - 67356, - { - "value": "--bs-nav-tabs-border-width" - } - ], - [ - ")-token", - ")", - 67357, - 67357, - null - ], - [ - "whitespace-token", - " ", - 67358, - 67358, - null - ], - [ - "ident-token", - "solid", - 67359, - 67363, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 67364, - 67364, - null - ], - [ - "ident-token", - "transparent", - 67365, - 67375, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 67376, - 67376, - null - ], - [ - "ident-token", - "border-top-left-radius", - 67377, - 67398, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 67399, - 67399, - null - ], - [ - "function-token", - "var(", - 67400, - 67403, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-radius", - 67404, - 67430, - { - "value": "--bs-nav-tabs-border-radius" - } - ], - [ - ")-token", - ")", - 67431, - 67431, - null - ], - [ - "semicolon-token", - ";", - 67432, - 67432, - null - ], - [ - "ident-token", - "border-top-right-radius", - 67433, - 67455, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 67456, - 67456, - null - ], - [ - "function-token", - "var(", - 67457, - 67460, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-radius", - 67461, - 67487, - { - "value": "--bs-nav-tabs-border-radius" - } - ], - [ - ")-token", - ")", - 67488, - 67488, - null - ], - [ - "}-token", - "}", - 67489, - 67489, - null - ], - [ - "delim-token", - ".", - 67490, - 67490, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67491, - 67498, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67499, - 67499, - null - ], - [ - "delim-token", - ".", - 67500, - 67500, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67501, - 67508, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 67509, - 67509, - null - ], - [ - "ident-token", - "focus", - 67510, - 67514, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 67515, - 67515, - null - ], - [ - "delim-token", - ".", - 67516, - 67516, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67517, - 67524, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67525, - 67525, - null - ], - [ - "delim-token", - ".", - 67526, - 67526, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67527, - 67534, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 67535, - 67535, - null - ], - [ - "ident-token", - "hover", - 67536, - 67540, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 67541, - 67541, - null - ], - [ - "ident-token", - "isolation", - 67542, - 67550, - { - "value": "isolation" - } - ], - [ - "colon-token", - ":", - 67551, - 67551, - null - ], - [ - "ident-token", - "isolate", - 67552, - 67558, - { - "value": "isolate" - } - ], - [ - "semicolon-token", - ";", - 67559, - 67559, - null - ], - [ - "ident-token", - "border-color", - 67560, - 67571, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 67572, - 67572, - null - ], - [ - "function-token", - "var(", - 67573, - 67576, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-link-hover-border-color", - 67577, - 67613, - { - "value": "--bs-nav-tabs-link-hover-border-color" - } - ], - [ - ")-token", - ")", - 67614, - 67614, - null - ], - [ - "}-token", - "}", - 67615, - 67615, - null - ], - [ - "delim-token", - ".", - 67616, - 67616, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67617, - 67624, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67625, - 67625, - null - ], - [ - "delim-token", - ".", - 67626, - 67626, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67627, - 67634, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 67635, - 67635, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 67636, - 67643, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 67644, - 67644, - null - ], - [ - "delim-token", - ".", - 67645, - 67645, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67646, - 67653, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67654, - 67654, - null - ], - [ - "delim-token", - ".", - 67655, - 67655, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67656, - 67663, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 67664, - 67664, - null - ], - [ - "ident-token", - "disabled", - 67665, - 67672, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 67673, - 67673, - null - ], - [ - "ident-token", - "color", - 67674, - 67678, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 67679, - 67679, - null - ], - [ - "function-token", - "var(", - 67680, - 67683, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-disabled-color", - 67684, - 67711, - { - "value": "--bs-nav-link-disabled-color" - } - ], - [ - ")-token", - ")", - 67712, - 67712, - null - ], - [ - "semicolon-token", - ";", - 67713, - 67713, - null - ], - [ - "ident-token", - "background-color", - 67714, - 67729, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 67730, - 67730, - null - ], - [ - "ident-token", - "transparent", - 67731, - 67741, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 67742, - 67742, - null - ], - [ - "ident-token", - "border-color", - 67743, - 67754, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 67755, - 67755, - null - ], - [ - "ident-token", - "transparent", - 67756, - 67766, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 67767, - 67767, - null - ], - [ - "delim-token", - ".", - 67768, - 67768, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67769, - 67776, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67777, - 67777, - null - ], - [ - "delim-token", - ".", - 67778, - 67778, - { - "value": "." - } - ], - [ - "ident-token", - "nav-item", - 67779, - 67786, - { - "value": "nav-item" - } - ], - [ - "delim-token", - ".", - 67787, - 67787, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 67788, - 67791, - { - "value": "show" - } - ], - [ - "whitespace-token", - " ", - 67792, - 67792, - null - ], - [ - "delim-token", - ".", - 67793, - 67793, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67794, - 67801, - { - "value": "nav-link" - } - ], - [ - "comma-token", - ",", - 67802, - 67802, - null - ], - [ - "delim-token", - ".", - 67803, - 67803, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67804, - 67811, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67812, - 67812, - null - ], - [ - "delim-token", - ".", - 67813, - 67813, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 67814, - 67821, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 67822, - 67822, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 67823, - 67828, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 67829, - 67829, - null - ], - [ - "ident-token", - "color", - 67830, - 67834, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 67835, - 67835, - null - ], - [ - "function-token", - "var(", - 67836, - 67839, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-color", - 67840, - 67870, - { - "value": "--bs-nav-tabs-link-active-color" - } - ], - [ - ")-token", - ")", - 67871, - 67871, - null - ], - [ - "semicolon-token", - ";", - 67872, - 67872, - null - ], - [ - "ident-token", - "background-color", - 67873, - 67888, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 67889, - 67889, - null - ], - [ - "function-token", - "var(", - 67890, - 67893, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-bg", - 67894, - 67921, - { - "value": "--bs-nav-tabs-link-active-bg" - } - ], - [ - ")-token", - ")", - 67922, - 67922, - null - ], - [ - "semicolon-token", - ";", - 67923, - 67923, - null - ], - [ - "ident-token", - "border-color", - 67924, - 67935, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 67936, - 67936, - null - ], - [ - "function-token", - "var(", - 67937, - 67940, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-link-active-border-color", - 67941, - 67978, - { - "value": "--bs-nav-tabs-link-active-border-color" - } - ], - [ - ")-token", - ")", - 67979, - 67979, - null - ], - [ - "}-token", - "}", - 67980, - 67980, - null - ], - [ - "delim-token", - ".", - 67981, - 67981, - { - "value": "." - } - ], - [ - "ident-token", - "nav-tabs", - 67982, - 67989, - { - "value": "nav-tabs" - } - ], - [ - "whitespace-token", - " ", - 67990, - 67990, - null - ], - [ - "delim-token", - ".", - 67991, - 67991, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 67992, - 68004, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 68005, - 68005, - null - ], - [ - "ident-token", - "margin-top", - 68006, - 68015, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 68016, - 68016, - null - ], - [ - "function-token", - "calc(", - 68017, - 68021, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 68022, - 68023, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 68024, - 68024, - null - ], - [ - "delim-token", - "*", - 68025, - 68025, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 68026, - 68026, - null - ], - [ - "function-token", - "var(", - 68027, - 68030, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-tabs-border-width", - 68031, - 68056, - { - "value": "--bs-nav-tabs-border-width" - } - ], - [ - ")-token", - ")", - 68057, - 68057, - null - ], - [ - ")-token", - ")", - 68058, - 68058, - null - ], - [ - "semicolon-token", - ";", - 68059, - 68059, - null - ], - [ - "ident-token", - "border-top-left-radius", - 68060, - 68081, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 68082, - 68082, - null - ], - [ - "number-token", - "0", - 68083, - 68083, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68084, - 68084, - null - ], - [ - "ident-token", - "border-top-right-radius", - 68085, - 68107, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 68108, - 68108, - null - ], - [ - "number-token", - "0", - 68109, - 68109, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 68110, - 68110, - null - ], - [ - "delim-token", - ".", - 68111, - 68111, - { - "value": "." - } - ], - [ - "ident-token", - "nav-pills", - 68112, - 68120, - { - "value": "nav-pills" - } - ], - [ - "{-token", - "{", - 68121, - 68121, - null - ], - [ - "ident-token", - "--bs-nav-pills-border-radius", - 68122, - 68149, - { - "value": "--bs-nav-pills-border-radius" - } - ], - [ - "colon-token", - ":", - 68150, - 68150, - null - ], - [ - "dimension-token", - "0.375rem", - 68151, - 68158, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 68159, - 68159, - null - ], - [ - "ident-token", - "--bs-nav-pills-link-active-color", - 68160, - 68191, - { - "value": "--bs-nav-pills-link-active-color" - } - ], - [ - "colon-token", - ":", - 68192, - 68192, - null - ], - [ - "hash-token", - "#fff", - 68193, - 68196, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 68197, - 68197, - null - ], - [ - "ident-token", - "--bs-nav-pills-link-active-bg", - 68198, - 68226, - { - "value": "--bs-nav-pills-link-active-bg" - } - ], - [ - "colon-token", - ":", - 68227, - 68227, - null - ], - [ - "hash-token", - "#0d6efd", - 68228, - 68234, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 68235, - 68235, - null - ], - [ - "delim-token", - ".", - 68236, - 68236, - { - "value": "." - } - ], - [ - "ident-token", - "nav-pills", - 68237, - 68245, - { - "value": "nav-pills" - } - ], - [ - "whitespace-token", - " ", - 68246, - 68246, - null - ], - [ - "delim-token", - ".", - 68247, - 68247, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68248, - 68255, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 68256, - 68256, - null - ], - [ - "ident-token", - "background", - 68257, - 68266, - { - "value": "background" - } - ], - [ - "colon-token", - ":", - 68267, - 68267, - null - ], - [ - "number-token", - "0", - 68268, - 68268, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 68269, - 68269, - null - ], - [ - "number-token", - "0", - 68270, - 68270, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68271, - 68271, - null - ], - [ - "ident-token", - "border", - 68272, - 68277, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 68278, - 68278, - null - ], - [ - "number-token", - "0", - 68279, - 68279, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68280, - 68280, - null - ], - [ - "ident-token", - "border-radius", - 68281, - 68293, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 68294, - 68294, - null - ], - [ - "function-token", - "var(", - 68295, - 68298, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-pills-border-radius", - 68299, - 68326, - { - "value": "--bs-nav-pills-border-radius" - } - ], - [ - ")-token", - ")", - 68327, - 68327, - null - ], - [ - "}-token", - "}", - 68328, - 68328, - null - ], - [ - "delim-token", - ".", - 68329, - 68329, - { - "value": "." - } - ], - [ - "ident-token", - "nav-pills", - 68330, - 68338, - { - "value": "nav-pills" - } - ], - [ - "whitespace-token", - " ", - 68339, - 68339, - null - ], - [ - "delim-token", - ".", - 68340, - 68340, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68341, - 68348, - { - "value": "nav-link" - } - ], - [ - "colon-token", - ":", - 68349, - 68349, - null - ], - [ - "ident-token", - "disabled", - 68350, - 68357, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 68358, - 68358, - null - ], - [ - "ident-token", - "color", - 68359, - 68363, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 68364, - 68364, - null - ], - [ - "function-token", - "var(", - 68365, - 68368, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-link-disabled-color", - 68369, - 68396, - { - "value": "--bs-nav-link-disabled-color" - } - ], - [ - ")-token", - ")", - 68397, - 68397, - null - ], - [ - "semicolon-token", - ";", - 68398, - 68398, - null - ], - [ - "ident-token", - "background-color", - 68399, - 68414, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 68415, - 68415, - null - ], - [ - "ident-token", - "transparent", - 68416, - 68426, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 68427, - 68427, - null - ], - [ - "ident-token", - "border-color", - 68428, - 68439, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 68440, - 68440, - null - ], - [ - "ident-token", - "transparent", - 68441, - 68451, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 68452, - 68452, - null - ], - [ - "delim-token", - ".", - 68453, - 68453, - { - "value": "." - } - ], - [ - "ident-token", - "nav-pills", - 68454, - 68462, - { - "value": "nav-pills" - } - ], - [ - "whitespace-token", - " ", - 68463, - 68463, - null - ], - [ - "delim-token", - ".", - 68464, - 68464, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68465, - 68472, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 68473, - 68473, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 68474, - 68479, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 68480, - 68480, - null - ], - [ - "delim-token", - ".", - 68481, - 68481, - { - "value": "." - } - ], - [ - "ident-token", - "nav-pills", - 68482, - 68490, - { - "value": "nav-pills" - } - ], - [ - "whitespace-token", - " ", - 68491, - 68491, - null - ], - [ - "delim-token", - ".", - 68492, - 68492, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 68493, - 68496, - { - "value": "show" - } - ], - [ - "delim-token", - ">", - 68497, - 68497, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 68498, - 68498, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68499, - 68506, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 68507, - 68507, - null - ], - [ - "ident-token", - "color", - 68508, - 68512, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 68513, - 68513, - null - ], - [ - "function-token", - "var(", - 68514, - 68517, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-pills-link-active-color", - 68518, - 68549, - { - "value": "--bs-nav-pills-link-active-color" - } - ], - [ - ")-token", - ")", - 68550, - 68550, - null - ], - [ - "semicolon-token", - ";", - 68551, - 68551, - null - ], - [ - "ident-token", - "background-color", - 68552, - 68567, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 68568, - 68568, - null - ], - [ - "function-token", - "var(", - 68569, - 68572, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-nav-pills-link-active-bg", - 68573, - 68601, - { - "value": "--bs-nav-pills-link-active-bg" - } - ], - [ - ")-token", - ")", - 68602, - 68602, - null - ], - [ - "}-token", - "}", - 68603, - 68603, - null - ], - [ - "delim-token", - ".", - 68604, - 68604, - { - "value": "." - } - ], - [ - "ident-token", - "nav-fill", - 68605, - 68612, - { - "value": "nav-fill" - } - ], - [ - "whitespace-token", - " ", - 68613, - 68613, - null - ], - [ - "delim-token", - ".", - 68614, - 68614, - { - "value": "." - } - ], - [ - "ident-token", - "nav-item", - 68615, - 68622, - { - "value": "nav-item" - } - ], - [ - "comma-token", - ",", - 68623, - 68623, - null - ], - [ - "delim-token", - ".", - 68624, - 68624, - { - "value": "." - } - ], - [ - "ident-token", - "nav-fill", - 68625, - 68632, - { - "value": "nav-fill" - } - ], - [ - "delim-token", - ">", - 68633, - 68633, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 68634, - 68634, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68635, - 68642, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 68643, - 68643, - null - ], - [ - "ident-token", - "flex", - 68644, - 68647, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 68648, - 68648, - null - ], - [ - "number-token", - "1", - 68649, - 68649, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 68650, - 68650, - null - ], - [ - "number-token", - "1", - 68651, - 68651, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 68652, - 68652, - null - ], - [ - "ident-token", - "auto", - 68653, - 68656, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 68657, - 68657, - null - ], - [ - "ident-token", - "text-align", - 68658, - 68667, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 68668, - 68668, - null - ], - [ - "ident-token", - "center", - 68669, - 68674, - { - "value": "center" - } - ], - [ - "}-token", - "}", - 68675, - 68675, - null - ], - [ - "delim-token", - ".", - 68676, - 68676, - { - "value": "." - } - ], - [ - "ident-token", - "nav-justified", - 68677, - 68689, - { - "value": "nav-justified" - } - ], - [ - "whitespace-token", - " ", - 68690, - 68690, - null - ], - [ - "delim-token", - ".", - 68691, - 68691, - { - "value": "." - } - ], - [ - "ident-token", - "nav-item", - 68692, - 68699, - { - "value": "nav-item" - } - ], - [ - "comma-token", - ",", - 68700, - 68700, - null - ], - [ - "delim-token", - ".", - 68701, - 68701, - { - "value": "." - } - ], - [ - "ident-token", - "nav-justified", - 68702, - 68714, - { - "value": "nav-justified" - } - ], - [ - "delim-token", - ">", - 68715, - 68715, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 68716, - 68716, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68717, - 68724, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 68725, - 68725, - null - ], - [ - "ident-token", - "flex-basis", - 68726, - 68735, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 68736, - 68736, - null - ], - [ - "number-token", - "0", - 68737, - 68737, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68738, - 68738, - null - ], - [ - "ident-token", - "flex-grow", - 68739, - 68747, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 68748, - 68748, - null - ], - [ - "number-token", - "1", - 68749, - 68749, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68750, - 68750, - null - ], - [ - "ident-token", - "text-align", - 68751, - 68760, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 68761, - 68761, - null - ], - [ - "ident-token", - "center", - 68762, - 68767, - { - "value": "center" - } - ], - [ - "}-token", - "}", - 68768, - 68768, - null - ], - [ - "delim-token", - ".", - 68769, - 68769, - { - "value": "." - } - ], - [ - "ident-token", - "nav-fill", - 68770, - 68777, - { - "value": "nav-fill" - } - ], - [ - "whitespace-token", - " ", - 68778, - 68778, - null - ], - [ - "delim-token", - ".", - 68779, - 68779, - { - "value": "." - } - ], - [ - "ident-token", - "nav-item", - 68780, - 68787, - { - "value": "nav-item" - } - ], - [ - "whitespace-token", - " ", - 68788, - 68788, - null - ], - [ - "delim-token", - ".", - 68789, - 68789, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68790, - 68797, - { - "value": "nav-link" - } - ], - [ - "comma-token", - ",", - 68798, - 68798, - null - ], - [ - "delim-token", - ".", - 68799, - 68799, - { - "value": "." - } - ], - [ - "ident-token", - "nav-justified", - 68800, - 68812, - { - "value": "nav-justified" - } - ], - [ - "whitespace-token", - " ", - 68813, - 68813, - null - ], - [ - "delim-token", - ".", - 68814, - 68814, - { - "value": "." - } - ], - [ - "ident-token", - "nav-item", - 68815, - 68822, - { - "value": "nav-item" - } - ], - [ - "whitespace-token", - " ", - 68823, - 68823, - null - ], - [ - "delim-token", - ".", - 68824, - 68824, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 68825, - 68832, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 68833, - 68833, - null - ], - [ - "ident-token", - "width", - 68834, - 68838, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 68839, - 68839, - null - ], - [ - "percentage-token", - "100%", - 68840, - 68843, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 68844, - 68844, - null - ], - [ - "delim-token", - ".", - 68845, - 68845, - { - "value": "." - } - ], - [ - "ident-token", - "tab-content", - 68846, - 68856, - { - "value": "tab-content" - } - ], - [ - "delim-token", - ">", - 68857, - 68857, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 68858, - 68858, - { - "value": "." - } - ], - [ - "ident-token", - "tab-pane", - 68859, - 68866, - { - "value": "tab-pane" - } - ], - [ - "{-token", - "{", - 68867, - 68867, - null - ], - [ - "ident-token", - "display", - 68868, - 68874, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 68875, - 68875, - null - ], - [ - "ident-token", - "none", - 68876, - 68879, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 68880, - 68880, - null - ], - [ - "delim-token", - ".", - 68881, - 68881, - { - "value": "." - } - ], - [ - "ident-token", - "tab-content", - 68882, - 68892, - { - "value": "tab-content" - } - ], - [ - "delim-token", - ">", - 68893, - 68893, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 68894, - 68894, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 68895, - 68900, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 68901, - 68901, - null - ], - [ - "ident-token", - "display", - 68902, - 68908, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 68909, - 68909, - null - ], - [ - "ident-token", - "block", - 68910, - 68914, - { - "value": "block" - } - ], - [ - "}-token", - "}", - 68915, - 68915, - null - ], - [ - "delim-token", - ".", - 68916, - 68916, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 68917, - 68922, - { - "value": "navbar" - } - ], - [ - "{-token", - "{", - 68923, - 68923, - null - ], - [ - "ident-token", - "--bs-navbar-padding-x", - 68924, - 68944, - { - "value": "--bs-navbar-padding-x" - } - ], - [ - "colon-token", - ":", - 68945, - 68945, - null - ], - [ - "number-token", - "0", - 68946, - 68946, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 68947, - 68947, - null - ], - [ - "ident-token", - "--bs-navbar-padding-y", - 68948, - 68968, - { - "value": "--bs-navbar-padding-y" - } - ], - [ - "colon-token", - ":", - 68969, - 68969, - null - ], - [ - "dimension-token", - "0.5rem", - 68970, - 68975, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 68976, - 68976, - null - ], - [ - "ident-token", - "--bs-navbar-color", - 68977, - 68993, - { - "value": "--bs-navbar-color" - } - ], - [ - "colon-token", - ":", - 68994, - 68994, - null - ], - [ - "function-token", - "rgba(", - 68995, - 68999, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69000, - 69000, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69001, - 69001, - null - ], - [ - "whitespace-token", - " ", - 69002, - 69002, - null - ], - [ - "number-token", - "0", - 69003, - 69003, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69004, - 69004, - null - ], - [ - "whitespace-token", - " ", - 69005, - 69005, - null - ], - [ - "number-token", - "0", - 69006, - 69006, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69007, - 69007, - null - ], - [ - "whitespace-token", - " ", - 69008, - 69008, - null - ], - [ - "number-token", - "0.55", - 69009, - 69012, - { - "value": 0.55, - "type": "number" - } - ], - [ - ")-token", - ")", - 69013, - 69013, - null - ], - [ - "semicolon-token", - ";", - 69014, - 69014, - null - ], - [ - "ident-token", - "--bs-navbar-hover-color", - 69015, - 69037, - { - "value": "--bs-navbar-hover-color" - } - ], - [ - "colon-token", - ":", - 69038, - 69038, - null - ], - [ - "function-token", - "rgba(", - 69039, - 69043, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69044, - 69044, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69045, - 69045, - null - ], - [ - "whitespace-token", - " ", - 69046, - 69046, - null - ], - [ - "number-token", - "0", - 69047, - 69047, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69048, - 69048, - null - ], - [ - "whitespace-token", - " ", - 69049, - 69049, - null - ], - [ - "number-token", - "0", - 69050, - 69050, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69051, - 69051, - null - ], - [ - "whitespace-token", - " ", - 69052, - 69052, - null - ], - [ - "number-token", - "0.7", - 69053, - 69055, - { - "value": 0.7, - "type": "number" - } - ], - [ - ")-token", - ")", - 69056, - 69056, - null - ], - [ - "semicolon-token", - ";", - 69057, - 69057, - null - ], - [ - "ident-token", - "--bs-navbar-disabled-color", - 69058, - 69083, - { - "value": "--bs-navbar-disabled-color" - } - ], - [ - "colon-token", - ":", - 69084, - 69084, - null - ], - [ - "function-token", - "rgba(", - 69085, - 69089, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69090, - 69090, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69091, - 69091, - null - ], - [ - "whitespace-token", - " ", - 69092, - 69092, - null - ], - [ - "number-token", - "0", - 69093, - 69093, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69094, - 69094, - null - ], - [ - "whitespace-token", - " ", - 69095, - 69095, - null - ], - [ - "number-token", - "0", - 69096, - 69096, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69097, - 69097, - null - ], - [ - "whitespace-token", - " ", - 69098, - 69098, - null - ], - [ - "number-token", - "0.3", - 69099, - 69101, - { - "value": 0.3, - "type": "number" - } - ], - [ - ")-token", - ")", - 69102, - 69102, - null - ], - [ - "semicolon-token", - ";", - 69103, - 69103, - null - ], - [ - "ident-token", - "--bs-navbar-active-color", - 69104, - 69127, - { - "value": "--bs-navbar-active-color" - } - ], - [ - "colon-token", - ":", - 69128, - 69128, - null - ], - [ - "function-token", - "rgba(", - 69129, - 69133, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69134, - 69134, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69135, - 69135, - null - ], - [ - "whitespace-token", - " ", - 69136, - 69136, - null - ], - [ - "number-token", - "0", - 69137, - 69137, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69138, - 69138, - null - ], - [ - "whitespace-token", - " ", - 69139, - 69139, - null - ], - [ - "number-token", - "0", - 69140, - 69140, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69141, - 69141, - null - ], - [ - "whitespace-token", - " ", - 69142, - 69142, - null - ], - [ - "number-token", - "0.9", - 69143, - 69145, - { - "value": 0.9, - "type": "number" - } - ], - [ - ")-token", - ")", - 69146, - 69146, - null - ], - [ - "semicolon-token", - ";", - 69147, - 69147, - null - ], - [ - "ident-token", - "--bs-navbar-brand-padding-y", - 69148, - 69174, - { - "value": "--bs-navbar-brand-padding-y" - } - ], - [ - "colon-token", - ":", - 69175, - 69175, - null - ], - [ - "dimension-token", - "0.3125rem", - 69176, - 69184, - { - "value": 0.3125, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69185, - 69185, - null - ], - [ - "ident-token", - "--bs-navbar-brand-margin-end", - 69186, - 69213, - { - "value": "--bs-navbar-brand-margin-end" - } - ], - [ - "colon-token", - ":", - 69214, - 69214, - null - ], - [ - "dimension-token", - "1rem", - 69215, - 69218, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69219, - 69219, - null - ], - [ - "ident-token", - "--bs-navbar-brand-font-size", - 69220, - 69246, - { - "value": "--bs-navbar-brand-font-size" - } - ], - [ - "colon-token", - ":", - 69247, - 69247, - null - ], - [ - "dimension-token", - "1.25rem", - 69248, - 69254, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69255, - 69255, - null - ], - [ - "ident-token", - "--bs-navbar-brand-color", - 69256, - 69278, - { - "value": "--bs-navbar-brand-color" - } - ], - [ - "colon-token", - ":", - 69279, - 69279, - null - ], - [ - "function-token", - "rgba(", - 69280, - 69284, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69285, - 69285, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69286, - 69286, - null - ], - [ - "whitespace-token", - " ", - 69287, - 69287, - null - ], - [ - "number-token", - "0", - 69288, - 69288, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69289, - 69289, - null - ], - [ - "whitespace-token", - " ", - 69290, - 69290, - null - ], - [ - "number-token", - "0", - 69291, - 69291, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69292, - 69292, - null - ], - [ - "whitespace-token", - " ", - 69293, - 69293, - null - ], - [ - "number-token", - "0.9", - 69294, - 69296, - { - "value": 0.9, - "type": "number" - } - ], - [ - ")-token", - ")", - 69297, - 69297, - null - ], - [ - "semicolon-token", - ";", - 69298, - 69298, - null - ], - [ - "ident-token", - "--bs-navbar-brand-hover-color", - 69299, - 69327, - { - "value": "--bs-navbar-brand-hover-color" - } - ], - [ - "colon-token", - ":", - 69328, - 69328, - null - ], - [ - "function-token", - "rgba(", - 69329, - 69333, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69334, - 69334, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69335, - 69335, - null - ], - [ - "whitespace-token", - " ", - 69336, - 69336, - null - ], - [ - "number-token", - "0", - 69337, - 69337, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69338, - 69338, - null - ], - [ - "whitespace-token", - " ", - 69339, - 69339, - null - ], - [ - "number-token", - "0", - 69340, - 69340, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69341, - 69341, - null - ], - [ - "whitespace-token", - " ", - 69342, - 69342, - null - ], - [ - "number-token", - "0.9", - 69343, - 69345, - { - "value": 0.9, - "type": "number" - } - ], - [ - ")-token", - ")", - 69346, - 69346, - null - ], - [ - "semicolon-token", - ";", - 69347, - 69347, - null - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 69348, - 69377, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - "colon-token", - ":", - 69378, - 69378, - null - ], - [ - "dimension-token", - "0.5rem", - 69379, - 69384, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69385, - 69385, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-padding-y", - 69386, - 69414, - { - "value": "--bs-navbar-toggler-padding-y" - } - ], - [ - "colon-token", - ":", - 69415, - 69415, - null - ], - [ - "dimension-token", - "0.25rem", - 69416, - 69422, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69423, - 69423, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-padding-x", - 69424, - 69452, - { - "value": "--bs-navbar-toggler-padding-x" - } - ], - [ - "colon-token", - ":", - 69453, - 69453, - null - ], - [ - "dimension-token", - "0.75rem", - 69454, - 69460, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69461, - 69461, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-font-size", - 69462, - 69490, - { - "value": "--bs-navbar-toggler-font-size" - } - ], - [ - "colon-token", - ":", - 69491, - 69491, - null - ], - [ - "dimension-token", - "1.25rem", - 69492, - 69498, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69499, - 69499, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-icon-bg", - 69500, - 69526, - { - "value": "--bs-navbar-toggler-icon-bg" - } - ], - [ - "colon-token", - ":", - 69527, - 69527, - null - ], - [ - "function-token", - "url(", - 69528, - 69531, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"", - 69532, - 69761, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 69762, - 69762, - null - ], - [ - "semicolon-token", - ";", - 69763, - 69763, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-border-color", - 69764, - 69795, - { - "value": "--bs-navbar-toggler-border-color" - } - ], - [ - "colon-token", - ":", - 69796, - 69796, - null - ], - [ - "function-token", - "rgba(", - 69797, - 69801, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 69802, - 69802, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69803, - 69803, - null - ], - [ - "whitespace-token", - " ", - 69804, - 69804, - null - ], - [ - "number-token", - "0", - 69805, - 69805, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69806, - 69806, - null - ], - [ - "whitespace-token", - " ", - 69807, - 69807, - null - ], - [ - "number-token", - "0", - 69808, - 69808, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 69809, - 69809, - null - ], - [ - "whitespace-token", - " ", - 69810, - 69810, - null - ], - [ - "number-token", - "0.1", - 69811, - 69813, - { - "value": 0.1, - "type": "number" - } - ], - [ - ")-token", - ")", - 69814, - 69814, - null - ], - [ - "semicolon-token", - ";", - 69815, - 69815, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-border-radius", - 69816, - 69848, - { - "value": "--bs-navbar-toggler-border-radius" - } - ], - [ - "colon-token", - ":", - 69849, - 69849, - null - ], - [ - "dimension-token", - "0.375rem", - 69850, - 69857, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69858, - 69858, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-focus-width", - 69859, - 69889, - { - "value": "--bs-navbar-toggler-focus-width" - } - ], - [ - "colon-token", - ":", - 69890, - 69890, - null - ], - [ - "dimension-token", - "0.25rem", - 69891, - 69897, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 69898, - 69898, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-transition", - 69899, - 69928, - { - "value": "--bs-navbar-toggler-transition" - } - ], - [ - "colon-token", - ":", - 69929, - 69929, - null - ], - [ - "ident-token", - "box-shadow", - 69930, - 69939, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 69940, - 69940, - null - ], - [ - "dimension-token", - "0.15s", - 69941, - 69945, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 69946, - 69946, - null - ], - [ - "ident-token", - "ease-in-out", - 69947, - 69957, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 69958, - 69958, - null - ], - [ - "ident-token", - "position", - 69959, - 69966, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 69967, - 69967, - null - ], - [ - "ident-token", - "relative", - 69968, - 69975, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 69976, - 69976, - null - ], - [ - "ident-token", - "display", - 69977, - 69983, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 69984, - 69984, - null - ], - [ - "ident-token", - "flex", - 69985, - 69988, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 69989, - 69989, - null - ], - [ - "ident-token", - "flex-wrap", - 69990, - 69998, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 69999, - 69999, - null - ], - [ - "ident-token", - "wrap", - 70000, - 70003, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 70004, - 70004, - null - ], - [ - "ident-token", - "align-items", - 70005, - 70015, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 70016, - 70016, - null - ], - [ - "ident-token", - "center", - 70017, - 70022, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 70023, - 70023, - null - ], - [ - "ident-token", - "justify-content", - 70024, - 70038, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 70039, - 70039, - null - ], - [ - "ident-token", - "space-between", - 70040, - 70052, - { - "value": "space-between" - } - ], - [ - "semicolon-token", - ";", - 70053, - 70053, - null - ], - [ - "ident-token", - "padding", - 70054, - 70060, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 70061, - 70061, - null - ], - [ - "function-token", - "var(", - 70062, - 70065, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-padding-y", - 70066, - 70086, - { - "value": "--bs-navbar-padding-y" - } - ], - [ - ")-token", - ")", - 70087, - 70087, - null - ], - [ - "whitespace-token", - " ", - 70088, - 70088, - null - ], - [ - "function-token", - "var(", - 70089, - 70092, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-padding-x", - 70093, - 70113, - { - "value": "--bs-navbar-padding-x" - } - ], - [ - ")-token", - ")", - 70114, - 70114, - null - ], - [ - "}-token", - "}", - 70115, - 70115, - null - ], - [ - "delim-token", - ".", - 70116, - 70116, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70117, - 70122, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70123, - 70123, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70124, - 70124, - { - "value": "." - } - ], - [ - "ident-token", - "container", - 70125, - 70133, - { - "value": "container" - } - ], - [ - "comma-token", - ",", - 70134, - 70134, - null - ], - [ - "delim-token", - ".", - 70135, - 70135, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70136, - 70141, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70142, - 70142, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70143, - 70143, - { - "value": "." - } - ], - [ - "ident-token", - "container-fluid", - 70144, - 70158, - { - "value": "container-fluid" - } - ], - [ - "comma-token", - ",", - 70159, - 70159, - null - ], - [ - "delim-token", - ".", - 70160, - 70160, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70161, - 70166, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70167, - 70167, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70168, - 70168, - { - "value": "." - } - ], - [ - "ident-token", - "container-lg", - 70169, - 70180, - { - "value": "container-lg" - } - ], - [ - "comma-token", - ",", - 70181, - 70181, - null - ], - [ - "delim-token", - ".", - 70182, - 70182, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70183, - 70188, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70189, - 70189, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70190, - 70190, - { - "value": "." - } - ], - [ - "ident-token", - "container-md", - 70191, - 70202, - { - "value": "container-md" - } - ], - [ - "comma-token", - ",", - 70203, - 70203, - null - ], - [ - "delim-token", - ".", - 70204, - 70204, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70205, - 70210, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70211, - 70211, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70212, - 70212, - { - "value": "." - } - ], - [ - "ident-token", - "container-sm", - 70213, - 70224, - { - "value": "container-sm" - } - ], - [ - "comma-token", - ",", - 70225, - 70225, - null - ], - [ - "delim-token", - ".", - 70226, - 70226, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70227, - 70232, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70233, - 70233, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70234, - 70234, - { - "value": "." - } - ], - [ - "ident-token", - "container-xl", - 70235, - 70246, - { - "value": "container-xl" - } - ], - [ - "comma-token", - ",", - 70247, - 70247, - null - ], - [ - "delim-token", - ".", - 70248, - 70248, - { - "value": "." - } - ], - [ - "ident-token", - "navbar", - 70249, - 70254, - { - "value": "navbar" - } - ], - [ - "delim-token", - ">", - 70255, - 70255, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 70256, - 70256, - { - "value": "." - } - ], - [ - "ident-token", - "container-xxl", - 70257, - 70269, - { - "value": "container-xxl" - } - ], - [ - "{-token", - "{", - 70270, - 70270, - null - ], - [ - "ident-token", - "display", - 70271, - 70277, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 70278, - 70278, - null - ], - [ - "ident-token", - "flex", - 70279, - 70282, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 70283, - 70283, - null - ], - [ - "ident-token", - "flex-wrap", - 70284, - 70292, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 70293, - 70293, - null - ], - [ - "ident-token", - "inherit", - 70294, - 70300, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 70301, - 70301, - null - ], - [ - "ident-token", - "align-items", - 70302, - 70312, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 70313, - 70313, - null - ], - [ - "ident-token", - "center", - 70314, - 70319, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 70320, - 70320, - null - ], - [ - "ident-token", - "justify-content", - 70321, - 70335, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 70336, - 70336, - null - ], - [ - "ident-token", - "space-between", - 70337, - 70349, - { - "value": "space-between" - } - ], - [ - "}-token", - "}", - 70350, - 70350, - null - ], - [ - "delim-token", - ".", - 70351, - 70351, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-brand", - 70352, - 70363, - { - "value": "navbar-brand" - } - ], - [ - "{-token", - "{", - 70364, - 70364, - null - ], - [ - "ident-token", - "padding-top", - 70365, - 70375, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 70376, - 70376, - null - ], - [ - "function-token", - "var(", - 70377, - 70380, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-padding-y", - 70381, - 70407, - { - "value": "--bs-navbar-brand-padding-y" - } - ], - [ - ")-token", - ")", - 70408, - 70408, - null - ], - [ - "semicolon-token", - ";", - 70409, - 70409, - null - ], - [ - "ident-token", - "padding-bottom", - 70410, - 70423, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 70424, - 70424, - null - ], - [ - "function-token", - "var(", - 70425, - 70428, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-padding-y", - 70429, - 70455, - { - "value": "--bs-navbar-brand-padding-y" - } - ], - [ - ")-token", - ")", - 70456, - 70456, - null - ], - [ - "semicolon-token", - ";", - 70457, - 70457, - null - ], - [ - "ident-token", - "margin-right", - 70458, - 70469, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 70470, - 70470, - null - ], - [ - "function-token", - "var(", - 70471, - 70474, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-margin-end", - 70475, - 70502, - { - "value": "--bs-navbar-brand-margin-end" - } - ], - [ - ")-token", - ")", - 70503, - 70503, - null - ], - [ - "semicolon-token", - ";", - 70504, - 70504, - null - ], - [ - "ident-token", - "font-size", - 70505, - 70513, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 70514, - 70514, - null - ], - [ - "function-token", - "var(", - 70515, - 70518, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-font-size", - 70519, - 70545, - { - "value": "--bs-navbar-brand-font-size" - } - ], - [ - ")-token", - ")", - 70546, - 70546, - null - ], - [ - "semicolon-token", - ";", - 70547, - 70547, - null - ], - [ - "ident-token", - "color", - 70548, - 70552, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 70553, - 70553, - null - ], - [ - "function-token", - "var(", - 70554, - 70557, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-color", - 70558, - 70580, - { - "value": "--bs-navbar-brand-color" - } - ], - [ - ")-token", - ")", - 70581, - 70581, - null - ], - [ - "semicolon-token", - ";", - 70582, - 70582, - null - ], - [ - "ident-token", - "text-decoration", - 70583, - 70597, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 70598, - 70598, - null - ], - [ - "ident-token", - "none", - 70599, - 70602, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 70603, - 70603, - null - ], - [ - "ident-token", - "white-space", - 70604, - 70614, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 70615, - 70615, - null - ], - [ - "ident-token", - "nowrap", - 70616, - 70621, - { - "value": "nowrap" - } - ], - [ - "}-token", - "}", - 70622, - 70622, - null - ], - [ - "delim-token", - ".", - 70623, - 70623, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-brand", - 70624, - 70635, - { - "value": "navbar-brand" - } - ], - [ - "colon-token", - ":", - 70636, - 70636, - null - ], - [ - "ident-token", - "focus", - 70637, - 70641, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 70642, - 70642, - null - ], - [ - "delim-token", - ".", - 70643, - 70643, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-brand", - 70644, - 70655, - { - "value": "navbar-brand" - } - ], - [ - "colon-token", - ":", - 70656, - 70656, - null - ], - [ - "ident-token", - "hover", - 70657, - 70661, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 70662, - 70662, - null - ], - [ - "ident-token", - "color", - 70663, - 70667, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 70668, - 70668, - null - ], - [ - "function-token", - "var(", - 70669, - 70672, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-brand-hover-color", - 70673, - 70701, - { - "value": "--bs-navbar-brand-hover-color" - } - ], - [ - ")-token", - ")", - 70702, - 70702, - null - ], - [ - "}-token", - "}", - 70703, - 70703, - null - ], - [ - "delim-token", - ".", - 70704, - 70704, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 70705, - 70714, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 70715, - 70715, - null - ], - [ - "ident-token", - "--bs-nav-link-padding-x", - 70716, - 70738, - { - "value": "--bs-nav-link-padding-x" - } - ], - [ - "colon-token", - ":", - 70739, - 70739, - null - ], - [ - "number-token", - "0", - 70740, - 70740, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 70741, - 70741, - null - ], - [ - "ident-token", - "--bs-nav-link-padding-y", - 70742, - 70764, - { - "value": "--bs-nav-link-padding-y" - } - ], - [ - "colon-token", - ":", - 70765, - 70765, - null - ], - [ - "dimension-token", - "0.5rem", - 70766, - 70771, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 70772, - 70772, - null - ], - [ - "ident-token", - "--bs-nav-link-font-weight", - 70773, - 70797, - { - "value": "--bs-nav-link-font-weight" - } - ], - [ - "colon-token", - ":", - 70798, - 70798, - null - ], - [ - "whitespace-token", - " ", - 70799, - 70799, - null - ], - [ - "semicolon-token", - ";", - 70800, - 70800, - null - ], - [ - "ident-token", - "--bs-nav-link-color", - 70801, - 70819, - { - "value": "--bs-nav-link-color" - } - ], - [ - "colon-token", - ":", - 70820, - 70820, - null - ], - [ - "function-token", - "var(", - 70821, - 70824, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-color", - 70825, - 70841, - { - "value": "--bs-navbar-color" - } - ], - [ - ")-token", - ")", - 70842, - 70842, - null - ], - [ - "semicolon-token", - ";", - 70843, - 70843, - null - ], - [ - "ident-token", - "--bs-nav-link-hover-color", - 70844, - 70868, - { - "value": "--bs-nav-link-hover-color" - } - ], - [ - "colon-token", - ":", - 70869, - 70869, - null - ], - [ - "function-token", - "var(", - 70870, - 70873, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-hover-color", - 70874, - 70896, - { - "value": "--bs-navbar-hover-color" - } - ], - [ - ")-token", - ")", - 70897, - 70897, - null - ], - [ - "semicolon-token", - ";", - 70898, - 70898, - null - ], - [ - "ident-token", - "--bs-nav-link-disabled-color", - 70899, - 70926, - { - "value": "--bs-nav-link-disabled-color" - } - ], - [ - "colon-token", - ":", - 70927, - 70927, - null - ], - [ - "function-token", - "var(", - 70928, - 70931, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-disabled-color", - 70932, - 70957, - { - "value": "--bs-navbar-disabled-color" - } - ], - [ - ")-token", - ")", - 70958, - 70958, - null - ], - [ - "semicolon-token", - ";", - 70959, - 70959, - null - ], - [ - "ident-token", - "display", - 70960, - 70966, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 70967, - 70967, - null - ], - [ - "ident-token", - "flex", - 70968, - 70971, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 70972, - 70972, - null - ], - [ - "ident-token", - "flex-direction", - 70973, - 70986, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 70987, - 70987, - null - ], - [ - "ident-token", - "column", - 70988, - 70993, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 70994, - 70994, - null - ], - [ - "ident-token", - "padding-left", - 70995, - 71006, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 71007, - 71007, - null - ], - [ - "number-token", - "0", - 71008, - 71008, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 71009, - 71009, - null - ], - [ - "ident-token", - "margin-bottom", - 71010, - 71022, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 71023, - 71023, - null - ], - [ - "number-token", - "0", - 71024, - 71024, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 71025, - 71025, - null - ], - [ - "ident-token", - "list-style", - 71026, - 71035, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 71036, - 71036, - null - ], - [ - "ident-token", - "none", - 71037, - 71040, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 71041, - 71041, - null - ], - [ - "delim-token", - ".", - 71042, - 71042, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 71043, - 71052, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 71053, - 71053, - null - ], - [ - "delim-token", - ".", - 71054, - 71054, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 71055, - 71062, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 71063, - 71063, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 71064, - 71069, - { - "value": "active" - } - ], - [ - "comma-token", - ",", - 71070, - 71070, - null - ], - [ - "delim-token", - ".", - 71071, - 71071, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 71072, - 71081, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 71082, - 71082, - null - ], - [ - "delim-token", - ".", - 71083, - 71083, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 71084, - 71087, - { - "value": "show" - } - ], - [ - "delim-token", - ">", - 71088, - 71088, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 71089, - 71089, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 71090, - 71097, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 71098, - 71098, - null - ], - [ - "ident-token", - "color", - 71099, - 71103, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 71104, - 71104, - null - ], - [ - "function-token", - "var(", - 71105, - 71108, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-active-color", - 71109, - 71132, - { - "value": "--bs-navbar-active-color" - } - ], - [ - ")-token", - ")", - 71133, - 71133, - null - ], - [ - "}-token", - "}", - 71134, - 71134, - null - ], - [ - "delim-token", - ".", - 71135, - 71135, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 71136, - 71145, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 71146, - 71146, - null - ], - [ - "delim-token", - ".", - 71147, - 71147, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 71148, - 71160, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 71161, - 71161, - null - ], - [ - "ident-token", - "position", - 71162, - 71169, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 71170, - 71170, - null - ], - [ - "ident-token", - "static", - 71171, - 71176, - { - "value": "static" - } - ], - [ - "}-token", - "}", - 71177, - 71177, - null - ], - [ - "delim-token", - ".", - 71178, - 71178, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-text", - 71179, - 71189, - { - "value": "navbar-text" - } - ], - [ - "{-token", - "{", - 71190, - 71190, - null - ], - [ - "ident-token", - "padding-top", - 71191, - 71201, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 71202, - 71202, - null - ], - [ - "dimension-token", - ".5rem", - 71203, - 71207, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 71208, - 71208, - null - ], - [ - "ident-token", - "padding-bottom", - 71209, - 71222, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 71223, - 71223, - null - ], - [ - "dimension-token", - ".5rem", - 71224, - 71228, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 71229, - 71229, - null - ], - [ - "ident-token", - "color", - 71230, - 71234, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 71235, - 71235, - null - ], - [ - "function-token", - "var(", - 71236, - 71239, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-color", - 71240, - 71256, - { - "value": "--bs-navbar-color" - } - ], - [ - ")-token", - ")", - 71257, - 71257, - null - ], - [ - "}-token", - "}", - 71258, - 71258, - null - ], - [ - "delim-token", - ".", - 71259, - 71259, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-text", - 71260, - 71270, - { - "value": "navbar-text" - } - ], - [ - "whitespace-token", - " ", - 71271, - 71271, - null - ], - [ - "ident-token", - "a", - 71272, - 71272, - { - "value": "a" - } - ], - [ - "comma-token", - ",", - 71273, - 71273, - null - ], - [ - "delim-token", - ".", - 71274, - 71274, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-text", - 71275, - 71285, - { - "value": "navbar-text" - } - ], - [ - "whitespace-token", - " ", - 71286, - 71286, - null - ], - [ - "ident-token", - "a", - 71287, - 71287, - { - "value": "a" - } - ], - [ - "colon-token", - ":", - 71288, - 71288, - null - ], - [ - "ident-token", - "focus", - 71289, - 71293, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 71294, - 71294, - null - ], - [ - "delim-token", - ".", - 71295, - 71295, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-text", - 71296, - 71306, - { - "value": "navbar-text" - } - ], - [ - "whitespace-token", - " ", - 71307, - 71307, - null - ], - [ - "ident-token", - "a", - 71308, - 71308, - { - "value": "a" - } - ], - [ - "colon-token", - ":", - 71309, - 71309, - null - ], - [ - "ident-token", - "hover", - 71310, - 71314, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 71315, - 71315, - null - ], - [ - "ident-token", - "color", - 71316, - 71320, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 71321, - 71321, - null - ], - [ - "function-token", - "var(", - 71322, - 71325, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-active-color", - 71326, - 71349, - { - "value": "--bs-navbar-active-color" - } - ], - [ - ")-token", - ")", - 71350, - 71350, - null - ], - [ - "}-token", - "}", - 71351, - 71351, - null - ], - [ - "delim-token", - ".", - 71352, - 71352, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 71353, - 71367, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 71368, - 71368, - null - ], - [ - "ident-token", - "flex-basis", - 71369, - 71378, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 71379, - 71379, - null - ], - [ - "percentage-token", - "100%", - 71380, - 71383, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 71384, - 71384, - null - ], - [ - "ident-token", - "flex-grow", - 71385, - 71393, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 71394, - 71394, - null - ], - [ - "number-token", - "1", - 71395, - 71395, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 71396, - 71396, - null - ], - [ - "ident-token", - "align-items", - 71397, - 71407, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 71408, - 71408, - null - ], - [ - "ident-token", - "center", - 71409, - 71414, - { - "value": "center" - } - ], - [ - "}-token", - "}", - 71415, - 71415, - null - ], - [ - "delim-token", - ".", - 71416, - 71416, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 71417, - 71430, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 71431, - 71431, - null - ], - [ - "ident-token", - "padding", - 71432, - 71438, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 71439, - 71439, - null - ], - [ - "function-token", - "var(", - 71440, - 71443, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-padding-y", - 71444, - 71472, - { - "value": "--bs-navbar-toggler-padding-y" - } - ], - [ - ")-token", - ")", - 71473, - 71473, - null - ], - [ - "whitespace-token", - " ", - 71474, - 71474, - null - ], - [ - "function-token", - "var(", - 71475, - 71478, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-padding-x", - 71479, - 71507, - { - "value": "--bs-navbar-toggler-padding-x" - } - ], - [ - ")-token", - ")", - 71508, - 71508, - null - ], - [ - "semicolon-token", - ";", - 71509, - 71509, - null - ], - [ - "ident-token", - "font-size", - 71510, - 71518, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 71519, - 71519, - null - ], - [ - "function-token", - "var(", - 71520, - 71523, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-font-size", - 71524, - 71552, - { - "value": "--bs-navbar-toggler-font-size" - } - ], - [ - ")-token", - ")", - 71553, - 71553, - null - ], - [ - "semicolon-token", - ";", - 71554, - 71554, - null - ], - [ - "ident-token", - "line-height", - 71555, - 71565, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 71566, - 71566, - null - ], - [ - "number-token", - "1", - 71567, - 71567, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 71568, - 71568, - null - ], - [ - "ident-token", - "color", - 71569, - 71573, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 71574, - 71574, - null - ], - [ - "function-token", - "var(", - 71575, - 71578, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-color", - 71579, - 71595, - { - "value": "--bs-navbar-color" - } - ], - [ - ")-token", - ")", - 71596, - 71596, - null - ], - [ - "semicolon-token", - ";", - 71597, - 71597, - null - ], - [ - "ident-token", - "background-color", - 71598, - 71613, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 71614, - 71614, - null - ], - [ - "ident-token", - "transparent", - 71615, - 71625, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 71626, - 71626, - null - ], - [ - "ident-token", - "border", - 71627, - 71632, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 71633, - 71633, - null - ], - [ - "function-token", - "var(", - 71634, - 71637, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 71638, - 71654, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 71655, - 71655, - null - ], - [ - "whitespace-token", - " ", - 71656, - 71656, - null - ], - [ - "ident-token", - "solid", - 71657, - 71661, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 71662, - 71662, - null - ], - [ - "function-token", - "var(", - 71663, - 71666, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-border-color", - 71667, - 71698, - { - "value": "--bs-navbar-toggler-border-color" - } - ], - [ - ")-token", - ")", - 71699, - 71699, - null - ], - [ - "semicolon-token", - ";", - 71700, - 71700, - null - ], - [ - "ident-token", - "border-radius", - 71701, - 71713, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 71714, - 71714, - null - ], - [ - "function-token", - "var(", - 71715, - 71718, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-border-radius", - 71719, - 71751, - { - "value": "--bs-navbar-toggler-border-radius" - } - ], - [ - ")-token", - ")", - 71752, - 71752, - null - ], - [ - "semicolon-token", - ";", - 71753, - 71753, - null - ], - [ - "ident-token", - "transition", - 71754, - 71763, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 71764, - 71764, - null - ], - [ - "function-token", - "var(", - 71765, - 71768, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-transition", - 71769, - 71798, - { - "value": "--bs-navbar-toggler-transition" - } - ], - [ - ")-token", - ")", - 71799, - 71799, - null - ], - [ - "}-token", - "}", - 71800, - 71800, - null - ], - [ - "at-keyword-token", - "@media", - 71801, - 71806, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 71807, - 71807, - null - ], - [ - "(-token", - "(", - 71808, - 71808, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 71809, - 71830, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 71831, - 71831, - null - ], - [ - "ident-token", - "reduce", - 71832, - 71837, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 71838, - 71838, - null - ], - [ - "{-token", - "{", - 71839, - 71839, - null - ], - [ - "delim-token", - ".", - 71840, - 71840, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 71841, - 71854, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 71855, - 71855, - null - ], - [ - "ident-token", - "transition", - 71856, - 71865, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 71866, - 71866, - null - ], - [ - "ident-token", - "none", - 71867, - 71870, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 71871, - 71871, - null - ], - [ - "}-token", - "}", - 71872, - 71872, - null - ], - [ - "delim-token", - ".", - 71873, - 71873, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 71874, - 71887, - { - "value": "navbar-toggler" - } - ], - [ - "colon-token", - ":", - 71888, - 71888, - null - ], - [ - "ident-token", - "hover", - 71889, - 71893, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 71894, - 71894, - null - ], - [ - "ident-token", - "text-decoration", - 71895, - 71909, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 71910, - 71910, - null - ], - [ - "ident-token", - "none", - 71911, - 71914, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 71915, - 71915, - null - ], - [ - "delim-token", - ".", - 71916, - 71916, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 71917, - 71930, - { - "value": "navbar-toggler" - } - ], - [ - "colon-token", - ":", - 71931, - 71931, - null - ], - [ - "ident-token", - "focus", - 71932, - 71936, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 71937, - 71937, - null - ], - [ - "ident-token", - "text-decoration", - 71938, - 71952, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 71953, - 71953, - null - ], - [ - "ident-token", - "none", - 71954, - 71957, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 71958, - 71958, - null - ], - [ - "ident-token", - "outline", - 71959, - 71965, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 71966, - 71966, - null - ], - [ - "number-token", - "0", - 71967, - 71967, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 71968, - 71968, - null - ], - [ - "ident-token", - "box-shadow", - 71969, - 71978, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 71979, - 71979, - null - ], - [ - "number-token", - "0", - 71980, - 71980, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 71981, - 71981, - null - ], - [ - "number-token", - "0", - 71982, - 71982, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 71983, - 71983, - null - ], - [ - "number-token", - "0", - 71984, - 71984, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 71985, - 71985, - null - ], - [ - "function-token", - "var(", - 71986, - 71989, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-focus-width", - 71990, - 72020, - { - "value": "--bs-navbar-toggler-focus-width" - } - ], - [ - ")-token", - ")", - 72021, - 72021, - null - ], - [ - "}-token", - "}", - 72022, - 72022, - null - ], - [ - "delim-token", - ".", - 72023, - 72023, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler-icon", - 72024, - 72042, - { - "value": "navbar-toggler-icon" - } - ], - [ - "{-token", - "{", - 72043, - 72043, - null - ], - [ - "ident-token", - "display", - 72044, - 72050, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 72051, - 72051, - null - ], - [ - "ident-token", - "inline-block", - 72052, - 72063, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 72064, - 72064, - null - ], - [ - "ident-token", - "width", - 72065, - 72069, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 72070, - 72070, - null - ], - [ - "dimension-token", - "1.5em", - 72071, - 72075, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 72076, - 72076, - null - ], - [ - "ident-token", - "height", - 72077, - 72082, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 72083, - 72083, - null - ], - [ - "dimension-token", - "1.5em", - 72084, - 72088, - { - "value": 1.5, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 72089, - 72089, - null - ], - [ - "ident-token", - "vertical-align", - 72090, - 72103, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 72104, - 72104, - null - ], - [ - "ident-token", - "middle", - 72105, - 72110, - { - "value": "middle" - } - ], - [ - "semicolon-token", - ";", - 72111, - 72111, - null - ], - [ - "ident-token", - "background-image", - 72112, - 72127, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 72128, - 72128, - null - ], - [ - "function-token", - "var(", - 72129, - 72132, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-toggler-icon-bg", - 72133, - 72159, - { - "value": "--bs-navbar-toggler-icon-bg" - } - ], - [ - ")-token", - ")", - 72160, - 72160, - null - ], - [ - "semicolon-token", - ";", - 72161, - 72161, - null - ], - [ - "ident-token", - "background-repeat", - 72162, - 72178, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 72179, - 72179, - null - ], - [ - "ident-token", - "no-repeat", - 72180, - 72188, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 72189, - 72189, - null - ], - [ - "ident-token", - "background-position", - 72190, - 72208, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 72209, - 72209, - null - ], - [ - "ident-token", - "center", - 72210, - 72215, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 72216, - 72216, - null - ], - [ - "ident-token", - "background-size", - 72217, - 72231, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 72232, - 72232, - null - ], - [ - "percentage-token", - "100%", - 72233, - 72236, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 72237, - 72237, - null - ], - [ - "delim-token", - ".", - 72238, - 72238, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 72239, - 72255, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 72256, - 72256, - null - ], - [ - "ident-token", - "max-height", - 72257, - 72266, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 72267, - 72267, - null - ], - [ - "function-token", - "var(", - 72268, - 72271, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-scroll-height", - 72272, - 72289, - { - "value": "--bs-scroll-height" - } - ], - [ - "comma-token", - ",", - 72290, - 72290, - null - ], - [ - "dimension-token", - "75vh", - 72291, - 72294, - { - "value": 75, - "type": "integer", - "unit": "vh" - } - ], - [ - ")-token", - ")", - 72295, - 72295, - null - ], - [ - "semicolon-token", - ";", - 72296, - 72296, - null - ], - [ - "ident-token", - "overflow-y", - 72297, - 72306, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 72307, - 72307, - null - ], - [ - "ident-token", - "auto", - 72308, - 72311, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 72312, - 72312, - null - ], - [ - "at-keyword-token", - "@media", - 72313, - 72318, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 72319, - 72319, - null - ], - [ - "(-token", - "(", - 72320, - 72320, - null - ], - [ - "ident-token", - "min-width", - 72321, - 72329, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 72330, - 72330, - null - ], - [ - "dimension-token", - "576px", - 72331, - 72335, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 72336, - 72336, - null - ], - [ - "{-token", - "{", - 72337, - 72337, - null - ], - [ - "delim-token", - ".", - 72338, - 72338, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72339, - 72354, - { - "value": "navbar-expand-sm" - } - ], - [ - "{-token", - "{", - 72355, - 72355, - null - ], - [ - "ident-token", - "flex-wrap", - 72356, - 72364, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 72365, - 72365, - null - ], - [ - "ident-token", - "nowrap", - 72366, - 72371, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 72372, - 72372, - null - ], - [ - "ident-token", - "justify-content", - 72373, - 72387, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 72388, - 72388, - null - ], - [ - "ident-token", - "flex-start", - 72389, - 72398, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 72399, - 72399, - null - ], - [ - "delim-token", - ".", - 72400, - 72400, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72401, - 72416, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72417, - 72417, - null - ], - [ - "delim-token", - ".", - 72418, - 72418, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 72419, - 72428, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 72429, - 72429, - null - ], - [ - "ident-token", - "flex-direction", - 72430, - 72443, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 72444, - 72444, - null - ], - [ - "ident-token", - "row", - 72445, - 72447, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 72448, - 72448, - null - ], - [ - "delim-token", - ".", - 72449, - 72449, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72450, - 72465, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72466, - 72466, - null - ], - [ - "delim-token", - ".", - 72467, - 72467, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 72468, - 72477, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 72478, - 72478, - null - ], - [ - "delim-token", - ".", - 72479, - 72479, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 72480, - 72492, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 72493, - 72493, - null - ], - [ - "ident-token", - "position", - 72494, - 72501, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 72502, - 72502, - null - ], - [ - "ident-token", - "absolute", - 72503, - 72510, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 72511, - 72511, - null - ], - [ - "delim-token", - ".", - 72512, - 72512, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72513, - 72528, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72529, - 72529, - null - ], - [ - "delim-token", - ".", - 72530, - 72530, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 72531, - 72540, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 72541, - 72541, - null - ], - [ - "delim-token", - ".", - 72542, - 72542, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 72543, - 72550, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 72551, - 72551, - null - ], - [ - "ident-token", - "padding-right", - 72552, - 72564, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 72565, - 72565, - null - ], - [ - "function-token", - "var(", - 72566, - 72569, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 72570, - 72599, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 72600, - 72600, - null - ], - [ - "semicolon-token", - ";", - 72601, - 72601, - null - ], - [ - "ident-token", - "padding-left", - 72602, - 72613, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 72614, - 72614, - null - ], - [ - "function-token", - "var(", - 72615, - 72618, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 72619, - 72648, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 72649, - 72649, - null - ], - [ - "}-token", - "}", - 72650, - 72650, - null - ], - [ - "delim-token", - ".", - 72651, - 72651, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72652, - 72667, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72668, - 72668, - null - ], - [ - "delim-token", - ".", - 72669, - 72669, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 72670, - 72686, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 72687, - 72687, - null - ], - [ - "ident-token", - "overflow", - 72688, - 72695, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 72696, - 72696, - null - ], - [ - "ident-token", - "visible", - 72697, - 72703, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 72704, - 72704, - null - ], - [ - "delim-token", - ".", - 72705, - 72705, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72706, - 72721, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72722, - 72722, - null - ], - [ - "delim-token", - ".", - 72723, - 72723, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 72724, - 72738, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 72739, - 72739, - null - ], - [ - "ident-token", - "display", - 72740, - 72746, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 72747, - 72747, - null - ], - [ - "ident-token", - "flex", - 72748, - 72751, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 72752, - 72752, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 72753, - 72761, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 72762, - 72762, - null - ], - [ - "ident-token", - "flex-basis", - 72763, - 72772, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 72773, - 72773, - null - ], - [ - "ident-token", - "auto", - 72774, - 72777, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 72778, - 72778, - null - ], - [ - "delim-token", - ".", - 72779, - 72779, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72780, - 72795, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72796, - 72796, - null - ], - [ - "delim-token", - ".", - 72797, - 72797, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 72798, - 72811, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 72812, - 72812, - null - ], - [ - "ident-token", - "display", - 72813, - 72819, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 72820, - 72820, - null - ], - [ - "ident-token", - "none", - 72821, - 72824, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 72825, - 72825, - null - ], - [ - "delim-token", - ".", - 72826, - 72826, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 72827, - 72842, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 72843, - 72843, - null - ], - [ - "delim-token", - ".", - 72844, - 72844, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 72845, - 72853, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 72854, - 72854, - null - ], - [ - "ident-token", - "position", - 72855, - 72862, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 72863, - 72863, - null - ], - [ - "ident-token", - "static", - 72864, - 72869, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 72870, - 72870, - null - ], - [ - "ident-token", - "z-index", - 72871, - 72877, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 72878, - 72878, - null - ], - [ - "ident-token", - "auto", - 72879, - 72882, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 72883, - 72883, - null - ], - [ - "ident-token", - "flex-grow", - 72884, - 72892, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 72893, - 72893, - null - ], - [ - "number-token", - "1", - 72894, - 72894, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 72895, - 72895, - null - ], - [ - "ident-token", - "width", - 72896, - 72900, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 72901, - 72901, - null - ], - [ - "ident-token", - "auto", - 72902, - 72905, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 72906, - 72906, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 72907, - 72915, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 72916, - 72916, - null - ], - [ - "ident-token", - "height", - 72917, - 72922, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 72923, - 72923, - null - ], - [ - "ident-token", - "auto", - 72924, - 72927, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 72928, - 72928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 72929, - 72937, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 72938, - 72938, - null - ], - [ - "ident-token", - "visibility", - 72939, - 72948, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 72949, - 72949, - null - ], - [ - "ident-token", - "visible", - 72950, - 72956, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 72957, - 72957, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 72958, - 72966, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 72967, - 72967, - null - ], - [ - "ident-token", - "background-color", - 72968, - 72983, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 72984, - 72984, - null - ], - [ - "ident-token", - "transparent", - 72985, - 72995, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 72996, - 72996, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 72997, - 73005, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73006, - 73006, - null - ], - [ - "ident-token", - "border", - 73007, - 73012, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 73013, - 73013, - null - ], - [ - "number-token", - "0", - 73014, - 73014, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 73015, - 73015, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73016, - 73024, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73025, - 73025, - null - ], - [ - "ident-token", - "transform", - 73026, - 73034, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 73035, - 73035, - null - ], - [ - "ident-token", - "none", - 73036, - 73039, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 73040, - 73040, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73041, - 73049, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73050, - 73050, - null - ], - [ - "ident-token", - "transition", - 73051, - 73060, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 73061, - 73061, - null - ], - [ - "ident-token", - "none", - 73062, - 73065, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 73066, - 73066, - null - ], - [ - "delim-token", - ".", - 73067, - 73067, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 73068, - 73083, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 73084, - 73084, - null - ], - [ - "delim-token", - ".", - 73085, - 73085, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 73086, - 73094, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 73095, - 73095, - null - ], - [ - "delim-token", - ".", - 73096, - 73096, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 73097, - 73112, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 73113, - 73113, - null - ], - [ - "ident-token", - "display", - 73114, - 73120, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 73121, - 73121, - null - ], - [ - "ident-token", - "none", - 73122, - 73125, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 73126, - 73126, - null - ], - [ - "delim-token", - ".", - 73127, - 73127, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-sm", - 73128, - 73143, - { - "value": "navbar-expand-sm" - } - ], - [ - "whitespace-token", - " ", - 73144, - 73144, - null - ], - [ - "delim-token", - ".", - 73145, - 73145, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 73146, - 73154, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 73155, - 73155, - null - ], - [ - "delim-token", - ".", - 73156, - 73156, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 73157, - 73170, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 73171, - 73171, - null - ], - [ - "ident-token", - "display", - 73172, - 73178, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 73179, - 73179, - null - ], - [ - "ident-token", - "flex", - 73180, - 73183, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 73184, - 73184, - null - ], - [ - "ident-token", - "flex-grow", - 73185, - 73193, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 73194, - 73194, - null - ], - [ - "number-token", - "0", - 73195, - 73195, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 73196, - 73196, - null - ], - [ - "ident-token", - "padding", - 73197, - 73203, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 73204, - 73204, - null - ], - [ - "number-token", - "0", - 73205, - 73205, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 73206, - 73206, - null - ], - [ - "ident-token", - "overflow-y", - 73207, - 73216, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 73217, - 73217, - null - ], - [ - "ident-token", - "visible", - 73218, - 73224, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 73225, - 73225, - null - ], - [ - "}-token", - "}", - 73226, - 73226, - null - ], - [ - "at-keyword-token", - "@media", - 73227, - 73232, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 73233, - 73233, - null - ], - [ - "(-token", - "(", - 73234, - 73234, - null - ], - [ - "ident-token", - "min-width", - 73235, - 73243, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 73244, - 73244, - null - ], - [ - "dimension-token", - "768px", - 73245, - 73249, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 73250, - 73250, - null - ], - [ - "{-token", - "{", - 73251, - 73251, - null - ], - [ - "delim-token", - ".", - 73252, - 73252, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73253, - 73268, - { - "value": "navbar-expand-md" - } - ], - [ - "{-token", - "{", - 73269, - 73269, - null - ], - [ - "ident-token", - "flex-wrap", - 73270, - 73278, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 73279, - 73279, - null - ], - [ - "ident-token", - "nowrap", - 73280, - 73285, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 73286, - 73286, - null - ], - [ - "ident-token", - "justify-content", - 73287, - 73301, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 73302, - 73302, - null - ], - [ - "ident-token", - "flex-start", - 73303, - 73312, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 73313, - 73313, - null - ], - [ - "delim-token", - ".", - 73314, - 73314, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73315, - 73330, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73331, - 73331, - null - ], - [ - "delim-token", - ".", - 73332, - 73332, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 73333, - 73342, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 73343, - 73343, - null - ], - [ - "ident-token", - "flex-direction", - 73344, - 73357, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 73358, - 73358, - null - ], - [ - "ident-token", - "row", - 73359, - 73361, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 73362, - 73362, - null - ], - [ - "delim-token", - ".", - 73363, - 73363, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73364, - 73379, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73380, - 73380, - null - ], - [ - "delim-token", - ".", - 73381, - 73381, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 73382, - 73391, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 73392, - 73392, - null - ], - [ - "delim-token", - ".", - 73393, - 73393, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 73394, - 73406, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 73407, - 73407, - null - ], - [ - "ident-token", - "position", - 73408, - 73415, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 73416, - 73416, - null - ], - [ - "ident-token", - "absolute", - 73417, - 73424, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 73425, - 73425, - null - ], - [ - "delim-token", - ".", - 73426, - 73426, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73427, - 73442, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73443, - 73443, - null - ], - [ - "delim-token", - ".", - 73444, - 73444, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 73445, - 73454, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 73455, - 73455, - null - ], - [ - "delim-token", - ".", - 73456, - 73456, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 73457, - 73464, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 73465, - 73465, - null - ], - [ - "ident-token", - "padding-right", - 73466, - 73478, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 73479, - 73479, - null - ], - [ - "function-token", - "var(", - 73480, - 73483, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 73484, - 73513, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 73514, - 73514, - null - ], - [ - "semicolon-token", - ";", - 73515, - 73515, - null - ], - [ - "ident-token", - "padding-left", - 73516, - 73527, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 73528, - 73528, - null - ], - [ - "function-token", - "var(", - 73529, - 73532, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 73533, - 73562, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 73563, - 73563, - null - ], - [ - "}-token", - "}", - 73564, - 73564, - null - ], - [ - "delim-token", - ".", - 73565, - 73565, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73566, - 73581, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73582, - 73582, - null - ], - [ - "delim-token", - ".", - 73583, - 73583, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 73584, - 73600, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 73601, - 73601, - null - ], - [ - "ident-token", - "overflow", - 73602, - 73609, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 73610, - 73610, - null - ], - [ - "ident-token", - "visible", - 73611, - 73617, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 73618, - 73618, - null - ], - [ - "delim-token", - ".", - 73619, - 73619, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73620, - 73635, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73636, - 73636, - null - ], - [ - "delim-token", - ".", - 73637, - 73637, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 73638, - 73652, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 73653, - 73653, - null - ], - [ - "ident-token", - "display", - 73654, - 73660, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 73661, - 73661, - null - ], - [ - "ident-token", - "flex", - 73662, - 73665, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 73666, - 73666, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73667, - 73675, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73676, - 73676, - null - ], - [ - "ident-token", - "flex-basis", - 73677, - 73686, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 73687, - 73687, - null - ], - [ - "ident-token", - "auto", - 73688, - 73691, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 73692, - 73692, - null - ], - [ - "delim-token", - ".", - 73693, - 73693, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73694, - 73709, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73710, - 73710, - null - ], - [ - "delim-token", - ".", - 73711, - 73711, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 73712, - 73725, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 73726, - 73726, - null - ], - [ - "ident-token", - "display", - 73727, - 73733, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 73734, - 73734, - null - ], - [ - "ident-token", - "none", - 73735, - 73738, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 73739, - 73739, - null - ], - [ - "delim-token", - ".", - 73740, - 73740, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73741, - 73756, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73757, - 73757, - null - ], - [ - "delim-token", - ".", - 73758, - 73758, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 73759, - 73767, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 73768, - 73768, - null - ], - [ - "ident-token", - "position", - 73769, - 73776, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 73777, - 73777, - null - ], - [ - "ident-token", - "static", - 73778, - 73783, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 73784, - 73784, - null - ], - [ - "ident-token", - "z-index", - 73785, - 73791, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 73792, - 73792, - null - ], - [ - "ident-token", - "auto", - 73793, - 73796, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 73797, - 73797, - null - ], - [ - "ident-token", - "flex-grow", - 73798, - 73806, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 73807, - 73807, - null - ], - [ - "number-token", - "1", - 73808, - 73808, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 73809, - 73809, - null - ], - [ - "ident-token", - "width", - 73810, - 73814, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 73815, - 73815, - null - ], - [ - "ident-token", - "auto", - 73816, - 73819, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 73820, - 73820, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73821, - 73829, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73830, - 73830, - null - ], - [ - "ident-token", - "height", - 73831, - 73836, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 73837, - 73837, - null - ], - [ - "ident-token", - "auto", - 73838, - 73841, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 73842, - 73842, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73843, - 73851, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73852, - 73852, - null - ], - [ - "ident-token", - "visibility", - 73853, - 73862, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 73863, - 73863, - null - ], - [ - "ident-token", - "visible", - 73864, - 73870, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 73871, - 73871, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73872, - 73880, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73881, - 73881, - null - ], - [ - "ident-token", - "background-color", - 73882, - 73897, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 73898, - 73898, - null - ], - [ - "ident-token", - "transparent", - 73899, - 73909, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 73910, - 73910, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73911, - 73919, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73920, - 73920, - null - ], - [ - "ident-token", - "border", - 73921, - 73926, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 73927, - 73927, - null - ], - [ - "number-token", - "0", - 73928, - 73928, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 73929, - 73929, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73930, - 73938, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73939, - 73939, - null - ], - [ - "ident-token", - "transform", - 73940, - 73948, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 73949, - 73949, - null - ], - [ - "ident-token", - "none", - 73950, - 73953, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 73954, - 73954, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 73955, - 73963, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 73964, - 73964, - null - ], - [ - "ident-token", - "transition", - 73965, - 73974, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 73975, - 73975, - null - ], - [ - "ident-token", - "none", - 73976, - 73979, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 73980, - 73980, - null - ], - [ - "delim-token", - ".", - 73981, - 73981, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 73982, - 73997, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 73998, - 73998, - null - ], - [ - "delim-token", - ".", - 73999, - 73999, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 74000, - 74008, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 74009, - 74009, - null - ], - [ - "delim-token", - ".", - 74010, - 74010, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 74011, - 74026, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 74027, - 74027, - null - ], - [ - "ident-token", - "display", - 74028, - 74034, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 74035, - 74035, - null - ], - [ - "ident-token", - "none", - 74036, - 74039, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 74040, - 74040, - null - ], - [ - "delim-token", - ".", - 74041, - 74041, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-md", - 74042, - 74057, - { - "value": "navbar-expand-md" - } - ], - [ - "whitespace-token", - " ", - 74058, - 74058, - null - ], - [ - "delim-token", - ".", - 74059, - 74059, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 74060, - 74068, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 74069, - 74069, - null - ], - [ - "delim-token", - ".", - 74070, - 74070, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 74071, - 74084, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 74085, - 74085, - null - ], - [ - "ident-token", - "display", - 74086, - 74092, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 74093, - 74093, - null - ], - [ - "ident-token", - "flex", - 74094, - 74097, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 74098, - 74098, - null - ], - [ - "ident-token", - "flex-grow", - 74099, - 74107, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 74108, - 74108, - null - ], - [ - "number-token", - "0", - 74109, - 74109, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 74110, - 74110, - null - ], - [ - "ident-token", - "padding", - 74111, - 74117, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 74118, - 74118, - null - ], - [ - "number-token", - "0", - 74119, - 74119, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 74120, - 74120, - null - ], - [ - "ident-token", - "overflow-y", - 74121, - 74130, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 74131, - 74131, - null - ], - [ - "ident-token", - "visible", - 74132, - 74138, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 74139, - 74139, - null - ], - [ - "}-token", - "}", - 74140, - 74140, - null - ], - [ - "at-keyword-token", - "@media", - 74141, - 74146, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 74147, - 74147, - null - ], - [ - "(-token", - "(", - 74148, - 74148, - null - ], - [ - "ident-token", - "min-width", - 74149, - 74157, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 74158, - 74158, - null - ], - [ - "dimension-token", - "992px", - 74159, - 74163, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 74164, - 74164, - null - ], - [ - "{-token", - "{", - 74165, - 74165, - null - ], - [ - "delim-token", - ".", - 74166, - 74166, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74167, - 74182, - { - "value": "navbar-expand-lg" - } - ], - [ - "{-token", - "{", - 74183, - 74183, - null - ], - [ - "ident-token", - "flex-wrap", - 74184, - 74192, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 74193, - 74193, - null - ], - [ - "ident-token", - "nowrap", - 74194, - 74199, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 74200, - 74200, - null - ], - [ - "ident-token", - "justify-content", - 74201, - 74215, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 74216, - 74216, - null - ], - [ - "ident-token", - "flex-start", - 74217, - 74226, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 74227, - 74227, - null - ], - [ - "delim-token", - ".", - 74228, - 74228, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74229, - 74244, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74245, - 74245, - null - ], - [ - "delim-token", - ".", - 74246, - 74246, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 74247, - 74256, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 74257, - 74257, - null - ], - [ - "ident-token", - "flex-direction", - 74258, - 74271, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 74272, - 74272, - null - ], - [ - "ident-token", - "row", - 74273, - 74275, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 74276, - 74276, - null - ], - [ - "delim-token", - ".", - 74277, - 74277, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74278, - 74293, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74294, - 74294, - null - ], - [ - "delim-token", - ".", - 74295, - 74295, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 74296, - 74305, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 74306, - 74306, - null - ], - [ - "delim-token", - ".", - 74307, - 74307, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 74308, - 74320, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 74321, - 74321, - null - ], - [ - "ident-token", - "position", - 74322, - 74329, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 74330, - 74330, - null - ], - [ - "ident-token", - "absolute", - 74331, - 74338, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 74339, - 74339, - null - ], - [ - "delim-token", - ".", - 74340, - 74340, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74341, - 74356, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74357, - 74357, - null - ], - [ - "delim-token", - ".", - 74358, - 74358, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 74359, - 74368, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 74369, - 74369, - null - ], - [ - "delim-token", - ".", - 74370, - 74370, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 74371, - 74378, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 74379, - 74379, - null - ], - [ - "ident-token", - "padding-right", - 74380, - 74392, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 74393, - 74393, - null - ], - [ - "function-token", - "var(", - 74394, - 74397, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 74398, - 74427, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 74428, - 74428, - null - ], - [ - "semicolon-token", - ";", - 74429, - 74429, - null - ], - [ - "ident-token", - "padding-left", - 74430, - 74441, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 74442, - 74442, - null - ], - [ - "function-token", - "var(", - 74443, - 74446, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 74447, - 74476, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 74477, - 74477, - null - ], - [ - "}-token", - "}", - 74478, - 74478, - null - ], - [ - "delim-token", - ".", - 74479, - 74479, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74480, - 74495, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74496, - 74496, - null - ], - [ - "delim-token", - ".", - 74497, - 74497, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 74498, - 74514, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 74515, - 74515, - null - ], - [ - "ident-token", - "overflow", - 74516, - 74523, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 74524, - 74524, - null - ], - [ - "ident-token", - "visible", - 74525, - 74531, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 74532, - 74532, - null - ], - [ - "delim-token", - ".", - 74533, - 74533, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74534, - 74549, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74550, - 74550, - null - ], - [ - "delim-token", - ".", - 74551, - 74551, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 74552, - 74566, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 74567, - 74567, - null - ], - [ - "ident-token", - "display", - 74568, - 74574, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 74575, - 74575, - null - ], - [ - "ident-token", - "flex", - 74576, - 74579, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 74580, - 74580, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74581, - 74589, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74590, - 74590, - null - ], - [ - "ident-token", - "flex-basis", - 74591, - 74600, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 74601, - 74601, - null - ], - [ - "ident-token", - "auto", - 74602, - 74605, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 74606, - 74606, - null - ], - [ - "delim-token", - ".", - 74607, - 74607, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74608, - 74623, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74624, - 74624, - null - ], - [ - "delim-token", - ".", - 74625, - 74625, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 74626, - 74639, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 74640, - 74640, - null - ], - [ - "ident-token", - "display", - 74641, - 74647, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 74648, - 74648, - null - ], - [ - "ident-token", - "none", - 74649, - 74652, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 74653, - 74653, - null - ], - [ - "delim-token", - ".", - 74654, - 74654, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74655, - 74670, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74671, - 74671, - null - ], - [ - "delim-token", - ".", - 74672, - 74672, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 74673, - 74681, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 74682, - 74682, - null - ], - [ - "ident-token", - "position", - 74683, - 74690, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 74691, - 74691, - null - ], - [ - "ident-token", - "static", - 74692, - 74697, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 74698, - 74698, - null - ], - [ - "ident-token", - "z-index", - 74699, - 74705, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 74706, - 74706, - null - ], - [ - "ident-token", - "auto", - 74707, - 74710, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 74711, - 74711, - null - ], - [ - "ident-token", - "flex-grow", - 74712, - 74720, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 74721, - 74721, - null - ], - [ - "number-token", - "1", - 74722, - 74722, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 74723, - 74723, - null - ], - [ - "ident-token", - "width", - 74724, - 74728, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 74729, - 74729, - null - ], - [ - "ident-token", - "auto", - 74730, - 74733, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 74734, - 74734, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74735, - 74743, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74744, - 74744, - null - ], - [ - "ident-token", - "height", - 74745, - 74750, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 74751, - 74751, - null - ], - [ - "ident-token", - "auto", - 74752, - 74755, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 74756, - 74756, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74757, - 74765, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74766, - 74766, - null - ], - [ - "ident-token", - "visibility", - 74767, - 74776, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 74777, - 74777, - null - ], - [ - "ident-token", - "visible", - 74778, - 74784, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 74785, - 74785, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74786, - 74794, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74795, - 74795, - null - ], - [ - "ident-token", - "background-color", - 74796, - 74811, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 74812, - 74812, - null - ], - [ - "ident-token", - "transparent", - 74813, - 74823, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 74824, - 74824, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74825, - 74833, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74834, - 74834, - null - ], - [ - "ident-token", - "border", - 74835, - 74840, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 74841, - 74841, - null - ], - [ - "number-token", - "0", - 74842, - 74842, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 74843, - 74843, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74844, - 74852, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74853, - 74853, - null - ], - [ - "ident-token", - "transform", - 74854, - 74862, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 74863, - 74863, - null - ], - [ - "ident-token", - "none", - 74864, - 74867, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 74868, - 74868, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 74869, - 74877, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 74878, - 74878, - null - ], - [ - "ident-token", - "transition", - 74879, - 74888, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 74889, - 74889, - null - ], - [ - "ident-token", - "none", - 74890, - 74893, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 74894, - 74894, - null - ], - [ - "delim-token", - ".", - 74895, - 74895, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74896, - 74911, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74912, - 74912, - null - ], - [ - "delim-token", - ".", - 74913, - 74913, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 74914, - 74922, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 74923, - 74923, - null - ], - [ - "delim-token", - ".", - 74924, - 74924, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 74925, - 74940, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 74941, - 74941, - null - ], - [ - "ident-token", - "display", - 74942, - 74948, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 74949, - 74949, - null - ], - [ - "ident-token", - "none", - 74950, - 74953, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 74954, - 74954, - null - ], - [ - "delim-token", - ".", - 74955, - 74955, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-lg", - 74956, - 74971, - { - "value": "navbar-expand-lg" - } - ], - [ - "whitespace-token", - " ", - 74972, - 74972, - null - ], - [ - "delim-token", - ".", - 74973, - 74973, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 74974, - 74982, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 74983, - 74983, - null - ], - [ - "delim-token", - ".", - 74984, - 74984, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 74985, - 74998, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 74999, - 74999, - null - ], - [ - "ident-token", - "display", - 75000, - 75006, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 75007, - 75007, - null - ], - [ - "ident-token", - "flex", - 75008, - 75011, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 75012, - 75012, - null - ], - [ - "ident-token", - "flex-grow", - 75013, - 75021, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 75022, - 75022, - null - ], - [ - "number-token", - "0", - 75023, - 75023, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 75024, - 75024, - null - ], - [ - "ident-token", - "padding", - 75025, - 75031, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 75032, - 75032, - null - ], - [ - "number-token", - "0", - 75033, - 75033, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 75034, - 75034, - null - ], - [ - "ident-token", - "overflow-y", - 75035, - 75044, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 75045, - 75045, - null - ], - [ - "ident-token", - "visible", - 75046, - 75052, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 75053, - 75053, - null - ], - [ - "}-token", - "}", - 75054, - 75054, - null - ], - [ - "at-keyword-token", - "@media", - 75055, - 75060, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 75061, - 75061, - null - ], - [ - "(-token", - "(", - 75062, - 75062, - null - ], - [ - "ident-token", - "min-width", - 75063, - 75071, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 75072, - 75072, - null - ], - [ - "dimension-token", - "1200px", - 75073, - 75078, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 75079, - 75079, - null - ], - [ - "{-token", - "{", - 75080, - 75080, - null - ], - [ - "delim-token", - ".", - 75081, - 75081, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75082, - 75097, - { - "value": "navbar-expand-xl" - } - ], - [ - "{-token", - "{", - 75098, - 75098, - null - ], - [ - "ident-token", - "flex-wrap", - 75099, - 75107, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 75108, - 75108, - null - ], - [ - "ident-token", - "nowrap", - 75109, - 75114, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 75115, - 75115, - null - ], - [ - "ident-token", - "justify-content", - 75116, - 75130, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 75131, - 75131, - null - ], - [ - "ident-token", - "flex-start", - 75132, - 75141, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 75142, - 75142, - null - ], - [ - "delim-token", - ".", - 75143, - 75143, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75144, - 75159, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75160, - 75160, - null - ], - [ - "delim-token", - ".", - 75161, - 75161, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 75162, - 75171, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 75172, - 75172, - null - ], - [ - "ident-token", - "flex-direction", - 75173, - 75186, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 75187, - 75187, - null - ], - [ - "ident-token", - "row", - 75188, - 75190, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 75191, - 75191, - null - ], - [ - "delim-token", - ".", - 75192, - 75192, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75193, - 75208, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75209, - 75209, - null - ], - [ - "delim-token", - ".", - 75210, - 75210, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 75211, - 75220, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 75221, - 75221, - null - ], - [ - "delim-token", - ".", - 75222, - 75222, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 75223, - 75235, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 75236, - 75236, - null - ], - [ - "ident-token", - "position", - 75237, - 75244, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 75245, - 75245, - null - ], - [ - "ident-token", - "absolute", - 75246, - 75253, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 75254, - 75254, - null - ], - [ - "delim-token", - ".", - 75255, - 75255, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75256, - 75271, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75272, - 75272, - null - ], - [ - "delim-token", - ".", - 75273, - 75273, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 75274, - 75283, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 75284, - 75284, - null - ], - [ - "delim-token", - ".", - 75285, - 75285, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 75286, - 75293, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 75294, - 75294, - null - ], - [ - "ident-token", - "padding-right", - 75295, - 75307, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 75308, - 75308, - null - ], - [ - "function-token", - "var(", - 75309, - 75312, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 75313, - 75342, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 75343, - 75343, - null - ], - [ - "semicolon-token", - ";", - 75344, - 75344, - null - ], - [ - "ident-token", - "padding-left", - 75345, - 75356, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 75357, - 75357, - null - ], - [ - "function-token", - "var(", - 75358, - 75361, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 75362, - 75391, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 75392, - 75392, - null - ], - [ - "}-token", - "}", - 75393, - 75393, - null - ], - [ - "delim-token", - ".", - 75394, - 75394, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75395, - 75410, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75411, - 75411, - null - ], - [ - "delim-token", - ".", - 75412, - 75412, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 75413, - 75429, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 75430, - 75430, - null - ], - [ - "ident-token", - "overflow", - 75431, - 75438, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 75439, - 75439, - null - ], - [ - "ident-token", - "visible", - 75440, - 75446, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 75447, - 75447, - null - ], - [ - "delim-token", - ".", - 75448, - 75448, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75449, - 75464, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75465, - 75465, - null - ], - [ - "delim-token", - ".", - 75466, - 75466, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 75467, - 75481, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 75482, - 75482, - null - ], - [ - "ident-token", - "display", - 75483, - 75489, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 75490, - 75490, - null - ], - [ - "ident-token", - "flex", - 75491, - 75494, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 75495, - 75495, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75496, - 75504, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75505, - 75505, - null - ], - [ - "ident-token", - "flex-basis", - 75506, - 75515, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 75516, - 75516, - null - ], - [ - "ident-token", - "auto", - 75517, - 75520, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 75521, - 75521, - null - ], - [ - "delim-token", - ".", - 75522, - 75522, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75523, - 75538, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75539, - 75539, - null - ], - [ - "delim-token", - ".", - 75540, - 75540, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 75541, - 75554, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 75555, - 75555, - null - ], - [ - "ident-token", - "display", - 75556, - 75562, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 75563, - 75563, - null - ], - [ - "ident-token", - "none", - 75564, - 75567, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 75568, - 75568, - null - ], - [ - "delim-token", - ".", - 75569, - 75569, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75570, - 75585, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75586, - 75586, - null - ], - [ - "delim-token", - ".", - 75587, - 75587, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 75588, - 75596, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 75597, - 75597, - null - ], - [ - "ident-token", - "position", - 75598, - 75605, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 75606, - 75606, - null - ], - [ - "ident-token", - "static", - 75607, - 75612, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 75613, - 75613, - null - ], - [ - "ident-token", - "z-index", - 75614, - 75620, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 75621, - 75621, - null - ], - [ - "ident-token", - "auto", - 75622, - 75625, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 75626, - 75626, - null - ], - [ - "ident-token", - "flex-grow", - 75627, - 75635, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 75636, - 75636, - null - ], - [ - "number-token", - "1", - 75637, - 75637, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 75638, - 75638, - null - ], - [ - "ident-token", - "width", - 75639, - 75643, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 75644, - 75644, - null - ], - [ - "ident-token", - "auto", - 75645, - 75648, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 75649, - 75649, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75650, - 75658, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75659, - 75659, - null - ], - [ - "ident-token", - "height", - 75660, - 75665, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 75666, - 75666, - null - ], - [ - "ident-token", - "auto", - 75667, - 75670, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 75671, - 75671, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75672, - 75680, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75681, - 75681, - null - ], - [ - "ident-token", - "visibility", - 75682, - 75691, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 75692, - 75692, - null - ], - [ - "ident-token", - "visible", - 75693, - 75699, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 75700, - 75700, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75701, - 75709, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75710, - 75710, - null - ], - [ - "ident-token", - "background-color", - 75711, - 75726, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 75727, - 75727, - null - ], - [ - "ident-token", - "transparent", - 75728, - 75738, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 75739, - 75739, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75740, - 75748, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75749, - 75749, - null - ], - [ - "ident-token", - "border", - 75750, - 75755, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 75756, - 75756, - null - ], - [ - "number-token", - "0", - 75757, - 75757, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 75758, - 75758, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75759, - 75767, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75768, - 75768, - null - ], - [ - "ident-token", - "transform", - 75769, - 75777, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 75778, - 75778, - null - ], - [ - "ident-token", - "none", - 75779, - 75782, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 75783, - 75783, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 75784, - 75792, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 75793, - 75793, - null - ], - [ - "ident-token", - "transition", - 75794, - 75803, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 75804, - 75804, - null - ], - [ - "ident-token", - "none", - 75805, - 75808, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 75809, - 75809, - null - ], - [ - "delim-token", - ".", - 75810, - 75810, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75811, - 75826, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75827, - 75827, - null - ], - [ - "delim-token", - ".", - 75828, - 75828, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 75829, - 75837, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 75838, - 75838, - null - ], - [ - "delim-token", - ".", - 75839, - 75839, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 75840, - 75855, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 75856, - 75856, - null - ], - [ - "ident-token", - "display", - 75857, - 75863, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 75864, - 75864, - null - ], - [ - "ident-token", - "none", - 75865, - 75868, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 75869, - 75869, - null - ], - [ - "delim-token", - ".", - 75870, - 75870, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xl", - 75871, - 75886, - { - "value": "navbar-expand-xl" - } - ], - [ - "whitespace-token", - " ", - 75887, - 75887, - null - ], - [ - "delim-token", - ".", - 75888, - 75888, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 75889, - 75897, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 75898, - 75898, - null - ], - [ - "delim-token", - ".", - 75899, - 75899, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 75900, - 75913, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 75914, - 75914, - null - ], - [ - "ident-token", - "display", - 75915, - 75921, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 75922, - 75922, - null - ], - [ - "ident-token", - "flex", - 75923, - 75926, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 75927, - 75927, - null - ], - [ - "ident-token", - "flex-grow", - 75928, - 75936, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 75937, - 75937, - null - ], - [ - "number-token", - "0", - 75938, - 75938, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 75939, - 75939, - null - ], - [ - "ident-token", - "padding", - 75940, - 75946, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 75947, - 75947, - null - ], - [ - "number-token", - "0", - 75948, - 75948, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 75949, - 75949, - null - ], - [ - "ident-token", - "overflow-y", - 75950, - 75959, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 75960, - 75960, - null - ], - [ - "ident-token", - "visible", - 75961, - 75967, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 75968, - 75968, - null - ], - [ - "}-token", - "}", - 75969, - 75969, - null - ], - [ - "at-keyword-token", - "@media", - 75970, - 75975, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 75976, - 75976, - null - ], - [ - "(-token", - "(", - 75977, - 75977, - null - ], - [ - "ident-token", - "min-width", - 75978, - 75986, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 75987, - 75987, - null - ], - [ - "dimension-token", - "1400px", - 75988, - 75993, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 75994, - 75994, - null - ], - [ - "{-token", - "{", - 75995, - 75995, - null - ], - [ - "delim-token", - ".", - 75996, - 75996, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 75997, - 76013, - { - "value": "navbar-expand-xxl" - } - ], - [ - "{-token", - "{", - 76014, - 76014, - null - ], - [ - "ident-token", - "flex-wrap", - 76015, - 76023, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 76024, - 76024, - null - ], - [ - "ident-token", - "nowrap", - 76025, - 76030, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 76031, - 76031, - null - ], - [ - "ident-token", - "justify-content", - 76032, - 76046, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 76047, - 76047, - null - ], - [ - "ident-token", - "flex-start", - 76048, - 76057, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 76058, - 76058, - null - ], - [ - "delim-token", - ".", - 76059, - 76059, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76060, - 76076, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76077, - 76077, - null - ], - [ - "delim-token", - ".", - 76078, - 76078, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 76079, - 76088, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 76089, - 76089, - null - ], - [ - "ident-token", - "flex-direction", - 76090, - 76103, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 76104, - 76104, - null - ], - [ - "ident-token", - "row", - 76105, - 76107, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 76108, - 76108, - null - ], - [ - "delim-token", - ".", - 76109, - 76109, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76110, - 76126, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76127, - 76127, - null - ], - [ - "delim-token", - ".", - 76128, - 76128, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 76129, - 76138, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 76139, - 76139, - null - ], - [ - "delim-token", - ".", - 76140, - 76140, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 76141, - 76153, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 76154, - 76154, - null - ], - [ - "ident-token", - "position", - 76155, - 76162, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 76163, - 76163, - null - ], - [ - "ident-token", - "absolute", - 76164, - 76171, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 76172, - 76172, - null - ], - [ - "delim-token", - ".", - 76173, - 76173, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76174, - 76190, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76191, - 76191, - null - ], - [ - "delim-token", - ".", - 76192, - 76192, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 76193, - 76202, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 76203, - 76203, - null - ], - [ - "delim-token", - ".", - 76204, - 76204, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 76205, - 76212, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 76213, - 76213, - null - ], - [ - "ident-token", - "padding-right", - 76214, - 76226, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 76227, - 76227, - null - ], - [ - "function-token", - "var(", - 76228, - 76231, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 76232, - 76261, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 76262, - 76262, - null - ], - [ - "semicolon-token", - ";", - 76263, - 76263, - null - ], - [ - "ident-token", - "padding-left", - 76264, - 76275, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 76276, - 76276, - null - ], - [ - "function-token", - "var(", - 76277, - 76280, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 76281, - 76310, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 76311, - 76311, - null - ], - [ - "}-token", - "}", - 76312, - 76312, - null - ], - [ - "delim-token", - ".", - 76313, - 76313, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76314, - 76330, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76331, - 76331, - null - ], - [ - "delim-token", - ".", - 76332, - 76332, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 76333, - 76349, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 76350, - 76350, - null - ], - [ - "ident-token", - "overflow", - 76351, - 76358, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 76359, - 76359, - null - ], - [ - "ident-token", - "visible", - 76360, - 76366, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 76367, - 76367, - null - ], - [ - "delim-token", - ".", - 76368, - 76368, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76369, - 76385, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76386, - 76386, - null - ], - [ - "delim-token", - ".", - 76387, - 76387, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 76388, - 76402, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 76403, - 76403, - null - ], - [ - "ident-token", - "display", - 76404, - 76410, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 76411, - 76411, - null - ], - [ - "ident-token", - "flex", - 76412, - 76415, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 76416, - 76416, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76417, - 76425, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76426, - 76426, - null - ], - [ - "ident-token", - "flex-basis", - 76427, - 76436, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 76437, - 76437, - null - ], - [ - "ident-token", - "auto", - 76438, - 76441, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 76442, - 76442, - null - ], - [ - "delim-token", - ".", - 76443, - 76443, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76444, - 76460, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76461, - 76461, - null - ], - [ - "delim-token", - ".", - 76462, - 76462, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 76463, - 76476, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 76477, - 76477, - null - ], - [ - "ident-token", - "display", - 76478, - 76484, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 76485, - 76485, - null - ], - [ - "ident-token", - "none", - 76486, - 76489, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 76490, - 76490, - null - ], - [ - "delim-token", - ".", - 76491, - 76491, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76492, - 76508, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76509, - 76509, - null - ], - [ - "delim-token", - ".", - 76510, - 76510, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 76511, - 76519, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 76520, - 76520, - null - ], - [ - "ident-token", - "position", - 76521, - 76528, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 76529, - 76529, - null - ], - [ - "ident-token", - "static", - 76530, - 76535, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 76536, - 76536, - null - ], - [ - "ident-token", - "z-index", - 76537, - 76543, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 76544, - 76544, - null - ], - [ - "ident-token", - "auto", - 76545, - 76548, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 76549, - 76549, - null - ], - [ - "ident-token", - "flex-grow", - 76550, - 76558, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 76559, - 76559, - null - ], - [ - "number-token", - "1", - 76560, - 76560, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 76561, - 76561, - null - ], - [ - "ident-token", - "width", - 76562, - 76566, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 76567, - 76567, - null - ], - [ - "ident-token", - "auto", - 76568, - 76571, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 76572, - 76572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76573, - 76581, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76582, - 76582, - null - ], - [ - "ident-token", - "height", - 76583, - 76588, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 76589, - 76589, - null - ], - [ - "ident-token", - "auto", - 76590, - 76593, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 76594, - 76594, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76595, - 76603, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76604, - 76604, - null - ], - [ - "ident-token", - "visibility", - 76605, - 76614, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 76615, - 76615, - null - ], - [ - "ident-token", - "visible", - 76616, - 76622, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 76623, - 76623, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76624, - 76632, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76633, - 76633, - null - ], - [ - "ident-token", - "background-color", - 76634, - 76649, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 76650, - 76650, - null - ], - [ - "ident-token", - "transparent", - 76651, - 76661, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 76662, - 76662, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76663, - 76671, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76672, - 76672, - null - ], - [ - "ident-token", - "border", - 76673, - 76678, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 76679, - 76679, - null - ], - [ - "number-token", - "0", - 76680, - 76680, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 76681, - 76681, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76682, - 76690, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76691, - 76691, - null - ], - [ - "ident-token", - "transform", - 76692, - 76700, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 76701, - 76701, - null - ], - [ - "ident-token", - "none", - 76702, - 76705, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 76706, - 76706, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 76707, - 76715, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 76716, - 76716, - null - ], - [ - "ident-token", - "transition", - 76717, - 76726, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 76727, - 76727, - null - ], - [ - "ident-token", - "none", - 76728, - 76731, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 76732, - 76732, - null - ], - [ - "delim-token", - ".", - 76733, - 76733, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76734, - 76750, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76751, - 76751, - null - ], - [ - "delim-token", - ".", - 76752, - 76752, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 76753, - 76761, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 76762, - 76762, - null - ], - [ - "delim-token", - ".", - 76763, - 76763, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 76764, - 76779, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 76780, - 76780, - null - ], - [ - "ident-token", - "display", - 76781, - 76787, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 76788, - 76788, - null - ], - [ - "ident-token", - "none", - 76789, - 76792, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 76793, - 76793, - null - ], - [ - "delim-token", - ".", - 76794, - 76794, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand-xxl", - 76795, - 76811, - { - "value": "navbar-expand-xxl" - } - ], - [ - "whitespace-token", - " ", - 76812, - 76812, - null - ], - [ - "delim-token", - ".", - 76813, - 76813, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 76814, - 76822, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 76823, - 76823, - null - ], - [ - "delim-token", - ".", - 76824, - 76824, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 76825, - 76838, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 76839, - 76839, - null - ], - [ - "ident-token", - "display", - 76840, - 76846, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 76847, - 76847, - null - ], - [ - "ident-token", - "flex", - 76848, - 76851, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 76852, - 76852, - null - ], - [ - "ident-token", - "flex-grow", - 76853, - 76861, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 76862, - 76862, - null - ], - [ - "number-token", - "0", - 76863, - 76863, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 76864, - 76864, - null - ], - [ - "ident-token", - "padding", - 76865, - 76871, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 76872, - 76872, - null - ], - [ - "number-token", - "0", - 76873, - 76873, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 76874, - 76874, - null - ], - [ - "ident-token", - "overflow-y", - 76875, - 76884, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 76885, - 76885, - null - ], - [ - "ident-token", - "visible", - 76886, - 76892, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 76893, - 76893, - null - ], - [ - "}-token", - "}", - 76894, - 76894, - null - ], - [ - "delim-token", - ".", - 76895, - 76895, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 76896, - 76908, - { - "value": "navbar-expand" - } - ], - [ - "{-token", - "{", - 76909, - 76909, - null - ], - [ - "ident-token", - "flex-wrap", - 76910, - 76918, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 76919, - 76919, - null - ], - [ - "ident-token", - "nowrap", - 76920, - 76925, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 76926, - 76926, - null - ], - [ - "ident-token", - "justify-content", - 76927, - 76941, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 76942, - 76942, - null - ], - [ - "ident-token", - "flex-start", - 76943, - 76952, - { - "value": "flex-start" - } - ], - [ - "}-token", - "}", - 76953, - 76953, - null - ], - [ - "delim-token", - ".", - 76954, - 76954, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 76955, - 76967, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 76968, - 76968, - null - ], - [ - "delim-token", - ".", - 76969, - 76969, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 76970, - 76979, - { - "value": "navbar-nav" - } - ], - [ - "{-token", - "{", - 76980, - 76980, - null - ], - [ - "ident-token", - "flex-direction", - 76981, - 76994, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 76995, - 76995, - null - ], - [ - "ident-token", - "row", - 76996, - 76998, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 76999, - 76999, - null - ], - [ - "delim-token", - ".", - 77000, - 77000, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77001, - 77013, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77014, - 77014, - null - ], - [ - "delim-token", - ".", - 77015, - 77015, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 77016, - 77025, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 77026, - 77026, - null - ], - [ - "delim-token", - ".", - 77027, - 77027, - { - "value": "." - } - ], - [ - "ident-token", - "dropdown-menu", - 77028, - 77040, - { - "value": "dropdown-menu" - } - ], - [ - "{-token", - "{", - 77041, - 77041, - null - ], - [ - "ident-token", - "position", - 77042, - 77049, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 77050, - 77050, - null - ], - [ - "ident-token", - "absolute", - 77051, - 77058, - { - "value": "absolute" - } - ], - [ - "}-token", - "}", - 77059, - 77059, - null - ], - [ - "delim-token", - ".", - 77060, - 77060, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77061, - 77073, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77074, - 77074, - null - ], - [ - "delim-token", - ".", - 77075, - 77075, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav", - 77076, - 77085, - { - "value": "navbar-nav" - } - ], - [ - "whitespace-token", - " ", - 77086, - 77086, - null - ], - [ - "delim-token", - ".", - 77087, - 77087, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 77088, - 77095, - { - "value": "nav-link" - } - ], - [ - "{-token", - "{", - 77096, - 77096, - null - ], - [ - "ident-token", - "padding-right", - 77097, - 77109, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 77110, - 77110, - null - ], - [ - "function-token", - "var(", - 77111, - 77114, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 77115, - 77144, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 77145, - 77145, - null - ], - [ - "semicolon-token", - ";", - 77146, - 77146, - null - ], - [ - "ident-token", - "padding-left", - 77147, - 77158, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 77159, - 77159, - null - ], - [ - "function-token", - "var(", - 77160, - 77163, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-navbar-nav-link-padding-x", - 77164, - 77193, - { - "value": "--bs-navbar-nav-link-padding-x" - } - ], - [ - ")-token", - ")", - 77194, - 77194, - null - ], - [ - "}-token", - "}", - 77195, - 77195, - null - ], - [ - "delim-token", - ".", - 77196, - 77196, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77197, - 77209, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77210, - 77210, - null - ], - [ - "delim-token", - ".", - 77211, - 77211, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-nav-scroll", - 77212, - 77228, - { - "value": "navbar-nav-scroll" - } - ], - [ - "{-token", - "{", - 77229, - 77229, - null - ], - [ - "ident-token", - "overflow", - 77230, - 77237, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 77238, - 77238, - null - ], - [ - "ident-token", - "visible", - 77239, - 77245, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 77246, - 77246, - null - ], - [ - "delim-token", - ".", - 77247, - 77247, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77248, - 77260, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77261, - 77261, - null - ], - [ - "delim-token", - ".", - 77262, - 77262, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-collapse", - 77263, - 77277, - { - "value": "navbar-collapse" - } - ], - [ - "{-token", - "{", - 77278, - 77278, - null - ], - [ - "ident-token", - "display", - 77279, - 77285, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 77286, - 77286, - null - ], - [ - "ident-token", - "flex", - 77287, - 77290, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 77291, - 77291, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77292, - 77300, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77301, - 77301, - null - ], - [ - "ident-token", - "flex-basis", - 77302, - 77311, - { - "value": "flex-basis" - } - ], - [ - "colon-token", - ":", - 77312, - 77312, - null - ], - [ - "ident-token", - "auto", - 77313, - 77316, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 77317, - 77317, - null - ], - [ - "delim-token", - ".", - 77318, - 77318, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77319, - 77331, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77332, - 77332, - null - ], - [ - "delim-token", - ".", - 77333, - 77333, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-toggler", - 77334, - 77347, - { - "value": "navbar-toggler" - } - ], - [ - "{-token", - "{", - 77348, - 77348, - null - ], - [ - "ident-token", - "display", - 77349, - 77355, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 77356, - 77356, - null - ], - [ - "ident-token", - "none", - 77357, - 77360, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 77361, - 77361, - null - ], - [ - "delim-token", - ".", - 77362, - 77362, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77363, - 77375, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77376, - 77376, - null - ], - [ - "delim-token", - ".", - 77377, - 77377, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 77378, - 77386, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 77387, - 77387, - null - ], - [ - "ident-token", - "position", - 77388, - 77395, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 77396, - 77396, - null - ], - [ - "ident-token", - "static", - 77397, - 77402, - { - "value": "static" - } - ], - [ - "semicolon-token", - ";", - 77403, - 77403, - null - ], - [ - "ident-token", - "z-index", - 77404, - 77410, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 77411, - 77411, - null - ], - [ - "ident-token", - "auto", - 77412, - 77415, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 77416, - 77416, - null - ], - [ - "ident-token", - "flex-grow", - 77417, - 77425, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 77426, - 77426, - null - ], - [ - "number-token", - "1", - 77427, - 77427, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 77428, - 77428, - null - ], - [ - "ident-token", - "width", - 77429, - 77433, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 77434, - 77434, - null - ], - [ - "ident-token", - "auto", - 77435, - 77438, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 77439, - 77439, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77440, - 77448, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77449, - 77449, - null - ], - [ - "ident-token", - "height", - 77450, - 77455, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 77456, - 77456, - null - ], - [ - "ident-token", - "auto", - 77457, - 77460, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 77461, - 77461, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77462, - 77470, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77471, - 77471, - null - ], - [ - "ident-token", - "visibility", - 77472, - 77481, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 77482, - 77482, - null - ], - [ - "ident-token", - "visible", - 77483, - 77489, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 77490, - 77490, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77491, - 77499, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77500, - 77500, - null - ], - [ - "ident-token", - "background-color", - 77501, - 77516, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 77517, - 77517, - null - ], - [ - "ident-token", - "transparent", - 77518, - 77528, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 77529, - 77529, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77530, - 77538, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77539, - 77539, - null - ], - [ - "ident-token", - "border", - 77540, - 77545, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 77546, - 77546, - null - ], - [ - "number-token", - "0", - 77547, - 77547, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 77548, - 77548, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77549, - 77557, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77558, - 77558, - null - ], - [ - "ident-token", - "transform", - 77559, - 77567, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 77568, - 77568, - null - ], - [ - "ident-token", - "none", - 77569, - 77572, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 77573, - 77573, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 77574, - 77582, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 77583, - 77583, - null - ], - [ - "ident-token", - "transition", - 77584, - 77593, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 77594, - 77594, - null - ], - [ - "ident-token", - "none", - 77595, - 77598, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 77599, - 77599, - null - ], - [ - "delim-token", - ".", - 77600, - 77600, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77601, - 77613, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77614, - 77614, - null - ], - [ - "delim-token", - ".", - 77615, - 77615, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 77616, - 77624, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 77625, - 77625, - null - ], - [ - "delim-token", - ".", - 77626, - 77626, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 77627, - 77642, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 77643, - 77643, - null - ], - [ - "ident-token", - "display", - 77644, - 77650, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 77651, - 77651, - null - ], - [ - "ident-token", - "none", - 77652, - 77655, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 77656, - 77656, - null - ], - [ - "delim-token", - ".", - 77657, - 77657, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-expand", - 77658, - 77670, - { - "value": "navbar-expand" - } - ], - [ - "whitespace-token", - " ", - 77671, - 77671, - null - ], - [ - "delim-token", - ".", - 77672, - 77672, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 77673, - 77681, - { - "value": "offcanvas" - } - ], - [ - "whitespace-token", - " ", - 77682, - 77682, - null - ], - [ - "delim-token", - ".", - 77683, - 77683, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 77684, - 77697, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 77698, - 77698, - null - ], - [ - "ident-token", - "display", - 77699, - 77705, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 77706, - 77706, - null - ], - [ - "ident-token", - "flex", - 77707, - 77710, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 77711, - 77711, - null - ], - [ - "ident-token", - "flex-grow", - 77712, - 77720, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 77721, - 77721, - null - ], - [ - "number-token", - "0", - 77722, - 77722, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 77723, - 77723, - null - ], - [ - "ident-token", - "padding", - 77724, - 77730, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 77731, - 77731, - null - ], - [ - "number-token", - "0", - 77732, - 77732, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 77733, - 77733, - null - ], - [ - "ident-token", - "overflow-y", - 77734, - 77743, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 77744, - 77744, - null - ], - [ - "ident-token", - "visible", - 77745, - 77751, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 77752, - 77752, - null - ], - [ - "delim-token", - ".", - 77753, - 77753, - { - "value": "." - } - ], - [ - "ident-token", - "navbar-dark", - 77754, - 77764, - { - "value": "navbar-dark" - } - ], - [ - "{-token", - "{", - 77765, - 77765, - null - ], - [ - "ident-token", - "--bs-navbar-color", - 77766, - 77782, - { - "value": "--bs-navbar-color" - } - ], - [ - "colon-token", - ":", - 77783, - 77783, - null - ], - [ - "function-token", - "rgba(", - 77784, - 77788, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 77789, - 77791, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77792, - 77792, - null - ], - [ - "whitespace-token", - " ", - 77793, - 77793, - null - ], - [ - "number-token", - "255", - 77794, - 77796, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77797, - 77797, - null - ], - [ - "whitespace-token", - " ", - 77798, - 77798, - null - ], - [ - "number-token", - "255", - 77799, - 77801, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77802, - 77802, - null - ], - [ - "whitespace-token", - " ", - 77803, - 77803, - null - ], - [ - "number-token", - "0.55", - 77804, - 77807, - { - "value": 0.55, - "type": "number" - } - ], - [ - ")-token", - ")", - 77808, - 77808, - null - ], - [ - "semicolon-token", - ";", - 77809, - 77809, - null - ], - [ - "ident-token", - "--bs-navbar-hover-color", - 77810, - 77832, - { - "value": "--bs-navbar-hover-color" - } - ], - [ - "colon-token", - ":", - 77833, - 77833, - null - ], - [ - "function-token", - "rgba(", - 77834, - 77838, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 77839, - 77841, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77842, - 77842, - null - ], - [ - "whitespace-token", - " ", - 77843, - 77843, - null - ], - [ - "number-token", - "255", - 77844, - 77846, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77847, - 77847, - null - ], - [ - "whitespace-token", - " ", - 77848, - 77848, - null - ], - [ - "number-token", - "255", - 77849, - 77851, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77852, - 77852, - null - ], - [ - "whitespace-token", - " ", - 77853, - 77853, - null - ], - [ - "number-token", - "0.75", - 77854, - 77857, - { - "value": 0.75, - "type": "number" - } - ], - [ - ")-token", - ")", - 77858, - 77858, - null - ], - [ - "semicolon-token", - ";", - 77859, - 77859, - null - ], - [ - "ident-token", - "--bs-navbar-disabled-color", - 77860, - 77885, - { - "value": "--bs-navbar-disabled-color" - } - ], - [ - "colon-token", - ":", - 77886, - 77886, - null - ], - [ - "function-token", - "rgba(", - 77887, - 77891, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 77892, - 77894, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77895, - 77895, - null - ], - [ - "whitespace-token", - " ", - 77896, - 77896, - null - ], - [ - "number-token", - "255", - 77897, - 77899, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77900, - 77900, - null - ], - [ - "whitespace-token", - " ", - 77901, - 77901, - null - ], - [ - "number-token", - "255", - 77902, - 77904, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 77905, - 77905, - null - ], - [ - "whitespace-token", - " ", - 77906, - 77906, - null - ], - [ - "number-token", - "0.25", - 77907, - 77910, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 77911, - 77911, - null - ], - [ - "semicolon-token", - ";", - 77912, - 77912, - null - ], - [ - "ident-token", - "--bs-navbar-active-color", - 77913, - 77936, - { - "value": "--bs-navbar-active-color" - } - ], - [ - "colon-token", - ":", - 77937, - 77937, - null - ], - [ - "hash-token", - "#fff", - 77938, - 77941, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 77942, - 77942, - null - ], - [ - "ident-token", - "--bs-navbar-brand-color", - 77943, - 77965, - { - "value": "--bs-navbar-brand-color" - } - ], - [ - "colon-token", - ":", - 77966, - 77966, - null - ], - [ - "hash-token", - "#fff", - 77967, - 77970, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 77971, - 77971, - null - ], - [ - "ident-token", - "--bs-navbar-brand-hover-color", - 77972, - 78000, - { - "value": "--bs-navbar-brand-hover-color" - } - ], - [ - "colon-token", - ":", - 78001, - 78001, - null - ], - [ - "hash-token", - "#fff", - 78002, - 78005, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 78006, - 78006, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-border-color", - 78007, - 78038, - { - "value": "--bs-navbar-toggler-border-color" - } - ], - [ - "colon-token", - ":", - 78039, - 78039, - null - ], - [ - "function-token", - "rgba(", - 78040, - 78044, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 78045, - 78047, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78048, - 78048, - null - ], - [ - "whitespace-token", - " ", - 78049, - 78049, - null - ], - [ - "number-token", - "255", - 78050, - 78052, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78053, - 78053, - null - ], - [ - "whitespace-token", - " ", - 78054, - 78054, - null - ], - [ - "number-token", - "255", - 78055, - 78057, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78058, - 78058, - null - ], - [ - "whitespace-token", - " ", - 78059, - 78059, - null - ], - [ - "number-token", - "0.1", - 78060, - 78062, - { - "value": 0.1, - "type": "number" - } - ], - [ - ")-token", - ")", - 78063, - 78063, - null - ], - [ - "semicolon-token", - ";", - 78064, - 78064, - null - ], - [ - "ident-token", - "--bs-navbar-toggler-icon-bg", - 78065, - 78091, - { - "value": "--bs-navbar-toggler-icon-bg" - } - ], - [ - "colon-token", - ":", - 78092, - 78092, - null - ], - [ - "function-token", - "url(", - 78093, - 78096, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"", - 78097, - 78332, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 78333, - 78333, - null - ], - [ - "}-token", - "}", - 78334, - 78334, - null - ], - [ - "delim-token", - ".", - 78335, - 78335, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 78336, - 78339, - { - "value": "card" - } - ], - [ - "{-token", - "{", - 78340, - 78340, - null - ], - [ - "ident-token", - "--bs-card-spacer-y", - 78341, - 78358, - { - "value": "--bs-card-spacer-y" - } - ], - [ - "colon-token", - ":", - 78359, - 78359, - null - ], - [ - "dimension-token", - "1rem", - 78360, - 78363, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78364, - 78364, - null - ], - [ - "ident-token", - "--bs-card-spacer-x", - 78365, - 78382, - { - "value": "--bs-card-spacer-x" - } - ], - [ - "colon-token", - ":", - 78383, - 78383, - null - ], - [ - "dimension-token", - "1rem", - 78384, - 78387, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78388, - 78388, - null - ], - [ - "ident-token", - "--bs-card-title-spacer-y", - 78389, - 78412, - { - "value": "--bs-card-title-spacer-y" - } - ], - [ - "colon-token", - ":", - 78413, - 78413, - null - ], - [ - "dimension-token", - "0.5rem", - 78414, - 78419, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78420, - 78420, - null - ], - [ - "ident-token", - "--bs-card-border-width", - 78421, - 78442, - { - "value": "--bs-card-border-width" - } - ], - [ - "colon-token", - ":", - 78443, - 78443, - null - ], - [ - "dimension-token", - "1px", - 78444, - 78446, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 78447, - 78447, - null - ], - [ - "ident-token", - "--bs-card-border-color", - 78448, - 78469, - { - "value": "--bs-card-border-color" - } - ], - [ - "colon-token", - ":", - 78470, - 78470, - null - ], - [ - "function-token", - "var(", - 78471, - 78474, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 78475, - 78503, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 78504, - 78504, - null - ], - [ - "semicolon-token", - ";", - 78505, - 78505, - null - ], - [ - "ident-token", - "--bs-card-border-radius", - 78506, - 78528, - { - "value": "--bs-card-border-radius" - } - ], - [ - "colon-token", - ":", - 78529, - 78529, - null - ], - [ - "dimension-token", - "0.375rem", - 78530, - 78537, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78538, - 78538, - null - ], - [ - "ident-token", - "--bs-card-box-shadow", - 78539, - 78558, - { - "value": "--bs-card-box-shadow" - } - ], - [ - "colon-token", - ":", - 78559, - 78559, - null - ], - [ - "whitespace-token", - " ", - 78560, - 78560, - null - ], - [ - "semicolon-token", - ";", - 78561, - 78561, - null - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 78562, - 78590, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - "colon-token", - ":", - 78591, - 78591, - null - ], - [ - "function-token", - "calc(", - 78592, - 78596, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.375rem", - 78597, - 78604, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 78605, - 78605, - null - ], - [ - "delim-token", - "-", - 78606, - 78606, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 78607, - 78607, - null - ], - [ - "dimension-token", - "1px", - 78608, - 78610, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 78611, - 78611, - null - ], - [ - "semicolon-token", - ";", - 78612, - 78612, - null - ], - [ - "ident-token", - "--bs-card-cap-padding-y", - 78613, - 78635, - { - "value": "--bs-card-cap-padding-y" - } - ], - [ - "colon-token", - ":", - 78636, - 78636, - null - ], - [ - "dimension-token", - "0.5rem", - 78637, - 78642, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78643, - 78643, - null - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 78644, - 78666, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - "colon-token", - ":", - 78667, - 78667, - null - ], - [ - "dimension-token", - "1rem", - 78668, - 78671, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78672, - 78672, - null - ], - [ - "ident-token", - "--bs-card-cap-bg", - 78673, - 78688, - { - "value": "--bs-card-cap-bg" - } - ], - [ - "colon-token", - ":", - 78689, - 78689, - null - ], - [ - "function-token", - "rgba(", - 78690, - 78694, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 78695, - 78695, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78696, - 78696, - null - ], - [ - "whitespace-token", - " ", - 78697, - 78697, - null - ], - [ - "number-token", - "0", - 78698, - 78698, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78699, - 78699, - null - ], - [ - "whitespace-token", - " ", - 78700, - 78700, - null - ], - [ - "number-token", - "0", - 78701, - 78701, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 78702, - 78702, - null - ], - [ - "whitespace-token", - " ", - 78703, - 78703, - null - ], - [ - "number-token", - "0.03", - 78704, - 78707, - { - "value": 0.03, - "type": "number" - } - ], - [ - ")-token", - ")", - 78708, - 78708, - null - ], - [ - "semicolon-token", - ";", - 78709, - 78709, - null - ], - [ - "ident-token", - "--bs-card-cap-color", - 78710, - 78728, - { - "value": "--bs-card-cap-color" - } - ], - [ - "colon-token", - ":", - 78729, - 78729, - null - ], - [ - "whitespace-token", - " ", - 78730, - 78730, - null - ], - [ - "semicolon-token", - ";", - 78731, - 78731, - null - ], - [ - "ident-token", - "--bs-card-height", - 78732, - 78747, - { - "value": "--bs-card-height" - } - ], - [ - "colon-token", - ":", - 78748, - 78748, - null - ], - [ - "whitespace-token", - " ", - 78749, - 78749, - null - ], - [ - "semicolon-token", - ";", - 78750, - 78750, - null - ], - [ - "ident-token", - "--bs-card-color", - 78751, - 78765, - { - "value": "--bs-card-color" - } - ], - [ - "colon-token", - ":", - 78766, - 78766, - null - ], - [ - "whitespace-token", - " ", - 78767, - 78767, - null - ], - [ - "semicolon-token", - ";", - 78768, - 78768, - null - ], - [ - "ident-token", - "--bs-card-bg", - 78769, - 78780, - { - "value": "--bs-card-bg" - } - ], - [ - "colon-token", - ":", - 78781, - 78781, - null - ], - [ - "hash-token", - "#fff", - 78782, - 78785, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 78786, - 78786, - null - ], - [ - "ident-token", - "--bs-card-img-overlay-padding", - 78787, - 78815, - { - "value": "--bs-card-img-overlay-padding" - } - ], - [ - "colon-token", - ":", - 78816, - 78816, - null - ], - [ - "dimension-token", - "1rem", - 78817, - 78820, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78821, - 78821, - null - ], - [ - "ident-token", - "--bs-card-group-margin", - 78822, - 78843, - { - "value": "--bs-card-group-margin" - } - ], - [ - "colon-token", - ":", - 78844, - 78844, - null - ], - [ - "dimension-token", - "0.75rem", - 78845, - 78851, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 78852, - 78852, - null - ], - [ - "ident-token", - "position", - 78853, - 78860, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 78861, - 78861, - null - ], - [ - "ident-token", - "relative", - 78862, - 78869, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 78870, - 78870, - null - ], - [ - "ident-token", - "display", - 78871, - 78877, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 78878, - 78878, - null - ], - [ - "ident-token", - "flex", - 78879, - 78882, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 78883, - 78883, - null - ], - [ - "ident-token", - "flex-direction", - 78884, - 78897, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 78898, - 78898, - null - ], - [ - "ident-token", - "column", - 78899, - 78904, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 78905, - 78905, - null - ], - [ - "ident-token", - "min-width", - 78906, - 78914, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 78915, - 78915, - null - ], - [ - "number-token", - "0", - 78916, - 78916, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 78917, - 78917, - null - ], - [ - "ident-token", - "height", - 78918, - 78923, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 78924, - 78924, - null - ], - [ - "function-token", - "var(", - 78925, - 78928, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-height", - 78929, - 78944, - { - "value": "--bs-card-height" - } - ], - [ - ")-token", - ")", - 78945, - 78945, - null - ], - [ - "semicolon-token", - ";", - 78946, - 78946, - null - ], - [ - "ident-token", - "word-wrap", - 78947, - 78955, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 78956, - 78956, - null - ], - [ - "ident-token", - "break-word", - 78957, - 78966, - { - "value": "break-word" - } - ], - [ - "semicolon-token", - ";", - 78967, - 78967, - null - ], - [ - "ident-token", - "background-color", - 78968, - 78983, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 78984, - 78984, - null - ], - [ - "function-token", - "var(", - 78985, - 78988, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-bg", - 78989, - 79000, - { - "value": "--bs-card-bg" - } - ], - [ - ")-token", - ")", - 79001, - 79001, - null - ], - [ - "semicolon-token", - ";", - 79002, - 79002, - null - ], - [ - "ident-token", - "background-clip", - 79003, - 79017, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 79018, - 79018, - null - ], - [ - "ident-token", - "border-box", - 79019, - 79028, - { - "value": "border-box" - } - ], - [ - "semicolon-token", - ";", - 79029, - 79029, - null - ], - [ - "ident-token", - "border", - 79030, - 79035, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 79036, - 79036, - null - ], - [ - "function-token", - "var(", - 79037, - 79040, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-width", - 79041, - 79062, - { - "value": "--bs-card-border-width" - } - ], - [ - ")-token", - ")", - 79063, - 79063, - null - ], - [ - "whitespace-token", - " ", - 79064, - 79064, - null - ], - [ - "ident-token", - "solid", - 79065, - 79069, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 79070, - 79070, - null - ], - [ - "function-token", - "var(", - 79071, - 79074, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-color", - 79075, - 79096, - { - "value": "--bs-card-border-color" - } - ], - [ - ")-token", - ")", - 79097, - 79097, - null - ], - [ - "semicolon-token", - ";", - 79098, - 79098, - null - ], - [ - "ident-token", - "border-radius", - 79099, - 79111, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 79112, - 79112, - null - ], - [ - "function-token", - "var(", - 79113, - 79116, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-radius", - 79117, - 79139, - { - "value": "--bs-card-border-radius" - } - ], - [ - ")-token", - ")", - 79140, - 79140, - null - ], - [ - "}-token", - "}", - 79141, - 79141, - null - ], - [ - "delim-token", - ".", - 79142, - 79142, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79143, - 79146, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79147, - 79147, - { - "value": ">" - } - ], - [ - "ident-token", - "hr", - 79148, - 79149, - { - "value": "hr" - } - ], - [ - "{-token", - "{", - 79150, - 79150, - null - ], - [ - "ident-token", - "margin-right", - 79151, - 79162, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 79163, - 79163, - null - ], - [ - "number-token", - "0", - 79164, - 79164, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 79165, - 79165, - null - ], - [ - "ident-token", - "margin-left", - 79166, - 79176, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 79177, - 79177, - null - ], - [ - "number-token", - "0", - 79178, - 79178, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 79179, - 79179, - null - ], - [ - "delim-token", - ".", - 79180, - 79180, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79181, - 79184, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79185, - 79185, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 79186, - 79186, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 79187, - 79196, - { - "value": "list-group" - } - ], - [ - "{-token", - "{", - 79197, - 79197, - null - ], - [ - "ident-token", - "border-top", - 79198, - 79207, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 79208, - 79208, - null - ], - [ - "ident-token", - "inherit", - 79209, - 79215, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 79216, - 79216, - null - ], - [ - "ident-token", - "border-bottom", - 79217, - 79229, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 79230, - 79230, - null - ], - [ - "ident-token", - "inherit", - 79231, - 79237, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 79238, - 79238, - null - ], - [ - "delim-token", - ".", - 79239, - 79239, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79240, - 79243, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79244, - 79244, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 79245, - 79245, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 79246, - 79255, - { - "value": "list-group" - } - ], - [ - "colon-token", - ":", - 79256, - 79256, - null - ], - [ - "ident-token", - "first-child", - 79257, - 79267, - { - "value": "first-child" - } - ], - [ - "{-token", - "{", - 79268, - 79268, - null - ], - [ - "ident-token", - "border-top-width", - 79269, - 79284, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 79285, - 79285, - null - ], - [ - "number-token", - "0", - 79286, - 79286, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 79287, - 79287, - null - ], - [ - "ident-token", - "border-top-left-radius", - 79288, - 79309, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 79310, - 79310, - null - ], - [ - "function-token", - "var(", - 79311, - 79314, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 79315, - 79343, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 79344, - 79344, - null - ], - [ - "semicolon-token", - ";", - 79345, - 79345, - null - ], - [ - "ident-token", - "border-top-right-radius", - 79346, - 79368, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 79369, - 79369, - null - ], - [ - "function-token", - "var(", - 79370, - 79373, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 79374, - 79402, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 79403, - 79403, - null - ], - [ - "}-token", - "}", - 79404, - 79404, - null - ], - [ - "delim-token", - ".", - 79405, - 79405, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79406, - 79409, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79410, - 79410, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 79411, - 79411, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 79412, - 79421, - { - "value": "list-group" - } - ], - [ - "colon-token", - ":", - 79422, - 79422, - null - ], - [ - "ident-token", - "last-child", - 79423, - 79432, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 79433, - 79433, - null - ], - [ - "ident-token", - "border-bottom-width", - 79434, - 79452, - { - "value": "border-bottom-width" - } - ], - [ - "colon-token", - ":", - 79453, - 79453, - null - ], - [ - "number-token", - "0", - 79454, - 79454, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 79455, - 79455, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 79456, - 79481, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 79482, - 79482, - null - ], - [ - "function-token", - "var(", - 79483, - 79486, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 79487, - 79515, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 79516, - 79516, - null - ], - [ - "semicolon-token", - ";", - 79517, - 79517, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 79518, - 79542, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 79543, - 79543, - null - ], - [ - "function-token", - "var(", - 79544, - 79547, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 79548, - 79576, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 79577, - 79577, - null - ], - [ - "}-token", - "}", - 79578, - 79578, - null - ], - [ - "delim-token", - ".", - 79579, - 79579, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79580, - 79583, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79584, - 79584, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 79585, - 79585, - { - "value": "." - } - ], - [ - "ident-token", - "card-header", - 79586, - 79596, - { - "value": "card-header" - } - ], - [ - "delim-token", - "+", - 79597, - 79597, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 79598, - 79598, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 79599, - 79608, - { - "value": "list-group" - } - ], - [ - "comma-token", - ",", - 79609, - 79609, - null - ], - [ - "delim-token", - ".", - 79610, - 79610, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 79611, - 79614, - { - "value": "card" - } - ], - [ - "delim-token", - ">", - 79615, - 79615, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 79616, - 79616, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 79617, - 79626, - { - "value": "list-group" - } - ], - [ - "delim-token", - "+", - 79627, - 79627, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 79628, - 79628, - { - "value": "." - } - ], - [ - "ident-token", - "card-footer", - 79629, - 79639, - { - "value": "card-footer" - } - ], - [ - "{-token", - "{", - 79640, - 79640, - null - ], - [ - "ident-token", - "border-top", - 79641, - 79650, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 79651, - 79651, - null - ], - [ - "number-token", - "0", - 79652, - 79652, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 79653, - 79653, - null - ], - [ - "delim-token", - ".", - 79654, - 79654, - { - "value": "." - } - ], - [ - "ident-token", - "card-body", - 79655, - 79663, - { - "value": "card-body" - } - ], - [ - "{-token", - "{", - 79664, - 79664, - null - ], - [ - "ident-token", - "flex", - 79665, - 79668, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 79669, - 79669, - null - ], - [ - "number-token", - "1", - 79670, - 79670, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 79671, - 79671, - null - ], - [ - "number-token", - "1", - 79672, - 79672, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 79673, - 79673, - null - ], - [ - "ident-token", - "auto", - 79674, - 79677, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 79678, - 79678, - null - ], - [ - "ident-token", - "padding", - 79679, - 79685, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 79686, - 79686, - null - ], - [ - "function-token", - "var(", - 79687, - 79690, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-spacer-y", - 79691, - 79708, - { - "value": "--bs-card-spacer-y" - } - ], - [ - ")-token", - ")", - 79709, - 79709, - null - ], - [ - "whitespace-token", - " ", - 79710, - 79710, - null - ], - [ - "function-token", - "var(", - 79711, - 79714, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-spacer-x", - 79715, - 79732, - { - "value": "--bs-card-spacer-x" - } - ], - [ - ")-token", - ")", - 79733, - 79733, - null - ], - [ - "semicolon-token", - ";", - 79734, - 79734, - null - ], - [ - "ident-token", - "color", - 79735, - 79739, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 79740, - 79740, - null - ], - [ - "function-token", - "var(", - 79741, - 79744, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-color", - 79745, - 79759, - { - "value": "--bs-card-color" - } - ], - [ - ")-token", - ")", - 79760, - 79760, - null - ], - [ - "}-token", - "}", - 79761, - 79761, - null - ], - [ - "delim-token", - ".", - 79762, - 79762, - { - "value": "." - } - ], - [ - "ident-token", - "card-title", - 79763, - 79772, - { - "value": "card-title" - } - ], - [ - "{-token", - "{", - 79773, - 79773, - null - ], - [ - "ident-token", - "margin-bottom", - 79774, - 79786, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 79787, - 79787, - null - ], - [ - "function-token", - "var(", - 79788, - 79791, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-title-spacer-y", - 79792, - 79815, - { - "value": "--bs-card-title-spacer-y" - } - ], - [ - ")-token", - ")", - 79816, - 79816, - null - ], - [ - "}-token", - "}", - 79817, - 79817, - null - ], - [ - "delim-token", - ".", - 79818, - 79818, - { - "value": "." - } - ], - [ - "ident-token", - "card-subtitle", - 79819, - 79831, - { - "value": "card-subtitle" - } - ], - [ - "{-token", - "{", - 79832, - 79832, - null - ], - [ - "ident-token", - "margin-top", - 79833, - 79842, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 79843, - 79843, - null - ], - [ - "function-token", - "calc(", - 79844, - 79848, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 79849, - 79851, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 79852, - 79852, - null - ], - [ - "delim-token", - "*", - 79853, - 79853, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 79854, - 79854, - null - ], - [ - "function-token", - "var(", - 79855, - 79858, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-title-spacer-y", - 79859, - 79882, - { - "value": "--bs-card-title-spacer-y" - } - ], - [ - ")-token", - ")", - 79883, - 79883, - null - ], - [ - ")-token", - ")", - 79884, - 79884, - null - ], - [ - "semicolon-token", - ";", - 79885, - 79885, - null - ], - [ - "ident-token", - "margin-bottom", - 79886, - 79898, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 79899, - 79899, - null - ], - [ - "number-token", - "0", - 79900, - 79900, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 79901, - 79901, - null - ], - [ - "delim-token", - ".", - 79902, - 79902, - { - "value": "." - } - ], - [ - "ident-token", - "card-text", - 79903, - 79911, - { - "value": "card-text" - } - ], - [ - "colon-token", - ":", - 79912, - 79912, - null - ], - [ - "ident-token", - "last-child", - 79913, - 79922, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 79923, - 79923, - null - ], - [ - "ident-token", - "margin-bottom", - 79924, - 79936, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 79937, - 79937, - null - ], - [ - "number-token", - "0", - 79938, - 79938, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 79939, - 79939, - null - ], - [ - "delim-token", - ".", - 79940, - 79940, - { - "value": "." - } - ], - [ - "ident-token", - "card-link", - 79941, - 79949, - { - "value": "card-link" - } - ], - [ - "delim-token", - "+", - 79950, - 79950, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 79951, - 79951, - { - "value": "." - } - ], - [ - "ident-token", - "card-link", - 79952, - 79960, - { - "value": "card-link" - } - ], - [ - "{-token", - "{", - 79961, - 79961, - null - ], - [ - "ident-token", - "margin-left", - 79962, - 79972, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 79973, - 79973, - null - ], - [ - "function-token", - "var(", - 79974, - 79977, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-spacer-x", - 79978, - 79995, - { - "value": "--bs-card-spacer-x" - } - ], - [ - ")-token", - ")", - 79996, - 79996, - null - ], - [ - "}-token", - "}", - 79997, - 79997, - null - ], - [ - "delim-token", - ".", - 79998, - 79998, - { - "value": "." - } - ], - [ - "ident-token", - "card-header", - 79999, - 80009, - { - "value": "card-header" - } - ], - [ - "{-token", - "{", - 80010, - 80010, - null - ], - [ - "ident-token", - "padding", - 80011, - 80017, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 80018, - 80018, - null - ], - [ - "function-token", - "var(", - 80019, - 80022, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-y", - 80023, - 80045, - { - "value": "--bs-card-cap-padding-y" - } - ], - [ - ")-token", - ")", - 80046, - 80046, - null - ], - [ - "whitespace-token", - " ", - 80047, - 80047, - null - ], - [ - "function-token", - "var(", - 80048, - 80051, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 80052, - 80074, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 80075, - 80075, - null - ], - [ - "semicolon-token", - ";", - 80076, - 80076, - null - ], - [ - "ident-token", - "margin-bottom", - 80077, - 80089, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 80090, - 80090, - null - ], - [ - "number-token", - "0", - 80091, - 80091, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 80092, - 80092, - null - ], - [ - "ident-token", - "color", - 80093, - 80097, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 80098, - 80098, - null - ], - [ - "function-token", - "var(", - 80099, - 80102, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-color", - 80103, - 80121, - { - "value": "--bs-card-cap-color" - } - ], - [ - ")-token", - ")", - 80122, - 80122, - null - ], - [ - "semicolon-token", - ";", - 80123, - 80123, - null - ], - [ - "ident-token", - "background-color", - 80124, - 80139, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 80140, - 80140, - null - ], - [ - "function-token", - "var(", - 80141, - 80144, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-bg", - 80145, - 80160, - { - "value": "--bs-card-cap-bg" - } - ], - [ - ")-token", - ")", - 80161, - 80161, - null - ], - [ - "semicolon-token", - ";", - 80162, - 80162, - null - ], - [ - "ident-token", - "border-bottom", - 80163, - 80175, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 80176, - 80176, - null - ], - [ - "function-token", - "var(", - 80177, - 80180, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-width", - 80181, - 80202, - { - "value": "--bs-card-border-width" - } - ], - [ - ")-token", - ")", - 80203, - 80203, - null - ], - [ - "whitespace-token", - " ", - 80204, - 80204, - null - ], - [ - "ident-token", - "solid", - 80205, - 80209, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 80210, - 80210, - null - ], - [ - "function-token", - "var(", - 80211, - 80214, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-color", - 80215, - 80236, - { - "value": "--bs-card-border-color" - } - ], - [ - ")-token", - ")", - 80237, - 80237, - null - ], - [ - "}-token", - "}", - 80238, - 80238, - null - ], - [ - "delim-token", - ".", - 80239, - 80239, - { - "value": "." - } - ], - [ - "ident-token", - "card-header", - 80240, - 80250, - { - "value": "card-header" - } - ], - [ - "colon-token", - ":", - 80251, - 80251, - null - ], - [ - "ident-token", - "first-child", - 80252, - 80262, - { - "value": "first-child" - } - ], - [ - "{-token", - "{", - 80263, - 80263, - null - ], - [ - "ident-token", - "border-radius", - 80264, - 80276, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 80277, - 80277, - null - ], - [ - "function-token", - "var(", - 80278, - 80281, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 80282, - 80310, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 80311, - 80311, - null - ], - [ - "whitespace-token", - " ", - 80312, - 80312, - null - ], - [ - "function-token", - "var(", - 80313, - 80316, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 80317, - 80345, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 80346, - 80346, - null - ], - [ - "whitespace-token", - " ", - 80347, - 80347, - null - ], - [ - "number-token", - "0", - 80348, - 80348, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 80349, - 80349, - null - ], - [ - "number-token", - "0", - 80350, - 80350, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 80351, - 80351, - null - ], - [ - "delim-token", - ".", - 80352, - 80352, - { - "value": "." - } - ], - [ - "ident-token", - "card-footer", - 80353, - 80363, - { - "value": "card-footer" - } - ], - [ - "{-token", - "{", - 80364, - 80364, - null - ], - [ - "ident-token", - "padding", - 80365, - 80371, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 80372, - 80372, - null - ], - [ - "function-token", - "var(", - 80373, - 80376, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-y", - 80377, - 80399, - { - "value": "--bs-card-cap-padding-y" - } - ], - [ - ")-token", - ")", - 80400, - 80400, - null - ], - [ - "whitespace-token", - " ", - 80401, - 80401, - null - ], - [ - "function-token", - "var(", - 80402, - 80405, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 80406, - 80428, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 80429, - 80429, - null - ], - [ - "semicolon-token", - ";", - 80430, - 80430, - null - ], - [ - "ident-token", - "color", - 80431, - 80435, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 80436, - 80436, - null - ], - [ - "function-token", - "var(", - 80437, - 80440, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-color", - 80441, - 80459, - { - "value": "--bs-card-cap-color" - } - ], - [ - ")-token", - ")", - 80460, - 80460, - null - ], - [ - "semicolon-token", - ";", - 80461, - 80461, - null - ], - [ - "ident-token", - "background-color", - 80462, - 80477, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 80478, - 80478, - null - ], - [ - "function-token", - "var(", - 80479, - 80482, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-bg", - 80483, - 80498, - { - "value": "--bs-card-cap-bg" - } - ], - [ - ")-token", - ")", - 80499, - 80499, - null - ], - [ - "semicolon-token", - ";", - 80500, - 80500, - null - ], - [ - "ident-token", - "border-top", - 80501, - 80510, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 80511, - 80511, - null - ], - [ - "function-token", - "var(", - 80512, - 80515, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-width", - 80516, - 80537, - { - "value": "--bs-card-border-width" - } - ], - [ - ")-token", - ")", - 80538, - 80538, - null - ], - [ - "whitespace-token", - " ", - 80539, - 80539, - null - ], - [ - "ident-token", - "solid", - 80540, - 80544, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 80545, - 80545, - null - ], - [ - "function-token", - "var(", - 80546, - 80549, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-border-color", - 80550, - 80571, - { - "value": "--bs-card-border-color" - } - ], - [ - ")-token", - ")", - 80572, - 80572, - null - ], - [ - "}-token", - "}", - 80573, - 80573, - null - ], - [ - "delim-token", - ".", - 80574, - 80574, - { - "value": "." - } - ], - [ - "ident-token", - "card-footer", - 80575, - 80585, - { - "value": "card-footer" - } - ], - [ - "colon-token", - ":", - 80586, - 80586, - null - ], - [ - "ident-token", - "last-child", - 80587, - 80596, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 80597, - 80597, - null - ], - [ - "ident-token", - "border-radius", - 80598, - 80610, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 80611, - 80611, - null - ], - [ - "number-token", - "0", - 80612, - 80612, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 80613, - 80613, - null - ], - [ - "number-token", - "0", - 80614, - 80614, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 80615, - 80615, - null - ], - [ - "function-token", - "var(", - 80616, - 80619, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 80620, - 80648, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 80649, - 80649, - null - ], - [ - "whitespace-token", - " ", - 80650, - 80650, - null - ], - [ - "function-token", - "var(", - 80651, - 80654, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 80655, - 80683, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 80684, - 80684, - null - ], - [ - "}-token", - "}", - 80685, - 80685, - null - ], - [ - "delim-token", - ".", - 80686, - 80686, - { - "value": "." - } - ], - [ - "ident-token", - "card-header-tabs", - 80687, - 80702, - { - "value": "card-header-tabs" - } - ], - [ - "{-token", - "{", - 80703, - 80703, - null - ], - [ - "ident-token", - "margin-right", - 80704, - 80715, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 80716, - 80716, - null - ], - [ - "function-token", - "calc(", - 80717, - 80721, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 80722, - 80724, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 80725, - 80725, - null - ], - [ - "delim-token", - "*", - 80726, - 80726, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 80727, - 80727, - null - ], - [ - "function-token", - "var(", - 80728, - 80731, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 80732, - 80754, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 80755, - 80755, - null - ], - [ - ")-token", - ")", - 80756, - 80756, - null - ], - [ - "semicolon-token", - ";", - 80757, - 80757, - null - ], - [ - "ident-token", - "margin-bottom", - 80758, - 80770, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 80771, - 80771, - null - ], - [ - "function-token", - "calc(", - 80772, - 80776, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 80777, - 80778, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 80779, - 80779, - null - ], - [ - "delim-token", - "*", - 80780, - 80780, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 80781, - 80781, - null - ], - [ - "function-token", - "var(", - 80782, - 80785, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-y", - 80786, - 80808, - { - "value": "--bs-card-cap-padding-y" - } - ], - [ - ")-token", - ")", - 80809, - 80809, - null - ], - [ - ")-token", - ")", - 80810, - 80810, - null - ], - [ - "semicolon-token", - ";", - 80811, - 80811, - null - ], - [ - "ident-token", - "margin-left", - 80812, - 80822, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 80823, - 80823, - null - ], - [ - "function-token", - "calc(", - 80824, - 80828, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 80829, - 80831, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 80832, - 80832, - null - ], - [ - "delim-token", - "*", - 80833, - 80833, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 80834, - 80834, - null - ], - [ - "function-token", - "var(", - 80835, - 80838, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 80839, - 80861, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 80862, - 80862, - null - ], - [ - ")-token", - ")", - 80863, - 80863, - null - ], - [ - "semicolon-token", - ";", - 80864, - 80864, - null - ], - [ - "ident-token", - "border-bottom", - 80865, - 80877, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 80878, - 80878, - null - ], - [ - "number-token", - "0", - 80879, - 80879, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 80880, - 80880, - null - ], - [ - "delim-token", - ".", - 80881, - 80881, - { - "value": "." - } - ], - [ - "ident-token", - "card-header-tabs", - 80882, - 80897, - { - "value": "card-header-tabs" - } - ], - [ - "whitespace-token", - " ", - 80898, - 80898, - null - ], - [ - "delim-token", - ".", - 80899, - 80899, - { - "value": "." - } - ], - [ - "ident-token", - "nav-link", - 80900, - 80907, - { - "value": "nav-link" - } - ], - [ - "delim-token", - ".", - 80908, - 80908, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 80909, - 80914, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 80915, - 80915, - null - ], - [ - "ident-token", - "background-color", - 80916, - 80931, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 80932, - 80932, - null - ], - [ - "function-token", - "var(", - 80933, - 80936, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-bg", - 80937, - 80948, - { - "value": "--bs-card-bg" - } - ], - [ - ")-token", - ")", - 80949, - 80949, - null - ], - [ - "semicolon-token", - ";", - 80950, - 80950, - null - ], - [ - "ident-token", - "border-bottom-color", - 80951, - 80969, - { - "value": "border-bottom-color" - } - ], - [ - "colon-token", - ":", - 80970, - 80970, - null - ], - [ - "function-token", - "var(", - 80971, - 80974, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-bg", - 80975, - 80986, - { - "value": "--bs-card-bg" - } - ], - [ - ")-token", - ")", - 80987, - 80987, - null - ], - [ - "}-token", - "}", - 80988, - 80988, - null - ], - [ - "delim-token", - ".", - 80989, - 80989, - { - "value": "." - } - ], - [ - "ident-token", - "card-header-pills", - 80990, - 81006, - { - "value": "card-header-pills" - } - ], - [ - "{-token", - "{", - 81007, - 81007, - null - ], - [ - "ident-token", - "margin-right", - 81008, - 81019, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 81020, - 81020, - null - ], - [ - "function-token", - "calc(", - 81021, - 81025, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 81026, - 81028, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 81029, - 81029, - null - ], - [ - "delim-token", - "*", - 81030, - 81030, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 81031, - 81031, - null - ], - [ - "function-token", - "var(", - 81032, - 81035, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 81036, - 81058, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 81059, - 81059, - null - ], - [ - ")-token", - ")", - 81060, - 81060, - null - ], - [ - "semicolon-token", - ";", - 81061, - 81061, - null - ], - [ - "ident-token", - "margin-left", - 81062, - 81072, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 81073, - 81073, - null - ], - [ - "function-token", - "calc(", - 81074, - 81078, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 81079, - 81081, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 81082, - 81082, - null - ], - [ - "delim-token", - "*", - 81083, - 81083, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 81084, - 81084, - null - ], - [ - "function-token", - "var(", - 81085, - 81088, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-cap-padding-x", - 81089, - 81111, - { - "value": "--bs-card-cap-padding-x" - } - ], - [ - ")-token", - ")", - 81112, - 81112, - null - ], - [ - ")-token", - ")", - 81113, - 81113, - null - ], - [ - "}-token", - "}", - 81114, - 81114, - null - ], - [ - "delim-token", - ".", - 81115, - 81115, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-overlay", - 81116, - 81131, - { - "value": "card-img-overlay" - } - ], - [ - "{-token", - "{", - 81132, - 81132, - null - ], - [ - "ident-token", - "position", - 81133, - 81140, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 81141, - 81141, - null - ], - [ - "ident-token", - "absolute", - 81142, - 81149, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 81150, - 81150, - null - ], - [ - "ident-token", - "top", - 81151, - 81153, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 81154, - 81154, - null - ], - [ - "number-token", - "0", - 81155, - 81155, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81156, - 81156, - null - ], - [ - "ident-token", - "right", - 81157, - 81161, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 81162, - 81162, - null - ], - [ - "number-token", - "0", - 81163, - 81163, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81164, - 81164, - null - ], - [ - "ident-token", - "bottom", - 81165, - 81170, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 81171, - 81171, - null - ], - [ - "number-token", - "0", - 81172, - 81172, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81173, - 81173, - null - ], - [ - "ident-token", - "left", - 81174, - 81177, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 81178, - 81178, - null - ], - [ - "number-token", - "0", - 81179, - 81179, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81180, - 81180, - null - ], - [ - "ident-token", - "padding", - 81181, - 81187, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 81188, - 81188, - null - ], - [ - "function-token", - "var(", - 81189, - 81192, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-img-overlay-padding", - 81193, - 81221, - { - "value": "--bs-card-img-overlay-padding" - } - ], - [ - ")-token", - ")", - 81222, - 81222, - null - ], - [ - "semicolon-token", - ";", - 81223, - 81223, - null - ], - [ - "ident-token", - "border-radius", - 81224, - 81236, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 81237, - 81237, - null - ], - [ - "function-token", - "var(", - 81238, - 81241, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 81242, - 81270, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 81271, - 81271, - null - ], - [ - "}-token", - "}", - 81272, - 81272, - null - ], - [ - "delim-token", - ".", - 81273, - 81273, - { - "value": "." - } - ], - [ - "ident-token", - "card-img", - 81274, - 81281, - { - "value": "card-img" - } - ], - [ - "comma-token", - ",", - 81282, - 81282, - null - ], - [ - "delim-token", - ".", - 81283, - 81283, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-bottom", - 81284, - 81298, - { - "value": "card-img-bottom" - } - ], - [ - "comma-token", - ",", - 81299, - 81299, - null - ], - [ - "delim-token", - ".", - 81300, - 81300, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-top", - 81301, - 81312, - { - "value": "card-img-top" - } - ], - [ - "{-token", - "{", - 81313, - 81313, - null - ], - [ - "ident-token", - "width", - 81314, - 81318, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 81319, - 81319, - null - ], - [ - "percentage-token", - "100%", - 81320, - 81323, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 81324, - 81324, - null - ], - [ - "delim-token", - ".", - 81325, - 81325, - { - "value": "." - } - ], - [ - "ident-token", - "card-img", - 81326, - 81333, - { - "value": "card-img" - } - ], - [ - "comma-token", - ",", - 81334, - 81334, - null - ], - [ - "delim-token", - ".", - 81335, - 81335, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-top", - 81336, - 81347, - { - "value": "card-img-top" - } - ], - [ - "{-token", - "{", - 81348, - 81348, - null - ], - [ - "ident-token", - "border-top-left-radius", - 81349, - 81370, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 81371, - 81371, - null - ], - [ - "function-token", - "var(", - 81372, - 81375, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 81376, - 81404, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 81405, - 81405, - null - ], - [ - "semicolon-token", - ";", - 81406, - 81406, - null - ], - [ - "ident-token", - "border-top-right-radius", - 81407, - 81429, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 81430, - 81430, - null - ], - [ - "function-token", - "var(", - 81431, - 81434, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 81435, - 81463, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 81464, - 81464, - null - ], - [ - "}-token", - "}", - 81465, - 81465, - null - ], - [ - "delim-token", - ".", - 81466, - 81466, - { - "value": "." - } - ], - [ - "ident-token", - "card-img", - 81467, - 81474, - { - "value": "card-img" - } - ], - [ - "comma-token", - ",", - 81475, - 81475, - null - ], - [ - "delim-token", - ".", - 81476, - 81476, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-bottom", - 81477, - 81491, - { - "value": "card-img-bottom" - } - ], - [ - "{-token", - "{", - 81492, - 81492, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 81493, - 81518, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 81519, - 81519, - null - ], - [ - "function-token", - "var(", - 81520, - 81523, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 81524, - 81552, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 81553, - 81553, - null - ], - [ - "semicolon-token", - ";", - 81554, - 81554, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 81555, - 81579, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 81580, - 81580, - null - ], - [ - "function-token", - "var(", - 81581, - 81584, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-inner-border-radius", - 81585, - 81613, - { - "value": "--bs-card-inner-border-radius" - } - ], - [ - ")-token", - ")", - 81614, - 81614, - null - ], - [ - "}-token", - "}", - 81615, - 81615, - null - ], - [ - "delim-token", - ".", - 81616, - 81616, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81617, - 81626, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81627, - 81627, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81628, - 81628, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81629, - 81632, - { - "value": "card" - } - ], - [ - "{-token", - "{", - 81633, - 81633, - null - ], - [ - "ident-token", - "margin-bottom", - 81634, - 81646, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 81647, - 81647, - null - ], - [ - "function-token", - "var(", - 81648, - 81651, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-card-group-margin", - 81652, - 81673, - { - "value": "--bs-card-group-margin" - } - ], - [ - ")-token", - ")", - 81674, - 81674, - null - ], - [ - "}-token", - "}", - 81675, - 81675, - null - ], - [ - "at-keyword-token", - "@media", - 81676, - 81681, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 81682, - 81682, - null - ], - [ - "(-token", - "(", - 81683, - 81683, - null - ], - [ - "ident-token", - "min-width", - 81684, - 81692, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 81693, - 81693, - null - ], - [ - "dimension-token", - "576px", - 81694, - 81698, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 81699, - 81699, - null - ], - [ - "{-token", - "{", - 81700, - 81700, - null - ], - [ - "delim-token", - ".", - 81701, - 81701, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81702, - 81711, - { - "value": "card-group" - } - ], - [ - "{-token", - "{", - 81712, - 81712, - null - ], - [ - "ident-token", - "display", - 81713, - 81719, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 81720, - 81720, - null - ], - [ - "ident-token", - "flex", - 81721, - 81724, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 81725, - 81725, - null - ], - [ - "ident-token", - "flex-flow", - 81726, - 81734, - { - "value": "flex-flow" - } - ], - [ - "colon-token", - ":", - 81735, - 81735, - null - ], - [ - "ident-token", - "row", - 81736, - 81738, - { - "value": "row" - } - ], - [ - "whitespace-token", - " ", - 81739, - 81739, - null - ], - [ - "ident-token", - "wrap", - 81740, - 81743, - { - "value": "wrap" - } - ], - [ - "}-token", - "}", - 81744, - 81744, - null - ], - [ - "delim-token", - ".", - 81745, - 81745, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81746, - 81755, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81756, - 81756, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81757, - 81757, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81758, - 81761, - { - "value": "card" - } - ], - [ - "{-token", - "{", - 81762, - 81762, - null - ], - [ - "ident-token", - "flex", - 81763, - 81766, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 81767, - 81767, - null - ], - [ - "number-token", - "1", - 81768, - 81768, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 81769, - 81769, - null - ], - [ - "number-token", - "0", - 81770, - 81770, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 81771, - 81771, - null - ], - [ - "percentage-token", - "0%", - 81772, - 81773, - { - "value": 0 - } - ], - [ - "semicolon-token", - ";", - 81774, - 81774, - null - ], - [ - "ident-token", - "margin-bottom", - 81775, - 81787, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 81788, - 81788, - null - ], - [ - "number-token", - "0", - 81789, - 81789, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 81790, - 81790, - null - ], - [ - "delim-token", - ".", - 81791, - 81791, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81792, - 81801, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81802, - 81802, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81803, - 81803, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81804, - 81807, - { - "value": "card" - } - ], - [ - "delim-token", - "+", - 81808, - 81808, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 81809, - 81809, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81810, - 81813, - { - "value": "card" - } - ], - [ - "{-token", - "{", - 81814, - 81814, - null - ], - [ - "ident-token", - "margin-left", - 81815, - 81825, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 81826, - 81826, - null - ], - [ - "number-token", - "0", - 81827, - 81827, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81828, - 81828, - null - ], - [ - "ident-token", - "border-left", - 81829, - 81839, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 81840, - 81840, - null - ], - [ - "number-token", - "0", - 81841, - 81841, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 81842, - 81842, - null - ], - [ - "delim-token", - ".", - 81843, - 81843, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81844, - 81853, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81854, - 81854, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81855, - 81855, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81856, - 81859, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 81860, - 81860, - null - ], - [ - "function-token", - "not(", - 81861, - 81864, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 81865, - 81865, - null - ], - [ - "ident-token", - "last-child", - 81866, - 81875, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 81876, - 81876, - null - ], - [ - "{-token", - "{", - 81877, - 81877, - null - ], - [ - "ident-token", - "border-top-right-radius", - 81878, - 81900, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 81901, - 81901, - null - ], - [ - "number-token", - "0", - 81902, - 81902, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 81903, - 81903, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 81904, - 81929, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 81930, - 81930, - null - ], - [ - "number-token", - "0", - 81931, - 81931, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 81932, - 81932, - null - ], - [ - "delim-token", - ".", - 81933, - 81933, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81934, - 81943, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81944, - 81944, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81945, - 81945, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81946, - 81949, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 81950, - 81950, - null - ], - [ - "function-token", - "not(", - 81951, - 81954, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 81955, - 81955, - null - ], - [ - "ident-token", - "last-child", - 81956, - 81965, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 81966, - 81966, - null - ], - [ - "whitespace-token", - " ", - 81967, - 81967, - null - ], - [ - "delim-token", - ".", - 81968, - 81968, - { - "value": "." - } - ], - [ - "ident-token", - "card-header", - 81969, - 81979, - { - "value": "card-header" - } - ], - [ - "comma-token", - ",", - 81980, - 81980, - null - ], - [ - "delim-token", - ".", - 81981, - 81981, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 81982, - 81991, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 81992, - 81992, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 81993, - 81993, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 81994, - 81997, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 81998, - 81998, - null - ], - [ - "function-token", - "not(", - 81999, - 82002, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82003, - 82003, - null - ], - [ - "ident-token", - "last-child", - 82004, - 82013, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 82014, - 82014, - null - ], - [ - "whitespace-token", - " ", - 82015, - 82015, - null - ], - [ - "delim-token", - ".", - 82016, - 82016, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-top", - 82017, - 82028, - { - "value": "card-img-top" - } - ], - [ - "{-token", - "{", - 82029, - 82029, - null - ], - [ - "ident-token", - "border-top-right-radius", - 82030, - 82052, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 82053, - 82053, - null - ], - [ - "number-token", - "0", - 82054, - 82054, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 82055, - 82055, - null - ], - [ - "delim-token", - ".", - 82056, - 82056, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82057, - 82066, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82067, - 82067, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82068, - 82068, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82069, - 82072, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82073, - 82073, - null - ], - [ - "function-token", - "not(", - 82074, - 82077, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82078, - 82078, - null - ], - [ - "ident-token", - "last-child", - 82079, - 82088, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 82089, - 82089, - null - ], - [ - "whitespace-token", - " ", - 82090, - 82090, - null - ], - [ - "delim-token", - ".", - 82091, - 82091, - { - "value": "." - } - ], - [ - "ident-token", - "card-footer", - 82092, - 82102, - { - "value": "card-footer" - } - ], - [ - "comma-token", - ",", - 82103, - 82103, - null - ], - [ - "delim-token", - ".", - 82104, - 82104, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82105, - 82114, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82115, - 82115, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82116, - 82116, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82117, - 82120, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82121, - 82121, - null - ], - [ - "function-token", - "not(", - 82122, - 82125, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82126, - 82126, - null - ], - [ - "ident-token", - "last-child", - 82127, - 82136, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 82137, - 82137, - null - ], - [ - "whitespace-token", - " ", - 82138, - 82138, - null - ], - [ - "delim-token", - ".", - 82139, - 82139, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-bottom", - 82140, - 82154, - { - "value": "card-img-bottom" - } - ], - [ - "{-token", - "{", - 82155, - 82155, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 82156, - 82181, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 82182, - 82182, - null - ], - [ - "number-token", - "0", - 82183, - 82183, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 82184, - 82184, - null - ], - [ - "delim-token", - ".", - 82185, - 82185, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82186, - 82195, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82196, - 82196, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82197, - 82197, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82198, - 82201, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82202, - 82202, - null - ], - [ - "function-token", - "not(", - 82203, - 82206, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82207, - 82207, - null - ], - [ - "ident-token", - "first-child", - 82208, - 82218, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 82219, - 82219, - null - ], - [ - "{-token", - "{", - 82220, - 82220, - null - ], - [ - "ident-token", - "border-top-left-radius", - 82221, - 82242, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 82243, - 82243, - null - ], - [ - "number-token", - "0", - 82244, - 82244, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 82245, - 82245, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 82246, - 82270, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 82271, - 82271, - null - ], - [ - "number-token", - "0", - 82272, - 82272, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 82273, - 82273, - null - ], - [ - "delim-token", - ".", - 82274, - 82274, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82275, - 82284, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82285, - 82285, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82286, - 82286, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82287, - 82290, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82291, - 82291, - null - ], - [ - "function-token", - "not(", - 82292, - 82295, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82296, - 82296, - null - ], - [ - "ident-token", - "first-child", - 82297, - 82307, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 82308, - 82308, - null - ], - [ - "whitespace-token", - " ", - 82309, - 82309, - null - ], - [ - "delim-token", - ".", - 82310, - 82310, - { - "value": "." - } - ], - [ - "ident-token", - "card-header", - 82311, - 82321, - { - "value": "card-header" - } - ], - [ - "comma-token", - ",", - 82322, - 82322, - null - ], - [ - "delim-token", - ".", - 82323, - 82323, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82324, - 82333, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82334, - 82334, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82335, - 82335, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82336, - 82339, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82340, - 82340, - null - ], - [ - "function-token", - "not(", - 82341, - 82344, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82345, - 82345, - null - ], - [ - "ident-token", - "first-child", - 82346, - 82356, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 82357, - 82357, - null - ], - [ - "whitespace-token", - " ", - 82358, - 82358, - null - ], - [ - "delim-token", - ".", - 82359, - 82359, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-top", - 82360, - 82371, - { - "value": "card-img-top" - } - ], - [ - "{-token", - "{", - 82372, - 82372, - null - ], - [ - "ident-token", - "border-top-left-radius", - 82373, - 82394, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 82395, - 82395, - null - ], - [ - "number-token", - "0", - 82396, - 82396, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 82397, - 82397, - null - ], - [ - "delim-token", - ".", - 82398, - 82398, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82399, - 82408, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82409, - 82409, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82410, - 82410, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82411, - 82414, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82415, - 82415, - null - ], - [ - "function-token", - "not(", - 82416, - 82419, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82420, - 82420, - null - ], - [ - "ident-token", - "first-child", - 82421, - 82431, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 82432, - 82432, - null - ], - [ - "whitespace-token", - " ", - 82433, - 82433, - null - ], - [ - "delim-token", - ".", - 82434, - 82434, - { - "value": "." - } - ], - [ - "ident-token", - "card-footer", - 82435, - 82445, - { - "value": "card-footer" - } - ], - [ - "comma-token", - ",", - 82446, - 82446, - null - ], - [ - "delim-token", - ".", - 82447, - 82447, - { - "value": "." - } - ], - [ - "ident-token", - "card-group", - 82448, - 82457, - { - "value": "card-group" - } - ], - [ - "delim-token", - ">", - 82458, - 82458, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 82459, - 82459, - { - "value": "." - } - ], - [ - "ident-token", - "card", - 82460, - 82463, - { - "value": "card" - } - ], - [ - "colon-token", - ":", - 82464, - 82464, - null - ], - [ - "function-token", - "not(", - 82465, - 82468, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 82469, - 82469, - null - ], - [ - "ident-token", - "first-child", - 82470, - 82480, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 82481, - 82481, - null - ], - [ - "whitespace-token", - " ", - 82482, - 82482, - null - ], - [ - "delim-token", - ".", - 82483, - 82483, - { - "value": "." - } - ], - [ - "ident-token", - "card-img-bottom", - 82484, - 82498, - { - "value": "card-img-bottom" - } - ], - [ - "{-token", - "{", - 82499, - 82499, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 82500, - 82524, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 82525, - 82525, - null - ], - [ - "number-token", - "0", - 82526, - 82526, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 82527, - 82527, - null - ], - [ - "}-token", - "}", - 82528, - 82528, - null - ], - [ - "delim-token", - ".", - 82529, - 82529, - { - "value": "." - } - ], - [ - "ident-token", - "accordion", - 82530, - 82538, - { - "value": "accordion" - } - ], - [ - "{-token", - "{", - 82539, - 82539, - null - ], - [ - "ident-token", - "--bs-accordion-color", - 82540, - 82559, - { - "value": "--bs-accordion-color" - } - ], - [ - "colon-token", - ":", - 82560, - 82560, - null - ], - [ - "function-token", - "var(", - 82561, - 82564, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 82565, - 82579, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 82580, - 82580, - null - ], - [ - "semicolon-token", - ";", - 82581, - 82581, - null - ], - [ - "ident-token", - "--bs-accordion-bg", - 82582, - 82598, - { - "value": "--bs-accordion-bg" - } - ], - [ - "colon-token", - ":", - 82599, - 82599, - null - ], - [ - "hash-token", - "#fff", - 82600, - 82603, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 82604, - 82604, - null - ], - [ - "ident-token", - "--bs-accordion-transition", - 82605, - 82629, - { - "value": "--bs-accordion-transition" - } - ], - [ - "colon-token", - ":", - 82630, - 82630, - null - ], - [ - "ident-token", - "color", - 82631, - 82635, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 82636, - 82636, - null - ], - [ - "dimension-token", - "0.15s", - 82637, - 82641, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 82642, - 82642, - null - ], - [ - "ident-token", - "ease-in-out", - 82643, - 82653, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 82654, - 82654, - null - ], - [ - "ident-token", - "background-color", - 82655, - 82670, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 82671, - 82671, - null - ], - [ - "dimension-token", - "0.15s", - 82672, - 82676, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 82677, - 82677, - null - ], - [ - "ident-token", - "ease-in-out", - 82678, - 82688, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 82689, - 82689, - null - ], - [ - "ident-token", - "border-color", - 82690, - 82701, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 82702, - 82702, - null - ], - [ - "dimension-token", - "0.15s", - 82703, - 82707, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 82708, - 82708, - null - ], - [ - "ident-token", - "ease-in-out", - 82709, - 82719, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 82720, - 82720, - null - ], - [ - "ident-token", - "box-shadow", - 82721, - 82730, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 82731, - 82731, - null - ], - [ - "dimension-token", - "0.15s", - 82732, - 82736, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 82737, - 82737, - null - ], - [ - "ident-token", - "ease-in-out", - 82738, - 82748, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 82749, - 82749, - null - ], - [ - "ident-token", - "border-radius", - 82750, - 82762, - { - "value": "border-radius" - } - ], - [ - "whitespace-token", - " ", - 82763, - 82763, - null - ], - [ - "dimension-token", - "0.15s", - 82764, - 82768, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 82769, - 82769, - null - ], - [ - "ident-token", - "ease", - 82770, - 82773, - { - "value": "ease" - } - ], - [ - "semicolon-token", - ";", - 82774, - 82774, - null - ], - [ - "ident-token", - "--bs-accordion-border-color", - 82775, - 82801, - { - "value": "--bs-accordion-border-color" - } - ], - [ - "colon-token", - ":", - 82802, - 82802, - null - ], - [ - "function-token", - "var(", - 82803, - 82806, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 82807, - 82823, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 82824, - 82824, - null - ], - [ - "semicolon-token", - ";", - 82825, - 82825, - null - ], - [ - "ident-token", - "--bs-accordion-border-width", - 82826, - 82852, - { - "value": "--bs-accordion-border-width" - } - ], - [ - "colon-token", - ":", - 82853, - 82853, - null - ], - [ - "dimension-token", - "1px", - 82854, - 82856, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 82857, - 82857, - null - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 82858, - 82885, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - "colon-token", - ":", - 82886, - 82886, - null - ], - [ - "dimension-token", - "0.375rem", - 82887, - 82894, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 82895, - 82895, - null - ], - [ - "ident-token", - "--bs-accordion-inner-border-radius", - 82896, - 82929, - { - "value": "--bs-accordion-inner-border-radius" - } - ], - [ - "colon-token", - ":", - 82930, - 82930, - null - ], - [ - "function-token", - "calc(", - 82931, - 82935, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.375rem", - 82936, - 82943, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 82944, - 82944, - null - ], - [ - "delim-token", - "-", - 82945, - 82945, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 82946, - 82946, - null - ], - [ - "dimension-token", - "1px", - 82947, - 82949, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 82950, - 82950, - null - ], - [ - "semicolon-token", - ";", - 82951, - 82951, - null - ], - [ - "ident-token", - "--bs-accordion-btn-padding-x", - 82952, - 82979, - { - "value": "--bs-accordion-btn-padding-x" - } - ], - [ - "colon-token", - ":", - 82980, - 82980, - null - ], - [ - "dimension-token", - "1.25rem", - 82981, - 82987, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 82988, - 82988, - null - ], - [ - "ident-token", - "--bs-accordion-btn-padding-y", - 82989, - 83016, - { - "value": "--bs-accordion-btn-padding-y" - } - ], - [ - "colon-token", - ":", - 83017, - 83017, - null - ], - [ - "dimension-token", - "1rem", - 83018, - 83021, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 83022, - 83022, - null - ], - [ - "ident-token", - "--bs-accordion-btn-color", - 83023, - 83046, - { - "value": "--bs-accordion-btn-color" - } - ], - [ - "colon-token", - ":", - 83047, - 83047, - null - ], - [ - "function-token", - "var(", - 83048, - 83051, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color", - 83052, - 83066, - { - "value": "--bs-body-color" - } - ], - [ - ")-token", - ")", - 83067, - 83067, - null - ], - [ - "semicolon-token", - ";", - 83068, - 83068, - null - ], - [ - "ident-token", - "--bs-accordion-btn-bg", - 83069, - 83089, - { - "value": "--bs-accordion-btn-bg" - } - ], - [ - "colon-token", - ":", - 83090, - 83090, - null - ], - [ - "function-token", - "var(", - 83091, - 83094, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-bg", - 83095, - 83111, - { - "value": "--bs-accordion-bg" - } - ], - [ - ")-token", - ")", - 83112, - 83112, - null - ], - [ - "semicolon-token", - ";", - 83113, - 83113, - null - ], - [ - "ident-token", - "--bs-accordion-btn-icon", - 83114, - 83136, - { - "value": "--bs-accordion-btn-icon" - } - ], - [ - "colon-token", - ":", - 83137, - 83137, - null - ], - [ - "function-token", - "url(", - 83138, - 83141, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", - 83142, - 83422, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 83423, - 83423, - null - ], - [ - "semicolon-token", - ";", - 83424, - 83424, - null - ], - [ - "ident-token", - "--bs-accordion-btn-icon-width", - 83425, - 83453, - { - "value": "--bs-accordion-btn-icon-width" - } - ], - [ - "colon-token", - ":", - 83454, - 83454, - null - ], - [ - "dimension-token", - "1.25rem", - 83455, - 83461, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 83462, - 83462, - null - ], - [ - "ident-token", - "--bs-accordion-btn-icon-transform", - 83463, - 83495, - { - "value": "--bs-accordion-btn-icon-transform" - } - ], - [ - "colon-token", - ":", - 83496, - 83496, - null - ], - [ - "function-token", - "rotate(", - 83497, - 83503, - { - "value": "rotate" - } - ], - [ - "dimension-token", - "-180deg", - 83504, - 83510, - { - "value": -180, - "type": "integer", - "unit": "deg" - } - ], - [ - ")-token", - ")", - 83511, - 83511, - null - ], - [ - "semicolon-token", - ";", - 83512, - 83512, - null - ], - [ - "ident-token", - "--bs-accordion-btn-icon-transition", - 83513, - 83546, - { - "value": "--bs-accordion-btn-icon-transition" - } - ], - [ - "colon-token", - ":", - 83547, - 83547, - null - ], - [ - "ident-token", - "transform", - 83548, - 83556, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 83557, - 83557, - null - ], - [ - "dimension-token", - "0.2s", - 83558, - 83561, - { - "value": 0.2, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 83562, - 83562, - null - ], - [ - "ident-token", - "ease-in-out", - 83563, - 83573, - { - "value": "ease-in-out" - } - ], - [ - "semicolon-token", - ";", - 83574, - 83574, - null - ], - [ - "ident-token", - "--bs-accordion-btn-active-icon", - 83575, - 83604, - { - "value": "--bs-accordion-btn-active-icon" - } - ], - [ - "colon-token", - ":", - 83605, - 83605, - null - ], - [ - "function-token", - "url(", - 83606, - 83609, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", - 83610, - 83875, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 83876, - 83876, - null - ], - [ - "semicolon-token", - ";", - 83877, - 83877, - null - ], - [ - "ident-token", - "--bs-accordion-btn-focus-border-color", - 83878, - 83914, - { - "value": "--bs-accordion-btn-focus-border-color" - } - ], - [ - "colon-token", - ":", - 83915, - 83915, - null - ], - [ - "hash-token", - "#86b7fe", - 83916, - 83922, - { - "value": "86b7fe", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 83923, - 83923, - null - ], - [ - "ident-token", - "--bs-accordion-btn-focus-box-shadow", - 83924, - 83958, - { - "value": "--bs-accordion-btn-focus-box-shadow" - } - ], - [ - "colon-token", - ":", - 83959, - 83959, - null - ], - [ - "number-token", - "0", - 83960, - 83960, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 83961, - 83961, - null - ], - [ - "number-token", - "0", - 83962, - 83962, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 83963, - 83963, - null - ], - [ - "number-token", - "0", - 83964, - 83964, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 83965, - 83965, - null - ], - [ - "dimension-token", - "0.25rem", - 83966, - 83972, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 83973, - 83973, - null - ], - [ - "function-token", - "rgba(", - 83974, - 83978, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 83979, - 83980, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 83981, - 83981, - null - ], - [ - "whitespace-token", - " ", - 83982, - 83982, - null - ], - [ - "number-token", - "110", - 83983, - 83985, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 83986, - 83986, - null - ], - [ - "whitespace-token", - " ", - 83987, - 83987, - null - ], - [ - "number-token", - "253", - 83988, - 83990, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 83991, - 83991, - null - ], - [ - "whitespace-token", - " ", - 83992, - 83992, - null - ], - [ - "number-token", - "0.25", - 83993, - 83996, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 83997, - 83997, - null - ], - [ - "semicolon-token", - ";", - 83998, - 83998, - null - ], - [ - "ident-token", - "--bs-accordion-body-padding-x", - 83999, - 84027, - { - "value": "--bs-accordion-body-padding-x" - } - ], - [ - "colon-token", - ":", - 84028, - 84028, - null - ], - [ - "dimension-token", - "1.25rem", - 84029, - 84035, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 84036, - 84036, - null - ], - [ - "ident-token", - "--bs-accordion-body-padding-y", - 84037, - 84065, - { - "value": "--bs-accordion-body-padding-y" - } - ], - [ - "colon-token", - ":", - 84066, - 84066, - null - ], - [ - "dimension-token", - "1rem", - 84067, - 84070, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 84071, - 84071, - null - ], - [ - "ident-token", - "--bs-accordion-active-color", - 84072, - 84098, - { - "value": "--bs-accordion-active-color" - } - ], - [ - "colon-token", - ":", - 84099, - 84099, - null - ], - [ - "hash-token", - "#0c63e4", - 84100, - 84106, - { - "value": "0c63e4", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 84107, - 84107, - null - ], - [ - "ident-token", - "--bs-accordion-active-bg", - 84108, - 84131, - { - "value": "--bs-accordion-active-bg" - } - ], - [ - "colon-token", - ":", - 84132, - 84132, - null - ], - [ - "hash-token", - "#e7f1ff", - 84133, - 84139, - { - "value": "e7f1ff", - "type": "id" - } - ], - [ - "}-token", - "}", - 84140, - 84140, - null - ], - [ - "delim-token", - ".", - 84141, - 84141, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 84142, - 84157, - { - "value": "accordion-button" - } - ], - [ - "{-token", - "{", - 84158, - 84158, - null - ], - [ - "ident-token", - "position", - 84159, - 84166, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 84167, - 84167, - null - ], - [ - "ident-token", - "relative", - 84168, - 84175, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 84176, - 84176, - null - ], - [ - "ident-token", - "display", - 84177, - 84183, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 84184, - 84184, - null - ], - [ - "ident-token", - "flex", - 84185, - 84188, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 84189, - 84189, - null - ], - [ - "ident-token", - "align-items", - 84190, - 84200, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 84201, - 84201, - null - ], - [ - "ident-token", - "center", - 84202, - 84207, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 84208, - 84208, - null - ], - [ - "ident-token", - "width", - 84209, - 84213, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 84214, - 84214, - null - ], - [ - "percentage-token", - "100%", - 84215, - 84218, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 84219, - 84219, - null - ], - [ - "ident-token", - "padding", - 84220, - 84226, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 84227, - 84227, - null - ], - [ - "function-token", - "var(", - 84228, - 84231, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-padding-y", - 84232, - 84259, - { - "value": "--bs-accordion-btn-padding-y" - } - ], - [ - ")-token", - ")", - 84260, - 84260, - null - ], - [ - "whitespace-token", - " ", - 84261, - 84261, - null - ], - [ - "function-token", - "var(", - 84262, - 84265, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-padding-x", - 84266, - 84293, - { - "value": "--bs-accordion-btn-padding-x" - } - ], - [ - ")-token", - ")", - 84294, - 84294, - null - ], - [ - "semicolon-token", - ";", - 84295, - 84295, - null - ], - [ - "ident-token", - "font-size", - 84296, - 84304, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 84305, - 84305, - null - ], - [ - "dimension-token", - "1rem", - 84306, - 84309, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 84310, - 84310, - null - ], - [ - "ident-token", - "color", - 84311, - 84315, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 84316, - 84316, - null - ], - [ - "function-token", - "var(", - 84317, - 84320, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-color", - 84321, - 84344, - { - "value": "--bs-accordion-btn-color" - } - ], - [ - ")-token", - ")", - 84345, - 84345, - null - ], - [ - "semicolon-token", - ";", - 84346, - 84346, - null - ], - [ - "ident-token", - "text-align", - 84347, - 84356, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 84357, - 84357, - null - ], - [ - "ident-token", - "left", - 84358, - 84361, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 84362, - 84362, - null - ], - [ - "ident-token", - "background-color", - 84363, - 84378, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 84379, - 84379, - null - ], - [ - "function-token", - "var(", - 84380, - 84383, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-bg", - 84384, - 84404, - { - "value": "--bs-accordion-btn-bg" - } - ], - [ - ")-token", - ")", - 84405, - 84405, - null - ], - [ - "semicolon-token", - ";", - 84406, - 84406, - null - ], - [ - "ident-token", - "border", - 84407, - 84412, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 84413, - 84413, - null - ], - [ - "number-token", - "0", - 84414, - 84414, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 84415, - 84415, - null - ], - [ - "ident-token", - "border-radius", - 84416, - 84428, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 84429, - 84429, - null - ], - [ - "number-token", - "0", - 84430, - 84430, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 84431, - 84431, - null - ], - [ - "ident-token", - "overflow-anchor", - 84432, - 84446, - { - "value": "overflow-anchor" - } - ], - [ - "colon-token", - ":", - 84447, - 84447, - null - ], - [ - "ident-token", - "none", - 84448, - 84451, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 84452, - 84452, - null - ], - [ - "ident-token", - "transition", - 84453, - 84462, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 84463, - 84463, - null - ], - [ - "function-token", - "var(", - 84464, - 84467, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-transition", - 84468, - 84492, - { - "value": "--bs-accordion-transition" - } - ], - [ - ")-token", - ")", - 84493, - 84493, - null - ], - [ - "}-token", - "}", - 84494, - 84494, - null - ], - [ - "at-keyword-token", - "@media", - 84495, - 84500, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 84501, - 84501, - null - ], - [ - "(-token", - "(", - 84502, - 84502, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 84503, - 84524, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 84525, - 84525, - null - ], - [ - "ident-token", - "reduce", - 84526, - 84531, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 84532, - 84532, - null - ], - [ - "{-token", - "{", - 84533, - 84533, - null - ], - [ - "delim-token", - ".", - 84534, - 84534, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 84535, - 84550, - { - "value": "accordion-button" - } - ], - [ - "{-token", - "{", - 84551, - 84551, - null - ], - [ - "ident-token", - "transition", - 84552, - 84561, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 84562, - 84562, - null - ], - [ - "ident-token", - "none", - 84563, - 84566, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 84567, - 84567, - null - ], - [ - "}-token", - "}", - 84568, - 84568, - null - ], - [ - "delim-token", - ".", - 84569, - 84569, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 84570, - 84585, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 84586, - 84586, - null - ], - [ - "function-token", - "not(", - 84587, - 84590, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 84591, - 84591, - { - "value": "." - } - ], - [ - "ident-token", - "collapsed", - 84592, - 84600, - { - "value": "collapsed" - } - ], - [ - ")-token", - ")", - 84601, - 84601, - null - ], - [ - "{-token", - "{", - 84602, - 84602, - null - ], - [ - "ident-token", - "color", - 84603, - 84607, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 84608, - 84608, - null - ], - [ - "function-token", - "var(", - 84609, - 84612, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-active-color", - 84613, - 84639, - { - "value": "--bs-accordion-active-color" - } - ], - [ - ")-token", - ")", - 84640, - 84640, - null - ], - [ - "semicolon-token", - ";", - 84641, - 84641, - null - ], - [ - "ident-token", - "background-color", - 84642, - 84657, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 84658, - 84658, - null - ], - [ - "function-token", - "var(", - 84659, - 84662, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-active-bg", - 84663, - 84686, - { - "value": "--bs-accordion-active-bg" - } - ], - [ - ")-token", - ")", - 84687, - 84687, - null - ], - [ - "semicolon-token", - ";", - 84688, - 84688, - null - ], - [ - "ident-token", - "box-shadow", - 84689, - 84698, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 84699, - 84699, - null - ], - [ - "ident-token", - "inset", - 84700, - 84704, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 84705, - 84705, - null - ], - [ - "number-token", - "0", - 84706, - 84706, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 84707, - 84707, - null - ], - [ - "function-token", - "calc(", - 84708, - 84712, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 84713, - 84714, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 84715, - 84715, - null - ], - [ - "delim-token", - "*", - 84716, - 84716, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 84717, - 84717, - null - ], - [ - "function-token", - "var(", - 84718, - 84721, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-width", - 84722, - 84748, - { - "value": "--bs-accordion-border-width" - } - ], - [ - ")-token", - ")", - 84749, - 84749, - null - ], - [ - ")-token", - ")", - 84750, - 84750, - null - ], - [ - "whitespace-token", - " ", - 84751, - 84751, - null - ], - [ - "number-token", - "0", - 84752, - 84752, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 84753, - 84753, - null - ], - [ - "function-token", - "var(", - 84754, - 84757, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-color", - 84758, - 84784, - { - "value": "--bs-accordion-border-color" - } - ], - [ - ")-token", - ")", - 84785, - 84785, - null - ], - [ - "}-token", - "}", - 84786, - 84786, - null - ], - [ - "delim-token", - ".", - 84787, - 84787, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 84788, - 84803, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 84804, - 84804, - null - ], - [ - "function-token", - "not(", - 84805, - 84808, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 84809, - 84809, - { - "value": "." - } - ], - [ - "ident-token", - "collapsed", - 84810, - 84818, - { - "value": "collapsed" - } - ], - [ - ")-token", - ")", - 84819, - 84819, - null - ], - [ - "colon-token", - ":", - 84820, - 84820, - null - ], - [ - "colon-token", - ":", - 84821, - 84821, - null - ], - [ - "ident-token", - "after", - 84822, - 84826, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 84827, - 84827, - null - ], - [ - "ident-token", - "background-image", - 84828, - 84843, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 84844, - 84844, - null - ], - [ - "function-token", - "var(", - 84845, - 84848, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-active-icon", - 84849, - 84878, - { - "value": "--bs-accordion-btn-active-icon" - } - ], - [ - ")-token", - ")", - 84879, - 84879, - null - ], - [ - "semicolon-token", - ";", - 84880, - 84880, - null - ], - [ - "ident-token", - "transform", - 84881, - 84889, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 84890, - 84890, - null - ], - [ - "function-token", - "var(", - 84891, - 84894, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon-transform", - 84895, - 84927, - { - "value": "--bs-accordion-btn-icon-transform" - } - ], - [ - ")-token", - ")", - 84928, - 84928, - null - ], - [ - "}-token", - "}", - 84929, - 84929, - null - ], - [ - "delim-token", - ".", - 84930, - 84930, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 84931, - 84946, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 84947, - 84947, - null - ], - [ - "colon-token", - ":", - 84948, - 84948, - null - ], - [ - "ident-token", - "after", - 84949, - 84953, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 84954, - 84954, - null - ], - [ - "ident-token", - "flex-shrink", - 84955, - 84965, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 84966, - 84966, - null - ], - [ - "number-token", - "0", - 84967, - 84967, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 84968, - 84968, - null - ], - [ - "ident-token", - "width", - 84969, - 84973, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 84974, - 84974, - null - ], - [ - "function-token", - "var(", - 84975, - 84978, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon-width", - 84979, - 85007, - { - "value": "--bs-accordion-btn-icon-width" - } - ], - [ - ")-token", - ")", - 85008, - 85008, - null - ], - [ - "semicolon-token", - ";", - 85009, - 85009, - null - ], - [ - "ident-token", - "height", - 85010, - 85015, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 85016, - 85016, - null - ], - [ - "function-token", - "var(", - 85017, - 85020, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon-width", - 85021, - 85049, - { - "value": "--bs-accordion-btn-icon-width" - } - ], - [ - ")-token", - ")", - 85050, - 85050, - null - ], - [ - "semicolon-token", - ";", - 85051, - 85051, - null - ], - [ - "ident-token", - "margin-left", - 85052, - 85062, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 85063, - 85063, - null - ], - [ - "ident-token", - "auto", - 85064, - 85067, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 85068, - 85068, - null - ], - [ - "ident-token", - "content", - 85069, - 85075, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 85076, - 85076, - null - ], - [ - "string-token", - "\"\"", - 85077, - 85078, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 85079, - 85079, - null - ], - [ - "ident-token", - "background-image", - 85080, - 85095, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 85096, - 85096, - null - ], - [ - "function-token", - "var(", - 85097, - 85100, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon", - 85101, - 85123, - { - "value": "--bs-accordion-btn-icon" - } - ], - [ - ")-token", - ")", - 85124, - 85124, - null - ], - [ - "semicolon-token", - ";", - 85125, - 85125, - null - ], - [ - "ident-token", - "background-repeat", - 85126, - 85142, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 85143, - 85143, - null - ], - [ - "ident-token", - "no-repeat", - 85144, - 85152, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 85153, - 85153, - null - ], - [ - "ident-token", - "background-size", - 85154, - 85168, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 85169, - 85169, - null - ], - [ - "function-token", - "var(", - 85170, - 85173, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon-width", - 85174, - 85202, - { - "value": "--bs-accordion-btn-icon-width" - } - ], - [ - ")-token", - ")", - 85203, - 85203, - null - ], - [ - "semicolon-token", - ";", - 85204, - 85204, - null - ], - [ - "ident-token", - "transition", - 85205, - 85214, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 85215, - 85215, - null - ], - [ - "function-token", - "var(", - 85216, - 85219, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-icon-transition", - 85220, - 85253, - { - "value": "--bs-accordion-btn-icon-transition" - } - ], - [ - ")-token", - ")", - 85254, - 85254, - null - ], - [ - "}-token", - "}", - 85255, - 85255, - null - ], - [ - "at-keyword-token", - "@media", - 85256, - 85261, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 85262, - 85262, - null - ], - [ - "(-token", - "(", - 85263, - 85263, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 85264, - 85285, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 85286, - 85286, - null - ], - [ - "ident-token", - "reduce", - 85287, - 85292, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 85293, - 85293, - null - ], - [ - "{-token", - "{", - 85294, - 85294, - null - ], - [ - "delim-token", - ".", - 85295, - 85295, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 85296, - 85311, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 85312, - 85312, - null - ], - [ - "colon-token", - ":", - 85313, - 85313, - null - ], - [ - "ident-token", - "after", - 85314, - 85318, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 85319, - 85319, - null - ], - [ - "ident-token", - "transition", - 85320, - 85329, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 85330, - 85330, - null - ], - [ - "ident-token", - "none", - 85331, - 85334, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 85335, - 85335, - null - ], - [ - "}-token", - "}", - 85336, - 85336, - null - ], - [ - "delim-token", - ".", - 85337, - 85337, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 85338, - 85353, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 85354, - 85354, - null - ], - [ - "ident-token", - "hover", - 85355, - 85359, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 85360, - 85360, - null - ], - [ - "ident-token", - "z-index", - 85361, - 85367, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 85368, - 85368, - null - ], - [ - "number-token", - "2", - 85369, - 85369, - { - "value": 2, - "type": "integer" - } - ], - [ - "}-token", - "}", - 85370, - 85370, - null - ], - [ - "delim-token", - ".", - 85371, - 85371, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 85372, - 85387, - { - "value": "accordion-button" - } - ], - [ - "colon-token", - ":", - 85388, - 85388, - null - ], - [ - "ident-token", - "focus", - 85389, - 85393, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 85394, - 85394, - null - ], - [ - "ident-token", - "z-index", - 85395, - 85401, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 85402, - 85402, - null - ], - [ - "number-token", - "3", - 85403, - 85403, - { - "value": 3, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 85404, - 85404, - null - ], - [ - "ident-token", - "border-color", - 85405, - 85416, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 85417, - 85417, - null - ], - [ - "function-token", - "var(", - 85418, - 85421, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-focus-border-color", - 85422, - 85458, - { - "value": "--bs-accordion-btn-focus-border-color" - } - ], - [ - ")-token", - ")", - 85459, - 85459, - null - ], - [ - "semicolon-token", - ";", - 85460, - 85460, - null - ], - [ - "ident-token", - "outline", - 85461, - 85467, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 85468, - 85468, - null - ], - [ - "number-token", - "0", - 85469, - 85469, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 85470, - 85470, - null - ], - [ - "ident-token", - "box-shadow", - 85471, - 85480, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 85481, - 85481, - null - ], - [ - "function-token", - "var(", - 85482, - 85485, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-btn-focus-box-shadow", - 85486, - 85520, - { - "value": "--bs-accordion-btn-focus-box-shadow" - } - ], - [ - ")-token", - ")", - 85521, - 85521, - null - ], - [ - "}-token", - "}", - 85522, - 85522, - null - ], - [ - "delim-token", - ".", - 85523, - 85523, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-header", - 85524, - 85539, - { - "value": "accordion-header" - } - ], - [ - "{-token", - "{", - 85540, - 85540, - null - ], - [ - "ident-token", - "margin-bottom", - 85541, - 85553, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 85554, - 85554, - null - ], - [ - "number-token", - "0", - 85555, - 85555, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 85556, - 85556, - null - ], - [ - "delim-token", - ".", - 85557, - 85557, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 85558, - 85571, - { - "value": "accordion-item" - } - ], - [ - "{-token", - "{", - 85572, - 85572, - null - ], - [ - "ident-token", - "color", - 85573, - 85577, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 85578, - 85578, - null - ], - [ - "function-token", - "var(", - 85579, - 85582, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-color", - 85583, - 85602, - { - "value": "--bs-accordion-color" - } - ], - [ - ")-token", - ")", - 85603, - 85603, - null - ], - [ - "semicolon-token", - ";", - 85604, - 85604, - null - ], - [ - "ident-token", - "background-color", - 85605, - 85620, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 85621, - 85621, - null - ], - [ - "function-token", - "var(", - 85622, - 85625, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-bg", - 85626, - 85642, - { - "value": "--bs-accordion-bg" - } - ], - [ - ")-token", - ")", - 85643, - 85643, - null - ], - [ - "semicolon-token", - ";", - 85644, - 85644, - null - ], - [ - "ident-token", - "border", - 85645, - 85650, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 85651, - 85651, - null - ], - [ - "function-token", - "var(", - 85652, - 85655, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-width", - 85656, - 85682, - { - "value": "--bs-accordion-border-width" - } - ], - [ - ")-token", - ")", - 85683, - 85683, - null - ], - [ - "whitespace-token", - " ", - 85684, - 85684, - null - ], - [ - "ident-token", - "solid", - 85685, - 85689, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 85690, - 85690, - null - ], - [ - "function-token", - "var(", - 85691, - 85694, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-color", - 85695, - 85721, - { - "value": "--bs-accordion-border-color" - } - ], - [ - ")-token", - ")", - 85722, - 85722, - null - ], - [ - "}-token", - "}", - 85723, - 85723, - null - ], - [ - "delim-token", - ".", - 85724, - 85724, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 85725, - 85738, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 85739, - 85739, - null - ], - [ - "ident-token", - "first-of-type", - 85740, - 85752, - { - "value": "first-of-type" - } - ], - [ - "{-token", - "{", - 85753, - 85753, - null - ], - [ - "ident-token", - "border-top-left-radius", - 85754, - 85775, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 85776, - 85776, - null - ], - [ - "function-token", - "var(", - 85777, - 85780, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 85781, - 85808, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 85809, - 85809, - null - ], - [ - "semicolon-token", - ";", - 85810, - 85810, - null - ], - [ - "ident-token", - "border-top-right-radius", - 85811, - 85833, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 85834, - 85834, - null - ], - [ - "function-token", - "var(", - 85835, - 85838, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 85839, - 85866, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 85867, - 85867, - null - ], - [ - "}-token", - "}", - 85868, - 85868, - null - ], - [ - "delim-token", - ".", - 85869, - 85869, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 85870, - 85883, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 85884, - 85884, - null - ], - [ - "ident-token", - "first-of-type", - 85885, - 85897, - { - "value": "first-of-type" - } - ], - [ - "whitespace-token", - " ", - 85898, - 85898, - null - ], - [ - "delim-token", - ".", - 85899, - 85899, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 85900, - 85915, - { - "value": "accordion-button" - } - ], - [ - "{-token", - "{", - 85916, - 85916, - null - ], - [ - "ident-token", - "border-top-left-radius", - 85917, - 85938, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 85939, - 85939, - null - ], - [ - "function-token", - "var(", - 85940, - 85943, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-inner-border-radius", - 85944, - 85977, - { - "value": "--bs-accordion-inner-border-radius" - } - ], - [ - ")-token", - ")", - 85978, - 85978, - null - ], - [ - "semicolon-token", - ";", - 85979, - 85979, - null - ], - [ - "ident-token", - "border-top-right-radius", - 85980, - 86002, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 86003, - 86003, - null - ], - [ - "function-token", - "var(", - 86004, - 86007, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-inner-border-radius", - 86008, - 86041, - { - "value": "--bs-accordion-inner-border-radius" - } - ], - [ - ")-token", - ")", - 86042, - 86042, - null - ], - [ - "}-token", - "}", - 86043, - 86043, - null - ], - [ - "delim-token", - ".", - 86044, - 86044, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86045, - 86058, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86059, - 86059, - null - ], - [ - "function-token", - "not(", - 86060, - 86063, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 86064, - 86064, - null - ], - [ - "ident-token", - "first-of-type", - 86065, - 86077, - { - "value": "first-of-type" - } - ], - [ - ")-token", - ")", - 86078, - 86078, - null - ], - [ - "{-token", - "{", - 86079, - 86079, - null - ], - [ - "ident-token", - "border-top", - 86080, - 86089, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 86090, - 86090, - null - ], - [ - "number-token", - "0", - 86091, - 86091, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 86092, - 86092, - null - ], - [ - "delim-token", - ".", - 86093, - 86093, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86094, - 86107, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86108, - 86108, - null - ], - [ - "ident-token", - "last-of-type", - 86109, - 86120, - { - "value": "last-of-type" - } - ], - [ - "{-token", - "{", - 86121, - 86121, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 86122, - 86147, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 86148, - 86148, - null - ], - [ - "function-token", - "var(", - 86149, - 86152, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 86153, - 86180, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 86181, - 86181, - null - ], - [ - "semicolon-token", - ";", - 86182, - 86182, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 86183, - 86207, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 86208, - 86208, - null - ], - [ - "function-token", - "var(", - 86209, - 86212, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 86213, - 86240, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 86241, - 86241, - null - ], - [ - "}-token", - "}", - 86242, - 86242, - null - ], - [ - "delim-token", - ".", - 86243, - 86243, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86244, - 86257, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86258, - 86258, - null - ], - [ - "ident-token", - "last-of-type", - 86259, - 86270, - { - "value": "last-of-type" - } - ], - [ - "whitespace-token", - " ", - 86271, - 86271, - null - ], - [ - "delim-token", - ".", - 86272, - 86272, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 86273, - 86288, - { - "value": "accordion-button" - } - ], - [ - "delim-token", - ".", - 86289, - 86289, - { - "value": "." - } - ], - [ - "ident-token", - "collapsed", - 86290, - 86298, - { - "value": "collapsed" - } - ], - [ - "{-token", - "{", - 86299, - 86299, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 86300, - 86325, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 86326, - 86326, - null - ], - [ - "function-token", - "var(", - 86327, - 86330, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-inner-border-radius", - 86331, - 86364, - { - "value": "--bs-accordion-inner-border-radius" - } - ], - [ - ")-token", - ")", - 86365, - 86365, - null - ], - [ - "semicolon-token", - ";", - 86366, - 86366, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 86367, - 86391, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 86392, - 86392, - null - ], - [ - "function-token", - "var(", - 86393, - 86396, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-inner-border-radius", - 86397, - 86430, - { - "value": "--bs-accordion-inner-border-radius" - } - ], - [ - ")-token", - ")", - 86431, - 86431, - null - ], - [ - "}-token", - "}", - 86432, - 86432, - null - ], - [ - "delim-token", - ".", - 86433, - 86433, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86434, - 86447, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86448, - 86448, - null - ], - [ - "ident-token", - "last-of-type", - 86449, - 86460, - { - "value": "last-of-type" - } - ], - [ - "whitespace-token", - " ", - 86461, - 86461, - null - ], - [ - "delim-token", - ".", - 86462, - 86462, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-collapse", - 86463, - 86480, - { - "value": "accordion-collapse" - } - ], - [ - "{-token", - "{", - 86481, - 86481, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 86482, - 86507, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 86508, - 86508, - null - ], - [ - "function-token", - "var(", - 86509, - 86512, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 86513, - 86540, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 86541, - 86541, - null - ], - [ - "semicolon-token", - ";", - 86542, - 86542, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 86543, - 86567, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 86568, - 86568, - null - ], - [ - "function-token", - "var(", - 86569, - 86572, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-border-radius", - 86573, - 86600, - { - "value": "--bs-accordion-border-radius" - } - ], - [ - ")-token", - ")", - 86601, - 86601, - null - ], - [ - "}-token", - "}", - 86602, - 86602, - null - ], - [ - "delim-token", - ".", - 86603, - 86603, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-body", - 86604, - 86617, - { - "value": "accordion-body" - } - ], - [ - "{-token", - "{", - 86618, - 86618, - null - ], - [ - "ident-token", - "padding", - 86619, - 86625, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 86626, - 86626, - null - ], - [ - "function-token", - "var(", - 86627, - 86630, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-body-padding-y", - 86631, - 86659, - { - "value": "--bs-accordion-body-padding-y" - } - ], - [ - ")-token", - ")", - 86660, - 86660, - null - ], - [ - "whitespace-token", - " ", - 86661, - 86661, - null - ], - [ - "function-token", - "var(", - 86662, - 86665, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-accordion-body-padding-x", - 86666, - 86694, - { - "value": "--bs-accordion-body-padding-x" - } - ], - [ - ")-token", - ")", - 86695, - 86695, - null - ], - [ - "}-token", - "}", - 86696, - 86696, - null - ], - [ - "delim-token", - ".", - 86697, - 86697, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86698, - 86712, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 86713, - 86713, - null - ], - [ - "delim-token", - ".", - 86714, - 86714, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-collapse", - 86715, - 86732, - { - "value": "accordion-collapse" - } - ], - [ - "{-token", - "{", - 86733, - 86733, - null - ], - [ - "ident-token", - "border-width", - 86734, - 86745, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 86746, - 86746, - null - ], - [ - "number-token", - "0", - 86747, - 86747, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 86748, - 86748, - null - ], - [ - "delim-token", - ".", - 86749, - 86749, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86750, - 86764, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 86765, - 86765, - null - ], - [ - "delim-token", - ".", - 86766, - 86766, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86767, - 86780, - { - "value": "accordion-item" - } - ], - [ - "{-token", - "{", - 86781, - 86781, - null - ], - [ - "ident-token", - "border-right", - 86782, - 86793, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 86794, - 86794, - null - ], - [ - "number-token", - "0", - 86795, - 86795, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 86796, - 86796, - null - ], - [ - "ident-token", - "border-left", - 86797, - 86807, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 86808, - 86808, - null - ], - [ - "number-token", - "0", - 86809, - 86809, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 86810, - 86810, - null - ], - [ - "ident-token", - "border-radius", - 86811, - 86823, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 86824, - 86824, - null - ], - [ - "number-token", - "0", - 86825, - 86825, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 86826, - 86826, - null - ], - [ - "delim-token", - ".", - 86827, - 86827, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86828, - 86842, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 86843, - 86843, - null - ], - [ - "delim-token", - ".", - 86844, - 86844, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86845, - 86858, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86859, - 86859, - null - ], - [ - "ident-token", - "first-child", - 86860, - 86870, - { - "value": "first-child" - } - ], - [ - "{-token", - "{", - 86871, - 86871, - null - ], - [ - "ident-token", - "border-top", - 86872, - 86881, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 86882, - 86882, - null - ], - [ - "number-token", - "0", - 86883, - 86883, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 86884, - 86884, - null - ], - [ - "delim-token", - ".", - 86885, - 86885, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86886, - 86900, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 86901, - 86901, - null - ], - [ - "delim-token", - ".", - 86902, - 86902, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86903, - 86916, - { - "value": "accordion-item" - } - ], - [ - "colon-token", - ":", - 86917, - 86917, - null - ], - [ - "ident-token", - "last-child", - 86918, - 86927, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 86928, - 86928, - null - ], - [ - "ident-token", - "border-bottom", - 86929, - 86941, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 86942, - 86942, - null - ], - [ - "number-token", - "0", - 86943, - 86943, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 86944, - 86944, - null - ], - [ - "delim-token", - ".", - 86945, - 86945, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86946, - 86960, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 86961, - 86961, - null - ], - [ - "delim-token", - ".", - 86962, - 86962, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 86963, - 86976, - { - "value": "accordion-item" - } - ], - [ - "whitespace-token", - " ", - 86977, - 86977, - null - ], - [ - "delim-token", - ".", - 86978, - 86978, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 86979, - 86994, - { - "value": "accordion-button" - } - ], - [ - "comma-token", - ",", - 86995, - 86995, - null - ], - [ - "delim-token", - ".", - 86996, - 86996, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-flush", - 86997, - 87011, - { - "value": "accordion-flush" - } - ], - [ - "whitespace-token", - " ", - 87012, - 87012, - null - ], - [ - "delim-token", - ".", - 87013, - 87013, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-item", - 87014, - 87027, - { - "value": "accordion-item" - } - ], - [ - "whitespace-token", - " ", - 87028, - 87028, - null - ], - [ - "delim-token", - ".", - 87029, - 87029, - { - "value": "." - } - ], - [ - "ident-token", - "accordion-button", - 87030, - 87045, - { - "value": "accordion-button" - } - ], - [ - "delim-token", - ".", - 87046, - 87046, - { - "value": "." - } - ], - [ - "ident-token", - "collapsed", - 87047, - 87055, - { - "value": "collapsed" - } - ], - [ - "{-token", - "{", - 87056, - 87056, - null - ], - [ - "ident-token", - "border-radius", - 87057, - 87069, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 87070, - 87070, - null - ], - [ - "number-token", - "0", - 87071, - 87071, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 87072, - 87072, - null - ], - [ - "delim-token", - ".", - 87073, - 87073, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb", - 87074, - 87083, - { - "value": "breadcrumb" - } - ], - [ - "{-token", - "{", - 87084, - 87084, - null - ], - [ - "ident-token", - "--bs-breadcrumb-padding-x", - 87085, - 87109, - { - "value": "--bs-breadcrumb-padding-x" - } - ], - [ - "colon-token", - ":", - 87110, - 87110, - null - ], - [ - "number-token", - "0", - 87111, - 87111, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 87112, - 87112, - null - ], - [ - "ident-token", - "--bs-breadcrumb-padding-y", - 87113, - 87137, - { - "value": "--bs-breadcrumb-padding-y" - } - ], - [ - "colon-token", - ":", - 87138, - 87138, - null - ], - [ - "number-token", - "0", - 87139, - 87139, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 87140, - 87140, - null - ], - [ - "ident-token", - "--bs-breadcrumb-margin-bottom", - 87141, - 87169, - { - "value": "--bs-breadcrumb-margin-bottom" - } - ], - [ - "colon-token", - ":", - 87170, - 87170, - null - ], - [ - "dimension-token", - "1rem", - 87171, - 87174, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 87175, - 87175, - null - ], - [ - "ident-token", - "--bs-breadcrumb-bg", - 87176, - 87193, - { - "value": "--bs-breadcrumb-bg" - } - ], - [ - "colon-token", - ":", - 87194, - 87194, - null - ], - [ - "whitespace-token", - " ", - 87195, - 87195, - null - ], - [ - "semicolon-token", - ";", - 87196, - 87196, - null - ], - [ - "ident-token", - "--bs-breadcrumb-border-radius", - 87197, - 87225, - { - "value": "--bs-breadcrumb-border-radius" - } - ], - [ - "colon-token", - ":", - 87226, - 87226, - null - ], - [ - "whitespace-token", - " ", - 87227, - 87227, - null - ], - [ - "semicolon-token", - ";", - 87228, - 87228, - null - ], - [ - "ident-token", - "--bs-breadcrumb-divider-color", - 87229, - 87257, - { - "value": "--bs-breadcrumb-divider-color" - } - ], - [ - "colon-token", - ":", - 87258, - 87258, - null - ], - [ - "hash-token", - "#6c757d", - 87259, - 87265, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 87266, - 87266, - null - ], - [ - "ident-token", - "--bs-breadcrumb-item-padding-x", - 87267, - 87296, - { - "value": "--bs-breadcrumb-item-padding-x" - } - ], - [ - "colon-token", - ":", - 87297, - 87297, - null - ], - [ - "dimension-token", - "0.5rem", - 87298, - 87303, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 87304, - 87304, - null - ], - [ - "ident-token", - "--bs-breadcrumb-item-active-color", - 87305, - 87337, - { - "value": "--bs-breadcrumb-item-active-color" - } - ], - [ - "colon-token", - ":", - 87338, - 87338, - null - ], - [ - "hash-token", - "#6c757d", - 87339, - 87345, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 87346, - 87346, - null - ], - [ - "ident-token", - "display", - 87347, - 87353, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 87354, - 87354, - null - ], - [ - "ident-token", - "flex", - 87355, - 87358, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 87359, - 87359, - null - ], - [ - "ident-token", - "flex-wrap", - 87360, - 87368, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 87369, - 87369, - null - ], - [ - "ident-token", - "wrap", - 87370, - 87373, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 87374, - 87374, - null - ], - [ - "ident-token", - "padding", - 87375, - 87381, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 87382, - 87382, - null - ], - [ - "function-token", - "var(", - 87383, - 87386, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-padding-y", - 87387, - 87411, - { - "value": "--bs-breadcrumb-padding-y" - } - ], - [ - ")-token", - ")", - 87412, - 87412, - null - ], - [ - "whitespace-token", - " ", - 87413, - 87413, - null - ], - [ - "function-token", - "var(", - 87414, - 87417, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-padding-x", - 87418, - 87442, - { - "value": "--bs-breadcrumb-padding-x" - } - ], - [ - ")-token", - ")", - 87443, - 87443, - null - ], - [ - "semicolon-token", - ";", - 87444, - 87444, - null - ], - [ - "ident-token", - "margin-bottom", - 87445, - 87457, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 87458, - 87458, - null - ], - [ - "function-token", - "var(", - 87459, - 87462, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-margin-bottom", - 87463, - 87491, - { - "value": "--bs-breadcrumb-margin-bottom" - } - ], - [ - ")-token", - ")", - 87492, - 87492, - null - ], - [ - "semicolon-token", - ";", - 87493, - 87493, - null - ], - [ - "ident-token", - "font-size", - 87494, - 87502, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 87503, - 87503, - null - ], - [ - "function-token", - "var(", - 87504, - 87507, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-font-size", - 87508, - 87532, - { - "value": "--bs-breadcrumb-font-size" - } - ], - [ - ")-token", - ")", - 87533, - 87533, - null - ], - [ - "semicolon-token", - ";", - 87534, - 87534, - null - ], - [ - "ident-token", - "list-style", - 87535, - 87544, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 87545, - 87545, - null - ], - [ - "ident-token", - "none", - 87546, - 87549, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 87550, - 87550, - null - ], - [ - "ident-token", - "background-color", - 87551, - 87566, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 87567, - 87567, - null - ], - [ - "function-token", - "var(", - 87568, - 87571, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-bg", - 87572, - 87589, - { - "value": "--bs-breadcrumb-bg" - } - ], - [ - ")-token", - ")", - 87590, - 87590, - null - ], - [ - "semicolon-token", - ";", - 87591, - 87591, - null - ], - [ - "ident-token", - "border-radius", - 87592, - 87604, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 87605, - 87605, - null - ], - [ - "function-token", - "var(", - 87606, - 87609, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-border-radius", - 87610, - 87638, - { - "value": "--bs-breadcrumb-border-radius" - } - ], - [ - ")-token", - ")", - 87639, - 87639, - null - ], - [ - "}-token", - "}", - 87640, - 87640, - null - ], - [ - "delim-token", - ".", - 87641, - 87641, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb-item", - 87642, - 87656, - { - "value": "breadcrumb-item" - } - ], - [ - "delim-token", - "+", - 87657, - 87657, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 87658, - 87658, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb-item", - 87659, - 87673, - { - "value": "breadcrumb-item" - } - ], - [ - "{-token", - "{", - 87674, - 87674, - null - ], - [ - "ident-token", - "padding-left", - 87675, - 87686, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 87687, - 87687, - null - ], - [ - "function-token", - "var(", - 87688, - 87691, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-item-padding-x", - 87692, - 87721, - { - "value": "--bs-breadcrumb-item-padding-x" - } - ], - [ - ")-token", - ")", - 87722, - 87722, - null - ], - [ - "}-token", - "}", - 87723, - 87723, - null - ], - [ - "delim-token", - ".", - 87724, - 87724, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb-item", - 87725, - 87739, - { - "value": "breadcrumb-item" - } - ], - [ - "delim-token", - "+", - 87740, - 87740, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 87741, - 87741, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb-item", - 87742, - 87756, - { - "value": "breadcrumb-item" - } - ], - [ - "colon-token", - ":", - 87757, - 87757, - null - ], - [ - "colon-token", - ":", - 87758, - 87758, - null - ], - [ - "ident-token", - "before", - 87759, - 87764, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 87765, - 87765, - null - ], - [ - "ident-token", - "float", - 87766, - 87770, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 87771, - 87771, - null - ], - [ - "ident-token", - "left", - 87772, - 87775, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 87776, - 87776, - null - ], - [ - "ident-token", - "padding-right", - 87777, - 87789, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 87790, - 87790, - null - ], - [ - "function-token", - "var(", - 87791, - 87794, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-item-padding-x", - 87795, - 87824, - { - "value": "--bs-breadcrumb-item-padding-x" - } - ], - [ - ")-token", - ")", - 87825, - 87825, - null - ], - [ - "semicolon-token", - ";", - 87826, - 87826, - null - ], - [ - "ident-token", - "color", - 87827, - 87831, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 87832, - 87832, - null - ], - [ - "function-token", - "var(", - 87833, - 87836, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-divider-color", - 87837, - 87865, - { - "value": "--bs-breadcrumb-divider-color" - } - ], - [ - ")-token", - ")", - 87866, - 87866, - null - ], - [ - "semicolon-token", - ";", - 87867, - 87867, - null - ], - [ - "ident-token", - "content", - 87868, - 87874, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 87875, - 87875, - null - ], - [ - "function-token", - "var(", - 87876, - 87879, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-divider", - 87880, - 87902, - { - "value": "--bs-breadcrumb-divider" - } - ], - [ - "comma-token", - ",", - 87903, - 87903, - null - ], - [ - "whitespace-token", - " ", - 87904, - 87904, - null - ], - [ - "string-token", - "\"/\"", - 87905, - 87907, - { - "value": "/" - } - ], - [ - ")-token", - ")", - 87908, - 87908, - null - ], - [ - "}-token", - "}", - 87909, - 87909, - null - ], - [ - "delim-token", - ".", - 87910, - 87910, - { - "value": "." - } - ], - [ - "ident-token", - "breadcrumb-item", - 87911, - 87925, - { - "value": "breadcrumb-item" - } - ], - [ - "delim-token", - ".", - 87926, - 87926, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 87927, - 87932, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 87933, - 87933, - null - ], - [ - "ident-token", - "color", - 87934, - 87938, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 87939, - 87939, - null - ], - [ - "function-token", - "var(", - 87940, - 87943, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-breadcrumb-item-active-color", - 87944, - 87976, - { - "value": "--bs-breadcrumb-item-active-color" - } - ], - [ - ")-token", - ")", - 87977, - 87977, - null - ], - [ - "}-token", - "}", - 87978, - 87978, - null - ], - [ - "delim-token", - ".", - 87979, - 87979, - { - "value": "." - } - ], - [ - "ident-token", - "pagination", - 87980, - 87989, - { - "value": "pagination" - } - ], - [ - "{-token", - "{", - 87990, - 87990, - null - ], - [ - "ident-token", - "--bs-pagination-padding-x", - 87991, - 88015, - { - "value": "--bs-pagination-padding-x" - } - ], - [ - "colon-token", - ":", - 88016, - 88016, - null - ], - [ - "dimension-token", - "0.75rem", - 88017, - 88023, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 88024, - 88024, - null - ], - [ - "ident-token", - "--bs-pagination-padding-y", - 88025, - 88049, - { - "value": "--bs-pagination-padding-y" - } - ], - [ - "colon-token", - ":", - 88050, - 88050, - null - ], - [ - "dimension-token", - "0.375rem", - 88051, - 88058, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 88059, - 88059, - null - ], - [ - "ident-token", - "--bs-pagination-font-size", - 88060, - 88084, - { - "value": "--bs-pagination-font-size" - } - ], - [ - "colon-token", - ":", - 88085, - 88085, - null - ], - [ - "dimension-token", - "1rem", - 88086, - 88089, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 88090, - 88090, - null - ], - [ - "ident-token", - "--bs-pagination-color", - 88091, - 88111, - { - "value": "--bs-pagination-color" - } - ], - [ - "colon-token", - ":", - 88112, - 88112, - null - ], - [ - "function-token", - "var(", - 88113, - 88116, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-color", - 88117, - 88131, - { - "value": "--bs-link-color" - } - ], - [ - ")-token", - ")", - 88132, - 88132, - null - ], - [ - "semicolon-token", - ";", - 88133, - 88133, - null - ], - [ - "ident-token", - "--bs-pagination-bg", - 88134, - 88151, - { - "value": "--bs-pagination-bg" - } - ], - [ - "colon-token", - ":", - 88152, - 88152, - null - ], - [ - "hash-token", - "#fff", - 88153, - 88156, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88157, - 88157, - null - ], - [ - "ident-token", - "--bs-pagination-border-width", - 88158, - 88185, - { - "value": "--bs-pagination-border-width" - } - ], - [ - "colon-token", - ":", - 88186, - 88186, - null - ], - [ - "dimension-token", - "1px", - 88187, - 88189, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 88190, - 88190, - null - ], - [ - "ident-token", - "--bs-pagination-border-color", - 88191, - 88218, - { - "value": "--bs-pagination-border-color" - } - ], - [ - "colon-token", - ":", - 88219, - 88219, - null - ], - [ - "hash-token", - "#dee2e6", - 88220, - 88226, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88227, - 88227, - null - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 88228, - 88256, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - "colon-token", - ":", - 88257, - 88257, - null - ], - [ - "dimension-token", - "0.375rem", - 88258, - 88265, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 88266, - 88266, - null - ], - [ - "ident-token", - "--bs-pagination-hover-color", - 88267, - 88293, - { - "value": "--bs-pagination-hover-color" - } - ], - [ - "colon-token", - ":", - 88294, - 88294, - null - ], - [ - "function-token", - "var(", - 88295, - 88298, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 88299, - 88319, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 88320, - 88320, - null - ], - [ - "semicolon-token", - ";", - 88321, - 88321, - null - ], - [ - "ident-token", - "--bs-pagination-hover-bg", - 88322, - 88345, - { - "value": "--bs-pagination-hover-bg" - } - ], - [ - "colon-token", - ":", - 88346, - 88346, - null - ], - [ - "hash-token", - "#e9ecef", - 88347, - 88353, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88354, - 88354, - null - ], - [ - "ident-token", - "--bs-pagination-hover-border-color", - 88355, - 88388, - { - "value": "--bs-pagination-hover-border-color" - } - ], - [ - "colon-token", - ":", - 88389, - 88389, - null - ], - [ - "hash-token", - "#dee2e6", - 88390, - 88396, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88397, - 88397, - null - ], - [ - "ident-token", - "--bs-pagination-focus-color", - 88398, - 88424, - { - "value": "--bs-pagination-focus-color" - } - ], - [ - "colon-token", - ":", - 88425, - 88425, - null - ], - [ - "function-token", - "var(", - 88426, - 88429, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-link-hover-color", - 88430, - 88450, - { - "value": "--bs-link-hover-color" - } - ], - [ - ")-token", - ")", - 88451, - 88451, - null - ], - [ - "semicolon-token", - ";", - 88452, - 88452, - null - ], - [ - "ident-token", - "--bs-pagination-focus-bg", - 88453, - 88476, - { - "value": "--bs-pagination-focus-bg" - } - ], - [ - "colon-token", - ":", - 88477, - 88477, - null - ], - [ - "hash-token", - "#e9ecef", - 88478, - 88484, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88485, - 88485, - null - ], - [ - "ident-token", - "--bs-pagination-focus-box-shadow", - 88486, - 88517, - { - "value": "--bs-pagination-focus-box-shadow" - } - ], - [ - "colon-token", - ":", - 88518, - 88518, - null - ], - [ - "number-token", - "0", - 88519, - 88519, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 88520, - 88520, - null - ], - [ - "number-token", - "0", - 88521, - 88521, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 88522, - 88522, - null - ], - [ - "number-token", - "0", - 88523, - 88523, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 88524, - 88524, - null - ], - [ - "dimension-token", - "0.25rem", - 88525, - 88531, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 88532, - 88532, - null - ], - [ - "function-token", - "rgba(", - 88533, - 88537, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 88538, - 88539, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 88540, - 88540, - null - ], - [ - "whitespace-token", - " ", - 88541, - 88541, - null - ], - [ - "number-token", - "110", - 88542, - 88544, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 88545, - 88545, - null - ], - [ - "whitespace-token", - " ", - 88546, - 88546, - null - ], - [ - "number-token", - "253", - 88547, - 88549, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 88550, - 88550, - null - ], - [ - "whitespace-token", - " ", - 88551, - 88551, - null - ], - [ - "number-token", - "0.25", - 88552, - 88555, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 88556, - 88556, - null - ], - [ - "semicolon-token", - ";", - 88557, - 88557, - null - ], - [ - "ident-token", - "--bs-pagination-active-color", - 88558, - 88585, - { - "value": "--bs-pagination-active-color" - } - ], - [ - "colon-token", - ":", - 88586, - 88586, - null - ], - [ - "hash-token", - "#fff", - 88587, - 88590, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88591, - 88591, - null - ], - [ - "ident-token", - "--bs-pagination-active-bg", - 88592, - 88616, - { - "value": "--bs-pagination-active-bg" - } - ], - [ - "colon-token", - ":", - 88617, - 88617, - null - ], - [ - "hash-token", - "#0d6efd", - 88618, - 88624, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 88625, - 88625, - null - ], - [ - "ident-token", - "--bs-pagination-active-border-color", - 88626, - 88660, - { - "value": "--bs-pagination-active-border-color" - } - ], - [ - "colon-token", - ":", - 88661, - 88661, - null - ], - [ - "hash-token", - "#0d6efd", - 88662, - 88668, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 88669, - 88669, - null - ], - [ - "ident-token", - "--bs-pagination-disabled-color", - 88670, - 88699, - { - "value": "--bs-pagination-disabled-color" - } - ], - [ - "colon-token", - ":", - 88700, - 88700, - null - ], - [ - "hash-token", - "#6c757d", - 88701, - 88707, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 88708, - 88708, - null - ], - [ - "ident-token", - "--bs-pagination-disabled-bg", - 88709, - 88735, - { - "value": "--bs-pagination-disabled-bg" - } - ], - [ - "colon-token", - ":", - 88736, - 88736, - null - ], - [ - "hash-token", - "#fff", - 88737, - 88740, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88741, - 88741, - null - ], - [ - "ident-token", - "--bs-pagination-disabled-border-color", - 88742, - 88778, - { - "value": "--bs-pagination-disabled-border-color" - } - ], - [ - "colon-token", - ":", - 88779, - 88779, - null - ], - [ - "hash-token", - "#dee2e6", - 88780, - 88786, - { - "value": "dee2e6", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 88787, - 88787, - null - ], - [ - "ident-token", - "display", - 88788, - 88794, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 88795, - 88795, - null - ], - [ - "ident-token", - "flex", - 88796, - 88799, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 88800, - 88800, - null - ], - [ - "ident-token", - "padding-left", - 88801, - 88812, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 88813, - 88813, - null - ], - [ - "number-token", - "0", - 88814, - 88814, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 88815, - 88815, - null - ], - [ - "ident-token", - "list-style", - 88816, - 88825, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 88826, - 88826, - null - ], - [ - "ident-token", - "none", - 88827, - 88830, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 88831, - 88831, - null - ], - [ - "delim-token", - ".", - 88832, - 88832, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 88833, - 88841, - { - "value": "page-link" - } - ], - [ - "{-token", - "{", - 88842, - 88842, - null - ], - [ - "ident-token", - "position", - 88843, - 88850, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 88851, - 88851, - null - ], - [ - "ident-token", - "relative", - 88852, - 88859, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 88860, - 88860, - null - ], - [ - "ident-token", - "display", - 88861, - 88867, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 88868, - 88868, - null - ], - [ - "ident-token", - "block", - 88869, - 88873, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 88874, - 88874, - null - ], - [ - "ident-token", - "padding", - 88875, - 88881, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 88882, - 88882, - null - ], - [ - "function-token", - "var(", - 88883, - 88886, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-padding-y", - 88887, - 88911, - { - "value": "--bs-pagination-padding-y" - } - ], - [ - ")-token", - ")", - 88912, - 88912, - null - ], - [ - "whitespace-token", - " ", - 88913, - 88913, - null - ], - [ - "function-token", - "var(", - 88914, - 88917, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-padding-x", - 88918, - 88942, - { - "value": "--bs-pagination-padding-x" - } - ], - [ - ")-token", - ")", - 88943, - 88943, - null - ], - [ - "semicolon-token", - ";", - 88944, - 88944, - null - ], - [ - "ident-token", - "font-size", - 88945, - 88953, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 88954, - 88954, - null - ], - [ - "function-token", - "var(", - 88955, - 88958, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-font-size", - 88959, - 88983, - { - "value": "--bs-pagination-font-size" - } - ], - [ - ")-token", - ")", - 88984, - 88984, - null - ], - [ - "semicolon-token", - ";", - 88985, - 88985, - null - ], - [ - "ident-token", - "color", - 88986, - 88990, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 88991, - 88991, - null - ], - [ - "function-token", - "var(", - 88992, - 88995, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-color", - 88996, - 89016, - { - "value": "--bs-pagination-color" - } - ], - [ - ")-token", - ")", - 89017, - 89017, - null - ], - [ - "semicolon-token", - ";", - 89018, - 89018, - null - ], - [ - "ident-token", - "text-decoration", - 89019, - 89033, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 89034, - 89034, - null - ], - [ - "ident-token", - "none", - 89035, - 89038, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 89039, - 89039, - null - ], - [ - "ident-token", - "background-color", - 89040, - 89055, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 89056, - 89056, - null - ], - [ - "function-token", - "var(", - 89057, - 89060, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-bg", - 89061, - 89078, - { - "value": "--bs-pagination-bg" - } - ], - [ - ")-token", - ")", - 89079, - 89079, - null - ], - [ - "semicolon-token", - ";", - 89080, - 89080, - null - ], - [ - "ident-token", - "border", - 89081, - 89086, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 89087, - 89087, - null - ], - [ - "function-token", - "var(", - 89088, - 89091, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-width", - 89092, - 89119, - { - "value": "--bs-pagination-border-width" - } - ], - [ - ")-token", - ")", - 89120, - 89120, - null - ], - [ - "whitespace-token", - " ", - 89121, - 89121, - null - ], - [ - "ident-token", - "solid", - 89122, - 89126, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 89127, - 89127, - null - ], - [ - "function-token", - "var(", - 89128, - 89131, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-color", - 89132, - 89159, - { - "value": "--bs-pagination-border-color" - } - ], - [ - ")-token", - ")", - 89160, - 89160, - null - ], - [ - "semicolon-token", - ";", - 89161, - 89161, - null - ], - [ - "ident-token", - "transition", - 89162, - 89171, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 89172, - 89172, - null - ], - [ - "ident-token", - "color", - 89173, - 89177, - { - "value": "color" - } - ], - [ - "whitespace-token", - " ", - 89178, - 89178, - null - ], - [ - "dimension-token", - ".15s", - 89179, - 89182, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 89183, - 89183, - null - ], - [ - "ident-token", - "ease-in-out", - 89184, - 89194, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 89195, - 89195, - null - ], - [ - "ident-token", - "background-color", - 89196, - 89211, - { - "value": "background-color" - } - ], - [ - "whitespace-token", - " ", - 89212, - 89212, - null - ], - [ - "dimension-token", - ".15s", - 89213, - 89216, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 89217, - 89217, - null - ], - [ - "ident-token", - "ease-in-out", - 89218, - 89228, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 89229, - 89229, - null - ], - [ - "ident-token", - "border-color", - 89230, - 89241, - { - "value": "border-color" - } - ], - [ - "whitespace-token", - " ", - 89242, - 89242, - null - ], - [ - "dimension-token", - ".15s", - 89243, - 89246, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 89247, - 89247, - null - ], - [ - "ident-token", - "ease-in-out", - 89248, - 89258, - { - "value": "ease-in-out" - } - ], - [ - "comma-token", - ",", - 89259, - 89259, - null - ], - [ - "ident-token", - "box-shadow", - 89260, - 89269, - { - "value": "box-shadow" - } - ], - [ - "whitespace-token", - " ", - 89270, - 89270, - null - ], - [ - "dimension-token", - ".15s", - 89271, - 89274, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 89275, - 89275, - null - ], - [ - "ident-token", - "ease-in-out", - 89276, - 89286, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 89287, - 89287, - null - ], - [ - "at-keyword-token", - "@media", - 89288, - 89293, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 89294, - 89294, - null - ], - [ - "(-token", - "(", - 89295, - 89295, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 89296, - 89317, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 89318, - 89318, - null - ], - [ - "ident-token", - "reduce", - 89319, - 89324, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 89325, - 89325, - null - ], - [ - "{-token", - "{", - 89326, - 89326, - null - ], - [ - "delim-token", - ".", - 89327, - 89327, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89328, - 89336, - { - "value": "page-link" - } - ], - [ - "{-token", - "{", - 89337, - 89337, - null - ], - [ - "ident-token", - "transition", - 89338, - 89347, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 89348, - 89348, - null - ], - [ - "ident-token", - "none", - 89349, - 89352, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 89353, - 89353, - null - ], - [ - "}-token", - "}", - 89354, - 89354, - null - ], - [ - "delim-token", - ".", - 89355, - 89355, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89356, - 89364, - { - "value": "page-link" - } - ], - [ - "colon-token", - ":", - 89365, - 89365, - null - ], - [ - "ident-token", - "hover", - 89366, - 89370, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 89371, - 89371, - null - ], - [ - "ident-token", - "z-index", - 89372, - 89378, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 89379, - 89379, - null - ], - [ - "number-token", - "2", - 89380, - 89380, - { - "value": 2, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 89381, - 89381, - null - ], - [ - "ident-token", - "color", - 89382, - 89386, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 89387, - 89387, - null - ], - [ - "function-token", - "var(", - 89388, - 89391, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-hover-color", - 89392, - 89418, - { - "value": "--bs-pagination-hover-color" - } - ], - [ - ")-token", - ")", - 89419, - 89419, - null - ], - [ - "semicolon-token", - ";", - 89420, - 89420, - null - ], - [ - "ident-token", - "background-color", - 89421, - 89436, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 89437, - 89437, - null - ], - [ - "function-token", - "var(", - 89438, - 89441, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-hover-bg", - 89442, - 89465, - { - "value": "--bs-pagination-hover-bg" - } - ], - [ - ")-token", - ")", - 89466, - 89466, - null - ], - [ - "semicolon-token", - ";", - 89467, - 89467, - null - ], - [ - "ident-token", - "border-color", - 89468, - 89479, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 89480, - 89480, - null - ], - [ - "function-token", - "var(", - 89481, - 89484, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-hover-border-color", - 89485, - 89518, - { - "value": "--bs-pagination-hover-border-color" - } - ], - [ - ")-token", - ")", - 89519, - 89519, - null - ], - [ - "}-token", - "}", - 89520, - 89520, - null - ], - [ - "delim-token", - ".", - 89521, - 89521, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89522, - 89530, - { - "value": "page-link" - } - ], - [ - "colon-token", - ":", - 89531, - 89531, - null - ], - [ - "ident-token", - "focus", - 89532, - 89536, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 89537, - 89537, - null - ], - [ - "ident-token", - "z-index", - 89538, - 89544, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 89545, - 89545, - null - ], - [ - "number-token", - "3", - 89546, - 89546, - { - "value": 3, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 89547, - 89547, - null - ], - [ - "ident-token", - "color", - 89548, - 89552, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 89553, - 89553, - null - ], - [ - "function-token", - "var(", - 89554, - 89557, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-focus-color", - 89558, - 89584, - { - "value": "--bs-pagination-focus-color" - } - ], - [ - ")-token", - ")", - 89585, - 89585, - null - ], - [ - "semicolon-token", - ";", - 89586, - 89586, - null - ], - [ - "ident-token", - "background-color", - 89587, - 89602, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 89603, - 89603, - null - ], - [ - "function-token", - "var(", - 89604, - 89607, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-focus-bg", - 89608, - 89631, - { - "value": "--bs-pagination-focus-bg" - } - ], - [ - ")-token", - ")", - 89632, - 89632, - null - ], - [ - "semicolon-token", - ";", - 89633, - 89633, - null - ], - [ - "ident-token", - "outline", - 89634, - 89640, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 89641, - 89641, - null - ], - [ - "number-token", - "0", - 89642, - 89642, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 89643, - 89643, - null - ], - [ - "ident-token", - "box-shadow", - 89644, - 89653, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 89654, - 89654, - null - ], - [ - "function-token", - "var(", - 89655, - 89658, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-focus-box-shadow", - 89659, - 89690, - { - "value": "--bs-pagination-focus-box-shadow" - } - ], - [ - ")-token", - ")", - 89691, - 89691, - null - ], - [ - "}-token", - "}", - 89692, - 89692, - null - ], - [ - "delim-token", - ".", - 89693, - 89693, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 89694, - 89699, - { - "value": "active" - } - ], - [ - "delim-token", - ">", - 89700, - 89700, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 89701, - 89701, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89702, - 89710, - { - "value": "page-link" - } - ], - [ - "comma-token", - ",", - 89711, - 89711, - null - ], - [ - "delim-token", - ".", - 89712, - 89712, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89713, - 89721, - { - "value": "page-link" - } - ], - [ - "delim-token", - ".", - 89722, - 89722, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 89723, - 89728, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 89729, - 89729, - null - ], - [ - "ident-token", - "z-index", - 89730, - 89736, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 89737, - 89737, - null - ], - [ - "number-token", - "3", - 89738, - 89738, - { - "value": 3, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 89739, - 89739, - null - ], - [ - "ident-token", - "color", - 89740, - 89744, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 89745, - 89745, - null - ], - [ - "function-token", - "var(", - 89746, - 89749, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-active-color", - 89750, - 89777, - { - "value": "--bs-pagination-active-color" - } - ], - [ - ")-token", - ")", - 89778, - 89778, - null - ], - [ - "semicolon-token", - ";", - 89779, - 89779, - null - ], - [ - "ident-token", - "background-color", - 89780, - 89795, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 89796, - 89796, - null - ], - [ - "function-token", - "var(", - 89797, - 89800, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-active-bg", - 89801, - 89825, - { - "value": "--bs-pagination-active-bg" - } - ], - [ - ")-token", - ")", - 89826, - 89826, - null - ], - [ - "semicolon-token", - ";", - 89827, - 89827, - null - ], - [ - "ident-token", - "border-color", - 89828, - 89839, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 89840, - 89840, - null - ], - [ - "function-token", - "var(", - 89841, - 89844, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-active-border-color", - 89845, - 89879, - { - "value": "--bs-pagination-active-border-color" - } - ], - [ - ")-token", - ")", - 89880, - 89880, - null - ], - [ - "}-token", - "}", - 89881, - 89881, - null - ], - [ - "delim-token", - ".", - 89882, - 89882, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 89883, - 89890, - { - "value": "disabled" - } - ], - [ - "delim-token", - ">", - 89891, - 89891, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 89892, - 89892, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89893, - 89901, - { - "value": "page-link" - } - ], - [ - "comma-token", - ",", - 89902, - 89902, - null - ], - [ - "delim-token", - ".", - 89903, - 89903, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 89904, - 89912, - { - "value": "page-link" - } - ], - [ - "delim-token", - ".", - 89913, - 89913, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 89914, - 89921, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 89922, - 89922, - null - ], - [ - "ident-token", - "color", - 89923, - 89927, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 89928, - 89928, - null - ], - [ - "function-token", - "var(", - 89929, - 89932, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-disabled-color", - 89933, - 89962, - { - "value": "--bs-pagination-disabled-color" - } - ], - [ - ")-token", - ")", - 89963, - 89963, - null - ], - [ - "semicolon-token", - ";", - 89964, - 89964, - null - ], - [ - "ident-token", - "pointer-events", - 89965, - 89978, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 89979, - 89979, - null - ], - [ - "ident-token", - "none", - 89980, - 89983, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 89984, - 89984, - null - ], - [ - "ident-token", - "background-color", - 89985, - 90000, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 90001, - 90001, - null - ], - [ - "function-token", - "var(", - 90002, - 90005, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-disabled-bg", - 90006, - 90032, - { - "value": "--bs-pagination-disabled-bg" - } - ], - [ - ")-token", - ")", - 90033, - 90033, - null - ], - [ - "semicolon-token", - ";", - 90034, - 90034, - null - ], - [ - "ident-token", - "border-color", - 90035, - 90046, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 90047, - 90047, - null - ], - [ - "function-token", - "var(", - 90048, - 90051, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-disabled-border-color", - 90052, - 90088, - { - "value": "--bs-pagination-disabled-border-color" - } - ], - [ - ")-token", - ")", - 90089, - 90089, - null - ], - [ - "}-token", - "}", - 90090, - 90090, - null - ], - [ - "delim-token", - ".", - 90091, - 90091, - { - "value": "." - } - ], - [ - "ident-token", - "page-item", - 90092, - 90100, - { - "value": "page-item" - } - ], - [ - "colon-token", - ":", - 90101, - 90101, - null - ], - [ - "function-token", - "not(", - 90102, - 90105, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 90106, - 90106, - null - ], - [ - "ident-token", - "first-child", - 90107, - 90117, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 90118, - 90118, - null - ], - [ - "whitespace-token", - " ", - 90119, - 90119, - null - ], - [ - "delim-token", - ".", - 90120, - 90120, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 90121, - 90129, - { - "value": "page-link" - } - ], - [ - "{-token", - "{", - 90130, - 90130, - null - ], - [ - "ident-token", - "margin-left", - 90131, - 90141, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 90142, - 90142, - null - ], - [ - "dimension-token", - "-1px", - 90143, - 90146, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 90147, - 90147, - null - ], - [ - "delim-token", - ".", - 90148, - 90148, - { - "value": "." - } - ], - [ - "ident-token", - "page-item", - 90149, - 90157, - { - "value": "page-item" - } - ], - [ - "colon-token", - ":", - 90158, - 90158, - null - ], - [ - "ident-token", - "first-child", - 90159, - 90169, - { - "value": "first-child" - } - ], - [ - "whitespace-token", - " ", - 90170, - 90170, - null - ], - [ - "delim-token", - ".", - 90171, - 90171, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 90172, - 90180, - { - "value": "page-link" - } - ], - [ - "{-token", - "{", - 90181, - 90181, - null - ], - [ - "ident-token", - "border-top-left-radius", - 90182, - 90203, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 90204, - 90204, - null - ], - [ - "function-token", - "var(", - 90205, - 90208, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90209, - 90237, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - ")-token", - ")", - 90238, - 90238, - null - ], - [ - "semicolon-token", - ";", - 90239, - 90239, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 90240, - 90264, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 90265, - 90265, - null - ], - [ - "function-token", - "var(", - 90266, - 90269, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90270, - 90298, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - ")-token", - ")", - 90299, - 90299, - null - ], - [ - "}-token", - "}", - 90300, - 90300, - null - ], - [ - "delim-token", - ".", - 90301, - 90301, - { - "value": "." - } - ], - [ - "ident-token", - "page-item", - 90302, - 90310, - { - "value": "page-item" - } - ], - [ - "colon-token", - ":", - 90311, - 90311, - null - ], - [ - "ident-token", - "last-child", - 90312, - 90321, - { - "value": "last-child" - } - ], - [ - "whitespace-token", - " ", - 90322, - 90322, - null - ], - [ - "delim-token", - ".", - 90323, - 90323, - { - "value": "." - } - ], - [ - "ident-token", - "page-link", - 90324, - 90332, - { - "value": "page-link" - } - ], - [ - "{-token", - "{", - 90333, - 90333, - null - ], - [ - "ident-token", - "border-top-right-radius", - 90334, - 90356, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 90357, - 90357, - null - ], - [ - "function-token", - "var(", - 90358, - 90361, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90362, - 90390, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - ")-token", - ")", - 90391, - 90391, - null - ], - [ - "semicolon-token", - ";", - 90392, - 90392, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 90393, - 90418, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 90419, - 90419, - null - ], - [ - "function-token", - "var(", - 90420, - 90423, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90424, - 90452, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - ")-token", - ")", - 90453, - 90453, - null - ], - [ - "}-token", - "}", - 90454, - 90454, - null - ], - [ - "delim-token", - ".", - 90455, - 90455, - { - "value": "." - } - ], - [ - "ident-token", - "pagination-lg", - 90456, - 90468, - { - "value": "pagination-lg" - } - ], - [ - "{-token", - "{", - 90469, - 90469, - null - ], - [ - "ident-token", - "--bs-pagination-padding-x", - 90470, - 90494, - { - "value": "--bs-pagination-padding-x" - } - ], - [ - "colon-token", - ":", - 90495, - 90495, - null - ], - [ - "dimension-token", - "1.5rem", - 90496, - 90501, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90502, - 90502, - null - ], - [ - "ident-token", - "--bs-pagination-padding-y", - 90503, - 90527, - { - "value": "--bs-pagination-padding-y" - } - ], - [ - "colon-token", - ":", - 90528, - 90528, - null - ], - [ - "dimension-token", - "0.75rem", - 90529, - 90535, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90536, - 90536, - null - ], - [ - "ident-token", - "--bs-pagination-font-size", - 90537, - 90561, - { - "value": "--bs-pagination-font-size" - } - ], - [ - "colon-token", - ":", - 90562, - 90562, - null - ], - [ - "dimension-token", - "1.25rem", - 90563, - 90569, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90570, - 90570, - null - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90571, - 90599, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - "colon-token", - ":", - 90600, - 90600, - null - ], - [ - "dimension-token", - "0.5rem", - 90601, - 90606, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 90607, - 90607, - null - ], - [ - "delim-token", - ".", - 90608, - 90608, - { - "value": "." - } - ], - [ - "ident-token", - "pagination-sm", - 90609, - 90621, - { - "value": "pagination-sm" - } - ], - [ - "{-token", - "{", - 90622, - 90622, - null - ], - [ - "ident-token", - "--bs-pagination-padding-x", - 90623, - 90647, - { - "value": "--bs-pagination-padding-x" - } - ], - [ - "colon-token", - ":", - 90648, - 90648, - null - ], - [ - "dimension-token", - "0.5rem", - 90649, - 90654, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90655, - 90655, - null - ], - [ - "ident-token", - "--bs-pagination-padding-y", - 90656, - 90680, - { - "value": "--bs-pagination-padding-y" - } - ], - [ - "colon-token", - ":", - 90681, - 90681, - null - ], - [ - "dimension-token", - "0.25rem", - 90682, - 90688, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90689, - 90689, - null - ], - [ - "ident-token", - "--bs-pagination-font-size", - 90690, - 90714, - { - "value": "--bs-pagination-font-size" - } - ], - [ - "colon-token", - ":", - 90715, - 90715, - null - ], - [ - "dimension-token", - "0.875rem", - 90716, - 90723, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90724, - 90724, - null - ], - [ - "ident-token", - "--bs-pagination-border-radius", - 90725, - 90753, - { - "value": "--bs-pagination-border-radius" - } - ], - [ - "colon-token", - ":", - 90754, - 90754, - null - ], - [ - "dimension-token", - "0.25rem", - 90755, - 90761, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 90762, - 90762, - null - ], - [ - "delim-token", - ".", - 90763, - 90763, - { - "value": "." - } - ], - [ - "ident-token", - "badge", - 90764, - 90768, - { - "value": "badge" - } - ], - [ - "{-token", - "{", - 90769, - 90769, - null - ], - [ - "ident-token", - "--bs-badge-padding-x", - 90770, - 90789, - { - "value": "--bs-badge-padding-x" - } - ], - [ - "colon-token", - ":", - 90790, - 90790, - null - ], - [ - "dimension-token", - "0.65em", - 90791, - 90796, - { - "value": 0.65, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 90797, - 90797, - null - ], - [ - "ident-token", - "--bs-badge-padding-y", - 90798, - 90817, - { - "value": "--bs-badge-padding-y" - } - ], - [ - "colon-token", - ":", - 90818, - 90818, - null - ], - [ - "dimension-token", - "0.35em", - 90819, - 90824, - { - "value": 0.35, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 90825, - 90825, - null - ], - [ - "ident-token", - "--bs-badge-font-size", - 90826, - 90845, - { - "value": "--bs-badge-font-size" - } - ], - [ - "colon-token", - ":", - 90846, - 90846, - null - ], - [ - "dimension-token", - "0.75em", - 90847, - 90852, - { - "value": 0.75, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 90853, - 90853, - null - ], - [ - "ident-token", - "--bs-badge-font-weight", - 90854, - 90875, - { - "value": "--bs-badge-font-weight" - } - ], - [ - "colon-token", - ":", - 90876, - 90876, - null - ], - [ - "number-token", - "700", - 90877, - 90879, - { - "value": 700, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 90880, - 90880, - null - ], - [ - "ident-token", - "--bs-badge-color", - 90881, - 90896, - { - "value": "--bs-badge-color" - } - ], - [ - "colon-token", - ":", - 90897, - 90897, - null - ], - [ - "hash-token", - "#fff", - 90898, - 90901, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 90902, - 90902, - null - ], - [ - "ident-token", - "--bs-badge-border-radius", - 90903, - 90926, - { - "value": "--bs-badge-border-radius" - } - ], - [ - "colon-token", - ":", - 90927, - 90927, - null - ], - [ - "dimension-token", - "0.375rem", - 90928, - 90935, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 90936, - 90936, - null - ], - [ - "ident-token", - "display", - 90937, - 90943, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 90944, - 90944, - null - ], - [ - "ident-token", - "inline-block", - 90945, - 90956, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 90957, - 90957, - null - ], - [ - "ident-token", - "padding", - 90958, - 90964, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 90965, - 90965, - null - ], - [ - "function-token", - "var(", - 90966, - 90969, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-padding-y", - 90970, - 90989, - { - "value": "--bs-badge-padding-y" - } - ], - [ - ")-token", - ")", - 90990, - 90990, - null - ], - [ - "whitespace-token", - " ", - 90991, - 90991, - null - ], - [ - "function-token", - "var(", - 90992, - 90995, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-padding-x", - 90996, - 91015, - { - "value": "--bs-badge-padding-x" - } - ], - [ - ")-token", - ")", - 91016, - 91016, - null - ], - [ - "semicolon-token", - ";", - 91017, - 91017, - null - ], - [ - "ident-token", - "font-size", - 91018, - 91026, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 91027, - 91027, - null - ], - [ - "function-token", - "var(", - 91028, - 91031, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-font-size", - 91032, - 91051, - { - "value": "--bs-badge-font-size" - } - ], - [ - ")-token", - ")", - 91052, - 91052, - null - ], - [ - "semicolon-token", - ";", - 91053, - 91053, - null - ], - [ - "ident-token", - "font-weight", - 91054, - 91064, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 91065, - 91065, - null - ], - [ - "function-token", - "var(", - 91066, - 91069, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-font-weight", - 91070, - 91091, - { - "value": "--bs-badge-font-weight" - } - ], - [ - ")-token", - ")", - 91092, - 91092, - null - ], - [ - "semicolon-token", - ";", - 91093, - 91093, - null - ], - [ - "ident-token", - "line-height", - 91094, - 91104, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 91105, - 91105, - null - ], - [ - "number-token", - "1", - 91106, - 91106, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 91107, - 91107, - null - ], - [ - "ident-token", - "color", - 91108, - 91112, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 91113, - 91113, - null - ], - [ - "function-token", - "var(", - 91114, - 91117, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-color", - 91118, - 91133, - { - "value": "--bs-badge-color" - } - ], - [ - ")-token", - ")", - 91134, - 91134, - null - ], - [ - "semicolon-token", - ";", - 91135, - 91135, - null - ], - [ - "ident-token", - "text-align", - 91136, - 91145, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 91146, - 91146, - null - ], - [ - "ident-token", - "center", - 91147, - 91152, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 91153, - 91153, - null - ], - [ - "ident-token", - "white-space", - 91154, - 91164, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 91165, - 91165, - null - ], - [ - "ident-token", - "nowrap", - 91166, - 91171, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 91172, - 91172, - null - ], - [ - "ident-token", - "vertical-align", - 91173, - 91186, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 91187, - 91187, - null - ], - [ - "ident-token", - "baseline", - 91188, - 91195, - { - "value": "baseline" - } - ], - [ - "semicolon-token", - ";", - 91196, - 91196, - null - ], - [ - "ident-token", - "border-radius", - 91197, - 91209, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 91210, - 91210, - null - ], - [ - "function-token", - "var(", - 91211, - 91214, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-badge-border-radius", - 91215, - 91238, - { - "value": "--bs-badge-border-radius" - } - ], - [ - ")-token", - ")", - 91239, - 91239, - null - ], - [ - "}-token", - "}", - 91240, - 91240, - null - ], - [ - "delim-token", - ".", - 91241, - 91241, - { - "value": "." - } - ], - [ - "ident-token", - "badge", - 91242, - 91246, - { - "value": "badge" - } - ], - [ - "colon-token", - ":", - 91247, - 91247, - null - ], - [ - "ident-token", - "empty", - 91248, - 91252, - { - "value": "empty" - } - ], - [ - "{-token", - "{", - 91253, - 91253, - null - ], - [ - "ident-token", - "display", - 91254, - 91260, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 91261, - 91261, - null - ], - [ - "ident-token", - "none", - 91262, - 91265, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 91266, - 91266, - null - ], - [ - "delim-token", - ".", - 91267, - 91267, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 91268, - 91270, - { - "value": "btn" - } - ], - [ - "whitespace-token", - " ", - 91271, - 91271, - null - ], - [ - "delim-token", - ".", - 91272, - 91272, - { - "value": "." - } - ], - [ - "ident-token", - "badge", - 91273, - 91277, - { - "value": "badge" - } - ], - [ - "{-token", - "{", - 91278, - 91278, - null - ], - [ - "ident-token", - "position", - 91279, - 91286, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 91287, - 91287, - null - ], - [ - "ident-token", - "relative", - 91288, - 91295, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 91296, - 91296, - null - ], - [ - "ident-token", - "top", - 91297, - 91299, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 91300, - 91300, - null - ], - [ - "dimension-token", - "-1px", - 91301, - 91304, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 91305, - 91305, - null - ], - [ - "delim-token", - ".", - 91306, - 91306, - { - "value": "." - } - ], - [ - "ident-token", - "alert", - 91307, - 91311, - { - "value": "alert" - } - ], - [ - "{-token", - "{", - 91312, - 91312, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 91313, - 91325, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 91326, - 91326, - null - ], - [ - "ident-token", - "transparent", - 91327, - 91337, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 91338, - 91338, - null - ], - [ - "ident-token", - "--bs-alert-padding-x", - 91339, - 91358, - { - "value": "--bs-alert-padding-x" - } - ], - [ - "colon-token", - ":", - 91359, - 91359, - null - ], - [ - "dimension-token", - "1rem", - 91360, - 91363, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 91364, - 91364, - null - ], - [ - "ident-token", - "--bs-alert-padding-y", - 91365, - 91384, - { - "value": "--bs-alert-padding-y" - } - ], - [ - "colon-token", - ":", - 91385, - 91385, - null - ], - [ - "dimension-token", - "1rem", - 91386, - 91389, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 91390, - 91390, - null - ], - [ - "ident-token", - "--bs-alert-margin-bottom", - 91391, - 91414, - { - "value": "--bs-alert-margin-bottom" - } - ], - [ - "colon-token", - ":", - 91415, - 91415, - null - ], - [ - "dimension-token", - "1rem", - 91416, - 91419, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 91420, - 91420, - null - ], - [ - "ident-token", - "--bs-alert-color", - 91421, - 91436, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 91437, - 91437, - null - ], - [ - "ident-token", - "inherit", - 91438, - 91444, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 91445, - 91445, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 91446, - 91468, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 91469, - 91469, - null - ], - [ - "ident-token", - "transparent", - 91470, - 91480, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 91481, - 91481, - null - ], - [ - "ident-token", - "--bs-alert-border", - 91482, - 91498, - { - "value": "--bs-alert-border" - } - ], - [ - "colon-token", - ":", - 91499, - 91499, - null - ], - [ - "dimension-token", - "1px", - 91500, - 91502, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 91503, - 91503, - null - ], - [ - "ident-token", - "solid", - 91504, - 91508, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 91509, - 91509, - null - ], - [ - "function-token", - "var(", - 91510, - 91513, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-border-color", - 91514, - 91536, - { - "value": "--bs-alert-border-color" - } - ], - [ - ")-token", - ")", - 91537, - 91537, - null - ], - [ - "semicolon-token", - ";", - 91538, - 91538, - null - ], - [ - "ident-token", - "--bs-alert-border-radius", - 91539, - 91562, - { - "value": "--bs-alert-border-radius" - } - ], - [ - "colon-token", - ":", - 91563, - 91563, - null - ], - [ - "dimension-token", - "0.375rem", - 91564, - 91571, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 91572, - 91572, - null - ], - [ - "ident-token", - "position", - 91573, - 91580, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 91581, - 91581, - null - ], - [ - "ident-token", - "relative", - 91582, - 91589, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 91590, - 91590, - null - ], - [ - "ident-token", - "padding", - 91591, - 91597, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 91598, - 91598, - null - ], - [ - "function-token", - "var(", - 91599, - 91602, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-padding-y", - 91603, - 91622, - { - "value": "--bs-alert-padding-y" - } - ], - [ - ")-token", - ")", - 91623, - 91623, - null - ], - [ - "whitespace-token", - " ", - 91624, - 91624, - null - ], - [ - "function-token", - "var(", - 91625, - 91628, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-padding-x", - 91629, - 91648, - { - "value": "--bs-alert-padding-x" - } - ], - [ - ")-token", - ")", - 91649, - 91649, - null - ], - [ - "semicolon-token", - ";", - 91650, - 91650, - null - ], - [ - "ident-token", - "margin-bottom", - 91651, - 91663, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 91664, - 91664, - null - ], - [ - "function-token", - "var(", - 91665, - 91668, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-margin-bottom", - 91669, - 91692, - { - "value": "--bs-alert-margin-bottom" - } - ], - [ - ")-token", - ")", - 91693, - 91693, - null - ], - [ - "semicolon-token", - ";", - 91694, - 91694, - null - ], - [ - "ident-token", - "color", - 91695, - 91699, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 91700, - 91700, - null - ], - [ - "function-token", - "var(", - 91701, - 91704, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-color", - 91705, - 91720, - { - "value": "--bs-alert-color" - } - ], - [ - ")-token", - ")", - 91721, - 91721, - null - ], - [ - "semicolon-token", - ";", - 91722, - 91722, - null - ], - [ - "ident-token", - "background-color", - 91723, - 91738, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 91739, - 91739, - null - ], - [ - "function-token", - "var(", - 91740, - 91743, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-bg", - 91744, - 91756, - { - "value": "--bs-alert-bg" - } - ], - [ - ")-token", - ")", - 91757, - 91757, - null - ], - [ - "semicolon-token", - ";", - 91758, - 91758, - null - ], - [ - "ident-token", - "border", - 91759, - 91764, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 91765, - 91765, - null - ], - [ - "function-token", - "var(", - 91766, - 91769, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-border", - 91770, - 91786, - { - "value": "--bs-alert-border" - } - ], - [ - ")-token", - ")", - 91787, - 91787, - null - ], - [ - "semicolon-token", - ";", - 91788, - 91788, - null - ], - [ - "ident-token", - "border-radius", - 91789, - 91801, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 91802, - 91802, - null - ], - [ - "function-token", - "var(", - 91803, - 91806, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-alert-border-radius", - 91807, - 91830, - { - "value": "--bs-alert-border-radius" - } - ], - [ - ")-token", - ")", - 91831, - 91831, - null - ], - [ - "}-token", - "}", - 91832, - 91832, - null - ], - [ - "delim-token", - ".", - 91833, - 91833, - { - "value": "." - } - ], - [ - "ident-token", - "alert-heading", - 91834, - 91846, - { - "value": "alert-heading" - } - ], - [ - "{-token", - "{", - 91847, - 91847, - null - ], - [ - "ident-token", - "color", - 91848, - 91852, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 91853, - 91853, - null - ], - [ - "ident-token", - "inherit", - 91854, - 91860, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 91861, - 91861, - null - ], - [ - "delim-token", - ".", - 91862, - 91862, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 91863, - 91872, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 91873, - 91873, - null - ], - [ - "ident-token", - "font-weight", - 91874, - 91884, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 91885, - 91885, - null - ], - [ - "number-token", - "700", - 91886, - 91888, - { - "value": 700, - "type": "integer" - } - ], - [ - "}-token", - "}", - 91889, - 91889, - null - ], - [ - "delim-token", - ".", - 91890, - 91890, - { - "value": "." - } - ], - [ - "ident-token", - "alert-dismissible", - 91891, - 91907, - { - "value": "alert-dismissible" - } - ], - [ - "{-token", - "{", - 91908, - 91908, - null - ], - [ - "ident-token", - "padding-right", - 91909, - 91921, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 91922, - 91922, - null - ], - [ - "dimension-token", - "3rem", - 91923, - 91926, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 91927, - 91927, - null - ], - [ - "delim-token", - ".", - 91928, - 91928, - { - "value": "." - } - ], - [ - "ident-token", - "alert-dismissible", - 91929, - 91945, - { - "value": "alert-dismissible" - } - ], - [ - "whitespace-token", - " ", - 91946, - 91946, - null - ], - [ - "delim-token", - ".", - 91947, - 91947, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 91948, - 91956, - { - "value": "btn-close" - } - ], - [ - "{-token", - "{", - 91957, - 91957, - null - ], - [ - "ident-token", - "position", - 91958, - 91965, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 91966, - 91966, - null - ], - [ - "ident-token", - "absolute", - 91967, - 91974, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 91975, - 91975, - null - ], - [ - "ident-token", - "top", - 91976, - 91978, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 91979, - 91979, - null - ], - [ - "number-token", - "0", - 91980, - 91980, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 91981, - 91981, - null - ], - [ - "ident-token", - "right", - 91982, - 91986, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 91987, - 91987, - null - ], - [ - "number-token", - "0", - 91988, - 91988, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 91989, - 91989, - null - ], - [ - "ident-token", - "z-index", - 91990, - 91996, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 91997, - 91997, - null - ], - [ - "number-token", - "2", - 91998, - 91998, - { - "value": 2, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 91999, - 91999, - null - ], - [ - "ident-token", - "padding", - 92000, - 92006, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 92007, - 92007, - null - ], - [ - "dimension-token", - "1.25rem", - 92008, - 92014, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 92015, - 92015, - null - ], - [ - "dimension-token", - "1rem", - 92016, - 92019, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 92020, - 92020, - null - ], - [ - "delim-token", - ".", - 92021, - 92021, - { - "value": "." - } - ], - [ - "ident-token", - "alert-primary", - 92022, - 92034, - { - "value": "alert-primary" - } - ], - [ - "{-token", - "{", - 92035, - 92035, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92036, - 92051, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92052, - 92052, - null - ], - [ - "hash-token", - "#084298", - 92053, - 92059, - { - "value": "084298", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92060, - 92060, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92061, - 92073, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92074, - 92074, - null - ], - [ - "hash-token", - "#cfe2ff", - 92075, - 92081, - { - "value": "cfe2ff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92082, - 92082, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92083, - 92105, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92106, - 92106, - null - ], - [ - "hash-token", - "#b6d4fe", - 92107, - 92113, - { - "value": "b6d4fe", - "type": "id" - } - ], - [ - "}-token", - "}", - 92114, - 92114, - null - ], - [ - "delim-token", - ".", - 92115, - 92115, - { - "value": "." - } - ], - [ - "ident-token", - "alert-primary", - 92116, - 92128, - { - "value": "alert-primary" - } - ], - [ - "whitespace-token", - " ", - 92129, - 92129, - null - ], - [ - "delim-token", - ".", - 92130, - 92130, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92131, - 92140, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92141, - 92141, - null - ], - [ - "ident-token", - "color", - 92142, - 92146, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92147, - 92147, - null - ], - [ - "hash-token", - "#06357a", - 92148, - 92154, - { - "value": "06357a", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92155, - 92155, - null - ], - [ - "delim-token", - ".", - 92156, - 92156, - { - "value": "." - } - ], - [ - "ident-token", - "alert-secondary", - 92157, - 92171, - { - "value": "alert-secondary" - } - ], - [ - "{-token", - "{", - 92172, - 92172, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92173, - 92188, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92189, - 92189, - null - ], - [ - "hash-token", - "#41464b", - 92190, - 92196, - { - "value": "41464b", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92197, - 92197, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92198, - 92210, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92211, - 92211, - null - ], - [ - "hash-token", - "#e2e3e5", - 92212, - 92218, - { - "value": "e2e3e5", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92219, - 92219, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92220, - 92242, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92243, - 92243, - null - ], - [ - "hash-token", - "#d3d6d8", - 92244, - 92250, - { - "value": "d3d6d8", - "type": "id" - } - ], - [ - "}-token", - "}", - 92251, - 92251, - null - ], - [ - "delim-token", - ".", - 92252, - 92252, - { - "value": "." - } - ], - [ - "ident-token", - "alert-secondary", - 92253, - 92267, - { - "value": "alert-secondary" - } - ], - [ - "whitespace-token", - " ", - 92268, - 92268, - null - ], - [ - "delim-token", - ".", - 92269, - 92269, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92270, - 92279, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92280, - 92280, - null - ], - [ - "ident-token", - "color", - 92281, - 92285, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92286, - 92286, - null - ], - [ - "hash-token", - "#34383c", - 92287, - 92293, - { - "value": "34383c", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92294, - 92294, - null - ], - [ - "delim-token", - ".", - 92295, - 92295, - { - "value": "." - } - ], - [ - "ident-token", - "alert-success", - 92296, - 92308, - { - "value": "alert-success" - } - ], - [ - "{-token", - "{", - 92309, - 92309, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92310, - 92325, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92326, - 92326, - null - ], - [ - "hash-token", - "#0f5132", - 92327, - 92333, - { - "value": "0f5132", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92334, - 92334, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92335, - 92347, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92348, - 92348, - null - ], - [ - "hash-token", - "#d1e7dd", - 92349, - 92355, - { - "value": "d1e7dd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92356, - 92356, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92357, - 92379, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92380, - 92380, - null - ], - [ - "hash-token", - "#badbcc", - 92381, - 92387, - { - "value": "badbcc", - "type": "id" - } - ], - [ - "}-token", - "}", - 92388, - 92388, - null - ], - [ - "delim-token", - ".", - 92389, - 92389, - { - "value": "." - } - ], - [ - "ident-token", - "alert-success", - 92390, - 92402, - { - "value": "alert-success" - } - ], - [ - "whitespace-token", - " ", - 92403, - 92403, - null - ], - [ - "delim-token", - ".", - 92404, - 92404, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92405, - 92414, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92415, - 92415, - null - ], - [ - "ident-token", - "color", - 92416, - 92420, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92421, - 92421, - null - ], - [ - "hash-token", - "#0c4128", - 92422, - 92428, - { - "value": "0c4128", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92429, - 92429, - null - ], - [ - "delim-token", - ".", - 92430, - 92430, - { - "value": "." - } - ], - [ - "ident-token", - "alert-info", - 92431, - 92440, - { - "value": "alert-info" - } - ], - [ - "{-token", - "{", - 92441, - 92441, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92442, - 92457, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92458, - 92458, - null - ], - [ - "hash-token", - "#055160", - 92459, - 92465, - { - "value": "055160", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92466, - 92466, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92467, - 92479, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92480, - 92480, - null - ], - [ - "hash-token", - "#cff4fc", - 92481, - 92487, - { - "value": "cff4fc", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92488, - 92488, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92489, - 92511, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92512, - 92512, - null - ], - [ - "hash-token", - "#b6effb", - 92513, - 92519, - { - "value": "b6effb", - "type": "id" - } - ], - [ - "}-token", - "}", - 92520, - 92520, - null - ], - [ - "delim-token", - ".", - 92521, - 92521, - { - "value": "." - } - ], - [ - "ident-token", - "alert-info", - 92522, - 92531, - { - "value": "alert-info" - } - ], - [ - "whitespace-token", - " ", - 92532, - 92532, - null - ], - [ - "delim-token", - ".", - 92533, - 92533, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92534, - 92543, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92544, - 92544, - null - ], - [ - "ident-token", - "color", - 92545, - 92549, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92550, - 92550, - null - ], - [ - "hash-token", - "#04414d", - 92551, - 92557, - { - "value": "04414d", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92558, - 92558, - null - ], - [ - "delim-token", - ".", - 92559, - 92559, - { - "value": "." - } - ], - [ - "ident-token", - "alert-warning", - 92560, - 92572, - { - "value": "alert-warning" - } - ], - [ - "{-token", - "{", - 92573, - 92573, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92574, - 92589, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92590, - 92590, - null - ], - [ - "hash-token", - "#664d03", - 92591, - 92597, - { - "value": "664d03", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92598, - 92598, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92599, - 92611, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92612, - 92612, - null - ], - [ - "hash-token", - "#fff3cd", - 92613, - 92619, - { - "value": "fff3cd", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92620, - 92620, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92621, - 92643, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92644, - 92644, - null - ], - [ - "hash-token", - "#ffecb5", - 92645, - 92651, - { - "value": "ffecb5", - "type": "id" - } - ], - [ - "}-token", - "}", - 92652, - 92652, - null - ], - [ - "delim-token", - ".", - 92653, - 92653, - { - "value": "." - } - ], - [ - "ident-token", - "alert-warning", - 92654, - 92666, - { - "value": "alert-warning" - } - ], - [ - "whitespace-token", - " ", - 92667, - 92667, - null - ], - [ - "delim-token", - ".", - 92668, - 92668, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92669, - 92678, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92679, - 92679, - null - ], - [ - "ident-token", - "color", - 92680, - 92684, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92685, - 92685, - null - ], - [ - "hash-token", - "#523e02", - 92686, - 92692, - { - "value": "523e02", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92693, - 92693, - null - ], - [ - "delim-token", - ".", - 92694, - 92694, - { - "value": "." - } - ], - [ - "ident-token", - "alert-danger", - 92695, - 92706, - { - "value": "alert-danger" - } - ], - [ - "{-token", - "{", - 92707, - 92707, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92708, - 92723, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92724, - 92724, - null - ], - [ - "hash-token", - "#842029", - 92725, - 92731, - { - "value": "842029", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92732, - 92732, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92733, - 92745, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92746, - 92746, - null - ], - [ - "hash-token", - "#f8d7da", - 92747, - 92753, - { - "value": "f8d7da", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92754, - 92754, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92755, - 92777, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92778, - 92778, - null - ], - [ - "hash-token", - "#f5c2c7", - 92779, - 92785, - { - "value": "f5c2c7", - "type": "id" - } - ], - [ - "}-token", - "}", - 92786, - 92786, - null - ], - [ - "delim-token", - ".", - 92787, - 92787, - { - "value": "." - } - ], - [ - "ident-token", - "alert-danger", - 92788, - 92799, - { - "value": "alert-danger" - } - ], - [ - "whitespace-token", - " ", - 92800, - 92800, - null - ], - [ - "delim-token", - ".", - 92801, - 92801, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92802, - 92811, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92812, - 92812, - null - ], - [ - "ident-token", - "color", - 92813, - 92817, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92818, - 92818, - null - ], - [ - "hash-token", - "#6a1a21", - 92819, - 92825, - { - "value": "6a1a21", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92826, - 92826, - null - ], - [ - "delim-token", - ".", - 92827, - 92827, - { - "value": "." - } - ], - [ - "ident-token", - "alert-light", - 92828, - 92838, - { - "value": "alert-light" - } - ], - [ - "{-token", - "{", - 92839, - 92839, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92840, - 92855, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92856, - 92856, - null - ], - [ - "hash-token", - "#636464", - 92857, - 92863, - { - "value": "636464", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92864, - 92864, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92865, - 92877, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 92878, - 92878, - null - ], - [ - "hash-token", - "#fefefe", - 92879, - 92885, - { - "value": "fefefe", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 92886, - 92886, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 92887, - 92909, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 92910, - 92910, - null - ], - [ - "hash-token", - "#fdfdfe", - 92911, - 92917, - { - "value": "fdfdfe", - "type": "id" - } - ], - [ - "}-token", - "}", - 92918, - 92918, - null - ], - [ - "delim-token", - ".", - 92919, - 92919, - { - "value": "." - } - ], - [ - "ident-token", - "alert-light", - 92920, - 92930, - { - "value": "alert-light" - } - ], - [ - "whitespace-token", - " ", - 92931, - 92931, - null - ], - [ - "delim-token", - ".", - 92932, - 92932, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 92933, - 92942, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 92943, - 92943, - null - ], - [ - "ident-token", - "color", - 92944, - 92948, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 92949, - 92949, - null - ], - [ - "hash-token", - "#4f5050", - 92950, - 92956, - { - "value": "4f5050", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 92957, - 92957, - null - ], - [ - "delim-token", - ".", - 92958, - 92958, - { - "value": "." - } - ], - [ - "ident-token", - "alert-dark", - 92959, - 92968, - { - "value": "alert-dark" - } - ], - [ - "{-token", - "{", - 92969, - 92969, - null - ], - [ - "ident-token", - "--bs-alert-color", - 92970, - 92985, - { - "value": "--bs-alert-color" - } - ], - [ - "colon-token", - ":", - 92986, - 92986, - null - ], - [ - "hash-token", - "#141619", - 92987, - 92993, - { - "value": "141619", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 92994, - 92994, - null - ], - [ - "ident-token", - "--bs-alert-bg", - 92995, - 93007, - { - "value": "--bs-alert-bg" - } - ], - [ - "colon-token", - ":", - 93008, - 93008, - null - ], - [ - "hash-token", - "#d3d3d4", - 93009, - 93015, - { - "value": "d3d3d4", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 93016, - 93016, - null - ], - [ - "ident-token", - "--bs-alert-border-color", - 93017, - 93039, - { - "value": "--bs-alert-border-color" - } - ], - [ - "colon-token", - ":", - 93040, - 93040, - null - ], - [ - "hash-token", - "#bcbebf", - 93041, - 93047, - { - "value": "bcbebf", - "type": "id" - } - ], - [ - "}-token", - "}", - 93048, - 93048, - null - ], - [ - "delim-token", - ".", - 93049, - 93049, - { - "value": "." - } - ], - [ - "ident-token", - "alert-dark", - 93050, - 93059, - { - "value": "alert-dark" - } - ], - [ - "whitespace-token", - " ", - 93060, - 93060, - null - ], - [ - "delim-token", - ".", - 93061, - 93061, - { - "value": "." - } - ], - [ - "ident-token", - "alert-link", - 93062, - 93071, - { - "value": "alert-link" - } - ], - [ - "{-token", - "{", - 93072, - 93072, - null - ], - [ - "ident-token", - "color", - 93073, - 93077, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 93078, - 93078, - null - ], - [ - "hash-token", - "#101214", - 93079, - 93085, - { - "value": "101214", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 93086, - 93086, - null - ], - [ - "at-keyword-token", - "@-webkit-keyframes", - 93087, - 93104, - { - "value": "-webkit-keyframes" - } - ], - [ - "whitespace-token", - " ", - 93105, - 93105, - null - ], - [ - "ident-token", - "progress-bar-stripes", - 93106, - 93125, - { - "value": "progress-bar-stripes" - } - ], - [ - "{-token", - "{", - 93126, - 93126, - null - ], - [ - "percentage-token", - "0%", - 93127, - 93128, - { - "value": 0 - } - ], - [ - "{-token", - "{", - 93129, - 93129, - null - ], - [ - "ident-token", - "background-position-x", - 93130, - 93150, - { - "value": "background-position-x" - } - ], - [ - "colon-token", - ":", - 93151, - 93151, - null - ], - [ - "dimension-token", - "1rem", - 93152, - 93155, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 93156, - 93156, - null - ], - [ - "}-token", - "}", - 93157, - 93157, - null - ], - [ - "at-keyword-token", - "@keyframes", - 93158, - 93167, - { - "value": "keyframes" - } - ], - [ - "whitespace-token", - " ", - 93168, - 93168, - null - ], - [ - "ident-token", - "progress-bar-stripes", - 93169, - 93188, - { - "value": "progress-bar-stripes" - } - ], - [ - "{-token", - "{", - 93189, - 93189, - null - ], - [ - "percentage-token", - "0%", - 93190, - 93191, - { - "value": 0 - } - ], - [ - "{-token", - "{", - 93192, - 93192, - null - ], - [ - "ident-token", - "background-position-x", - 93193, - 93213, - { - "value": "background-position-x" - } - ], - [ - "colon-token", - ":", - 93214, - 93214, - null - ], - [ - "dimension-token", - "1rem", - 93215, - 93218, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 93219, - 93219, - null - ], - [ - "}-token", - "}", - 93220, - 93220, - null - ], - [ - "delim-token", - ".", - 93221, - 93221, - { - "value": "." - } - ], - [ - "ident-token", - "progress", - 93222, - 93229, - { - "value": "progress" - } - ], - [ - "{-token", - "{", - 93230, - 93230, - null - ], - [ - "ident-token", - "--bs-progress-height", - 93231, - 93250, - { - "value": "--bs-progress-height" - } - ], - [ - "colon-token", - ":", - 93251, - 93251, - null - ], - [ - "dimension-token", - "1rem", - 93252, - 93255, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 93256, - 93256, - null - ], - [ - "ident-token", - "--bs-progress-font-size", - 93257, - 93279, - { - "value": "--bs-progress-font-size" - } - ], - [ - "colon-token", - ":", - 93280, - 93280, - null - ], - [ - "dimension-token", - "0.75rem", - 93281, - 93287, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 93288, - 93288, - null - ], - [ - "ident-token", - "--bs-progress-bg", - 93289, - 93304, - { - "value": "--bs-progress-bg" - } - ], - [ - "colon-token", - ":", - 93305, - 93305, - null - ], - [ - "hash-token", - "#e9ecef", - 93306, - 93312, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 93313, - 93313, - null - ], - [ - "ident-token", - "--bs-progress-border-radius", - 93314, - 93340, - { - "value": "--bs-progress-border-radius" - } - ], - [ - "colon-token", - ":", - 93341, - 93341, - null - ], - [ - "dimension-token", - "0.375rem", - 93342, - 93349, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 93350, - 93350, - null - ], - [ - "ident-token", - "--bs-progress-box-shadow", - 93351, - 93374, - { - "value": "--bs-progress-box-shadow" - } - ], - [ - "colon-token", - ":", - 93375, - 93375, - null - ], - [ - "ident-token", - "inset", - 93376, - 93380, - { - "value": "inset" - } - ], - [ - "whitespace-token", - " ", - 93381, - 93381, - null - ], - [ - "number-token", - "0", - 93382, - 93382, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 93383, - 93383, - null - ], - [ - "dimension-token", - "1px", - 93384, - 93386, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 93387, - 93387, - null - ], - [ - "dimension-token", - "2px", - 93388, - 93390, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 93391, - 93391, - null - ], - [ - "function-token", - "rgba(", - 93392, - 93396, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 93397, - 93397, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 93398, - 93398, - null - ], - [ - "whitespace-token", - " ", - 93399, - 93399, - null - ], - [ - "number-token", - "0", - 93400, - 93400, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 93401, - 93401, - null - ], - [ - "whitespace-token", - " ", - 93402, - 93402, - null - ], - [ - "number-token", - "0", - 93403, - 93403, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 93404, - 93404, - null - ], - [ - "whitespace-token", - " ", - 93405, - 93405, - null - ], - [ - "number-token", - "0.075", - 93406, - 93410, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 93411, - 93411, - null - ], - [ - "semicolon-token", - ";", - 93412, - 93412, - null - ], - [ - "ident-token", - "--bs-progress-bar-color", - 93413, - 93435, - { - "value": "--bs-progress-bar-color" - } - ], - [ - "colon-token", - ":", - 93436, - 93436, - null - ], - [ - "hash-token", - "#fff", - 93437, - 93440, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 93441, - 93441, - null - ], - [ - "ident-token", - "--bs-progress-bar-bg", - 93442, - 93461, - { - "value": "--bs-progress-bar-bg" - } - ], - [ - "colon-token", - ":", - 93462, - 93462, - null - ], - [ - "hash-token", - "#0d6efd", - 93463, - 93469, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 93470, - 93470, - null - ], - [ - "ident-token", - "--bs-progress-bar-transition", - 93471, - 93498, - { - "value": "--bs-progress-bar-transition" - } - ], - [ - "colon-token", - ":", - 93499, - 93499, - null - ], - [ - "ident-token", - "width", - 93500, - 93504, - { - "value": "width" - } - ], - [ - "whitespace-token", - " ", - 93505, - 93505, - null - ], - [ - "dimension-token", - "0.6s", - 93506, - 93509, - { - "value": 0.6, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 93510, - 93510, - null - ], - [ - "ident-token", - "ease", - 93511, - 93514, - { - "value": "ease" - } - ], - [ - "semicolon-token", - ";", - 93515, - 93515, - null - ], - [ - "ident-token", - "display", - 93516, - 93522, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 93523, - 93523, - null - ], - [ - "ident-token", - "flex", - 93524, - 93527, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 93528, - 93528, - null - ], - [ - "ident-token", - "height", - 93529, - 93534, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 93535, - 93535, - null - ], - [ - "function-token", - "var(", - 93536, - 93539, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-height", - 93540, - 93559, - { - "value": "--bs-progress-height" - } - ], - [ - ")-token", - ")", - 93560, - 93560, - null - ], - [ - "semicolon-token", - ";", - 93561, - 93561, - null - ], - [ - "ident-token", - "overflow", - 93562, - 93569, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 93570, - 93570, - null - ], - [ - "ident-token", - "hidden", - 93571, - 93576, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 93577, - 93577, - null - ], - [ - "ident-token", - "font-size", - 93578, - 93586, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 93587, - 93587, - null - ], - [ - "function-token", - "var(", - 93588, - 93591, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-font-size", - 93592, - 93614, - { - "value": "--bs-progress-font-size" - } - ], - [ - ")-token", - ")", - 93615, - 93615, - null - ], - [ - "semicolon-token", - ";", - 93616, - 93616, - null - ], - [ - "ident-token", - "background-color", - 93617, - 93632, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 93633, - 93633, - null - ], - [ - "function-token", - "var(", - 93634, - 93637, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-bg", - 93638, - 93653, - { - "value": "--bs-progress-bg" - } - ], - [ - ")-token", - ")", - 93654, - 93654, - null - ], - [ - "semicolon-token", - ";", - 93655, - 93655, - null - ], - [ - "ident-token", - "border-radius", - 93656, - 93668, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 93669, - 93669, - null - ], - [ - "function-token", - "var(", - 93670, - 93673, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-border-radius", - 93674, - 93700, - { - "value": "--bs-progress-border-radius" - } - ], - [ - ")-token", - ")", - 93701, - 93701, - null - ], - [ - "}-token", - "}", - 93702, - 93702, - null - ], - [ - "delim-token", - ".", - 93703, - 93703, - { - "value": "." - } - ], - [ - "ident-token", - "progress-bar", - 93704, - 93715, - { - "value": "progress-bar" - } - ], - [ - "{-token", - "{", - 93716, - 93716, - null - ], - [ - "ident-token", - "display", - 93717, - 93723, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 93724, - 93724, - null - ], - [ - "ident-token", - "flex", - 93725, - 93728, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 93729, - 93729, - null - ], - [ - "ident-token", - "flex-direction", - 93730, - 93743, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 93744, - 93744, - null - ], - [ - "ident-token", - "column", - 93745, - 93750, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 93751, - 93751, - null - ], - [ - "ident-token", - "justify-content", - 93752, - 93766, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 93767, - 93767, - null - ], - [ - "ident-token", - "center", - 93768, - 93773, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 93774, - 93774, - null - ], - [ - "ident-token", - "overflow", - 93775, - 93782, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 93783, - 93783, - null - ], - [ - "ident-token", - "hidden", - 93784, - 93789, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 93790, - 93790, - null - ], - [ - "ident-token", - "color", - 93791, - 93795, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 93796, - 93796, - null - ], - [ - "function-token", - "var(", - 93797, - 93800, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-bar-color", - 93801, - 93823, - { - "value": "--bs-progress-bar-color" - } - ], - [ - ")-token", - ")", - 93824, - 93824, - null - ], - [ - "semicolon-token", - ";", - 93825, - 93825, - null - ], - [ - "ident-token", - "text-align", - 93826, - 93835, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 93836, - 93836, - null - ], - [ - "ident-token", - "center", - 93837, - 93842, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 93843, - 93843, - null - ], - [ - "ident-token", - "white-space", - 93844, - 93854, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 93855, - 93855, - null - ], - [ - "ident-token", - "nowrap", - 93856, - 93861, - { - "value": "nowrap" - } - ], - [ - "semicolon-token", - ";", - 93862, - 93862, - null - ], - [ - "ident-token", - "background-color", - 93863, - 93878, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 93879, - 93879, - null - ], - [ - "function-token", - "var(", - 93880, - 93883, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-bar-bg", - 93884, - 93903, - { - "value": "--bs-progress-bar-bg" - } - ], - [ - ")-token", - ")", - 93904, - 93904, - null - ], - [ - "semicolon-token", - ";", - 93905, - 93905, - null - ], - [ - "ident-token", - "transition", - 93906, - 93915, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 93916, - 93916, - null - ], - [ - "function-token", - "var(", - 93917, - 93920, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-bar-transition", - 93921, - 93948, - { - "value": "--bs-progress-bar-transition" - } - ], - [ - ")-token", - ")", - 93949, - 93949, - null - ], - [ - "}-token", - "}", - 93950, - 93950, - null - ], - [ - "at-keyword-token", - "@media", - 93951, - 93956, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 93957, - 93957, - null - ], - [ - "(-token", - "(", - 93958, - 93958, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 93959, - 93980, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 93981, - 93981, - null - ], - [ - "ident-token", - "reduce", - 93982, - 93987, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 93988, - 93988, - null - ], - [ - "{-token", - "{", - 93989, - 93989, - null - ], - [ - "delim-token", - ".", - 93990, - 93990, - { - "value": "." - } - ], - [ - "ident-token", - "progress-bar", - 93991, - 94002, - { - "value": "progress-bar" - } - ], - [ - "{-token", - "{", - 94003, - 94003, - null - ], - [ - "ident-token", - "transition", - 94004, - 94013, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 94014, - 94014, - null - ], - [ - "ident-token", - "none", - 94015, - 94018, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 94019, - 94019, - null - ], - [ - "}-token", - "}", - 94020, - 94020, - null - ], - [ - "delim-token", - ".", - 94021, - 94021, - { - "value": "." - } - ], - [ - "ident-token", - "progress-bar-striped", - 94022, - 94041, - { - "value": "progress-bar-striped" - } - ], - [ - "{-token", - "{", - 94042, - 94042, - null - ], - [ - "ident-token", - "background-image", - 94043, - 94058, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 94059, - 94059, - null - ], - [ - "function-token", - "linear-gradient(", - 94060, - 94075, - { - "value": "linear-gradient" - } - ], - [ - "dimension-token", - "45deg", - 94076, - 94080, - { - "value": 45, - "type": "integer", - "unit": "deg" - } - ], - [ - "comma-token", - ",", - 94081, - 94081, - null - ], - [ - "function-token", - "rgba(", - 94082, - 94086, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 94087, - 94089, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94090, - 94090, - null - ], - [ - "number-token", - "255", - 94091, - 94093, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94094, - 94094, - null - ], - [ - "number-token", - "255", - 94095, - 94097, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94098, - 94098, - null - ], - [ - "number-token", - ".15", - 94099, - 94101, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 94102, - 94102, - null - ], - [ - "whitespace-token", - " ", - 94103, - 94103, - null - ], - [ - "percentage-token", - "25%", - 94104, - 94106, - { - "value": 25 - } - ], - [ - "comma-token", - ",", - 94107, - 94107, - null - ], - [ - "ident-token", - "transparent", - 94108, - 94118, - { - "value": "transparent" - } - ], - [ - "whitespace-token", - " ", - 94119, - 94119, - null - ], - [ - "percentage-token", - "25%", - 94120, - 94122, - { - "value": 25 - } - ], - [ - "comma-token", - ",", - 94123, - 94123, - null - ], - [ - "ident-token", - "transparent", - 94124, - 94134, - { - "value": "transparent" - } - ], - [ - "whitespace-token", - " ", - 94135, - 94135, - null - ], - [ - "percentage-token", - "50%", - 94136, - 94138, - { - "value": 50 - } - ], - [ - "comma-token", - ",", - 94139, - 94139, - null - ], - [ - "function-token", - "rgba(", - 94140, - 94144, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 94145, - 94147, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94148, - 94148, - null - ], - [ - "number-token", - "255", - 94149, - 94151, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94152, - 94152, - null - ], - [ - "number-token", - "255", - 94153, - 94155, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94156, - 94156, - null - ], - [ - "number-token", - ".15", - 94157, - 94159, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 94160, - 94160, - null - ], - [ - "whitespace-token", - " ", - 94161, - 94161, - null - ], - [ - "percentage-token", - "50%", - 94162, - 94164, - { - "value": 50 - } - ], - [ - "comma-token", - ",", - 94165, - 94165, - null - ], - [ - "function-token", - "rgba(", - 94166, - 94170, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 94171, - 94173, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94174, - 94174, - null - ], - [ - "number-token", - "255", - 94175, - 94177, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94178, - 94178, - null - ], - [ - "number-token", - "255", - 94179, - 94181, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94182, - 94182, - null - ], - [ - "number-token", - ".15", - 94183, - 94185, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 94186, - 94186, - null - ], - [ - "whitespace-token", - " ", - 94187, - 94187, - null - ], - [ - "percentage-token", - "75%", - 94188, - 94190, - { - "value": 75 - } - ], - [ - "comma-token", - ",", - 94191, - 94191, - null - ], - [ - "ident-token", - "transparent", - 94192, - 94202, - { - "value": "transparent" - } - ], - [ - "whitespace-token", - " ", - 94203, - 94203, - null - ], - [ - "percentage-token", - "75%", - 94204, - 94206, - { - "value": 75 - } - ], - [ - "comma-token", - ",", - 94207, - 94207, - null - ], - [ - "ident-token", - "transparent", - 94208, - 94218, - { - "value": "transparent" - } - ], - [ - ")-token", - ")", - 94219, - 94219, - null - ], - [ - "semicolon-token", - ";", - 94220, - 94220, - null - ], - [ - "ident-token", - "background-size", - 94221, - 94235, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 94236, - 94236, - null - ], - [ - "function-token", - "var(", - 94237, - 94240, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-height", - 94241, - 94260, - { - "value": "--bs-progress-height" - } - ], - [ - ")-token", - ")", - 94261, - 94261, - null - ], - [ - "whitespace-token", - " ", - 94262, - 94262, - null - ], - [ - "function-token", - "var(", - 94263, - 94266, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-progress-height", - 94267, - 94286, - { - "value": "--bs-progress-height" - } - ], - [ - ")-token", - ")", - 94287, - 94287, - null - ], - [ - "}-token", - "}", - 94288, - 94288, - null - ], - [ - "delim-token", - ".", - 94289, - 94289, - { - "value": "." - } - ], - [ - "ident-token", - "progress-bar-animated", - 94290, - 94310, - { - "value": "progress-bar-animated" - } - ], - [ - "{-token", - "{", - 94311, - 94311, - null - ], - [ - "ident-token", - "-webkit-animation", - 94312, - 94328, - { - "value": "-webkit-animation" - } - ], - [ - "colon-token", - ":", - 94329, - 94329, - null - ], - [ - "dimension-token", - "1s", - 94330, - 94331, - { - "value": 1, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 94332, - 94332, - null - ], - [ - "ident-token", - "linear", - 94333, - 94338, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 94339, - 94339, - null - ], - [ - "ident-token", - "infinite", - 94340, - 94347, - { - "value": "infinite" - } - ], - [ - "whitespace-token", - " ", - 94348, - 94348, - null - ], - [ - "ident-token", - "progress-bar-stripes", - 94349, - 94368, - { - "value": "progress-bar-stripes" - } - ], - [ - "semicolon-token", - ";", - 94369, - 94369, - null - ], - [ - "ident-token", - "animation", - 94370, - 94378, - { - "value": "animation" - } - ], - [ - "colon-token", - ":", - 94379, - 94379, - null - ], - [ - "dimension-token", - "1s", - 94380, - 94381, - { - "value": 1, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 94382, - 94382, - null - ], - [ - "ident-token", - "linear", - 94383, - 94388, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 94389, - 94389, - null - ], - [ - "ident-token", - "infinite", - 94390, - 94397, - { - "value": "infinite" - } - ], - [ - "whitespace-token", - " ", - 94398, - 94398, - null - ], - [ - "ident-token", - "progress-bar-stripes", - 94399, - 94418, - { - "value": "progress-bar-stripes" - } - ], - [ - "}-token", - "}", - 94419, - 94419, - null - ], - [ - "at-keyword-token", - "@media", - 94420, - 94425, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 94426, - 94426, - null - ], - [ - "(-token", - "(", - 94427, - 94427, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 94428, - 94449, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 94450, - 94450, - null - ], - [ - "ident-token", - "reduce", - 94451, - 94456, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 94457, - 94457, - null - ], - [ - "{-token", - "{", - 94458, - 94458, - null - ], - [ - "delim-token", - ".", - 94459, - 94459, - { - "value": "." - } - ], - [ - "ident-token", - "progress-bar-animated", - 94460, - 94480, - { - "value": "progress-bar-animated" - } - ], - [ - "{-token", - "{", - 94481, - 94481, - null - ], - [ - "ident-token", - "-webkit-animation", - 94482, - 94498, - { - "value": "-webkit-animation" - } - ], - [ - "colon-token", - ":", - 94499, - 94499, - null - ], - [ - "ident-token", - "none", - 94500, - 94503, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 94504, - 94504, - null - ], - [ - "ident-token", - "animation", - 94505, - 94513, - { - "value": "animation" - } - ], - [ - "colon-token", - ":", - 94514, - 94514, - null - ], - [ - "ident-token", - "none", - 94515, - 94518, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 94519, - 94519, - null - ], - [ - "}-token", - "}", - 94520, - 94520, - null - ], - [ - "delim-token", - ".", - 94521, - 94521, - { - "value": "." - } - ], - [ - "ident-token", - "list-group", - 94522, - 94531, - { - "value": "list-group" - } - ], - [ - "{-token", - "{", - 94532, - 94532, - null - ], - [ - "ident-token", - "--bs-list-group-color", - 94533, - 94553, - { - "value": "--bs-list-group-color" - } - ], - [ - "colon-token", - ":", - 94554, - 94554, - null - ], - [ - "hash-token", - "#212529", - 94555, - 94561, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 94562, - 94562, - null - ], - [ - "ident-token", - "--bs-list-group-bg", - 94563, - 94580, - { - "value": "--bs-list-group-bg" - } - ], - [ - "colon-token", - ":", - 94581, - 94581, - null - ], - [ - "hash-token", - "#fff", - 94582, - 94585, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 94586, - 94586, - null - ], - [ - "ident-token", - "--bs-list-group-border-color", - 94587, - 94614, - { - "value": "--bs-list-group-border-color" - } - ], - [ - "colon-token", - ":", - 94615, - 94615, - null - ], - [ - "function-token", - "rgba(", - 94616, - 94620, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 94621, - 94621, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94622, - 94622, - null - ], - [ - "whitespace-token", - " ", - 94623, - 94623, - null - ], - [ - "number-token", - "0", - 94624, - 94624, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94625, - 94625, - null - ], - [ - "whitespace-token", - " ", - 94626, - 94626, - null - ], - [ - "number-token", - "0", - 94627, - 94627, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 94628, - 94628, - null - ], - [ - "whitespace-token", - " ", - 94629, - 94629, - null - ], - [ - "number-token", - "0.125", - 94630, - 94634, - { - "value": 0.125, - "type": "number" - } - ], - [ - ")-token", - ")", - 94635, - 94635, - null - ], - [ - "semicolon-token", - ";", - 94636, - 94636, - null - ], - [ - "ident-token", - "--bs-list-group-border-width", - 94637, - 94664, - { - "value": "--bs-list-group-border-width" - } - ], - [ - "colon-token", - ":", - 94665, - 94665, - null - ], - [ - "dimension-token", - "1px", - 94666, - 94668, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 94669, - 94669, - null - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 94670, - 94698, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - "colon-token", - ":", - 94699, - 94699, - null - ], - [ - "dimension-token", - "0.375rem", - 94700, - 94707, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 94708, - 94708, - null - ], - [ - "ident-token", - "--bs-list-group-item-padding-x", - 94709, - 94738, - { - "value": "--bs-list-group-item-padding-x" - } - ], - [ - "colon-token", - ":", - 94739, - 94739, - null - ], - [ - "dimension-token", - "1rem", - 94740, - 94743, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 94744, - 94744, - null - ], - [ - "ident-token", - "--bs-list-group-item-padding-y", - 94745, - 94774, - { - "value": "--bs-list-group-item-padding-y" - } - ], - [ - "colon-token", - ":", - 94775, - 94775, - null - ], - [ - "dimension-token", - "0.5rem", - 94776, - 94781, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 94782, - 94782, - null - ], - [ - "ident-token", - "--bs-list-group-action-color", - 94783, - 94810, - { - "value": "--bs-list-group-action-color" - } - ], - [ - "colon-token", - ":", - 94811, - 94811, - null - ], - [ - "hash-token", - "#495057", - 94812, - 94818, - { - "value": "495057", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 94819, - 94819, - null - ], - [ - "ident-token", - "--bs-list-group-action-hover-color", - 94820, - 94853, - { - "value": "--bs-list-group-action-hover-color" - } - ], - [ - "colon-token", - ":", - 94854, - 94854, - null - ], - [ - "hash-token", - "#495057", - 94855, - 94861, - { - "value": "495057", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 94862, - 94862, - null - ], - [ - "ident-token", - "--bs-list-group-action-hover-bg", - 94863, - 94893, - { - "value": "--bs-list-group-action-hover-bg" - } - ], - [ - "colon-token", - ":", - 94894, - 94894, - null - ], - [ - "hash-token", - "#f8f9fa", - 94895, - 94901, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 94902, - 94902, - null - ], - [ - "ident-token", - "--bs-list-group-action-active-color", - 94903, - 94937, - { - "value": "--bs-list-group-action-active-color" - } - ], - [ - "colon-token", - ":", - 94938, - 94938, - null - ], - [ - "hash-token", - "#212529", - 94939, - 94945, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 94946, - 94946, - null - ], - [ - "ident-token", - "--bs-list-group-action-active-bg", - 94947, - 94978, - { - "value": "--bs-list-group-action-active-bg" - } - ], - [ - "colon-token", - ":", - 94979, - 94979, - null - ], - [ - "hash-token", - "#e9ecef", - 94980, - 94986, - { - "value": "e9ecef", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 94987, - 94987, - null - ], - [ - "ident-token", - "--bs-list-group-disabled-color", - 94988, - 95017, - { - "value": "--bs-list-group-disabled-color" - } - ], - [ - "colon-token", - ":", - 95018, - 95018, - null - ], - [ - "hash-token", - "#6c757d", - 95019, - 95025, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 95026, - 95026, - null - ], - [ - "ident-token", - "--bs-list-group-disabled-bg", - 95027, - 95053, - { - "value": "--bs-list-group-disabled-bg" - } - ], - [ - "colon-token", - ":", - 95054, - 95054, - null - ], - [ - "hash-token", - "#fff", - 95055, - 95058, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 95059, - 95059, - null - ], - [ - "ident-token", - "--bs-list-group-active-color", - 95060, - 95087, - { - "value": "--bs-list-group-active-color" - } - ], - [ - "colon-token", - ":", - 95088, - 95088, - null - ], - [ - "hash-token", - "#fff", - 95089, - 95092, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 95093, - 95093, - null - ], - [ - "ident-token", - "--bs-list-group-active-bg", - 95094, - 95118, - { - "value": "--bs-list-group-active-bg" - } - ], - [ - "colon-token", - ":", - 95119, - 95119, - null - ], - [ - "hash-token", - "#0d6efd", - 95120, - 95126, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 95127, - 95127, - null - ], - [ - "ident-token", - "--bs-list-group-active-border-color", - 95128, - 95162, - { - "value": "--bs-list-group-active-border-color" - } - ], - [ - "colon-token", - ":", - 95163, - 95163, - null - ], - [ - "hash-token", - "#0d6efd", - 95164, - 95170, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 95171, - 95171, - null - ], - [ - "ident-token", - "display", - 95172, - 95178, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 95179, - 95179, - null - ], - [ - "ident-token", - "flex", - 95180, - 95183, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 95184, - 95184, - null - ], - [ - "ident-token", - "flex-direction", - 95185, - 95198, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 95199, - 95199, - null - ], - [ - "ident-token", - "column", - 95200, - 95205, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 95206, - 95206, - null - ], - [ - "ident-token", - "padding-left", - 95207, - 95218, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 95219, - 95219, - null - ], - [ - "number-token", - "0", - 95220, - 95220, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 95221, - 95221, - null - ], - [ - "ident-token", - "margin-bottom", - 95222, - 95234, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 95235, - 95235, - null - ], - [ - "number-token", - "0", - 95236, - 95236, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 95237, - 95237, - null - ], - [ - "ident-token", - "border-radius", - 95238, - 95250, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 95251, - 95251, - null - ], - [ - "function-token", - "var(", - 95252, - 95255, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 95256, - 95284, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 95285, - 95285, - null - ], - [ - "}-token", - "}", - 95286, - 95286, - null - ], - [ - "delim-token", - ".", - 95287, - 95287, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-numbered", - 95288, - 95306, - { - "value": "list-group-numbered" - } - ], - [ - "{-token", - "{", - 95307, - 95307, - null - ], - [ - "ident-token", - "list-style-type", - 95308, - 95322, - { - "value": "list-style-type" - } - ], - [ - "colon-token", - ":", - 95323, - 95323, - null - ], - [ - "ident-token", - "none", - 95324, - 95327, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 95328, - 95328, - null - ], - [ - "ident-token", - "counter-reset", - 95329, - 95341, - { - "value": "counter-reset" - } - ], - [ - "colon-token", - ":", - 95342, - 95342, - null - ], - [ - "ident-token", - "section", - 95343, - 95349, - { - "value": "section" - } - ], - [ - "}-token", - "}", - 95350, - 95350, - null - ], - [ - "delim-token", - ".", - 95351, - 95351, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-numbered", - 95352, - 95370, - { - "value": "list-group-numbered" - } - ], - [ - "delim-token", - ">", - 95371, - 95371, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 95372, - 95372, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 95373, - 95387, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 95388, - 95388, - null - ], - [ - "colon-token", - ":", - 95389, - 95389, - null - ], - [ - "ident-token", - "before", - 95390, - 95395, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 95396, - 95396, - null - ], - [ - "ident-token", - "content", - 95397, - 95403, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 95404, - 95404, - null - ], - [ - "function-token", - "counters(", - 95405, - 95413, - { - "value": "counters" - } - ], - [ - "ident-token", - "section", - 95414, - 95420, - { - "value": "section" - } - ], - [ - "comma-token", - ",", - 95421, - 95421, - null - ], - [ - "whitespace-token", - " ", - 95422, - 95422, - null - ], - [ - "string-token", - "\".\"", - 95423, - 95425, - { - "value": "." - } - ], - [ - ")-token", - ")", - 95426, - 95426, - null - ], - [ - "whitespace-token", - " ", - 95427, - 95427, - null - ], - [ - "string-token", - "\". \"", - 95428, - 95431, - { - "value": ". " - } - ], - [ - "semicolon-token", - ";", - 95432, - 95432, - null - ], - [ - "ident-token", - "counter-increment", - 95433, - 95449, - { - "value": "counter-increment" - } - ], - [ - "colon-token", - ":", - 95450, - 95450, - null - ], - [ - "ident-token", - "section", - 95451, - 95457, - { - "value": "section" - } - ], - [ - "}-token", - "}", - 95458, - 95458, - null - ], - [ - "delim-token", - ".", - 95459, - 95459, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 95460, - 95481, - { - "value": "list-group-item-action" - } - ], - [ - "{-token", - "{", - 95482, - 95482, - null - ], - [ - "ident-token", - "width", - 95483, - 95487, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 95488, - 95488, - null - ], - [ - "percentage-token", - "100%", - 95489, - 95492, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 95493, - 95493, - null - ], - [ - "ident-token", - "color", - 95494, - 95498, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 95499, - 95499, - null - ], - [ - "function-token", - "var(", - 95500, - 95503, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-action-color", - 95504, - 95531, - { - "value": "--bs-list-group-action-color" - } - ], - [ - ")-token", - ")", - 95532, - 95532, - null - ], - [ - "semicolon-token", - ";", - 95533, - 95533, - null - ], - [ - "ident-token", - "text-align", - 95534, - 95543, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 95544, - 95544, - null - ], - [ - "ident-token", - "inherit", - 95545, - 95551, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 95552, - 95552, - null - ], - [ - "delim-token", - ".", - 95553, - 95553, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 95554, - 95575, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 95576, - 95576, - null - ], - [ - "ident-token", - "focus", - 95577, - 95581, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 95582, - 95582, - null - ], - [ - "delim-token", - ".", - 95583, - 95583, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 95584, - 95605, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 95606, - 95606, - null - ], - [ - "ident-token", - "hover", - 95607, - 95611, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 95612, - 95612, - null - ], - [ - "ident-token", - "z-index", - 95613, - 95619, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 95620, - 95620, - null - ], - [ - "number-token", - "1", - 95621, - 95621, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 95622, - 95622, - null - ], - [ - "ident-token", - "color", - 95623, - 95627, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 95628, - 95628, - null - ], - [ - "function-token", - "var(", - 95629, - 95632, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-action-hover-color", - 95633, - 95666, - { - "value": "--bs-list-group-action-hover-color" - } - ], - [ - ")-token", - ")", - 95667, - 95667, - null - ], - [ - "semicolon-token", - ";", - 95668, - 95668, - null - ], - [ - "ident-token", - "text-decoration", - 95669, - 95683, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 95684, - 95684, - null - ], - [ - "ident-token", - "none", - 95685, - 95688, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 95689, - 95689, - null - ], - [ - "ident-token", - "background-color", - 95690, - 95705, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 95706, - 95706, - null - ], - [ - "function-token", - "var(", - 95707, - 95710, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-action-hover-bg", - 95711, - 95741, - { - "value": "--bs-list-group-action-hover-bg" - } - ], - [ - ")-token", - ")", - 95742, - 95742, - null - ], - [ - "}-token", - "}", - 95743, - 95743, - null - ], - [ - "delim-token", - ".", - 95744, - 95744, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 95745, - 95766, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 95767, - 95767, - null - ], - [ - "ident-token", - "active", - 95768, - 95773, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 95774, - 95774, - null - ], - [ - "ident-token", - "color", - 95775, - 95779, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 95780, - 95780, - null - ], - [ - "function-token", - "var(", - 95781, - 95784, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-action-active-color", - 95785, - 95819, - { - "value": "--bs-list-group-action-active-color" - } - ], - [ - ")-token", - ")", - 95820, - 95820, - null - ], - [ - "semicolon-token", - ";", - 95821, - 95821, - null - ], - [ - "ident-token", - "background-color", - 95822, - 95837, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 95838, - 95838, - null - ], - [ - "function-token", - "var(", - 95839, - 95842, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-action-active-bg", - 95843, - 95874, - { - "value": "--bs-list-group-action-active-bg" - } - ], - [ - ")-token", - ")", - 95875, - 95875, - null - ], - [ - "}-token", - "}", - 95876, - 95876, - null - ], - [ - "delim-token", - ".", - 95877, - 95877, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 95878, - 95892, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 95893, - 95893, - null - ], - [ - "ident-token", - "position", - 95894, - 95901, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 95902, - 95902, - null - ], - [ - "ident-token", - "relative", - 95903, - 95910, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 95911, - 95911, - null - ], - [ - "ident-token", - "display", - 95912, - 95918, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 95919, - 95919, - null - ], - [ - "ident-token", - "block", - 95920, - 95924, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 95925, - 95925, - null - ], - [ - "ident-token", - "padding", - 95926, - 95932, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 95933, - 95933, - null - ], - [ - "function-token", - "var(", - 95934, - 95937, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-item-padding-y", - 95938, - 95967, - { - "value": "--bs-list-group-item-padding-y" - } - ], - [ - ")-token", - ")", - 95968, - 95968, - null - ], - [ - "whitespace-token", - " ", - 95969, - 95969, - null - ], - [ - "function-token", - "var(", - 95970, - 95973, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-item-padding-x", - 95974, - 96003, - { - "value": "--bs-list-group-item-padding-x" - } - ], - [ - ")-token", - ")", - 96004, - 96004, - null - ], - [ - "semicolon-token", - ";", - 96005, - 96005, - null - ], - [ - "ident-token", - "color", - 96006, - 96010, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 96011, - 96011, - null - ], - [ - "function-token", - "var(", - 96012, - 96015, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-color", - 96016, - 96036, - { - "value": "--bs-list-group-color" - } - ], - [ - ")-token", - ")", - 96037, - 96037, - null - ], - [ - "semicolon-token", - ";", - 96038, - 96038, - null - ], - [ - "ident-token", - "text-decoration", - 96039, - 96053, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 96054, - 96054, - null - ], - [ - "ident-token", - "none", - 96055, - 96058, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 96059, - 96059, - null - ], - [ - "ident-token", - "background-color", - 96060, - 96075, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 96076, - 96076, - null - ], - [ - "function-token", - "var(", - 96077, - 96080, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-bg", - 96081, - 96098, - { - "value": "--bs-list-group-bg" - } - ], - [ - ")-token", - ")", - 96099, - 96099, - null - ], - [ - "semicolon-token", - ";", - 96100, - 96100, - null - ], - [ - "ident-token", - "border", - 96101, - 96106, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 96107, - 96107, - null - ], - [ - "function-token", - "var(", - 96108, - 96111, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 96112, - 96139, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 96140, - 96140, - null - ], - [ - "whitespace-token", - " ", - 96141, - 96141, - null - ], - [ - "ident-token", - "solid", - 96142, - 96146, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 96147, - 96147, - null - ], - [ - "function-token", - "var(", - 96148, - 96151, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-color", - 96152, - 96179, - { - "value": "--bs-list-group-border-color" - } - ], - [ - ")-token", - ")", - 96180, - 96180, - null - ], - [ - "}-token", - "}", - 96181, - 96181, - null - ], - [ - "delim-token", - ".", - 96182, - 96182, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96183, - 96197, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 96198, - 96198, - null - ], - [ - "ident-token", - "first-child", - 96199, - 96209, - { - "value": "first-child" - } - ], - [ - "{-token", - "{", - 96210, - 96210, - null - ], - [ - "ident-token", - "border-top-left-radius", - 96211, - 96232, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 96233, - 96233, - null - ], - [ - "ident-token", - "inherit", - 96234, - 96240, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 96241, - 96241, - null - ], - [ - "ident-token", - "border-top-right-radius", - 96242, - 96264, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 96265, - 96265, - null - ], - [ - "ident-token", - "inherit", - 96266, - 96272, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 96273, - 96273, - null - ], - [ - "delim-token", - ".", - 96274, - 96274, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96275, - 96289, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 96290, - 96290, - null - ], - [ - "ident-token", - "last-child", - 96291, - 96300, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 96301, - 96301, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 96302, - 96327, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 96328, - 96328, - null - ], - [ - "ident-token", - "inherit", - 96329, - 96335, - { - "value": "inherit" - } - ], - [ - "semicolon-token", - ";", - 96336, - 96336, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 96337, - 96361, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 96362, - 96362, - null - ], - [ - "ident-token", - "inherit", - 96363, - 96369, - { - "value": "inherit" - } - ], - [ - "}-token", - "}", - 96370, - 96370, - null - ], - [ - "delim-token", - ".", - 96371, - 96371, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96372, - 96386, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 96387, - 96387, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 96388, - 96395, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 96396, - 96396, - null - ], - [ - "delim-token", - ".", - 96397, - 96397, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96398, - 96412, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 96413, - 96413, - null - ], - [ - "ident-token", - "disabled", - 96414, - 96421, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 96422, - 96422, - null - ], - [ - "ident-token", - "color", - 96423, - 96427, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 96428, - 96428, - null - ], - [ - "function-token", - "var(", - 96429, - 96432, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-disabled-color", - 96433, - 96462, - { - "value": "--bs-list-group-disabled-color" - } - ], - [ - ")-token", - ")", - 96463, - 96463, - null - ], - [ - "semicolon-token", - ";", - 96464, - 96464, - null - ], - [ - "ident-token", - "pointer-events", - 96465, - 96478, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 96479, - 96479, - null - ], - [ - "ident-token", - "none", - 96480, - 96483, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 96484, - 96484, - null - ], - [ - "ident-token", - "background-color", - 96485, - 96500, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 96501, - 96501, - null - ], - [ - "function-token", - "var(", - 96502, - 96505, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-disabled-bg", - 96506, - 96532, - { - "value": "--bs-list-group-disabled-bg" - } - ], - [ - ")-token", - ")", - 96533, - 96533, - null - ], - [ - "}-token", - "}", - 96534, - 96534, - null - ], - [ - "delim-token", - ".", - 96535, - 96535, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96536, - 96550, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 96551, - 96551, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 96552, - 96557, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 96558, - 96558, - null - ], - [ - "ident-token", - "z-index", - 96559, - 96565, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 96566, - 96566, - null - ], - [ - "number-token", - "2", - 96567, - 96567, - { - "value": 2, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 96568, - 96568, - null - ], - [ - "ident-token", - "color", - 96569, - 96573, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 96574, - 96574, - null - ], - [ - "function-token", - "var(", - 96575, - 96578, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-active-color", - 96579, - 96606, - { - "value": "--bs-list-group-active-color" - } - ], - [ - ")-token", - ")", - 96607, - 96607, - null - ], - [ - "semicolon-token", - ";", - 96608, - 96608, - null - ], - [ - "ident-token", - "background-color", - 96609, - 96624, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 96625, - 96625, - null - ], - [ - "function-token", - "var(", - 96626, - 96629, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-active-bg", - 96630, - 96654, - { - "value": "--bs-list-group-active-bg" - } - ], - [ - ")-token", - ")", - 96655, - 96655, - null - ], - [ - "semicolon-token", - ";", - 96656, - 96656, - null - ], - [ - "ident-token", - "border-color", - 96657, - 96668, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 96669, - 96669, - null - ], - [ - "function-token", - "var(", - 96670, - 96673, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-active-border-color", - 96674, - 96708, - { - "value": "--bs-list-group-active-border-color" - } - ], - [ - ")-token", - ")", - 96709, - 96709, - null - ], - [ - "}-token", - "}", - 96710, - 96710, - null - ], - [ - "delim-token", - ".", - 96711, - 96711, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96712, - 96726, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 96727, - 96727, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 96728, - 96728, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96729, - 96743, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 96744, - 96744, - null - ], - [ - "ident-token", - "border-top-width", - 96745, - 96760, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 96761, - 96761, - null - ], - [ - "number-token", - "0", - 96762, - 96762, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 96763, - 96763, - null - ], - [ - "delim-token", - ".", - 96764, - 96764, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96765, - 96779, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 96780, - 96780, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 96781, - 96781, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96782, - 96796, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 96797, - 96797, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 96798, - 96803, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 96804, - 96804, - null - ], - [ - "ident-token", - "margin-top", - 96805, - 96814, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 96815, - 96815, - null - ], - [ - "function-token", - "calc(", - 96816, - 96820, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 96821, - 96822, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 96823, - 96823, - null - ], - [ - "delim-token", - "*", - 96824, - 96824, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 96825, - 96825, - null - ], - [ - "function-token", - "var(", - 96826, - 96829, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 96830, - 96857, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 96858, - 96858, - null - ], - [ - ")-token", - ")", - 96859, - 96859, - null - ], - [ - "semicolon-token", - ";", - 96860, - 96860, - null - ], - [ - "ident-token", - "border-top-width", - 96861, - 96876, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 96877, - 96877, - null - ], - [ - "function-token", - "var(", - 96878, - 96881, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 96882, - 96909, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 96910, - 96910, - null - ], - [ - "}-token", - "}", - 96911, - 96911, - null - ], - [ - "delim-token", - ".", - 96912, - 96912, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 96913, - 96933, - { - "value": "list-group-horizontal" - } - ], - [ - "{-token", - "{", - 96934, - 96934, - null - ], - [ - "ident-token", - "flex-direction", - 96935, - 96948, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 96949, - 96949, - null - ], - [ - "ident-token", - "row", - 96950, - 96952, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 96953, - 96953, - null - ], - [ - "delim-token", - ".", - 96954, - 96954, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 96955, - 96975, - { - "value": "list-group-horizontal" - } - ], - [ - "delim-token", - ">", - 96976, - 96976, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 96977, - 96977, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 96978, - 96992, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 96993, - 96993, - null - ], - [ - "ident-token", - "first-child", - 96994, - 97004, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 97005, - 97005, - null - ], - [ - "function-token", - "not(", - 97006, - 97009, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 97010, - 97010, - null - ], - [ - "ident-token", - "last-child", - 97011, - 97020, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 97021, - 97021, - null - ], - [ - "{-token", - "{", - 97022, - 97022, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 97023, - 97047, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 97048, - 97048, - null - ], - [ - "function-token", - "var(", - 97049, - 97052, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 97053, - 97081, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 97082, - 97082, - null - ], - [ - "semicolon-token", - ";", - 97083, - 97083, - null - ], - [ - "ident-token", - "border-top-right-radius", - 97084, - 97106, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 97107, - 97107, - null - ], - [ - "number-token", - "0", - 97108, - 97108, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 97109, - 97109, - null - ], - [ - "delim-token", - ".", - 97110, - 97110, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 97111, - 97131, - { - "value": "list-group-horizontal" - } - ], - [ - "delim-token", - ">", - 97132, - 97132, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97133, - 97133, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97134, - 97148, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 97149, - 97149, - null - ], - [ - "ident-token", - "last-child", - 97150, - 97159, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 97160, - 97160, - null - ], - [ - "function-token", - "not(", - 97161, - 97164, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 97165, - 97165, - null - ], - [ - "ident-token", - "first-child", - 97166, - 97176, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 97177, - 97177, - null - ], - [ - "{-token", - "{", - 97178, - 97178, - null - ], - [ - "ident-token", - "border-top-right-radius", - 97179, - 97201, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 97202, - 97202, - null - ], - [ - "function-token", - "var(", - 97203, - 97206, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 97207, - 97235, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 97236, - 97236, - null - ], - [ - "semicolon-token", - ";", - 97237, - 97237, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 97238, - 97262, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 97263, - 97263, - null - ], - [ - "number-token", - "0", - 97264, - 97264, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 97265, - 97265, - null - ], - [ - "delim-token", - ".", - 97266, - 97266, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 97267, - 97287, - { - "value": "list-group-horizontal" - } - ], - [ - "delim-token", - ">", - 97288, - 97288, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97289, - 97289, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97290, - 97304, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 97305, - 97305, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 97306, - 97311, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 97312, - 97312, - null - ], - [ - "ident-token", - "margin-top", - 97313, - 97322, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 97323, - 97323, - null - ], - [ - "number-token", - "0", - 97324, - 97324, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 97325, - 97325, - null - ], - [ - "delim-token", - ".", - 97326, - 97326, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 97327, - 97347, - { - "value": "list-group-horizontal" - } - ], - [ - "delim-token", - ">", - 97348, - 97348, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97349, - 97349, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97350, - 97364, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 97365, - 97365, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 97366, - 97366, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97367, - 97381, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 97382, - 97382, - null - ], - [ - "ident-token", - "border-top-width", - 97383, - 97398, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 97399, - 97399, - null - ], - [ - "function-token", - "var(", - 97400, - 97403, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 97404, - 97431, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 97432, - 97432, - null - ], - [ - "semicolon-token", - ";", - 97433, - 97433, - null - ], - [ - "ident-token", - "border-left-width", - 97434, - 97450, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 97451, - 97451, - null - ], - [ - "number-token", - "0", - 97452, - 97452, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 97453, - 97453, - null - ], - [ - "delim-token", - ".", - 97454, - 97454, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal", - 97455, - 97475, - { - "value": "list-group-horizontal" - } - ], - [ - "delim-token", - ">", - 97476, - 97476, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97477, - 97477, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97478, - 97492, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 97493, - 97493, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 97494, - 97494, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97495, - 97509, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 97510, - 97510, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 97511, - 97516, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 97517, - 97517, - null - ], - [ - "ident-token", - "margin-left", - 97518, - 97528, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 97529, - 97529, - null - ], - [ - "function-token", - "calc(", - 97530, - 97534, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 97535, - 97536, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 97537, - 97537, - null - ], - [ - "delim-token", - "*", - 97538, - 97538, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 97539, - 97539, - null - ], - [ - "function-token", - "var(", - 97540, - 97543, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 97544, - 97571, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 97572, - 97572, - null - ], - [ - ")-token", - ")", - 97573, - 97573, - null - ], - [ - "semicolon-token", - ";", - 97574, - 97574, - null - ], - [ - "ident-token", - "border-left-width", - 97575, - 97591, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 97592, - 97592, - null - ], - [ - "function-token", - "var(", - 97593, - 97596, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 97597, - 97624, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 97625, - 97625, - null - ], - [ - "}-token", - "}", - 97626, - 97626, - null - ], - [ - "at-keyword-token", - "@media", - 97627, - 97632, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 97633, - 97633, - null - ], - [ - "(-token", - "(", - 97634, - 97634, - null - ], - [ - "ident-token", - "min-width", - 97635, - 97643, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 97644, - 97644, - null - ], - [ - "dimension-token", - "576px", - 97645, - 97649, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 97650, - 97650, - null - ], - [ - "{-token", - "{", - 97651, - 97651, - null - ], - [ - "delim-token", - ".", - 97652, - 97652, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 97653, - 97676, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "{-token", - "{", - 97677, - 97677, - null - ], - [ - "ident-token", - "flex-direction", - 97678, - 97691, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 97692, - 97692, - null - ], - [ - "ident-token", - "row", - 97693, - 97695, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 97696, - 97696, - null - ], - [ - "delim-token", - ".", - 97697, - 97697, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 97698, - 97721, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "delim-token", - ">", - 97722, - 97722, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97723, - 97723, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97724, - 97738, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 97739, - 97739, - null - ], - [ - "ident-token", - "first-child", - 97740, - 97750, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 97751, - 97751, - null - ], - [ - "function-token", - "not(", - 97752, - 97755, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 97756, - 97756, - null - ], - [ - "ident-token", - "last-child", - 97757, - 97766, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 97767, - 97767, - null - ], - [ - "{-token", - "{", - 97768, - 97768, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 97769, - 97793, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 97794, - 97794, - null - ], - [ - "function-token", - "var(", - 97795, - 97798, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 97799, - 97827, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 97828, - 97828, - null - ], - [ - "semicolon-token", - ";", - 97829, - 97829, - null - ], - [ - "ident-token", - "border-top-right-radius", - 97830, - 97852, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 97853, - 97853, - null - ], - [ - "number-token", - "0", - 97854, - 97854, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 97855, - 97855, - null - ], - [ - "delim-token", - ".", - 97856, - 97856, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 97857, - 97880, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "delim-token", - ">", - 97881, - 97881, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 97882, - 97882, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 97883, - 97897, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 97898, - 97898, - null - ], - [ - "ident-token", - "last-child", - 97899, - 97908, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 97909, - 97909, - null - ], - [ - "function-token", - "not(", - 97910, - 97913, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 97914, - 97914, - null - ], - [ - "ident-token", - "first-child", - 97915, - 97925, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 97926, - 97926, - null - ], - [ - "{-token", - "{", - 97927, - 97927, - null - ], - [ - "ident-token", - "border-top-right-radius", - 97928, - 97950, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 97951, - 97951, - null - ], - [ - "function-token", - "var(", - 97952, - 97955, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 97956, - 97984, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 97985, - 97985, - null - ], - [ - "semicolon-token", - ";", - 97986, - 97986, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 97987, - 98011, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 98012, - 98012, - null - ], - [ - "number-token", - "0", - 98013, - 98013, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98014, - 98014, - null - ], - [ - "delim-token", - ".", - 98015, - 98015, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 98016, - 98039, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "delim-token", - ">", - 98040, - 98040, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98041, - 98041, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98042, - 98056, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 98057, - 98057, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 98058, - 98063, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 98064, - 98064, - null - ], - [ - "ident-token", - "margin-top", - 98065, - 98074, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 98075, - 98075, - null - ], - [ - "number-token", - "0", - 98076, - 98076, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98077, - 98077, - null - ], - [ - "delim-token", - ".", - 98078, - 98078, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 98079, - 98102, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "delim-token", - ">", - 98103, - 98103, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98104, - 98104, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98105, - 98119, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 98120, - 98120, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 98121, - 98121, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98122, - 98136, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 98137, - 98137, - null - ], - [ - "ident-token", - "border-top-width", - 98138, - 98153, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 98154, - 98154, - null - ], - [ - "function-token", - "var(", - 98155, - 98158, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 98159, - 98186, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 98187, - 98187, - null - ], - [ - "semicolon-token", - ";", - 98188, - 98188, - null - ], - [ - "ident-token", - "border-left-width", - 98189, - 98205, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 98206, - 98206, - null - ], - [ - "number-token", - "0", - 98207, - 98207, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98208, - 98208, - null - ], - [ - "delim-token", - ".", - 98209, - 98209, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-sm", - 98210, - 98233, - { - "value": "list-group-horizontal-sm" - } - ], - [ - "delim-token", - ">", - 98234, - 98234, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98235, - 98235, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98236, - 98250, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 98251, - 98251, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 98252, - 98252, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98253, - 98267, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 98268, - 98268, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 98269, - 98274, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 98275, - 98275, - null - ], - [ - "ident-token", - "margin-left", - 98276, - 98286, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 98287, - 98287, - null - ], - [ - "function-token", - "calc(", - 98288, - 98292, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 98293, - 98294, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 98295, - 98295, - null - ], - [ - "delim-token", - "*", - 98296, - 98296, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 98297, - 98297, - null - ], - [ - "function-token", - "var(", - 98298, - 98301, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 98302, - 98329, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 98330, - 98330, - null - ], - [ - ")-token", - ")", - 98331, - 98331, - null - ], - [ - "semicolon-token", - ";", - 98332, - 98332, - null - ], - [ - "ident-token", - "border-left-width", - 98333, - 98349, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 98350, - 98350, - null - ], - [ - "function-token", - "var(", - 98351, - 98354, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 98355, - 98382, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 98383, - 98383, - null - ], - [ - "}-token", - "}", - 98384, - 98384, - null - ], - [ - "}-token", - "}", - 98385, - 98385, - null - ], - [ - "at-keyword-token", - "@media", - 98386, - 98391, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 98392, - 98392, - null - ], - [ - "(-token", - "(", - 98393, - 98393, - null - ], - [ - "ident-token", - "min-width", - 98394, - 98402, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 98403, - 98403, - null - ], - [ - "dimension-token", - "768px", - 98404, - 98408, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 98409, - 98409, - null - ], - [ - "{-token", - "{", - 98410, - 98410, - null - ], - [ - "delim-token", - ".", - 98411, - 98411, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98412, - 98435, - { - "value": "list-group-horizontal-md" - } - ], - [ - "{-token", - "{", - 98436, - 98436, - null - ], - [ - "ident-token", - "flex-direction", - 98437, - 98450, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 98451, - 98451, - null - ], - [ - "ident-token", - "row", - 98452, - 98454, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 98455, - 98455, - null - ], - [ - "delim-token", - ".", - 98456, - 98456, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98457, - 98480, - { - "value": "list-group-horizontal-md" - } - ], - [ - "delim-token", - ">", - 98481, - 98481, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98482, - 98482, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98483, - 98497, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 98498, - 98498, - null - ], - [ - "ident-token", - "first-child", - 98499, - 98509, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 98510, - 98510, - null - ], - [ - "function-token", - "not(", - 98511, - 98514, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 98515, - 98515, - null - ], - [ - "ident-token", - "last-child", - 98516, - 98525, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 98526, - 98526, - null - ], - [ - "{-token", - "{", - 98527, - 98527, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 98528, - 98552, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 98553, - 98553, - null - ], - [ - "function-token", - "var(", - 98554, - 98557, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 98558, - 98586, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 98587, - 98587, - null - ], - [ - "semicolon-token", - ";", - 98588, - 98588, - null - ], - [ - "ident-token", - "border-top-right-radius", - 98589, - 98611, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 98612, - 98612, - null - ], - [ - "number-token", - "0", - 98613, - 98613, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98614, - 98614, - null - ], - [ - "delim-token", - ".", - 98615, - 98615, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98616, - 98639, - { - "value": "list-group-horizontal-md" - } - ], - [ - "delim-token", - ">", - 98640, - 98640, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98641, - 98641, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98642, - 98656, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 98657, - 98657, - null - ], - [ - "ident-token", - "last-child", - 98658, - 98667, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 98668, - 98668, - null - ], - [ - "function-token", - "not(", - 98669, - 98672, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 98673, - 98673, - null - ], - [ - "ident-token", - "first-child", - 98674, - 98684, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 98685, - 98685, - null - ], - [ - "{-token", - "{", - 98686, - 98686, - null - ], - [ - "ident-token", - "border-top-right-radius", - 98687, - 98709, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 98710, - 98710, - null - ], - [ - "function-token", - "var(", - 98711, - 98714, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 98715, - 98743, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 98744, - 98744, - null - ], - [ - "semicolon-token", - ";", - 98745, - 98745, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 98746, - 98770, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 98771, - 98771, - null - ], - [ - "number-token", - "0", - 98772, - 98772, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98773, - 98773, - null - ], - [ - "delim-token", - ".", - 98774, - 98774, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98775, - 98798, - { - "value": "list-group-horizontal-md" - } - ], - [ - "delim-token", - ">", - 98799, - 98799, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98800, - 98800, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98801, - 98815, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 98816, - 98816, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 98817, - 98822, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 98823, - 98823, - null - ], - [ - "ident-token", - "margin-top", - 98824, - 98833, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 98834, - 98834, - null - ], - [ - "number-token", - "0", - 98835, - 98835, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98836, - 98836, - null - ], - [ - "delim-token", - ".", - 98837, - 98837, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98838, - 98861, - { - "value": "list-group-horizontal-md" - } - ], - [ - "delim-token", - ">", - 98862, - 98862, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98863, - 98863, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98864, - 98878, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 98879, - 98879, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 98880, - 98880, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98881, - 98895, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 98896, - 98896, - null - ], - [ - "ident-token", - "border-top-width", - 98897, - 98912, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 98913, - 98913, - null - ], - [ - "function-token", - "var(", - 98914, - 98917, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 98918, - 98945, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 98946, - 98946, - null - ], - [ - "semicolon-token", - ";", - 98947, - 98947, - null - ], - [ - "ident-token", - "border-left-width", - 98948, - 98964, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 98965, - 98965, - null - ], - [ - "number-token", - "0", - 98966, - 98966, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 98967, - 98967, - null - ], - [ - "delim-token", - ".", - 98968, - 98968, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-md", - 98969, - 98992, - { - "value": "list-group-horizontal-md" - } - ], - [ - "delim-token", - ">", - 98993, - 98993, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 98994, - 98994, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 98995, - 99009, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 99010, - 99010, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 99011, - 99011, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99012, - 99026, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 99027, - 99027, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 99028, - 99033, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 99034, - 99034, - null - ], - [ - "ident-token", - "margin-left", - 99035, - 99045, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 99046, - 99046, - null - ], - [ - "function-token", - "calc(", - 99047, - 99051, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 99052, - 99053, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 99054, - 99054, - null - ], - [ - "delim-token", - "*", - 99055, - 99055, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 99056, - 99056, - null - ], - [ - "function-token", - "var(", - 99057, - 99060, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 99061, - 99088, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 99089, - 99089, - null - ], - [ - ")-token", - ")", - 99090, - 99090, - null - ], - [ - "semicolon-token", - ";", - 99091, - 99091, - null - ], - [ - "ident-token", - "border-left-width", - 99092, - 99108, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 99109, - 99109, - null - ], - [ - "function-token", - "var(", - 99110, - 99113, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 99114, - 99141, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 99142, - 99142, - null - ], - [ - "}-token", - "}", - 99143, - 99143, - null - ], - [ - "}-token", - "}", - 99144, - 99144, - null - ], - [ - "at-keyword-token", - "@media", - 99145, - 99150, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 99151, - 99151, - null - ], - [ - "(-token", - "(", - 99152, - 99152, - null - ], - [ - "ident-token", - "min-width", - 99153, - 99161, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 99162, - 99162, - null - ], - [ - "dimension-token", - "992px", - 99163, - 99167, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 99168, - 99168, - null - ], - [ - "{-token", - "{", - 99169, - 99169, - null - ], - [ - "delim-token", - ".", - 99170, - 99170, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99171, - 99194, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "{-token", - "{", - 99195, - 99195, - null - ], - [ - "ident-token", - "flex-direction", - 99196, - 99209, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 99210, - 99210, - null - ], - [ - "ident-token", - "row", - 99211, - 99213, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 99214, - 99214, - null - ], - [ - "delim-token", - ".", - 99215, - 99215, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99216, - 99239, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "delim-token", - ">", - 99240, - 99240, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 99241, - 99241, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99242, - 99256, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 99257, - 99257, - null - ], - [ - "ident-token", - "first-child", - 99258, - 99268, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 99269, - 99269, - null - ], - [ - "function-token", - "not(", - 99270, - 99273, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 99274, - 99274, - null - ], - [ - "ident-token", - "last-child", - 99275, - 99284, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 99285, - 99285, - null - ], - [ - "{-token", - "{", - 99286, - 99286, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 99287, - 99311, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 99312, - 99312, - null - ], - [ - "function-token", - "var(", - 99313, - 99316, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 99317, - 99345, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 99346, - 99346, - null - ], - [ - "semicolon-token", - ";", - 99347, - 99347, - null - ], - [ - "ident-token", - "border-top-right-radius", - 99348, - 99370, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 99371, - 99371, - null - ], - [ - "number-token", - "0", - 99372, - 99372, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 99373, - 99373, - null - ], - [ - "delim-token", - ".", - 99374, - 99374, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99375, - 99398, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "delim-token", - ">", - 99399, - 99399, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 99400, - 99400, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99401, - 99415, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 99416, - 99416, - null - ], - [ - "ident-token", - "last-child", - 99417, - 99426, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 99427, - 99427, - null - ], - [ - "function-token", - "not(", - 99428, - 99431, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 99432, - 99432, - null - ], - [ - "ident-token", - "first-child", - 99433, - 99443, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 99444, - 99444, - null - ], - [ - "{-token", - "{", - 99445, - 99445, - null - ], - [ - "ident-token", - "border-top-right-radius", - 99446, - 99468, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 99469, - 99469, - null - ], - [ - "function-token", - "var(", - 99470, - 99473, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 99474, - 99502, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 99503, - 99503, - null - ], - [ - "semicolon-token", - ";", - 99504, - 99504, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 99505, - 99529, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 99530, - 99530, - null - ], - [ - "number-token", - "0", - 99531, - 99531, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 99532, - 99532, - null - ], - [ - "delim-token", - ".", - 99533, - 99533, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99534, - 99557, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "delim-token", - ">", - 99558, - 99558, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 99559, - 99559, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99560, - 99574, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 99575, - 99575, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 99576, - 99581, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 99582, - 99582, - null - ], - [ - "ident-token", - "margin-top", - 99583, - 99592, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 99593, - 99593, - null - ], - [ - "number-token", - "0", - 99594, - 99594, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 99595, - 99595, - null - ], - [ - "delim-token", - ".", - 99596, - 99596, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99597, - 99620, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "delim-token", - ">", - 99621, - 99621, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 99622, - 99622, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99623, - 99637, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 99638, - 99638, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 99639, - 99639, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99640, - 99654, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 99655, - 99655, - null - ], - [ - "ident-token", - "border-top-width", - 99656, - 99671, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 99672, - 99672, - null - ], - [ - "function-token", - "var(", - 99673, - 99676, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 99677, - 99704, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 99705, - 99705, - null - ], - [ - "semicolon-token", - ";", - 99706, - 99706, - null - ], - [ - "ident-token", - "border-left-width", - 99707, - 99723, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 99724, - 99724, - null - ], - [ - "number-token", - "0", - 99725, - 99725, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 99726, - 99726, - null - ], - [ - "delim-token", - ".", - 99727, - 99727, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-lg", - 99728, - 99751, - { - "value": "list-group-horizontal-lg" - } - ], - [ - "delim-token", - ">", - 99752, - 99752, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 99753, - 99753, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99754, - 99768, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 99769, - 99769, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 99770, - 99770, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 99771, - 99785, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 99786, - 99786, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 99787, - 99792, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 99793, - 99793, - null - ], - [ - "ident-token", - "margin-left", - 99794, - 99804, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 99805, - 99805, - null - ], - [ - "function-token", - "calc(", - 99806, - 99810, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 99811, - 99812, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 99813, - 99813, - null - ], - [ - "delim-token", - "*", - 99814, - 99814, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 99815, - 99815, - null - ], - [ - "function-token", - "var(", - 99816, - 99819, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 99820, - 99847, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 99848, - 99848, - null - ], - [ - ")-token", - ")", - 99849, - 99849, - null - ], - [ - "semicolon-token", - ";", - 99850, - 99850, - null - ], - [ - "ident-token", - "border-left-width", - 99851, - 99867, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 99868, - 99868, - null - ], - [ - "function-token", - "var(", - 99869, - 99872, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 99873, - 99900, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 99901, - 99901, - null - ], - [ - "}-token", - "}", - 99902, - 99902, - null - ], - [ - "}-token", - "}", - 99903, - 99903, - null - ], - [ - "at-keyword-token", - "@media", - 99904, - 99909, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 99910, - 99910, - null - ], - [ - "(-token", - "(", - 99911, - 99911, - null - ], - [ - "ident-token", - "min-width", - 99912, - 99920, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 99921, - 99921, - null - ], - [ - "dimension-token", - "1200px", - 99922, - 99927, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 99928, - 99928, - null - ], - [ - "{-token", - "{", - 99929, - 99929, - null - ], - [ - "delim-token", - ".", - 99930, - 99930, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 99931, - 99954, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "{-token", - "{", - 99955, - 99955, - null - ], - [ - "ident-token", - "flex-direction", - 99956, - 99969, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 99970, - 99970, - null - ], - [ - "ident-token", - "row", - 99971, - 99973, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 99974, - 99974, - null - ], - [ - "delim-token", - ".", - 99975, - 99975, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 99976, - 99999, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "delim-token", - ">", - 100000, - 100000, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100001, - 100001, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100002, - 100016, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 100017, - 100017, - null - ], - [ - "ident-token", - "first-child", - 100018, - 100028, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 100029, - 100029, - null - ], - [ - "function-token", - "not(", - 100030, - 100033, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 100034, - 100034, - null - ], - [ - "ident-token", - "last-child", - 100035, - 100044, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 100045, - 100045, - null - ], - [ - "{-token", - "{", - 100046, - 100046, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 100047, - 100071, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 100072, - 100072, - null - ], - [ - "function-token", - "var(", - 100073, - 100076, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 100077, - 100105, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 100106, - 100106, - null - ], - [ - "semicolon-token", - ";", - 100107, - 100107, - null - ], - [ - "ident-token", - "border-top-right-radius", - 100108, - 100130, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 100131, - 100131, - null - ], - [ - "number-token", - "0", - 100132, - 100132, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 100133, - 100133, - null - ], - [ - "delim-token", - ".", - 100134, - 100134, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 100135, - 100158, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "delim-token", - ">", - 100159, - 100159, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100160, - 100160, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100161, - 100175, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 100176, - 100176, - null - ], - [ - "ident-token", - "last-child", - 100177, - 100186, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 100187, - 100187, - null - ], - [ - "function-token", - "not(", - 100188, - 100191, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 100192, - 100192, - null - ], - [ - "ident-token", - "first-child", - 100193, - 100203, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 100204, - 100204, - null - ], - [ - "{-token", - "{", - 100205, - 100205, - null - ], - [ - "ident-token", - "border-top-right-radius", - 100206, - 100228, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 100229, - 100229, - null - ], - [ - "function-token", - "var(", - 100230, - 100233, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 100234, - 100262, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 100263, - 100263, - null - ], - [ - "semicolon-token", - ";", - 100264, - 100264, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 100265, - 100289, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 100290, - 100290, - null - ], - [ - "number-token", - "0", - 100291, - 100291, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 100292, - 100292, - null - ], - [ - "delim-token", - ".", - 100293, - 100293, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 100294, - 100317, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "delim-token", - ">", - 100318, - 100318, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100319, - 100319, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100320, - 100334, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 100335, - 100335, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 100336, - 100341, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 100342, - 100342, - null - ], - [ - "ident-token", - "margin-top", - 100343, - 100352, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 100353, - 100353, - null - ], - [ - "number-token", - "0", - 100354, - 100354, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 100355, - 100355, - null - ], - [ - "delim-token", - ".", - 100356, - 100356, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 100357, - 100380, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "delim-token", - ">", - 100381, - 100381, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100382, - 100382, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100383, - 100397, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 100398, - 100398, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 100399, - 100399, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100400, - 100414, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 100415, - 100415, - null - ], - [ - "ident-token", - "border-top-width", - 100416, - 100431, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 100432, - 100432, - null - ], - [ - "function-token", - "var(", - 100433, - 100436, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 100437, - 100464, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 100465, - 100465, - null - ], - [ - "semicolon-token", - ";", - 100466, - 100466, - null - ], - [ - "ident-token", - "border-left-width", - 100467, - 100483, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 100484, - 100484, - null - ], - [ - "number-token", - "0", - 100485, - 100485, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 100486, - 100486, - null - ], - [ - "delim-token", - ".", - 100487, - 100487, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xl", - 100488, - 100511, - { - "value": "list-group-horizontal-xl" - } - ], - [ - "delim-token", - ">", - 100512, - 100512, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100513, - 100513, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100514, - 100528, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 100529, - 100529, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 100530, - 100530, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100531, - 100545, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 100546, - 100546, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 100547, - 100552, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 100553, - 100553, - null - ], - [ - "ident-token", - "margin-left", - 100554, - 100564, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 100565, - 100565, - null - ], - [ - "function-token", - "calc(", - 100566, - 100570, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 100571, - 100572, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 100573, - 100573, - null - ], - [ - "delim-token", - "*", - 100574, - 100574, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 100575, - 100575, - null - ], - [ - "function-token", - "var(", - 100576, - 100579, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 100580, - 100607, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 100608, - 100608, - null - ], - [ - ")-token", - ")", - 100609, - 100609, - null - ], - [ - "semicolon-token", - ";", - 100610, - 100610, - null - ], - [ - "ident-token", - "border-left-width", - 100611, - 100627, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 100628, - 100628, - null - ], - [ - "function-token", - "var(", - 100629, - 100632, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 100633, - 100660, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 100661, - 100661, - null - ], - [ - "}-token", - "}", - 100662, - 100662, - null - ], - [ - "}-token", - "}", - 100663, - 100663, - null - ], - [ - "at-keyword-token", - "@media", - 100664, - 100669, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 100670, - 100670, - null - ], - [ - "(-token", - "(", - 100671, - 100671, - null - ], - [ - "ident-token", - "min-width", - 100672, - 100680, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 100681, - 100681, - null - ], - [ - "dimension-token", - "1400px", - 100682, - 100687, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 100688, - 100688, - null - ], - [ - "{-token", - "{", - 100689, - 100689, - null - ], - [ - "delim-token", - ".", - 100690, - 100690, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 100691, - 100715, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "{-token", - "{", - 100716, - 100716, - null - ], - [ - "ident-token", - "flex-direction", - 100717, - 100730, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 100731, - 100731, - null - ], - [ - "ident-token", - "row", - 100732, - 100734, - { - "value": "row" - } - ], - [ - "}-token", - "}", - 100735, - 100735, - null - ], - [ - "delim-token", - ".", - 100736, - 100736, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 100737, - 100761, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "delim-token", - ">", - 100762, - 100762, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100763, - 100763, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100764, - 100778, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 100779, - 100779, - null - ], - [ - "ident-token", - "first-child", - 100780, - 100790, - { - "value": "first-child" - } - ], - [ - "colon-token", - ":", - 100791, - 100791, - null - ], - [ - "function-token", - "not(", - 100792, - 100795, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 100796, - 100796, - null - ], - [ - "ident-token", - "last-child", - 100797, - 100806, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 100807, - 100807, - null - ], - [ - "{-token", - "{", - 100808, - 100808, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 100809, - 100833, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 100834, - 100834, - null - ], - [ - "function-token", - "var(", - 100835, - 100838, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 100839, - 100867, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 100868, - 100868, - null - ], - [ - "semicolon-token", - ";", - 100869, - 100869, - null - ], - [ - "ident-token", - "border-top-right-radius", - 100870, - 100892, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 100893, - 100893, - null - ], - [ - "number-token", - "0", - 100894, - 100894, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 100895, - 100895, - null - ], - [ - "delim-token", - ".", - 100896, - 100896, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 100897, - 100921, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "delim-token", - ">", - 100922, - 100922, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 100923, - 100923, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 100924, - 100938, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 100939, - 100939, - null - ], - [ - "ident-token", - "last-child", - 100940, - 100949, - { - "value": "last-child" - } - ], - [ - "colon-token", - ":", - 100950, - 100950, - null - ], - [ - "function-token", - "not(", - 100951, - 100954, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 100955, - 100955, - null - ], - [ - "ident-token", - "first-child", - 100956, - 100966, - { - "value": "first-child" - } - ], - [ - ")-token", - ")", - 100967, - 100967, - null - ], - [ - "{-token", - "{", - 100968, - 100968, - null - ], - [ - "ident-token", - "border-top-right-radius", - 100969, - 100991, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 100992, - 100992, - null - ], - [ - "function-token", - "var(", - 100993, - 100996, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-radius", - 100997, - 101025, - { - "value": "--bs-list-group-border-radius" - } - ], - [ - ")-token", - ")", - 101026, - 101026, - null - ], - [ - "semicolon-token", - ";", - 101027, - 101027, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 101028, - 101052, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 101053, - 101053, - null - ], - [ - "number-token", - "0", - 101054, - 101054, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 101055, - 101055, - null - ], - [ - "delim-token", - ".", - 101056, - 101056, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 101057, - 101081, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "delim-token", - ">", - 101082, - 101082, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 101083, - 101083, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101084, - 101098, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 101099, - 101099, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 101100, - 101105, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 101106, - 101106, - null - ], - [ - "ident-token", - "margin-top", - 101107, - 101116, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 101117, - 101117, - null - ], - [ - "number-token", - "0", - 101118, - 101118, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 101119, - 101119, - null - ], - [ - "delim-token", - ".", - 101120, - 101120, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 101121, - 101145, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "delim-token", - ">", - 101146, - 101146, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 101147, - 101147, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101148, - 101162, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 101163, - 101163, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 101164, - 101164, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101165, - 101179, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 101180, - 101180, - null - ], - [ - "ident-token", - "border-top-width", - 101181, - 101196, - { - "value": "border-top-width" - } - ], - [ - "colon-token", - ":", - 101197, - 101197, - null - ], - [ - "function-token", - "var(", - 101198, - 101201, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 101202, - 101229, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 101230, - 101230, - null - ], - [ - "semicolon-token", - ";", - 101231, - 101231, - null - ], - [ - "ident-token", - "border-left-width", - 101232, - 101248, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 101249, - 101249, - null - ], - [ - "number-token", - "0", - 101250, - 101250, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 101251, - 101251, - null - ], - [ - "delim-token", - ".", - 101252, - 101252, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-horizontal-xxl", - 101253, - 101277, - { - "value": "list-group-horizontal-xxl" - } - ], - [ - "delim-token", - ">", - 101278, - 101278, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 101279, - 101279, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101280, - 101294, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - "+", - 101295, - 101295, - { - "value": "+" - } - ], - [ - "delim-token", - ".", - 101296, - 101296, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101297, - 101311, - { - "value": "list-group-item" - } - ], - [ - "delim-token", - ".", - 101312, - 101312, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 101313, - 101318, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 101319, - 101319, - null - ], - [ - "ident-token", - "margin-left", - 101320, - 101330, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 101331, - 101331, - null - ], - [ - "function-token", - "calc(", - 101332, - 101336, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 101337, - 101338, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 101339, - 101339, - null - ], - [ - "delim-token", - "*", - 101340, - 101340, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 101341, - 101341, - null - ], - [ - "function-token", - "var(", - 101342, - 101345, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 101346, - 101373, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 101374, - 101374, - null - ], - [ - ")-token", - ")", - 101375, - 101375, - null - ], - [ - "semicolon-token", - ";", - 101376, - 101376, - null - ], - [ - "ident-token", - "border-left-width", - 101377, - 101393, - { - "value": "border-left-width" - } - ], - [ - "colon-token", - ":", - 101394, - 101394, - null - ], - [ - "function-token", - "var(", - 101395, - 101398, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 101399, - 101426, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 101427, - 101427, - null - ], - [ - "}-token", - "}", - 101428, - 101428, - null - ], - [ - "}-token", - "}", - 101429, - 101429, - null - ], - [ - "delim-token", - ".", - 101430, - 101430, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-flush", - 101431, - 101446, - { - "value": "list-group-flush" - } - ], - [ - "{-token", - "{", - 101447, - 101447, - null - ], - [ - "ident-token", - "border-radius", - 101448, - 101460, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 101461, - 101461, - null - ], - [ - "number-token", - "0", - 101462, - 101462, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 101463, - 101463, - null - ], - [ - "delim-token", - ".", - 101464, - 101464, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-flush", - 101465, - 101480, - { - "value": "list-group-flush" - } - ], - [ - "delim-token", - ">", - 101481, - 101481, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 101482, - 101482, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101483, - 101497, - { - "value": "list-group-item" - } - ], - [ - "{-token", - "{", - 101498, - 101498, - null - ], - [ - "ident-token", - "border-width", - 101499, - 101510, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 101511, - 101511, - null - ], - [ - "number-token", - "0", - 101512, - 101512, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 101513, - 101513, - null - ], - [ - "number-token", - "0", - 101514, - 101514, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 101515, - 101515, - null - ], - [ - "function-token", - "var(", - 101516, - 101519, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-list-group-border-width", - 101520, - 101547, - { - "value": "--bs-list-group-border-width" - } - ], - [ - ")-token", - ")", - 101548, - 101548, - null - ], - [ - "}-token", - "}", - 101549, - 101549, - null - ], - [ - "delim-token", - ".", - 101550, - 101550, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-flush", - 101551, - 101566, - { - "value": "list-group-flush" - } - ], - [ - "delim-token", - ">", - 101567, - 101567, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 101568, - 101568, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item", - 101569, - 101583, - { - "value": "list-group-item" - } - ], - [ - "colon-token", - ":", - 101584, - 101584, - null - ], - [ - "ident-token", - "last-child", - 101585, - 101594, - { - "value": "last-child" - } - ], - [ - "{-token", - "{", - 101595, - 101595, - null - ], - [ - "ident-token", - "border-bottom-width", - 101596, - 101614, - { - "value": "border-bottom-width" - } - ], - [ - "colon-token", - ":", - 101615, - 101615, - null - ], - [ - "number-token", - "0", - 101616, - 101616, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 101617, - 101617, - null - ], - [ - "delim-token", - ".", - 101618, - 101618, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-primary", - 101619, - 101641, - { - "value": "list-group-item-primary" - } - ], - [ - "{-token", - "{", - 101642, - 101642, - null - ], - [ - "ident-token", - "color", - 101643, - 101647, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 101648, - 101648, - null - ], - [ - "hash-token", - "#084298", - 101649, - 101655, - { - "value": "084298", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 101656, - 101656, - null - ], - [ - "ident-token", - "background-color", - 101657, - 101672, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 101673, - 101673, - null - ], - [ - "hash-token", - "#cfe2ff", - 101674, - 101680, - { - "value": "cfe2ff", - "type": "id" - } - ], - [ - "}-token", - "}", - 101681, - 101681, - null - ], - [ - "delim-token", - ".", - 101682, - 101682, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-primary", - 101683, - 101705, - { - "value": "list-group-item-primary" - } - ], - [ - "delim-token", - ".", - 101706, - 101706, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 101707, - 101728, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 101729, - 101729, - null - ], - [ - "ident-token", - "focus", - 101730, - 101734, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 101735, - 101735, - null - ], - [ - "delim-token", - ".", - 101736, - 101736, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-primary", - 101737, - 101759, - { - "value": "list-group-item-primary" - } - ], - [ - "delim-token", - ".", - 101760, - 101760, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 101761, - 101782, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 101783, - 101783, - null - ], - [ - "ident-token", - "hover", - 101784, - 101788, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 101789, - 101789, - null - ], - [ - "ident-token", - "color", - 101790, - 101794, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 101795, - 101795, - null - ], - [ - "hash-token", - "#084298", - 101796, - 101802, - { - "value": "084298", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 101803, - 101803, - null - ], - [ - "ident-token", - "background-color", - 101804, - 101819, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 101820, - 101820, - null - ], - [ - "hash-token", - "#bacbe6", - 101821, - 101827, - { - "value": "bacbe6", - "type": "id" - } - ], - [ - "}-token", - "}", - 101828, - 101828, - null - ], - [ - "delim-token", - ".", - 101829, - 101829, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-primary", - 101830, - 101852, - { - "value": "list-group-item-primary" - } - ], - [ - "delim-token", - ".", - 101853, - 101853, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 101854, - 101875, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 101876, - 101876, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 101877, - 101882, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 101883, - 101883, - null - ], - [ - "ident-token", - "color", - 101884, - 101888, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 101889, - 101889, - null - ], - [ - "hash-token", - "#fff", - 101890, - 101893, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 101894, - 101894, - null - ], - [ - "ident-token", - "background-color", - 101895, - 101910, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 101911, - 101911, - null - ], - [ - "hash-token", - "#084298", - 101912, - 101918, - { - "value": "084298", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 101919, - 101919, - null - ], - [ - "ident-token", - "border-color", - 101920, - 101931, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 101932, - 101932, - null - ], - [ - "hash-token", - "#084298", - 101933, - 101939, - { - "value": "084298", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 101940, - 101940, - null - ], - [ - "delim-token", - ".", - 101941, - 101941, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-secondary", - 101942, - 101966, - { - "value": "list-group-item-secondary" - } - ], - [ - "{-token", - "{", - 101967, - 101967, - null - ], - [ - "ident-token", - "color", - 101968, - 101972, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 101973, - 101973, - null - ], - [ - "hash-token", - "#41464b", - 101974, - 101980, - { - "value": "41464b", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 101981, - 101981, - null - ], - [ - "ident-token", - "background-color", - 101982, - 101997, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 101998, - 101998, - null - ], - [ - "hash-token", - "#e2e3e5", - 101999, - 102005, - { - "value": "e2e3e5", - "type": "id" - } - ], - [ - "}-token", - "}", - 102006, - 102006, - null - ], - [ - "delim-token", - ".", - 102007, - 102007, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-secondary", - 102008, - 102032, - { - "value": "list-group-item-secondary" - } - ], - [ - "delim-token", - ".", - 102033, - 102033, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102034, - 102055, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102056, - 102056, - null - ], - [ - "ident-token", - "focus", - 102057, - 102061, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 102062, - 102062, - null - ], - [ - "delim-token", - ".", - 102063, - 102063, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-secondary", - 102064, - 102088, - { - "value": "list-group-item-secondary" - } - ], - [ - "delim-token", - ".", - 102089, - 102089, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102090, - 102111, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102112, - 102112, - null - ], - [ - "ident-token", - "hover", - 102113, - 102117, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 102118, - 102118, - null - ], - [ - "ident-token", - "color", - 102119, - 102123, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102124, - 102124, - null - ], - [ - "hash-token", - "#41464b", - 102125, - 102131, - { - "value": "41464b", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102132, - 102132, - null - ], - [ - "ident-token", - "background-color", - 102133, - 102148, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102149, - 102149, - null - ], - [ - "hash-token", - "#cbccce", - 102150, - 102156, - { - "value": "cbccce", - "type": "id" - } - ], - [ - "}-token", - "}", - 102157, - 102157, - null - ], - [ - "delim-token", - ".", - 102158, - 102158, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-secondary", - 102159, - 102183, - { - "value": "list-group-item-secondary" - } - ], - [ - "delim-token", - ".", - 102184, - 102184, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102185, - 102206, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 102207, - 102207, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 102208, - 102213, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 102214, - 102214, - null - ], - [ - "ident-token", - "color", - 102215, - 102219, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102220, - 102220, - null - ], - [ - "hash-token", - "#fff", - 102221, - 102224, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 102225, - 102225, - null - ], - [ - "ident-token", - "background-color", - 102226, - 102241, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102242, - 102242, - null - ], - [ - "hash-token", - "#41464b", - 102243, - 102249, - { - "value": "41464b", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102250, - 102250, - null - ], - [ - "ident-token", - "border-color", - 102251, - 102262, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 102263, - 102263, - null - ], - [ - "hash-token", - "#41464b", - 102264, - 102270, - { - "value": "41464b", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 102271, - 102271, - null - ], - [ - "delim-token", - ".", - 102272, - 102272, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-success", - 102273, - 102295, - { - "value": "list-group-item-success" - } - ], - [ - "{-token", - "{", - 102296, - 102296, - null - ], - [ - "ident-token", - "color", - 102297, - 102301, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102302, - 102302, - null - ], - [ - "hash-token", - "#0f5132", - 102303, - 102309, - { - "value": "0f5132", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102310, - 102310, - null - ], - [ - "ident-token", - "background-color", - 102311, - 102326, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102327, - 102327, - null - ], - [ - "hash-token", - "#d1e7dd", - 102328, - 102334, - { - "value": "d1e7dd", - "type": "id" - } - ], - [ - "}-token", - "}", - 102335, - 102335, - null - ], - [ - "delim-token", - ".", - 102336, - 102336, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-success", - 102337, - 102359, - { - "value": "list-group-item-success" - } - ], - [ - "delim-token", - ".", - 102360, - 102360, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102361, - 102382, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102383, - 102383, - null - ], - [ - "ident-token", - "focus", - 102384, - 102388, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 102389, - 102389, - null - ], - [ - "delim-token", - ".", - 102390, - 102390, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-success", - 102391, - 102413, - { - "value": "list-group-item-success" - } - ], - [ - "delim-token", - ".", - 102414, - 102414, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102415, - 102436, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102437, - 102437, - null - ], - [ - "ident-token", - "hover", - 102438, - 102442, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 102443, - 102443, - null - ], - [ - "ident-token", - "color", - 102444, - 102448, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102449, - 102449, - null - ], - [ - "hash-token", - "#0f5132", - 102450, - 102456, - { - "value": "0f5132", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102457, - 102457, - null - ], - [ - "ident-token", - "background-color", - 102458, - 102473, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102474, - 102474, - null - ], - [ - "hash-token", - "#bcd0c7", - 102475, - 102481, - { - "value": "bcd0c7", - "type": "id" - } - ], - [ - "}-token", - "}", - 102482, - 102482, - null - ], - [ - "delim-token", - ".", - 102483, - 102483, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-success", - 102484, - 102506, - { - "value": "list-group-item-success" - } - ], - [ - "delim-token", - ".", - 102507, - 102507, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102508, - 102529, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 102530, - 102530, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 102531, - 102536, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 102537, - 102537, - null - ], - [ - "ident-token", - "color", - 102538, - 102542, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102543, - 102543, - null - ], - [ - "hash-token", - "#fff", - 102544, - 102547, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 102548, - 102548, - null - ], - [ - "ident-token", - "background-color", - 102549, - 102564, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102565, - 102565, - null - ], - [ - "hash-token", - "#0f5132", - 102566, - 102572, - { - "value": "0f5132", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102573, - 102573, - null - ], - [ - "ident-token", - "border-color", - 102574, - 102585, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 102586, - 102586, - null - ], - [ - "hash-token", - "#0f5132", - 102587, - 102593, - { - "value": "0f5132", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 102594, - 102594, - null - ], - [ - "delim-token", - ".", - 102595, - 102595, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-info", - 102596, - 102615, - { - "value": "list-group-item-info" - } - ], - [ - "{-token", - "{", - 102616, - 102616, - null - ], - [ - "ident-token", - "color", - 102617, - 102621, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102622, - 102622, - null - ], - [ - "hash-token", - "#055160", - 102623, - 102629, - { - "value": "055160", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102630, - 102630, - null - ], - [ - "ident-token", - "background-color", - 102631, - 102646, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102647, - 102647, - null - ], - [ - "hash-token", - "#cff4fc", - 102648, - 102654, - { - "value": "cff4fc", - "type": "id" - } - ], - [ - "}-token", - "}", - 102655, - 102655, - null - ], - [ - "delim-token", - ".", - 102656, - 102656, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-info", - 102657, - 102676, - { - "value": "list-group-item-info" - } - ], - [ - "delim-token", - ".", - 102677, - 102677, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102678, - 102699, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102700, - 102700, - null - ], - [ - "ident-token", - "focus", - 102701, - 102705, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 102706, - 102706, - null - ], - [ - "delim-token", - ".", - 102707, - 102707, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-info", - 102708, - 102727, - { - "value": "list-group-item-info" - } - ], - [ - "delim-token", - ".", - 102728, - 102728, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102729, - 102750, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 102751, - 102751, - null - ], - [ - "ident-token", - "hover", - 102752, - 102756, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 102757, - 102757, - null - ], - [ - "ident-token", - "color", - 102758, - 102762, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102763, - 102763, - null - ], - [ - "hash-token", - "#055160", - 102764, - 102770, - { - "value": "055160", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102771, - 102771, - null - ], - [ - "ident-token", - "background-color", - 102772, - 102787, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102788, - 102788, - null - ], - [ - "hash-token", - "#badce3", - 102789, - 102795, - { - "value": "badce3", - "type": "id" - } - ], - [ - "}-token", - "}", - 102796, - 102796, - null - ], - [ - "delim-token", - ".", - 102797, - 102797, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-info", - 102798, - 102817, - { - "value": "list-group-item-info" - } - ], - [ - "delim-token", - ".", - 102818, - 102818, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102819, - 102840, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 102841, - 102841, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 102842, - 102847, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 102848, - 102848, - null - ], - [ - "ident-token", - "color", - 102849, - 102853, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102854, - 102854, - null - ], - [ - "hash-token", - "#fff", - 102855, - 102858, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 102859, - 102859, - null - ], - [ - "ident-token", - "background-color", - 102860, - 102875, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102876, - 102876, - null - ], - [ - "hash-token", - "#055160", - 102877, - 102883, - { - "value": "055160", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102884, - 102884, - null - ], - [ - "ident-token", - "border-color", - 102885, - 102896, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 102897, - 102897, - null - ], - [ - "hash-token", - "#055160", - 102898, - 102904, - { - "value": "055160", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 102905, - 102905, - null - ], - [ - "delim-token", - ".", - 102906, - 102906, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-warning", - 102907, - 102929, - { - "value": "list-group-item-warning" - } - ], - [ - "{-token", - "{", - 102930, - 102930, - null - ], - [ - "ident-token", - "color", - 102931, - 102935, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 102936, - 102936, - null - ], - [ - "hash-token", - "#664d03", - 102937, - 102943, - { - "value": "664d03", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 102944, - 102944, - null - ], - [ - "ident-token", - "background-color", - 102945, - 102960, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 102961, - 102961, - null - ], - [ - "hash-token", - "#fff3cd", - 102962, - 102968, - { - "value": "fff3cd", - "type": "id" - } - ], - [ - "}-token", - "}", - 102969, - 102969, - null - ], - [ - "delim-token", - ".", - 102970, - 102970, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-warning", - 102971, - 102993, - { - "value": "list-group-item-warning" - } - ], - [ - "delim-token", - ".", - 102994, - 102994, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 102995, - 103016, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103017, - 103017, - null - ], - [ - "ident-token", - "focus", - 103018, - 103022, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 103023, - 103023, - null - ], - [ - "delim-token", - ".", - 103024, - 103024, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-warning", - 103025, - 103047, - { - "value": "list-group-item-warning" - } - ], - [ - "delim-token", - ".", - 103048, - 103048, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103049, - 103070, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103071, - 103071, - null - ], - [ - "ident-token", - "hover", - 103072, - 103076, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 103077, - 103077, - null - ], - [ - "ident-token", - "color", - 103078, - 103082, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103083, - 103083, - null - ], - [ - "hash-token", - "#664d03", - 103084, - 103090, - { - "value": "664d03", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103091, - 103091, - null - ], - [ - "ident-token", - "background-color", - 103092, - 103107, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103108, - 103108, - null - ], - [ - "hash-token", - "#e6dbb9", - 103109, - 103115, - { - "value": "e6dbb9", - "type": "id" - } - ], - [ - "}-token", - "}", - 103116, - 103116, - null - ], - [ - "delim-token", - ".", - 103117, - 103117, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-warning", - 103118, - 103140, - { - "value": "list-group-item-warning" - } - ], - [ - "delim-token", - ".", - 103141, - 103141, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103142, - 103163, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 103164, - 103164, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 103165, - 103170, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 103171, - 103171, - null - ], - [ - "ident-token", - "color", - 103172, - 103176, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103177, - 103177, - null - ], - [ - "hash-token", - "#fff", - 103178, - 103181, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 103182, - 103182, - null - ], - [ - "ident-token", - "background-color", - 103183, - 103198, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103199, - 103199, - null - ], - [ - "hash-token", - "#664d03", - 103200, - 103206, - { - "value": "664d03", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103207, - 103207, - null - ], - [ - "ident-token", - "border-color", - 103208, - 103219, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 103220, - 103220, - null - ], - [ - "hash-token", - "#664d03", - 103221, - 103227, - { - "value": "664d03", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 103228, - 103228, - null - ], - [ - "delim-token", - ".", - 103229, - 103229, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-danger", - 103230, - 103251, - { - "value": "list-group-item-danger" - } - ], - [ - "{-token", - "{", - 103252, - 103252, - null - ], - [ - "ident-token", - "color", - 103253, - 103257, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103258, - 103258, - null - ], - [ - "hash-token", - "#842029", - 103259, - 103265, - { - "value": "842029", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103266, - 103266, - null - ], - [ - "ident-token", - "background-color", - 103267, - 103282, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103283, - 103283, - null - ], - [ - "hash-token", - "#f8d7da", - 103284, - 103290, - { - "value": "f8d7da", - "type": "id" - } - ], - [ - "}-token", - "}", - 103291, - 103291, - null - ], - [ - "delim-token", - ".", - 103292, - 103292, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-danger", - 103293, - 103314, - { - "value": "list-group-item-danger" - } - ], - [ - "delim-token", - ".", - 103315, - 103315, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103316, - 103337, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103338, - 103338, - null - ], - [ - "ident-token", - "focus", - 103339, - 103343, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 103344, - 103344, - null - ], - [ - "delim-token", - ".", - 103345, - 103345, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-danger", - 103346, - 103367, - { - "value": "list-group-item-danger" - } - ], - [ - "delim-token", - ".", - 103368, - 103368, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103369, - 103390, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103391, - 103391, - null - ], - [ - "ident-token", - "hover", - 103392, - 103396, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 103397, - 103397, - null - ], - [ - "ident-token", - "color", - 103398, - 103402, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103403, - 103403, - null - ], - [ - "hash-token", - "#842029", - 103404, - 103410, - { - "value": "842029", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103411, - 103411, - null - ], - [ - "ident-token", - "background-color", - 103412, - 103427, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103428, - 103428, - null - ], - [ - "hash-token", - "#dfc2c4", - 103429, - 103435, - { - "value": "dfc2c4", - "type": "id" - } - ], - [ - "}-token", - "}", - 103436, - 103436, - null - ], - [ - "delim-token", - ".", - 103437, - 103437, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-danger", - 103438, - 103459, - { - "value": "list-group-item-danger" - } - ], - [ - "delim-token", - ".", - 103460, - 103460, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103461, - 103482, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 103483, - 103483, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 103484, - 103489, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 103490, - 103490, - null - ], - [ - "ident-token", - "color", - 103491, - 103495, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103496, - 103496, - null - ], - [ - "hash-token", - "#fff", - 103497, - 103500, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 103501, - 103501, - null - ], - [ - "ident-token", - "background-color", - 103502, - 103517, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103518, - 103518, - null - ], - [ - "hash-token", - "#842029", - 103519, - 103525, - { - "value": "842029", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103526, - 103526, - null - ], - [ - "ident-token", - "border-color", - 103527, - 103538, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 103539, - 103539, - null - ], - [ - "hash-token", - "#842029", - 103540, - 103546, - { - "value": "842029", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 103547, - 103547, - null - ], - [ - "delim-token", - ".", - 103548, - 103548, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-light", - 103549, - 103569, - { - "value": "list-group-item-light" - } - ], - [ - "{-token", - "{", - 103570, - 103570, - null - ], - [ - "ident-token", - "color", - 103571, - 103575, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103576, - 103576, - null - ], - [ - "hash-token", - "#636464", - 103577, - 103583, - { - "value": "636464", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103584, - 103584, - null - ], - [ - "ident-token", - "background-color", - 103585, - 103600, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103601, - 103601, - null - ], - [ - "hash-token", - "#fefefe", - 103602, - 103608, - { - "value": "fefefe", - "type": "id" - } - ], - [ - "}-token", - "}", - 103609, - 103609, - null - ], - [ - "delim-token", - ".", - 103610, - 103610, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-light", - 103611, - 103631, - { - "value": "list-group-item-light" - } - ], - [ - "delim-token", - ".", - 103632, - 103632, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103633, - 103654, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103655, - 103655, - null - ], - [ - "ident-token", - "focus", - 103656, - 103660, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 103661, - 103661, - null - ], - [ - "delim-token", - ".", - 103662, - 103662, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-light", - 103663, - 103683, - { - "value": "list-group-item-light" - } - ], - [ - "delim-token", - ".", - 103684, - 103684, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103685, - 103706, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103707, - 103707, - null - ], - [ - "ident-token", - "hover", - 103708, - 103712, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 103713, - 103713, - null - ], - [ - "ident-token", - "color", - 103714, - 103718, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103719, - 103719, - null - ], - [ - "hash-token", - "#636464", - 103720, - 103726, - { - "value": "636464", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103727, - 103727, - null - ], - [ - "ident-token", - "background-color", - 103728, - 103743, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103744, - 103744, - null - ], - [ - "hash-token", - "#e5e5e5", - 103745, - 103751, - { - "value": "e5e5e5", - "type": "id" - } - ], - [ - "}-token", - "}", - 103752, - 103752, - null - ], - [ - "delim-token", - ".", - 103753, - 103753, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-light", - 103754, - 103774, - { - "value": "list-group-item-light" - } - ], - [ - "delim-token", - ".", - 103775, - 103775, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103776, - 103797, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 103798, - 103798, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 103799, - 103804, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 103805, - 103805, - null - ], - [ - "ident-token", - "color", - 103806, - 103810, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103811, - 103811, - null - ], - [ - "hash-token", - "#fff", - 103812, - 103815, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 103816, - 103816, - null - ], - [ - "ident-token", - "background-color", - 103817, - 103832, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103833, - 103833, - null - ], - [ - "hash-token", - "#636464", - 103834, - 103840, - { - "value": "636464", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103841, - 103841, - null - ], - [ - "ident-token", - "border-color", - 103842, - 103853, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 103854, - 103854, - null - ], - [ - "hash-token", - "#636464", - 103855, - 103861, - { - "value": "636464", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 103862, - 103862, - null - ], - [ - "delim-token", - ".", - 103863, - 103863, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-dark", - 103864, - 103883, - { - "value": "list-group-item-dark" - } - ], - [ - "{-token", - "{", - 103884, - 103884, - null - ], - [ - "ident-token", - "color", - 103885, - 103889, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 103890, - 103890, - null - ], - [ - "hash-token", - "#141619", - 103891, - 103897, - { - "value": "141619", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 103898, - 103898, - null - ], - [ - "ident-token", - "background-color", - 103899, - 103914, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 103915, - 103915, - null - ], - [ - "hash-token", - "#d3d3d4", - 103916, - 103922, - { - "value": "d3d3d4", - "type": "id" - } - ], - [ - "}-token", - "}", - 103923, - 103923, - null - ], - [ - "delim-token", - ".", - 103924, - 103924, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-dark", - 103925, - 103944, - { - "value": "list-group-item-dark" - } - ], - [ - "delim-token", - ".", - 103945, - 103945, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103946, - 103967, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 103968, - 103968, - null - ], - [ - "ident-token", - "focus", - 103969, - 103973, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 103974, - 103974, - null - ], - [ - "delim-token", - ".", - 103975, - 103975, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-dark", - 103976, - 103995, - { - "value": "list-group-item-dark" - } - ], - [ - "delim-token", - ".", - 103996, - 103996, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 103997, - 104018, - { - "value": "list-group-item-action" - } - ], - [ - "colon-token", - ":", - 104019, - 104019, - null - ], - [ - "ident-token", - "hover", - 104020, - 104024, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 104025, - 104025, - null - ], - [ - "ident-token", - "color", - 104026, - 104030, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 104031, - 104031, - null - ], - [ - "hash-token", - "#141619", - 104032, - 104038, - { - "value": "141619", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 104039, - 104039, - null - ], - [ - "ident-token", - "background-color", - 104040, - 104055, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 104056, - 104056, - null - ], - [ - "hash-token", - "#bebebf", - 104057, - 104063, - { - "value": "bebebf", - "type": "id" - } - ], - [ - "}-token", - "}", - 104064, - 104064, - null - ], - [ - "delim-token", - ".", - 104065, - 104065, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-dark", - 104066, - 104085, - { - "value": "list-group-item-dark" - } - ], - [ - "delim-token", - ".", - 104086, - 104086, - { - "value": "." - } - ], - [ - "ident-token", - "list-group-item-action", - 104087, - 104108, - { - "value": "list-group-item-action" - } - ], - [ - "delim-token", - ".", - 104109, - 104109, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 104110, - 104115, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 104116, - 104116, - null - ], - [ - "ident-token", - "color", - 104117, - 104121, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 104122, - 104122, - null - ], - [ - "hash-token", - "#fff", - 104123, - 104126, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 104127, - 104127, - null - ], - [ - "ident-token", - "background-color", - 104128, - 104143, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 104144, - 104144, - null - ], - [ - "hash-token", - "#141619", - 104145, - 104151, - { - "value": "141619", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 104152, - 104152, - null - ], - [ - "ident-token", - "border-color", - 104153, - 104164, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 104165, - 104165, - null - ], - [ - "hash-token", - "#141619", - 104166, - 104172, - { - "value": "141619", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 104173, - 104173, - null - ], - [ - "delim-token", - ".", - 104174, - 104174, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 104175, - 104183, - { - "value": "btn-close" - } - ], - [ - "{-token", - "{", - 104184, - 104184, - null - ], - [ - "ident-token", - "box-sizing", - 104185, - 104194, - { - "value": "box-sizing" - } - ], - [ - "colon-token", - ":", - 104195, - 104195, - null - ], - [ - "ident-token", - "content-box", - 104196, - 104206, - { - "value": "content-box" - } - ], - [ - "semicolon-token", - ";", - 104207, - 104207, - null - ], - [ - "ident-token", - "width", - 104208, - 104212, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 104213, - 104213, - null - ], - [ - "dimension-token", - "1em", - 104214, - 104216, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 104217, - 104217, - null - ], - [ - "ident-token", - "height", - 104218, - 104223, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 104224, - 104224, - null - ], - [ - "dimension-token", - "1em", - 104225, - 104227, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 104228, - 104228, - null - ], - [ - "ident-token", - "padding", - 104229, - 104235, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 104236, - 104236, - null - ], - [ - "dimension-token", - ".25em", - 104237, - 104241, - { - "value": 0.25, - "type": "number", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 104242, - 104242, - null - ], - [ - "dimension-token", - ".25em", - 104243, - 104247, - { - "value": 0.25, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 104248, - 104248, - null - ], - [ - "ident-token", - "color", - 104249, - 104253, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 104254, - 104254, - null - ], - [ - "hash-token", - "#000", - 104255, - 104258, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 104259, - 104259, - null - ], - [ - "ident-token", - "background", - 104260, - 104269, - { - "value": "background" - } - ], - [ - "colon-token", - ":", - 104270, - 104270, - null - ], - [ - "ident-token", - "transparent", - 104271, - 104281, - { - "value": "transparent" - } - ], - [ - "whitespace-token", - " ", - 104282, - 104282, - null - ], - [ - "function-token", - "url(", - 104283, - 104286, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e\"", - 104287, - 104602, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 104603, - 104603, - null - ], - [ - "whitespace-token", - " ", - 104604, - 104604, - null - ], - [ - "ident-token", - "center", - 104605, - 104610, - { - "value": "center" - } - ], - [ - "delim-token", - "/", - 104611, - 104611, - { - "value": "/" - } - ], - [ - "dimension-token", - "1em", - 104612, - 104614, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "whitespace-token", - " ", - 104615, - 104615, - null - ], - [ - "ident-token", - "auto", - 104616, - 104619, - { - "value": "auto" - } - ], - [ - "whitespace-token", - " ", - 104620, - 104620, - null - ], - [ - "ident-token", - "no-repeat", - 104621, - 104629, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 104630, - 104630, - null - ], - [ - "ident-token", - "border", - 104631, - 104636, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 104637, - 104637, - null - ], - [ - "number-token", - "0", - 104638, - 104638, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 104639, - 104639, - null - ], - [ - "ident-token", - "border-radius", - 104640, - 104652, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 104653, - 104653, - null - ], - [ - "dimension-token", - ".375rem", - 104654, - 104660, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 104661, - 104661, - null - ], - [ - "ident-token", - "opacity", - 104662, - 104668, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 104669, - 104669, - null - ], - [ - "number-token", - ".5", - 104670, - 104671, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 104672, - 104672, - null - ], - [ - "delim-token", - ".", - 104673, - 104673, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 104674, - 104682, - { - "value": "btn-close" - } - ], - [ - "colon-token", - ":", - 104683, - 104683, - null - ], - [ - "ident-token", - "hover", - 104684, - 104688, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 104689, - 104689, - null - ], - [ - "ident-token", - "color", - 104690, - 104694, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 104695, - 104695, - null - ], - [ - "hash-token", - "#000", - 104696, - 104699, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 104700, - 104700, - null - ], - [ - "ident-token", - "text-decoration", - 104701, - 104715, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 104716, - 104716, - null - ], - [ - "ident-token", - "none", - 104717, - 104720, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 104721, - 104721, - null - ], - [ - "ident-token", - "opacity", - 104722, - 104728, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 104729, - 104729, - null - ], - [ - "number-token", - ".75", - 104730, - 104732, - { - "value": 0.75, - "type": "number" - } - ], - [ - "}-token", - "}", - 104733, - 104733, - null - ], - [ - "delim-token", - ".", - 104734, - 104734, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 104735, - 104743, - { - "value": "btn-close" - } - ], - [ - "colon-token", - ":", - 104744, - 104744, - null - ], - [ - "ident-token", - "focus", - 104745, - 104749, - { - "value": "focus" - } - ], - [ - "{-token", - "{", - 104750, - 104750, - null - ], - [ - "ident-token", - "outline", - 104751, - 104757, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 104758, - 104758, - null - ], - [ - "number-token", - "0", - 104759, - 104759, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 104760, - 104760, - null - ], - [ - "ident-token", - "box-shadow", - 104761, - 104770, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 104771, - 104771, - null - ], - [ - "number-token", - "0", - 104772, - 104772, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 104773, - 104773, - null - ], - [ - "number-token", - "0", - 104774, - 104774, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 104775, - 104775, - null - ], - [ - "number-token", - "0", - 104776, - 104776, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 104777, - 104777, - null - ], - [ - "dimension-token", - ".25rem", - 104778, - 104783, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 104784, - 104784, - null - ], - [ - "function-token", - "rgba(", - 104785, - 104789, - { - "value": "rgba" - } - ], - [ - "number-token", - "13", - 104790, - 104791, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 104792, - 104792, - null - ], - [ - "number-token", - "110", - 104793, - 104795, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 104796, - 104796, - null - ], - [ - "number-token", - "253", - 104797, - 104799, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 104800, - 104800, - null - ], - [ - "number-token", - ".25", - 104801, - 104803, - { - "value": 0.25, - "type": "number" - } - ], - [ - ")-token", - ")", - 104804, - 104804, - null - ], - [ - "semicolon-token", - ";", - 104805, - 104805, - null - ], - [ - "ident-token", - "opacity", - 104806, - 104812, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 104813, - 104813, - null - ], - [ - "number-token", - "1", - 104814, - 104814, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 104815, - 104815, - null - ], - [ - "delim-token", - ".", - 104816, - 104816, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 104817, - 104825, - { - "value": "btn-close" - } - ], - [ - "delim-token", - ".", - 104826, - 104826, - { - "value": "." - } - ], - [ - "ident-token", - "disabled", - 104827, - 104834, - { - "value": "disabled" - } - ], - [ - "comma-token", - ",", - 104835, - 104835, - null - ], - [ - "delim-token", - ".", - 104836, - 104836, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 104837, - 104845, - { - "value": "btn-close" - } - ], - [ - "colon-token", - ":", - 104846, - 104846, - null - ], - [ - "ident-token", - "disabled", - 104847, - 104854, - { - "value": "disabled" - } - ], - [ - "{-token", - "{", - 104855, - 104855, - null - ], - [ - "ident-token", - "pointer-events", - 104856, - 104869, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 104870, - 104870, - null - ], - [ - "ident-token", - "none", - 104871, - 104874, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 104875, - 104875, - null - ], - [ - "ident-token", - "-webkit-user-select", - 104876, - 104894, - { - "value": "-webkit-user-select" - } - ], - [ - "colon-token", - ":", - 104895, - 104895, - null - ], - [ - "ident-token", - "none", - 104896, - 104899, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 104900, - 104900, - null - ], - [ - "ident-token", - "-moz-user-select", - 104901, - 104916, - { - "value": "-moz-user-select" - } - ], - [ - "colon-token", - ":", - 104917, - 104917, - null - ], - [ - "ident-token", - "none", - 104918, - 104921, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 104922, - 104922, - null - ], - [ - "ident-token", - "user-select", - 104923, - 104933, - { - "value": "user-select" - } - ], - [ - "colon-token", - ":", - 104934, - 104934, - null - ], - [ - "ident-token", - "none", - 104935, - 104938, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 104939, - 104939, - null - ], - [ - "ident-token", - "opacity", - 104940, - 104946, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 104947, - 104947, - null - ], - [ - "number-token", - ".25", - 104948, - 104950, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 104951, - 104951, - null - ], - [ - "delim-token", - ".", - 104952, - 104952, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close-white", - 104953, - 104967, - { - "value": "btn-close-white" - } - ], - [ - "{-token", - "{", - 104968, - 104968, - null - ], - [ - "ident-token", - "filter", - 104969, - 104974, - { - "value": "filter" - } - ], - [ - "colon-token", - ":", - 104975, - 104975, - null - ], - [ - "function-token", - "invert(", - 104976, - 104982, - { - "value": "invert" - } - ], - [ - "number-token", - "1", - 104983, - 104983, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 104984, - 104984, - null - ], - [ - "whitespace-token", - " ", - 104985, - 104985, - null - ], - [ - "function-token", - "grayscale(", - 104986, - 104995, - { - "value": "grayscale" - } - ], - [ - "percentage-token", - "100%", - 104996, - 104999, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 105000, - 105000, - null - ], - [ - "whitespace-token", - " ", - 105001, - 105001, - null - ], - [ - "function-token", - "brightness(", - 105002, - 105012, - { - "value": "brightness" - } - ], - [ - "percentage-token", - "200%", - 105013, - 105016, - { - "value": 200 - } - ], - [ - ")-token", - ")", - 105017, - 105017, - null - ], - [ - "}-token", - "}", - 105018, - 105018, - null - ], - [ - "delim-token", - ".", - 105019, - 105019, - { - "value": "." - } - ], - [ - "ident-token", - "toast", - 105020, - 105024, - { - "value": "toast" - } - ], - [ - "{-token", - "{", - 105025, - 105025, - null - ], - [ - "ident-token", - "--bs-toast-zindex", - 105026, - 105042, - { - "value": "--bs-toast-zindex" - } - ], - [ - "colon-token", - ":", - 105043, - 105043, - null - ], - [ - "number-token", - "1090", - 105044, - 105047, - { - "value": 1090, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 105048, - 105048, - null - ], - [ - "ident-token", - "--bs-toast-padding-x", - 105049, - 105068, - { - "value": "--bs-toast-padding-x" - } - ], - [ - "colon-token", - ":", - 105069, - 105069, - null - ], - [ - "dimension-token", - "0.75rem", - 105070, - 105076, - { - "value": 0.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 105077, - 105077, - null - ], - [ - "ident-token", - "--bs-toast-padding-y", - 105078, - 105097, - { - "value": "--bs-toast-padding-y" - } - ], - [ - "colon-token", - ":", - 105098, - 105098, - null - ], - [ - "dimension-token", - "0.5rem", - 105099, - 105104, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 105105, - 105105, - null - ], - [ - "ident-token", - "--bs-toast-spacing", - 105106, - 105123, - { - "value": "--bs-toast-spacing" - } - ], - [ - "colon-token", - ":", - 105124, - 105124, - null - ], - [ - "dimension-token", - "1.5rem", - 105125, - 105130, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 105131, - 105131, - null - ], - [ - "ident-token", - "--bs-toast-max-width", - 105132, - 105151, - { - "value": "--bs-toast-max-width" - } - ], - [ - "colon-token", - ":", - 105152, - 105152, - null - ], - [ - "dimension-token", - "350px", - 105153, - 105157, - { - "value": 350, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 105158, - 105158, - null - ], - [ - "ident-token", - "--bs-toast-font-size", - 105159, - 105178, - { - "value": "--bs-toast-font-size" - } - ], - [ - "colon-token", - ":", - 105179, - 105179, - null - ], - [ - "dimension-token", - "0.875rem", - 105180, - 105187, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 105188, - 105188, - null - ], - [ - "ident-token", - "--bs-toast-color", - 105189, - 105204, - { - "value": "--bs-toast-color" - } - ], - [ - "colon-token", - ":", - 105205, - 105205, - null - ], - [ - "whitespace-token", - " ", - 105206, - 105206, - null - ], - [ - "semicolon-token", - ";", - 105207, - 105207, - null - ], - [ - "ident-token", - "--bs-toast-bg", - 105208, - 105220, - { - "value": "--bs-toast-bg" - } - ], - [ - "colon-token", - ":", - 105221, - 105221, - null - ], - [ - "function-token", - "rgba(", - 105222, - 105226, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 105227, - 105229, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105230, - 105230, - null - ], - [ - "whitespace-token", - " ", - 105231, - 105231, - null - ], - [ - "number-token", - "255", - 105232, - 105234, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105235, - 105235, - null - ], - [ - "whitespace-token", - " ", - 105236, - 105236, - null - ], - [ - "number-token", - "255", - 105237, - 105239, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105240, - 105240, - null - ], - [ - "whitespace-token", - " ", - 105241, - 105241, - null - ], - [ - "number-token", - "0.85", - 105242, - 105245, - { - "value": 0.85, - "type": "number" - } - ], - [ - ")-token", - ")", - 105246, - 105246, - null - ], - [ - "semicolon-token", - ";", - 105247, - 105247, - null - ], - [ - "ident-token", - "--bs-toast-border-width", - 105248, - 105270, - { - "value": "--bs-toast-border-width" - } - ], - [ - "colon-token", - ":", - 105271, - 105271, - null - ], - [ - "dimension-token", - "1px", - 105272, - 105274, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 105275, - 105275, - null - ], - [ - "ident-token", - "--bs-toast-border-color", - 105276, - 105298, - { - "value": "--bs-toast-border-color" - } - ], - [ - "colon-token", - ":", - 105299, - 105299, - null - ], - [ - "function-token", - "var(", - 105300, - 105303, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 105304, - 105332, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 105333, - 105333, - null - ], - [ - "semicolon-token", - ";", - 105334, - 105334, - null - ], - [ - "ident-token", - "--bs-toast-border-radius", - 105335, - 105358, - { - "value": "--bs-toast-border-radius" - } - ], - [ - "colon-token", - ":", - 105359, - 105359, - null - ], - [ - "dimension-token", - "0.375rem", - 105360, - 105367, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 105368, - 105368, - null - ], - [ - "ident-token", - "--bs-toast-box-shadow", - 105369, - 105389, - { - "value": "--bs-toast-box-shadow" - } - ], - [ - "colon-token", - ":", - 105390, - 105390, - null - ], - [ - "number-token", - "0", - 105391, - 105391, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 105392, - 105392, - null - ], - [ - "dimension-token", - "0.5rem", - 105393, - 105398, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 105399, - 105399, - null - ], - [ - "dimension-token", - "1rem", - 105400, - 105403, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 105404, - 105404, - null - ], - [ - "function-token", - "rgba(", - 105405, - 105409, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 105410, - 105410, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105411, - 105411, - null - ], - [ - "whitespace-token", - " ", - 105412, - 105412, - null - ], - [ - "number-token", - "0", - 105413, - 105413, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105414, - 105414, - null - ], - [ - "whitespace-token", - " ", - 105415, - 105415, - null - ], - [ - "number-token", - "0", - 105416, - 105416, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105417, - 105417, - null - ], - [ - "whitespace-token", - " ", - 105418, - 105418, - null - ], - [ - "number-token", - "0.15", - 105419, - 105422, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 105423, - 105423, - null - ], - [ - "semicolon-token", - ";", - 105424, - 105424, - null - ], - [ - "ident-token", - "--bs-toast-header-color", - 105425, - 105447, - { - "value": "--bs-toast-header-color" - } - ], - [ - "colon-token", - ":", - 105448, - 105448, - null - ], - [ - "hash-token", - "#6c757d", - 105449, - 105455, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 105456, - 105456, - null - ], - [ - "ident-token", - "--bs-toast-header-bg", - 105457, - 105476, - { - "value": "--bs-toast-header-bg" - } - ], - [ - "colon-token", - ":", - 105477, - 105477, - null - ], - [ - "function-token", - "rgba(", - 105478, - 105482, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 105483, - 105485, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105486, - 105486, - null - ], - [ - "whitespace-token", - " ", - 105487, - 105487, - null - ], - [ - "number-token", - "255", - 105488, - 105490, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105491, - 105491, - null - ], - [ - "whitespace-token", - " ", - 105492, - 105492, - null - ], - [ - "number-token", - "255", - 105493, - 105495, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105496, - 105496, - null - ], - [ - "whitespace-token", - " ", - 105497, - 105497, - null - ], - [ - "number-token", - "0.85", - 105498, - 105501, - { - "value": 0.85, - "type": "number" - } - ], - [ - ")-token", - ")", - 105502, - 105502, - null - ], - [ - "semicolon-token", - ";", - 105503, - 105503, - null - ], - [ - "ident-token", - "--bs-toast-header-border-color", - 105504, - 105533, - { - "value": "--bs-toast-header-border-color" - } - ], - [ - "colon-token", - ":", - 105534, - 105534, - null - ], - [ - "function-token", - "rgba(", - 105535, - 105539, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 105540, - 105540, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105541, - 105541, - null - ], - [ - "whitespace-token", - " ", - 105542, - 105542, - null - ], - [ - "number-token", - "0", - 105543, - 105543, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105544, - 105544, - null - ], - [ - "whitespace-token", - " ", - 105545, - 105545, - null - ], - [ - "number-token", - "0", - 105546, - 105546, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 105547, - 105547, - null - ], - [ - "whitespace-token", - " ", - 105548, - 105548, - null - ], - [ - "number-token", - "0.05", - 105549, - 105552, - { - "value": 0.05, - "type": "number" - } - ], - [ - ")-token", - ")", - 105553, - 105553, - null - ], - [ - "semicolon-token", - ";", - 105554, - 105554, - null - ], - [ - "ident-token", - "width", - 105555, - 105559, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 105560, - 105560, - null - ], - [ - "function-token", - "var(", - 105561, - 105564, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-max-width", - 105565, - 105584, - { - "value": "--bs-toast-max-width" - } - ], - [ - ")-token", - ")", - 105585, - 105585, - null - ], - [ - "semicolon-token", - ";", - 105586, - 105586, - null - ], - [ - "ident-token", - "max-width", - 105587, - 105595, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 105596, - 105596, - null - ], - [ - "percentage-token", - "100%", - 105597, - 105600, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 105601, - 105601, - null - ], - [ - "ident-token", - "font-size", - 105602, - 105610, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 105611, - 105611, - null - ], - [ - "function-token", - "var(", - 105612, - 105615, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-font-size", - 105616, - 105635, - { - "value": "--bs-toast-font-size" - } - ], - [ - ")-token", - ")", - 105636, - 105636, - null - ], - [ - "semicolon-token", - ";", - 105637, - 105637, - null - ], - [ - "ident-token", - "color", - 105638, - 105642, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 105643, - 105643, - null - ], - [ - "function-token", - "var(", - 105644, - 105647, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-color", - 105648, - 105663, - { - "value": "--bs-toast-color" - } - ], - [ - ")-token", - ")", - 105664, - 105664, - null - ], - [ - "semicolon-token", - ";", - 105665, - 105665, - null - ], - [ - "ident-token", - "pointer-events", - 105666, - 105679, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 105680, - 105680, - null - ], - [ - "ident-token", - "auto", - 105681, - 105684, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 105685, - 105685, - null - ], - [ - "ident-token", - "background-color", - 105686, - 105701, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 105702, - 105702, - null - ], - [ - "function-token", - "var(", - 105703, - 105706, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-bg", - 105707, - 105719, - { - "value": "--bs-toast-bg" - } - ], - [ - ")-token", - ")", - 105720, - 105720, - null - ], - [ - "semicolon-token", - ";", - 105721, - 105721, - null - ], - [ - "ident-token", - "background-clip", - 105722, - 105736, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 105737, - 105737, - null - ], - [ - "ident-token", - "padding-box", - 105738, - 105748, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 105749, - 105749, - null - ], - [ - "ident-token", - "border", - 105750, - 105755, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 105756, - 105756, - null - ], - [ - "function-token", - "var(", - 105757, - 105760, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-width", - 105761, - 105783, - { - "value": "--bs-toast-border-width" - } - ], - [ - ")-token", - ")", - 105784, - 105784, - null - ], - [ - "whitespace-token", - " ", - 105785, - 105785, - null - ], - [ - "ident-token", - "solid", - 105786, - 105790, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 105791, - 105791, - null - ], - [ - "function-token", - "var(", - 105792, - 105795, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-color", - 105796, - 105818, - { - "value": "--bs-toast-border-color" - } - ], - [ - ")-token", - ")", - 105819, - 105819, - null - ], - [ - "semicolon-token", - ";", - 105820, - 105820, - null - ], - [ - "ident-token", - "box-shadow", - 105821, - 105830, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 105831, - 105831, - null - ], - [ - "function-token", - "var(", - 105832, - 105835, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-box-shadow", - 105836, - 105856, - { - "value": "--bs-toast-box-shadow" - } - ], - [ - ")-token", - ")", - 105857, - 105857, - null - ], - [ - "semicolon-token", - ";", - 105858, - 105858, - null - ], - [ - "ident-token", - "border-radius", - 105859, - 105871, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 105872, - 105872, - null - ], - [ - "function-token", - "var(", - 105873, - 105876, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-radius", - 105877, - 105900, - { - "value": "--bs-toast-border-radius" - } - ], - [ - ")-token", - ")", - 105901, - 105901, - null - ], - [ - "}-token", - "}", - 105902, - 105902, - null - ], - [ - "delim-token", - ".", - 105903, - 105903, - { - "value": "." - } - ], - [ - "ident-token", - "toast", - 105904, - 105908, - { - "value": "toast" - } - ], - [ - "delim-token", - ".", - 105909, - 105909, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 105910, - 105916, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 105917, - 105917, - null - ], - [ - "ident-token", - "opacity", - 105918, - 105924, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 105925, - 105925, - null - ], - [ - "number-token", - "0", - 105926, - 105926, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 105927, - 105927, - null - ], - [ - "delim-token", - ".", - 105928, - 105928, - { - "value": "." - } - ], - [ - "ident-token", - "toast", - 105929, - 105933, - { - "value": "toast" - } - ], - [ - "colon-token", - ":", - 105934, - 105934, - null - ], - [ - "function-token", - "not(", - 105935, - 105938, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 105939, - 105939, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 105940, - 105943, - { - "value": "show" - } - ], - [ - ")-token", - ")", - 105944, - 105944, - null - ], - [ - "{-token", - "{", - 105945, - 105945, - null - ], - [ - "ident-token", - "display", - 105946, - 105952, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 105953, - 105953, - null - ], - [ - "ident-token", - "none", - 105954, - 105957, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 105958, - 105958, - null - ], - [ - "delim-token", - ".", - 105959, - 105959, - { - "value": "." - } - ], - [ - "ident-token", - "toast-container", - 105960, - 105974, - { - "value": "toast-container" - } - ], - [ - "{-token", - "{", - 105975, - 105975, - null - ], - [ - "ident-token", - "position", - 105976, - 105983, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 105984, - 105984, - null - ], - [ - "ident-token", - "absolute", - 105985, - 105992, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 105993, - 105993, - null - ], - [ - "ident-token", - "z-index", - 105994, - 106000, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 106001, - 106001, - null - ], - [ - "function-token", - "var(", - 106002, - 106005, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-zindex", - 106006, - 106022, - { - "value": "--bs-toast-zindex" - } - ], - [ - ")-token", - ")", - 106023, - 106023, - null - ], - [ - "semicolon-token", - ";", - 106024, - 106024, - null - ], - [ - "ident-token", - "width", - 106025, - 106029, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 106030, - 106030, - null - ], - [ - "ident-token", - "-webkit-max-content", - 106031, - 106049, - { - "value": "-webkit-max-content" - } - ], - [ - "semicolon-token", - ";", - 106050, - 106050, - null - ], - [ - "ident-token", - "width", - 106051, - 106055, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 106056, - 106056, - null - ], - [ - "ident-token", - "-moz-max-content", - 106057, - 106072, - { - "value": "-moz-max-content" - } - ], - [ - "semicolon-token", - ";", - 106073, - 106073, - null - ], - [ - "ident-token", - "width", - 106074, - 106078, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 106079, - 106079, - null - ], - [ - "ident-token", - "max-content", - 106080, - 106090, - { - "value": "max-content" - } - ], - [ - "semicolon-token", - ";", - 106091, - 106091, - null - ], - [ - "ident-token", - "max-width", - 106092, - 106100, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 106101, - 106101, - null - ], - [ - "percentage-token", - "100%", - 106102, - 106105, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 106106, - 106106, - null - ], - [ - "ident-token", - "pointer-events", - 106107, - 106120, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 106121, - 106121, - null - ], - [ - "ident-token", - "none", - 106122, - 106125, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 106126, - 106126, - null - ], - [ - "delim-token", - ".", - 106127, - 106127, - { - "value": "." - } - ], - [ - "ident-token", - "toast-container", - 106128, - 106142, - { - "value": "toast-container" - } - ], - [ - "delim-token", - ">", - 106143, - 106143, - { - "value": ">" - } - ], - [ - "colon-token", - ":", - 106144, - 106144, - null - ], - [ - "function-token", - "not(", - 106145, - 106148, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 106149, - 106149, - null - ], - [ - "ident-token", - "last-child", - 106150, - 106159, - { - "value": "last-child" - } - ], - [ - ")-token", - ")", - 106160, - 106160, - null - ], - [ - "{-token", - "{", - 106161, - 106161, - null - ], - [ - "ident-token", - "margin-bottom", - 106162, - 106174, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 106175, - 106175, - null - ], - [ - "function-token", - "var(", - 106176, - 106179, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-spacing", - 106180, - 106197, - { - "value": "--bs-toast-spacing" - } - ], - [ - ")-token", - ")", - 106198, - 106198, - null - ], - [ - "}-token", - "}", - 106199, - 106199, - null - ], - [ - "delim-token", - ".", - 106200, - 106200, - { - "value": "." - } - ], - [ - "ident-token", - "toast-header", - 106201, - 106212, - { - "value": "toast-header" - } - ], - [ - "{-token", - "{", - 106213, - 106213, - null - ], - [ - "ident-token", - "display", - 106214, - 106220, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 106221, - 106221, - null - ], - [ - "ident-token", - "flex", - 106222, - 106225, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 106226, - 106226, - null - ], - [ - "ident-token", - "align-items", - 106227, - 106237, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 106238, - 106238, - null - ], - [ - "ident-token", - "center", - 106239, - 106244, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 106245, - 106245, - null - ], - [ - "ident-token", - "padding", - 106246, - 106252, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 106253, - 106253, - null - ], - [ - "function-token", - "var(", - 106254, - 106257, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-padding-y", - 106258, - 106277, - { - "value": "--bs-toast-padding-y" - } - ], - [ - ")-token", - ")", - 106278, - 106278, - null - ], - [ - "whitespace-token", - " ", - 106279, - 106279, - null - ], - [ - "function-token", - "var(", - 106280, - 106283, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-padding-x", - 106284, - 106303, - { - "value": "--bs-toast-padding-x" - } - ], - [ - ")-token", - ")", - 106304, - 106304, - null - ], - [ - "semicolon-token", - ";", - 106305, - 106305, - null - ], - [ - "ident-token", - "color", - 106306, - 106310, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 106311, - 106311, - null - ], - [ - "function-token", - "var(", - 106312, - 106315, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-header-color", - 106316, - 106338, - { - "value": "--bs-toast-header-color" - } - ], - [ - ")-token", - ")", - 106339, - 106339, - null - ], - [ - "semicolon-token", - ";", - 106340, - 106340, - null - ], - [ - "ident-token", - "background-color", - 106341, - 106356, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 106357, - 106357, - null - ], - [ - "function-token", - "var(", - 106358, - 106361, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-header-bg", - 106362, - 106381, - { - "value": "--bs-toast-header-bg" - } - ], - [ - ")-token", - ")", - 106382, - 106382, - null - ], - [ - "semicolon-token", - ";", - 106383, - 106383, - null - ], - [ - "ident-token", - "background-clip", - 106384, - 106398, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 106399, - 106399, - null - ], - [ - "ident-token", - "padding-box", - 106400, - 106410, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 106411, - 106411, - null - ], - [ - "ident-token", - "border-bottom", - 106412, - 106424, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 106425, - 106425, - null - ], - [ - "function-token", - "var(", - 106426, - 106429, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-width", - 106430, - 106452, - { - "value": "--bs-toast-border-width" - } - ], - [ - ")-token", - ")", - 106453, - 106453, - null - ], - [ - "whitespace-token", - " ", - 106454, - 106454, - null - ], - [ - "ident-token", - "solid", - 106455, - 106459, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 106460, - 106460, - null - ], - [ - "function-token", - "var(", - 106461, - 106464, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-header-border-color", - 106465, - 106494, - { - "value": "--bs-toast-header-border-color" - } - ], - [ - ")-token", - ")", - 106495, - 106495, - null - ], - [ - "semicolon-token", - ";", - 106496, - 106496, - null - ], - [ - "ident-token", - "border-top-left-radius", - 106497, - 106518, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 106519, - 106519, - null - ], - [ - "function-token", - "calc(", - 106520, - 106524, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 106525, - 106528, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-radius", - 106529, - 106552, - { - "value": "--bs-toast-border-radius" - } - ], - [ - ")-token", - ")", - 106553, - 106553, - null - ], - [ - "whitespace-token", - " ", - 106554, - 106554, - null - ], - [ - "delim-token", - "-", - 106555, - 106555, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 106556, - 106556, - null - ], - [ - "function-token", - "var(", - 106557, - 106560, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-width", - 106561, - 106583, - { - "value": "--bs-toast-border-width" - } - ], - [ - ")-token", - ")", - 106584, - 106584, - null - ], - [ - ")-token", - ")", - 106585, - 106585, - null - ], - [ - "semicolon-token", - ";", - 106586, - 106586, - null - ], - [ - "ident-token", - "border-top-right-radius", - 106587, - 106609, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 106610, - 106610, - null - ], - [ - "function-token", - "calc(", - 106611, - 106615, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 106616, - 106619, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-radius", - 106620, - 106643, - { - "value": "--bs-toast-border-radius" - } - ], - [ - ")-token", - ")", - 106644, - 106644, - null - ], - [ - "whitespace-token", - " ", - 106645, - 106645, - null - ], - [ - "delim-token", - "-", - 106646, - 106646, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 106647, - 106647, - null - ], - [ - "function-token", - "var(", - 106648, - 106651, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-border-width", - 106652, - 106674, - { - "value": "--bs-toast-border-width" - } - ], - [ - ")-token", - ")", - 106675, - 106675, - null - ], - [ - ")-token", - ")", - 106676, - 106676, - null - ], - [ - "}-token", - "}", - 106677, - 106677, - null - ], - [ - "delim-token", - ".", - 106678, - 106678, - { - "value": "." - } - ], - [ - "ident-token", - "toast-header", - 106679, - 106690, - { - "value": "toast-header" - } - ], - [ - "whitespace-token", - " ", - 106691, - 106691, - null - ], - [ - "delim-token", - ".", - 106692, - 106692, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 106693, - 106701, - { - "value": "btn-close" - } - ], - [ - "{-token", - "{", - 106702, - 106702, - null - ], - [ - "ident-token", - "margin-right", - 106703, - 106714, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 106715, - 106715, - null - ], - [ - "function-token", - "calc(", - 106716, - 106720, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 106721, - 106723, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 106724, - 106724, - null - ], - [ - "delim-token", - "*", - 106725, - 106725, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 106726, - 106726, - null - ], - [ - "function-token", - "var(", - 106727, - 106730, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-padding-x", - 106731, - 106750, - { - "value": "--bs-toast-padding-x" - } - ], - [ - ")-token", - ")", - 106751, - 106751, - null - ], - [ - ")-token", - ")", - 106752, - 106752, - null - ], - [ - "semicolon-token", - ";", - 106753, - 106753, - null - ], - [ - "ident-token", - "margin-left", - 106754, - 106764, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 106765, - 106765, - null - ], - [ - "function-token", - "var(", - 106766, - 106769, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-padding-x", - 106770, - 106789, - { - "value": "--bs-toast-padding-x" - } - ], - [ - ")-token", - ")", - 106790, - 106790, - null - ], - [ - "}-token", - "}", - 106791, - 106791, - null - ], - [ - "delim-token", - ".", - 106792, - 106792, - { - "value": "." - } - ], - [ - "ident-token", - "toast-body", - 106793, - 106802, - { - "value": "toast-body" - } - ], - [ - "{-token", - "{", - 106803, - 106803, - null - ], - [ - "ident-token", - "padding", - 106804, - 106810, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 106811, - 106811, - null - ], - [ - "function-token", - "var(", - 106812, - 106815, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-toast-padding-x", - 106816, - 106835, - { - "value": "--bs-toast-padding-x" - } - ], - [ - ")-token", - ")", - 106836, - 106836, - null - ], - [ - "semicolon-token", - ";", - 106837, - 106837, - null - ], - [ - "ident-token", - "word-wrap", - 106838, - 106846, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 106847, - 106847, - null - ], - [ - "ident-token", - "break-word", - 106848, - 106857, - { - "value": "break-word" - } - ], - [ - "}-token", - "}", - 106858, - 106858, - null - ], - [ - "delim-token", - ".", - 106859, - 106859, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 106860, - 106864, - { - "value": "modal" - } - ], - [ - "{-token", - "{", - 106865, - 106865, - null - ], - [ - "ident-token", - "--bs-modal-zindex", - 106866, - 106882, - { - "value": "--bs-modal-zindex" - } - ], - [ - "colon-token", - ":", - 106883, - 106883, - null - ], - [ - "number-token", - "1055", - 106884, - 106887, - { - "value": 1055, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 106888, - 106888, - null - ], - [ - "ident-token", - "--bs-modal-width", - 106889, - 106904, - { - "value": "--bs-modal-width" - } - ], - [ - "colon-token", - ":", - 106905, - 106905, - null - ], - [ - "dimension-token", - "500px", - 106906, - 106910, - { - "value": 500, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 106911, - 106911, - null - ], - [ - "ident-token", - "--bs-modal-padding", - 106912, - 106929, - { - "value": "--bs-modal-padding" - } - ], - [ - "colon-token", - ":", - 106930, - 106930, - null - ], - [ - "dimension-token", - "1rem", - 106931, - 106934, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 106935, - 106935, - null - ], - [ - "ident-token", - "--bs-modal-margin", - 106936, - 106952, - { - "value": "--bs-modal-margin" - } - ], - [ - "colon-token", - ":", - 106953, - 106953, - null - ], - [ - "dimension-token", - "0.5rem", - 106954, - 106959, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 106960, - 106960, - null - ], - [ - "ident-token", - "--bs-modal-color", - 106961, - 106976, - { - "value": "--bs-modal-color" - } - ], - [ - "colon-token", - ":", - 106977, - 106977, - null - ], - [ - "whitespace-token", - " ", - 106978, - 106978, - null - ], - [ - "semicolon-token", - ";", - 106979, - 106979, - null - ], - [ - "ident-token", - "--bs-modal-bg", - 106980, - 106992, - { - "value": "--bs-modal-bg" - } - ], - [ - "colon-token", - ":", - 106993, - 106993, - null - ], - [ - "hash-token", - "#fff", - 106994, - 106997, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 106998, - 106998, - null - ], - [ - "ident-token", - "--bs-modal-border-color", - 106999, - 107021, - { - "value": "--bs-modal-border-color" - } - ], - [ - "colon-token", - ":", - 107022, - 107022, - null - ], - [ - "function-token", - "var(", - 107023, - 107026, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 107027, - 107055, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 107056, - 107056, - null - ], - [ - "semicolon-token", - ";", - 107057, - 107057, - null - ], - [ - "ident-token", - "--bs-modal-border-width", - 107058, - 107080, - { - "value": "--bs-modal-border-width" - } - ], - [ - "colon-token", - ":", - 107081, - 107081, - null - ], - [ - "dimension-token", - "1px", - 107082, - 107084, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 107085, - 107085, - null - ], - [ - "ident-token", - "--bs-modal-border-radius", - 107086, - 107109, - { - "value": "--bs-modal-border-radius" - } - ], - [ - "colon-token", - ":", - 107110, - 107110, - null - ], - [ - "dimension-token", - "0.5rem", - 107111, - 107116, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 107117, - 107117, - null - ], - [ - "ident-token", - "--bs-modal-box-shadow", - 107118, - 107138, - { - "value": "--bs-modal-box-shadow" - } - ], - [ - "colon-token", - ":", - 107139, - 107139, - null - ], - [ - "number-token", - "0", - 107140, - 107140, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 107141, - 107141, - null - ], - [ - "dimension-token", - "0.125rem", - 107142, - 107149, - { - "value": 0.125, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 107150, - 107150, - null - ], - [ - "dimension-token", - "0.25rem", - 107151, - 107157, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 107158, - 107158, - null - ], - [ - "function-token", - "rgba(", - 107159, - 107163, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 107164, - 107164, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 107165, - 107165, - null - ], - [ - "whitespace-token", - " ", - 107166, - 107166, - null - ], - [ - "number-token", - "0", - 107167, - 107167, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 107168, - 107168, - null - ], - [ - "whitespace-token", - " ", - 107169, - 107169, - null - ], - [ - "number-token", - "0", - 107170, - 107170, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 107171, - 107171, - null - ], - [ - "whitespace-token", - " ", - 107172, - 107172, - null - ], - [ - "number-token", - "0.075", - 107173, - 107177, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 107178, - 107178, - null - ], - [ - "semicolon-token", - ";", - 107179, - 107179, - null - ], - [ - "ident-token", - "--bs-modal-inner-border-radius", - 107180, - 107209, - { - "value": "--bs-modal-inner-border-radius" - } - ], - [ - "colon-token", - ":", - 107210, - 107210, - null - ], - [ - "function-token", - "calc(", - 107211, - 107215, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.5rem", - 107216, - 107221, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 107222, - 107222, - null - ], - [ - "delim-token", - "-", - 107223, - 107223, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 107224, - 107224, - null - ], - [ - "dimension-token", - "1px", - 107225, - 107227, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 107228, - 107228, - null - ], - [ - "semicolon-token", - ";", - 107229, - 107229, - null - ], - [ - "ident-token", - "--bs-modal-header-padding-x", - 107230, - 107256, - { - "value": "--bs-modal-header-padding-x" - } - ], - [ - "colon-token", - ":", - 107257, - 107257, - null - ], - [ - "dimension-token", - "1rem", - 107258, - 107261, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 107262, - 107262, - null - ], - [ - "ident-token", - "--bs-modal-header-padding-y", - 107263, - 107289, - { - "value": "--bs-modal-header-padding-y" - } - ], - [ - "colon-token", - ":", - 107290, - 107290, - null - ], - [ - "dimension-token", - "1rem", - 107291, - 107294, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 107295, - 107295, - null - ], - [ - "ident-token", - "--bs-modal-header-padding", - 107296, - 107320, - { - "value": "--bs-modal-header-padding" - } - ], - [ - "colon-token", - ":", - 107321, - 107321, - null - ], - [ - "dimension-token", - "1rem", - 107322, - 107325, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 107326, - 107326, - null - ], - [ - "dimension-token", - "1rem", - 107327, - 107330, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 107331, - 107331, - null - ], - [ - "ident-token", - "--bs-modal-header-border-color", - 107332, - 107361, - { - "value": "--bs-modal-header-border-color" - } - ], - [ - "colon-token", - ":", - 107362, - 107362, - null - ], - [ - "function-token", - "var(", - 107363, - 107366, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 107367, - 107383, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 107384, - 107384, - null - ], - [ - "semicolon-token", - ";", - 107385, - 107385, - null - ], - [ - "ident-token", - "--bs-modal-header-border-width", - 107386, - 107415, - { - "value": "--bs-modal-header-border-width" - } - ], - [ - "colon-token", - ":", - 107416, - 107416, - null - ], - [ - "dimension-token", - "1px", - 107417, - 107419, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 107420, - 107420, - null - ], - [ - "ident-token", - "--bs-modal-title-line-height", - 107421, - 107448, - { - "value": "--bs-modal-title-line-height" - } - ], - [ - "colon-token", - ":", - 107449, - 107449, - null - ], - [ - "number-token", - "1.5", - 107450, - 107452, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 107453, - 107453, - null - ], - [ - "ident-token", - "--bs-modal-footer-gap", - 107454, - 107474, - { - "value": "--bs-modal-footer-gap" - } - ], - [ - "colon-token", - ":", - 107475, - 107475, - null - ], - [ - "dimension-token", - "0.5rem", - 107476, - 107481, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 107482, - 107482, - null - ], - [ - "ident-token", - "--bs-modal-footer-bg", - 107483, - 107502, - { - "value": "--bs-modal-footer-bg" - } - ], - [ - "colon-token", - ":", - 107503, - 107503, - null - ], - [ - "whitespace-token", - " ", - 107504, - 107504, - null - ], - [ - "semicolon-token", - ";", - 107505, - 107505, - null - ], - [ - "ident-token", - "--bs-modal-footer-border-color", - 107506, - 107535, - { - "value": "--bs-modal-footer-border-color" - } - ], - [ - "colon-token", - ":", - 107536, - 107536, - null - ], - [ - "function-token", - "var(", - 107537, - 107540, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 107541, - 107557, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 107558, - 107558, - null - ], - [ - "semicolon-token", - ";", - 107559, - 107559, - null - ], - [ - "ident-token", - "--bs-modal-footer-border-width", - 107560, - 107589, - { - "value": "--bs-modal-footer-border-width" - } - ], - [ - "colon-token", - ":", - 107590, - 107590, - null - ], - [ - "dimension-token", - "1px", - 107591, - 107593, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 107594, - 107594, - null - ], - [ - "ident-token", - "position", - 107595, - 107602, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 107603, - 107603, - null - ], - [ - "ident-token", - "fixed", - 107604, - 107608, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 107609, - 107609, - null - ], - [ - "ident-token", - "top", - 107610, - 107612, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 107613, - 107613, - null - ], - [ - "number-token", - "0", - 107614, - 107614, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 107615, - 107615, - null - ], - [ - "ident-token", - "left", - 107616, - 107619, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 107620, - 107620, - null - ], - [ - "number-token", - "0", - 107621, - 107621, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 107622, - 107622, - null - ], - [ - "ident-token", - "z-index", - 107623, - 107629, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 107630, - 107630, - null - ], - [ - "function-token", - "var(", - 107631, - 107634, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-zindex", - 107635, - 107651, - { - "value": "--bs-modal-zindex" - } - ], - [ - ")-token", - ")", - 107652, - 107652, - null - ], - [ - "semicolon-token", - ";", - 107653, - 107653, - null - ], - [ - "ident-token", - "display", - 107654, - 107660, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 107661, - 107661, - null - ], - [ - "ident-token", - "none", - 107662, - 107665, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 107666, - 107666, - null - ], - [ - "ident-token", - "width", - 107667, - 107671, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 107672, - 107672, - null - ], - [ - "percentage-token", - "100%", - 107673, - 107676, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 107677, - 107677, - null - ], - [ - "ident-token", - "height", - 107678, - 107683, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 107684, - 107684, - null - ], - [ - "percentage-token", - "100%", - 107685, - 107688, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 107689, - 107689, - null - ], - [ - "ident-token", - "overflow-x", - 107690, - 107699, - { - "value": "overflow-x" - } - ], - [ - "colon-token", - ":", - 107700, - 107700, - null - ], - [ - "ident-token", - "hidden", - 107701, - 107706, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 107707, - 107707, - null - ], - [ - "ident-token", - "overflow-y", - 107708, - 107717, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 107718, - 107718, - null - ], - [ - "ident-token", - "auto", - 107719, - 107722, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 107723, - 107723, - null - ], - [ - "ident-token", - "outline", - 107724, - 107730, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 107731, - 107731, - null - ], - [ - "number-token", - "0", - 107732, - 107732, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 107733, - 107733, - null - ], - [ - "delim-token", - ".", - 107734, - 107734, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 107735, - 107746, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 107747, - 107747, - null - ], - [ - "ident-token", - "position", - 107748, - 107755, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 107756, - 107756, - null - ], - [ - "ident-token", - "relative", - 107757, - 107764, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 107765, - 107765, - null - ], - [ - "ident-token", - "width", - 107766, - 107770, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 107771, - 107771, - null - ], - [ - "ident-token", - "auto", - 107772, - 107775, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 107776, - 107776, - null - ], - [ - "ident-token", - "margin", - 107777, - 107782, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 107783, - 107783, - null - ], - [ - "function-token", - "var(", - 107784, - 107787, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-margin", - 107788, - 107804, - { - "value": "--bs-modal-margin" - } - ], - [ - ")-token", - ")", - 107805, - 107805, - null - ], - [ - "semicolon-token", - ";", - 107806, - 107806, - null - ], - [ - "ident-token", - "pointer-events", - 107807, - 107820, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 107821, - 107821, - null - ], - [ - "ident-token", - "none", - 107822, - 107825, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 107826, - 107826, - null - ], - [ - "delim-token", - ".", - 107827, - 107827, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 107828, - 107832, - { - "value": "modal" - } - ], - [ - "delim-token", - ".", - 107833, - 107833, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 107834, - 107837, - { - "value": "fade" - } - ], - [ - "whitespace-token", - " ", - 107838, - 107838, - null - ], - [ - "delim-token", - ".", - 107839, - 107839, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 107840, - 107851, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 107852, - 107852, - null - ], - [ - "ident-token", - "transition", - 107853, - 107862, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 107863, - 107863, - null - ], - [ - "ident-token", - "transform", - 107864, - 107872, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 107873, - 107873, - null - ], - [ - "dimension-token", - ".3s", - 107874, - 107876, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 107877, - 107877, - null - ], - [ - "ident-token", - "ease-out", - 107878, - 107885, - { - "value": "ease-out" - } - ], - [ - "semicolon-token", - ";", - 107886, - 107886, - null - ], - [ - "ident-token", - "transform", - 107887, - 107895, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 107896, - 107896, - null - ], - [ - "function-token", - "translate(", - 107897, - 107906, - { - "value": "translate" - } - ], - [ - "number-token", - "0", - 107907, - 107907, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 107908, - 107908, - null - ], - [ - "dimension-token", - "-50px", - 107909, - 107913, - { - "value": -50, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 107914, - 107914, - null - ], - [ - "}-token", - "}", - 107915, - 107915, - null - ], - [ - "at-keyword-token", - "@media", - 107916, - 107921, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 107922, - 107922, - null - ], - [ - "(-token", - "(", - 107923, - 107923, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 107924, - 107945, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 107946, - 107946, - null - ], - [ - "ident-token", - "reduce", - 107947, - 107952, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 107953, - 107953, - null - ], - [ - "{-token", - "{", - 107954, - 107954, - null - ], - [ - "delim-token", - ".", - 107955, - 107955, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 107956, - 107960, - { - "value": "modal" - } - ], - [ - "delim-token", - ".", - 107961, - 107961, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 107962, - 107965, - { - "value": "fade" - } - ], - [ - "whitespace-token", - " ", - 107966, - 107966, - null - ], - [ - "delim-token", - ".", - 107967, - 107967, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 107968, - 107979, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 107980, - 107980, - null - ], - [ - "ident-token", - "transition", - 107981, - 107990, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 107991, - 107991, - null - ], - [ - "ident-token", - "none", - 107992, - 107995, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 107996, - 107996, - null - ], - [ - "}-token", - "}", - 107997, - 107997, - null - ], - [ - "delim-token", - ".", - 107998, - 107998, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 107999, - 108003, - { - "value": "modal" - } - ], - [ - "delim-token", - ".", - 108004, - 108004, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 108005, - 108008, - { - "value": "show" - } - ], - [ - "whitespace-token", - " ", - 108009, - 108009, - null - ], - [ - "delim-token", - ".", - 108010, - 108010, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 108011, - 108022, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 108023, - 108023, - null - ], - [ - "ident-token", - "transform", - 108024, - 108032, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 108033, - 108033, - null - ], - [ - "ident-token", - "none", - 108034, - 108037, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 108038, - 108038, - null - ], - [ - "delim-token", - ".", - 108039, - 108039, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 108040, - 108044, - { - "value": "modal" - } - ], - [ - "delim-token", - ".", - 108045, - 108045, - { - "value": "." - } - ], - [ - "ident-token", - "modal-static", - 108046, - 108057, - { - "value": "modal-static" - } - ], - [ - "whitespace-token", - " ", - 108058, - 108058, - null - ], - [ - "delim-token", - ".", - 108059, - 108059, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 108060, - 108071, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 108072, - 108072, - null - ], - [ - "ident-token", - "transform", - 108073, - 108081, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 108082, - 108082, - null - ], - [ - "function-token", - "scale(", - 108083, - 108088, - { - "value": "scale" - } - ], - [ - "number-token", - "1.02", - 108089, - 108092, - { - "value": 1.02, - "type": "number" - } - ], - [ - ")-token", - ")", - 108093, - 108093, - null - ], - [ - "}-token", - "}", - 108094, - 108094, - null - ], - [ - "delim-token", - ".", - 108095, - 108095, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog-scrollable", - 108096, - 108118, - { - "value": "modal-dialog-scrollable" - } - ], - [ - "{-token", - "{", - 108119, - 108119, - null - ], - [ - "ident-token", - "height", - 108120, - 108125, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 108126, - 108126, - null - ], - [ - "function-token", - "calc(", - 108127, - 108131, - { - "value": "calc" - } - ], - [ - "percentage-token", - "100%", - 108132, - 108135, - { - "value": 100 - } - ], - [ - "whitespace-token", - " ", - 108136, - 108136, - null - ], - [ - "delim-token", - "-", - 108137, - 108137, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 108138, - 108138, - null - ], - [ - "function-token", - "var(", - 108139, - 108142, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-margin", - 108143, - 108159, - { - "value": "--bs-modal-margin" - } - ], - [ - ")-token", - ")", - 108160, - 108160, - null - ], - [ - "whitespace-token", - " ", - 108161, - 108161, - null - ], - [ - "delim-token", - "*", - 108162, - 108162, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 108163, - 108163, - null - ], - [ - "number-token", - "2", - 108164, - 108164, - { - "value": 2, - "type": "integer" - } - ], - [ - ")-token", - ")", - 108165, - 108165, - null - ], - [ - "}-token", - "}", - 108166, - 108166, - null - ], - [ - "delim-token", - ".", - 108167, - 108167, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog-scrollable", - 108168, - 108190, - { - "value": "modal-dialog-scrollable" - } - ], - [ - "whitespace-token", - " ", - 108191, - 108191, - null - ], - [ - "delim-token", - ".", - 108192, - 108192, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 108193, - 108205, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 108206, - 108206, - null - ], - [ - "ident-token", - "max-height", - 108207, - 108216, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 108217, - 108217, - null - ], - [ - "percentage-token", - "100%", - 108218, - 108221, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 108222, - 108222, - null - ], - [ - "ident-token", - "overflow", - 108223, - 108230, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 108231, - 108231, - null - ], - [ - "ident-token", - "hidden", - 108232, - 108237, - { - "value": "hidden" - } - ], - [ - "}-token", - "}", - 108238, - 108238, - null - ], - [ - "delim-token", - ".", - 108239, - 108239, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog-scrollable", - 108240, - 108262, - { - "value": "modal-dialog-scrollable" - } - ], - [ - "whitespace-token", - " ", - 108263, - 108263, - null - ], - [ - "delim-token", - ".", - 108264, - 108264, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 108265, - 108274, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 108275, - 108275, - null - ], - [ - "ident-token", - "overflow-y", - 108276, - 108285, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 108286, - 108286, - null - ], - [ - "ident-token", - "auto", - 108287, - 108290, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 108291, - 108291, - null - ], - [ - "delim-token", - ".", - 108292, - 108292, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog-centered", - 108293, - 108313, - { - "value": "modal-dialog-centered" - } - ], - [ - "{-token", - "{", - 108314, - 108314, - null - ], - [ - "ident-token", - "display", - 108315, - 108321, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 108322, - 108322, - null - ], - [ - "ident-token", - "flex", - 108323, - 108326, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 108327, - 108327, - null - ], - [ - "ident-token", - "align-items", - 108328, - 108338, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 108339, - 108339, - null - ], - [ - "ident-token", - "center", - 108340, - 108345, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 108346, - 108346, - null - ], - [ - "ident-token", - "min-height", - 108347, - 108356, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 108357, - 108357, - null - ], - [ - "function-token", - "calc(", - 108358, - 108362, - { - "value": "calc" - } - ], - [ - "percentage-token", - "100%", - 108363, - 108366, - { - "value": 100 - } - ], - [ - "whitespace-token", - " ", - 108367, - 108367, - null - ], - [ - "delim-token", - "-", - 108368, - 108368, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 108369, - 108369, - null - ], - [ - "function-token", - "var(", - 108370, - 108373, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-margin", - 108374, - 108390, - { - "value": "--bs-modal-margin" - } - ], - [ - ")-token", - ")", - 108391, - 108391, - null - ], - [ - "whitespace-token", - " ", - 108392, - 108392, - null - ], - [ - "delim-token", - "*", - 108393, - 108393, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 108394, - 108394, - null - ], - [ - "number-token", - "2", - 108395, - 108395, - { - "value": 2, - "type": "integer" - } - ], - [ - ")-token", - ")", - 108396, - 108396, - null - ], - [ - "}-token", - "}", - 108397, - 108397, - null - ], - [ - "delim-token", - ".", - 108398, - 108398, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 108399, - 108411, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 108412, - 108412, - null - ], - [ - "ident-token", - "position", - 108413, - 108420, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 108421, - 108421, - null - ], - [ - "ident-token", - "relative", - 108422, - 108429, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 108430, - 108430, - null - ], - [ - "ident-token", - "display", - 108431, - 108437, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 108438, - 108438, - null - ], - [ - "ident-token", - "flex", - 108439, - 108442, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 108443, - 108443, - null - ], - [ - "ident-token", - "flex-direction", - 108444, - 108457, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 108458, - 108458, - null - ], - [ - "ident-token", - "column", - 108459, - 108464, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 108465, - 108465, - null - ], - [ - "ident-token", - "width", - 108466, - 108470, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 108471, - 108471, - null - ], - [ - "percentage-token", - "100%", - 108472, - 108475, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 108476, - 108476, - null - ], - [ - "ident-token", - "color", - 108477, - 108481, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 108482, - 108482, - null - ], - [ - "function-token", - "var(", - 108483, - 108486, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-color", - 108487, - 108502, - { - "value": "--bs-modal-color" - } - ], - [ - ")-token", - ")", - 108503, - 108503, - null - ], - [ - "semicolon-token", - ";", - 108504, - 108504, - null - ], - [ - "ident-token", - "pointer-events", - 108505, - 108518, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 108519, - 108519, - null - ], - [ - "ident-token", - "auto", - 108520, - 108523, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 108524, - 108524, - null - ], - [ - "ident-token", - "background-color", - 108525, - 108540, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 108541, - 108541, - null - ], - [ - "function-token", - "var(", - 108542, - 108545, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-bg", - 108546, - 108558, - { - "value": "--bs-modal-bg" - } - ], - [ - ")-token", - ")", - 108559, - 108559, - null - ], - [ - "semicolon-token", - ";", - 108560, - 108560, - null - ], - [ - "ident-token", - "background-clip", - 108561, - 108575, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 108576, - 108576, - null - ], - [ - "ident-token", - "padding-box", - 108577, - 108587, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 108588, - 108588, - null - ], - [ - "ident-token", - "border", - 108589, - 108594, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 108595, - 108595, - null - ], - [ - "function-token", - "var(", - 108596, - 108599, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-border-width", - 108600, - 108622, - { - "value": "--bs-modal-border-width" - } - ], - [ - ")-token", - ")", - 108623, - 108623, - null - ], - [ - "whitespace-token", - " ", - 108624, - 108624, - null - ], - [ - "ident-token", - "solid", - 108625, - 108629, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 108630, - 108630, - null - ], - [ - "function-token", - "var(", - 108631, - 108634, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-border-color", - 108635, - 108657, - { - "value": "--bs-modal-border-color" - } - ], - [ - ")-token", - ")", - 108658, - 108658, - null - ], - [ - "semicolon-token", - ";", - 108659, - 108659, - null - ], - [ - "ident-token", - "border-radius", - 108660, - 108672, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 108673, - 108673, - null - ], - [ - "function-token", - "var(", - 108674, - 108677, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-border-radius", - 108678, - 108701, - { - "value": "--bs-modal-border-radius" - } - ], - [ - ")-token", - ")", - 108702, - 108702, - null - ], - [ - "semicolon-token", - ";", - 108703, - 108703, - null - ], - [ - "ident-token", - "outline", - 108704, - 108710, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 108711, - 108711, - null - ], - [ - "number-token", - "0", - 108712, - 108712, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 108713, - 108713, - null - ], - [ - "delim-token", - ".", - 108714, - 108714, - { - "value": "." - } - ], - [ - "ident-token", - "modal-backdrop", - 108715, - 108728, - { - "value": "modal-backdrop" - } - ], - [ - "{-token", - "{", - 108729, - 108729, - null - ], - [ - "ident-token", - "--bs-backdrop-zindex", - 108730, - 108749, - { - "value": "--bs-backdrop-zindex" - } - ], - [ - "colon-token", - ":", - 108750, - 108750, - null - ], - [ - "number-token", - "1050", - 108751, - 108754, - { - "value": 1050, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 108755, - 108755, - null - ], - [ - "ident-token", - "--bs-backdrop-bg", - 108756, - 108771, - { - "value": "--bs-backdrop-bg" - } - ], - [ - "colon-token", - ":", - 108772, - 108772, - null - ], - [ - "hash-token", - "#000", - 108773, - 108776, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 108777, - 108777, - null - ], - [ - "ident-token", - "--bs-backdrop-opacity", - 108778, - 108798, - { - "value": "--bs-backdrop-opacity" - } - ], - [ - "colon-token", - ":", - 108799, - 108799, - null - ], - [ - "number-token", - "0.5", - 108800, - 108802, - { - "value": 0.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 108803, - 108803, - null - ], - [ - "ident-token", - "position", - 108804, - 108811, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 108812, - 108812, - null - ], - [ - "ident-token", - "fixed", - 108813, - 108817, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 108818, - 108818, - null - ], - [ - "ident-token", - "top", - 108819, - 108821, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 108822, - 108822, - null - ], - [ - "number-token", - "0", - 108823, - 108823, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 108824, - 108824, - null - ], - [ - "ident-token", - "left", - 108825, - 108828, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 108829, - 108829, - null - ], - [ - "number-token", - "0", - 108830, - 108830, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 108831, - 108831, - null - ], - [ - "ident-token", - "z-index", - 108832, - 108838, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 108839, - 108839, - null - ], - [ - "function-token", - "var(", - 108840, - 108843, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-backdrop-zindex", - 108844, - 108863, - { - "value": "--bs-backdrop-zindex" - } - ], - [ - ")-token", - ")", - 108864, - 108864, - null - ], - [ - "semicolon-token", - ";", - 108865, - 108865, - null - ], - [ - "ident-token", - "width", - 108866, - 108870, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 108871, - 108871, - null - ], - [ - "dimension-token", - "100vw", - 108872, - 108876, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 108877, - 108877, - null - ], - [ - "ident-token", - "height", - 108878, - 108883, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 108884, - 108884, - null - ], - [ - "dimension-token", - "100vh", - 108885, - 108889, - { - "value": 100, - "type": "integer", - "unit": "vh" - } - ], - [ - "semicolon-token", - ";", - 108890, - 108890, - null - ], - [ - "ident-token", - "background-color", - 108891, - 108906, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 108907, - 108907, - null - ], - [ - "function-token", - "var(", - 108908, - 108911, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-backdrop-bg", - 108912, - 108927, - { - "value": "--bs-backdrop-bg" - } - ], - [ - ")-token", - ")", - 108928, - 108928, - null - ], - [ - "}-token", - "}", - 108929, - 108929, - null - ], - [ - "delim-token", - ".", - 108930, - 108930, - { - "value": "." - } - ], - [ - "ident-token", - "modal-backdrop", - 108931, - 108944, - { - "value": "modal-backdrop" - } - ], - [ - "delim-token", - ".", - 108945, - 108945, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 108946, - 108949, - { - "value": "fade" - } - ], - [ - "{-token", - "{", - 108950, - 108950, - null - ], - [ - "ident-token", - "opacity", - 108951, - 108957, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 108958, - 108958, - null - ], - [ - "number-token", - "0", - 108959, - 108959, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 108960, - 108960, - null - ], - [ - "delim-token", - ".", - 108961, - 108961, - { - "value": "." - } - ], - [ - "ident-token", - "modal-backdrop", - 108962, - 108975, - { - "value": "modal-backdrop" - } - ], - [ - "delim-token", - ".", - 108976, - 108976, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 108977, - 108980, - { - "value": "show" - } - ], - [ - "{-token", - "{", - 108981, - 108981, - null - ], - [ - "ident-token", - "opacity", - 108982, - 108988, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 108989, - 108989, - null - ], - [ - "function-token", - "var(", - 108990, - 108993, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-backdrop-opacity", - 108994, - 109014, - { - "value": "--bs-backdrop-opacity" - } - ], - [ - ")-token", - ")", - 109015, - 109015, - null - ], - [ - "}-token", - "}", - 109016, - 109016, - null - ], - [ - "delim-token", - ".", - 109017, - 109017, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 109018, - 109029, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 109030, - 109030, - null - ], - [ - "ident-token", - "display", - 109031, - 109037, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 109038, - 109038, - null - ], - [ - "ident-token", - "flex", - 109039, - 109042, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 109043, - 109043, - null - ], - [ - "ident-token", - "flex-shrink", - 109044, - 109054, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 109055, - 109055, - null - ], - [ - "number-token", - "0", - 109056, - 109056, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 109057, - 109057, - null - ], - [ - "ident-token", - "align-items", - 109058, - 109068, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 109069, - 109069, - null - ], - [ - "ident-token", - "center", - 109070, - 109075, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 109076, - 109076, - null - ], - [ - "ident-token", - "justify-content", - 109077, - 109091, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 109092, - 109092, - null - ], - [ - "ident-token", - "space-between", - 109093, - 109105, - { - "value": "space-between" - } - ], - [ - "semicolon-token", - ";", - 109106, - 109106, - null - ], - [ - "ident-token", - "padding", - 109107, - 109113, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 109114, - 109114, - null - ], - [ - "function-token", - "var(", - 109115, - 109118, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding", - 109119, - 109143, - { - "value": "--bs-modal-header-padding" - } - ], - [ - ")-token", - ")", - 109144, - 109144, - null - ], - [ - "semicolon-token", - ";", - 109145, - 109145, - null - ], - [ - "ident-token", - "border-bottom", - 109146, - 109158, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 109159, - 109159, - null - ], - [ - "function-token", - "var(", - 109160, - 109163, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-border-width", - 109164, - 109193, - { - "value": "--bs-modal-header-border-width" - } - ], - [ - ")-token", - ")", - 109194, - 109194, - null - ], - [ - "whitespace-token", - " ", - 109195, - 109195, - null - ], - [ - "ident-token", - "solid", - 109196, - 109200, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 109201, - 109201, - null - ], - [ - "function-token", - "var(", - 109202, - 109205, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-border-color", - 109206, - 109235, - { - "value": "--bs-modal-header-border-color" - } - ], - [ - ")-token", - ")", - 109236, - 109236, - null - ], - [ - "semicolon-token", - ";", - 109237, - 109237, - null - ], - [ - "ident-token", - "border-top-left-radius", - 109238, - 109259, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 109260, - 109260, - null - ], - [ - "function-token", - "var(", - 109261, - 109264, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-inner-border-radius", - 109265, - 109294, - { - "value": "--bs-modal-inner-border-radius" - } - ], - [ - ")-token", - ")", - 109295, - 109295, - null - ], - [ - "semicolon-token", - ";", - 109296, - 109296, - null - ], - [ - "ident-token", - "border-top-right-radius", - 109297, - 109319, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 109320, - 109320, - null - ], - [ - "function-token", - "var(", - 109321, - 109324, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-inner-border-radius", - 109325, - 109354, - { - "value": "--bs-modal-inner-border-radius" - } - ], - [ - ")-token", - ")", - 109355, - 109355, - null - ], - [ - "}-token", - "}", - 109356, - 109356, - null - ], - [ - "delim-token", - ".", - 109357, - 109357, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 109358, - 109369, - { - "value": "modal-header" - } - ], - [ - "whitespace-token", - " ", - 109370, - 109370, - null - ], - [ - "delim-token", - ".", - 109371, - 109371, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 109372, - 109380, - { - "value": "btn-close" - } - ], - [ - "{-token", - "{", - 109381, - 109381, - null - ], - [ - "ident-token", - "padding", - 109382, - 109388, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 109389, - 109389, - null - ], - [ - "function-token", - "calc(", - 109390, - 109394, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 109395, - 109398, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding-y", - 109399, - 109425, - { - "value": "--bs-modal-header-padding-y" - } - ], - [ - ")-token", - ")", - 109426, - 109426, - null - ], - [ - "whitespace-token", - " ", - 109427, - 109427, - null - ], - [ - "delim-token", - "*", - 109428, - 109428, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109429, - 109429, - null - ], - [ - "number-token", - ".5", - 109430, - 109431, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 109432, - 109432, - null - ], - [ - "whitespace-token", - " ", - 109433, - 109433, - null - ], - [ - "function-token", - "calc(", - 109434, - 109438, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 109439, - 109442, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding-x", - 109443, - 109469, - { - "value": "--bs-modal-header-padding-x" - } - ], - [ - ")-token", - ")", - 109470, - 109470, - null - ], - [ - "whitespace-token", - " ", - 109471, - 109471, - null - ], - [ - "delim-token", - "*", - 109472, - 109472, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109473, - 109473, - null - ], - [ - "number-token", - ".5", - 109474, - 109475, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 109476, - 109476, - null - ], - [ - "semicolon-token", - ";", - 109477, - 109477, - null - ], - [ - "ident-token", - "margin", - 109478, - 109483, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 109484, - 109484, - null - ], - [ - "function-token", - "calc(", - 109485, - 109489, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 109490, - 109492, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 109493, - 109493, - null - ], - [ - "delim-token", - "*", - 109494, - 109494, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109495, - 109495, - null - ], - [ - "function-token", - "var(", - 109496, - 109499, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding-y", - 109500, - 109526, - { - "value": "--bs-modal-header-padding-y" - } - ], - [ - ")-token", - ")", - 109527, - 109527, - null - ], - [ - ")-token", - ")", - 109528, - 109528, - null - ], - [ - "whitespace-token", - " ", - 109529, - 109529, - null - ], - [ - "function-token", - "calc(", - 109530, - 109534, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 109535, - 109537, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 109538, - 109538, - null - ], - [ - "delim-token", - "*", - 109539, - 109539, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109540, - 109540, - null - ], - [ - "function-token", - "var(", - 109541, - 109544, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding-x", - 109545, - 109571, - { - "value": "--bs-modal-header-padding-x" - } - ], - [ - ")-token", - ")", - 109572, - 109572, - null - ], - [ - ")-token", - ")", - 109573, - 109573, - null - ], - [ - "whitespace-token", - " ", - 109574, - 109574, - null - ], - [ - "function-token", - "calc(", - 109575, - 109579, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 109580, - 109582, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 109583, - 109583, - null - ], - [ - "delim-token", - "*", - 109584, - 109584, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109585, - 109585, - null - ], - [ - "function-token", - "var(", - 109586, - 109589, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-header-padding-y", - 109590, - 109616, - { - "value": "--bs-modal-header-padding-y" - } - ], - [ - ")-token", - ")", - 109617, - 109617, - null - ], - [ - ")-token", - ")", - 109618, - 109618, - null - ], - [ - "whitespace-token", - " ", - 109619, - 109619, - null - ], - [ - "ident-token", - "auto", - 109620, - 109623, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 109624, - 109624, - null - ], - [ - "delim-token", - ".", - 109625, - 109625, - { - "value": "." - } - ], - [ - "ident-token", - "modal-title", - 109626, - 109636, - { - "value": "modal-title" - } - ], - [ - "{-token", - "{", - 109637, - 109637, - null - ], - [ - "ident-token", - "margin-bottom", - 109638, - 109650, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 109651, - 109651, - null - ], - [ - "number-token", - "0", - 109652, - 109652, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 109653, - 109653, - null - ], - [ - "ident-token", - "line-height", - 109654, - 109664, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 109665, - 109665, - null - ], - [ - "function-token", - "var(", - 109666, - 109669, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-title-line-height", - 109670, - 109697, - { - "value": "--bs-modal-title-line-height" - } - ], - [ - ")-token", - ")", - 109698, - 109698, - null - ], - [ - "}-token", - "}", - 109699, - 109699, - null - ], - [ - "delim-token", - ".", - 109700, - 109700, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 109701, - 109710, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 109711, - 109711, - null - ], - [ - "ident-token", - "position", - 109712, - 109719, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 109720, - 109720, - null - ], - [ - "ident-token", - "relative", - 109721, - 109728, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 109729, - 109729, - null - ], - [ - "ident-token", - "flex", - 109730, - 109733, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 109734, - 109734, - null - ], - [ - "number-token", - "1", - 109735, - 109735, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 109736, - 109736, - null - ], - [ - "number-token", - "1", - 109737, - 109737, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 109738, - 109738, - null - ], - [ - "ident-token", - "auto", - 109739, - 109742, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 109743, - 109743, - null - ], - [ - "ident-token", - "padding", - 109744, - 109750, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 109751, - 109751, - null - ], - [ - "function-token", - "var(", - 109752, - 109755, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-padding", - 109756, - 109773, - { - "value": "--bs-modal-padding" - } - ], - [ - ")-token", - ")", - 109774, - 109774, - null - ], - [ - "}-token", - "}", - 109775, - 109775, - null - ], - [ - "delim-token", - ".", - 109776, - 109776, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 109777, - 109788, - { - "value": "modal-footer" - } - ], - [ - "{-token", - "{", - 109789, - 109789, - null - ], - [ - "ident-token", - "display", - 109790, - 109796, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 109797, - 109797, - null - ], - [ - "ident-token", - "flex", - 109798, - 109801, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 109802, - 109802, - null - ], - [ - "ident-token", - "flex-shrink", - 109803, - 109813, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 109814, - 109814, - null - ], - [ - "number-token", - "0", - 109815, - 109815, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 109816, - 109816, - null - ], - [ - "ident-token", - "flex-wrap", - 109817, - 109825, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 109826, - 109826, - null - ], - [ - "ident-token", - "wrap", - 109827, - 109830, - { - "value": "wrap" - } - ], - [ - "semicolon-token", - ";", - 109831, - 109831, - null - ], - [ - "ident-token", - "align-items", - 109832, - 109842, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 109843, - 109843, - null - ], - [ - "ident-token", - "center", - 109844, - 109849, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 109850, - 109850, - null - ], - [ - "ident-token", - "justify-content", - 109851, - 109865, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 109866, - 109866, - null - ], - [ - "ident-token", - "flex-end", - 109867, - 109874, - { - "value": "flex-end" - } - ], - [ - "semicolon-token", - ";", - 109875, - 109875, - null - ], - [ - "ident-token", - "padding", - 109876, - 109882, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 109883, - 109883, - null - ], - [ - "function-token", - "calc(", - 109884, - 109888, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 109889, - 109892, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-padding", - 109893, - 109910, - { - "value": "--bs-modal-padding" - } - ], - [ - ")-token", - ")", - 109911, - 109911, - null - ], - [ - "whitespace-token", - " ", - 109912, - 109912, - null - ], - [ - "delim-token", - "-", - 109913, - 109913, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 109914, - 109914, - null - ], - [ - "function-token", - "var(", - 109915, - 109918, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-footer-gap", - 109919, - 109939, - { - "value": "--bs-modal-footer-gap" - } - ], - [ - ")-token", - ")", - 109940, - 109940, - null - ], - [ - "whitespace-token", - " ", - 109941, - 109941, - null - ], - [ - "delim-token", - "*", - 109942, - 109942, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 109943, - 109943, - null - ], - [ - "number-token", - ".5", - 109944, - 109945, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 109946, - 109946, - null - ], - [ - "semicolon-token", - ";", - 109947, - 109947, - null - ], - [ - "ident-token", - "background-color", - 109948, - 109963, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 109964, - 109964, - null - ], - [ - "function-token", - "var(", - 109965, - 109968, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-footer-bg", - 109969, - 109988, - { - "value": "--bs-modal-footer-bg" - } - ], - [ - ")-token", - ")", - 109989, - 109989, - null - ], - [ - "semicolon-token", - ";", - 109990, - 109990, - null - ], - [ - "ident-token", - "border-top", - 109991, - 110000, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 110001, - 110001, - null - ], - [ - "function-token", - "var(", - 110002, - 110005, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-footer-border-width", - 110006, - 110035, - { - "value": "--bs-modal-footer-border-width" - } - ], - [ - ")-token", - ")", - 110036, - 110036, - null - ], - [ - "whitespace-token", - " ", - 110037, - 110037, - null - ], - [ - "ident-token", - "solid", - 110038, - 110042, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 110043, - 110043, - null - ], - [ - "function-token", - "var(", - 110044, - 110047, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-footer-border-color", - 110048, - 110077, - { - "value": "--bs-modal-footer-border-color" - } - ], - [ - ")-token", - ")", - 110078, - 110078, - null - ], - [ - "semicolon-token", - ";", - 110079, - 110079, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 110080, - 110105, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 110106, - 110106, - null - ], - [ - "function-token", - "var(", - 110107, - 110110, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-inner-border-radius", - 110111, - 110140, - { - "value": "--bs-modal-inner-border-radius" - } - ], - [ - ")-token", - ")", - 110141, - 110141, - null - ], - [ - "semicolon-token", - ";", - 110142, - 110142, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 110143, - 110167, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 110168, - 110168, - null - ], - [ - "function-token", - "var(", - 110169, - 110172, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-inner-border-radius", - 110173, - 110202, - { - "value": "--bs-modal-inner-border-radius" - } - ], - [ - ")-token", - ")", - 110203, - 110203, - null - ], - [ - "}-token", - "}", - 110204, - 110204, - null - ], - [ - "delim-token", - ".", - 110205, - 110205, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 110206, - 110217, - { - "value": "modal-footer" - } - ], - [ - "delim-token", - ">", - 110218, - 110218, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 110219, - 110219, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 110220, - 110220, - null - ], - [ - "ident-token", - "margin", - 110221, - 110226, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 110227, - 110227, - null - ], - [ - "function-token", - "calc(", - 110228, - 110232, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 110233, - 110236, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-footer-gap", - 110237, - 110257, - { - "value": "--bs-modal-footer-gap" - } - ], - [ - ")-token", - ")", - 110258, - 110258, - null - ], - [ - "whitespace-token", - " ", - 110259, - 110259, - null - ], - [ - "delim-token", - "*", - 110260, - 110260, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 110261, - 110261, - null - ], - [ - "number-token", - ".5", - 110262, - 110263, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 110264, - 110264, - null - ], - [ - "}-token", - "}", - 110265, - 110265, - null - ], - [ - "at-keyword-token", - "@media", - 110266, - 110271, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 110272, - 110272, - null - ], - [ - "(-token", - "(", - 110273, - 110273, - null - ], - [ - "ident-token", - "min-width", - 110274, - 110282, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 110283, - 110283, - null - ], - [ - "dimension-token", - "576px", - 110284, - 110288, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 110289, - 110289, - null - ], - [ - "{-token", - "{", - 110290, - 110290, - null - ], - [ - "delim-token", - ".", - 110291, - 110291, - { - "value": "." - } - ], - [ - "ident-token", - "modal", - 110292, - 110296, - { - "value": "modal" - } - ], - [ - "{-token", - "{", - 110297, - 110297, - null - ], - [ - "ident-token", - "--bs-modal-margin", - 110298, - 110314, - { - "value": "--bs-modal-margin" - } - ], - [ - "colon-token", - ":", - 110315, - 110315, - null - ], - [ - "dimension-token", - "1.75rem", - 110316, - 110322, - { - "value": 1.75, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 110323, - 110323, - null - ], - [ - "ident-token", - "--bs-modal-box-shadow", - 110324, - 110344, - { - "value": "--bs-modal-box-shadow" - } - ], - [ - "colon-token", - ":", - 110345, - 110345, - null - ], - [ - "number-token", - "0", - 110346, - 110346, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 110347, - 110347, - null - ], - [ - "dimension-token", - "0.5rem", - 110348, - 110353, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 110354, - 110354, - null - ], - [ - "dimension-token", - "1rem", - 110355, - 110358, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 110359, - 110359, - null - ], - [ - "function-token", - "rgba(", - 110360, - 110364, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 110365, - 110365, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 110366, - 110366, - null - ], - [ - "whitespace-token", - " ", - 110367, - 110367, - null - ], - [ - "number-token", - "0", - 110368, - 110368, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 110369, - 110369, - null - ], - [ - "whitespace-token", - " ", - 110370, - 110370, - null - ], - [ - "number-token", - "0", - 110371, - 110371, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 110372, - 110372, - null - ], - [ - "whitespace-token", - " ", - 110373, - 110373, - null - ], - [ - "number-token", - "0.15", - 110374, - 110377, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 110378, - 110378, - null - ], - [ - "}-token", - "}", - 110379, - 110379, - null - ], - [ - "delim-token", - ".", - 110380, - 110380, - { - "value": "." - } - ], - [ - "ident-token", - "modal-dialog", - 110381, - 110392, - { - "value": "modal-dialog" - } - ], - [ - "{-token", - "{", - 110393, - 110393, - null - ], - [ - "ident-token", - "max-width", - 110394, - 110402, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 110403, - 110403, - null - ], - [ - "function-token", - "var(", - 110404, - 110407, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-modal-width", - 110408, - 110423, - { - "value": "--bs-modal-width" - } - ], - [ - ")-token", - ")", - 110424, - 110424, - null - ], - [ - "semicolon-token", - ";", - 110425, - 110425, - null - ], - [ - "ident-token", - "margin-right", - 110426, - 110437, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 110438, - 110438, - null - ], - [ - "ident-token", - "auto", - 110439, - 110442, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 110443, - 110443, - null - ], - [ - "ident-token", - "margin-left", - 110444, - 110454, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 110455, - 110455, - null - ], - [ - "ident-token", - "auto", - 110456, - 110459, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 110460, - 110460, - null - ], - [ - "delim-token", - ".", - 110461, - 110461, - { - "value": "." - } - ], - [ - "ident-token", - "modal-sm", - 110462, - 110469, - { - "value": "modal-sm" - } - ], - [ - "{-token", - "{", - 110470, - 110470, - null - ], - [ - "ident-token", - "--bs-modal-width", - 110471, - 110486, - { - "value": "--bs-modal-width" - } - ], - [ - "colon-token", - ":", - 110487, - 110487, - null - ], - [ - "dimension-token", - "300px", - 110488, - 110492, - { - "value": 300, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 110493, - 110493, - null - ], - [ - "}-token", - "}", - 110494, - 110494, - null - ], - [ - "at-keyword-token", - "@media", - 110495, - 110500, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 110501, - 110501, - null - ], - [ - "(-token", - "(", - 110502, - 110502, - null - ], - [ - "ident-token", - "min-width", - 110503, - 110511, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 110512, - 110512, - null - ], - [ - "dimension-token", - "992px", - 110513, - 110517, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 110518, - 110518, - null - ], - [ - "{-token", - "{", - 110519, - 110519, - null - ], - [ - "delim-token", - ".", - 110520, - 110520, - { - "value": "." - } - ], - [ - "ident-token", - "modal-lg", - 110521, - 110528, - { - "value": "modal-lg" - } - ], - [ - "comma-token", - ",", - 110529, - 110529, - null - ], - [ - "delim-token", - ".", - 110530, - 110530, - { - "value": "." - } - ], - [ - "ident-token", - "modal-xl", - 110531, - 110538, - { - "value": "modal-xl" - } - ], - [ - "{-token", - "{", - 110539, - 110539, - null - ], - [ - "ident-token", - "--bs-modal-width", - 110540, - 110555, - { - "value": "--bs-modal-width" - } - ], - [ - "colon-token", - ":", - 110556, - 110556, - null - ], - [ - "dimension-token", - "800px", - 110557, - 110561, - { - "value": 800, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 110562, - 110562, - null - ], - [ - "}-token", - "}", - 110563, - 110563, - null - ], - [ - "at-keyword-token", - "@media", - 110564, - 110569, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 110570, - 110570, - null - ], - [ - "(-token", - "(", - 110571, - 110571, - null - ], - [ - "ident-token", - "min-width", - 110572, - 110580, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 110581, - 110581, - null - ], - [ - "dimension-token", - "1200px", - 110582, - 110587, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 110588, - 110588, - null - ], - [ - "{-token", - "{", - 110589, - 110589, - null - ], - [ - "delim-token", - ".", - 110590, - 110590, - { - "value": "." - } - ], - [ - "ident-token", - "modal-xl", - 110591, - 110598, - { - "value": "modal-xl" - } - ], - [ - "{-token", - "{", - 110599, - 110599, - null - ], - [ - "ident-token", - "--bs-modal-width", - 110600, - 110615, - { - "value": "--bs-modal-width" - } - ], - [ - "colon-token", - ":", - 110616, - 110616, - null - ], - [ - "dimension-token", - "1140px", - 110617, - 110622, - { - "value": 1140, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 110623, - 110623, - null - ], - [ - "}-token", - "}", - 110624, - 110624, - null - ], - [ - "delim-token", - ".", - 110625, - 110625, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen", - 110626, - 110641, - { - "value": "modal-fullscreen" - } - ], - [ - "{-token", - "{", - 110642, - 110642, - null - ], - [ - "ident-token", - "width", - 110643, - 110647, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 110648, - 110648, - null - ], - [ - "dimension-token", - "100vw", - 110649, - 110653, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 110654, - 110654, - null - ], - [ - "ident-token", - "max-width", - 110655, - 110663, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 110664, - 110664, - null - ], - [ - "ident-token", - "none", - 110665, - 110668, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 110669, - 110669, - null - ], - [ - "ident-token", - "height", - 110670, - 110675, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 110676, - 110676, - null - ], - [ - "percentage-token", - "100%", - 110677, - 110680, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 110681, - 110681, - null - ], - [ - "ident-token", - "margin", - 110682, - 110687, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 110688, - 110688, - null - ], - [ - "number-token", - "0", - 110689, - 110689, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 110690, - 110690, - null - ], - [ - "delim-token", - ".", - 110691, - 110691, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen", - 110692, - 110707, - { - "value": "modal-fullscreen" - } - ], - [ - "whitespace-token", - " ", - 110708, - 110708, - null - ], - [ - "delim-token", - ".", - 110709, - 110709, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 110710, - 110722, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 110723, - 110723, - null - ], - [ - "ident-token", - "height", - 110724, - 110729, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 110730, - 110730, - null - ], - [ - "percentage-token", - "100%", - 110731, - 110734, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 110735, - 110735, - null - ], - [ - "ident-token", - "border", - 110736, - 110741, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 110742, - 110742, - null - ], - [ - "number-token", - "0", - 110743, - 110743, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 110744, - 110744, - null - ], - [ - "ident-token", - "border-radius", - 110745, - 110757, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 110758, - 110758, - null - ], - [ - "number-token", - "0", - 110759, - 110759, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 110760, - 110760, - null - ], - [ - "delim-token", - ".", - 110761, - 110761, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen", - 110762, - 110777, - { - "value": "modal-fullscreen" - } - ], - [ - "whitespace-token", - " ", - 110778, - 110778, - null - ], - [ - "delim-token", - ".", - 110779, - 110779, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 110780, - 110791, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 110792, - 110792, - null - ], - [ - "delim-token", - ".", - 110793, - 110793, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen", - 110794, - 110809, - { - "value": "modal-fullscreen" - } - ], - [ - "whitespace-token", - " ", - 110810, - 110810, - null - ], - [ - "delim-token", - ".", - 110811, - 110811, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 110812, - 110823, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 110824, - 110824, - null - ], - [ - "ident-token", - "border-radius", - 110825, - 110837, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 110838, - 110838, - null - ], - [ - "number-token", - "0", - 110839, - 110839, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 110840, - 110840, - null - ], - [ - "delim-token", - ".", - 110841, - 110841, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen", - 110842, - 110857, - { - "value": "modal-fullscreen" - } - ], - [ - "whitespace-token", - " ", - 110858, - 110858, - null - ], - [ - "delim-token", - ".", - 110859, - 110859, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 110860, - 110869, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 110870, - 110870, - null - ], - [ - "ident-token", - "overflow-y", - 110871, - 110880, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 110881, - 110881, - null - ], - [ - "ident-token", - "auto", - 110882, - 110885, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 110886, - 110886, - null - ], - [ - "at-keyword-token", - "@media", - 110887, - 110892, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 110893, - 110893, - null - ], - [ - "(-token", - "(", - 110894, - 110894, - null - ], - [ - "ident-token", - "max-width", - 110895, - 110903, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 110904, - 110904, - null - ], - [ - "dimension-token", - "575.98px", - 110905, - 110912, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 110913, - 110913, - null - ], - [ - "{-token", - "{", - 110914, - 110914, - null - ], - [ - "delim-token", - ".", - 110915, - 110915, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-sm-down", - 110916, - 110939, - { - "value": "modal-fullscreen-sm-down" - } - ], - [ - "{-token", - "{", - 110940, - 110940, - null - ], - [ - "ident-token", - "width", - 110941, - 110945, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 110946, - 110946, - null - ], - [ - "dimension-token", - "100vw", - 110947, - 110951, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 110952, - 110952, - null - ], - [ - "ident-token", - "max-width", - 110953, - 110961, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 110962, - 110962, - null - ], - [ - "ident-token", - "none", - 110963, - 110966, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 110967, - 110967, - null - ], - [ - "ident-token", - "height", - 110968, - 110973, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 110974, - 110974, - null - ], - [ - "percentage-token", - "100%", - 110975, - 110978, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 110979, - 110979, - null - ], - [ - "ident-token", - "margin", - 110980, - 110985, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 110986, - 110986, - null - ], - [ - "number-token", - "0", - 110987, - 110987, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 110988, - 110988, - null - ], - [ - "delim-token", - ".", - 110989, - 110989, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-sm-down", - 110990, - 111013, - { - "value": "modal-fullscreen-sm-down" - } - ], - [ - "whitespace-token", - " ", - 111014, - 111014, - null - ], - [ - "delim-token", - ".", - 111015, - 111015, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 111016, - 111028, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 111029, - 111029, - null - ], - [ - "ident-token", - "height", - 111030, - 111035, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111036, - 111036, - null - ], - [ - "percentage-token", - "100%", - 111037, - 111040, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111041, - 111041, - null - ], - [ - "ident-token", - "border", - 111042, - 111047, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 111048, - 111048, - null - ], - [ - "number-token", - "0", - 111049, - 111049, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 111050, - 111050, - null - ], - [ - "ident-token", - "border-radius", - 111051, - 111063, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111064, - 111064, - null - ], - [ - "number-token", - "0", - 111065, - 111065, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111066, - 111066, - null - ], - [ - "delim-token", - ".", - 111067, - 111067, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-sm-down", - 111068, - 111091, - { - "value": "modal-fullscreen-sm-down" - } - ], - [ - "whitespace-token", - " ", - 111092, - 111092, - null - ], - [ - "delim-token", - ".", - 111093, - 111093, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 111094, - 111105, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 111106, - 111106, - null - ], - [ - "delim-token", - ".", - 111107, - 111107, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-sm-down", - 111108, - 111131, - { - "value": "modal-fullscreen-sm-down" - } - ], - [ - "whitespace-token", - " ", - 111132, - 111132, - null - ], - [ - "delim-token", - ".", - 111133, - 111133, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 111134, - 111145, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 111146, - 111146, - null - ], - [ - "ident-token", - "border-radius", - 111147, - 111159, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111160, - 111160, - null - ], - [ - "number-token", - "0", - 111161, - 111161, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111162, - 111162, - null - ], - [ - "delim-token", - ".", - 111163, - 111163, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-sm-down", - 111164, - 111187, - { - "value": "modal-fullscreen-sm-down" - } - ], - [ - "whitespace-token", - " ", - 111188, - 111188, - null - ], - [ - "delim-token", - ".", - 111189, - 111189, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 111190, - 111199, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 111200, - 111200, - null - ], - [ - "ident-token", - "overflow-y", - 111201, - 111210, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 111211, - 111211, - null - ], - [ - "ident-token", - "auto", - 111212, - 111215, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 111216, - 111216, - null - ], - [ - "}-token", - "}", - 111217, - 111217, - null - ], - [ - "at-keyword-token", - "@media", - 111218, - 111223, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 111224, - 111224, - null - ], - [ - "(-token", - "(", - 111225, - 111225, - null - ], - [ - "ident-token", - "max-width", - 111226, - 111234, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111235, - 111235, - null - ], - [ - "dimension-token", - "767.98px", - 111236, - 111243, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 111244, - 111244, - null - ], - [ - "{-token", - "{", - 111245, - 111245, - null - ], - [ - "delim-token", - ".", - 111246, - 111246, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-md-down", - 111247, - 111270, - { - "value": "modal-fullscreen-md-down" - } - ], - [ - "{-token", - "{", - 111271, - 111271, - null - ], - [ - "ident-token", - "width", - 111272, - 111276, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 111277, - 111277, - null - ], - [ - "dimension-token", - "100vw", - 111278, - 111282, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 111283, - 111283, - null - ], - [ - "ident-token", - "max-width", - 111284, - 111292, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111293, - 111293, - null - ], - [ - "ident-token", - "none", - 111294, - 111297, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 111298, - 111298, - null - ], - [ - "ident-token", - "height", - 111299, - 111304, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111305, - 111305, - null - ], - [ - "percentage-token", - "100%", - 111306, - 111309, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111310, - 111310, - null - ], - [ - "ident-token", - "margin", - 111311, - 111316, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 111317, - 111317, - null - ], - [ - "number-token", - "0", - 111318, - 111318, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111319, - 111319, - null - ], - [ - "delim-token", - ".", - 111320, - 111320, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-md-down", - 111321, - 111344, - { - "value": "modal-fullscreen-md-down" - } - ], - [ - "whitespace-token", - " ", - 111345, - 111345, - null - ], - [ - "delim-token", - ".", - 111346, - 111346, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 111347, - 111359, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 111360, - 111360, - null - ], - [ - "ident-token", - "height", - 111361, - 111366, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111367, - 111367, - null - ], - [ - "percentage-token", - "100%", - 111368, - 111371, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111372, - 111372, - null - ], - [ - "ident-token", - "border", - 111373, - 111378, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 111379, - 111379, - null - ], - [ - "number-token", - "0", - 111380, - 111380, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 111381, - 111381, - null - ], - [ - "ident-token", - "border-radius", - 111382, - 111394, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111395, - 111395, - null - ], - [ - "number-token", - "0", - 111396, - 111396, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111397, - 111397, - null - ], - [ - "delim-token", - ".", - 111398, - 111398, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-md-down", - 111399, - 111422, - { - "value": "modal-fullscreen-md-down" - } - ], - [ - "whitespace-token", - " ", - 111423, - 111423, - null - ], - [ - "delim-token", - ".", - 111424, - 111424, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 111425, - 111436, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 111437, - 111437, - null - ], - [ - "delim-token", - ".", - 111438, - 111438, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-md-down", - 111439, - 111462, - { - "value": "modal-fullscreen-md-down" - } - ], - [ - "whitespace-token", - " ", - 111463, - 111463, - null - ], - [ - "delim-token", - ".", - 111464, - 111464, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 111465, - 111476, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 111477, - 111477, - null - ], - [ - "ident-token", - "border-radius", - 111478, - 111490, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111491, - 111491, - null - ], - [ - "number-token", - "0", - 111492, - 111492, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111493, - 111493, - null - ], - [ - "delim-token", - ".", - 111494, - 111494, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-md-down", - 111495, - 111518, - { - "value": "modal-fullscreen-md-down" - } - ], - [ - "whitespace-token", - " ", - 111519, - 111519, - null - ], - [ - "delim-token", - ".", - 111520, - 111520, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 111521, - 111530, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 111531, - 111531, - null - ], - [ - "ident-token", - "overflow-y", - 111532, - 111541, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 111542, - 111542, - null - ], - [ - "ident-token", - "auto", - 111543, - 111546, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 111547, - 111547, - null - ], - [ - "}-token", - "}", - 111548, - 111548, - null - ], - [ - "at-keyword-token", - "@media", - 111549, - 111554, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 111555, - 111555, - null - ], - [ - "(-token", - "(", - 111556, - 111556, - null - ], - [ - "ident-token", - "max-width", - 111557, - 111565, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111566, - 111566, - null - ], - [ - "dimension-token", - "991.98px", - 111567, - 111574, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 111575, - 111575, - null - ], - [ - "{-token", - "{", - 111576, - 111576, - null - ], - [ - "delim-token", - ".", - 111577, - 111577, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-lg-down", - 111578, - 111601, - { - "value": "modal-fullscreen-lg-down" - } - ], - [ - "{-token", - "{", - 111602, - 111602, - null - ], - [ - "ident-token", - "width", - 111603, - 111607, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 111608, - 111608, - null - ], - [ - "dimension-token", - "100vw", - 111609, - 111613, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 111614, - 111614, - null - ], - [ - "ident-token", - "max-width", - 111615, - 111623, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111624, - 111624, - null - ], - [ - "ident-token", - "none", - 111625, - 111628, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 111629, - 111629, - null - ], - [ - "ident-token", - "height", - 111630, - 111635, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111636, - 111636, - null - ], - [ - "percentage-token", - "100%", - 111637, - 111640, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111641, - 111641, - null - ], - [ - "ident-token", - "margin", - 111642, - 111647, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 111648, - 111648, - null - ], - [ - "number-token", - "0", - 111649, - 111649, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111650, - 111650, - null - ], - [ - "delim-token", - ".", - 111651, - 111651, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-lg-down", - 111652, - 111675, - { - "value": "modal-fullscreen-lg-down" - } - ], - [ - "whitespace-token", - " ", - 111676, - 111676, - null - ], - [ - "delim-token", - ".", - 111677, - 111677, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 111678, - 111690, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 111691, - 111691, - null - ], - [ - "ident-token", - "height", - 111692, - 111697, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111698, - 111698, - null - ], - [ - "percentage-token", - "100%", - 111699, - 111702, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111703, - 111703, - null - ], - [ - "ident-token", - "border", - 111704, - 111709, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 111710, - 111710, - null - ], - [ - "number-token", - "0", - 111711, - 111711, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 111712, - 111712, - null - ], - [ - "ident-token", - "border-radius", - 111713, - 111725, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111726, - 111726, - null - ], - [ - "number-token", - "0", - 111727, - 111727, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111728, - 111728, - null - ], - [ - "delim-token", - ".", - 111729, - 111729, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-lg-down", - 111730, - 111753, - { - "value": "modal-fullscreen-lg-down" - } - ], - [ - "whitespace-token", - " ", - 111754, - 111754, - null - ], - [ - "delim-token", - ".", - 111755, - 111755, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 111756, - 111767, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 111768, - 111768, - null - ], - [ - "delim-token", - ".", - 111769, - 111769, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-lg-down", - 111770, - 111793, - { - "value": "modal-fullscreen-lg-down" - } - ], - [ - "whitespace-token", - " ", - 111794, - 111794, - null - ], - [ - "delim-token", - ".", - 111795, - 111795, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 111796, - 111807, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 111808, - 111808, - null - ], - [ - "ident-token", - "border-radius", - 111809, - 111821, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 111822, - 111822, - null - ], - [ - "number-token", - "0", - 111823, - 111823, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111824, - 111824, - null - ], - [ - "delim-token", - ".", - 111825, - 111825, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-lg-down", - 111826, - 111849, - { - "value": "modal-fullscreen-lg-down" - } - ], - [ - "whitespace-token", - " ", - 111850, - 111850, - null - ], - [ - "delim-token", - ".", - 111851, - 111851, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 111852, - 111861, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 111862, - 111862, - null - ], - [ - "ident-token", - "overflow-y", - 111863, - 111872, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 111873, - 111873, - null - ], - [ - "ident-token", - "auto", - 111874, - 111877, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 111878, - 111878, - null - ], - [ - "}-token", - "}", - 111879, - 111879, - null - ], - [ - "at-keyword-token", - "@media", - 111880, - 111885, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 111886, - 111886, - null - ], - [ - "(-token", - "(", - 111887, - 111887, - null - ], - [ - "ident-token", - "max-width", - 111888, - 111896, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111897, - 111897, - null - ], - [ - "dimension-token", - "1199.98px", - 111898, - 111906, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 111907, - 111907, - null - ], - [ - "{-token", - "{", - 111908, - 111908, - null - ], - [ - "delim-token", - ".", - 111909, - 111909, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xl-down", - 111910, - 111933, - { - "value": "modal-fullscreen-xl-down" - } - ], - [ - "{-token", - "{", - 111934, - 111934, - null - ], - [ - "ident-token", - "width", - 111935, - 111939, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 111940, - 111940, - null - ], - [ - "dimension-token", - "100vw", - 111941, - 111945, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 111946, - 111946, - null - ], - [ - "ident-token", - "max-width", - 111947, - 111955, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 111956, - 111956, - null - ], - [ - "ident-token", - "none", - 111957, - 111960, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 111961, - 111961, - null - ], - [ - "ident-token", - "height", - 111962, - 111967, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 111968, - 111968, - null - ], - [ - "percentage-token", - "100%", - 111969, - 111972, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 111973, - 111973, - null - ], - [ - "ident-token", - "margin", - 111974, - 111979, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 111980, - 111980, - null - ], - [ - "number-token", - "0", - 111981, - 111981, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 111982, - 111982, - null - ], - [ - "delim-token", - ".", - 111983, - 111983, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xl-down", - 111984, - 112007, - { - "value": "modal-fullscreen-xl-down" - } - ], - [ - "whitespace-token", - " ", - 112008, - 112008, - null - ], - [ - "delim-token", - ".", - 112009, - 112009, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 112010, - 112022, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 112023, - 112023, - null - ], - [ - "ident-token", - "height", - 112024, - 112029, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 112030, - 112030, - null - ], - [ - "percentage-token", - "100%", - 112031, - 112034, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 112035, - 112035, - null - ], - [ - "ident-token", - "border", - 112036, - 112041, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 112042, - 112042, - null - ], - [ - "number-token", - "0", - 112043, - 112043, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 112044, - 112044, - null - ], - [ - "ident-token", - "border-radius", - 112045, - 112057, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 112058, - 112058, - null - ], - [ - "number-token", - "0", - 112059, - 112059, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 112060, - 112060, - null - ], - [ - "delim-token", - ".", - 112061, - 112061, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xl-down", - 112062, - 112085, - { - "value": "modal-fullscreen-xl-down" - } - ], - [ - "whitespace-token", - " ", - 112086, - 112086, - null - ], - [ - "delim-token", - ".", - 112087, - 112087, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 112088, - 112099, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 112100, - 112100, - null - ], - [ - "delim-token", - ".", - 112101, - 112101, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xl-down", - 112102, - 112125, - { - "value": "modal-fullscreen-xl-down" - } - ], - [ - "whitespace-token", - " ", - 112126, - 112126, - null - ], - [ - "delim-token", - ".", - 112127, - 112127, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 112128, - 112139, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 112140, - 112140, - null - ], - [ - "ident-token", - "border-radius", - 112141, - 112153, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 112154, - 112154, - null - ], - [ - "number-token", - "0", - 112155, - 112155, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 112156, - 112156, - null - ], - [ - "delim-token", - ".", - 112157, - 112157, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xl-down", - 112158, - 112181, - { - "value": "modal-fullscreen-xl-down" - } - ], - [ - "whitespace-token", - " ", - 112182, - 112182, - null - ], - [ - "delim-token", - ".", - 112183, - 112183, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 112184, - 112193, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 112194, - 112194, - null - ], - [ - "ident-token", - "overflow-y", - 112195, - 112204, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 112205, - 112205, - null - ], - [ - "ident-token", - "auto", - 112206, - 112209, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 112210, - 112210, - null - ], - [ - "}-token", - "}", - 112211, - 112211, - null - ], - [ - "at-keyword-token", - "@media", - 112212, - 112217, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 112218, - 112218, - null - ], - [ - "(-token", - "(", - 112219, - 112219, - null - ], - [ - "ident-token", - "max-width", - 112220, - 112228, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 112229, - 112229, - null - ], - [ - "dimension-token", - "1399.98px", - 112230, - 112238, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 112239, - 112239, - null - ], - [ - "{-token", - "{", - 112240, - 112240, - null - ], - [ - "delim-token", - ".", - 112241, - 112241, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xxl-down", - 112242, - 112266, - { - "value": "modal-fullscreen-xxl-down" - } - ], - [ - "{-token", - "{", - 112267, - 112267, - null - ], - [ - "ident-token", - "width", - 112268, - 112272, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 112273, - 112273, - null - ], - [ - "dimension-token", - "100vw", - 112274, - 112278, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 112279, - 112279, - null - ], - [ - "ident-token", - "max-width", - 112280, - 112288, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 112289, - 112289, - null - ], - [ - "ident-token", - "none", - 112290, - 112293, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 112294, - 112294, - null - ], - [ - "ident-token", - "height", - 112295, - 112300, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 112301, - 112301, - null - ], - [ - "percentage-token", - "100%", - 112302, - 112305, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 112306, - 112306, - null - ], - [ - "ident-token", - "margin", - 112307, - 112312, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 112313, - 112313, - null - ], - [ - "number-token", - "0", - 112314, - 112314, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 112315, - 112315, - null - ], - [ - "delim-token", - ".", - 112316, - 112316, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xxl-down", - 112317, - 112341, - { - "value": "modal-fullscreen-xxl-down" - } - ], - [ - "whitespace-token", - " ", - 112342, - 112342, - null - ], - [ - "delim-token", - ".", - 112343, - 112343, - { - "value": "." - } - ], - [ - "ident-token", - "modal-content", - 112344, - 112356, - { - "value": "modal-content" - } - ], - [ - "{-token", - "{", - 112357, - 112357, - null - ], - [ - "ident-token", - "height", - 112358, - 112363, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 112364, - 112364, - null - ], - [ - "percentage-token", - "100%", - 112365, - 112368, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 112369, - 112369, - null - ], - [ - "ident-token", - "border", - 112370, - 112375, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 112376, - 112376, - null - ], - [ - "number-token", - "0", - 112377, - 112377, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 112378, - 112378, - null - ], - [ - "ident-token", - "border-radius", - 112379, - 112391, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 112392, - 112392, - null - ], - [ - "number-token", - "0", - 112393, - 112393, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 112394, - 112394, - null - ], - [ - "delim-token", - ".", - 112395, - 112395, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xxl-down", - 112396, - 112420, - { - "value": "modal-fullscreen-xxl-down" - } - ], - [ - "whitespace-token", - " ", - 112421, - 112421, - null - ], - [ - "delim-token", - ".", - 112422, - 112422, - { - "value": "." - } - ], - [ - "ident-token", - "modal-footer", - 112423, - 112434, - { - "value": "modal-footer" - } - ], - [ - "comma-token", - ",", - 112435, - 112435, - null - ], - [ - "delim-token", - ".", - 112436, - 112436, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xxl-down", - 112437, - 112461, - { - "value": "modal-fullscreen-xxl-down" - } - ], - [ - "whitespace-token", - " ", - 112462, - 112462, - null - ], - [ - "delim-token", - ".", - 112463, - 112463, - { - "value": "." - } - ], - [ - "ident-token", - "modal-header", - 112464, - 112475, - { - "value": "modal-header" - } - ], - [ - "{-token", - "{", - 112476, - 112476, - null - ], - [ - "ident-token", - "border-radius", - 112477, - 112489, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 112490, - 112490, - null - ], - [ - "number-token", - "0", - 112491, - 112491, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 112492, - 112492, - null - ], - [ - "delim-token", - ".", - 112493, - 112493, - { - "value": "." - } - ], - [ - "ident-token", - "modal-fullscreen-xxl-down", - 112494, - 112518, - { - "value": "modal-fullscreen-xxl-down" - } - ], - [ - "whitespace-token", - " ", - 112519, - 112519, - null - ], - [ - "delim-token", - ".", - 112520, - 112520, - { - "value": "." - } - ], - [ - "ident-token", - "modal-body", - 112521, - 112530, - { - "value": "modal-body" - } - ], - [ - "{-token", - "{", - 112531, - 112531, - null - ], - [ - "ident-token", - "overflow-y", - 112532, - 112541, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 112542, - 112542, - null - ], - [ - "ident-token", - "auto", - 112543, - 112546, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 112547, - 112547, - null - ], - [ - "}-token", - "}", - 112548, - 112548, - null - ], - [ - "delim-token", - ".", - 112549, - 112549, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip", - 112550, - 112556, - { - "value": "tooltip" - } - ], - [ - "{-token", - "{", - 112557, - 112557, - null - ], - [ - "ident-token", - "--bs-tooltip-zindex", - 112558, - 112576, - { - "value": "--bs-tooltip-zindex" - } - ], - [ - "colon-token", - ":", - 112577, - 112577, - null - ], - [ - "number-token", - "1080", - 112578, - 112581, - { - "value": 1080, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 112582, - 112582, - null - ], - [ - "ident-token", - "--bs-tooltip-max-width", - 112583, - 112604, - { - "value": "--bs-tooltip-max-width" - } - ], - [ - "colon-token", - ":", - 112605, - 112605, - null - ], - [ - "dimension-token", - "200px", - 112606, - 112610, - { - "value": 200, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 112611, - 112611, - null - ], - [ - "ident-token", - "--bs-tooltip-padding-x", - 112612, - 112633, - { - "value": "--bs-tooltip-padding-x" - } - ], - [ - "colon-token", - ":", - 112634, - 112634, - null - ], - [ - "dimension-token", - "0.5rem", - 112635, - 112640, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112641, - 112641, - null - ], - [ - "ident-token", - "--bs-tooltip-padding-y", - 112642, - 112663, - { - "value": "--bs-tooltip-padding-y" - } - ], - [ - "colon-token", - ":", - 112664, - 112664, - null - ], - [ - "dimension-token", - "0.25rem", - 112665, - 112671, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112672, - 112672, - null - ], - [ - "ident-token", - "--bs-tooltip-margin", - 112673, - 112691, - { - "value": "--bs-tooltip-margin" - } - ], - [ - "colon-token", - ":", - 112692, - 112692, - null - ], - [ - "whitespace-token", - " ", - 112693, - 112693, - null - ], - [ - "semicolon-token", - ";", - 112694, - 112694, - null - ], - [ - "ident-token", - "--bs-tooltip-font-size", - 112695, - 112716, - { - "value": "--bs-tooltip-font-size" - } - ], - [ - "colon-token", - ":", - 112717, - 112717, - null - ], - [ - "dimension-token", - "0.875rem", - 112718, - 112725, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112726, - 112726, - null - ], - [ - "ident-token", - "--bs-tooltip-color", - 112727, - 112744, - { - "value": "--bs-tooltip-color" - } - ], - [ - "colon-token", - ":", - 112745, - 112745, - null - ], - [ - "hash-token", - "#fff", - 112746, - 112749, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 112750, - 112750, - null - ], - [ - "ident-token", - "--bs-tooltip-bg", - 112751, - 112765, - { - "value": "--bs-tooltip-bg" - } - ], - [ - "colon-token", - ":", - 112766, - 112766, - null - ], - [ - "hash-token", - "#000", - 112767, - 112770, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 112771, - 112771, - null - ], - [ - "ident-token", - "--bs-tooltip-border-radius", - 112772, - 112797, - { - "value": "--bs-tooltip-border-radius" - } - ], - [ - "colon-token", - ":", - 112798, - 112798, - null - ], - [ - "dimension-token", - "0.375rem", - 112799, - 112806, - { - "value": 0.375, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112807, - 112807, - null - ], - [ - "ident-token", - "--bs-tooltip-opacity", - 112808, - 112827, - { - "value": "--bs-tooltip-opacity" - } - ], - [ - "colon-token", - ":", - 112828, - 112828, - null - ], - [ - "number-token", - "0.9", - 112829, - 112831, - { - "value": 0.9, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 112832, - 112832, - null - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 112833, - 112856, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - "colon-token", - ":", - 112857, - 112857, - null - ], - [ - "dimension-token", - "0.8rem", - 112858, - 112863, - { - "value": 0.8, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112864, - 112864, - null - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 112865, - 112889, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - "colon-token", - ":", - 112890, - 112890, - null - ], - [ - "dimension-token", - "0.4rem", - 112891, - 112896, - { - "value": 0.4, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 112897, - 112897, - null - ], - [ - "ident-token", - "z-index", - 112898, - 112904, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 112905, - 112905, - null - ], - [ - "function-token", - "var(", - 112906, - 112909, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-zindex", - 112910, - 112928, - { - "value": "--bs-tooltip-zindex" - } - ], - [ - ")-token", - ")", - 112929, - 112929, - null - ], - [ - "semicolon-token", - ";", - 112930, - 112930, - null - ], - [ - "ident-token", - "display", - 112931, - 112937, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 112938, - 112938, - null - ], - [ - "ident-token", - "block", - 112939, - 112943, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 112944, - 112944, - null - ], - [ - "ident-token", - "padding", - 112945, - 112951, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 112952, - 112952, - null - ], - [ - "function-token", - "var(", - 112953, - 112956, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 112957, - 112981, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 112982, - 112982, - null - ], - [ - "semicolon-token", - ";", - 112983, - 112983, - null - ], - [ - "ident-token", - "margin", - 112984, - 112989, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 112990, - 112990, - null - ], - [ - "function-token", - "var(", - 112991, - 112994, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-margin", - 112995, - 113013, - { - "value": "--bs-tooltip-margin" - } - ], - [ - ")-token", - ")", - 113014, - 113014, - null - ], - [ - "semicolon-token", - ";", - 113015, - 113015, - null - ], - [ - "ident-token", - "font-family", - 113016, - 113026, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 113027, - 113027, - null - ], - [ - "function-token", - "var(", - 113028, - 113031, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-font-sans-serif", - 113032, - 113051, - { - "value": "--bs-font-sans-serif" - } - ], - [ - ")-token", - ")", - 113052, - 113052, - null - ], - [ - "semicolon-token", - ";", - 113053, - 113053, - null - ], - [ - "ident-token", - "font-style", - 113054, - 113063, - { - "value": "font-style" - } - ], - [ - "colon-token", - ":", - 113064, - 113064, - null - ], - [ - "ident-token", - "normal", - 113065, - 113070, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 113071, - 113071, - null - ], - [ - "ident-token", - "font-weight", - 113072, - 113082, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 113083, - 113083, - null - ], - [ - "number-token", - "400", - 113084, - 113086, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 113087, - 113087, - null - ], - [ - "ident-token", - "line-height", - 113088, - 113098, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 113099, - 113099, - null - ], - [ - "number-token", - "1.5", - 113100, - 113102, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 113103, - 113103, - null - ], - [ - "ident-token", - "text-align", - 113104, - 113113, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 113114, - 113114, - null - ], - [ - "ident-token", - "left", - 113115, - 113118, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 113119, - 113119, - null - ], - [ - "ident-token", - "text-align", - 113120, - 113129, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 113130, - 113130, - null - ], - [ - "ident-token", - "start", - 113131, - 113135, - { - "value": "start" - } - ], - [ - "semicolon-token", - ";", - 113136, - 113136, - null - ], - [ - "ident-token", - "text-decoration", - 113137, - 113151, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 113152, - 113152, - null - ], - [ - "ident-token", - "none", - 113153, - 113156, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 113157, - 113157, - null - ], - [ - "ident-token", - "text-shadow", - 113158, - 113168, - { - "value": "text-shadow" - } - ], - [ - "colon-token", - ":", - 113169, - 113169, - null - ], - [ - "ident-token", - "none", - 113170, - 113173, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 113174, - 113174, - null - ], - [ - "ident-token", - "text-transform", - 113175, - 113188, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 113189, - 113189, - null - ], - [ - "ident-token", - "none", - 113190, - 113193, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 113194, - 113194, - null - ], - [ - "ident-token", - "letter-spacing", - 113195, - 113208, - { - "value": "letter-spacing" - } - ], - [ - "colon-token", - ":", - 113209, - 113209, - null - ], - [ - "ident-token", - "normal", - 113210, - 113215, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 113216, - 113216, - null - ], - [ - "ident-token", - "word-break", - 113217, - 113226, - { - "value": "word-break" - } - ], - [ - "colon-token", - ":", - 113227, - 113227, - null - ], - [ - "ident-token", - "normal", - 113228, - 113233, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 113234, - 113234, - null - ], - [ - "ident-token", - "white-space", - 113235, - 113245, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 113246, - 113246, - null - ], - [ - "ident-token", - "normal", - 113247, - 113252, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 113253, - 113253, - null - ], - [ - "ident-token", - "word-spacing", - 113254, - 113265, - { - "value": "word-spacing" - } - ], - [ - "colon-token", - ":", - 113266, - 113266, - null - ], - [ - "ident-token", - "normal", - 113267, - 113272, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 113273, - 113273, - null - ], - [ - "ident-token", - "line-break", - 113274, - 113283, - { - "value": "line-break" - } - ], - [ - "colon-token", - ":", - 113284, - 113284, - null - ], - [ - "ident-token", - "auto", - 113285, - 113288, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 113289, - 113289, - null - ], - [ - "ident-token", - "font-size", - 113290, - 113298, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 113299, - 113299, - null - ], - [ - "function-token", - "var(", - 113300, - 113303, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-font-size", - 113304, - 113325, - { - "value": "--bs-tooltip-font-size" - } - ], - [ - ")-token", - ")", - 113326, - 113326, - null - ], - [ - "semicolon-token", - ";", - 113327, - 113327, - null - ], - [ - "ident-token", - "word-wrap", - 113328, - 113336, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 113337, - 113337, - null - ], - [ - "ident-token", - "break-word", - 113338, - 113347, - { - "value": "break-word" - } - ], - [ - "semicolon-token", - ";", - 113348, - 113348, - null - ], - [ - "ident-token", - "opacity", - 113349, - 113355, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 113356, - 113356, - null - ], - [ - "number-token", - "0", - 113357, - 113357, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 113358, - 113358, - null - ], - [ - "delim-token", - ".", - 113359, - 113359, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip", - 113360, - 113366, - { - "value": "tooltip" - } - ], - [ - "delim-token", - ".", - 113367, - 113367, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 113368, - 113371, - { - "value": "show" - } - ], - [ - "{-token", - "{", - 113372, - 113372, - null - ], - [ - "ident-token", - "opacity", - 113373, - 113379, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 113380, - 113380, - null - ], - [ - "function-token", - "var(", - 113381, - 113384, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-opacity", - 113385, - 113404, - { - "value": "--bs-tooltip-opacity" - } - ], - [ - ")-token", - ")", - 113405, - 113405, - null - ], - [ - "}-token", - "}", - 113406, - 113406, - null - ], - [ - "delim-token", - ".", - 113407, - 113407, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip", - 113408, - 113414, - { - "value": "tooltip" - } - ], - [ - "whitespace-token", - " ", - 113415, - 113415, - null - ], - [ - "delim-token", - ".", - 113416, - 113416, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113417, - 113429, - { - "value": "tooltip-arrow" - } - ], - [ - "{-token", - "{", - 113430, - 113430, - null - ], - [ - "ident-token", - "display", - 113431, - 113437, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 113438, - 113438, - null - ], - [ - "ident-token", - "block", - 113439, - 113443, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 113444, - 113444, - null - ], - [ - "ident-token", - "width", - 113445, - 113449, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 113450, - 113450, - null - ], - [ - "function-token", - "var(", - 113451, - 113454, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 113455, - 113478, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 113479, - 113479, - null - ], - [ - "semicolon-token", - ";", - 113480, - 113480, - null - ], - [ - "ident-token", - "height", - 113481, - 113486, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 113487, - 113487, - null - ], - [ - "function-token", - "var(", - 113488, - 113491, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 113492, - 113516, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 113517, - 113517, - null - ], - [ - "}-token", - "}", - 113518, - 113518, - null - ], - [ - "delim-token", - ".", - 113519, - 113519, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip", - 113520, - 113526, - { - "value": "tooltip" - } - ], - [ - "whitespace-token", - " ", - 113527, - 113527, - null - ], - [ - "delim-token", - ".", - 113528, - 113528, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113529, - 113541, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 113542, - 113542, - null - ], - [ - "colon-token", - ":", - 113543, - 113543, - null - ], - [ - "ident-token", - "before", - 113544, - 113549, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 113550, - 113550, - null - ], - [ - "ident-token", - "position", - 113551, - 113558, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 113559, - 113559, - null - ], - [ - "ident-token", - "absolute", - 113560, - 113567, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 113568, - 113568, - null - ], - [ - "ident-token", - "content", - 113569, - 113575, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 113576, - 113576, - null - ], - [ - "string-token", - "\"\"", - 113577, - 113578, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 113579, - 113579, - null - ], - [ - "ident-token", - "border-color", - 113580, - 113591, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 113592, - 113592, - null - ], - [ - "ident-token", - "transparent", - 113593, - 113603, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 113604, - 113604, - null - ], - [ - "ident-token", - "border-style", - 113605, - 113616, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 113617, - 113617, - null - ], - [ - "ident-token", - "solid", - 113618, - 113622, - { - "value": "solid" - } - ], - [ - "}-token", - "}", - 113623, - 113623, - null - ], - [ - "delim-token", - ".", - 113624, - 113624, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 113625, - 113639, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 113640, - 113640, - null - ], - [ - "ident-token", - "data-popper-placement", - 113641, - 113661, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 113662, - 113662, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 113663, - 113663, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 113664, - 113666, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 113667, - 113667, - null - ], - [ - "whitespace-token", - " ", - 113668, - 113668, - null - ], - [ - "delim-token", - ".", - 113669, - 113669, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113670, - 113682, - { - "value": "tooltip-arrow" - } - ], - [ - "comma-token", - ",", - 113683, - 113683, - null - ], - [ - "delim-token", - ".", - 113684, - 113684, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-top", - 113685, - 113698, - { - "value": "bs-tooltip-top" - } - ], - [ - "whitespace-token", - " ", - 113699, - 113699, - null - ], - [ - "delim-token", - ".", - 113700, - 113700, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113701, - 113713, - { - "value": "tooltip-arrow" - } - ], - [ - "{-token", - "{", - 113714, - 113714, - null - ], - [ - "ident-token", - "bottom", - 113715, - 113720, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 113721, - 113721, - null - ], - [ - "number-token", - "0", - 113722, - 113722, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 113723, - 113723, - null - ], - [ - "delim-token", - ".", - 113724, - 113724, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 113725, - 113739, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 113740, - 113740, - null - ], - [ - "ident-token", - "data-popper-placement", - 113741, - 113761, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 113762, - 113762, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 113763, - 113763, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 113764, - 113766, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 113767, - 113767, - null - ], - [ - "whitespace-token", - " ", - 113768, - 113768, - null - ], - [ - "delim-token", - ".", - 113769, - 113769, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113770, - 113782, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 113783, - 113783, - null - ], - [ - "colon-token", - ":", - 113784, - 113784, - null - ], - [ - "ident-token", - "before", - 113785, - 113790, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 113791, - 113791, - null - ], - [ - "delim-token", - ".", - 113792, - 113792, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-top", - 113793, - 113806, - { - "value": "bs-tooltip-top" - } - ], - [ - "whitespace-token", - " ", - 113807, - 113807, - null - ], - [ - "delim-token", - ".", - 113808, - 113808, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 113809, - 113821, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 113822, - 113822, - null - ], - [ - "colon-token", - ":", - 113823, - 113823, - null - ], - [ - "ident-token", - "before", - 113824, - 113829, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 113830, - 113830, - null - ], - [ - "ident-token", - "top", - 113831, - 113833, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 113834, - 113834, - null - ], - [ - "dimension-token", - "-1px", - 113835, - 113838, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 113839, - 113839, - null - ], - [ - "ident-token", - "border-width", - 113840, - 113851, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 113852, - 113852, - null - ], - [ - "function-token", - "var(", - 113853, - 113856, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 113857, - 113881, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 113882, - 113882, - null - ], - [ - "whitespace-token", - " ", - 113883, - 113883, - null - ], - [ - "function-token", - "calc(", - 113884, - 113888, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 113889, - 113892, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 113893, - 113916, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 113917, - 113917, - null - ], - [ - "whitespace-token", - " ", - 113918, - 113918, - null - ], - [ - "delim-token", - "*", - 113919, - 113919, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 113920, - 113920, - null - ], - [ - "number-token", - ".5", - 113921, - 113922, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 113923, - 113923, - null - ], - [ - "whitespace-token", - " ", - 113924, - 113924, - null - ], - [ - "number-token", - "0", - 113925, - 113925, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 113926, - 113926, - null - ], - [ - "ident-token", - "border-top-color", - 113927, - 113942, - { - "value": "border-top-color" - } - ], - [ - "colon-token", - ":", - 113943, - 113943, - null - ], - [ - "function-token", - "var(", - 113944, - 113947, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-bg", - 113948, - 113962, - { - "value": "--bs-tooltip-bg" - } - ], - [ - ")-token", - ")", - 113963, - 113963, - null - ], - [ - "}-token", - "}", - 113964, - 113964, - null - ], - [ - "delim-token", - ".", - 113965, - 113965, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 113966, - 113980, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 113981, - 113981, - null - ], - [ - "ident-token", - "data-popper-placement", - 113982, - 114002, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114003, - 114003, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114004, - 114004, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 114005, - 114009, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 114010, - 114010, - null - ], - [ - "whitespace-token", - " ", - 114011, - 114011, - null - ], - [ - "delim-token", - ".", - 114012, - 114012, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114013, - 114025, - { - "value": "tooltip-arrow" - } - ], - [ - "comma-token", - ",", - 114026, - 114026, - null - ], - [ - "delim-token", - ".", - 114027, - 114027, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-end", - 114028, - 114041, - { - "value": "bs-tooltip-end" - } - ], - [ - "whitespace-token", - " ", - 114042, - 114042, - null - ], - [ - "delim-token", - ".", - 114043, - 114043, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114044, - 114056, - { - "value": "tooltip-arrow" - } - ], - [ - "{-token", - "{", - 114057, - 114057, - null - ], - [ - "ident-token", - "left", - 114058, - 114061, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 114062, - 114062, - null - ], - [ - "number-token", - "0", - 114063, - 114063, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 114064, - 114064, - null - ], - [ - "ident-token", - "width", - 114065, - 114069, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 114070, - 114070, - null - ], - [ - "function-token", - "var(", - 114071, - 114074, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 114075, - 114099, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 114100, - 114100, - null - ], - [ - "semicolon-token", - ";", - 114101, - 114101, - null - ], - [ - "ident-token", - "height", - 114102, - 114107, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 114108, - 114108, - null - ], - [ - "function-token", - "var(", - 114109, - 114112, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 114113, - 114136, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 114137, - 114137, - null - ], - [ - "}-token", - "}", - 114138, - 114138, - null - ], - [ - "delim-token", - ".", - 114139, - 114139, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 114140, - 114154, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 114155, - 114155, - null - ], - [ - "ident-token", - "data-popper-placement", - 114156, - 114176, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114177, - 114177, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114178, - 114178, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 114179, - 114183, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 114184, - 114184, - null - ], - [ - "whitespace-token", - " ", - 114185, - 114185, - null - ], - [ - "delim-token", - ".", - 114186, - 114186, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114187, - 114199, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 114200, - 114200, - null - ], - [ - "colon-token", - ":", - 114201, - 114201, - null - ], - [ - "ident-token", - "before", - 114202, - 114207, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 114208, - 114208, - null - ], - [ - "delim-token", - ".", - 114209, - 114209, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-end", - 114210, - 114223, - { - "value": "bs-tooltip-end" - } - ], - [ - "whitespace-token", - " ", - 114224, - 114224, - null - ], - [ - "delim-token", - ".", - 114225, - 114225, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114226, - 114238, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 114239, - 114239, - null - ], - [ - "colon-token", - ":", - 114240, - 114240, - null - ], - [ - "ident-token", - "before", - 114241, - 114246, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 114247, - 114247, - null - ], - [ - "ident-token", - "right", - 114248, - 114252, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 114253, - 114253, - null - ], - [ - "dimension-token", - "-1px", - 114254, - 114257, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 114258, - 114258, - null - ], - [ - "ident-token", - "border-width", - 114259, - 114270, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 114271, - 114271, - null - ], - [ - "function-token", - "calc(", - 114272, - 114276, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 114277, - 114280, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 114281, - 114304, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 114305, - 114305, - null - ], - [ - "whitespace-token", - " ", - 114306, - 114306, - null - ], - [ - "delim-token", - "*", - 114307, - 114307, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 114308, - 114308, - null - ], - [ - "number-token", - ".5", - 114309, - 114310, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 114311, - 114311, - null - ], - [ - "whitespace-token", - " ", - 114312, - 114312, - null - ], - [ - "function-token", - "var(", - 114313, - 114316, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 114317, - 114341, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 114342, - 114342, - null - ], - [ - "whitespace-token", - " ", - 114343, - 114343, - null - ], - [ - "function-token", - "calc(", - 114344, - 114348, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 114349, - 114352, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 114353, - 114376, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 114377, - 114377, - null - ], - [ - "whitespace-token", - " ", - 114378, - 114378, - null - ], - [ - "delim-token", - "*", - 114379, - 114379, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 114380, - 114380, - null - ], - [ - "number-token", - ".5", - 114381, - 114382, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 114383, - 114383, - null - ], - [ - "whitespace-token", - " ", - 114384, - 114384, - null - ], - [ - "number-token", - "0", - 114385, - 114385, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 114386, - 114386, - null - ], - [ - "ident-token", - "border-right-color", - 114387, - 114404, - { - "value": "border-right-color" - } - ], - [ - "colon-token", - ":", - 114405, - 114405, - null - ], - [ - "function-token", - "var(", - 114406, - 114409, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-bg", - 114410, - 114424, - { - "value": "--bs-tooltip-bg" - } - ], - [ - ")-token", - ")", - 114425, - 114425, - null - ], - [ - "}-token", - "}", - 114426, - 114426, - null - ], - [ - "delim-token", - ".", - 114427, - 114427, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 114428, - 114442, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 114443, - 114443, - null - ], - [ - "ident-token", - "data-popper-placement", - 114444, - 114464, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114465, - 114465, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114466, - 114466, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 114467, - 114472, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 114473, - 114473, - null - ], - [ - "whitespace-token", - " ", - 114474, - 114474, - null - ], - [ - "delim-token", - ".", - 114475, - 114475, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114476, - 114488, - { - "value": "tooltip-arrow" - } - ], - [ - "comma-token", - ",", - 114489, - 114489, - null - ], - [ - "delim-token", - ".", - 114490, - 114490, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-bottom", - 114491, - 114507, - { - "value": "bs-tooltip-bottom" - } - ], - [ - "whitespace-token", - " ", - 114508, - 114508, - null - ], - [ - "delim-token", - ".", - 114509, - 114509, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114510, - 114522, - { - "value": "tooltip-arrow" - } - ], - [ - "{-token", - "{", - 114523, - 114523, - null - ], - [ - "ident-token", - "top", - 114524, - 114526, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 114527, - 114527, - null - ], - [ - "number-token", - "0", - 114528, - 114528, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 114529, - 114529, - null - ], - [ - "delim-token", - ".", - 114530, - 114530, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 114531, - 114545, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 114546, - 114546, - null - ], - [ - "ident-token", - "data-popper-placement", - 114547, - 114567, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114568, - 114568, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114569, - 114569, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 114570, - 114575, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 114576, - 114576, - null - ], - [ - "whitespace-token", - " ", - 114577, - 114577, - null - ], - [ - "delim-token", - ".", - 114578, - 114578, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114579, - 114591, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 114592, - 114592, - null - ], - [ - "colon-token", - ":", - 114593, - 114593, - null - ], - [ - "ident-token", - "before", - 114594, - 114599, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 114600, - 114600, - null - ], - [ - "delim-token", - ".", - 114601, - 114601, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-bottom", - 114602, - 114618, - { - "value": "bs-tooltip-bottom" - } - ], - [ - "whitespace-token", - " ", - 114619, - 114619, - null - ], - [ - "delim-token", - ".", - 114620, - 114620, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114621, - 114633, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 114634, - 114634, - null - ], - [ - "colon-token", - ":", - 114635, - 114635, - null - ], - [ - "ident-token", - "before", - 114636, - 114641, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 114642, - 114642, - null - ], - [ - "ident-token", - "bottom", - 114643, - 114648, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 114649, - 114649, - null - ], - [ - "dimension-token", - "-1px", - 114650, - 114653, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 114654, - 114654, - null - ], - [ - "ident-token", - "border-width", - 114655, - 114666, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 114667, - 114667, - null - ], - [ - "number-token", - "0", - 114668, - 114668, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 114669, - 114669, - null - ], - [ - "function-token", - "calc(", - 114670, - 114674, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 114675, - 114678, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 114679, - 114702, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 114703, - 114703, - null - ], - [ - "whitespace-token", - " ", - 114704, - 114704, - null - ], - [ - "delim-token", - "*", - 114705, - 114705, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 114706, - 114706, - null - ], - [ - "number-token", - ".5", - 114707, - 114708, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 114709, - 114709, - null - ], - [ - "whitespace-token", - " ", - 114710, - 114710, - null - ], - [ - "function-token", - "var(", - 114711, - 114714, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 114715, - 114739, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 114740, - 114740, - null - ], - [ - "semicolon-token", - ";", - 114741, - 114741, - null - ], - [ - "ident-token", - "border-bottom-color", - 114742, - 114760, - { - "value": "border-bottom-color" - } - ], - [ - "colon-token", - ":", - 114761, - 114761, - null - ], - [ - "function-token", - "var(", - 114762, - 114765, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-bg", - 114766, - 114780, - { - "value": "--bs-tooltip-bg" - } - ], - [ - ")-token", - ")", - 114781, - 114781, - null - ], - [ - "}-token", - "}", - 114782, - 114782, - null - ], - [ - "delim-token", - ".", - 114783, - 114783, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 114784, - 114798, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 114799, - 114799, - null - ], - [ - "ident-token", - "data-popper-placement", - 114800, - 114820, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114821, - 114821, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114822, - 114822, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 114823, - 114826, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 114827, - 114827, - null - ], - [ - "whitespace-token", - " ", - 114828, - 114828, - null - ], - [ - "delim-token", - ".", - 114829, - 114829, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114830, - 114842, - { - "value": "tooltip-arrow" - } - ], - [ - "comma-token", - ",", - 114843, - 114843, - null - ], - [ - "delim-token", - ".", - 114844, - 114844, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-start", - 114845, - 114860, - { - "value": "bs-tooltip-start" - } - ], - [ - "whitespace-token", - " ", - 114861, - 114861, - null - ], - [ - "delim-token", - ".", - 114862, - 114862, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 114863, - 114875, - { - "value": "tooltip-arrow" - } - ], - [ - "{-token", - "{", - 114876, - 114876, - null - ], - [ - "ident-token", - "right", - 114877, - 114881, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 114882, - 114882, - null - ], - [ - "number-token", - "0", - 114883, - 114883, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 114884, - 114884, - null - ], - [ - "ident-token", - "width", - 114885, - 114889, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 114890, - 114890, - null - ], - [ - "function-token", - "var(", - 114891, - 114894, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 114895, - 114919, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 114920, - 114920, - null - ], - [ - "semicolon-token", - ";", - 114921, - 114921, - null - ], - [ - "ident-token", - "height", - 114922, - 114927, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 114928, - 114928, - null - ], - [ - "function-token", - "var(", - 114929, - 114932, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 114933, - 114956, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 114957, - 114957, - null - ], - [ - "}-token", - "}", - 114958, - 114958, - null - ], - [ - "delim-token", - ".", - 114959, - 114959, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-auto", - 114960, - 114974, - { - "value": "bs-tooltip-auto" - } - ], - [ - "[-token", - "[", - 114975, - 114975, - null - ], - [ - "ident-token", - "data-popper-placement", - 114976, - 114996, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 114997, - 114997, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 114998, - 114998, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 114999, - 115002, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 115003, - 115003, - null - ], - [ - "whitespace-token", - " ", - 115004, - 115004, - null - ], - [ - "delim-token", - ".", - 115005, - 115005, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 115006, - 115018, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 115019, - 115019, - null - ], - [ - "colon-token", - ":", - 115020, - 115020, - null - ], - [ - "ident-token", - "before", - 115021, - 115026, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 115027, - 115027, - null - ], - [ - "delim-token", - ".", - 115028, - 115028, - { - "value": "." - } - ], - [ - "ident-token", - "bs-tooltip-start", - 115029, - 115044, - { - "value": "bs-tooltip-start" - } - ], - [ - "whitespace-token", - " ", - 115045, - 115045, - null - ], - [ - "delim-token", - ".", - 115046, - 115046, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-arrow", - 115047, - 115059, - { - "value": "tooltip-arrow" - } - ], - [ - "colon-token", - ":", - 115060, - 115060, - null - ], - [ - "colon-token", - ":", - 115061, - 115061, - null - ], - [ - "ident-token", - "before", - 115062, - 115067, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 115068, - 115068, - null - ], - [ - "ident-token", - "left", - 115069, - 115072, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 115073, - 115073, - null - ], - [ - "dimension-token", - "-1px", - 115074, - 115077, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 115078, - 115078, - null - ], - [ - "ident-token", - "border-width", - 115079, - 115090, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 115091, - 115091, - null - ], - [ - "function-token", - "calc(", - 115092, - 115096, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 115097, - 115100, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 115101, - 115124, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 115125, - 115125, - null - ], - [ - "whitespace-token", - " ", - 115126, - 115126, - null - ], - [ - "delim-token", - "*", - 115127, - 115127, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 115128, - 115128, - null - ], - [ - "number-token", - ".5", - 115129, - 115130, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 115131, - 115131, - null - ], - [ - "whitespace-token", - " ", - 115132, - 115132, - null - ], - [ - "number-token", - "0", - 115133, - 115133, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 115134, - 115134, - null - ], - [ - "function-token", - "calc(", - 115135, - 115139, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 115140, - 115143, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-width", - 115144, - 115167, - { - "value": "--bs-tooltip-arrow-width" - } - ], - [ - ")-token", - ")", - 115168, - 115168, - null - ], - [ - "whitespace-token", - " ", - 115169, - 115169, - null - ], - [ - "delim-token", - "*", - 115170, - 115170, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 115171, - 115171, - null - ], - [ - "number-token", - ".5", - 115172, - 115173, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 115174, - 115174, - null - ], - [ - "whitespace-token", - " ", - 115175, - 115175, - null - ], - [ - "function-token", - "var(", - 115176, - 115179, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-arrow-height", - 115180, - 115204, - { - "value": "--bs-tooltip-arrow-height" - } - ], - [ - ")-token", - ")", - 115205, - 115205, - null - ], - [ - "semicolon-token", - ";", - 115206, - 115206, - null - ], - [ - "ident-token", - "border-left-color", - 115207, - 115223, - { - "value": "border-left-color" - } - ], - [ - "colon-token", - ":", - 115224, - 115224, - null - ], - [ - "function-token", - "var(", - 115225, - 115228, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-bg", - 115229, - 115243, - { - "value": "--bs-tooltip-bg" - } - ], - [ - ")-token", - ")", - 115244, - 115244, - null - ], - [ - "}-token", - "}", - 115245, - 115245, - null - ], - [ - "delim-token", - ".", - 115246, - 115246, - { - "value": "." - } - ], - [ - "ident-token", - "tooltip-inner", - 115247, - 115259, - { - "value": "tooltip-inner" - } - ], - [ - "{-token", - "{", - 115260, - 115260, - null - ], - [ - "ident-token", - "max-width", - 115261, - 115269, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 115270, - 115270, - null - ], - [ - "function-token", - "var(", - 115271, - 115274, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-max-width", - 115275, - 115296, - { - "value": "--bs-tooltip-max-width" - } - ], - [ - ")-token", - ")", - 115297, - 115297, - null - ], - [ - "semicolon-token", - ";", - 115298, - 115298, - null - ], - [ - "ident-token", - "padding", - 115299, - 115305, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 115306, - 115306, - null - ], - [ - "function-token", - "var(", - 115307, - 115310, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-padding-y", - 115311, - 115332, - { - "value": "--bs-tooltip-padding-y" - } - ], - [ - ")-token", - ")", - 115333, - 115333, - null - ], - [ - "whitespace-token", - " ", - 115334, - 115334, - null - ], - [ - "function-token", - "var(", - 115335, - 115338, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-padding-x", - 115339, - 115360, - { - "value": "--bs-tooltip-padding-x" - } - ], - [ - ")-token", - ")", - 115361, - 115361, - null - ], - [ - "semicolon-token", - ";", - 115362, - 115362, - null - ], - [ - "ident-token", - "color", - 115363, - 115367, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 115368, - 115368, - null - ], - [ - "function-token", - "var(", - 115369, - 115372, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-color", - 115373, - 115390, - { - "value": "--bs-tooltip-color" - } - ], - [ - ")-token", - ")", - 115391, - 115391, - null - ], - [ - "semicolon-token", - ";", - 115392, - 115392, - null - ], - [ - "ident-token", - "text-align", - 115393, - 115402, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 115403, - 115403, - null - ], - [ - "ident-token", - "center", - 115404, - 115409, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 115410, - 115410, - null - ], - [ - "ident-token", - "background-color", - 115411, - 115426, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 115427, - 115427, - null - ], - [ - "function-token", - "var(", - 115428, - 115431, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-bg", - 115432, - 115446, - { - "value": "--bs-tooltip-bg" - } - ], - [ - ")-token", - ")", - 115447, - 115447, - null - ], - [ - "semicolon-token", - ";", - 115448, - 115448, - null - ], - [ - "ident-token", - "border-radius", - 115449, - 115461, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 115462, - 115462, - null - ], - [ - "function-token", - "var(", - 115463, - 115466, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-tooltip-border-radius", - 115467, - 115492, - { - "value": "--bs-tooltip-border-radius" - } - ], - [ - ")-token", - ")", - 115493, - 115493, - null - ], - [ - "}-token", - "}", - 115494, - 115494, - null - ], - [ - "delim-token", - ".", - 115495, - 115495, - { - "value": "." - } - ], - [ - "ident-token", - "popover", - 115496, - 115502, - { - "value": "popover" - } - ], - [ - "{-token", - "{", - 115503, - 115503, - null - ], - [ - "ident-token", - "--bs-popover-zindex", - 115504, - 115522, - { - "value": "--bs-popover-zindex" - } - ], - [ - "colon-token", - ":", - 115523, - 115523, - null - ], - [ - "number-token", - "1070", - 115524, - 115527, - { - "value": 1070, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 115528, - 115528, - null - ], - [ - "ident-token", - "--bs-popover-max-width", - 115529, - 115550, - { - "value": "--bs-popover-max-width" - } - ], - [ - "colon-token", - ":", - 115551, - 115551, - null - ], - [ - "dimension-token", - "276px", - 115552, - 115556, - { - "value": 276, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 115557, - 115557, - null - ], - [ - "ident-token", - "--bs-popover-font-size", - 115558, - 115579, - { - "value": "--bs-popover-font-size" - } - ], - [ - "colon-token", - ":", - 115580, - 115580, - null - ], - [ - "dimension-token", - "0.875rem", - 115581, - 115588, - { - "value": 0.875, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 115589, - 115589, - null - ], - [ - "ident-token", - "--bs-popover-bg", - 115590, - 115604, - { - "value": "--bs-popover-bg" - } - ], - [ - "colon-token", - ":", - 115605, - 115605, - null - ], - [ - "hash-token", - "#fff", - 115606, - 115609, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 115610, - 115610, - null - ], - [ - "ident-token", - "--bs-popover-border-width", - 115611, - 115635, - { - "value": "--bs-popover-border-width" - } - ], - [ - "colon-token", - ":", - 115636, - 115636, - null - ], - [ - "dimension-token", - "1px", - 115637, - 115639, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 115640, - 115640, - null - ], - [ - "ident-token", - "--bs-popover-border-color", - 115641, - 115665, - { - "value": "--bs-popover-border-color" - } - ], - [ - "colon-token", - ":", - 115666, - 115666, - null - ], - [ - "function-token", - "var(", - 115667, - 115670, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 115671, - 115699, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 115700, - 115700, - null - ], - [ - "semicolon-token", - ";", - 115701, - 115701, - null - ], - [ - "ident-token", - "--bs-popover-border-radius", - 115702, - 115727, - { - "value": "--bs-popover-border-radius" - } - ], - [ - "colon-token", - ":", - 115728, - 115728, - null - ], - [ - "dimension-token", - "0.5rem", - 115729, - 115734, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 115735, - 115735, - null - ], - [ - "ident-token", - "--bs-popover-inner-border-radius", - 115736, - 115767, - { - "value": "--bs-popover-inner-border-radius" - } - ], - [ - "colon-token", - ":", - 115768, - 115768, - null - ], - [ - "function-token", - "calc(", - 115769, - 115773, - { - "value": "calc" - } - ], - [ - "dimension-token", - "0.5rem", - 115774, - 115779, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 115780, - 115780, - null - ], - [ - "delim-token", - "-", - 115781, - 115781, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 115782, - 115782, - null - ], - [ - "dimension-token", - "1px", - 115783, - 115785, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 115786, - 115786, - null - ], - [ - "semicolon-token", - ";", - 115787, - 115787, - null - ], - [ - "ident-token", - "--bs-popover-box-shadow", - 115788, - 115810, - { - "value": "--bs-popover-box-shadow" - } - ], - [ - "colon-token", - ":", - 115811, - 115811, - null - ], - [ - "number-token", - "0", - 115812, - 115812, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 115813, - 115813, - null - ], - [ - "dimension-token", - "0.5rem", - 115814, - 115819, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 115820, - 115820, - null - ], - [ - "dimension-token", - "1rem", - 115821, - 115824, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 115825, - 115825, - null - ], - [ - "function-token", - "rgba(", - 115826, - 115830, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 115831, - 115831, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 115832, - 115832, - null - ], - [ - "whitespace-token", - " ", - 115833, - 115833, - null - ], - [ - "number-token", - "0", - 115834, - 115834, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 115835, - 115835, - null - ], - [ - "whitespace-token", - " ", - 115836, - 115836, - null - ], - [ - "number-token", - "0", - 115837, - 115837, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 115838, - 115838, - null - ], - [ - "whitespace-token", - " ", - 115839, - 115839, - null - ], - [ - "number-token", - "0.15", - 115840, - 115843, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 115844, - 115844, - null - ], - [ - "semicolon-token", - ";", - 115845, - 115845, - null - ], - [ - "ident-token", - "--bs-popover-header-padding-x", - 115846, - 115874, - { - "value": "--bs-popover-header-padding-x" - } - ], - [ - "colon-token", - ":", - 115875, - 115875, - null - ], - [ - "dimension-token", - "1rem", - 115876, - 115879, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 115880, - 115880, - null - ], - [ - "ident-token", - "--bs-popover-header-padding-y", - 115881, - 115909, - { - "value": "--bs-popover-header-padding-y" - } - ], - [ - "colon-token", - ":", - 115910, - 115910, - null - ], - [ - "dimension-token", - "0.5rem", - 115911, - 115916, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 115917, - 115917, - null - ], - [ - "ident-token", - "--bs-popover-header-font-size", - 115918, - 115946, - { - "value": "--bs-popover-header-font-size" - } - ], - [ - "colon-token", - ":", - 115947, - 115947, - null - ], - [ - "dimension-token", - "1rem", - 115948, - 115951, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 115952, - 115952, - null - ], - [ - "ident-token", - "--bs-popover-header-color", - 115953, - 115977, - { - "value": "--bs-popover-header-color" - } - ], - [ - "colon-token", - ":", - 115978, - 115978, - null - ], - [ - "whitespace-token", - " ", - 115979, - 115979, - null - ], - [ - "semicolon-token", - ";", - 115980, - 115980, - null - ], - [ - "ident-token", - "--bs-popover-header-bg", - 115981, - 116002, - { - "value": "--bs-popover-header-bg" - } - ], - [ - "colon-token", - ":", - 116003, - 116003, - null - ], - [ - "hash-token", - "#f0f0f0", - 116004, - 116010, - { - "value": "f0f0f0", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 116011, - 116011, - null - ], - [ - "ident-token", - "--bs-popover-body-padding-x", - 116012, - 116038, - { - "value": "--bs-popover-body-padding-x" - } - ], - [ - "colon-token", - ":", - 116039, - 116039, - null - ], - [ - "dimension-token", - "1rem", - 116040, - 116043, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 116044, - 116044, - null - ], - [ - "ident-token", - "--bs-popover-body-padding-y", - 116045, - 116071, - { - "value": "--bs-popover-body-padding-y" - } - ], - [ - "colon-token", - ":", - 116072, - 116072, - null - ], - [ - "dimension-token", - "1rem", - 116073, - 116076, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 116077, - 116077, - null - ], - [ - "ident-token", - "--bs-popover-body-color", - 116078, - 116100, - { - "value": "--bs-popover-body-color" - } - ], - [ - "colon-token", - ":", - 116101, - 116101, - null - ], - [ - "hash-token", - "#212529", - 116102, - 116108, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "semicolon-token", - ";", - 116109, - 116109, - null - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 116110, - 116133, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - "colon-token", - ":", - 116134, - 116134, - null - ], - [ - "dimension-token", - "1rem", - 116135, - 116138, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 116139, - 116139, - null - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 116140, - 116164, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - "colon-token", - ":", - 116165, - 116165, - null - ], - [ - "dimension-token", - "0.5rem", - 116166, - 116171, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 116172, - 116172, - null - ], - [ - "ident-token", - "--bs-popover-arrow-border", - 116173, - 116197, - { - "value": "--bs-popover-arrow-border" - } - ], - [ - "colon-token", - ":", - 116198, - 116198, - null - ], - [ - "function-token", - "var(", - 116199, - 116202, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-color", - 116203, - 116227, - { - "value": "--bs-popover-border-color" - } - ], - [ - ")-token", - ")", - 116228, - 116228, - null - ], - [ - "semicolon-token", - ";", - 116229, - 116229, - null - ], - [ - "ident-token", - "z-index", - 116230, - 116236, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 116237, - 116237, - null - ], - [ - "function-token", - "var(", - 116238, - 116241, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-zindex", - 116242, - 116260, - { - "value": "--bs-popover-zindex" - } - ], - [ - ")-token", - ")", - 116261, - 116261, - null - ], - [ - "semicolon-token", - ";", - 116262, - 116262, - null - ], - [ - "ident-token", - "display", - 116263, - 116269, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 116270, - 116270, - null - ], - [ - "ident-token", - "block", - 116271, - 116275, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 116276, - 116276, - null - ], - [ - "ident-token", - "max-width", - 116277, - 116285, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 116286, - 116286, - null - ], - [ - "function-token", - "var(", - 116287, - 116290, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-max-width", - 116291, - 116312, - { - "value": "--bs-popover-max-width" - } - ], - [ - ")-token", - ")", - 116313, - 116313, - null - ], - [ - "semicolon-token", - ";", - 116314, - 116314, - null - ], - [ - "ident-token", - "font-family", - 116315, - 116325, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 116326, - 116326, - null - ], - [ - "function-token", - "var(", - 116327, - 116330, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-font-sans-serif", - 116331, - 116350, - { - "value": "--bs-font-sans-serif" - } - ], - [ - ")-token", - ")", - 116351, - 116351, - null - ], - [ - "semicolon-token", - ";", - 116352, - 116352, - null - ], - [ - "ident-token", - "font-style", - 116353, - 116362, - { - "value": "font-style" - } - ], - [ - "colon-token", - ":", - 116363, - 116363, - null - ], - [ - "ident-token", - "normal", - 116364, - 116369, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 116370, - 116370, - null - ], - [ - "ident-token", - "font-weight", - 116371, - 116381, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 116382, - 116382, - null - ], - [ - "number-token", - "400", - 116383, - 116385, - { - "value": 400, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 116386, - 116386, - null - ], - [ - "ident-token", - "line-height", - 116387, - 116397, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 116398, - 116398, - null - ], - [ - "number-token", - "1.5", - 116399, - 116401, - { - "value": 1.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 116402, - 116402, - null - ], - [ - "ident-token", - "text-align", - 116403, - 116412, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 116413, - 116413, - null - ], - [ - "ident-token", - "left", - 116414, - 116417, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 116418, - 116418, - null - ], - [ - "ident-token", - "text-align", - 116419, - 116428, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 116429, - 116429, - null - ], - [ - "ident-token", - "start", - 116430, - 116434, - { - "value": "start" - } - ], - [ - "semicolon-token", - ";", - 116435, - 116435, - null - ], - [ - "ident-token", - "text-decoration", - 116436, - 116450, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 116451, - 116451, - null - ], - [ - "ident-token", - "none", - 116452, - 116455, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 116456, - 116456, - null - ], - [ - "ident-token", - "text-shadow", - 116457, - 116467, - { - "value": "text-shadow" - } - ], - [ - "colon-token", - ":", - 116468, - 116468, - null - ], - [ - "ident-token", - "none", - 116469, - 116472, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 116473, - 116473, - null - ], - [ - "ident-token", - "text-transform", - 116474, - 116487, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 116488, - 116488, - null - ], - [ - "ident-token", - "none", - 116489, - 116492, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 116493, - 116493, - null - ], - [ - "ident-token", - "letter-spacing", - 116494, - 116507, - { - "value": "letter-spacing" - } - ], - [ - "colon-token", - ":", - 116508, - 116508, - null - ], - [ - "ident-token", - "normal", - 116509, - 116514, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 116515, - 116515, - null - ], - [ - "ident-token", - "word-break", - 116516, - 116525, - { - "value": "word-break" - } - ], - [ - "colon-token", - ":", - 116526, - 116526, - null - ], - [ - "ident-token", - "normal", - 116527, - 116532, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 116533, - 116533, - null - ], - [ - "ident-token", - "white-space", - 116534, - 116544, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 116545, - 116545, - null - ], - [ - "ident-token", - "normal", - 116546, - 116551, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 116552, - 116552, - null - ], - [ - "ident-token", - "word-spacing", - 116553, - 116564, - { - "value": "word-spacing" - } - ], - [ - "colon-token", - ":", - 116565, - 116565, - null - ], - [ - "ident-token", - "normal", - 116566, - 116571, - { - "value": "normal" - } - ], - [ - "semicolon-token", - ";", - 116572, - 116572, - null - ], - [ - "ident-token", - "line-break", - 116573, - 116582, - { - "value": "line-break" - } - ], - [ - "colon-token", - ":", - 116583, - 116583, - null - ], - [ - "ident-token", - "auto", - 116584, - 116587, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 116588, - 116588, - null - ], - [ - "ident-token", - "font-size", - 116589, - 116597, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 116598, - 116598, - null - ], - [ - "function-token", - "var(", - 116599, - 116602, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-font-size", - 116603, - 116624, - { - "value": "--bs-popover-font-size" - } - ], - [ - ")-token", - ")", - 116625, - 116625, - null - ], - [ - "semicolon-token", - ";", - 116626, - 116626, - null - ], - [ - "ident-token", - "word-wrap", - 116627, - 116635, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 116636, - 116636, - null - ], - [ - "ident-token", - "break-word", - 116637, - 116646, - { - "value": "break-word" - } - ], - [ - "semicolon-token", - ";", - 116647, - 116647, - null - ], - [ - "ident-token", - "background-color", - 116648, - 116663, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 116664, - 116664, - null - ], - [ - "function-token", - "var(", - 116665, - 116668, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-bg", - 116669, - 116683, - { - "value": "--bs-popover-bg" - } - ], - [ - ")-token", - ")", - 116684, - 116684, - null - ], - [ - "semicolon-token", - ";", - 116685, - 116685, - null - ], - [ - "ident-token", - "background-clip", - 116686, - 116700, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 116701, - 116701, - null - ], - [ - "ident-token", - "padding-box", - 116702, - 116712, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 116713, - 116713, - null - ], - [ - "ident-token", - "border", - 116714, - 116719, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 116720, - 116720, - null - ], - [ - "function-token", - "var(", - 116721, - 116724, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 116725, - 116749, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 116750, - 116750, - null - ], - [ - "whitespace-token", - " ", - 116751, - 116751, - null - ], - [ - "ident-token", - "solid", - 116752, - 116756, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 116757, - 116757, - null - ], - [ - "function-token", - "var(", - 116758, - 116761, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-color", - 116762, - 116786, - { - "value": "--bs-popover-border-color" - } - ], - [ - ")-token", - ")", - 116787, - 116787, - null - ], - [ - "semicolon-token", - ";", - 116788, - 116788, - null - ], - [ - "ident-token", - "border-radius", - 116789, - 116801, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 116802, - 116802, - null - ], - [ - "function-token", - "var(", - 116803, - 116806, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-radius", - 116807, - 116832, - { - "value": "--bs-popover-border-radius" - } - ], - [ - ")-token", - ")", - 116833, - 116833, - null - ], - [ - "}-token", - "}", - 116834, - 116834, - null - ], - [ - "delim-token", - ".", - 116835, - 116835, - { - "value": "." - } - ], - [ - "ident-token", - "popover", - 116836, - 116842, - { - "value": "popover" - } - ], - [ - "whitespace-token", - " ", - 116843, - 116843, - null - ], - [ - "delim-token", - ".", - 116844, - 116844, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 116845, - 116857, - { - "value": "popover-arrow" - } - ], - [ - "{-token", - "{", - 116858, - 116858, - null - ], - [ - "ident-token", - "display", - 116859, - 116865, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 116866, - 116866, - null - ], - [ - "ident-token", - "block", - 116867, - 116871, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 116872, - 116872, - null - ], - [ - "ident-token", - "width", - 116873, - 116877, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 116878, - 116878, - null - ], - [ - "function-token", - "var(", - 116879, - 116882, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 116883, - 116906, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 116907, - 116907, - null - ], - [ - "semicolon-token", - ";", - 116908, - 116908, - null - ], - [ - "ident-token", - "height", - 116909, - 116914, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 116915, - 116915, - null - ], - [ - "function-token", - "var(", - 116916, - 116919, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 116920, - 116944, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 116945, - 116945, - null - ], - [ - "}-token", - "}", - 116946, - 116946, - null - ], - [ - "delim-token", - ".", - 116947, - 116947, - { - "value": "." - } - ], - [ - "ident-token", - "popover", - 116948, - 116954, - { - "value": "popover" - } - ], - [ - "whitespace-token", - " ", - 116955, - 116955, - null - ], - [ - "delim-token", - ".", - 116956, - 116956, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 116957, - 116969, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 116970, - 116970, - null - ], - [ - "colon-token", - ":", - 116971, - 116971, - null - ], - [ - "ident-token", - "after", - 116972, - 116976, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 116977, - 116977, - null - ], - [ - "delim-token", - ".", - 116978, - 116978, - { - "value": "." - } - ], - [ - "ident-token", - "popover", - 116979, - 116985, - { - "value": "popover" - } - ], - [ - "whitespace-token", - " ", - 116986, - 116986, - null - ], - [ - "delim-token", - ".", - 116987, - 116987, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 116988, - 117000, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117001, - 117001, - null - ], - [ - "colon-token", - ":", - 117002, - 117002, - null - ], - [ - "ident-token", - "before", - 117003, - 117008, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 117009, - 117009, - null - ], - [ - "ident-token", - "position", - 117010, - 117017, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 117018, - 117018, - null - ], - [ - "ident-token", - "absolute", - 117019, - 117026, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 117027, - 117027, - null - ], - [ - "ident-token", - "display", - 117028, - 117034, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 117035, - 117035, - null - ], - [ - "ident-token", - "block", - 117036, - 117040, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 117041, - 117041, - null - ], - [ - "ident-token", - "content", - 117042, - 117048, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 117049, - 117049, - null - ], - [ - "string-token", - "\"\"", - 117050, - 117051, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 117052, - 117052, - null - ], - [ - "ident-token", - "border-color", - 117053, - 117064, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 117065, - 117065, - null - ], - [ - "ident-token", - "transparent", - 117066, - 117076, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 117077, - 117077, - null - ], - [ - "ident-token", - "border-style", - 117078, - 117089, - { - "value": "border-style" - } - ], - [ - "colon-token", - ":", - 117090, - 117090, - null - ], - [ - "ident-token", - "solid", - 117091, - 117095, - { - "value": "solid" - } - ], - [ - "semicolon-token", - ";", - 117096, - 117096, - null - ], - [ - "ident-token", - "border-width", - 117097, - 117108, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 117109, - 117109, - null - ], - [ - "number-token", - "0", - 117110, - 117110, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 117111, - 117111, - null - ], - [ - "delim-token", - ".", - 117112, - 117112, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117113, - 117127, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117128, - 117128, - null - ], - [ - "ident-token", - "data-popper-placement", - 117129, - 117149, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117150, - 117150, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117151, - 117151, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 117152, - 117154, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 117155, - 117155, - null - ], - [ - "delim-token", - ">", - 117156, - 117156, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117157, - 117157, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117158, - 117170, - { - "value": "popover-arrow" - } - ], - [ - "comma-token", - ",", - 117171, - 117171, - null - ], - [ - "delim-token", - ".", - 117172, - 117172, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-top", - 117173, - 117186, - { - "value": "bs-popover-top" - } - ], - [ - "delim-token", - ">", - 117187, - 117187, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117188, - 117188, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117189, - 117201, - { - "value": "popover-arrow" - } - ], - [ - "{-token", - "{", - 117202, - 117202, - null - ], - [ - "ident-token", - "bottom", - 117203, - 117208, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 117209, - 117209, - null - ], - [ - "function-token", - "calc(", - 117210, - 117214, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 117215, - 117216, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 117217, - 117217, - null - ], - [ - "delim-token", - "*", - 117218, - 117218, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 117219, - 117219, - null - ], - [ - "(-token", - "(", - 117220, - 117220, - null - ], - [ - "function-token", - "var(", - 117221, - 117224, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 117225, - 117249, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 117250, - 117250, - null - ], - [ - ")-token", - ")", - 117251, - 117251, - null - ], - [ - "whitespace-token", - " ", - 117252, - 117252, - null - ], - [ - "delim-token", - "-", - 117253, - 117253, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 117254, - 117254, - null - ], - [ - "function-token", - "var(", - 117255, - 117258, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 117259, - 117283, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 117284, - 117284, - null - ], - [ - ")-token", - ")", - 117285, - 117285, - null - ], - [ - "}-token", - "}", - 117286, - 117286, - null - ], - [ - "delim-token", - ".", - 117287, - 117287, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117288, - 117302, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117303, - 117303, - null - ], - [ - "ident-token", - "data-popper-placement", - 117304, - 117324, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117325, - 117325, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117326, - 117326, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 117327, - 117329, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 117330, - 117330, - null - ], - [ - "delim-token", - ">", - 117331, - 117331, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117332, - 117332, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117333, - 117345, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117346, - 117346, - null - ], - [ - "colon-token", - ":", - 117347, - 117347, - null - ], - [ - "ident-token", - "after", - 117348, - 117352, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 117353, - 117353, - null - ], - [ - "delim-token", - ".", - 117354, - 117354, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117355, - 117369, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117370, - 117370, - null - ], - [ - "ident-token", - "data-popper-placement", - 117371, - 117391, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117392, - 117392, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117393, - 117393, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 117394, - 117396, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 117397, - 117397, - null - ], - [ - "delim-token", - ">", - 117398, - 117398, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117399, - 117399, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117400, - 117412, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117413, - 117413, - null - ], - [ - "colon-token", - ":", - 117414, - 117414, - null - ], - [ - "ident-token", - "before", - 117415, - 117420, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 117421, - 117421, - null - ], - [ - "delim-token", - ".", - 117422, - 117422, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-top", - 117423, - 117436, - { - "value": "bs-popover-top" - } - ], - [ - "delim-token", - ">", - 117437, - 117437, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117438, - 117438, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117439, - 117451, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117452, - 117452, - null - ], - [ - "colon-token", - ":", - 117453, - 117453, - null - ], - [ - "ident-token", - "after", - 117454, - 117458, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 117459, - 117459, - null - ], - [ - "delim-token", - ".", - 117460, - 117460, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-top", - 117461, - 117474, - { - "value": "bs-popover-top" - } - ], - [ - "delim-token", - ">", - 117475, - 117475, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117476, - 117476, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117477, - 117489, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117490, - 117490, - null - ], - [ - "colon-token", - ":", - 117491, - 117491, - null - ], - [ - "ident-token", - "before", - 117492, - 117497, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 117498, - 117498, - null - ], - [ - "ident-token", - "border-width", - 117499, - 117510, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 117511, - 117511, - null - ], - [ - "function-token", - "var(", - 117512, - 117515, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 117516, - 117540, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 117541, - 117541, - null - ], - [ - "whitespace-token", - " ", - 117542, - 117542, - null - ], - [ - "function-token", - "calc(", - 117543, - 117547, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 117548, - 117551, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 117552, - 117575, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 117576, - 117576, - null - ], - [ - "whitespace-token", - " ", - 117577, - 117577, - null - ], - [ - "delim-token", - "*", - 117578, - 117578, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 117579, - 117579, - null - ], - [ - "number-token", - ".5", - 117580, - 117581, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 117582, - 117582, - null - ], - [ - "whitespace-token", - " ", - 117583, - 117583, - null - ], - [ - "number-token", - "0", - 117584, - 117584, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 117585, - 117585, - null - ], - [ - "delim-token", - ".", - 117586, - 117586, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117587, - 117601, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117602, - 117602, - null - ], - [ - "ident-token", - "data-popper-placement", - 117603, - 117623, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117624, - 117624, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117625, - 117625, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 117626, - 117628, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 117629, - 117629, - null - ], - [ - "delim-token", - ">", - 117630, - 117630, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117631, - 117631, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117632, - 117644, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117645, - 117645, - null - ], - [ - "colon-token", - ":", - 117646, - 117646, - null - ], - [ - "ident-token", - "before", - 117647, - 117652, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 117653, - 117653, - null - ], - [ - "delim-token", - ".", - 117654, - 117654, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-top", - 117655, - 117668, - { - "value": "bs-popover-top" - } - ], - [ - "delim-token", - ">", - 117669, - 117669, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117670, - 117670, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117671, - 117683, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117684, - 117684, - null - ], - [ - "colon-token", - ":", - 117685, - 117685, - null - ], - [ - "ident-token", - "before", - 117686, - 117691, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 117692, - 117692, - null - ], - [ - "ident-token", - "bottom", - 117693, - 117698, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 117699, - 117699, - null - ], - [ - "number-token", - "0", - 117700, - 117700, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 117701, - 117701, - null - ], - [ - "ident-token", - "border-top-color", - 117702, - 117717, - { - "value": "border-top-color" - } - ], - [ - "colon-token", - ":", - 117718, - 117718, - null - ], - [ - "function-token", - "var(", - 117719, - 117722, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-border", - 117723, - 117747, - { - "value": "--bs-popover-arrow-border" - } - ], - [ - ")-token", - ")", - 117748, - 117748, - null - ], - [ - "}-token", - "}", - 117749, - 117749, - null - ], - [ - "delim-token", - ".", - 117750, - 117750, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117751, - 117765, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117766, - 117766, - null - ], - [ - "ident-token", - "data-popper-placement", - 117767, - 117787, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117788, - 117788, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117789, - 117789, - { - "value": "=" - } - ], - [ - "ident-token", - "top", - 117790, - 117792, - { - "value": "top" - } - ], - [ - "]-token", - "]", - 117793, - 117793, - null - ], - [ - "delim-token", - ">", - 117794, - 117794, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117795, - 117795, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117796, - 117808, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117809, - 117809, - null - ], - [ - "colon-token", - ":", - 117810, - 117810, - null - ], - [ - "ident-token", - "after", - 117811, - 117815, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 117816, - 117816, - null - ], - [ - "delim-token", - ".", - 117817, - 117817, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-top", - 117818, - 117831, - { - "value": "bs-popover-top" - } - ], - [ - "delim-token", - ">", - 117832, - 117832, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117833, - 117833, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117834, - 117846, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 117847, - 117847, - null - ], - [ - "colon-token", - ":", - 117848, - 117848, - null - ], - [ - "ident-token", - "after", - 117849, - 117853, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 117854, - 117854, - null - ], - [ - "ident-token", - "bottom", - 117855, - 117860, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 117861, - 117861, - null - ], - [ - "function-token", - "var(", - 117862, - 117865, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 117866, - 117890, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 117891, - 117891, - null - ], - [ - "semicolon-token", - ";", - 117892, - 117892, - null - ], - [ - "ident-token", - "border-top-color", - 117893, - 117908, - { - "value": "border-top-color" - } - ], - [ - "colon-token", - ":", - 117909, - 117909, - null - ], - [ - "function-token", - "var(", - 117910, - 117913, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-bg", - 117914, - 117928, - { - "value": "--bs-popover-bg" - } - ], - [ - ")-token", - ")", - 117929, - 117929, - null - ], - [ - "}-token", - "}", - 117930, - 117930, - null - ], - [ - "delim-token", - ".", - 117931, - 117931, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 117932, - 117946, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 117947, - 117947, - null - ], - [ - "ident-token", - "data-popper-placement", - 117948, - 117968, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 117969, - 117969, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 117970, - 117970, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 117971, - 117975, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 117976, - 117976, - null - ], - [ - "delim-token", - ">", - 117977, - 117977, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 117978, - 117978, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 117979, - 117991, - { - "value": "popover-arrow" - } - ], - [ - "comma-token", - ",", - 117992, - 117992, - null - ], - [ - "delim-token", - ".", - 117993, - 117993, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-end", - 117994, - 118007, - { - "value": "bs-popover-end" - } - ], - [ - "delim-token", - ">", - 118008, - 118008, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118009, - 118009, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118010, - 118022, - { - "value": "popover-arrow" - } - ], - [ - "{-token", - "{", - 118023, - 118023, - null - ], - [ - "ident-token", - "left", - 118024, - 118027, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 118028, - 118028, - null - ], - [ - "function-token", - "calc(", - 118029, - 118033, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 118034, - 118035, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 118036, - 118036, - null - ], - [ - "delim-token", - "*", - 118037, - 118037, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 118038, - 118038, - null - ], - [ - "(-token", - "(", - 118039, - 118039, - null - ], - [ - "function-token", - "var(", - 118040, - 118043, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 118044, - 118068, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 118069, - 118069, - null - ], - [ - ")-token", - ")", - 118070, - 118070, - null - ], - [ - "whitespace-token", - " ", - 118071, - 118071, - null - ], - [ - "delim-token", - "-", - 118072, - 118072, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 118073, - 118073, - null - ], - [ - "function-token", - "var(", - 118074, - 118077, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 118078, - 118102, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 118103, - 118103, - null - ], - [ - ")-token", - ")", - 118104, - 118104, - null - ], - [ - "semicolon-token", - ";", - 118105, - 118105, - null - ], - [ - "ident-token", - "width", - 118106, - 118110, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 118111, - 118111, - null - ], - [ - "function-token", - "var(", - 118112, - 118115, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 118116, - 118140, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 118141, - 118141, - null - ], - [ - "semicolon-token", - ";", - 118142, - 118142, - null - ], - [ - "ident-token", - "height", - 118143, - 118148, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 118149, - 118149, - null - ], - [ - "function-token", - "var(", - 118150, - 118153, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 118154, - 118177, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 118178, - 118178, - null - ], - [ - "}-token", - "}", - 118179, - 118179, - null - ], - [ - "delim-token", - ".", - 118180, - 118180, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 118181, - 118195, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 118196, - 118196, - null - ], - [ - "ident-token", - "data-popper-placement", - 118197, - 118217, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 118218, - 118218, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 118219, - 118219, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 118220, - 118224, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 118225, - 118225, - null - ], - [ - "delim-token", - ">", - 118226, - 118226, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118227, - 118227, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118228, - 118240, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118241, - 118241, - null - ], - [ - "colon-token", - ":", - 118242, - 118242, - null - ], - [ - "ident-token", - "after", - 118243, - 118247, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 118248, - 118248, - null - ], - [ - "delim-token", - ".", - 118249, - 118249, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 118250, - 118264, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 118265, - 118265, - null - ], - [ - "ident-token", - "data-popper-placement", - 118266, - 118286, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 118287, - 118287, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 118288, - 118288, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 118289, - 118293, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 118294, - 118294, - null - ], - [ - "delim-token", - ">", - 118295, - 118295, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118296, - 118296, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118297, - 118309, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118310, - 118310, - null - ], - [ - "colon-token", - ":", - 118311, - 118311, - null - ], - [ - "ident-token", - "before", - 118312, - 118317, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 118318, - 118318, - null - ], - [ - "delim-token", - ".", - 118319, - 118319, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-end", - 118320, - 118333, - { - "value": "bs-popover-end" - } - ], - [ - "delim-token", - ">", - 118334, - 118334, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118335, - 118335, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118336, - 118348, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118349, - 118349, - null - ], - [ - "colon-token", - ":", - 118350, - 118350, - null - ], - [ - "ident-token", - "after", - 118351, - 118355, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 118356, - 118356, - null - ], - [ - "delim-token", - ".", - 118357, - 118357, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-end", - 118358, - 118371, - { - "value": "bs-popover-end" - } - ], - [ - "delim-token", - ">", - 118372, - 118372, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118373, - 118373, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118374, - 118386, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118387, - 118387, - null - ], - [ - "colon-token", - ":", - 118388, - 118388, - null - ], - [ - "ident-token", - "before", - 118389, - 118394, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 118395, - 118395, - null - ], - [ - "ident-token", - "border-width", - 118396, - 118407, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 118408, - 118408, - null - ], - [ - "function-token", - "calc(", - 118409, - 118413, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 118414, - 118417, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 118418, - 118441, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 118442, - 118442, - null - ], - [ - "whitespace-token", - " ", - 118443, - 118443, - null - ], - [ - "delim-token", - "*", - 118444, - 118444, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 118445, - 118445, - null - ], - [ - "number-token", - ".5", - 118446, - 118447, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 118448, - 118448, - null - ], - [ - "whitespace-token", - " ", - 118449, - 118449, - null - ], - [ - "function-token", - "var(", - 118450, - 118453, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 118454, - 118478, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 118479, - 118479, - null - ], - [ - "whitespace-token", - " ", - 118480, - 118480, - null - ], - [ - "function-token", - "calc(", - 118481, - 118485, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 118486, - 118489, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 118490, - 118513, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 118514, - 118514, - null - ], - [ - "whitespace-token", - " ", - 118515, - 118515, - null - ], - [ - "delim-token", - "*", - 118516, - 118516, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 118517, - 118517, - null - ], - [ - "number-token", - ".5", - 118518, - 118519, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 118520, - 118520, - null - ], - [ - "whitespace-token", - " ", - 118521, - 118521, - null - ], - [ - "number-token", - "0", - 118522, - 118522, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 118523, - 118523, - null - ], - [ - "delim-token", - ".", - 118524, - 118524, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 118525, - 118539, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 118540, - 118540, - null - ], - [ - "ident-token", - "data-popper-placement", - 118541, - 118561, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 118562, - 118562, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 118563, - 118563, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 118564, - 118568, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 118569, - 118569, - null - ], - [ - "delim-token", - ">", - 118570, - 118570, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118571, - 118571, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118572, - 118584, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118585, - 118585, - null - ], - [ - "colon-token", - ":", - 118586, - 118586, - null - ], - [ - "ident-token", - "before", - 118587, - 118592, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 118593, - 118593, - null - ], - [ - "delim-token", - ".", - 118594, - 118594, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-end", - 118595, - 118608, - { - "value": "bs-popover-end" - } - ], - [ - "delim-token", - ">", - 118609, - 118609, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118610, - 118610, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118611, - 118623, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118624, - 118624, - null - ], - [ - "colon-token", - ":", - 118625, - 118625, - null - ], - [ - "ident-token", - "before", - 118626, - 118631, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 118632, - 118632, - null - ], - [ - "ident-token", - "left", - 118633, - 118636, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 118637, - 118637, - null - ], - [ - "number-token", - "0", - 118638, - 118638, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 118639, - 118639, - null - ], - [ - "ident-token", - "border-right-color", - 118640, - 118657, - { - "value": "border-right-color" - } - ], - [ - "colon-token", - ":", - 118658, - 118658, - null - ], - [ - "function-token", - "var(", - 118659, - 118662, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-border", - 118663, - 118687, - { - "value": "--bs-popover-arrow-border" - } - ], - [ - ")-token", - ")", - 118688, - 118688, - null - ], - [ - "}-token", - "}", - 118689, - 118689, - null - ], - [ - "delim-token", - ".", - 118690, - 118690, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 118691, - 118705, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 118706, - 118706, - null - ], - [ - "ident-token", - "data-popper-placement", - 118707, - 118727, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 118728, - 118728, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 118729, - 118729, - { - "value": "=" - } - ], - [ - "ident-token", - "right", - 118730, - 118734, - { - "value": "right" - } - ], - [ - "]-token", - "]", - 118735, - 118735, - null - ], - [ - "delim-token", - ">", - 118736, - 118736, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118737, - 118737, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118738, - 118750, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118751, - 118751, - null - ], - [ - "colon-token", - ":", - 118752, - 118752, - null - ], - [ - "ident-token", - "after", - 118753, - 118757, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 118758, - 118758, - null - ], - [ - "delim-token", - ".", - 118759, - 118759, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-end", - 118760, - 118773, - { - "value": "bs-popover-end" - } - ], - [ - "delim-token", - ">", - 118774, - 118774, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118775, - 118775, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118776, - 118788, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 118789, - 118789, - null - ], - [ - "colon-token", - ":", - 118790, - 118790, - null - ], - [ - "ident-token", - "after", - 118791, - 118795, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 118796, - 118796, - null - ], - [ - "ident-token", - "left", - 118797, - 118800, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 118801, - 118801, - null - ], - [ - "function-token", - "var(", - 118802, - 118805, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 118806, - 118830, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 118831, - 118831, - null - ], - [ - "semicolon-token", - ";", - 118832, - 118832, - null - ], - [ - "ident-token", - "border-right-color", - 118833, - 118850, - { - "value": "border-right-color" - } - ], - [ - "colon-token", - ":", - 118851, - 118851, - null - ], - [ - "function-token", - "var(", - 118852, - 118855, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-bg", - 118856, - 118870, - { - "value": "--bs-popover-bg" - } - ], - [ - ")-token", - ")", - 118871, - 118871, - null - ], - [ - "}-token", - "}", - 118872, - 118872, - null - ], - [ - "delim-token", - ".", - 118873, - 118873, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 118874, - 118888, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 118889, - 118889, - null - ], - [ - "ident-token", - "data-popper-placement", - 118890, - 118910, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 118911, - 118911, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 118912, - 118912, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 118913, - 118918, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 118919, - 118919, - null - ], - [ - "delim-token", - ">", - 118920, - 118920, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118921, - 118921, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118922, - 118934, - { - "value": "popover-arrow" - } - ], - [ - "comma-token", - ",", - 118935, - 118935, - null - ], - [ - "delim-token", - ".", - 118936, - 118936, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 118937, - 118953, - { - "value": "bs-popover-bottom" - } - ], - [ - "delim-token", - ">", - 118954, - 118954, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 118955, - 118955, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 118956, - 118968, - { - "value": "popover-arrow" - } - ], - [ - "{-token", - "{", - 118969, - 118969, - null - ], - [ - "ident-token", - "top", - 118970, - 118972, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 118973, - 118973, - null - ], - [ - "function-token", - "calc(", - 118974, - 118978, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 118979, - 118980, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 118981, - 118981, - null - ], - [ - "delim-token", - "*", - 118982, - 118982, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 118983, - 118983, - null - ], - [ - "(-token", - "(", - 118984, - 118984, - null - ], - [ - "function-token", - "var(", - 118985, - 118988, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 118989, - 119013, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 119014, - 119014, - null - ], - [ - ")-token", - ")", - 119015, - 119015, - null - ], - [ - "whitespace-token", - " ", - 119016, - 119016, - null - ], - [ - "delim-token", - "-", - 119017, - 119017, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 119018, - 119018, - null - ], - [ - "function-token", - "var(", - 119019, - 119022, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 119023, - 119047, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 119048, - 119048, - null - ], - [ - ")-token", - ")", - 119049, - 119049, - null - ], - [ - "}-token", - "}", - 119050, - 119050, - null - ], - [ - "delim-token", - ".", - 119051, - 119051, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 119052, - 119066, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 119067, - 119067, - null - ], - [ - "ident-token", - "data-popper-placement", - 119068, - 119088, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 119089, - 119089, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 119090, - 119090, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 119091, - 119096, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 119097, - 119097, - null - ], - [ - "delim-token", - ">", - 119098, - 119098, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119099, - 119099, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119100, - 119112, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119113, - 119113, - null - ], - [ - "colon-token", - ":", - 119114, - 119114, - null - ], - [ - "ident-token", - "after", - 119115, - 119119, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 119120, - 119120, - null - ], - [ - "delim-token", - ".", - 119121, - 119121, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 119122, - 119136, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 119137, - 119137, - null - ], - [ - "ident-token", - "data-popper-placement", - 119138, - 119158, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 119159, - 119159, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 119160, - 119160, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 119161, - 119166, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 119167, - 119167, - null - ], - [ - "delim-token", - ">", - 119168, - 119168, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119169, - 119169, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119170, - 119182, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119183, - 119183, - null - ], - [ - "colon-token", - ":", - 119184, - 119184, - null - ], - [ - "ident-token", - "before", - 119185, - 119190, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 119191, - 119191, - null - ], - [ - "delim-token", - ".", - 119192, - 119192, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 119193, - 119209, - { - "value": "bs-popover-bottom" - } - ], - [ - "delim-token", - ">", - 119210, - 119210, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119211, - 119211, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119212, - 119224, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119225, - 119225, - null - ], - [ - "colon-token", - ":", - 119226, - 119226, - null - ], - [ - "ident-token", - "after", - 119227, - 119231, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 119232, - 119232, - null - ], - [ - "delim-token", - ".", - 119233, - 119233, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 119234, - 119250, - { - "value": "bs-popover-bottom" - } - ], - [ - "delim-token", - ">", - 119251, - 119251, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119252, - 119252, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119253, - 119265, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119266, - 119266, - null - ], - [ - "colon-token", - ":", - 119267, - 119267, - null - ], - [ - "ident-token", - "before", - 119268, - 119273, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 119274, - 119274, - null - ], - [ - "ident-token", - "border-width", - 119275, - 119286, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 119287, - 119287, - null - ], - [ - "number-token", - "0", - 119288, - 119288, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 119289, - 119289, - null - ], - [ - "function-token", - "calc(", - 119290, - 119294, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 119295, - 119298, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 119299, - 119322, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 119323, - 119323, - null - ], - [ - "whitespace-token", - " ", - 119324, - 119324, - null - ], - [ - "delim-token", - "*", - 119325, - 119325, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 119326, - 119326, - null - ], - [ - "number-token", - ".5", - 119327, - 119328, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 119329, - 119329, - null - ], - [ - "whitespace-token", - " ", - 119330, - 119330, - null - ], - [ - "function-token", - "var(", - 119331, - 119334, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 119335, - 119359, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 119360, - 119360, - null - ], - [ - "}-token", - "}", - 119361, - 119361, - null - ], - [ - "delim-token", - ".", - 119362, - 119362, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 119363, - 119377, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 119378, - 119378, - null - ], - [ - "ident-token", - "data-popper-placement", - 119379, - 119399, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 119400, - 119400, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 119401, - 119401, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 119402, - 119407, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 119408, - 119408, - null - ], - [ - "delim-token", - ">", - 119409, - 119409, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119410, - 119410, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119411, - 119423, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119424, - 119424, - null - ], - [ - "colon-token", - ":", - 119425, - 119425, - null - ], - [ - "ident-token", - "before", - 119426, - 119431, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 119432, - 119432, - null - ], - [ - "delim-token", - ".", - 119433, - 119433, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 119434, - 119450, - { - "value": "bs-popover-bottom" - } - ], - [ - "delim-token", - ">", - 119451, - 119451, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119452, - 119452, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119453, - 119465, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119466, - 119466, - null - ], - [ - "colon-token", - ":", - 119467, - 119467, - null - ], - [ - "ident-token", - "before", - 119468, - 119473, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 119474, - 119474, - null - ], - [ - "ident-token", - "top", - 119475, - 119477, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 119478, - 119478, - null - ], - [ - "number-token", - "0", - 119479, - 119479, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 119480, - 119480, - null - ], - [ - "ident-token", - "border-bottom-color", - 119481, - 119499, - { - "value": "border-bottom-color" - } - ], - [ - "colon-token", - ":", - 119500, - 119500, - null - ], - [ - "function-token", - "var(", - 119501, - 119504, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-border", - 119505, - 119529, - { - "value": "--bs-popover-arrow-border" - } - ], - [ - ")-token", - ")", - 119530, - 119530, - null - ], - [ - "}-token", - "}", - 119531, - 119531, - null - ], - [ - "delim-token", - ".", - 119532, - 119532, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 119533, - 119547, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 119548, - 119548, - null - ], - [ - "ident-token", - "data-popper-placement", - 119549, - 119569, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 119570, - 119570, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 119571, - 119571, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 119572, - 119577, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 119578, - 119578, - null - ], - [ - "delim-token", - ">", - 119579, - 119579, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119580, - 119580, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119581, - 119593, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119594, - 119594, - null - ], - [ - "colon-token", - ":", - 119595, - 119595, - null - ], - [ - "ident-token", - "after", - 119596, - 119600, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 119601, - 119601, - null - ], - [ - "delim-token", - ".", - 119602, - 119602, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 119603, - 119619, - { - "value": "bs-popover-bottom" - } - ], - [ - "delim-token", - ">", - 119620, - 119620, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 119621, - 119621, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 119622, - 119634, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 119635, - 119635, - null - ], - [ - "colon-token", - ":", - 119636, - 119636, - null - ], - [ - "ident-token", - "after", - 119637, - 119641, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 119642, - 119642, - null - ], - [ - "ident-token", - "top", - 119643, - 119645, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 119646, - 119646, - null - ], - [ - "function-token", - "var(", - 119647, - 119650, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 119651, - 119675, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 119676, - 119676, - null - ], - [ - "semicolon-token", - ";", - 119677, - 119677, - null - ], - [ - "ident-token", - "border-bottom-color", - 119678, - 119696, - { - "value": "border-bottom-color" - } - ], - [ - "colon-token", - ":", - 119697, - 119697, - null - ], - [ - "function-token", - "var(", - 119698, - 119701, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-bg", - 119702, - 119716, - { - "value": "--bs-popover-bg" - } - ], - [ - ")-token", - ")", - 119717, - 119717, - null - ], - [ - "}-token", - "}", - 119718, - 119718, - null - ], - [ - "delim-token", - ".", - 119719, - 119719, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 119720, - 119734, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 119735, - 119735, - null - ], - [ - "ident-token", - "data-popper-placement", - 119736, - 119756, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 119757, - 119757, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 119758, - 119758, - { - "value": "=" - } - ], - [ - "ident-token", - "bottom", - 119759, - 119764, - { - "value": "bottom" - } - ], - [ - "]-token", - "]", - 119765, - 119765, - null - ], - [ - "whitespace-token", - " ", - 119766, - 119766, - null - ], - [ - "delim-token", - ".", - 119767, - 119767, - { - "value": "." - } - ], - [ - "ident-token", - "popover-header", - 119768, - 119781, - { - "value": "popover-header" - } - ], - [ - "colon-token", - ":", - 119782, - 119782, - null - ], - [ - "colon-token", - ":", - 119783, - 119783, - null - ], - [ - "ident-token", - "before", - 119784, - 119789, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 119790, - 119790, - null - ], - [ - "delim-token", - ".", - 119791, - 119791, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-bottom", - 119792, - 119808, - { - "value": "bs-popover-bottom" - } - ], - [ - "whitespace-token", - " ", - 119809, - 119809, - null - ], - [ - "delim-token", - ".", - 119810, - 119810, - { - "value": "." - } - ], - [ - "ident-token", - "popover-header", - 119811, - 119824, - { - "value": "popover-header" - } - ], - [ - "colon-token", - ":", - 119825, - 119825, - null - ], - [ - "colon-token", - ":", - 119826, - 119826, - null - ], - [ - "ident-token", - "before", - 119827, - 119832, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 119833, - 119833, - null - ], - [ - "ident-token", - "position", - 119834, - 119841, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 119842, - 119842, - null - ], - [ - "ident-token", - "absolute", - 119843, - 119850, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 119851, - 119851, - null - ], - [ - "ident-token", - "top", - 119852, - 119854, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 119855, - 119855, - null - ], - [ - "number-token", - "0", - 119856, - 119856, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 119857, - 119857, - null - ], - [ - "ident-token", - "left", - 119858, - 119861, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 119862, - 119862, - null - ], - [ - "percentage-token", - "50%", - 119863, - 119865, - { - "value": 50 - } - ], - [ - "semicolon-token", - ";", - 119866, - 119866, - null - ], - [ - "ident-token", - "display", - 119867, - 119873, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 119874, - 119874, - null - ], - [ - "ident-token", - "block", - 119875, - 119879, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 119880, - 119880, - null - ], - [ - "ident-token", - "width", - 119881, - 119885, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 119886, - 119886, - null - ], - [ - "function-token", - "var(", - 119887, - 119890, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 119891, - 119914, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 119915, - 119915, - null - ], - [ - "semicolon-token", - ";", - 119916, - 119916, - null - ], - [ - "ident-token", - "margin-left", - 119917, - 119927, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 119928, - 119928, - null - ], - [ - "function-token", - "calc(", - 119929, - 119933, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 119934, - 119936, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 119937, - 119937, - null - ], - [ - "delim-token", - "*", - 119938, - 119938, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 119939, - 119939, - null - ], - [ - "function-token", - "var(", - 119940, - 119943, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 119944, - 119967, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 119968, - 119968, - null - ], - [ - ")-token", - ")", - 119969, - 119969, - null - ], - [ - "semicolon-token", - ";", - 119970, - 119970, - null - ], - [ - "ident-token", - "content", - 119971, - 119977, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 119978, - 119978, - null - ], - [ - "string-token", - "\"\"", - 119979, - 119980, - { - "value": "" - } - ], - [ - "semicolon-token", - ";", - 119981, - 119981, - null - ], - [ - "ident-token", - "border-bottom", - 119982, - 119994, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 119995, - 119995, - null - ], - [ - "function-token", - "var(", - 119996, - 119999, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 120000, - 120024, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 120025, - 120025, - null - ], - [ - "whitespace-token", - " ", - 120026, - 120026, - null - ], - [ - "ident-token", - "solid", - 120027, - 120031, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 120032, - 120032, - null - ], - [ - "function-token", - "var(", - 120033, - 120036, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-bg", - 120037, - 120058, - { - "value": "--bs-popover-header-bg" - } - ], - [ - ")-token", - ")", - 120059, - 120059, - null - ], - [ - "}-token", - "}", - 120060, - 120060, - null - ], - [ - "delim-token", - ".", - 120061, - 120061, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 120062, - 120076, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 120077, - 120077, - null - ], - [ - "ident-token", - "data-popper-placement", - 120078, - 120098, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 120099, - 120099, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 120100, - 120100, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 120101, - 120104, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 120105, - 120105, - null - ], - [ - "delim-token", - ">", - 120106, - 120106, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120107, - 120107, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120108, - 120120, - { - "value": "popover-arrow" - } - ], - [ - "comma-token", - ",", - 120121, - 120121, - null - ], - [ - "delim-token", - ".", - 120122, - 120122, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-start", - 120123, - 120138, - { - "value": "bs-popover-start" - } - ], - [ - "delim-token", - ">", - 120139, - 120139, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120140, - 120140, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120141, - 120153, - { - "value": "popover-arrow" - } - ], - [ - "{-token", - "{", - 120154, - 120154, - null - ], - [ - "ident-token", - "right", - 120155, - 120159, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 120160, - 120160, - null - ], - [ - "function-token", - "calc(", - 120161, - 120165, - { - "value": "calc" - } - ], - [ - "number-token", - "-1", - 120166, - 120167, - { - "value": -1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 120168, - 120168, - null - ], - [ - "delim-token", - "*", - 120169, - 120169, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 120170, - 120170, - null - ], - [ - "(-token", - "(", - 120171, - 120171, - null - ], - [ - "function-token", - "var(", - 120172, - 120175, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 120176, - 120200, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 120201, - 120201, - null - ], - [ - ")-token", - ")", - 120202, - 120202, - null - ], - [ - "whitespace-token", - " ", - 120203, - 120203, - null - ], - [ - "delim-token", - "-", - 120204, - 120204, - { - "value": "-" - } - ], - [ - "whitespace-token", - " ", - 120205, - 120205, - null - ], - [ - "function-token", - "var(", - 120206, - 120209, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 120210, - 120234, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 120235, - 120235, - null - ], - [ - ")-token", - ")", - 120236, - 120236, - null - ], - [ - "semicolon-token", - ";", - 120237, - 120237, - null - ], - [ - "ident-token", - "width", - 120238, - 120242, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 120243, - 120243, - null - ], - [ - "function-token", - "var(", - 120244, - 120247, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 120248, - 120272, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 120273, - 120273, - null - ], - [ - "semicolon-token", - ";", - 120274, - 120274, - null - ], - [ - "ident-token", - "height", - 120275, - 120280, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 120281, - 120281, - null - ], - [ - "function-token", - "var(", - 120282, - 120285, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 120286, - 120309, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 120310, - 120310, - null - ], - [ - "}-token", - "}", - 120311, - 120311, - null - ], - [ - "delim-token", - ".", - 120312, - 120312, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 120313, - 120327, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 120328, - 120328, - null - ], - [ - "ident-token", - "data-popper-placement", - 120329, - 120349, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 120350, - 120350, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 120351, - 120351, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 120352, - 120355, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 120356, - 120356, - null - ], - [ - "delim-token", - ">", - 120357, - 120357, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120358, - 120358, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120359, - 120371, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120372, - 120372, - null - ], - [ - "colon-token", - ":", - 120373, - 120373, - null - ], - [ - "ident-token", - "after", - 120374, - 120378, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 120379, - 120379, - null - ], - [ - "delim-token", - ".", - 120380, - 120380, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 120381, - 120395, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 120396, - 120396, - null - ], - [ - "ident-token", - "data-popper-placement", - 120397, - 120417, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 120418, - 120418, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 120419, - 120419, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 120420, - 120423, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 120424, - 120424, - null - ], - [ - "delim-token", - ">", - 120425, - 120425, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120426, - 120426, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120427, - 120439, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120440, - 120440, - null - ], - [ - "colon-token", - ":", - 120441, - 120441, - null - ], - [ - "ident-token", - "before", - 120442, - 120447, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 120448, - 120448, - null - ], - [ - "delim-token", - ".", - 120449, - 120449, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-start", - 120450, - 120465, - { - "value": "bs-popover-start" - } - ], - [ - "delim-token", - ">", - 120466, - 120466, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120467, - 120467, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120468, - 120480, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120481, - 120481, - null - ], - [ - "colon-token", - ":", - 120482, - 120482, - null - ], - [ - "ident-token", - "after", - 120483, - 120487, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 120488, - 120488, - null - ], - [ - "delim-token", - ".", - 120489, - 120489, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-start", - 120490, - 120505, - { - "value": "bs-popover-start" - } - ], - [ - "delim-token", - ">", - 120506, - 120506, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120507, - 120507, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120508, - 120520, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120521, - 120521, - null - ], - [ - "colon-token", - ":", - 120522, - 120522, - null - ], - [ - "ident-token", - "before", - 120523, - 120528, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 120529, - 120529, - null - ], - [ - "ident-token", - "border-width", - 120530, - 120541, - { - "value": "border-width" - } - ], - [ - "colon-token", - ":", - 120542, - 120542, - null - ], - [ - "function-token", - "calc(", - 120543, - 120547, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 120548, - 120551, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 120552, - 120575, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 120576, - 120576, - null - ], - [ - "whitespace-token", - " ", - 120577, - 120577, - null - ], - [ - "delim-token", - "*", - 120578, - 120578, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 120579, - 120579, - null - ], - [ - "number-token", - ".5", - 120580, - 120581, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 120582, - 120582, - null - ], - [ - "whitespace-token", - " ", - 120583, - 120583, - null - ], - [ - "number-token", - "0", - 120584, - 120584, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 120585, - 120585, - null - ], - [ - "function-token", - "calc(", - 120586, - 120590, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 120591, - 120594, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-width", - 120595, - 120618, - { - "value": "--bs-popover-arrow-width" - } - ], - [ - ")-token", - ")", - 120619, - 120619, - null - ], - [ - "whitespace-token", - " ", - 120620, - 120620, - null - ], - [ - "delim-token", - "*", - 120621, - 120621, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 120622, - 120622, - null - ], - [ - "number-token", - ".5", - 120623, - 120624, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 120625, - 120625, - null - ], - [ - "whitespace-token", - " ", - 120626, - 120626, - null - ], - [ - "function-token", - "var(", - 120627, - 120630, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-height", - 120631, - 120655, - { - "value": "--bs-popover-arrow-height" - } - ], - [ - ")-token", - ")", - 120656, - 120656, - null - ], - [ - "}-token", - "}", - 120657, - 120657, - null - ], - [ - "delim-token", - ".", - 120658, - 120658, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 120659, - 120673, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 120674, - 120674, - null - ], - [ - "ident-token", - "data-popper-placement", - 120675, - 120695, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 120696, - 120696, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 120697, - 120697, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 120698, - 120701, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 120702, - 120702, - null - ], - [ - "delim-token", - ">", - 120703, - 120703, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120704, - 120704, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120705, - 120717, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120718, - 120718, - null - ], - [ - "colon-token", - ":", - 120719, - 120719, - null - ], - [ - "ident-token", - "before", - 120720, - 120725, - { - "value": "before" - } - ], - [ - "comma-token", - ",", - 120726, - 120726, - null - ], - [ - "delim-token", - ".", - 120727, - 120727, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-start", - 120728, - 120743, - { - "value": "bs-popover-start" - } - ], - [ - "delim-token", - ">", - 120744, - 120744, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120745, - 120745, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120746, - 120758, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120759, - 120759, - null - ], - [ - "colon-token", - ":", - 120760, - 120760, - null - ], - [ - "ident-token", - "before", - 120761, - 120766, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 120767, - 120767, - null - ], - [ - "ident-token", - "right", - 120768, - 120772, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 120773, - 120773, - null - ], - [ - "number-token", - "0", - 120774, - 120774, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 120775, - 120775, - null - ], - [ - "ident-token", - "border-left-color", - 120776, - 120792, - { - "value": "border-left-color" - } - ], - [ - "colon-token", - ":", - 120793, - 120793, - null - ], - [ - "function-token", - "var(", - 120794, - 120797, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-arrow-border", - 120798, - 120822, - { - "value": "--bs-popover-arrow-border" - } - ], - [ - ")-token", - ")", - 120823, - 120823, - null - ], - [ - "}-token", - "}", - 120824, - 120824, - null - ], - [ - "delim-token", - ".", - 120825, - 120825, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-auto", - 120826, - 120840, - { - "value": "bs-popover-auto" - } - ], - [ - "[-token", - "[", - 120841, - 120841, - null - ], - [ - "ident-token", - "data-popper-placement", - 120842, - 120862, - { - "value": "data-popper-placement" - } - ], - [ - "delim-token", - "^", - 120863, - 120863, - { - "value": "^" - } - ], - [ - "delim-token", - "=", - 120864, - 120864, - { - "value": "=" - } - ], - [ - "ident-token", - "left", - 120865, - 120868, - { - "value": "left" - } - ], - [ - "]-token", - "]", - 120869, - 120869, - null - ], - [ - "delim-token", - ">", - 120870, - 120870, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120871, - 120871, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120872, - 120884, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120885, - 120885, - null - ], - [ - "colon-token", - ":", - 120886, - 120886, - null - ], - [ - "ident-token", - "after", - 120887, - 120891, - { - "value": "after" - } - ], - [ - "comma-token", - ",", - 120892, - 120892, - null - ], - [ - "delim-token", - ".", - 120893, - 120893, - { - "value": "." - } - ], - [ - "ident-token", - "bs-popover-start", - 120894, - 120909, - { - "value": "bs-popover-start" - } - ], - [ - "delim-token", - ">", - 120910, - 120910, - { - "value": ">" - } - ], - [ - "delim-token", - ".", - 120911, - 120911, - { - "value": "." - } - ], - [ - "ident-token", - "popover-arrow", - 120912, - 120924, - { - "value": "popover-arrow" - } - ], - [ - "colon-token", - ":", - 120925, - 120925, - null - ], - [ - "colon-token", - ":", - 120926, - 120926, - null - ], - [ - "ident-token", - "after", - 120927, - 120931, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 120932, - 120932, - null - ], - [ - "ident-token", - "right", - 120933, - 120937, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 120938, - 120938, - null - ], - [ - "function-token", - "var(", - 120939, - 120942, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 120943, - 120967, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 120968, - 120968, - null - ], - [ - "semicolon-token", - ";", - 120969, - 120969, - null - ], - [ - "ident-token", - "border-left-color", - 120970, - 120986, - { - "value": "border-left-color" - } - ], - [ - "colon-token", - ":", - 120987, - 120987, - null - ], - [ - "function-token", - "var(", - 120988, - 120991, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-bg", - 120992, - 121006, - { - "value": "--bs-popover-bg" - } - ], - [ - ")-token", - ")", - 121007, - 121007, - null - ], - [ - "}-token", - "}", - 121008, - 121008, - null - ], - [ - "delim-token", - ".", - 121009, - 121009, - { - "value": "." - } - ], - [ - "ident-token", - "popover-header", - 121010, - 121023, - { - "value": "popover-header" - } - ], - [ - "{-token", - "{", - 121024, - 121024, - null - ], - [ - "ident-token", - "padding", - 121025, - 121031, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 121032, - 121032, - null - ], - [ - "function-token", - "var(", - 121033, - 121036, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-padding-y", - 121037, - 121065, - { - "value": "--bs-popover-header-padding-y" - } - ], - [ - ")-token", - ")", - 121066, - 121066, - null - ], - [ - "whitespace-token", - " ", - 121067, - 121067, - null - ], - [ - "function-token", - "var(", - 121068, - 121071, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-padding-x", - 121072, - 121100, - { - "value": "--bs-popover-header-padding-x" - } - ], - [ - ")-token", - ")", - 121101, - 121101, - null - ], - [ - "semicolon-token", - ";", - 121102, - 121102, - null - ], - [ - "ident-token", - "margin-bottom", - 121103, - 121115, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 121116, - 121116, - null - ], - [ - "number-token", - "0", - 121117, - 121117, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 121118, - 121118, - null - ], - [ - "ident-token", - "font-size", - 121119, - 121127, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 121128, - 121128, - null - ], - [ - "function-token", - "var(", - 121129, - 121132, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-font-size", - 121133, - 121161, - { - "value": "--bs-popover-header-font-size" - } - ], - [ - ")-token", - ")", - 121162, - 121162, - null - ], - [ - "semicolon-token", - ";", - 121163, - 121163, - null - ], - [ - "ident-token", - "color", - 121164, - 121168, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 121169, - 121169, - null - ], - [ - "function-token", - "var(", - 121170, - 121173, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-color", - 121174, - 121198, - { - "value": "--bs-popover-header-color" - } - ], - [ - ")-token", - ")", - 121199, - 121199, - null - ], - [ - "semicolon-token", - ";", - 121200, - 121200, - null - ], - [ - "ident-token", - "background-color", - 121201, - 121216, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 121217, - 121217, - null - ], - [ - "function-token", - "var(", - 121218, - 121221, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-header-bg", - 121222, - 121243, - { - "value": "--bs-popover-header-bg" - } - ], - [ - ")-token", - ")", - 121244, - 121244, - null - ], - [ - "semicolon-token", - ";", - 121245, - 121245, - null - ], - [ - "ident-token", - "border-bottom", - 121246, - 121258, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 121259, - 121259, - null - ], - [ - "function-token", - "var(", - 121260, - 121263, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-width", - 121264, - 121288, - { - "value": "--bs-popover-border-width" - } - ], - [ - ")-token", - ")", - 121289, - 121289, - null - ], - [ - "whitespace-token", - " ", - 121290, - 121290, - null - ], - [ - "ident-token", - "solid", - 121291, - 121295, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 121296, - 121296, - null - ], - [ - "function-token", - "var(", - 121297, - 121300, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-border-color", - 121301, - 121325, - { - "value": "--bs-popover-border-color" - } - ], - [ - ")-token", - ")", - 121326, - 121326, - null - ], - [ - "semicolon-token", - ";", - 121327, - 121327, - null - ], - [ - "ident-token", - "border-top-left-radius", - 121328, - 121349, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 121350, - 121350, - null - ], - [ - "function-token", - "var(", - 121351, - 121354, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-inner-border-radius", - 121355, - 121386, - { - "value": "--bs-popover-inner-border-radius" - } - ], - [ - ")-token", - ")", - 121387, - 121387, - null - ], - [ - "semicolon-token", - ";", - 121388, - 121388, - null - ], - [ - "ident-token", - "border-top-right-radius", - 121389, - 121411, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 121412, - 121412, - null - ], - [ - "function-token", - "var(", - 121413, - 121416, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-inner-border-radius", - 121417, - 121448, - { - "value": "--bs-popover-inner-border-radius" - } - ], - [ - ")-token", - ")", - 121449, - 121449, - null - ], - [ - "}-token", - "}", - 121450, - 121450, - null - ], - [ - "delim-token", - ".", - 121451, - 121451, - { - "value": "." - } - ], - [ - "ident-token", - "popover-header", - 121452, - 121465, - { - "value": "popover-header" - } - ], - [ - "colon-token", - ":", - 121466, - 121466, - null - ], - [ - "ident-token", - "empty", - 121467, - 121471, - { - "value": "empty" - } - ], - [ - "{-token", - "{", - 121472, - 121472, - null - ], - [ - "ident-token", - "display", - 121473, - 121479, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 121480, - 121480, - null - ], - [ - "ident-token", - "none", - 121481, - 121484, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 121485, - 121485, - null - ], - [ - "delim-token", - ".", - 121486, - 121486, - { - "value": "." - } - ], - [ - "ident-token", - "popover-body", - 121487, - 121498, - { - "value": "popover-body" - } - ], - [ - "{-token", - "{", - 121499, - 121499, - null - ], - [ - "ident-token", - "padding", - 121500, - 121506, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 121507, - 121507, - null - ], - [ - "function-token", - "var(", - 121508, - 121511, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-body-padding-y", - 121512, - 121538, - { - "value": "--bs-popover-body-padding-y" - } - ], - [ - ")-token", - ")", - 121539, - 121539, - null - ], - [ - "whitespace-token", - " ", - 121540, - 121540, - null - ], - [ - "function-token", - "var(", - 121541, - 121544, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-body-padding-x", - 121545, - 121571, - { - "value": "--bs-popover-body-padding-x" - } - ], - [ - ")-token", - ")", - 121572, - 121572, - null - ], - [ - "semicolon-token", - ";", - 121573, - 121573, - null - ], - [ - "ident-token", - "color", - 121574, - 121578, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 121579, - 121579, - null - ], - [ - "function-token", - "var(", - 121580, - 121583, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-popover-body-color", - 121584, - 121606, - { - "value": "--bs-popover-body-color" - } - ], - [ - ")-token", - ")", - 121607, - 121607, - null - ], - [ - "}-token", - "}", - 121608, - 121608, - null - ], - [ - "delim-token", - ".", - 121609, - 121609, - { - "value": "." - } - ], - [ - "ident-token", - "carousel", - 121610, - 121617, - { - "value": "carousel" - } - ], - [ - "{-token", - "{", - 121618, - 121618, - null - ], - [ - "ident-token", - "position", - 121619, - 121626, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 121627, - 121627, - null - ], - [ - "ident-token", - "relative", - 121628, - 121635, - { - "value": "relative" - } - ], - [ - "}-token", - "}", - 121636, - 121636, - null - ], - [ - "delim-token", - ".", - 121637, - 121637, - { - "value": "." - } - ], - [ - "ident-token", - "carousel", - 121638, - 121645, - { - "value": "carousel" - } - ], - [ - "delim-token", - ".", - 121646, - 121646, - { - "value": "." - } - ], - [ - "ident-token", - "pointer-event", - 121647, - 121659, - { - "value": "pointer-event" - } - ], - [ - "{-token", - "{", - 121660, - 121660, - null - ], - [ - "ident-token", - "touch-action", - 121661, - 121672, - { - "value": "touch-action" - } - ], - [ - "colon-token", - ":", - 121673, - 121673, - null - ], - [ - "ident-token", - "pan-y", - 121674, - 121678, - { - "value": "pan-y" - } - ], - [ - "}-token", - "}", - 121679, - 121679, - null - ], - [ - "delim-token", - ".", - 121680, - 121680, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-inner", - 121681, - 121694, - { - "value": "carousel-inner" - } - ], - [ - "{-token", - "{", - 121695, - 121695, - null - ], - [ - "ident-token", - "position", - 121696, - 121703, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 121704, - 121704, - null - ], - [ - "ident-token", - "relative", - 121705, - 121712, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 121713, - 121713, - null - ], - [ - "ident-token", - "width", - 121714, - 121718, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 121719, - 121719, - null - ], - [ - "percentage-token", - "100%", - 121720, - 121723, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 121724, - 121724, - null - ], - [ - "ident-token", - "overflow", - 121725, - 121732, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 121733, - 121733, - null - ], - [ - "ident-token", - "hidden", - 121734, - 121739, - { - "value": "hidden" - } - ], - [ - "}-token", - "}", - 121740, - 121740, - null - ], - [ - "delim-token", - ".", - 121741, - 121741, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-inner", - 121742, - 121755, - { - "value": "carousel-inner" - } - ], - [ - "colon-token", - ":", - 121756, - 121756, - null - ], - [ - "colon-token", - ":", - 121757, - 121757, - null - ], - [ - "ident-token", - "after", - 121758, - 121762, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 121763, - 121763, - null - ], - [ - "ident-token", - "display", - 121764, - 121770, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 121771, - 121771, - null - ], - [ - "ident-token", - "block", - 121772, - 121776, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 121777, - 121777, - null - ], - [ - "ident-token", - "clear", - 121778, - 121782, - { - "value": "clear" - } - ], - [ - "colon-token", - ":", - 121783, - 121783, - null - ], - [ - "ident-token", - "both", - 121784, - 121787, - { - "value": "both" - } - ], - [ - "semicolon-token", - ";", - 121788, - 121788, - null - ], - [ - "ident-token", - "content", - 121789, - 121795, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 121796, - 121796, - null - ], - [ - "string-token", - "\"\"", - 121797, - 121798, - { - "value": "" - } - ], - [ - "}-token", - "}", - 121799, - 121799, - null - ], - [ - "delim-token", - ".", - 121800, - 121800, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item", - 121801, - 121813, - { - "value": "carousel-item" - } - ], - [ - "{-token", - "{", - 121814, - 121814, - null - ], - [ - "ident-token", - "position", - 121815, - 121822, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 121823, - 121823, - null - ], - [ - "ident-token", - "relative", - 121824, - 121831, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 121832, - 121832, - null - ], - [ - "ident-token", - "display", - 121833, - 121839, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 121840, - 121840, - null - ], - [ - "ident-token", - "none", - 121841, - 121844, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 121845, - 121845, - null - ], - [ - "ident-token", - "float", - 121846, - 121850, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 121851, - 121851, - null - ], - [ - "ident-token", - "left", - 121852, - 121855, - { - "value": "left" - } - ], - [ - "semicolon-token", - ";", - 121856, - 121856, - null - ], - [ - "ident-token", - "width", - 121857, - 121861, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 121862, - 121862, - null - ], - [ - "percentage-token", - "100%", - 121863, - 121866, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 121867, - 121867, - null - ], - [ - "ident-token", - "margin-right", - 121868, - 121879, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 121880, - 121880, - null - ], - [ - "percentage-token", - "-100%", - 121881, - 121885, - { - "value": -100 - } - ], - [ - "semicolon-token", - ";", - 121886, - 121886, - null - ], - [ - "ident-token", - "-webkit-backface-visibility", - 121887, - 121913, - { - "value": "-webkit-backface-visibility" - } - ], - [ - "colon-token", - ":", - 121914, - 121914, - null - ], - [ - "ident-token", - "hidden", - 121915, - 121920, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 121921, - 121921, - null - ], - [ - "ident-token", - "backface-visibility", - 121922, - 121940, - { - "value": "backface-visibility" - } - ], - [ - "colon-token", - ":", - 121941, - 121941, - null - ], - [ - "ident-token", - "hidden", - 121942, - 121947, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 121948, - 121948, - null - ], - [ - "ident-token", - "transition", - 121949, - 121958, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 121959, - 121959, - null - ], - [ - "ident-token", - "transform", - 121960, - 121968, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 121969, - 121969, - null - ], - [ - "dimension-token", - ".6s", - 121970, - 121972, - { - "value": 0.6, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 121973, - 121973, - null - ], - [ - "ident-token", - "ease-in-out", - 121974, - 121984, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 121985, - 121985, - null - ], - [ - "at-keyword-token", - "@media", - 121986, - 121991, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 121992, - 121992, - null - ], - [ - "(-token", - "(", - 121993, - 121993, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 121994, - 122015, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 122016, - 122016, - null - ], - [ - "ident-token", - "reduce", - 122017, - 122022, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 122023, - 122023, - null - ], - [ - "{-token", - "{", - 122024, - 122024, - null - ], - [ - "delim-token", - ".", - 122025, - 122025, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item", - 122026, - 122038, - { - "value": "carousel-item" - } - ], - [ - "{-token", - "{", - 122039, - 122039, - null - ], - [ - "ident-token", - "transition", - 122040, - 122049, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 122050, - 122050, - null - ], - [ - "ident-token", - "none", - 122051, - 122054, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 122055, - 122055, - null - ], - [ - "}-token", - "}", - 122056, - 122056, - null - ], - [ - "delim-token", - ".", - 122057, - 122057, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-next", - 122058, - 122075, - { - "value": "carousel-item-next" - } - ], - [ - "comma-token", - ",", - 122076, - 122076, - null - ], - [ - "delim-token", - ".", - 122077, - 122077, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-prev", - 122078, - 122095, - { - "value": "carousel-item-prev" - } - ], - [ - "comma-token", - ",", - 122096, - 122096, - null - ], - [ - "delim-token", - ".", - 122097, - 122097, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item", - 122098, - 122110, - { - "value": "carousel-item" - } - ], - [ - "delim-token", - ".", - 122111, - 122111, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122112, - 122117, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 122118, - 122118, - null - ], - [ - "ident-token", - "display", - 122119, - 122125, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 122126, - 122126, - null - ], - [ - "ident-token", - "block", - 122127, - 122131, - { - "value": "block" - } - ], - [ - "}-token", - "}", - 122132, - 122132, - null - ], - [ - "delim-token", - ".", - 122133, - 122133, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122134, - 122139, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122140, - 122140, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-end", - 122141, - 122157, - { - "value": "carousel-item-end" - } - ], - [ - "comma-token", - ",", - 122158, - 122158, - null - ], - [ - "delim-token", - ".", - 122159, - 122159, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-next", - 122160, - 122177, - { - "value": "carousel-item-next" - } - ], - [ - "colon-token", - ":", - 122178, - 122178, - null - ], - [ - "function-token", - "not(", - 122179, - 122182, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 122183, - 122183, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-start", - 122184, - 122202, - { - "value": "carousel-item-start" - } - ], - [ - ")-token", - ")", - 122203, - 122203, - null - ], - [ - "{-token", - "{", - 122204, - 122204, - null - ], - [ - "ident-token", - "transform", - 122205, - 122213, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 122214, - 122214, - null - ], - [ - "function-token", - "translateX(", - 122215, - 122225, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 122226, - 122229, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 122230, - 122230, - null - ], - [ - "}-token", - "}", - 122231, - 122231, - null - ], - [ - "delim-token", - ".", - 122232, - 122232, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122233, - 122238, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122239, - 122239, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-start", - 122240, - 122258, - { - "value": "carousel-item-start" - } - ], - [ - "comma-token", - ",", - 122259, - 122259, - null - ], - [ - "delim-token", - ".", - 122260, - 122260, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-prev", - 122261, - 122278, - { - "value": "carousel-item-prev" - } - ], - [ - "colon-token", - ":", - 122279, - 122279, - null - ], - [ - "function-token", - "not(", - 122280, - 122283, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 122284, - 122284, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-end", - 122285, - 122301, - { - "value": "carousel-item-end" - } - ], - [ - ")-token", - ")", - 122302, - 122302, - null - ], - [ - "{-token", - "{", - 122303, - 122303, - null - ], - [ - "ident-token", - "transform", - 122304, - 122312, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 122313, - 122313, - null - ], - [ - "function-token", - "translateX(", - 122314, - 122324, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 122325, - 122329, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 122330, - 122330, - null - ], - [ - "}-token", - "}", - 122331, - 122331, - null - ], - [ - "delim-token", - ".", - 122332, - 122332, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122333, - 122345, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122346, - 122346, - null - ], - [ - "delim-token", - ".", - 122347, - 122347, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item", - 122348, - 122360, - { - "value": "carousel-item" - } - ], - [ - "{-token", - "{", - 122361, - 122361, - null - ], - [ - "ident-token", - "opacity", - 122362, - 122368, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 122369, - 122369, - null - ], - [ - "number-token", - "0", - 122370, - 122370, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122371, - 122371, - null - ], - [ - "ident-token", - "transition-property", - 122372, - 122390, - { - "value": "transition-property" - } - ], - [ - "colon-token", - ":", - 122391, - 122391, - null - ], - [ - "ident-token", - "opacity", - 122392, - 122398, - { - "value": "opacity" - } - ], - [ - "semicolon-token", - ";", - 122399, - 122399, - null - ], - [ - "ident-token", - "transform", - 122400, - 122408, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 122409, - 122409, - null - ], - [ - "ident-token", - "none", - 122410, - 122413, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 122414, - 122414, - null - ], - [ - "delim-token", - ".", - 122415, - 122415, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122416, - 122428, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122429, - 122429, - null - ], - [ - "delim-token", - ".", - 122430, - 122430, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-next", - 122431, - 122448, - { - "value": "carousel-item-next" - } - ], - [ - "delim-token", - ".", - 122449, - 122449, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-start", - 122450, - 122468, - { - "value": "carousel-item-start" - } - ], - [ - "comma-token", - ",", - 122469, - 122469, - null - ], - [ - "delim-token", - ".", - 122470, - 122470, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122471, - 122483, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122484, - 122484, - null - ], - [ - "delim-token", - ".", - 122485, - 122485, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-prev", - 122486, - 122503, - { - "value": "carousel-item-prev" - } - ], - [ - "delim-token", - ".", - 122504, - 122504, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-end", - 122505, - 122521, - { - "value": "carousel-item-end" - } - ], - [ - "comma-token", - ",", - 122522, - 122522, - null - ], - [ - "delim-token", - ".", - 122523, - 122523, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122524, - 122536, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122537, - 122537, - null - ], - [ - "delim-token", - ".", - 122538, - 122538, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item", - 122539, - 122551, - { - "value": "carousel-item" - } - ], - [ - "delim-token", - ".", - 122552, - 122552, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122553, - 122558, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 122559, - 122559, - null - ], - [ - "ident-token", - "z-index", - 122560, - 122566, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 122567, - 122567, - null - ], - [ - "number-token", - "1", - 122568, - 122568, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122569, - 122569, - null - ], - [ - "ident-token", - "opacity", - 122570, - 122576, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 122577, - 122577, - null - ], - [ - "number-token", - "1", - 122578, - 122578, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 122579, - 122579, - null - ], - [ - "delim-token", - ".", - 122580, - 122580, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122581, - 122593, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122594, - 122594, - null - ], - [ - "delim-token", - ".", - 122595, - 122595, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122596, - 122601, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122602, - 122602, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-end", - 122603, - 122619, - { - "value": "carousel-item-end" - } - ], - [ - "comma-token", - ",", - 122620, - 122620, - null - ], - [ - "delim-token", - ".", - 122621, - 122621, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122622, - 122634, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122635, - 122635, - null - ], - [ - "delim-token", - ".", - 122636, - 122636, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122637, - 122642, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122643, - 122643, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-start", - 122644, - 122662, - { - "value": "carousel-item-start" - } - ], - [ - "{-token", - "{", - 122663, - 122663, - null - ], - [ - "ident-token", - "z-index", - 122664, - 122670, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 122671, - 122671, - null - ], - [ - "number-token", - "0", - 122672, - 122672, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122673, - 122673, - null - ], - [ - "ident-token", - "opacity", - 122674, - 122680, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 122681, - 122681, - null - ], - [ - "number-token", - "0", - 122682, - 122682, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122683, - 122683, - null - ], - [ - "ident-token", - "transition", - 122684, - 122693, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 122694, - 122694, - null - ], - [ - "ident-token", - "opacity", - 122695, - 122701, - { - "value": "opacity" - } - ], - [ - "whitespace-token", - " ", - 122702, - 122702, - null - ], - [ - "dimension-token", - "0s", - 122703, - 122704, - { - "value": 0, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 122705, - 122705, - null - ], - [ - "dimension-token", - ".6s", - 122706, - 122708, - { - "value": 0.6, - "type": "number", - "unit": "s" - } - ], - [ - "}-token", - "}", - 122709, - 122709, - null - ], - [ - "at-keyword-token", - "@media", - 122710, - 122715, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 122716, - 122716, - null - ], - [ - "(-token", - "(", - 122717, - 122717, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 122718, - 122739, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 122740, - 122740, - null - ], - [ - "ident-token", - "reduce", - 122741, - 122746, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 122747, - 122747, - null - ], - [ - "{-token", - "{", - 122748, - 122748, - null - ], - [ - "delim-token", - ".", - 122749, - 122749, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122750, - 122762, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122763, - 122763, - null - ], - [ - "delim-token", - ".", - 122764, - 122764, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122765, - 122770, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122771, - 122771, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-end", - 122772, - 122788, - { - "value": "carousel-item-end" - } - ], - [ - "comma-token", - ",", - 122789, - 122789, - null - ], - [ - "delim-token", - ".", - 122790, - 122790, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-fade", - 122791, - 122803, - { - "value": "carousel-fade" - } - ], - [ - "whitespace-token", - " ", - 122804, - 122804, - null - ], - [ - "delim-token", - ".", - 122805, - 122805, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 122806, - 122811, - { - "value": "active" - } - ], - [ - "delim-token", - ".", - 122812, - 122812, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-item-start", - 122813, - 122831, - { - "value": "carousel-item-start" - } - ], - [ - "{-token", - "{", - 122832, - 122832, - null - ], - [ - "ident-token", - "transition", - 122833, - 122842, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 122843, - 122843, - null - ], - [ - "ident-token", - "none", - 122844, - 122847, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 122848, - 122848, - null - ], - [ - "}-token", - "}", - 122849, - 122849, - null - ], - [ - "delim-token", - ".", - 122850, - 122850, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next", - 122851, - 122871, - { - "value": "carousel-control-next" - } - ], - [ - "comma-token", - ",", - 122872, - 122872, - null - ], - [ - "delim-token", - ".", - 122873, - 122873, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev", - 122874, - 122894, - { - "value": "carousel-control-prev" - } - ], - [ - "{-token", - "{", - 122895, - 122895, - null - ], - [ - "ident-token", - "position", - 122896, - 122903, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 122904, - 122904, - null - ], - [ - "ident-token", - "absolute", - 122905, - 122912, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 122913, - 122913, - null - ], - [ - "ident-token", - "top", - 122914, - 122916, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 122917, - 122917, - null - ], - [ - "number-token", - "0", - 122918, - 122918, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122919, - 122919, - null - ], - [ - "ident-token", - "bottom", - 122920, - 122925, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 122926, - 122926, - null - ], - [ - "number-token", - "0", - 122927, - 122927, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122928, - 122928, - null - ], - [ - "ident-token", - "z-index", - 122929, - 122935, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 122936, - 122936, - null - ], - [ - "number-token", - "1", - 122937, - 122937, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 122938, - 122938, - null - ], - [ - "ident-token", - "display", - 122939, - 122945, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 122946, - 122946, - null - ], - [ - "ident-token", - "flex", - 122947, - 122950, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 122951, - 122951, - null - ], - [ - "ident-token", - "align-items", - 122952, - 122962, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 122963, - 122963, - null - ], - [ - "ident-token", - "center", - 122964, - 122969, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 122970, - 122970, - null - ], - [ - "ident-token", - "justify-content", - 122971, - 122985, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 122986, - 122986, - null - ], - [ - "ident-token", - "center", - 122987, - 122992, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 122993, - 122993, - null - ], - [ - "ident-token", - "width", - 122994, - 122998, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 122999, - 122999, - null - ], - [ - "percentage-token", - "15%", - 123000, - 123002, - { - "value": 15 - } - ], - [ - "semicolon-token", - ";", - 123003, - 123003, - null - ], - [ - "ident-token", - "padding", - 123004, - 123010, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 123011, - 123011, - null - ], - [ - "number-token", - "0", - 123012, - 123012, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 123013, - 123013, - null - ], - [ - "ident-token", - "color", - 123014, - 123018, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 123019, - 123019, - null - ], - [ - "hash-token", - "#fff", - 123020, - 123023, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 123024, - 123024, - null - ], - [ - "ident-token", - "text-align", - 123025, - 123034, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 123035, - 123035, - null - ], - [ - "ident-token", - "center", - 123036, - 123041, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 123042, - 123042, - null - ], - [ - "ident-token", - "background", - 123043, - 123052, - { - "value": "background" - } - ], - [ - "colon-token", - ":", - 123053, - 123053, - null - ], - [ - "number-token", - "0", - 123054, - 123054, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 123055, - 123055, - null - ], - [ - "number-token", - "0", - 123056, - 123056, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 123057, - 123057, - null - ], - [ - "ident-token", - "border", - 123058, - 123063, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 123064, - 123064, - null - ], - [ - "number-token", - "0", - 123065, - 123065, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 123066, - 123066, - null - ], - [ - "ident-token", - "opacity", - 123067, - 123073, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 123074, - 123074, - null - ], - [ - "number-token", - ".5", - 123075, - 123076, - { - "value": 0.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 123077, - 123077, - null - ], - [ - "ident-token", - "transition", - 123078, - 123087, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 123088, - 123088, - null - ], - [ - "ident-token", - "opacity", - 123089, - 123095, - { - "value": "opacity" - } - ], - [ - "whitespace-token", - " ", - 123096, - 123096, - null - ], - [ - "dimension-token", - ".15s", - 123097, - 123100, - { - "value": 0.15, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 123101, - 123101, - null - ], - [ - "ident-token", - "ease", - 123102, - 123105, - { - "value": "ease" - } - ], - [ - "}-token", - "}", - 123106, - 123106, - null - ], - [ - "at-keyword-token", - "@media", - 123107, - 123112, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 123113, - 123113, - null - ], - [ - "(-token", - "(", - 123114, - 123114, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 123115, - 123136, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 123137, - 123137, - null - ], - [ - "ident-token", - "reduce", - 123138, - 123143, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 123144, - 123144, - null - ], - [ - "{-token", - "{", - 123145, - 123145, - null - ], - [ - "delim-token", - ".", - 123146, - 123146, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next", - 123147, - 123167, - { - "value": "carousel-control-next" - } - ], - [ - "comma-token", - ",", - 123168, - 123168, - null - ], - [ - "delim-token", - ".", - 123169, - 123169, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev", - 123170, - 123190, - { - "value": "carousel-control-prev" - } - ], - [ - "{-token", - "{", - 123191, - 123191, - null - ], - [ - "ident-token", - "transition", - 123192, - 123201, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 123202, - 123202, - null - ], - [ - "ident-token", - "none", - 123203, - 123206, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 123207, - 123207, - null - ], - [ - "}-token", - "}", - 123208, - 123208, - null - ], - [ - "delim-token", - ".", - 123209, - 123209, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next", - 123210, - 123230, - { - "value": "carousel-control-next" - } - ], - [ - "colon-token", - ":", - 123231, - 123231, - null - ], - [ - "ident-token", - "focus", - 123232, - 123236, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 123237, - 123237, - null - ], - [ - "delim-token", - ".", - 123238, - 123238, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next", - 123239, - 123259, - { - "value": "carousel-control-next" - } - ], - [ - "colon-token", - ":", - 123260, - 123260, - null - ], - [ - "ident-token", - "hover", - 123261, - 123265, - { - "value": "hover" - } - ], - [ - "comma-token", - ",", - 123266, - 123266, - null - ], - [ - "delim-token", - ".", - 123267, - 123267, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev", - 123268, - 123288, - { - "value": "carousel-control-prev" - } - ], - [ - "colon-token", - ":", - 123289, - 123289, - null - ], - [ - "ident-token", - "focus", - 123290, - 123294, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 123295, - 123295, - null - ], - [ - "delim-token", - ".", - 123296, - 123296, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev", - 123297, - 123317, - { - "value": "carousel-control-prev" - } - ], - [ - "colon-token", - ":", - 123318, - 123318, - null - ], - [ - "ident-token", - "hover", - 123319, - 123323, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 123324, - 123324, - null - ], - [ - "ident-token", - "color", - 123325, - 123329, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 123330, - 123330, - null - ], - [ - "hash-token", - "#fff", - 123331, - 123334, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 123335, - 123335, - null - ], - [ - "ident-token", - "text-decoration", - 123336, - 123350, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 123351, - 123351, - null - ], - [ - "ident-token", - "none", - 123352, - 123355, - { - "value": "none" - } - ], - [ - "semicolon-token", - ";", - 123356, - 123356, - null - ], - [ - "ident-token", - "outline", - 123357, - 123363, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 123364, - 123364, - null - ], - [ - "number-token", - "0", - 123365, - 123365, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 123366, - 123366, - null - ], - [ - "ident-token", - "opacity", - 123367, - 123373, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 123374, - 123374, - null - ], - [ - "number-token", - ".9", - 123375, - 123376, - { - "value": 0.9, - "type": "number" - } - ], - [ - "}-token", - "}", - 123377, - 123377, - null - ], - [ - "delim-token", - ".", - 123378, - 123378, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev", - 123379, - 123399, - { - "value": "carousel-control-prev" - } - ], - [ - "{-token", - "{", - 123400, - 123400, - null - ], - [ - "ident-token", - "left", - 123401, - 123404, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 123405, - 123405, - null - ], - [ - "number-token", - "0", - 123406, - 123406, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 123407, - 123407, - null - ], - [ - "delim-token", - ".", - 123408, - 123408, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next", - 123409, - 123429, - { - "value": "carousel-control-next" - } - ], - [ - "{-token", - "{", - 123430, - 123430, - null - ], - [ - "ident-token", - "right", - 123431, - 123435, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 123436, - 123436, - null - ], - [ - "number-token", - "0", - 123437, - 123437, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 123438, - 123438, - null - ], - [ - "delim-token", - ".", - 123439, - 123439, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next-icon", - 123440, - 123465, - { - "value": "carousel-control-next-icon" - } - ], - [ - "comma-token", - ",", - 123466, - 123466, - null - ], - [ - "delim-token", - ".", - 123467, - 123467, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev-icon", - 123468, - 123493, - { - "value": "carousel-control-prev-icon" - } - ], - [ - "{-token", - "{", - 123494, - 123494, - null - ], - [ - "ident-token", - "display", - 123495, - 123501, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 123502, - 123502, - null - ], - [ - "ident-token", - "inline-block", - 123503, - 123514, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 123515, - 123515, - null - ], - [ - "ident-token", - "width", - 123516, - 123520, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 123521, - 123521, - null - ], - [ - "dimension-token", - "2rem", - 123522, - 123525, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 123526, - 123526, - null - ], - [ - "ident-token", - "height", - 123527, - 123532, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 123533, - 123533, - null - ], - [ - "dimension-token", - "2rem", - 123534, - 123537, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 123538, - 123538, - null - ], - [ - "ident-token", - "background-repeat", - 123539, - 123555, - { - "value": "background-repeat" - } - ], - [ - "colon-token", - ":", - 123556, - 123556, - null - ], - [ - "ident-token", - "no-repeat", - 123557, - 123565, - { - "value": "no-repeat" - } - ], - [ - "semicolon-token", - ";", - 123566, - 123566, - null - ], - [ - "ident-token", - "background-position", - 123567, - 123585, - { - "value": "background-position" - } - ], - [ - "colon-token", - ":", - 123586, - 123586, - null - ], - [ - "percentage-token", - "50%", - 123587, - 123589, - { - "value": 50 - } - ], - [ - "semicolon-token", - ";", - 123590, - 123590, - null - ], - [ - "ident-token", - "background-size", - 123591, - 123605, - { - "value": "background-size" - } - ], - [ - "colon-token", - ":", - 123606, - 123606, - null - ], - [ - "percentage-token", - "100%", - 123607, - 123610, - { - "value": 100 - } - ], - [ - "whitespace-token", - " ", - 123611, - 123611, - null - ], - [ - "percentage-token", - "100%", - 123612, - 123615, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 123616, - 123616, - null - ], - [ - "delim-token", - ".", - 123617, - 123617, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev-icon", - 123618, - 123643, - { - "value": "carousel-control-prev-icon" - } - ], - [ - "{-token", - "{", - 123644, - 123644, - null - ], - [ - "ident-token", - "background-image", - 123645, - 123660, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 123661, - 123661, - null - ], - [ - "function-token", - "url(", - 123662, - 123665, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\"", - 123666, - 123907, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 123908, - 123908, - null - ], - [ - "}-token", - "}", - 123909, - 123909, - null - ], - [ - "delim-token", - ".", - 123910, - 123910, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next-icon", - 123911, - 123936, - { - "value": "carousel-control-next-icon" - } - ], - [ - "{-token", - "{", - 123937, - 123937, - null - ], - [ - "ident-token", - "background-image", - 123938, - 123953, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 123954, - 123954, - null - ], - [ - "function-token", - "url(", - 123955, - 123958, - { - "value": "url" - } - ], - [ - "string-token", - "\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\"", - 123959, - 124201, - { - "value": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e" - } - ], - [ - ")-token", - ")", - 124202, - 124202, - null - ], - [ - "}-token", - "}", - 124203, - 124203, - null - ], - [ - "delim-token", - ".", - 124204, - 124204, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-indicators", - 124205, - 124223, - { - "value": "carousel-indicators" - } - ], - [ - "{-token", - "{", - 124224, - 124224, - null - ], - [ - "ident-token", - "position", - 124225, - 124232, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 124233, - 124233, - null - ], - [ - "ident-token", - "absolute", - 124234, - 124241, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 124242, - 124242, - null - ], - [ - "ident-token", - "right", - 124243, - 124247, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 124248, - 124248, - null - ], - [ - "number-token", - "0", - 124249, - 124249, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124250, - 124250, - null - ], - [ - "ident-token", - "bottom", - 124251, - 124256, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 124257, - 124257, - null - ], - [ - "number-token", - "0", - 124258, - 124258, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124259, - 124259, - null - ], - [ - "ident-token", - "left", - 124260, - 124263, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 124264, - 124264, - null - ], - [ - "number-token", - "0", - 124265, - 124265, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124266, - 124266, - null - ], - [ - "ident-token", - "z-index", - 124267, - 124273, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 124274, - 124274, - null - ], - [ - "number-token", - "2", - 124275, - 124275, - { - "value": 2, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124276, - 124276, - null - ], - [ - "ident-token", - "display", - 124277, - 124283, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 124284, - 124284, - null - ], - [ - "ident-token", - "flex", - 124285, - 124288, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 124289, - 124289, - null - ], - [ - "ident-token", - "justify-content", - 124290, - 124304, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 124305, - 124305, - null - ], - [ - "ident-token", - "center", - 124306, - 124311, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 124312, - 124312, - null - ], - [ - "ident-token", - "padding", - 124313, - 124319, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 124320, - 124320, - null - ], - [ - "number-token", - "0", - 124321, - 124321, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124322, - 124322, - null - ], - [ - "ident-token", - "margin-right", - 124323, - 124334, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 124335, - 124335, - null - ], - [ - "percentage-token", - "15%", - 124336, - 124338, - { - "value": 15 - } - ], - [ - "semicolon-token", - ";", - 124339, - 124339, - null - ], - [ - "ident-token", - "margin-bottom", - 124340, - 124352, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 124353, - 124353, - null - ], - [ - "dimension-token", - "1rem", - 124354, - 124357, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 124358, - 124358, - null - ], - [ - "ident-token", - "margin-left", - 124359, - 124369, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 124370, - 124370, - null - ], - [ - "percentage-token", - "15%", - 124371, - 124373, - { - "value": 15 - } - ], - [ - "semicolon-token", - ";", - 124374, - 124374, - null - ], - [ - "ident-token", - "list-style", - 124375, - 124384, - { - "value": "list-style" - } - ], - [ - "colon-token", - ":", - 124385, - 124385, - null - ], - [ - "ident-token", - "none", - 124386, - 124389, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 124390, - 124390, - null - ], - [ - "delim-token", - ".", - 124391, - 124391, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-indicators", - 124392, - 124410, - { - "value": "carousel-indicators" - } - ], - [ - "whitespace-token", - " ", - 124411, - 124411, - null - ], - [ - "[-token", - "[", - 124412, - 124412, - null - ], - [ - "ident-token", - "data-bs-target", - 124413, - 124426, - { - "value": "data-bs-target" - } - ], - [ - "]-token", - "]", - 124427, - 124427, - null - ], - [ - "{-token", - "{", - 124428, - 124428, - null - ], - [ - "ident-token", - "box-sizing", - 124429, - 124438, - { - "value": "box-sizing" - } - ], - [ - "colon-token", - ":", - 124439, - 124439, - null - ], - [ - "ident-token", - "content-box", - 124440, - 124450, - { - "value": "content-box" - } - ], - [ - "semicolon-token", - ";", - 124451, - 124451, - null - ], - [ - "ident-token", - "flex", - 124452, - 124455, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 124456, - 124456, - null - ], - [ - "number-token", - "0", - 124457, - 124457, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 124458, - 124458, - null - ], - [ - "number-token", - "1", - 124459, - 124459, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 124460, - 124460, - null - ], - [ - "ident-token", - "auto", - 124461, - 124464, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 124465, - 124465, - null - ], - [ - "ident-token", - "width", - 124466, - 124470, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 124471, - 124471, - null - ], - [ - "dimension-token", - "30px", - 124472, - 124475, - { - "value": 30, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 124476, - 124476, - null - ], - [ - "ident-token", - "height", - 124477, - 124482, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 124483, - 124483, - null - ], - [ - "dimension-token", - "3px", - 124484, - 124486, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 124487, - 124487, - null - ], - [ - "ident-token", - "padding", - 124488, - 124494, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 124495, - 124495, - null - ], - [ - "number-token", - "0", - 124496, - 124496, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124497, - 124497, - null - ], - [ - "ident-token", - "margin-right", - 124498, - 124509, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 124510, - 124510, - null - ], - [ - "dimension-token", - "3px", - 124511, - 124513, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 124514, - 124514, - null - ], - [ - "ident-token", - "margin-left", - 124515, - 124525, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 124526, - 124526, - null - ], - [ - "dimension-token", - "3px", - 124527, - 124529, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 124530, - 124530, - null - ], - [ - "ident-token", - "text-indent", - 124531, - 124541, - { - "value": "text-indent" - } - ], - [ - "colon-token", - ":", - 124542, - 124542, - null - ], - [ - "dimension-token", - "-999px", - 124543, - 124548, - { - "value": -999, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 124549, - 124549, - null - ], - [ - "ident-token", - "cursor", - 124550, - 124555, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 124556, - 124556, - null - ], - [ - "ident-token", - "pointer", - 124557, - 124563, - { - "value": "pointer" - } - ], - [ - "semicolon-token", - ";", - 124564, - 124564, - null - ], - [ - "ident-token", - "background-color", - 124565, - 124580, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 124581, - 124581, - null - ], - [ - "hash-token", - "#fff", - 124582, - 124585, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 124586, - 124586, - null - ], - [ - "ident-token", - "background-clip", - 124587, - 124601, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 124602, - 124602, - null - ], - [ - "ident-token", - "padding-box", - 124603, - 124613, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 124614, - 124614, - null - ], - [ - "ident-token", - "border", - 124615, - 124620, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 124621, - 124621, - null - ], - [ - "number-token", - "0", - 124622, - 124622, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 124623, - 124623, - null - ], - [ - "ident-token", - "border-top", - 124624, - 124633, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 124634, - 124634, - null - ], - [ - "dimension-token", - "10px", - 124635, - 124638, - { - "value": 10, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 124639, - 124639, - null - ], - [ - "ident-token", - "solid", - 124640, - 124644, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 124645, - 124645, - null - ], - [ - "ident-token", - "transparent", - 124646, - 124656, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 124657, - 124657, - null - ], - [ - "ident-token", - "border-bottom", - 124658, - 124670, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 124671, - 124671, - null - ], - [ - "dimension-token", - "10px", - 124672, - 124675, - { - "value": 10, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 124676, - 124676, - null - ], - [ - "ident-token", - "solid", - 124677, - 124681, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 124682, - 124682, - null - ], - [ - "ident-token", - "transparent", - 124683, - 124693, - { - "value": "transparent" - } - ], - [ - "semicolon-token", - ";", - 124694, - 124694, - null - ], - [ - "ident-token", - "opacity", - 124695, - 124701, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 124702, - 124702, - null - ], - [ - "number-token", - ".5", - 124703, - 124704, - { - "value": 0.5, - "type": "number" - } - ], - [ - "semicolon-token", - ";", - 124705, - 124705, - null - ], - [ - "ident-token", - "transition", - 124706, - 124715, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 124716, - 124716, - null - ], - [ - "ident-token", - "opacity", - 124717, - 124723, - { - "value": "opacity" - } - ], - [ - "whitespace-token", - " ", - 124724, - 124724, - null - ], - [ - "dimension-token", - ".6s", - 124725, - 124727, - { - "value": 0.6, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 124728, - 124728, - null - ], - [ - "ident-token", - "ease", - 124729, - 124732, - { - "value": "ease" - } - ], - [ - "}-token", - "}", - 124733, - 124733, - null - ], - [ - "at-keyword-token", - "@media", - 124734, - 124739, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 124740, - 124740, - null - ], - [ - "(-token", - "(", - 124741, - 124741, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 124742, - 124763, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 124764, - 124764, - null - ], - [ - "ident-token", - "reduce", - 124765, - 124770, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 124771, - 124771, - null - ], - [ - "{-token", - "{", - 124772, - 124772, - null - ], - [ - "delim-token", - ".", - 124773, - 124773, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-indicators", - 124774, - 124792, - { - "value": "carousel-indicators" - } - ], - [ - "whitespace-token", - " ", - 124793, - 124793, - null - ], - [ - "[-token", - "[", - 124794, - 124794, - null - ], - [ - "ident-token", - "data-bs-target", - 124795, - 124808, - { - "value": "data-bs-target" - } - ], - [ - "]-token", - "]", - 124809, - 124809, - null - ], - [ - "{-token", - "{", - 124810, - 124810, - null - ], - [ - "ident-token", - "transition", - 124811, - 124820, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 124821, - 124821, - null - ], - [ - "ident-token", - "none", - 124822, - 124825, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 124826, - 124826, - null - ], - [ - "}-token", - "}", - 124827, - 124827, - null - ], - [ - "delim-token", - ".", - 124828, - 124828, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-indicators", - 124829, - 124847, - { - "value": "carousel-indicators" - } - ], - [ - "whitespace-token", - " ", - 124848, - 124848, - null - ], - [ - "delim-token", - ".", - 124849, - 124849, - { - "value": "." - } - ], - [ - "ident-token", - "active", - 124850, - 124855, - { - "value": "active" - } - ], - [ - "{-token", - "{", - 124856, - 124856, - null - ], - [ - "ident-token", - "opacity", - 124857, - 124863, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 124864, - 124864, - null - ], - [ - "number-token", - "1", - 124865, - 124865, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 124866, - 124866, - null - ], - [ - "delim-token", - ".", - 124867, - 124867, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-caption", - 124868, - 124883, - { - "value": "carousel-caption" - } - ], - [ - "{-token", - "{", - 124884, - 124884, - null - ], - [ - "ident-token", - "position", - 124885, - 124892, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 124893, - 124893, - null - ], - [ - "ident-token", - "absolute", - 124894, - 124901, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 124902, - 124902, - null - ], - [ - "ident-token", - "right", - 124903, - 124907, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 124908, - 124908, - null - ], - [ - "percentage-token", - "15%", - 124909, - 124911, - { - "value": 15 - } - ], - [ - "semicolon-token", - ";", - 124912, - 124912, - null - ], - [ - "ident-token", - "bottom", - 124913, - 124918, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 124919, - 124919, - null - ], - [ - "dimension-token", - "1.25rem", - 124920, - 124926, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 124927, - 124927, - null - ], - [ - "ident-token", - "left", - 124928, - 124931, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 124932, - 124932, - null - ], - [ - "percentage-token", - "15%", - 124933, - 124935, - { - "value": 15 - } - ], - [ - "semicolon-token", - ";", - 124936, - 124936, - null - ], - [ - "ident-token", - "padding-top", - 124937, - 124947, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 124948, - 124948, - null - ], - [ - "dimension-token", - "1.25rem", - 124949, - 124955, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 124956, - 124956, - null - ], - [ - "ident-token", - "padding-bottom", - 124957, - 124970, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 124971, - 124971, - null - ], - [ - "dimension-token", - "1.25rem", - 124972, - 124978, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 124979, - 124979, - null - ], - [ - "ident-token", - "color", - 124980, - 124984, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 124985, - 124985, - null - ], - [ - "hash-token", - "#fff", - 124986, - 124989, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 124990, - 124990, - null - ], - [ - "ident-token", - "text-align", - 124991, - 125000, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 125001, - 125001, - null - ], - [ - "ident-token", - "center", - 125002, - 125007, - { - "value": "center" - } - ], - [ - "}-token", - "}", - 125008, - 125008, - null - ], - [ - "delim-token", - ".", - 125009, - 125009, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-dark", - 125010, - 125022, - { - "value": "carousel-dark" - } - ], - [ - "whitespace-token", - " ", - 125023, - 125023, - null - ], - [ - "delim-token", - ".", - 125024, - 125024, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-next-icon", - 125025, - 125050, - { - "value": "carousel-control-next-icon" - } - ], - [ - "comma-token", - ",", - 125051, - 125051, - null - ], - [ - "delim-token", - ".", - 125052, - 125052, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-dark", - 125053, - 125065, - { - "value": "carousel-dark" - } - ], - [ - "whitespace-token", - " ", - 125066, - 125066, - null - ], - [ - "delim-token", - ".", - 125067, - 125067, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-control-prev-icon", - 125068, - 125093, - { - "value": "carousel-control-prev-icon" - } - ], - [ - "{-token", - "{", - 125094, - 125094, - null - ], - [ - "ident-token", - "filter", - 125095, - 125100, - { - "value": "filter" - } - ], - [ - "colon-token", - ":", - 125101, - 125101, - null - ], - [ - "function-token", - "invert(", - 125102, - 125108, - { - "value": "invert" - } - ], - [ - "number-token", - "1", - 125109, - 125109, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 125110, - 125110, - null - ], - [ - "whitespace-token", - " ", - 125111, - 125111, - null - ], - [ - "function-token", - "grayscale(", - 125112, - 125121, - { - "value": "grayscale" - } - ], - [ - "number-token", - "100", - 125122, - 125124, - { - "value": 100, - "type": "integer" - } - ], - [ - ")-token", - ")", - 125125, - 125125, - null - ], - [ - "}-token", - "}", - 125126, - 125126, - null - ], - [ - "delim-token", - ".", - 125127, - 125127, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-dark", - 125128, - 125140, - { - "value": "carousel-dark" - } - ], - [ - "whitespace-token", - " ", - 125141, - 125141, - null - ], - [ - "delim-token", - ".", - 125142, - 125142, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-indicators", - 125143, - 125161, - { - "value": "carousel-indicators" - } - ], - [ - "whitespace-token", - " ", - 125162, - 125162, - null - ], - [ - "[-token", - "[", - 125163, - 125163, - null - ], - [ - "ident-token", - "data-bs-target", - 125164, - 125177, - { - "value": "data-bs-target" - } - ], - [ - "]-token", - "]", - 125178, - 125178, - null - ], - [ - "{-token", - "{", - 125179, - 125179, - null - ], - [ - "ident-token", - "background-color", - 125180, - 125195, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 125196, - 125196, - null - ], - [ - "hash-token", - "#000", - 125197, - 125200, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 125201, - 125201, - null - ], - [ - "delim-token", - ".", - 125202, - 125202, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-dark", - 125203, - 125215, - { - "value": "carousel-dark" - } - ], - [ - "whitespace-token", - " ", - 125216, - 125216, - null - ], - [ - "delim-token", - ".", - 125217, - 125217, - { - "value": "." - } - ], - [ - "ident-token", - "carousel-caption", - 125218, - 125233, - { - "value": "carousel-caption" - } - ], - [ - "{-token", - "{", - 125234, - 125234, - null - ], - [ - "ident-token", - "color", - 125235, - 125239, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 125240, - 125240, - null - ], - [ - "hash-token", - "#000", - 125241, - 125244, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 125245, - 125245, - null - ], - [ - "delim-token", - ".", - 125246, - 125246, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-border", - 125247, - 125260, - { - "value": "spinner-border" - } - ], - [ - "comma-token", - ",", - 125261, - 125261, - null - ], - [ - "delim-token", - ".", - 125262, - 125262, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-grow", - 125263, - 125274, - { - "value": "spinner-grow" - } - ], - [ - "{-token", - "{", - 125275, - 125275, - null - ], - [ - "ident-token", - "display", - 125276, - 125282, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 125283, - 125283, - null - ], - [ - "ident-token", - "inline-block", - 125284, - 125295, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 125296, - 125296, - null - ], - [ - "ident-token", - "width", - 125297, - 125301, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 125302, - 125302, - null - ], - [ - "function-token", - "var(", - 125303, - 125306, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-width", - 125307, - 125324, - { - "value": "--bs-spinner-width" - } - ], - [ - ")-token", - ")", - 125325, - 125325, - null - ], - [ - "semicolon-token", - ";", - 125326, - 125326, - null - ], - [ - "ident-token", - "height", - 125327, - 125332, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 125333, - 125333, - null - ], - [ - "function-token", - "var(", - 125334, - 125337, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-height", - 125338, - 125356, - { - "value": "--bs-spinner-height" - } - ], - [ - ")-token", - ")", - 125357, - 125357, - null - ], - [ - "semicolon-token", - ";", - 125358, - 125358, - null - ], - [ - "ident-token", - "vertical-align", - 125359, - 125372, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 125373, - 125373, - null - ], - [ - "function-token", - "var(", - 125374, - 125377, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-vertical-align", - 125378, - 125404, - { - "value": "--bs-spinner-vertical-align" - } - ], - [ - ")-token", - ")", - 125405, - 125405, - null - ], - [ - "semicolon-token", - ";", - 125406, - 125406, - null - ], - [ - "ident-token", - "border-radius", - 125407, - 125419, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 125420, - 125420, - null - ], - [ - "percentage-token", - "50%", - 125421, - 125423, - { - "value": 50 - } - ], - [ - "semicolon-token", - ";", - 125424, - 125424, - null - ], - [ - "ident-token", - "-webkit-animation", - 125425, - 125441, - { - "value": "-webkit-animation" - } - ], - [ - "colon-token", - ":", - 125442, - 125442, - null - ], - [ - "function-token", - "var(", - 125443, - 125446, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-animation-speed", - 125447, - 125474, - { - "value": "--bs-spinner-animation-speed" - } - ], - [ - ")-token", - ")", - 125475, - 125475, - null - ], - [ - "whitespace-token", - " ", - 125476, - 125476, - null - ], - [ - "ident-token", - "linear", - 125477, - 125482, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 125483, - 125483, - null - ], - [ - "ident-token", - "infinite", - 125484, - 125491, - { - "value": "infinite" - } - ], - [ - "whitespace-token", - " ", - 125492, - 125492, - null - ], - [ - "function-token", - "var(", - 125493, - 125496, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-animation-name", - 125497, - 125523, - { - "value": "--bs-spinner-animation-name" - } - ], - [ - ")-token", - ")", - 125524, - 125524, - null - ], - [ - "semicolon-token", - ";", - 125525, - 125525, - null - ], - [ - "ident-token", - "animation", - 125526, - 125534, - { - "value": "animation" - } - ], - [ - "colon-token", - ":", - 125535, - 125535, - null - ], - [ - "function-token", - "var(", - 125536, - 125539, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-animation-speed", - 125540, - 125567, - { - "value": "--bs-spinner-animation-speed" - } - ], - [ - ")-token", - ")", - 125568, - 125568, - null - ], - [ - "whitespace-token", - " ", - 125569, - 125569, - null - ], - [ - "ident-token", - "linear", - 125570, - 125575, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 125576, - 125576, - null - ], - [ - "ident-token", - "infinite", - 125577, - 125584, - { - "value": "infinite" - } - ], - [ - "whitespace-token", - " ", - 125585, - 125585, - null - ], - [ - "function-token", - "var(", - 125586, - 125589, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-animation-name", - 125590, - 125616, - { - "value": "--bs-spinner-animation-name" - } - ], - [ - ")-token", - ")", - 125617, - 125617, - null - ], - [ - "}-token", - "}", - 125618, - 125618, - null - ], - [ - "at-keyword-token", - "@-webkit-keyframes", - 125619, - 125636, - { - "value": "-webkit-keyframes" - } - ], - [ - "whitespace-token", - " ", - 125637, - 125637, - null - ], - [ - "ident-token", - "spinner-border", - 125638, - 125651, - { - "value": "spinner-border" - } - ], - [ - "{-token", - "{", - 125652, - 125652, - null - ], - [ - "ident-token", - "to", - 125653, - 125654, - { - "value": "to" - } - ], - [ - "{-token", - "{", - 125655, - 125655, - null - ], - [ - "ident-token", - "transform", - 125656, - 125664, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 125665, - 125665, - null - ], - [ - "function-token", - "rotate(", - 125666, - 125672, - { - "value": "rotate" - } - ], - [ - "dimension-token", - "360deg", - 125673, - 125678, - { - "value": 360, - "type": "integer", - "unit": "deg" - } - ], - [ - ")-token", - ")", - 125679, - 125679, - null - ], - [ - "}-token", - "}", - 125680, - 125680, - null - ], - [ - "}-token", - "}", - 125681, - 125681, - null - ], - [ - "at-keyword-token", - "@keyframes", - 125682, - 125691, - { - "value": "keyframes" - } - ], - [ - "whitespace-token", - " ", - 125692, - 125692, - null - ], - [ - "ident-token", - "spinner-border", - 125693, - 125706, - { - "value": "spinner-border" - } - ], - [ - "{-token", - "{", - 125707, - 125707, - null - ], - [ - "ident-token", - "to", - 125708, - 125709, - { - "value": "to" - } - ], - [ - "{-token", - "{", - 125710, - 125710, - null - ], - [ - "ident-token", - "transform", - 125711, - 125719, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 125720, - 125720, - null - ], - [ - "function-token", - "rotate(", - 125721, - 125727, - { - "value": "rotate" - } - ], - [ - "dimension-token", - "360deg", - 125728, - 125733, - { - "value": 360, - "type": "integer", - "unit": "deg" - } - ], - [ - ")-token", - ")", - 125734, - 125734, - null - ], - [ - "}-token", - "}", - 125735, - 125735, - null - ], - [ - "}-token", - "}", - 125736, - 125736, - null - ], - [ - "delim-token", - ".", - 125737, - 125737, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-border", - 125738, - 125751, - { - "value": "spinner-border" - } - ], - [ - "{-token", - "{", - 125752, - 125752, - null - ], - [ - "ident-token", - "--bs-spinner-width", - 125753, - 125770, - { - "value": "--bs-spinner-width" - } - ], - [ - "colon-token", - ":", - 125771, - 125771, - null - ], - [ - "dimension-token", - "2rem", - 125772, - 125775, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 125776, - 125776, - null - ], - [ - "ident-token", - "--bs-spinner-height", - 125777, - 125795, - { - "value": "--bs-spinner-height" - } - ], - [ - "colon-token", - ":", - 125796, - 125796, - null - ], - [ - "dimension-token", - "2rem", - 125797, - 125800, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 125801, - 125801, - null - ], - [ - "ident-token", - "--bs-spinner-vertical-align", - 125802, - 125828, - { - "value": "--bs-spinner-vertical-align" - } - ], - [ - "colon-token", - ":", - 125829, - 125829, - null - ], - [ - "dimension-token", - "-0.125em", - 125830, - 125837, - { - "value": -0.125, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 125838, - 125838, - null - ], - [ - "ident-token", - "--bs-spinner-border-width", - 125839, - 125863, - { - "value": "--bs-spinner-border-width" - } - ], - [ - "colon-token", - ":", - 125864, - 125864, - null - ], - [ - "dimension-token", - "0.25em", - 125865, - 125870, - { - "value": 0.25, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 125871, - 125871, - null - ], - [ - "ident-token", - "--bs-spinner-animation-speed", - 125872, - 125899, - { - "value": "--bs-spinner-animation-speed" - } - ], - [ - "colon-token", - ":", - 125900, - 125900, - null - ], - [ - "dimension-token", - "0.75s", - 125901, - 125905, - { - "value": 0.75, - "type": "number", - "unit": "s" - } - ], - [ - "semicolon-token", - ";", - 125906, - 125906, - null - ], - [ - "ident-token", - "--bs-spinner-animation-name", - 125907, - 125933, - { - "value": "--bs-spinner-animation-name" - } - ], - [ - "colon-token", - ":", - 125934, - 125934, - null - ], - [ - "ident-token", - "spinner-border", - 125935, - 125948, - { - "value": "spinner-border" - } - ], - [ - "semicolon-token", - ";", - 125949, - 125949, - null - ], - [ - "ident-token", - "border", - 125950, - 125955, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 125956, - 125956, - null - ], - [ - "function-token", - "var(", - 125957, - 125960, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-spinner-border-width", - 125961, - 125985, - { - "value": "--bs-spinner-border-width" - } - ], - [ - ")-token", - ")", - 125986, - 125986, - null - ], - [ - "whitespace-token", - " ", - 125987, - 125987, - null - ], - [ - "ident-token", - "solid", - 125988, - 125992, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 125993, - 125993, - null - ], - [ - "ident-token", - "currentcolor", - 125994, - 126005, - { - "value": "currentcolor" - } - ], - [ - "semicolon-token", - ";", - 126006, - 126006, - null - ], - [ - "ident-token", - "border-right-color", - 126007, - 126024, - { - "value": "border-right-color" - } - ], - [ - "colon-token", - ":", - 126025, - 126025, - null - ], - [ - "ident-token", - "transparent", - 126026, - 126036, - { - "value": "transparent" - } - ], - [ - "}-token", - "}", - 126037, - 126037, - null - ], - [ - "delim-token", - ".", - 126038, - 126038, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-border-sm", - 126039, - 126055, - { - "value": "spinner-border-sm" - } - ], - [ - "{-token", - "{", - 126056, - 126056, - null - ], - [ - "ident-token", - "--bs-spinner-width", - 126057, - 126074, - { - "value": "--bs-spinner-width" - } - ], - [ - "colon-token", - ":", - 126075, - 126075, - null - ], - [ - "dimension-token", - "1rem", - 126076, - 126079, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126080, - 126080, - null - ], - [ - "ident-token", - "--bs-spinner-height", - 126081, - 126099, - { - "value": "--bs-spinner-height" - } - ], - [ - "colon-token", - ":", - 126100, - 126100, - null - ], - [ - "dimension-token", - "1rem", - 126101, - 126104, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126105, - 126105, - null - ], - [ - "ident-token", - "--bs-spinner-border-width", - 126106, - 126130, - { - "value": "--bs-spinner-border-width" - } - ], - [ - "colon-token", - ":", - 126131, - 126131, - null - ], - [ - "dimension-token", - "0.2em", - 126132, - 126136, - { - "value": 0.2, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 126137, - 126137, - null - ], - [ - "at-keyword-token", - "@-webkit-keyframes", - 126138, - 126155, - { - "value": "-webkit-keyframes" - } - ], - [ - "whitespace-token", - " ", - 126156, - 126156, - null - ], - [ - "ident-token", - "spinner-grow", - 126157, - 126168, - { - "value": "spinner-grow" - } - ], - [ - "{-token", - "{", - 126169, - 126169, - null - ], - [ - "percentage-token", - "0%", - 126170, - 126171, - { - "value": 0 - } - ], - [ - "{-token", - "{", - 126172, - 126172, - null - ], - [ - "ident-token", - "transform", - 126173, - 126181, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 126182, - 126182, - null - ], - [ - "function-token", - "scale(", - 126183, - 126188, - { - "value": "scale" - } - ], - [ - "number-token", - "0", - 126189, - 126189, - { - "value": 0, - "type": "integer" - } - ], - [ - ")-token", - ")", - 126190, - 126190, - null - ], - [ - "}-token", - "}", - 126191, - 126191, - null - ], - [ - "percentage-token", - "50%", - 126192, - 126194, - { - "value": 50 - } - ], - [ - "{-token", - "{", - 126195, - 126195, - null - ], - [ - "ident-token", - "opacity", - 126196, - 126202, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 126203, - 126203, - null - ], - [ - "number-token", - "1", - 126204, - 126204, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 126205, - 126205, - null - ], - [ - "ident-token", - "transform", - 126206, - 126214, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 126215, - 126215, - null - ], - [ - "ident-token", - "none", - 126216, - 126219, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 126220, - 126220, - null - ], - [ - "}-token", - "}", - 126221, - 126221, - null - ], - [ - "at-keyword-token", - "@keyframes", - 126222, - 126231, - { - "value": "keyframes" - } - ], - [ - "whitespace-token", - " ", - 126232, - 126232, - null - ], - [ - "ident-token", - "spinner-grow", - 126233, - 126244, - { - "value": "spinner-grow" - } - ], - [ - "{-token", - "{", - 126245, - 126245, - null - ], - [ - "percentage-token", - "0%", - 126246, - 126247, - { - "value": 0 - } - ], - [ - "{-token", - "{", - 126248, - 126248, - null - ], - [ - "ident-token", - "transform", - 126249, - 126257, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 126258, - 126258, - null - ], - [ - "function-token", - "scale(", - 126259, - 126264, - { - "value": "scale" - } - ], - [ - "number-token", - "0", - 126265, - 126265, - { - "value": 0, - "type": "integer" - } - ], - [ - ")-token", - ")", - 126266, - 126266, - null - ], - [ - "}-token", - "}", - 126267, - 126267, - null - ], - [ - "percentage-token", - "50%", - 126268, - 126270, - { - "value": 50 - } - ], - [ - "{-token", - "{", - 126271, - 126271, - null - ], - [ - "ident-token", - "opacity", - 126272, - 126278, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 126279, - 126279, - null - ], - [ - "number-token", - "1", - 126280, - 126280, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 126281, - 126281, - null - ], - [ - "ident-token", - "transform", - 126282, - 126290, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 126291, - 126291, - null - ], - [ - "ident-token", - "none", - 126292, - 126295, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 126296, - 126296, - null - ], - [ - "}-token", - "}", - 126297, - 126297, - null - ], - [ - "delim-token", - ".", - 126298, - 126298, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-grow", - 126299, - 126310, - { - "value": "spinner-grow" - } - ], - [ - "{-token", - "{", - 126311, - 126311, - null - ], - [ - "ident-token", - "--bs-spinner-width", - 126312, - 126329, - { - "value": "--bs-spinner-width" - } - ], - [ - "colon-token", - ":", - 126330, - 126330, - null - ], - [ - "dimension-token", - "2rem", - 126331, - 126334, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126335, - 126335, - null - ], - [ - "ident-token", - "--bs-spinner-height", - 126336, - 126354, - { - "value": "--bs-spinner-height" - } - ], - [ - "colon-token", - ":", - 126355, - 126355, - null - ], - [ - "dimension-token", - "2rem", - 126356, - 126359, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126360, - 126360, - null - ], - [ - "ident-token", - "--bs-spinner-vertical-align", - 126361, - 126387, - { - "value": "--bs-spinner-vertical-align" - } - ], - [ - "colon-token", - ":", - 126388, - 126388, - null - ], - [ - "dimension-token", - "-0.125em", - 126389, - 126396, - { - "value": -0.125, - "type": "number", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 126397, - 126397, - null - ], - [ - "ident-token", - "--bs-spinner-animation-speed", - 126398, - 126425, - { - "value": "--bs-spinner-animation-speed" - } - ], - [ - "colon-token", - ":", - 126426, - 126426, - null - ], - [ - "dimension-token", - "0.75s", - 126427, - 126431, - { - "value": 0.75, - "type": "number", - "unit": "s" - } - ], - [ - "semicolon-token", - ";", - 126432, - 126432, - null - ], - [ - "ident-token", - "--bs-spinner-animation-name", - 126433, - 126459, - { - "value": "--bs-spinner-animation-name" - } - ], - [ - "colon-token", - ":", - 126460, - 126460, - null - ], - [ - "ident-token", - "spinner-grow", - 126461, - 126472, - { - "value": "spinner-grow" - } - ], - [ - "semicolon-token", - ";", - 126473, - 126473, - null - ], - [ - "ident-token", - "background-color", - 126474, - 126489, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 126490, - 126490, - null - ], - [ - "ident-token", - "currentcolor", - 126491, - 126502, - { - "value": "currentcolor" - } - ], - [ - "semicolon-token", - ";", - 126503, - 126503, - null - ], - [ - "ident-token", - "opacity", - 126504, - 126510, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 126511, - 126511, - null - ], - [ - "number-token", - "0", - 126512, - 126512, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 126513, - 126513, - null - ], - [ - "delim-token", - ".", - 126514, - 126514, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-grow-sm", - 126515, - 126529, - { - "value": "spinner-grow-sm" - } - ], - [ - "{-token", - "{", - 126530, - 126530, - null - ], - [ - "ident-token", - "--bs-spinner-width", - 126531, - 126548, - { - "value": "--bs-spinner-width" - } - ], - [ - "colon-token", - ":", - 126549, - 126549, - null - ], - [ - "dimension-token", - "1rem", - 126550, - 126553, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126554, - 126554, - null - ], - [ - "ident-token", - "--bs-spinner-height", - 126555, - 126573, - { - "value": "--bs-spinner-height" - } - ], - [ - "colon-token", - ":", - 126574, - 126574, - null - ], - [ - "dimension-token", - "1rem", - 126575, - 126578, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "}-token", - "}", - 126579, - 126579, - null - ], - [ - "at-keyword-token", - "@media", - 126580, - 126585, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 126586, - 126586, - null - ], - [ - "(-token", - "(", - 126587, - 126587, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 126588, - 126609, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 126610, - 126610, - null - ], - [ - "ident-token", - "reduce", - 126611, - 126616, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 126617, - 126617, - null - ], - [ - "{-token", - "{", - 126618, - 126618, - null - ], - [ - "delim-token", - ".", - 126619, - 126619, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-border", - 126620, - 126633, - { - "value": "spinner-border" - } - ], - [ - "comma-token", - ",", - 126634, - 126634, - null - ], - [ - "delim-token", - ".", - 126635, - 126635, - { - "value": "." - } - ], - [ - "ident-token", - "spinner-grow", - 126636, - 126647, - { - "value": "spinner-grow" - } - ], - [ - "{-token", - "{", - 126648, - 126648, - null - ], - [ - "ident-token", - "--bs-spinner-animation-speed", - 126649, - 126676, - { - "value": "--bs-spinner-animation-speed" - } - ], - [ - "colon-token", - ":", - 126677, - 126677, - null - ], - [ - "dimension-token", - "1.5s", - 126678, - 126681, - { - "value": 1.5, - "type": "number", - "unit": "s" - } - ], - [ - "}-token", - "}", - 126682, - 126682, - null - ], - [ - "}-token", - "}", - 126683, - 126683, - null - ], - [ - "delim-token", - ".", - 126684, - 126684, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 126685, - 126693, - { - "value": "offcanvas" - } - ], - [ - "comma-token", - ",", - 126694, - 126694, - null - ], - [ - "delim-token", - ".", - 126695, - 126695, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 126696, - 126707, - { - "value": "offcanvas-lg" - } - ], - [ - "comma-token", - ",", - 126708, - 126708, - null - ], - [ - "delim-token", - ".", - 126709, - 126709, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 126710, - 126721, - { - "value": "offcanvas-md" - } - ], - [ - "comma-token", - ",", - 126722, - 126722, - null - ], - [ - "delim-token", - ".", - 126723, - 126723, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 126724, - 126735, - { - "value": "offcanvas-sm" - } - ], - [ - "comma-token", - ",", - 126736, - 126736, - null - ], - [ - "delim-token", - ".", - 126737, - 126737, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 126738, - 126749, - { - "value": "offcanvas-xl" - } - ], - [ - "comma-token", - ",", - 126750, - 126750, - null - ], - [ - "delim-token", - ".", - 126751, - 126751, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 126752, - 126764, - { - "value": "offcanvas-xxl" - } - ], - [ - "{-token", - "{", - 126765, - 126765, - null - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 126766, - 126786, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - "colon-token", - ":", - 126787, - 126787, - null - ], - [ - "number-token", - "1045", - 126788, - 126791, - { - "value": 1045, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 126792, - 126792, - null - ], - [ - "ident-token", - "--bs-offcanvas-width", - 126793, - 126812, - { - "value": "--bs-offcanvas-width" - } - ], - [ - "colon-token", - ":", - 126813, - 126813, - null - ], - [ - "dimension-token", - "400px", - 126814, - 126818, - { - "value": 400, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 126819, - 126819, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 126820, - 126840, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 126841, - 126841, - null - ], - [ - "dimension-token", - "30vh", - 126842, - 126845, - { - "value": 30, - "type": "integer", - "unit": "vh" - } - ], - [ - "semicolon-token", - ";", - 126846, - 126846, - null - ], - [ - "ident-token", - "--bs-offcanvas-padding-x", - 126847, - 126870, - { - "value": "--bs-offcanvas-padding-x" - } - ], - [ - "colon-token", - ":", - 126871, - 126871, - null - ], - [ - "dimension-token", - "1rem", - 126872, - 126875, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126876, - 126876, - null - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 126877, - 126900, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - "colon-token", - ":", - 126901, - 126901, - null - ], - [ - "dimension-token", - "1rem", - 126902, - 126905, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "semicolon-token", - ";", - 126906, - 126906, - null - ], - [ - "ident-token", - "--bs-offcanvas-color", - 126907, - 126926, - { - "value": "--bs-offcanvas-color" - } - ], - [ - "colon-token", - ":", - 126927, - 126927, - null - ], - [ - "whitespace-token", - " ", - 126928, - 126928, - null - ], - [ - "semicolon-token", - ";", - 126929, - 126929, - null - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 126930, - 126946, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - "colon-token", - ":", - 126947, - 126947, - null - ], - [ - "hash-token", - "#fff", - 126948, - 126951, - { - "value": "fff", - "type": "id" - } - ], - [ - "semicolon-token", - ";", - 126952, - 126952, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 126953, - 126979, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 126980, - 126980, - null - ], - [ - "dimension-token", - "1px", - 126981, - 126983, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 126984, - 126984, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 126985, - 127011, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - "colon-token", - ":", - 127012, - 127012, - null - ], - [ - "function-token", - "var(", - 127013, - 127016, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color-translucent", - 127017, - 127045, - { - "value": "--bs-border-color-translucent" - } - ], - [ - ")-token", - ")", - 127046, - 127046, - null - ], - [ - "semicolon-token", - ";", - 127047, - 127047, - null - ], - [ - "ident-token", - "--bs-offcanvas-box-shadow", - 127048, - 127072, - { - "value": "--bs-offcanvas-box-shadow" - } - ], - [ - "colon-token", - ":", - 127073, - 127073, - null - ], - [ - "number-token", - "0", - 127074, - 127074, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 127075, - 127075, - null - ], - [ - "dimension-token", - "0.125rem", - 127076, - 127083, - { - "value": 0.125, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 127084, - 127084, - null - ], - [ - "dimension-token", - "0.25rem", - 127085, - 127091, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 127092, - 127092, - null - ], - [ - "function-token", - "rgba(", - 127093, - 127097, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 127098, - 127098, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 127099, - 127099, - null - ], - [ - "whitespace-token", - " ", - 127100, - 127100, - null - ], - [ - "number-token", - "0", - 127101, - 127101, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 127102, - 127102, - null - ], - [ - "whitespace-token", - " ", - 127103, - 127103, - null - ], - [ - "number-token", - "0", - 127104, - 127104, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 127105, - 127105, - null - ], - [ - "whitespace-token", - " ", - 127106, - 127106, - null - ], - [ - "number-token", - "0.075", - 127107, - 127111, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 127112, - 127112, - null - ], - [ - "}-token", - "}", - 127113, - 127113, - null - ], - [ - "at-keyword-token", - "@media", - 127114, - 127119, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 127120, - 127120, - null - ], - [ - "(-token", - "(", - 127121, - 127121, - null - ], - [ - "ident-token", - "max-width", - 127122, - 127130, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127131, - 127131, - null - ], - [ - "dimension-token", - "575.98px", - 127132, - 127139, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 127140, - 127140, - null - ], - [ - "{-token", - "{", - 127141, - 127141, - null - ], - [ - "delim-token", - ".", - 127142, - 127142, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 127143, - 127154, - { - "value": "offcanvas-sm" - } - ], - [ - "{-token", - "{", - 127155, - 127155, - null - ], - [ - "ident-token", - "position", - 127156, - 127163, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 127164, - 127164, - null - ], - [ - "ident-token", - "fixed", - 127165, - 127169, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 127170, - 127170, - null - ], - [ - "ident-token", - "bottom", - 127171, - 127176, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 127177, - 127177, - null - ], - [ - "number-token", - "0", - 127178, - 127178, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127179, - 127179, - null - ], - [ - "ident-token", - "z-index", - 127180, - 127186, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 127187, - 127187, - null - ], - [ - "function-token", - "var(", - 127188, - 127191, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 127192, - 127212, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 127213, - 127213, - null - ], - [ - "semicolon-token", - ";", - 127214, - 127214, - null - ], - [ - "ident-token", - "display", - 127215, - 127221, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 127222, - 127222, - null - ], - [ - "ident-token", - "flex", - 127223, - 127226, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 127227, - 127227, - null - ], - [ - "ident-token", - "flex-direction", - 127228, - 127241, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 127242, - 127242, - null - ], - [ - "ident-token", - "column", - 127243, - 127248, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 127249, - 127249, - null - ], - [ - "ident-token", - "max-width", - 127250, - 127258, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127259, - 127259, - null - ], - [ - "percentage-token", - "100%", - 127260, - 127263, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 127264, - 127264, - null - ], - [ - "ident-token", - "color", - 127265, - 127269, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 127270, - 127270, - null - ], - [ - "function-token", - "var(", - 127271, - 127274, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 127275, - 127294, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 127295, - 127295, - null - ], - [ - "semicolon-token", - ";", - 127296, - 127296, - null - ], - [ - "ident-token", - "visibility", - 127297, - 127306, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 127307, - 127307, - null - ], - [ - "ident-token", - "hidden", - 127308, - 127313, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 127314, - 127314, - null - ], - [ - "ident-token", - "background-color", - 127315, - 127330, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 127331, - 127331, - null - ], - [ - "function-token", - "var(", - 127332, - 127335, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 127336, - 127352, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 127353, - 127353, - null - ], - [ - "semicolon-token", - ";", - 127354, - 127354, - null - ], - [ - "ident-token", - "background-clip", - 127355, - 127369, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 127370, - 127370, - null - ], - [ - "ident-token", - "padding-box", - 127371, - 127381, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 127382, - 127382, - null - ], - [ - "ident-token", - "outline", - 127383, - 127389, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 127390, - 127390, - null - ], - [ - "number-token", - "0", - 127391, - 127391, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127392, - 127392, - null - ], - [ - "ident-token", - "transition", - 127393, - 127402, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 127403, - 127403, - null - ], - [ - "ident-token", - "transform", - 127404, - 127412, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 127413, - 127413, - null - ], - [ - "dimension-token", - ".3s", - 127414, - 127416, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 127417, - 127417, - null - ], - [ - "ident-token", - "ease-in-out", - 127418, - 127428, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 127429, - 127429, - null - ], - [ - "}-token", - "}", - 127430, - 127430, - null - ], - [ - "at-keyword-token", - "@media", - 127431, - 127436, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 127437, - 127437, - null - ], - [ - "(-token", - "(", - 127438, - 127438, - null - ], - [ - "ident-token", - "max-width", - 127439, - 127447, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127448, - 127448, - null - ], - [ - "dimension-token", - "575.98px", - 127449, - 127456, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 127457, - 127457, - null - ], - [ - "whitespace-token", - " ", - 127458, - 127458, - null - ], - [ - "ident-token", - "and", - 127459, - 127461, - { - "value": "and" - } - ], - [ - "whitespace-token", - " ", - 127462, - 127462, - null - ], - [ - "(-token", - "(", - 127463, - 127463, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 127464, - 127485, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 127486, - 127486, - null - ], - [ - "ident-token", - "reduce", - 127487, - 127492, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 127493, - 127493, - null - ], - [ - "{-token", - "{", - 127494, - 127494, - null - ], - [ - "delim-token", - ".", - 127495, - 127495, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 127496, - 127507, - { - "value": "offcanvas-sm" - } - ], - [ - "{-token", - "{", - 127508, - 127508, - null - ], - [ - "ident-token", - "transition", - 127509, - 127518, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 127519, - 127519, - null - ], - [ - "ident-token", - "none", - 127520, - 127523, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 127524, - 127524, - null - ], - [ - "}-token", - "}", - 127525, - 127525, - null - ], - [ - "at-keyword-token", - "@media", - 127526, - 127531, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 127532, - 127532, - null - ], - [ - "(-token", - "(", - 127533, - 127533, - null - ], - [ - "ident-token", - "max-width", - 127534, - 127542, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127543, - 127543, - null - ], - [ - "dimension-token", - "575.98px", - 127544, - 127551, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 127552, - 127552, - null - ], - [ - "{-token", - "{", - 127553, - 127553, - null - ], - [ - "delim-token", - ".", - 127554, - 127554, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 127555, - 127566, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 127567, - 127567, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 127568, - 127582, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 127583, - 127583, - null - ], - [ - "ident-token", - "top", - 127584, - 127586, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 127587, - 127587, - null - ], - [ - "number-token", - "0", - 127588, - 127588, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127589, - 127589, - null - ], - [ - "ident-token", - "left", - 127590, - 127593, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 127594, - 127594, - null - ], - [ - "number-token", - "0", - 127595, - 127595, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127596, - 127596, - null - ], - [ - "ident-token", - "width", - 127597, - 127601, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 127602, - 127602, - null - ], - [ - "function-token", - "var(", - 127603, - 127606, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 127607, - 127626, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 127627, - 127627, - null - ], - [ - "semicolon-token", - ";", - 127628, - 127628, - null - ], - [ - "ident-token", - "border-right", - 127629, - 127640, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 127641, - 127641, - null - ], - [ - "function-token", - "var(", - 127642, - 127645, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 127646, - 127672, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 127673, - 127673, - null - ], - [ - "whitespace-token", - " ", - 127674, - 127674, - null - ], - [ - "ident-token", - "solid", - 127675, - 127679, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 127680, - 127680, - null - ], - [ - "function-token", - "var(", - 127681, - 127684, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 127685, - 127711, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 127712, - 127712, - null - ], - [ - "semicolon-token", - ";", - 127713, - 127713, - null - ], - [ - "ident-token", - "transform", - 127714, - 127722, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 127723, - 127723, - null - ], - [ - "function-token", - "translateX(", - 127724, - 127734, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 127735, - 127739, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 127740, - 127740, - null - ], - [ - "}-token", - "}", - 127741, - 127741, - null - ], - [ - "}-token", - "}", - 127742, - 127742, - null - ], - [ - "at-keyword-token", - "@media", - 127743, - 127748, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 127749, - 127749, - null - ], - [ - "(-token", - "(", - 127750, - 127750, - null - ], - [ - "ident-token", - "max-width", - 127751, - 127759, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127760, - 127760, - null - ], - [ - "dimension-token", - "575.98px", - 127761, - 127768, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 127769, - 127769, - null - ], - [ - "{-token", - "{", - 127770, - 127770, - null - ], - [ - "delim-token", - ".", - 127771, - 127771, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 127772, - 127783, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 127784, - 127784, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 127785, - 127797, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 127798, - 127798, - null - ], - [ - "ident-token", - "top", - 127799, - 127801, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 127802, - 127802, - null - ], - [ - "number-token", - "0", - 127803, - 127803, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127804, - 127804, - null - ], - [ - "ident-token", - "right", - 127805, - 127809, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 127810, - 127810, - null - ], - [ - "number-token", - "0", - 127811, - 127811, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 127812, - 127812, - null - ], - [ - "ident-token", - "width", - 127813, - 127817, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 127818, - 127818, - null - ], - [ - "function-token", - "var(", - 127819, - 127822, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 127823, - 127842, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 127843, - 127843, - null - ], - [ - "semicolon-token", - ";", - 127844, - 127844, - null - ], - [ - "ident-token", - "border-left", - 127845, - 127855, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 127856, - 127856, - null - ], - [ - "function-token", - "var(", - 127857, - 127860, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 127861, - 127887, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 127888, - 127888, - null - ], - [ - "whitespace-token", - " ", - 127889, - 127889, - null - ], - [ - "ident-token", - "solid", - 127890, - 127894, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 127895, - 127895, - null - ], - [ - "function-token", - "var(", - 127896, - 127899, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 127900, - 127926, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 127927, - 127927, - null - ], - [ - "semicolon-token", - ";", - 127928, - 127928, - null - ], - [ - "ident-token", - "transform", - 127929, - 127937, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 127938, - 127938, - null - ], - [ - "function-token", - "translateX(", - 127939, - 127949, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 127950, - 127953, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 127954, - 127954, - null - ], - [ - "}-token", - "}", - 127955, - 127955, - null - ], - [ - "}-token", - "}", - 127956, - 127956, - null - ], - [ - "at-keyword-token", - "@media", - 127957, - 127962, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 127963, - 127963, - null - ], - [ - "(-token", - "(", - 127964, - 127964, - null - ], - [ - "ident-token", - "max-width", - 127965, - 127973, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 127974, - 127974, - null - ], - [ - "dimension-token", - "575.98px", - 127975, - 127982, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 127983, - 127983, - null - ], - [ - "{-token", - "{", - 127984, - 127984, - null - ], - [ - "delim-token", - ".", - 127985, - 127985, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 127986, - 127997, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 127998, - 127998, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 127999, - 128011, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 128012, - 128012, - null - ], - [ - "ident-token", - "top", - 128013, - 128015, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 128016, - 128016, - null - ], - [ - "number-token", - "0", - 128017, - 128017, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128018, - 128018, - null - ], - [ - "ident-token", - "right", - 128019, - 128023, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 128024, - 128024, - null - ], - [ - "number-token", - "0", - 128025, - 128025, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128026, - 128026, - null - ], - [ - "ident-token", - "left", - 128027, - 128030, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 128031, - 128031, - null - ], - [ - "number-token", - "0", - 128032, - 128032, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128033, - 128033, - null - ], - [ - "ident-token", - "height", - 128034, - 128039, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 128040, - 128040, - null - ], - [ - "function-token", - "var(", - 128041, - 128044, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 128045, - 128065, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 128066, - 128066, - null - ], - [ - "semicolon-token", - ";", - 128067, - 128067, - null - ], - [ - "ident-token", - "max-height", - 128068, - 128077, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 128078, - 128078, - null - ], - [ - "percentage-token", - "100%", - 128079, - 128082, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 128083, - 128083, - null - ], - [ - "ident-token", - "border-bottom", - 128084, - 128096, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 128097, - 128097, - null - ], - [ - "function-token", - "var(", - 128098, - 128101, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 128102, - 128128, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 128129, - 128129, - null - ], - [ - "whitespace-token", - " ", - 128130, - 128130, - null - ], - [ - "ident-token", - "solid", - 128131, - 128135, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 128136, - 128136, - null - ], - [ - "function-token", - "var(", - 128137, - 128140, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 128141, - 128167, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 128168, - 128168, - null - ], - [ - "semicolon-token", - ";", - 128169, - 128169, - null - ], - [ - "ident-token", - "transform", - 128170, - 128178, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 128179, - 128179, - null - ], - [ - "function-token", - "translateY(", - 128180, - 128190, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 128191, - 128195, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 128196, - 128196, - null - ], - [ - "}-token", - "}", - 128197, - 128197, - null - ], - [ - "}-token", - "}", - 128198, - 128198, - null - ], - [ - "at-keyword-token", - "@media", - 128199, - 128204, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 128205, - 128205, - null - ], - [ - "(-token", - "(", - 128206, - 128206, - null - ], - [ - "ident-token", - "max-width", - 128207, - 128215, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 128216, - 128216, - null - ], - [ - "dimension-token", - "575.98px", - 128217, - 128224, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 128225, - 128225, - null - ], - [ - "{-token", - "{", - 128226, - 128226, - null - ], - [ - "delim-token", - ".", - 128227, - 128227, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128228, - 128239, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128240, - 128240, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 128241, - 128256, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 128257, - 128257, - null - ], - [ - "ident-token", - "right", - 128258, - 128262, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 128263, - 128263, - null - ], - [ - "number-token", - "0", - 128264, - 128264, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128265, - 128265, - null - ], - [ - "ident-token", - "left", - 128266, - 128269, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 128270, - 128270, - null - ], - [ - "number-token", - "0", - 128271, - 128271, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128272, - 128272, - null - ], - [ - "ident-token", - "height", - 128273, - 128278, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 128279, - 128279, - null - ], - [ - "function-token", - "var(", - 128280, - 128283, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 128284, - 128304, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 128305, - 128305, - null - ], - [ - "semicolon-token", - ";", - 128306, - 128306, - null - ], - [ - "ident-token", - "max-height", - 128307, - 128316, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 128317, - 128317, - null - ], - [ - "percentage-token", - "100%", - 128318, - 128321, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 128322, - 128322, - null - ], - [ - "ident-token", - "border-top", - 128323, - 128332, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 128333, - 128333, - null - ], - [ - "function-token", - "var(", - 128334, - 128337, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 128338, - 128364, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 128365, - 128365, - null - ], - [ - "whitespace-token", - " ", - 128366, - 128366, - null - ], - [ - "ident-token", - "solid", - 128367, - 128371, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 128372, - 128372, - null - ], - [ - "function-token", - "var(", - 128373, - 128376, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 128377, - 128403, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 128404, - 128404, - null - ], - [ - "semicolon-token", - ";", - 128405, - 128405, - null - ], - [ - "ident-token", - "transform", - 128406, - 128414, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 128415, - 128415, - null - ], - [ - "function-token", - "translateY(", - 128416, - 128426, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 128427, - 128430, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 128431, - 128431, - null - ], - [ - "}-token", - "}", - 128432, - 128432, - null - ], - [ - "}-token", - "}", - 128433, - 128433, - null - ], - [ - "at-keyword-token", - "@media", - 128434, - 128439, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 128440, - 128440, - null - ], - [ - "(-token", - "(", - 128441, - 128441, - null - ], - [ - "ident-token", - "max-width", - 128442, - 128450, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 128451, - 128451, - null - ], - [ - "dimension-token", - "575.98px", - 128452, - 128459, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 128460, - 128460, - null - ], - [ - "{-token", - "{", - 128461, - 128461, - null - ], - [ - "delim-token", - ".", - 128462, - 128462, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128463, - 128474, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128475, - 128475, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 128476, - 128479, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 128480, - 128480, - null - ], - [ - "function-token", - "not(", - 128481, - 128484, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 128485, - 128485, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 128486, - 128491, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 128492, - 128492, - null - ], - [ - "comma-token", - ",", - 128493, - 128493, - null - ], - [ - "delim-token", - ".", - 128494, - 128494, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128495, - 128506, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128507, - 128507, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 128508, - 128514, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 128515, - 128515, - null - ], - [ - "ident-token", - "transform", - 128516, - 128524, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 128525, - 128525, - null - ], - [ - "ident-token", - "none", - 128526, - 128529, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 128530, - 128530, - null - ], - [ - "}-token", - "}", - 128531, - 128531, - null - ], - [ - "at-keyword-token", - "@media", - 128532, - 128537, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 128538, - 128538, - null - ], - [ - "(-token", - "(", - 128539, - 128539, - null - ], - [ - "ident-token", - "max-width", - 128540, - 128548, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 128549, - 128549, - null - ], - [ - "dimension-token", - "575.98px", - 128550, - 128557, - { - "value": 575.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 128558, - 128558, - null - ], - [ - "{-token", - "{", - 128559, - 128559, - null - ], - [ - "delim-token", - ".", - 128560, - 128560, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128561, - 128572, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128573, - 128573, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 128574, - 128579, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 128580, - 128580, - null - ], - [ - "delim-token", - ".", - 128581, - 128581, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128582, - 128593, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128594, - 128594, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 128595, - 128598, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 128599, - 128599, - null - ], - [ - "delim-token", - ".", - 128600, - 128600, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128601, - 128612, - { - "value": "offcanvas-sm" - } - ], - [ - "delim-token", - ".", - 128613, - 128613, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 128614, - 128620, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 128621, - 128621, - null - ], - [ - "ident-token", - "visibility", - 128622, - 128631, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 128632, - 128632, - null - ], - [ - "ident-token", - "visible", - 128633, - 128639, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 128640, - 128640, - null - ], - [ - "}-token", - "}", - 128641, - 128641, - null - ], - [ - "at-keyword-token", - "@media", - 128642, - 128647, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 128648, - 128648, - null - ], - [ - "(-token", - "(", - 128649, - 128649, - null - ], - [ - "ident-token", - "min-width", - 128650, - 128658, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 128659, - 128659, - null - ], - [ - "dimension-token", - "576px", - 128660, - 128664, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 128665, - 128665, - null - ], - [ - "{-token", - "{", - 128666, - 128666, - null - ], - [ - "delim-token", - ".", - 128667, - 128667, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128668, - 128679, - { - "value": "offcanvas-sm" - } - ], - [ - "{-token", - "{", - 128680, - 128680, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 128681, - 128701, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 128702, - 128702, - null - ], - [ - "ident-token", - "auto", - 128703, - 128706, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 128707, - 128707, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 128708, - 128734, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 128735, - 128735, - null - ], - [ - "number-token", - "0", - 128736, - 128736, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128737, - 128737, - null - ], - [ - "ident-token", - "background-color", - 128738, - 128753, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 128754, - 128754, - null - ], - [ - "ident-token", - "transparent", - 128755, - 128765, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 128766, - 128766, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 128767, - 128775, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 128776, - 128776, - null - ], - [ - "delim-token", - ".", - 128777, - 128777, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128778, - 128789, - { - "value": "offcanvas-sm" - } - ], - [ - "whitespace-token", - " ", - 128790, - 128790, - null - ], - [ - "delim-token", - ".", - 128791, - 128791, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 128792, - 128807, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 128808, - 128808, - null - ], - [ - "ident-token", - "display", - 128809, - 128815, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 128816, - 128816, - null - ], - [ - "ident-token", - "none", - 128817, - 128820, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 128821, - 128821, - null - ], - [ - "delim-token", - ".", - 128822, - 128822, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-sm", - 128823, - 128834, - { - "value": "offcanvas-sm" - } - ], - [ - "whitespace-token", - " ", - 128835, - 128835, - null - ], - [ - "delim-token", - ".", - 128836, - 128836, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 128837, - 128850, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 128851, - 128851, - null - ], - [ - "ident-token", - "display", - 128852, - 128858, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 128859, - 128859, - null - ], - [ - "ident-token", - "flex", - 128860, - 128863, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 128864, - 128864, - null - ], - [ - "ident-token", - "flex-grow", - 128865, - 128873, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 128874, - 128874, - null - ], - [ - "number-token", - "0", - 128875, - 128875, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128876, - 128876, - null - ], - [ - "ident-token", - "padding", - 128877, - 128883, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 128884, - 128884, - null - ], - [ - "number-token", - "0", - 128885, - 128885, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 128886, - 128886, - null - ], - [ - "ident-token", - "overflow-y", - 128887, - 128896, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 128897, - 128897, - null - ], - [ - "ident-token", - "visible", - 128898, - 128904, - { - "value": "visible" - } - ], - [ - "semicolon-token", - ";", - 128905, - 128905, - null - ], - [ - "ident-token", - "background-color", - 128906, - 128921, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 128922, - 128922, - null - ], - [ - "ident-token", - "transparent", - 128923, - 128933, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 128934, - 128934, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 128935, - 128943, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 128944, - 128944, - null - ], - [ - "}-token", - "}", - 128945, - 128945, - null - ], - [ - "at-keyword-token", - "@media", - 128946, - 128951, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 128952, - 128952, - null - ], - [ - "(-token", - "(", - 128953, - 128953, - null - ], - [ - "ident-token", - "max-width", - 128954, - 128962, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 128963, - 128963, - null - ], - [ - "dimension-token", - "767.98px", - 128964, - 128971, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 128972, - 128972, - null - ], - [ - "{-token", - "{", - 128973, - 128973, - null - ], - [ - "delim-token", - ".", - 128974, - 128974, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 128975, - 128986, - { - "value": "offcanvas-md" - } - ], - [ - "{-token", - "{", - 128987, - 128987, - null - ], - [ - "ident-token", - "position", - 128988, - 128995, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 128996, - 128996, - null - ], - [ - "ident-token", - "fixed", - 128997, - 129001, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 129002, - 129002, - null - ], - [ - "ident-token", - "bottom", - 129003, - 129008, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 129009, - 129009, - null - ], - [ - "number-token", - "0", - 129010, - 129010, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129011, - 129011, - null - ], - [ - "ident-token", - "z-index", - 129012, - 129018, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 129019, - 129019, - null - ], - [ - "function-token", - "var(", - 129020, - 129023, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 129024, - 129044, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 129045, - 129045, - null - ], - [ - "semicolon-token", - ";", - 129046, - 129046, - null - ], - [ - "ident-token", - "display", - 129047, - 129053, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 129054, - 129054, - null - ], - [ - "ident-token", - "flex", - 129055, - 129058, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 129059, - 129059, - null - ], - [ - "ident-token", - "flex-direction", - 129060, - 129073, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 129074, - 129074, - null - ], - [ - "ident-token", - "column", - 129075, - 129080, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 129081, - 129081, - null - ], - [ - "ident-token", - "max-width", - 129082, - 129090, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 129091, - 129091, - null - ], - [ - "percentage-token", - "100%", - 129092, - 129095, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 129096, - 129096, - null - ], - [ - "ident-token", - "color", - 129097, - 129101, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 129102, - 129102, - null - ], - [ - "function-token", - "var(", - 129103, - 129106, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 129107, - 129126, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 129127, - 129127, - null - ], - [ - "semicolon-token", - ";", - 129128, - 129128, - null - ], - [ - "ident-token", - "visibility", - 129129, - 129138, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 129139, - 129139, - null - ], - [ - "ident-token", - "hidden", - 129140, - 129145, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 129146, - 129146, - null - ], - [ - "ident-token", - "background-color", - 129147, - 129162, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 129163, - 129163, - null - ], - [ - "function-token", - "var(", - 129164, - 129167, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 129168, - 129184, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 129185, - 129185, - null - ], - [ - "semicolon-token", - ";", - 129186, - 129186, - null - ], - [ - "ident-token", - "background-clip", - 129187, - 129201, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 129202, - 129202, - null - ], - [ - "ident-token", - "padding-box", - 129203, - 129213, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 129214, - 129214, - null - ], - [ - "ident-token", - "outline", - 129215, - 129221, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 129222, - 129222, - null - ], - [ - "number-token", - "0", - 129223, - 129223, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129224, - 129224, - null - ], - [ - "ident-token", - "transition", - 129225, - 129234, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 129235, - 129235, - null - ], - [ - "ident-token", - "transform", - 129236, - 129244, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 129245, - 129245, - null - ], - [ - "dimension-token", - ".3s", - 129246, - 129248, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 129249, - 129249, - null - ], - [ - "ident-token", - "ease-in-out", - 129250, - 129260, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 129261, - 129261, - null - ], - [ - "}-token", - "}", - 129262, - 129262, - null - ], - [ - "at-keyword-token", - "@media", - 129263, - 129268, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 129269, - 129269, - null - ], - [ - "(-token", - "(", - 129270, - 129270, - null - ], - [ - "ident-token", - "max-width", - 129271, - 129279, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 129280, - 129280, - null - ], - [ - "dimension-token", - "767.98px", - 129281, - 129288, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 129289, - 129289, - null - ], - [ - "whitespace-token", - " ", - 129290, - 129290, - null - ], - [ - "ident-token", - "and", - 129291, - 129293, - { - "value": "and" - } - ], - [ - "whitespace-token", - " ", - 129294, - 129294, - null - ], - [ - "(-token", - "(", - 129295, - 129295, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 129296, - 129317, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 129318, - 129318, - null - ], - [ - "ident-token", - "reduce", - 129319, - 129324, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 129325, - 129325, - null - ], - [ - "{-token", - "{", - 129326, - 129326, - null - ], - [ - "delim-token", - ".", - 129327, - 129327, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 129328, - 129339, - { - "value": "offcanvas-md" - } - ], - [ - "{-token", - "{", - 129340, - 129340, - null - ], - [ - "ident-token", - "transition", - 129341, - 129350, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 129351, - 129351, - null - ], - [ - "ident-token", - "none", - 129352, - 129355, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 129356, - 129356, - null - ], - [ - "}-token", - "}", - 129357, - 129357, - null - ], - [ - "at-keyword-token", - "@media", - 129358, - 129363, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 129364, - 129364, - null - ], - [ - "(-token", - "(", - 129365, - 129365, - null - ], - [ - "ident-token", - "max-width", - 129366, - 129374, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 129375, - 129375, - null - ], - [ - "dimension-token", - "767.98px", - 129376, - 129383, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 129384, - 129384, - null - ], - [ - "{-token", - "{", - 129385, - 129385, - null - ], - [ - "delim-token", - ".", - 129386, - 129386, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 129387, - 129398, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 129399, - 129399, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 129400, - 129414, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 129415, - 129415, - null - ], - [ - "ident-token", - "top", - 129416, - 129418, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 129419, - 129419, - null - ], - [ - "number-token", - "0", - 129420, - 129420, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129421, - 129421, - null - ], - [ - "ident-token", - "left", - 129422, - 129425, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 129426, - 129426, - null - ], - [ - "number-token", - "0", - 129427, - 129427, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129428, - 129428, - null - ], - [ - "ident-token", - "width", - 129429, - 129433, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 129434, - 129434, - null - ], - [ - "function-token", - "var(", - 129435, - 129438, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 129439, - 129458, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 129459, - 129459, - null - ], - [ - "semicolon-token", - ";", - 129460, - 129460, - null - ], - [ - "ident-token", - "border-right", - 129461, - 129472, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 129473, - 129473, - null - ], - [ - "function-token", - "var(", - 129474, - 129477, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 129478, - 129504, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 129505, - 129505, - null - ], - [ - "whitespace-token", - " ", - 129506, - 129506, - null - ], - [ - "ident-token", - "solid", - 129507, - 129511, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 129512, - 129512, - null - ], - [ - "function-token", - "var(", - 129513, - 129516, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 129517, - 129543, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 129544, - 129544, - null - ], - [ - "semicolon-token", - ";", - 129545, - 129545, - null - ], - [ - "ident-token", - "transform", - 129546, - 129554, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 129555, - 129555, - null - ], - [ - "function-token", - "translateX(", - 129556, - 129566, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 129567, - 129571, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 129572, - 129572, - null - ], - [ - "}-token", - "}", - 129573, - 129573, - null - ], - [ - "}-token", - "}", - 129574, - 129574, - null - ], - [ - "at-keyword-token", - "@media", - 129575, - 129580, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 129581, - 129581, - null - ], - [ - "(-token", - "(", - 129582, - 129582, - null - ], - [ - "ident-token", - "max-width", - 129583, - 129591, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 129592, - 129592, - null - ], - [ - "dimension-token", - "767.98px", - 129593, - 129600, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 129601, - 129601, - null - ], - [ - "{-token", - "{", - 129602, - 129602, - null - ], - [ - "delim-token", - ".", - 129603, - 129603, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 129604, - 129615, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 129616, - 129616, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 129617, - 129629, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 129630, - 129630, - null - ], - [ - "ident-token", - "top", - 129631, - 129633, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 129634, - 129634, - null - ], - [ - "number-token", - "0", - 129635, - 129635, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129636, - 129636, - null - ], - [ - "ident-token", - "right", - 129637, - 129641, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 129642, - 129642, - null - ], - [ - "number-token", - "0", - 129643, - 129643, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129644, - 129644, - null - ], - [ - "ident-token", - "width", - 129645, - 129649, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 129650, - 129650, - null - ], - [ - "function-token", - "var(", - 129651, - 129654, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 129655, - 129674, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 129675, - 129675, - null - ], - [ - "semicolon-token", - ";", - 129676, - 129676, - null - ], - [ - "ident-token", - "border-left", - 129677, - 129687, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 129688, - 129688, - null - ], - [ - "function-token", - "var(", - 129689, - 129692, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 129693, - 129719, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 129720, - 129720, - null - ], - [ - "whitespace-token", - " ", - 129721, - 129721, - null - ], - [ - "ident-token", - "solid", - 129722, - 129726, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 129727, - 129727, - null - ], - [ - "function-token", - "var(", - 129728, - 129731, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 129732, - 129758, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 129759, - 129759, - null - ], - [ - "semicolon-token", - ";", - 129760, - 129760, - null - ], - [ - "ident-token", - "transform", - 129761, - 129769, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 129770, - 129770, - null - ], - [ - "function-token", - "translateX(", - 129771, - 129781, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 129782, - 129785, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 129786, - 129786, - null - ], - [ - "}-token", - "}", - 129787, - 129787, - null - ], - [ - "}-token", - "}", - 129788, - 129788, - null - ], - [ - "at-keyword-token", - "@media", - 129789, - 129794, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 129795, - 129795, - null - ], - [ - "(-token", - "(", - 129796, - 129796, - null - ], - [ - "ident-token", - "max-width", - 129797, - 129805, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 129806, - 129806, - null - ], - [ - "dimension-token", - "767.98px", - 129807, - 129814, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 129815, - 129815, - null - ], - [ - "{-token", - "{", - 129816, - 129816, - null - ], - [ - "delim-token", - ".", - 129817, - 129817, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 129818, - 129829, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 129830, - 129830, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 129831, - 129843, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 129844, - 129844, - null - ], - [ - "ident-token", - "top", - 129845, - 129847, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 129848, - 129848, - null - ], - [ - "number-token", - "0", - 129849, - 129849, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129850, - 129850, - null - ], - [ - "ident-token", - "right", - 129851, - 129855, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 129856, - 129856, - null - ], - [ - "number-token", - "0", - 129857, - 129857, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129858, - 129858, - null - ], - [ - "ident-token", - "left", - 129859, - 129862, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 129863, - 129863, - null - ], - [ - "number-token", - "0", - 129864, - 129864, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 129865, - 129865, - null - ], - [ - "ident-token", - "height", - 129866, - 129871, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 129872, - 129872, - null - ], - [ - "function-token", - "var(", - 129873, - 129876, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 129877, - 129897, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 129898, - 129898, - null - ], - [ - "semicolon-token", - ";", - 129899, - 129899, - null - ], - [ - "ident-token", - "max-height", - 129900, - 129909, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 129910, - 129910, - null - ], - [ - "percentage-token", - "100%", - 129911, - 129914, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 129915, - 129915, - null - ], - [ - "ident-token", - "border-bottom", - 129916, - 129928, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 129929, - 129929, - null - ], - [ - "function-token", - "var(", - 129930, - 129933, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 129934, - 129960, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 129961, - 129961, - null - ], - [ - "whitespace-token", - " ", - 129962, - 129962, - null - ], - [ - "ident-token", - "solid", - 129963, - 129967, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 129968, - 129968, - null - ], - [ - "function-token", - "var(", - 129969, - 129972, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 129973, - 129999, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 130000, - 130000, - null - ], - [ - "semicolon-token", - ";", - 130001, - 130001, - null - ], - [ - "ident-token", - "transform", - 130002, - 130010, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 130011, - 130011, - null - ], - [ - "function-token", - "translateY(", - 130012, - 130022, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 130023, - 130027, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 130028, - 130028, - null - ], - [ - "}-token", - "}", - 130029, - 130029, - null - ], - [ - "}-token", - "}", - 130030, - 130030, - null - ], - [ - "at-keyword-token", - "@media", - 130031, - 130036, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 130037, - 130037, - null - ], - [ - "(-token", - "(", - 130038, - 130038, - null - ], - [ - "ident-token", - "max-width", - 130039, - 130047, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 130048, - 130048, - null - ], - [ - "dimension-token", - "767.98px", - 130049, - 130056, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 130057, - 130057, - null - ], - [ - "{-token", - "{", - 130058, - 130058, - null - ], - [ - "delim-token", - ".", - 130059, - 130059, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130060, - 130071, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130072, - 130072, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 130073, - 130088, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 130089, - 130089, - null - ], - [ - "ident-token", - "right", - 130090, - 130094, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 130095, - 130095, - null - ], - [ - "number-token", - "0", - 130096, - 130096, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130097, - 130097, - null - ], - [ - "ident-token", - "left", - 130098, - 130101, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 130102, - 130102, - null - ], - [ - "number-token", - "0", - 130103, - 130103, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130104, - 130104, - null - ], - [ - "ident-token", - "height", - 130105, - 130110, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 130111, - 130111, - null - ], - [ - "function-token", - "var(", - 130112, - 130115, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 130116, - 130136, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 130137, - 130137, - null - ], - [ - "semicolon-token", - ";", - 130138, - 130138, - null - ], - [ - "ident-token", - "max-height", - 130139, - 130148, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 130149, - 130149, - null - ], - [ - "percentage-token", - "100%", - 130150, - 130153, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 130154, - 130154, - null - ], - [ - "ident-token", - "border-top", - 130155, - 130164, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 130165, - 130165, - null - ], - [ - "function-token", - "var(", - 130166, - 130169, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 130170, - 130196, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 130197, - 130197, - null - ], - [ - "whitespace-token", - " ", - 130198, - 130198, - null - ], - [ - "ident-token", - "solid", - 130199, - 130203, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 130204, - 130204, - null - ], - [ - "function-token", - "var(", - 130205, - 130208, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 130209, - 130235, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 130236, - 130236, - null - ], - [ - "semicolon-token", - ";", - 130237, - 130237, - null - ], - [ - "ident-token", - "transform", - 130238, - 130246, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 130247, - 130247, - null - ], - [ - "function-token", - "translateY(", - 130248, - 130258, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 130259, - 130262, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 130263, - 130263, - null - ], - [ - "}-token", - "}", - 130264, - 130264, - null - ], - [ - "}-token", - "}", - 130265, - 130265, - null - ], - [ - "at-keyword-token", - "@media", - 130266, - 130271, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 130272, - 130272, - null - ], - [ - "(-token", - "(", - 130273, - 130273, - null - ], - [ - "ident-token", - "max-width", - 130274, - 130282, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 130283, - 130283, - null - ], - [ - "dimension-token", - "767.98px", - 130284, - 130291, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 130292, - 130292, - null - ], - [ - "{-token", - "{", - 130293, - 130293, - null - ], - [ - "delim-token", - ".", - 130294, - 130294, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130295, - 130306, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130307, - 130307, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 130308, - 130311, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 130312, - 130312, - null - ], - [ - "function-token", - "not(", - 130313, - 130316, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 130317, - 130317, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 130318, - 130323, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 130324, - 130324, - null - ], - [ - "comma-token", - ",", - 130325, - 130325, - null - ], - [ - "delim-token", - ".", - 130326, - 130326, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130327, - 130338, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130339, - 130339, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 130340, - 130346, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 130347, - 130347, - null - ], - [ - "ident-token", - "transform", - 130348, - 130356, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 130357, - 130357, - null - ], - [ - "ident-token", - "none", - 130358, - 130361, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 130362, - 130362, - null - ], - [ - "}-token", - "}", - 130363, - 130363, - null - ], - [ - "at-keyword-token", - "@media", - 130364, - 130369, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 130370, - 130370, - null - ], - [ - "(-token", - "(", - 130371, - 130371, - null - ], - [ - "ident-token", - "max-width", - 130372, - 130380, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 130381, - 130381, - null - ], - [ - "dimension-token", - "767.98px", - 130382, - 130389, - { - "value": 767.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 130390, - 130390, - null - ], - [ - "{-token", - "{", - 130391, - 130391, - null - ], - [ - "delim-token", - ".", - 130392, - 130392, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130393, - 130404, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130405, - 130405, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 130406, - 130411, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 130412, - 130412, - null - ], - [ - "delim-token", - ".", - 130413, - 130413, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130414, - 130425, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130426, - 130426, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 130427, - 130430, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 130431, - 130431, - null - ], - [ - "delim-token", - ".", - 130432, - 130432, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130433, - 130444, - { - "value": "offcanvas-md" - } - ], - [ - "delim-token", - ".", - 130445, - 130445, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 130446, - 130452, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 130453, - 130453, - null - ], - [ - "ident-token", - "visibility", - 130454, - 130463, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 130464, - 130464, - null - ], - [ - "ident-token", - "visible", - 130465, - 130471, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 130472, - 130472, - null - ], - [ - "}-token", - "}", - 130473, - 130473, - null - ], - [ - "at-keyword-token", - "@media", - 130474, - 130479, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 130480, - 130480, - null - ], - [ - "(-token", - "(", - 130481, - 130481, - null - ], - [ - "ident-token", - "min-width", - 130482, - 130490, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 130491, - 130491, - null - ], - [ - "dimension-token", - "768px", - 130492, - 130496, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 130497, - 130497, - null - ], - [ - "{-token", - "{", - 130498, - 130498, - null - ], - [ - "delim-token", - ".", - 130499, - 130499, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130500, - 130511, - { - "value": "offcanvas-md" - } - ], - [ - "{-token", - "{", - 130512, - 130512, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 130513, - 130533, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 130534, - 130534, - null - ], - [ - "ident-token", - "auto", - 130535, - 130538, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 130539, - 130539, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 130540, - 130566, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 130567, - 130567, - null - ], - [ - "number-token", - "0", - 130568, - 130568, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130569, - 130569, - null - ], - [ - "ident-token", - "background-color", - 130570, - 130585, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 130586, - 130586, - null - ], - [ - "ident-token", - "transparent", - 130587, - 130597, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 130598, - 130598, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 130599, - 130607, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 130608, - 130608, - null - ], - [ - "delim-token", - ".", - 130609, - 130609, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130610, - 130621, - { - "value": "offcanvas-md" - } - ], - [ - "whitespace-token", - " ", - 130622, - 130622, - null - ], - [ - "delim-token", - ".", - 130623, - 130623, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 130624, - 130639, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 130640, - 130640, - null - ], - [ - "ident-token", - "display", - 130641, - 130647, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 130648, - 130648, - null - ], - [ - "ident-token", - "none", - 130649, - 130652, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 130653, - 130653, - null - ], - [ - "delim-token", - ".", - 130654, - 130654, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-md", - 130655, - 130666, - { - "value": "offcanvas-md" - } - ], - [ - "whitespace-token", - " ", - 130667, - 130667, - null - ], - [ - "delim-token", - ".", - 130668, - 130668, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 130669, - 130682, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 130683, - 130683, - null - ], - [ - "ident-token", - "display", - 130684, - 130690, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 130691, - 130691, - null - ], - [ - "ident-token", - "flex", - 130692, - 130695, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 130696, - 130696, - null - ], - [ - "ident-token", - "flex-grow", - 130697, - 130705, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 130706, - 130706, - null - ], - [ - "number-token", - "0", - 130707, - 130707, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130708, - 130708, - null - ], - [ - "ident-token", - "padding", - 130709, - 130715, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 130716, - 130716, - null - ], - [ - "number-token", - "0", - 130717, - 130717, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130718, - 130718, - null - ], - [ - "ident-token", - "overflow-y", - 130719, - 130728, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 130729, - 130729, - null - ], - [ - "ident-token", - "visible", - 130730, - 130736, - { - "value": "visible" - } - ], - [ - "semicolon-token", - ";", - 130737, - 130737, - null - ], - [ - "ident-token", - "background-color", - 130738, - 130753, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 130754, - 130754, - null - ], - [ - "ident-token", - "transparent", - 130755, - 130765, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 130766, - 130766, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 130767, - 130775, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 130776, - 130776, - null - ], - [ - "}-token", - "}", - 130777, - 130777, - null - ], - [ - "at-keyword-token", - "@media", - 130778, - 130783, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 130784, - 130784, - null - ], - [ - "(-token", - "(", - 130785, - 130785, - null - ], - [ - "ident-token", - "max-width", - 130786, - 130794, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 130795, - 130795, - null - ], - [ - "dimension-token", - "991.98px", - 130796, - 130803, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 130804, - 130804, - null - ], - [ - "{-token", - "{", - 130805, - 130805, - null - ], - [ - "delim-token", - ".", - 130806, - 130806, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 130807, - 130818, - { - "value": "offcanvas-lg" - } - ], - [ - "{-token", - "{", - 130819, - 130819, - null - ], - [ - "ident-token", - "position", - 130820, - 130827, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 130828, - 130828, - null - ], - [ - "ident-token", - "fixed", - 130829, - 130833, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 130834, - 130834, - null - ], - [ - "ident-token", - "bottom", - 130835, - 130840, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 130841, - 130841, - null - ], - [ - "number-token", - "0", - 130842, - 130842, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 130843, - 130843, - null - ], - [ - "ident-token", - "z-index", - 130844, - 130850, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 130851, - 130851, - null - ], - [ - "function-token", - "var(", - 130852, - 130855, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 130856, - 130876, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 130877, - 130877, - null - ], - [ - "semicolon-token", - ";", - 130878, - 130878, - null - ], - [ - "ident-token", - "display", - 130879, - 130885, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 130886, - 130886, - null - ], - [ - "ident-token", - "flex", - 130887, - 130890, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 130891, - 130891, - null - ], - [ - "ident-token", - "flex-direction", - 130892, - 130905, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 130906, - 130906, - null - ], - [ - "ident-token", - "column", - 130907, - 130912, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 130913, - 130913, - null - ], - [ - "ident-token", - "max-width", - 130914, - 130922, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 130923, - 130923, - null - ], - [ - "percentage-token", - "100%", - 130924, - 130927, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 130928, - 130928, - null - ], - [ - "ident-token", - "color", - 130929, - 130933, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 130934, - 130934, - null - ], - [ - "function-token", - "var(", - 130935, - 130938, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 130939, - 130958, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 130959, - 130959, - null - ], - [ - "semicolon-token", - ";", - 130960, - 130960, - null - ], - [ - "ident-token", - "visibility", - 130961, - 130970, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 130971, - 130971, - null - ], - [ - "ident-token", - "hidden", - 130972, - 130977, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 130978, - 130978, - null - ], - [ - "ident-token", - "background-color", - 130979, - 130994, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 130995, - 130995, - null - ], - [ - "function-token", - "var(", - 130996, - 130999, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 131000, - 131016, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 131017, - 131017, - null - ], - [ - "semicolon-token", - ";", - 131018, - 131018, - null - ], - [ - "ident-token", - "background-clip", - 131019, - 131033, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 131034, - 131034, - null - ], - [ - "ident-token", - "padding-box", - 131035, - 131045, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 131046, - 131046, - null - ], - [ - "ident-token", - "outline", - 131047, - 131053, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 131054, - 131054, - null - ], - [ - "number-token", - "0", - 131055, - 131055, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131056, - 131056, - null - ], - [ - "ident-token", - "transition", - 131057, - 131066, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 131067, - 131067, - null - ], - [ - "ident-token", - "transform", - 131068, - 131076, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 131077, - 131077, - null - ], - [ - "dimension-token", - ".3s", - 131078, - 131080, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 131081, - 131081, - null - ], - [ - "ident-token", - "ease-in-out", - 131082, - 131092, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 131093, - 131093, - null - ], - [ - "}-token", - "}", - 131094, - 131094, - null - ], - [ - "at-keyword-token", - "@media", - 131095, - 131100, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 131101, - 131101, - null - ], - [ - "(-token", - "(", - 131102, - 131102, - null - ], - [ - "ident-token", - "max-width", - 131103, - 131111, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 131112, - 131112, - null - ], - [ - "dimension-token", - "991.98px", - 131113, - 131120, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 131121, - 131121, - null - ], - [ - "whitespace-token", - " ", - 131122, - 131122, - null - ], - [ - "ident-token", - "and", - 131123, - 131125, - { - "value": "and" - } - ], - [ - "whitespace-token", - " ", - 131126, - 131126, - null - ], - [ - "(-token", - "(", - 131127, - 131127, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 131128, - 131149, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 131150, - 131150, - null - ], - [ - "ident-token", - "reduce", - 131151, - 131156, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 131157, - 131157, - null - ], - [ - "{-token", - "{", - 131158, - 131158, - null - ], - [ - "delim-token", - ".", - 131159, - 131159, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 131160, - 131171, - { - "value": "offcanvas-lg" - } - ], - [ - "{-token", - "{", - 131172, - 131172, - null - ], - [ - "ident-token", - "transition", - 131173, - 131182, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 131183, - 131183, - null - ], - [ - "ident-token", - "none", - 131184, - 131187, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 131188, - 131188, - null - ], - [ - "}-token", - "}", - 131189, - 131189, - null - ], - [ - "at-keyword-token", - "@media", - 131190, - 131195, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 131196, - 131196, - null - ], - [ - "(-token", - "(", - 131197, - 131197, - null - ], - [ - "ident-token", - "max-width", - 131198, - 131206, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 131207, - 131207, - null - ], - [ - "dimension-token", - "991.98px", - 131208, - 131215, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 131216, - 131216, - null - ], - [ - "{-token", - "{", - 131217, - 131217, - null - ], - [ - "delim-token", - ".", - 131218, - 131218, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 131219, - 131230, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 131231, - 131231, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 131232, - 131246, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 131247, - 131247, - null - ], - [ - "ident-token", - "top", - 131248, - 131250, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 131251, - 131251, - null - ], - [ - "number-token", - "0", - 131252, - 131252, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131253, - 131253, - null - ], - [ - "ident-token", - "left", - 131254, - 131257, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 131258, - 131258, - null - ], - [ - "number-token", - "0", - 131259, - 131259, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131260, - 131260, - null - ], - [ - "ident-token", - "width", - 131261, - 131265, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 131266, - 131266, - null - ], - [ - "function-token", - "var(", - 131267, - 131270, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 131271, - 131290, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 131291, - 131291, - null - ], - [ - "semicolon-token", - ";", - 131292, - 131292, - null - ], - [ - "ident-token", - "border-right", - 131293, - 131304, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 131305, - 131305, - null - ], - [ - "function-token", - "var(", - 131306, - 131309, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 131310, - 131336, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 131337, - 131337, - null - ], - [ - "whitespace-token", - " ", - 131338, - 131338, - null - ], - [ - "ident-token", - "solid", - 131339, - 131343, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 131344, - 131344, - null - ], - [ - "function-token", - "var(", - 131345, - 131348, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 131349, - 131375, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 131376, - 131376, - null - ], - [ - "semicolon-token", - ";", - 131377, - 131377, - null - ], - [ - "ident-token", - "transform", - 131378, - 131386, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 131387, - 131387, - null - ], - [ - "function-token", - "translateX(", - 131388, - 131398, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 131399, - 131403, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 131404, - 131404, - null - ], - [ - "}-token", - "}", - 131405, - 131405, - null - ], - [ - "}-token", - "}", - 131406, - 131406, - null - ], - [ - "at-keyword-token", - "@media", - 131407, - 131412, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 131413, - 131413, - null - ], - [ - "(-token", - "(", - 131414, - 131414, - null - ], - [ - "ident-token", - "max-width", - 131415, - 131423, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 131424, - 131424, - null - ], - [ - "dimension-token", - "991.98px", - 131425, - 131432, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 131433, - 131433, - null - ], - [ - "{-token", - "{", - 131434, - 131434, - null - ], - [ - "delim-token", - ".", - 131435, - 131435, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 131436, - 131447, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 131448, - 131448, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 131449, - 131461, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 131462, - 131462, - null - ], - [ - "ident-token", - "top", - 131463, - 131465, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 131466, - 131466, - null - ], - [ - "number-token", - "0", - 131467, - 131467, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131468, - 131468, - null - ], - [ - "ident-token", - "right", - 131469, - 131473, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 131474, - 131474, - null - ], - [ - "number-token", - "0", - 131475, - 131475, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131476, - 131476, - null - ], - [ - "ident-token", - "width", - 131477, - 131481, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 131482, - 131482, - null - ], - [ - "function-token", - "var(", - 131483, - 131486, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 131487, - 131506, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 131507, - 131507, - null - ], - [ - "semicolon-token", - ";", - 131508, - 131508, - null - ], - [ - "ident-token", - "border-left", - 131509, - 131519, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 131520, - 131520, - null - ], - [ - "function-token", - "var(", - 131521, - 131524, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 131525, - 131551, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 131552, - 131552, - null - ], - [ - "whitespace-token", - " ", - 131553, - 131553, - null - ], - [ - "ident-token", - "solid", - 131554, - 131558, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 131559, - 131559, - null - ], - [ - "function-token", - "var(", - 131560, - 131563, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 131564, - 131590, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 131591, - 131591, - null - ], - [ - "semicolon-token", - ";", - 131592, - 131592, - null - ], - [ - "ident-token", - "transform", - 131593, - 131601, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 131602, - 131602, - null - ], - [ - "function-token", - "translateX(", - 131603, - 131613, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 131614, - 131617, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 131618, - 131618, - null - ], - [ - "}-token", - "}", - 131619, - 131619, - null - ], - [ - "}-token", - "}", - 131620, - 131620, - null - ], - [ - "at-keyword-token", - "@media", - 131621, - 131626, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 131627, - 131627, - null - ], - [ - "(-token", - "(", - 131628, - 131628, - null - ], - [ - "ident-token", - "max-width", - 131629, - 131637, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 131638, - 131638, - null - ], - [ - "dimension-token", - "991.98px", - 131639, - 131646, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 131647, - 131647, - null - ], - [ - "{-token", - "{", - 131648, - 131648, - null - ], - [ - "delim-token", - ".", - 131649, - 131649, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 131650, - 131661, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 131662, - 131662, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 131663, - 131675, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 131676, - 131676, - null - ], - [ - "ident-token", - "top", - 131677, - 131679, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 131680, - 131680, - null - ], - [ - "number-token", - "0", - 131681, - 131681, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131682, - 131682, - null - ], - [ - "ident-token", - "right", - 131683, - 131687, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 131688, - 131688, - null - ], - [ - "number-token", - "0", - 131689, - 131689, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131690, - 131690, - null - ], - [ - "ident-token", - "left", - 131691, - 131694, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 131695, - 131695, - null - ], - [ - "number-token", - "0", - 131696, - 131696, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131697, - 131697, - null - ], - [ - "ident-token", - "height", - 131698, - 131703, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 131704, - 131704, - null - ], - [ - "function-token", - "var(", - 131705, - 131708, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 131709, - 131729, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 131730, - 131730, - null - ], - [ - "semicolon-token", - ";", - 131731, - 131731, - null - ], - [ - "ident-token", - "max-height", - 131732, - 131741, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 131742, - 131742, - null - ], - [ - "percentage-token", - "100%", - 131743, - 131746, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 131747, - 131747, - null - ], - [ - "ident-token", - "border-bottom", - 131748, - 131760, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 131761, - 131761, - null - ], - [ - "function-token", - "var(", - 131762, - 131765, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 131766, - 131792, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 131793, - 131793, - null - ], - [ - "whitespace-token", - " ", - 131794, - 131794, - null - ], - [ - "ident-token", - "solid", - 131795, - 131799, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 131800, - 131800, - null - ], - [ - "function-token", - "var(", - 131801, - 131804, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 131805, - 131831, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 131832, - 131832, - null - ], - [ - "semicolon-token", - ";", - 131833, - 131833, - null - ], - [ - "ident-token", - "transform", - 131834, - 131842, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 131843, - 131843, - null - ], - [ - "function-token", - "translateY(", - 131844, - 131854, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 131855, - 131859, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 131860, - 131860, - null - ], - [ - "}-token", - "}", - 131861, - 131861, - null - ], - [ - "}-token", - "}", - 131862, - 131862, - null - ], - [ - "at-keyword-token", - "@media", - 131863, - 131868, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 131869, - 131869, - null - ], - [ - "(-token", - "(", - 131870, - 131870, - null - ], - [ - "ident-token", - "max-width", - 131871, - 131879, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 131880, - 131880, - null - ], - [ - "dimension-token", - "991.98px", - 131881, - 131888, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 131889, - 131889, - null - ], - [ - "{-token", - "{", - 131890, - 131890, - null - ], - [ - "delim-token", - ".", - 131891, - 131891, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 131892, - 131903, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 131904, - 131904, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 131905, - 131920, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 131921, - 131921, - null - ], - [ - "ident-token", - "right", - 131922, - 131926, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 131927, - 131927, - null - ], - [ - "number-token", - "0", - 131928, - 131928, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131929, - 131929, - null - ], - [ - "ident-token", - "left", - 131930, - 131933, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 131934, - 131934, - null - ], - [ - "number-token", - "0", - 131935, - 131935, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 131936, - 131936, - null - ], - [ - "ident-token", - "height", - 131937, - 131942, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 131943, - 131943, - null - ], - [ - "function-token", - "var(", - 131944, - 131947, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 131948, - 131968, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 131969, - 131969, - null - ], - [ - "semicolon-token", - ";", - 131970, - 131970, - null - ], - [ - "ident-token", - "max-height", - 131971, - 131980, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 131981, - 131981, - null - ], - [ - "percentage-token", - "100%", - 131982, - 131985, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 131986, - 131986, - null - ], - [ - "ident-token", - "border-top", - 131987, - 131996, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 131997, - 131997, - null - ], - [ - "function-token", - "var(", - 131998, - 132001, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 132002, - 132028, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 132029, - 132029, - null - ], - [ - "whitespace-token", - " ", - 132030, - 132030, - null - ], - [ - "ident-token", - "solid", - 132031, - 132035, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 132036, - 132036, - null - ], - [ - "function-token", - "var(", - 132037, - 132040, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 132041, - 132067, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 132068, - 132068, - null - ], - [ - "semicolon-token", - ";", - 132069, - 132069, - null - ], - [ - "ident-token", - "transform", - 132070, - 132078, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 132079, - 132079, - null - ], - [ - "function-token", - "translateY(", - 132080, - 132090, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 132091, - 132094, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 132095, - 132095, - null - ], - [ - "}-token", - "}", - 132096, - 132096, - null - ], - [ - "}-token", - "}", - 132097, - 132097, - null - ], - [ - "at-keyword-token", - "@media", - 132098, - 132103, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 132104, - 132104, - null - ], - [ - "(-token", - "(", - 132105, - 132105, - null - ], - [ - "ident-token", - "max-width", - 132106, - 132114, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 132115, - 132115, - null - ], - [ - "dimension-token", - "991.98px", - 132116, - 132123, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 132124, - 132124, - null - ], - [ - "{-token", - "{", - 132125, - 132125, - null - ], - [ - "delim-token", - ".", - 132126, - 132126, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132127, - 132138, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 132139, - 132139, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 132140, - 132143, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 132144, - 132144, - null - ], - [ - "function-token", - "not(", - 132145, - 132148, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 132149, - 132149, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 132150, - 132155, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 132156, - 132156, - null - ], - [ - "comma-token", - ",", - 132157, - 132157, - null - ], - [ - "delim-token", - ".", - 132158, - 132158, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132159, - 132170, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 132171, - 132171, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 132172, - 132178, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 132179, - 132179, - null - ], - [ - "ident-token", - "transform", - 132180, - 132188, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 132189, - 132189, - null - ], - [ - "ident-token", - "none", - 132190, - 132193, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 132194, - 132194, - null - ], - [ - "}-token", - "}", - 132195, - 132195, - null - ], - [ - "at-keyword-token", - "@media", - 132196, - 132201, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 132202, - 132202, - null - ], - [ - "(-token", - "(", - 132203, - 132203, - null - ], - [ - "ident-token", - "max-width", - 132204, - 132212, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 132213, - 132213, - null - ], - [ - "dimension-token", - "991.98px", - 132214, - 132221, - { - "value": 991.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 132222, - 132222, - null - ], - [ - "{-token", - "{", - 132223, - 132223, - null - ], - [ - "delim-token", - ".", - 132224, - 132224, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132225, - 132236, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 132237, - 132237, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 132238, - 132243, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 132244, - 132244, - null - ], - [ - "delim-token", - ".", - 132245, - 132245, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132246, - 132257, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 132258, - 132258, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 132259, - 132262, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 132263, - 132263, - null - ], - [ - "delim-token", - ".", - 132264, - 132264, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132265, - 132276, - { - "value": "offcanvas-lg" - } - ], - [ - "delim-token", - ".", - 132277, - 132277, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 132278, - 132284, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 132285, - 132285, - null - ], - [ - "ident-token", - "visibility", - 132286, - 132295, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 132296, - 132296, - null - ], - [ - "ident-token", - "visible", - 132297, - 132303, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 132304, - 132304, - null - ], - [ - "}-token", - "}", - 132305, - 132305, - null - ], - [ - "at-keyword-token", - "@media", - 132306, - 132311, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 132312, - 132312, - null - ], - [ - "(-token", - "(", - 132313, - 132313, - null - ], - [ - "ident-token", - "min-width", - 132314, - 132322, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 132323, - 132323, - null - ], - [ - "dimension-token", - "992px", - 132324, - 132328, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 132329, - 132329, - null - ], - [ - "{-token", - "{", - 132330, - 132330, - null - ], - [ - "delim-token", - ".", - 132331, - 132331, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132332, - 132343, - { - "value": "offcanvas-lg" - } - ], - [ - "{-token", - "{", - 132344, - 132344, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 132345, - 132365, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 132366, - 132366, - null - ], - [ - "ident-token", - "auto", - 132367, - 132370, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 132371, - 132371, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 132372, - 132398, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 132399, - 132399, - null - ], - [ - "number-token", - "0", - 132400, - 132400, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 132401, - 132401, - null - ], - [ - "ident-token", - "background-color", - 132402, - 132417, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 132418, - 132418, - null - ], - [ - "ident-token", - "transparent", - 132419, - 132429, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 132430, - 132430, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 132431, - 132439, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 132440, - 132440, - null - ], - [ - "delim-token", - ".", - 132441, - 132441, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132442, - 132453, - { - "value": "offcanvas-lg" - } - ], - [ - "whitespace-token", - " ", - 132454, - 132454, - null - ], - [ - "delim-token", - ".", - 132455, - 132455, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 132456, - 132471, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 132472, - 132472, - null - ], - [ - "ident-token", - "display", - 132473, - 132479, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 132480, - 132480, - null - ], - [ - "ident-token", - "none", - 132481, - 132484, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 132485, - 132485, - null - ], - [ - "delim-token", - ".", - 132486, - 132486, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-lg", - 132487, - 132498, - { - "value": "offcanvas-lg" - } - ], - [ - "whitespace-token", - " ", - 132499, - 132499, - null - ], - [ - "delim-token", - ".", - 132500, - 132500, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 132501, - 132514, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 132515, - 132515, - null - ], - [ - "ident-token", - "display", - 132516, - 132522, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 132523, - 132523, - null - ], - [ - "ident-token", - "flex", - 132524, - 132527, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 132528, - 132528, - null - ], - [ - "ident-token", - "flex-grow", - 132529, - 132537, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 132538, - 132538, - null - ], - [ - "number-token", - "0", - 132539, - 132539, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 132540, - 132540, - null - ], - [ - "ident-token", - "padding", - 132541, - 132547, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 132548, - 132548, - null - ], - [ - "number-token", - "0", - 132549, - 132549, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 132550, - 132550, - null - ], - [ - "ident-token", - "overflow-y", - 132551, - 132560, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 132561, - 132561, - null - ], - [ - "ident-token", - "visible", - 132562, - 132568, - { - "value": "visible" - } - ], - [ - "semicolon-token", - ";", - 132569, - 132569, - null - ], - [ - "ident-token", - "background-color", - 132570, - 132585, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 132586, - 132586, - null - ], - [ - "ident-token", - "transparent", - 132587, - 132597, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 132598, - 132598, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 132599, - 132607, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 132608, - 132608, - null - ], - [ - "}-token", - "}", - 132609, - 132609, - null - ], - [ - "at-keyword-token", - "@media", - 132610, - 132615, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 132616, - 132616, - null - ], - [ - "(-token", - "(", - 132617, - 132617, - null - ], - [ - "ident-token", - "max-width", - 132618, - 132626, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 132627, - 132627, - null - ], - [ - "dimension-token", - "1199.98px", - 132628, - 132636, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 132637, - 132637, - null - ], - [ - "{-token", - "{", - 132638, - 132638, - null - ], - [ - "delim-token", - ".", - 132639, - 132639, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 132640, - 132651, - { - "value": "offcanvas-xl" - } - ], - [ - "{-token", - "{", - 132652, - 132652, - null - ], - [ - "ident-token", - "position", - 132653, - 132660, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 132661, - 132661, - null - ], - [ - "ident-token", - "fixed", - 132662, - 132666, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 132667, - 132667, - null - ], - [ - "ident-token", - "bottom", - 132668, - 132673, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 132674, - 132674, - null - ], - [ - "number-token", - "0", - 132675, - 132675, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 132676, - 132676, - null - ], - [ - "ident-token", - "z-index", - 132677, - 132683, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 132684, - 132684, - null - ], - [ - "function-token", - "var(", - 132685, - 132688, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 132689, - 132709, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 132710, - 132710, - null - ], - [ - "semicolon-token", - ";", - 132711, - 132711, - null - ], - [ - "ident-token", - "display", - 132712, - 132718, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 132719, - 132719, - null - ], - [ - "ident-token", - "flex", - 132720, - 132723, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 132724, - 132724, - null - ], - [ - "ident-token", - "flex-direction", - 132725, - 132738, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 132739, - 132739, - null - ], - [ - "ident-token", - "column", - 132740, - 132745, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 132746, - 132746, - null - ], - [ - "ident-token", - "max-width", - 132747, - 132755, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 132756, - 132756, - null - ], - [ - "percentage-token", - "100%", - 132757, - 132760, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 132761, - 132761, - null - ], - [ - "ident-token", - "color", - 132762, - 132766, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 132767, - 132767, - null - ], - [ - "function-token", - "var(", - 132768, - 132771, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 132772, - 132791, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 132792, - 132792, - null - ], - [ - "semicolon-token", - ";", - 132793, - 132793, - null - ], - [ - "ident-token", - "visibility", - 132794, - 132803, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 132804, - 132804, - null - ], - [ - "ident-token", - "hidden", - 132805, - 132810, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 132811, - 132811, - null - ], - [ - "ident-token", - "background-color", - 132812, - 132827, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 132828, - 132828, - null - ], - [ - "function-token", - "var(", - 132829, - 132832, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 132833, - 132849, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 132850, - 132850, - null - ], - [ - "semicolon-token", - ";", - 132851, - 132851, - null - ], - [ - "ident-token", - "background-clip", - 132852, - 132866, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 132867, - 132867, - null - ], - [ - "ident-token", - "padding-box", - 132868, - 132878, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 132879, - 132879, - null - ], - [ - "ident-token", - "outline", - 132880, - 132886, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 132887, - 132887, - null - ], - [ - "number-token", - "0", - 132888, - 132888, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 132889, - 132889, - null - ], - [ - "ident-token", - "transition", - 132890, - 132899, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 132900, - 132900, - null - ], - [ - "ident-token", - "transform", - 132901, - 132909, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 132910, - 132910, - null - ], - [ - "dimension-token", - ".3s", - 132911, - 132913, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 132914, - 132914, - null - ], - [ - "ident-token", - "ease-in-out", - 132915, - 132925, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 132926, - 132926, - null - ], - [ - "}-token", - "}", - 132927, - 132927, - null - ], - [ - "at-keyword-token", - "@media", - 132928, - 132933, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 132934, - 132934, - null - ], - [ - "(-token", - "(", - 132935, - 132935, - null - ], - [ - "ident-token", - "max-width", - 132936, - 132944, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 132945, - 132945, - null - ], - [ - "dimension-token", - "1199.98px", - 132946, - 132954, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 132955, - 132955, - null - ], - [ - "whitespace-token", - " ", - 132956, - 132956, - null - ], - [ - "ident-token", - "and", - 132957, - 132959, - { - "value": "and" - } - ], - [ - "whitespace-token", - " ", - 132960, - 132960, - null - ], - [ - "(-token", - "(", - 132961, - 132961, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 132962, - 132983, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 132984, - 132984, - null - ], - [ - "ident-token", - "reduce", - 132985, - 132990, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 132991, - 132991, - null - ], - [ - "{-token", - "{", - 132992, - 132992, - null - ], - [ - "delim-token", - ".", - 132993, - 132993, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 132994, - 133005, - { - "value": "offcanvas-xl" - } - ], - [ - "{-token", - "{", - 133006, - 133006, - null - ], - [ - "ident-token", - "transition", - 133007, - 133016, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 133017, - 133017, - null - ], - [ - "ident-token", - "none", - 133018, - 133021, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 133022, - 133022, - null - ], - [ - "}-token", - "}", - 133023, - 133023, - null - ], - [ - "at-keyword-token", - "@media", - 133024, - 133029, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 133030, - 133030, - null - ], - [ - "(-token", - "(", - 133031, - 133031, - null - ], - [ - "ident-token", - "max-width", - 133032, - 133040, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 133041, - 133041, - null - ], - [ - "dimension-token", - "1199.98px", - 133042, - 133050, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 133051, - 133051, - null - ], - [ - "{-token", - "{", - 133052, - 133052, - null - ], - [ - "delim-token", - ".", - 133053, - 133053, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133054, - 133065, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 133066, - 133066, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 133067, - 133081, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 133082, - 133082, - null - ], - [ - "ident-token", - "top", - 133083, - 133085, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 133086, - 133086, - null - ], - [ - "number-token", - "0", - 133087, - 133087, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133088, - 133088, - null - ], - [ - "ident-token", - "left", - 133089, - 133092, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 133093, - 133093, - null - ], - [ - "number-token", - "0", - 133094, - 133094, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133095, - 133095, - null - ], - [ - "ident-token", - "width", - 133096, - 133100, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 133101, - 133101, - null - ], - [ - "function-token", - "var(", - 133102, - 133105, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 133106, - 133125, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 133126, - 133126, - null - ], - [ - "semicolon-token", - ";", - 133127, - 133127, - null - ], - [ - "ident-token", - "border-right", - 133128, - 133139, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 133140, - 133140, - null - ], - [ - "function-token", - "var(", - 133141, - 133144, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 133145, - 133171, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 133172, - 133172, - null - ], - [ - "whitespace-token", - " ", - 133173, - 133173, - null - ], - [ - "ident-token", - "solid", - 133174, - 133178, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 133179, - 133179, - null - ], - [ - "function-token", - "var(", - 133180, - 133183, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 133184, - 133210, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 133211, - 133211, - null - ], - [ - "semicolon-token", - ";", - 133212, - 133212, - null - ], - [ - "ident-token", - "transform", - 133213, - 133221, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 133222, - 133222, - null - ], - [ - "function-token", - "translateX(", - 133223, - 133233, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 133234, - 133238, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 133239, - 133239, - null - ], - [ - "}-token", - "}", - 133240, - 133240, - null - ], - [ - "}-token", - "}", - 133241, - 133241, - null - ], - [ - "at-keyword-token", - "@media", - 133242, - 133247, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 133248, - 133248, - null - ], - [ - "(-token", - "(", - 133249, - 133249, - null - ], - [ - "ident-token", - "max-width", - 133250, - 133258, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 133259, - 133259, - null - ], - [ - "dimension-token", - "1199.98px", - 133260, - 133268, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 133269, - 133269, - null - ], - [ - "{-token", - "{", - 133270, - 133270, - null - ], - [ - "delim-token", - ".", - 133271, - 133271, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133272, - 133283, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 133284, - 133284, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 133285, - 133297, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 133298, - 133298, - null - ], - [ - "ident-token", - "top", - 133299, - 133301, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 133302, - 133302, - null - ], - [ - "number-token", - "0", - 133303, - 133303, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133304, - 133304, - null - ], - [ - "ident-token", - "right", - 133305, - 133309, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 133310, - 133310, - null - ], - [ - "number-token", - "0", - 133311, - 133311, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133312, - 133312, - null - ], - [ - "ident-token", - "width", - 133313, - 133317, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 133318, - 133318, - null - ], - [ - "function-token", - "var(", - 133319, - 133322, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 133323, - 133342, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 133343, - 133343, - null - ], - [ - "semicolon-token", - ";", - 133344, - 133344, - null - ], - [ - "ident-token", - "border-left", - 133345, - 133355, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 133356, - 133356, - null - ], - [ - "function-token", - "var(", - 133357, - 133360, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 133361, - 133387, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 133388, - 133388, - null - ], - [ - "whitespace-token", - " ", - 133389, - 133389, - null - ], - [ - "ident-token", - "solid", - 133390, - 133394, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 133395, - 133395, - null - ], - [ - "function-token", - "var(", - 133396, - 133399, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 133400, - 133426, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 133427, - 133427, - null - ], - [ - "semicolon-token", - ";", - 133428, - 133428, - null - ], - [ - "ident-token", - "transform", - 133429, - 133437, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 133438, - 133438, - null - ], - [ - "function-token", - "translateX(", - 133439, - 133449, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 133450, - 133453, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 133454, - 133454, - null - ], - [ - "}-token", - "}", - 133455, - 133455, - null - ], - [ - "}-token", - "}", - 133456, - 133456, - null - ], - [ - "at-keyword-token", - "@media", - 133457, - 133462, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 133463, - 133463, - null - ], - [ - "(-token", - "(", - 133464, - 133464, - null - ], - [ - "ident-token", - "max-width", - 133465, - 133473, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 133474, - 133474, - null - ], - [ - "dimension-token", - "1199.98px", - 133475, - 133483, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 133484, - 133484, - null - ], - [ - "{-token", - "{", - 133485, - 133485, - null - ], - [ - "delim-token", - ".", - 133486, - 133486, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133487, - 133498, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 133499, - 133499, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 133500, - 133512, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 133513, - 133513, - null - ], - [ - "ident-token", - "top", - 133514, - 133516, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 133517, - 133517, - null - ], - [ - "number-token", - "0", - 133518, - 133518, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133519, - 133519, - null - ], - [ - "ident-token", - "right", - 133520, - 133524, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 133525, - 133525, - null - ], - [ - "number-token", - "0", - 133526, - 133526, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133527, - 133527, - null - ], - [ - "ident-token", - "left", - 133528, - 133531, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 133532, - 133532, - null - ], - [ - "number-token", - "0", - 133533, - 133533, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133534, - 133534, - null - ], - [ - "ident-token", - "height", - 133535, - 133540, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 133541, - 133541, - null - ], - [ - "function-token", - "var(", - 133542, - 133545, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 133546, - 133566, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 133567, - 133567, - null - ], - [ - "semicolon-token", - ";", - 133568, - 133568, - null - ], - [ - "ident-token", - "max-height", - 133569, - 133578, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 133579, - 133579, - null - ], - [ - "percentage-token", - "100%", - 133580, - 133583, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 133584, - 133584, - null - ], - [ - "ident-token", - "border-bottom", - 133585, - 133597, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 133598, - 133598, - null - ], - [ - "function-token", - "var(", - 133599, - 133602, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 133603, - 133629, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 133630, - 133630, - null - ], - [ - "whitespace-token", - " ", - 133631, - 133631, - null - ], - [ - "ident-token", - "solid", - 133632, - 133636, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 133637, - 133637, - null - ], - [ - "function-token", - "var(", - 133638, - 133641, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 133642, - 133668, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 133669, - 133669, - null - ], - [ - "semicolon-token", - ";", - 133670, - 133670, - null - ], - [ - "ident-token", - "transform", - 133671, - 133679, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 133680, - 133680, - null - ], - [ - "function-token", - "translateY(", - 133681, - 133691, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 133692, - 133696, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 133697, - 133697, - null - ], - [ - "}-token", - "}", - 133698, - 133698, - null - ], - [ - "}-token", - "}", - 133699, - 133699, - null - ], - [ - "at-keyword-token", - "@media", - 133700, - 133705, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 133706, - 133706, - null - ], - [ - "(-token", - "(", - 133707, - 133707, - null - ], - [ - "ident-token", - "max-width", - 133708, - 133716, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 133717, - 133717, - null - ], - [ - "dimension-token", - "1199.98px", - 133718, - 133726, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 133727, - 133727, - null - ], - [ - "{-token", - "{", - 133728, - 133728, - null - ], - [ - "delim-token", - ".", - 133729, - 133729, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133730, - 133741, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 133742, - 133742, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 133743, - 133758, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 133759, - 133759, - null - ], - [ - "ident-token", - "right", - 133760, - 133764, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 133765, - 133765, - null - ], - [ - "number-token", - "0", - 133766, - 133766, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133767, - 133767, - null - ], - [ - "ident-token", - "left", - 133768, - 133771, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 133772, - 133772, - null - ], - [ - "number-token", - "0", - 133773, - 133773, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 133774, - 133774, - null - ], - [ - "ident-token", - "height", - 133775, - 133780, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 133781, - 133781, - null - ], - [ - "function-token", - "var(", - 133782, - 133785, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 133786, - 133806, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 133807, - 133807, - null - ], - [ - "semicolon-token", - ";", - 133808, - 133808, - null - ], - [ - "ident-token", - "max-height", - 133809, - 133818, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 133819, - 133819, - null - ], - [ - "percentage-token", - "100%", - 133820, - 133823, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 133824, - 133824, - null - ], - [ - "ident-token", - "border-top", - 133825, - 133834, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 133835, - 133835, - null - ], - [ - "function-token", - "var(", - 133836, - 133839, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 133840, - 133866, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 133867, - 133867, - null - ], - [ - "whitespace-token", - " ", - 133868, - 133868, - null - ], - [ - "ident-token", - "solid", - 133869, - 133873, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 133874, - 133874, - null - ], - [ - "function-token", - "var(", - 133875, - 133878, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 133879, - 133905, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 133906, - 133906, - null - ], - [ - "semicolon-token", - ";", - 133907, - 133907, - null - ], - [ - "ident-token", - "transform", - 133908, - 133916, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 133917, - 133917, - null - ], - [ - "function-token", - "translateY(", - 133918, - 133928, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 133929, - 133932, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 133933, - 133933, - null - ], - [ - "}-token", - "}", - 133934, - 133934, - null - ], - [ - "}-token", - "}", - 133935, - 133935, - null - ], - [ - "at-keyword-token", - "@media", - 133936, - 133941, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 133942, - 133942, - null - ], - [ - "(-token", - "(", - 133943, - 133943, - null - ], - [ - "ident-token", - "max-width", - 133944, - 133952, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 133953, - 133953, - null - ], - [ - "dimension-token", - "1199.98px", - 133954, - 133962, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 133963, - 133963, - null - ], - [ - "{-token", - "{", - 133964, - 133964, - null - ], - [ - "delim-token", - ".", - 133965, - 133965, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133966, - 133977, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 133978, - 133978, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 133979, - 133982, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 133983, - 133983, - null - ], - [ - "function-token", - "not(", - 133984, - 133987, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 133988, - 133988, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 133989, - 133994, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 133995, - 133995, - null - ], - [ - "comma-token", - ",", - 133996, - 133996, - null - ], - [ - "delim-token", - ".", - 133997, - 133997, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 133998, - 134009, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 134010, - 134010, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 134011, - 134017, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 134018, - 134018, - null - ], - [ - "ident-token", - "transform", - 134019, - 134027, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 134028, - 134028, - null - ], - [ - "ident-token", - "none", - 134029, - 134032, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 134033, - 134033, - null - ], - [ - "}-token", - "}", - 134034, - 134034, - null - ], - [ - "at-keyword-token", - "@media", - 134035, - 134040, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 134041, - 134041, - null - ], - [ - "(-token", - "(", - 134042, - 134042, - null - ], - [ - "ident-token", - "max-width", - 134043, - 134051, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 134052, - 134052, - null - ], - [ - "dimension-token", - "1199.98px", - 134053, - 134061, - { - "value": 1199.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 134062, - 134062, - null - ], - [ - "{-token", - "{", - 134063, - 134063, - null - ], - [ - "delim-token", - ".", - 134064, - 134064, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134065, - 134076, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 134077, - 134077, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 134078, - 134083, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 134084, - 134084, - null - ], - [ - "delim-token", - ".", - 134085, - 134085, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134086, - 134097, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 134098, - 134098, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 134099, - 134102, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 134103, - 134103, - null - ], - [ - "delim-token", - ".", - 134104, - 134104, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134105, - 134116, - { - "value": "offcanvas-xl" - } - ], - [ - "delim-token", - ".", - 134117, - 134117, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 134118, - 134124, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 134125, - 134125, - null - ], - [ - "ident-token", - "visibility", - 134126, - 134135, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 134136, - 134136, - null - ], - [ - "ident-token", - "visible", - 134137, - 134143, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 134144, - 134144, - null - ], - [ - "}-token", - "}", - 134145, - 134145, - null - ], - [ - "at-keyword-token", - "@media", - 134146, - 134151, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 134152, - 134152, - null - ], - [ - "(-token", - "(", - 134153, - 134153, - null - ], - [ - "ident-token", - "min-width", - 134154, - 134162, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 134163, - 134163, - null - ], - [ - "dimension-token", - "1200px", - 134164, - 134169, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 134170, - 134170, - null - ], - [ - "{-token", - "{", - 134171, - 134171, - null - ], - [ - "delim-token", - ".", - 134172, - 134172, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134173, - 134184, - { - "value": "offcanvas-xl" - } - ], - [ - "{-token", - "{", - 134185, - 134185, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 134186, - 134206, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 134207, - 134207, - null - ], - [ - "ident-token", - "auto", - 134208, - 134211, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 134212, - 134212, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 134213, - 134239, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 134240, - 134240, - null - ], - [ - "number-token", - "0", - 134241, - 134241, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134242, - 134242, - null - ], - [ - "ident-token", - "background-color", - 134243, - 134258, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 134259, - 134259, - null - ], - [ - "ident-token", - "transparent", - 134260, - 134270, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 134271, - 134271, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 134272, - 134280, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 134281, - 134281, - null - ], - [ - "delim-token", - ".", - 134282, - 134282, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134283, - 134294, - { - "value": "offcanvas-xl" - } - ], - [ - "whitespace-token", - " ", - 134295, - 134295, - null - ], - [ - "delim-token", - ".", - 134296, - 134296, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 134297, - 134312, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 134313, - 134313, - null - ], - [ - "ident-token", - "display", - 134314, - 134320, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 134321, - 134321, - null - ], - [ - "ident-token", - "none", - 134322, - 134325, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 134326, - 134326, - null - ], - [ - "delim-token", - ".", - 134327, - 134327, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xl", - 134328, - 134339, - { - "value": "offcanvas-xl" - } - ], - [ - "whitespace-token", - " ", - 134340, - 134340, - null - ], - [ - "delim-token", - ".", - 134341, - 134341, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 134342, - 134355, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 134356, - 134356, - null - ], - [ - "ident-token", - "display", - 134357, - 134363, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 134364, - 134364, - null - ], - [ - "ident-token", - "flex", - 134365, - 134368, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 134369, - 134369, - null - ], - [ - "ident-token", - "flex-grow", - 134370, - 134378, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 134379, - 134379, - null - ], - [ - "number-token", - "0", - 134380, - 134380, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134381, - 134381, - null - ], - [ - "ident-token", - "padding", - 134382, - 134388, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 134389, - 134389, - null - ], - [ - "number-token", - "0", - 134390, - 134390, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134391, - 134391, - null - ], - [ - "ident-token", - "overflow-y", - 134392, - 134401, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 134402, - 134402, - null - ], - [ - "ident-token", - "visible", - 134403, - 134409, - { - "value": "visible" - } - ], - [ - "semicolon-token", - ";", - 134410, - 134410, - null - ], - [ - "ident-token", - "background-color", - 134411, - 134426, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 134427, - 134427, - null - ], - [ - "ident-token", - "transparent", - 134428, - 134438, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 134439, - 134439, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 134440, - 134448, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 134449, - 134449, - null - ], - [ - "}-token", - "}", - 134450, - 134450, - null - ], - [ - "at-keyword-token", - "@media", - 134451, - 134456, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 134457, - 134457, - null - ], - [ - "(-token", - "(", - 134458, - 134458, - null - ], - [ - "ident-token", - "max-width", - 134459, - 134467, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 134468, - 134468, - null - ], - [ - "dimension-token", - "1399.98px", - 134469, - 134477, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 134478, - 134478, - null - ], - [ - "{-token", - "{", - 134479, - 134479, - null - ], - [ - "delim-token", - ".", - 134480, - 134480, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 134481, - 134493, - { - "value": "offcanvas-xxl" - } - ], - [ - "{-token", - "{", - 134494, - 134494, - null - ], - [ - "ident-token", - "position", - 134495, - 134502, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 134503, - 134503, - null - ], - [ - "ident-token", - "fixed", - 134504, - 134508, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 134509, - 134509, - null - ], - [ - "ident-token", - "bottom", - 134510, - 134515, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 134516, - 134516, - null - ], - [ - "number-token", - "0", - 134517, - 134517, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134518, - 134518, - null - ], - [ - "ident-token", - "z-index", - 134519, - 134525, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 134526, - 134526, - null - ], - [ - "function-token", - "var(", - 134527, - 134530, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 134531, - 134551, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 134552, - 134552, - null - ], - [ - "semicolon-token", - ";", - 134553, - 134553, - null - ], - [ - "ident-token", - "display", - 134554, - 134560, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 134561, - 134561, - null - ], - [ - "ident-token", - "flex", - 134562, - 134565, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 134566, - 134566, - null - ], - [ - "ident-token", - "flex-direction", - 134567, - 134580, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 134581, - 134581, - null - ], - [ - "ident-token", - "column", - 134582, - 134587, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 134588, - 134588, - null - ], - [ - "ident-token", - "max-width", - 134589, - 134597, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 134598, - 134598, - null - ], - [ - "percentage-token", - "100%", - 134599, - 134602, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 134603, - 134603, - null - ], - [ - "ident-token", - "color", - 134604, - 134608, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 134609, - 134609, - null - ], - [ - "function-token", - "var(", - 134610, - 134613, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 134614, - 134633, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 134634, - 134634, - null - ], - [ - "semicolon-token", - ";", - 134635, - 134635, - null - ], - [ - "ident-token", - "visibility", - 134636, - 134645, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 134646, - 134646, - null - ], - [ - "ident-token", - "hidden", - 134647, - 134652, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 134653, - 134653, - null - ], - [ - "ident-token", - "background-color", - 134654, - 134669, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 134670, - 134670, - null - ], - [ - "function-token", - "var(", - 134671, - 134674, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 134675, - 134691, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 134692, - 134692, - null - ], - [ - "semicolon-token", - ";", - 134693, - 134693, - null - ], - [ - "ident-token", - "background-clip", - 134694, - 134708, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 134709, - 134709, - null - ], - [ - "ident-token", - "padding-box", - 134710, - 134720, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 134721, - 134721, - null - ], - [ - "ident-token", - "outline", - 134722, - 134728, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 134729, - 134729, - null - ], - [ - "number-token", - "0", - 134730, - 134730, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134731, - 134731, - null - ], - [ - "ident-token", - "transition", - 134732, - 134741, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 134742, - 134742, - null - ], - [ - "ident-token", - "transform", - 134743, - 134751, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 134752, - 134752, - null - ], - [ - "dimension-token", - ".3s", - 134753, - 134755, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 134756, - 134756, - null - ], - [ - "ident-token", - "ease-in-out", - 134757, - 134767, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 134768, - 134768, - null - ], - [ - "}-token", - "}", - 134769, - 134769, - null - ], - [ - "at-keyword-token", - "@media", - 134770, - 134775, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 134776, - 134776, - null - ], - [ - "(-token", - "(", - 134777, - 134777, - null - ], - [ - "ident-token", - "max-width", - 134778, - 134786, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 134787, - 134787, - null - ], - [ - "dimension-token", - "1399.98px", - 134788, - 134796, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 134797, - 134797, - null - ], - [ - "whitespace-token", - " ", - 134798, - 134798, - null - ], - [ - "ident-token", - "and", - 134799, - 134801, - { - "value": "and" - } - ], - [ - "whitespace-token", - " ", - 134802, - 134802, - null - ], - [ - "(-token", - "(", - 134803, - 134803, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 134804, - 134825, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 134826, - 134826, - null - ], - [ - "ident-token", - "reduce", - 134827, - 134832, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 134833, - 134833, - null - ], - [ - "{-token", - "{", - 134834, - 134834, - null - ], - [ - "delim-token", - ".", - 134835, - 134835, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 134836, - 134848, - { - "value": "offcanvas-xxl" - } - ], - [ - "{-token", - "{", - 134849, - 134849, - null - ], - [ - "ident-token", - "transition", - 134850, - 134859, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 134860, - 134860, - null - ], - [ - "ident-token", - "none", - 134861, - 134864, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 134865, - 134865, - null - ], - [ - "}-token", - "}", - 134866, - 134866, - null - ], - [ - "at-keyword-token", - "@media", - 134867, - 134872, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 134873, - 134873, - null - ], - [ - "(-token", - "(", - 134874, - 134874, - null - ], - [ - "ident-token", - "max-width", - 134875, - 134883, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 134884, - 134884, - null - ], - [ - "dimension-token", - "1399.98px", - 134885, - 134893, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 134894, - 134894, - null - ], - [ - "{-token", - "{", - 134895, - 134895, - null - ], - [ - "delim-token", - ".", - 134896, - 134896, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 134897, - 134909, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 134910, - 134910, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 134911, - 134925, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 134926, - 134926, - null - ], - [ - "ident-token", - "top", - 134927, - 134929, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 134930, - 134930, - null - ], - [ - "number-token", - "0", - 134931, - 134931, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134932, - 134932, - null - ], - [ - "ident-token", - "left", - 134933, - 134936, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 134937, - 134937, - null - ], - [ - "number-token", - "0", - 134938, - 134938, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 134939, - 134939, - null - ], - [ - "ident-token", - "width", - 134940, - 134944, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 134945, - 134945, - null - ], - [ - "function-token", - "var(", - 134946, - 134949, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 134950, - 134969, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 134970, - 134970, - null - ], - [ - "semicolon-token", - ";", - 134971, - 134971, - null - ], - [ - "ident-token", - "border-right", - 134972, - 134983, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 134984, - 134984, - null - ], - [ - "function-token", - "var(", - 134985, - 134988, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 134989, - 135015, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 135016, - 135016, - null - ], - [ - "whitespace-token", - " ", - 135017, - 135017, - null - ], - [ - "ident-token", - "solid", - 135018, - 135022, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 135023, - 135023, - null - ], - [ - "function-token", - "var(", - 135024, - 135027, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 135028, - 135054, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 135055, - 135055, - null - ], - [ - "semicolon-token", - ";", - 135056, - 135056, - null - ], - [ - "ident-token", - "transform", - 135057, - 135065, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 135066, - 135066, - null - ], - [ - "function-token", - "translateX(", - 135067, - 135077, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 135078, - 135082, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 135083, - 135083, - null - ], - [ - "}-token", - "}", - 135084, - 135084, - null - ], - [ - "}-token", - "}", - 135085, - 135085, - null - ], - [ - "at-keyword-token", - "@media", - 135086, - 135091, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 135092, - 135092, - null - ], - [ - "(-token", - "(", - 135093, - 135093, - null - ], - [ - "ident-token", - "max-width", - 135094, - 135102, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 135103, - 135103, - null - ], - [ - "dimension-token", - "1399.98px", - 135104, - 135112, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 135113, - 135113, - null - ], - [ - "{-token", - "{", - 135114, - 135114, - null - ], - [ - "delim-token", - ".", - 135115, - 135115, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135116, - 135128, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135129, - 135129, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 135130, - 135142, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 135143, - 135143, - null - ], - [ - "ident-token", - "top", - 135144, - 135146, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 135147, - 135147, - null - ], - [ - "number-token", - "0", - 135148, - 135148, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135149, - 135149, - null - ], - [ - "ident-token", - "right", - 135150, - 135154, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 135155, - 135155, - null - ], - [ - "number-token", - "0", - 135156, - 135156, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135157, - 135157, - null - ], - [ - "ident-token", - "width", - 135158, - 135162, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 135163, - 135163, - null - ], - [ - "function-token", - "var(", - 135164, - 135167, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 135168, - 135187, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 135188, - 135188, - null - ], - [ - "semicolon-token", - ";", - 135189, - 135189, - null - ], - [ - "ident-token", - "border-left", - 135190, - 135200, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 135201, - 135201, - null - ], - [ - "function-token", - "var(", - 135202, - 135205, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 135206, - 135232, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 135233, - 135233, - null - ], - [ - "whitespace-token", - " ", - 135234, - 135234, - null - ], - [ - "ident-token", - "solid", - 135235, - 135239, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 135240, - 135240, - null - ], - [ - "function-token", - "var(", - 135241, - 135244, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 135245, - 135271, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 135272, - 135272, - null - ], - [ - "semicolon-token", - ";", - 135273, - 135273, - null - ], - [ - "ident-token", - "transform", - 135274, - 135282, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 135283, - 135283, - null - ], - [ - "function-token", - "translateX(", - 135284, - 135294, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 135295, - 135298, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 135299, - 135299, - null - ], - [ - "}-token", - "}", - 135300, - 135300, - null - ], - [ - "}-token", - "}", - 135301, - 135301, - null - ], - [ - "at-keyword-token", - "@media", - 135302, - 135307, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 135308, - 135308, - null - ], - [ - "(-token", - "(", - 135309, - 135309, - null - ], - [ - "ident-token", - "max-width", - 135310, - 135318, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 135319, - 135319, - null - ], - [ - "dimension-token", - "1399.98px", - 135320, - 135328, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 135329, - 135329, - null - ], - [ - "{-token", - "{", - 135330, - 135330, - null - ], - [ - "delim-token", - ".", - 135331, - 135331, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135332, - 135344, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135345, - 135345, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 135346, - 135358, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 135359, - 135359, - null - ], - [ - "ident-token", - "top", - 135360, - 135362, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 135363, - 135363, - null - ], - [ - "number-token", - "0", - 135364, - 135364, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135365, - 135365, - null - ], - [ - "ident-token", - "right", - 135366, - 135370, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 135371, - 135371, - null - ], - [ - "number-token", - "0", - 135372, - 135372, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135373, - 135373, - null - ], - [ - "ident-token", - "left", - 135374, - 135377, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 135378, - 135378, - null - ], - [ - "number-token", - "0", - 135379, - 135379, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135380, - 135380, - null - ], - [ - "ident-token", - "height", - 135381, - 135386, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 135387, - 135387, - null - ], - [ - "function-token", - "var(", - 135388, - 135391, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 135392, - 135412, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 135413, - 135413, - null - ], - [ - "semicolon-token", - ";", - 135414, - 135414, - null - ], - [ - "ident-token", - "max-height", - 135415, - 135424, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 135425, - 135425, - null - ], - [ - "percentage-token", - "100%", - 135426, - 135429, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 135430, - 135430, - null - ], - [ - "ident-token", - "border-bottom", - 135431, - 135443, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 135444, - 135444, - null - ], - [ - "function-token", - "var(", - 135445, - 135448, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 135449, - 135475, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 135476, - 135476, - null - ], - [ - "whitespace-token", - " ", - 135477, - 135477, - null - ], - [ - "ident-token", - "solid", - 135478, - 135482, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 135483, - 135483, - null - ], - [ - "function-token", - "var(", - 135484, - 135487, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 135488, - 135514, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 135515, - 135515, - null - ], - [ - "semicolon-token", - ";", - 135516, - 135516, - null - ], - [ - "ident-token", - "transform", - 135517, - 135525, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 135526, - 135526, - null - ], - [ - "function-token", - "translateY(", - 135527, - 135537, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 135538, - 135542, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 135543, - 135543, - null - ], - [ - "}-token", - "}", - 135544, - 135544, - null - ], - [ - "}-token", - "}", - 135545, - 135545, - null - ], - [ - "at-keyword-token", - "@media", - 135546, - 135551, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 135552, - 135552, - null - ], - [ - "(-token", - "(", - 135553, - 135553, - null - ], - [ - "ident-token", - "max-width", - 135554, - 135562, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 135563, - 135563, - null - ], - [ - "dimension-token", - "1399.98px", - 135564, - 135572, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 135573, - 135573, - null - ], - [ - "{-token", - "{", - 135574, - 135574, - null - ], - [ - "delim-token", - ".", - 135575, - 135575, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135576, - 135588, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135589, - 135589, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 135590, - 135605, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 135606, - 135606, - null - ], - [ - "ident-token", - "right", - 135607, - 135611, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 135612, - 135612, - null - ], - [ - "number-token", - "0", - 135613, - 135613, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135614, - 135614, - null - ], - [ - "ident-token", - "left", - 135615, - 135618, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 135619, - 135619, - null - ], - [ - "number-token", - "0", - 135620, - 135620, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 135621, - 135621, - null - ], - [ - "ident-token", - "height", - 135622, - 135627, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 135628, - 135628, - null - ], - [ - "function-token", - "var(", - 135629, - 135632, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 135633, - 135653, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 135654, - 135654, - null - ], - [ - "semicolon-token", - ";", - 135655, - 135655, - null - ], - [ - "ident-token", - "max-height", - 135656, - 135665, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 135666, - 135666, - null - ], - [ - "percentage-token", - "100%", - 135667, - 135670, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 135671, - 135671, - null - ], - [ - "ident-token", - "border-top", - 135672, - 135681, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 135682, - 135682, - null - ], - [ - "function-token", - "var(", - 135683, - 135686, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 135687, - 135713, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 135714, - 135714, - null - ], - [ - "whitespace-token", - " ", - 135715, - 135715, - null - ], - [ - "ident-token", - "solid", - 135716, - 135720, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 135721, - 135721, - null - ], - [ - "function-token", - "var(", - 135722, - 135725, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 135726, - 135752, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 135753, - 135753, - null - ], - [ - "semicolon-token", - ";", - 135754, - 135754, - null - ], - [ - "ident-token", - "transform", - 135755, - 135763, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 135764, - 135764, - null - ], - [ - "function-token", - "translateY(", - 135765, - 135775, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 135776, - 135779, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 135780, - 135780, - null - ], - [ - "}-token", - "}", - 135781, - 135781, - null - ], - [ - "}-token", - "}", - 135782, - 135782, - null - ], - [ - "at-keyword-token", - "@media", - 135783, - 135788, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 135789, - 135789, - null - ], - [ - "(-token", - "(", - 135790, - 135790, - null - ], - [ - "ident-token", - "max-width", - 135791, - 135799, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 135800, - 135800, - null - ], - [ - "dimension-token", - "1399.98px", - 135801, - 135809, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 135810, - 135810, - null - ], - [ - "{-token", - "{", - 135811, - 135811, - null - ], - [ - "delim-token", - ".", - 135812, - 135812, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135813, - 135825, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135826, - 135826, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 135827, - 135830, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 135831, - 135831, - null - ], - [ - "function-token", - "not(", - 135832, - 135835, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 135836, - 135836, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 135837, - 135842, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 135843, - 135843, - null - ], - [ - "comma-token", - ",", - 135844, - 135844, - null - ], - [ - "delim-token", - ".", - 135845, - 135845, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135846, - 135858, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135859, - 135859, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 135860, - 135866, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 135867, - 135867, - null - ], - [ - "ident-token", - "transform", - 135868, - 135876, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 135877, - 135877, - null - ], - [ - "ident-token", - "none", - 135878, - 135881, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 135882, - 135882, - null - ], - [ - "}-token", - "}", - 135883, - 135883, - null - ], - [ - "at-keyword-token", - "@media", - 135884, - 135889, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 135890, - 135890, - null - ], - [ - "(-token", - "(", - 135891, - 135891, - null - ], - [ - "ident-token", - "max-width", - 135892, - 135900, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 135901, - 135901, - null - ], - [ - "dimension-token", - "1399.98px", - 135902, - 135910, - { - "value": 1399.98, - "type": "number", - "unit": "px" - } - ], - [ - ")-token", - ")", - 135911, - 135911, - null - ], - [ - "{-token", - "{", - 135912, - 135912, - null - ], - [ - "delim-token", - ".", - 135913, - 135913, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135914, - 135926, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135927, - 135927, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 135928, - 135933, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 135934, - 135934, - null - ], - [ - "delim-token", - ".", - 135935, - 135935, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135936, - 135948, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135949, - 135949, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 135950, - 135953, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 135954, - 135954, - null - ], - [ - "delim-token", - ".", - 135955, - 135955, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 135956, - 135968, - { - "value": "offcanvas-xxl" - } - ], - [ - "delim-token", - ".", - 135969, - 135969, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 135970, - 135976, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 135977, - 135977, - null - ], - [ - "ident-token", - "visibility", - 135978, - 135987, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 135988, - 135988, - null - ], - [ - "ident-token", - "visible", - 135989, - 135995, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 135996, - 135996, - null - ], - [ - "}-token", - "}", - 135997, - 135997, - null - ], - [ - "at-keyword-token", - "@media", - 135998, - 136003, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 136004, - 136004, - null - ], - [ - "(-token", - "(", - 136005, - 136005, - null - ], - [ - "ident-token", - "min-width", - 136006, - 136014, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 136015, - 136015, - null - ], - [ - "dimension-token", - "1400px", - 136016, - 136021, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 136022, - 136022, - null - ], - [ - "{-token", - "{", - 136023, - 136023, - null - ], - [ - "delim-token", - ".", - 136024, - 136024, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 136025, - 136037, - { - "value": "offcanvas-xxl" - } - ], - [ - "{-token", - "{", - 136038, - 136038, - null - ], - [ - "ident-token", - "--bs-offcanvas-height", - 136039, - 136059, - { - "value": "--bs-offcanvas-height" - } - ], - [ - "colon-token", - ":", - 136060, - 136060, - null - ], - [ - "ident-token", - "auto", - 136061, - 136064, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 136065, - 136065, - null - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 136066, - 136092, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - "colon-token", - ":", - 136093, - 136093, - null - ], - [ - "number-token", - "0", - 136094, - 136094, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136095, - 136095, - null - ], - [ - "ident-token", - "background-color", - 136096, - 136111, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 136112, - 136112, - null - ], - [ - "ident-token", - "transparent", - 136113, - 136123, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 136124, - 136124, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 136125, - 136133, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 136134, - 136134, - null - ], - [ - "delim-token", - ".", - 136135, - 136135, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 136136, - 136148, - { - "value": "offcanvas-xxl" - } - ], - [ - "whitespace-token", - " ", - 136149, - 136149, - null - ], - [ - "delim-token", - ".", - 136150, - 136150, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 136151, - 136166, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 136167, - 136167, - null - ], - [ - "ident-token", - "display", - 136168, - 136174, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 136175, - 136175, - null - ], - [ - "ident-token", - "none", - 136176, - 136179, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 136180, - 136180, - null - ], - [ - "delim-token", - ".", - 136181, - 136181, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-xxl", - 136182, - 136194, - { - "value": "offcanvas-xxl" - } - ], - [ - "whitespace-token", - " ", - 136195, - 136195, - null - ], - [ - "delim-token", - ".", - 136196, - 136196, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 136197, - 136210, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 136211, - 136211, - null - ], - [ - "ident-token", - "display", - 136212, - 136218, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 136219, - 136219, - null - ], - [ - "ident-token", - "flex", - 136220, - 136223, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 136224, - 136224, - null - ], - [ - "ident-token", - "flex-grow", - 136225, - 136233, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 136234, - 136234, - null - ], - [ - "number-token", - "0", - 136235, - 136235, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136236, - 136236, - null - ], - [ - "ident-token", - "padding", - 136237, - 136243, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 136244, - 136244, - null - ], - [ - "number-token", - "0", - 136245, - 136245, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136246, - 136246, - null - ], - [ - "ident-token", - "overflow-y", - 136247, - 136256, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 136257, - 136257, - null - ], - [ - "ident-token", - "visible", - 136258, - 136264, - { - "value": "visible" - } - ], - [ - "semicolon-token", - ";", - 136265, - 136265, - null - ], - [ - "ident-token", - "background-color", - 136266, - 136281, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 136282, - 136282, - null - ], - [ - "ident-token", - "transparent", - 136283, - 136293, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 136294, - 136294, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 136295, - 136303, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 136304, - 136304, - null - ], - [ - "}-token", - "}", - 136305, - 136305, - null - ], - [ - "delim-token", - ".", - 136306, - 136306, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 136307, - 136315, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 136316, - 136316, - null - ], - [ - "ident-token", - "position", - 136317, - 136324, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 136325, - 136325, - null - ], - [ - "ident-token", - "fixed", - 136326, - 136330, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 136331, - 136331, - null - ], - [ - "ident-token", - "bottom", - 136332, - 136337, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 136338, - 136338, - null - ], - [ - "number-token", - "0", - 136339, - 136339, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136340, - 136340, - null - ], - [ - "ident-token", - "z-index", - 136341, - 136347, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 136348, - 136348, - null - ], - [ - "function-token", - "var(", - 136349, - 136352, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-zindex", - 136353, - 136373, - { - "value": "--bs-offcanvas-zindex" - } - ], - [ - ")-token", - ")", - 136374, - 136374, - null - ], - [ - "semicolon-token", - ";", - 136375, - 136375, - null - ], - [ - "ident-token", - "display", - 136376, - 136382, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 136383, - 136383, - null - ], - [ - "ident-token", - "flex", - 136384, - 136387, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 136388, - 136388, - null - ], - [ - "ident-token", - "flex-direction", - 136389, - 136402, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 136403, - 136403, - null - ], - [ - "ident-token", - "column", - 136404, - 136409, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 136410, - 136410, - null - ], - [ - "ident-token", - "max-width", - 136411, - 136419, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 136420, - 136420, - null - ], - [ - "percentage-token", - "100%", - 136421, - 136424, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 136425, - 136425, - null - ], - [ - "ident-token", - "color", - 136426, - 136430, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 136431, - 136431, - null - ], - [ - "function-token", - "var(", - 136432, - 136435, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-color", - 136436, - 136455, - { - "value": "--bs-offcanvas-color" - } - ], - [ - ")-token", - ")", - 136456, - 136456, - null - ], - [ - "semicolon-token", - ";", - 136457, - 136457, - null - ], - [ - "ident-token", - "visibility", - 136458, - 136467, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 136468, - 136468, - null - ], - [ - "ident-token", - "hidden", - 136469, - 136474, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 136475, - 136475, - null - ], - [ - "ident-token", - "background-color", - 136476, - 136491, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 136492, - 136492, - null - ], - [ - "function-token", - "var(", - 136493, - 136496, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-bg", - 136497, - 136513, - { - "value": "--bs-offcanvas-bg" - } - ], - [ - ")-token", - ")", - 136514, - 136514, - null - ], - [ - "semicolon-token", - ";", - 136515, - 136515, - null - ], - [ - "ident-token", - "background-clip", - 136516, - 136530, - { - "value": "background-clip" - } - ], - [ - "colon-token", - ":", - 136531, - 136531, - null - ], - [ - "ident-token", - "padding-box", - 136532, - 136542, - { - "value": "padding-box" - } - ], - [ - "semicolon-token", - ";", - 136543, - 136543, - null - ], - [ - "ident-token", - "outline", - 136544, - 136550, - { - "value": "outline" - } - ], - [ - "colon-token", - ":", - 136551, - 136551, - null - ], - [ - "number-token", - "0", - 136552, - 136552, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136553, - 136553, - null - ], - [ - "ident-token", - "transition", - 136554, - 136563, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 136564, - 136564, - null - ], - [ - "ident-token", - "transform", - 136565, - 136573, - { - "value": "transform" - } - ], - [ - "whitespace-token", - " ", - 136574, - 136574, - null - ], - [ - "dimension-token", - ".3s", - 136575, - 136577, - { - "value": 0.3, - "type": "number", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 136578, - 136578, - null - ], - [ - "ident-token", - "ease-in-out", - 136579, - 136589, - { - "value": "ease-in-out" - } - ], - [ - "}-token", - "}", - 136590, - 136590, - null - ], - [ - "at-keyword-token", - "@media", - 136591, - 136596, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 136597, - 136597, - null - ], - [ - "(-token", - "(", - 136598, - 136598, - null - ], - [ - "ident-token", - "prefers-reduced-motion", - 136599, - 136620, - { - "value": "prefers-reduced-motion" - } - ], - [ - "colon-token", - ":", - 136621, - 136621, - null - ], - [ - "ident-token", - "reduce", - 136622, - 136627, - { - "value": "reduce" - } - ], - [ - ")-token", - ")", - 136628, - 136628, - null - ], - [ - "{-token", - "{", - 136629, - 136629, - null - ], - [ - "delim-token", - ".", - 136630, - 136630, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 136631, - 136639, - { - "value": "offcanvas" - } - ], - [ - "{-token", - "{", - 136640, - 136640, - null - ], - [ - "ident-token", - "transition", - 136641, - 136650, - { - "value": "transition" - } - ], - [ - "colon-token", - ":", - 136651, - 136651, - null - ], - [ - "ident-token", - "none", - 136652, - 136655, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 136656, - 136656, - null - ], - [ - "}-token", - "}", - 136657, - 136657, - null - ], - [ - "delim-token", - ".", - 136658, - 136658, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 136659, - 136667, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 136668, - 136668, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-start", - 136669, - 136683, - { - "value": "offcanvas-start" - } - ], - [ - "{-token", - "{", - 136684, - 136684, - null - ], - [ - "ident-token", - "top", - 136685, - 136687, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 136688, - 136688, - null - ], - [ - "number-token", - "0", - 136689, - 136689, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136690, - 136690, - null - ], - [ - "ident-token", - "left", - 136691, - 136694, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 136695, - 136695, - null - ], - [ - "number-token", - "0", - 136696, - 136696, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136697, - 136697, - null - ], - [ - "ident-token", - "width", - 136698, - 136702, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 136703, - 136703, - null - ], - [ - "function-token", - "var(", - 136704, - 136707, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 136708, - 136727, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 136728, - 136728, - null - ], - [ - "semicolon-token", - ";", - 136729, - 136729, - null - ], - [ - "ident-token", - "border-right", - 136730, - 136741, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 136742, - 136742, - null - ], - [ - "function-token", - "var(", - 136743, - 136746, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 136747, - 136773, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 136774, - 136774, - null - ], - [ - "whitespace-token", - " ", - 136775, - 136775, - null - ], - [ - "ident-token", - "solid", - 136776, - 136780, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 136781, - 136781, - null - ], - [ - "function-token", - "var(", - 136782, - 136785, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 136786, - 136812, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 136813, - 136813, - null - ], - [ - "semicolon-token", - ";", - 136814, - 136814, - null - ], - [ - "ident-token", - "transform", - 136815, - 136823, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 136824, - 136824, - null - ], - [ - "function-token", - "translateX(", - 136825, - 136835, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-100%", - 136836, - 136840, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 136841, - 136841, - null - ], - [ - "}-token", - "}", - 136842, - 136842, - null - ], - [ - "delim-token", - ".", - 136843, - 136843, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 136844, - 136852, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 136853, - 136853, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-end", - 136854, - 136866, - { - "value": "offcanvas-end" - } - ], - [ - "{-token", - "{", - 136867, - 136867, - null - ], - [ - "ident-token", - "top", - 136868, - 136870, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 136871, - 136871, - null - ], - [ - "number-token", - "0", - 136872, - 136872, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136873, - 136873, - null - ], - [ - "ident-token", - "right", - 136874, - 136878, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 136879, - 136879, - null - ], - [ - "number-token", - "0", - 136880, - 136880, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 136881, - 136881, - null - ], - [ - "ident-token", - "width", - 136882, - 136886, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 136887, - 136887, - null - ], - [ - "function-token", - "var(", - 136888, - 136891, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-width", - 136892, - 136911, - { - "value": "--bs-offcanvas-width" - } - ], - [ - ")-token", - ")", - 136912, - 136912, - null - ], - [ - "semicolon-token", - ";", - 136913, - 136913, - null - ], - [ - "ident-token", - "border-left", - 136914, - 136924, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 136925, - 136925, - null - ], - [ - "function-token", - "var(", - 136926, - 136929, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 136930, - 136956, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 136957, - 136957, - null - ], - [ - "whitespace-token", - " ", - 136958, - 136958, - null - ], - [ - "ident-token", - "solid", - 136959, - 136963, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 136964, - 136964, - null - ], - [ - "function-token", - "var(", - 136965, - 136968, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 136969, - 136995, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 136996, - 136996, - null - ], - [ - "semicolon-token", - ";", - 136997, - 136997, - null - ], - [ - "ident-token", - "transform", - 136998, - 137006, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 137007, - 137007, - null - ], - [ - "function-token", - "translateX(", - 137008, - 137018, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "100%", - 137019, - 137022, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 137023, - 137023, - null - ], - [ - "}-token", - "}", - 137024, - 137024, - null - ], - [ - "delim-token", - ".", - 137025, - 137025, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137026, - 137034, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137035, - 137035, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-top", - 137036, - 137048, - { - "value": "offcanvas-top" - } - ], - [ - "{-token", - "{", - 137049, - 137049, - null - ], - [ - "ident-token", - "top", - 137050, - 137052, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 137053, - 137053, - null - ], - [ - "number-token", - "0", - 137054, - 137054, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137055, - 137055, - null - ], - [ - "ident-token", - "right", - 137056, - 137060, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 137061, - 137061, - null - ], - [ - "number-token", - "0", - 137062, - 137062, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137063, - 137063, - null - ], - [ - "ident-token", - "left", - 137064, - 137067, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 137068, - 137068, - null - ], - [ - "number-token", - "0", - 137069, - 137069, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137070, - 137070, - null - ], - [ - "ident-token", - "height", - 137071, - 137076, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 137077, - 137077, - null - ], - [ - "function-token", - "var(", - 137078, - 137081, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 137082, - 137102, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 137103, - 137103, - null - ], - [ - "semicolon-token", - ";", - 137104, - 137104, - null - ], - [ - "ident-token", - "max-height", - 137105, - 137114, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 137115, - 137115, - null - ], - [ - "percentage-token", - "100%", - 137116, - 137119, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 137120, - 137120, - null - ], - [ - "ident-token", - "border-bottom", - 137121, - 137133, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 137134, - 137134, - null - ], - [ - "function-token", - "var(", - 137135, - 137138, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 137139, - 137165, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 137166, - 137166, - null - ], - [ - "whitespace-token", - " ", - 137167, - 137167, - null - ], - [ - "ident-token", - "solid", - 137168, - 137172, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 137173, - 137173, - null - ], - [ - "function-token", - "var(", - 137174, - 137177, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 137178, - 137204, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 137205, - 137205, - null - ], - [ - "semicolon-token", - ";", - 137206, - 137206, - null - ], - [ - "ident-token", - "transform", - 137207, - 137215, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 137216, - 137216, - null - ], - [ - "function-token", - "translateY(", - 137217, - 137227, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-100%", - 137228, - 137232, - { - "value": -100 - } - ], - [ - ")-token", - ")", - 137233, - 137233, - null - ], - [ - "}-token", - "}", - 137234, - 137234, - null - ], - [ - "delim-token", - ".", - 137235, - 137235, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137236, - 137244, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137245, - 137245, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-bottom", - 137246, - 137261, - { - "value": "offcanvas-bottom" - } - ], - [ - "{-token", - "{", - 137262, - 137262, - null - ], - [ - "ident-token", - "right", - 137263, - 137267, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 137268, - 137268, - null - ], - [ - "number-token", - "0", - 137269, - 137269, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137270, - 137270, - null - ], - [ - "ident-token", - "left", - 137271, - 137274, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 137275, - 137275, - null - ], - [ - "number-token", - "0", - 137276, - 137276, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137277, - 137277, - null - ], - [ - "ident-token", - "height", - 137278, - 137283, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 137284, - 137284, - null - ], - [ - "function-token", - "var(", - 137285, - 137288, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-height", - 137289, - 137309, - { - "value": "--bs-offcanvas-height" - } - ], - [ - ")-token", - ")", - 137310, - 137310, - null - ], - [ - "semicolon-token", - ";", - 137311, - 137311, - null - ], - [ - "ident-token", - "max-height", - 137312, - 137321, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 137322, - 137322, - null - ], - [ - "percentage-token", - "100%", - 137323, - 137326, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 137327, - 137327, - null - ], - [ - "ident-token", - "border-top", - 137328, - 137337, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 137338, - 137338, - null - ], - [ - "function-token", - "var(", - 137339, - 137342, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-width", - 137343, - 137369, - { - "value": "--bs-offcanvas-border-width" - } - ], - [ - ")-token", - ")", - 137370, - 137370, - null - ], - [ - "whitespace-token", - " ", - 137371, - 137371, - null - ], - [ - "ident-token", - "solid", - 137372, - 137376, - { - "value": "solid" - } - ], - [ - "whitespace-token", - " ", - 137377, - 137377, - null - ], - [ - "function-token", - "var(", - 137378, - 137381, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-border-color", - 137382, - 137408, - { - "value": "--bs-offcanvas-border-color" - } - ], - [ - ")-token", - ")", - 137409, - 137409, - null - ], - [ - "semicolon-token", - ";", - 137410, - 137410, - null - ], - [ - "ident-token", - "transform", - 137411, - 137419, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 137420, - 137420, - null - ], - [ - "function-token", - "translateY(", - 137421, - 137431, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "100%", - 137432, - 137435, - { - "value": 100 - } - ], - [ - ")-token", - ")", - 137436, - 137436, - null - ], - [ - "}-token", - "}", - 137437, - 137437, - null - ], - [ - "delim-token", - ".", - 137438, - 137438, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137439, - 137447, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137448, - 137448, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 137449, - 137452, - { - "value": "show" - } - ], - [ - "colon-token", - ":", - 137453, - 137453, - null - ], - [ - "function-token", - "not(", - 137454, - 137457, - { - "value": "not" - } - ], - [ - "delim-token", - ".", - 137458, - 137458, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 137459, - 137464, - { - "value": "hiding" - } - ], - [ - ")-token", - ")", - 137465, - 137465, - null - ], - [ - "comma-token", - ",", - 137466, - 137466, - null - ], - [ - "delim-token", - ".", - 137467, - 137467, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137468, - 137476, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137477, - 137477, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 137478, - 137484, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 137485, - 137485, - null - ], - [ - "ident-token", - "transform", - 137486, - 137494, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 137495, - 137495, - null - ], - [ - "ident-token", - "none", - 137496, - 137499, - { - "value": "none" - } - ], - [ - "}-token", - "}", - 137500, - 137500, - null - ], - [ - "delim-token", - ".", - 137501, - 137501, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137502, - 137510, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137511, - 137511, - { - "value": "." - } - ], - [ - "ident-token", - "hiding", - 137512, - 137517, - { - "value": "hiding" - } - ], - [ - "comma-token", - ",", - 137518, - 137518, - null - ], - [ - "delim-token", - ".", - 137519, - 137519, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137520, - 137528, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137529, - 137529, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 137530, - 137533, - { - "value": "show" - } - ], - [ - "comma-token", - ",", - 137534, - 137534, - null - ], - [ - "delim-token", - ".", - 137535, - 137535, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas", - 137536, - 137544, - { - "value": "offcanvas" - } - ], - [ - "delim-token", - ".", - 137545, - 137545, - { - "value": "." - } - ], - [ - "ident-token", - "showing", - 137546, - 137552, - { - "value": "showing" - } - ], - [ - "{-token", - "{", - 137553, - 137553, - null - ], - [ - "ident-token", - "visibility", - 137554, - 137563, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 137564, - 137564, - null - ], - [ - "ident-token", - "visible", - 137565, - 137571, - { - "value": "visible" - } - ], - [ - "}-token", - "}", - 137572, - 137572, - null - ], - [ - "delim-token", - ".", - 137573, - 137573, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-backdrop", - 137574, - 137591, - { - "value": "offcanvas-backdrop" - } - ], - [ - "{-token", - "{", - 137592, - 137592, - null - ], - [ - "ident-token", - "position", - 137593, - 137600, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 137601, - 137601, - null - ], - [ - "ident-token", - "fixed", - 137602, - 137606, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 137607, - 137607, - null - ], - [ - "ident-token", - "top", - 137608, - 137610, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 137611, - 137611, - null - ], - [ - "number-token", - "0", - 137612, - 137612, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137613, - 137613, - null - ], - [ - "ident-token", - "left", - 137614, - 137617, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 137618, - 137618, - null - ], - [ - "number-token", - "0", - 137619, - 137619, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137620, - 137620, - null - ], - [ - "ident-token", - "z-index", - 137621, - 137627, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 137628, - 137628, - null - ], - [ - "number-token", - "1040", - 137629, - 137632, - { - "value": 1040, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 137633, - 137633, - null - ], - [ - "ident-token", - "width", - 137634, - 137638, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 137639, - 137639, - null - ], - [ - "dimension-token", - "100vw", - 137640, - 137644, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "semicolon-token", - ";", - 137645, - 137645, - null - ], - [ - "ident-token", - "height", - 137646, - 137651, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 137652, - 137652, - null - ], - [ - "dimension-token", - "100vh", - 137653, - 137657, - { - "value": 100, - "type": "integer", - "unit": "vh" - } - ], - [ - "semicolon-token", - ";", - 137658, - 137658, - null - ], - [ - "ident-token", - "background-color", - 137659, - 137674, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 137675, - 137675, - null - ], - [ - "hash-token", - "#000", - 137676, - 137679, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "}-token", - "}", - 137680, - 137680, - null - ], - [ - "delim-token", - ".", - 137681, - 137681, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-backdrop", - 137682, - 137699, - { - "value": "offcanvas-backdrop" - } - ], - [ - "delim-token", - ".", - 137700, - 137700, - { - "value": "." - } - ], - [ - "ident-token", - "fade", - 137701, - 137704, - { - "value": "fade" - } - ], - [ - "{-token", - "{", - 137705, - 137705, - null - ], - [ - "ident-token", - "opacity", - 137706, - 137712, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 137713, - 137713, - null - ], - [ - "number-token", - "0", - 137714, - 137714, - { - "value": 0, - "type": "integer" - } - ], - [ - "}-token", - "}", - 137715, - 137715, - null - ], - [ - "delim-token", - ".", - 137716, - 137716, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-backdrop", - 137717, - 137734, - { - "value": "offcanvas-backdrop" - } - ], - [ - "delim-token", - ".", - 137735, - 137735, - { - "value": "." - } - ], - [ - "ident-token", - "show", - 137736, - 137739, - { - "value": "show" - } - ], - [ - "{-token", - "{", - 137740, - 137740, - null - ], - [ - "ident-token", - "opacity", - 137741, - 137747, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 137748, - 137748, - null - ], - [ - "number-token", - ".5", - 137749, - 137750, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 137751, - 137751, - null - ], - [ - "delim-token", - ".", - 137752, - 137752, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 137753, - 137768, - { - "value": "offcanvas-header" - } - ], - [ - "{-token", - "{", - 137769, - 137769, - null - ], - [ - "ident-token", - "display", - 137770, - 137776, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 137777, - 137777, - null - ], - [ - "ident-token", - "flex", - 137778, - 137781, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 137782, - 137782, - null - ], - [ - "ident-token", - "align-items", - 137783, - 137793, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 137794, - 137794, - null - ], - [ - "ident-token", - "center", - 137795, - 137800, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 137801, - 137801, - null - ], - [ - "ident-token", - "justify-content", - 137802, - 137816, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 137817, - 137817, - null - ], - [ - "ident-token", - "space-between", - 137818, - 137830, - { - "value": "space-between" - } - ], - [ - "semicolon-token", - ";", - 137831, - 137831, - null - ], - [ - "ident-token", - "padding", - 137832, - 137838, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 137839, - 137839, - null - ], - [ - "function-token", - "var(", - 137840, - 137843, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 137844, - 137867, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - ")-token", - ")", - 137868, - 137868, - null - ], - [ - "whitespace-token", - " ", - 137869, - 137869, - null - ], - [ - "function-token", - "var(", - 137870, - 137873, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-x", - 137874, - 137897, - { - "value": "--bs-offcanvas-padding-x" - } - ], - [ - ")-token", - ")", - 137898, - 137898, - null - ], - [ - "}-token", - "}", - 137899, - 137899, - null - ], - [ - "delim-token", - ".", - 137900, - 137900, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-header", - 137901, - 137916, - { - "value": "offcanvas-header" - } - ], - [ - "whitespace-token", - " ", - 137917, - 137917, - null - ], - [ - "delim-token", - ".", - 137918, - 137918, - { - "value": "." - } - ], - [ - "ident-token", - "btn-close", - 137919, - 137927, - { - "value": "btn-close" - } - ], - [ - "{-token", - "{", - 137928, - 137928, - null - ], - [ - "ident-token", - "padding", - 137929, - 137935, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 137936, - 137936, - null - ], - [ - "function-token", - "calc(", - 137937, - 137941, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 137942, - 137945, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 137946, - 137969, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - ")-token", - ")", - 137970, - 137970, - null - ], - [ - "whitespace-token", - " ", - 137971, - 137971, - null - ], - [ - "delim-token", - "*", - 137972, - 137972, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 137973, - 137973, - null - ], - [ - "number-token", - ".5", - 137974, - 137975, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 137976, - 137976, - null - ], - [ - "whitespace-token", - " ", - 137977, - 137977, - null - ], - [ - "function-token", - "calc(", - 137978, - 137982, - { - "value": "calc" - } - ], - [ - "function-token", - "var(", - 137983, - 137986, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-x", - 137987, - 138010, - { - "value": "--bs-offcanvas-padding-x" - } - ], - [ - ")-token", - ")", - 138011, - 138011, - null - ], - [ - "whitespace-token", - " ", - 138012, - 138012, - null - ], - [ - "delim-token", - "*", - 138013, - 138013, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 138014, - 138014, - null - ], - [ - "number-token", - ".5", - 138015, - 138016, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 138017, - 138017, - null - ], - [ - "semicolon-token", - ";", - 138018, - 138018, - null - ], - [ - "ident-token", - "margin-top", - 138019, - 138028, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 138029, - 138029, - null - ], - [ - "function-token", - "calc(", - 138030, - 138034, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 138035, - 138037, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 138038, - 138038, - null - ], - [ - "delim-token", - "*", - 138039, - 138039, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 138040, - 138040, - null - ], - [ - "function-token", - "var(", - 138041, - 138044, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 138045, - 138068, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - ")-token", - ")", - 138069, - 138069, - null - ], - [ - ")-token", - ")", - 138070, - 138070, - null - ], - [ - "semicolon-token", - ";", - 138071, - 138071, - null - ], - [ - "ident-token", - "margin-right", - 138072, - 138083, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 138084, - 138084, - null - ], - [ - "function-token", - "calc(", - 138085, - 138089, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 138090, - 138092, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 138093, - 138093, - null - ], - [ - "delim-token", - "*", - 138094, - 138094, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 138095, - 138095, - null - ], - [ - "function-token", - "var(", - 138096, - 138099, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-x", - 138100, - 138123, - { - "value": "--bs-offcanvas-padding-x" - } - ], - [ - ")-token", - ")", - 138124, - 138124, - null - ], - [ - ")-token", - ")", - 138125, - 138125, - null - ], - [ - "semicolon-token", - ";", - 138126, - 138126, - null - ], - [ - "ident-token", - "margin-bottom", - 138127, - 138139, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 138140, - 138140, - null - ], - [ - "function-token", - "calc(", - 138141, - 138145, - { - "value": "calc" - } - ], - [ - "number-token", - "-.5", - 138146, - 138148, - { - "value": -0.5, - "type": "number" - } - ], - [ - "whitespace-token", - " ", - 138149, - 138149, - null - ], - [ - "delim-token", - "*", - 138150, - 138150, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 138151, - 138151, - null - ], - [ - "function-token", - "var(", - 138152, - 138155, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 138156, - 138179, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - ")-token", - ")", - 138180, - 138180, - null - ], - [ - ")-token", - ")", - 138181, - 138181, - null - ], - [ - "}-token", - "}", - 138182, - 138182, - null - ], - [ - "delim-token", - ".", - 138183, - 138183, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-title", - 138184, - 138198, - { - "value": "offcanvas-title" - } - ], - [ - "{-token", - "{", - 138199, - 138199, - null - ], - [ - "ident-token", - "margin-bottom", - 138200, - 138212, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 138213, - 138213, - null - ], - [ - "number-token", - "0", - 138214, - 138214, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 138215, - 138215, - null - ], - [ - "ident-token", - "line-height", - 138216, - 138226, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 138227, - 138227, - null - ], - [ - "number-token", - "1.5", - 138228, - 138230, - { - "value": 1.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 138231, - 138231, - null - ], - [ - "delim-token", - ".", - 138232, - 138232, - { - "value": "." - } - ], - [ - "ident-token", - "offcanvas-body", - 138233, - 138246, - { - "value": "offcanvas-body" - } - ], - [ - "{-token", - "{", - 138247, - 138247, - null - ], - [ - "ident-token", - "flex-grow", - 138248, - 138256, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 138257, - 138257, - null - ], - [ - "number-token", - "1", - 138258, - 138258, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 138259, - 138259, - null - ], - [ - "ident-token", - "padding", - 138260, - 138266, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 138267, - 138267, - null - ], - [ - "function-token", - "var(", - 138268, - 138271, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-y", - 138272, - 138295, - { - "value": "--bs-offcanvas-padding-y" - } - ], - [ - ")-token", - ")", - 138296, - 138296, - null - ], - [ - "whitespace-token", - " ", - 138297, - 138297, - null - ], - [ - "function-token", - "var(", - 138298, - 138301, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-offcanvas-padding-x", - 138302, - 138325, - { - "value": "--bs-offcanvas-padding-x" - } - ], - [ - ")-token", - ")", - 138326, - 138326, - null - ], - [ - "semicolon-token", - ";", - 138327, - 138327, - null - ], - [ - "ident-token", - "overflow-y", - 138328, - 138337, - { - "value": "overflow-y" - } - ], - [ - "colon-token", - ":", - 138338, - 138338, - null - ], - [ - "ident-token", - "auto", - 138339, - 138342, - { - "value": "auto" - } - ], - [ - "}-token", - "}", - 138343, - 138343, - null - ], - [ - "delim-token", - ".", - 138344, - 138344, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder", - 138345, - 138355, - { - "value": "placeholder" - } - ], - [ - "{-token", - "{", - 138356, - 138356, - null - ], - [ - "ident-token", - "display", - 138357, - 138363, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 138364, - 138364, - null - ], - [ - "ident-token", - "inline-block", - 138365, - 138376, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 138377, - 138377, - null - ], - [ - "ident-token", - "min-height", - 138378, - 138387, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 138388, - 138388, - null - ], - [ - "dimension-token", - "1em", - 138389, - 138391, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 138392, - 138392, - null - ], - [ - "ident-token", - "vertical-align", - 138393, - 138406, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 138407, - 138407, - null - ], - [ - "ident-token", - "middle", - 138408, - 138413, - { - "value": "middle" - } - ], - [ - "semicolon-token", - ";", - 138414, - 138414, - null - ], - [ - "ident-token", - "cursor", - 138415, - 138420, - { - "value": "cursor" - } - ], - [ - "colon-token", - ":", - 138421, - 138421, - null - ], - [ - "ident-token", - "wait", - 138422, - 138425, - { - "value": "wait" - } - ], - [ - "semicolon-token", - ";", - 138426, - 138426, - null - ], - [ - "ident-token", - "background-color", - 138427, - 138442, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 138443, - 138443, - null - ], - [ - "ident-token", - "currentcolor", - 138444, - 138455, - { - "value": "currentcolor" - } - ], - [ - "semicolon-token", - ";", - 138456, - 138456, - null - ], - [ - "ident-token", - "opacity", - 138457, - 138463, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 138464, - 138464, - null - ], - [ - "number-token", - ".5", - 138465, - 138466, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 138467, - 138467, - null - ], - [ - "delim-token", - ".", - 138468, - 138468, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder", - 138469, - 138479, - { - "value": "placeholder" - } - ], - [ - "delim-token", - ".", - 138480, - 138480, - { - "value": "." - } - ], - [ - "ident-token", - "btn", - 138481, - 138483, - { - "value": "btn" - } - ], - [ - "colon-token", - ":", - 138484, - 138484, - null - ], - [ - "colon-token", - ":", - 138485, - 138485, - null - ], - [ - "ident-token", - "before", - 138486, - 138491, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 138492, - 138492, - null - ], - [ - "ident-token", - "display", - 138493, - 138499, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 138500, - 138500, - null - ], - [ - "ident-token", - "inline-block", - 138501, - 138512, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 138513, - 138513, - null - ], - [ - "ident-token", - "content", - 138514, - 138520, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 138521, - 138521, - null - ], - [ - "string-token", - "\"\"", - 138522, - 138523, - { - "value": "" - } - ], - [ - "}-token", - "}", - 138524, - 138524, - null - ], - [ - "delim-token", - ".", - 138525, - 138525, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder-xs", - 138526, - 138539, - { - "value": "placeholder-xs" - } - ], - [ - "{-token", - "{", - 138540, - 138540, - null - ], - [ - "ident-token", - "min-height", - 138541, - 138550, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 138551, - 138551, - null - ], - [ - "dimension-token", - ".6em", - 138552, - 138555, - { - "value": 0.6, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 138556, - 138556, - null - ], - [ - "delim-token", - ".", - 138557, - 138557, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder-sm", - 138558, - 138571, - { - "value": "placeholder-sm" - } - ], - [ - "{-token", - "{", - 138572, - 138572, - null - ], - [ - "ident-token", - "min-height", - 138573, - 138582, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 138583, - 138583, - null - ], - [ - "dimension-token", - ".8em", - 138584, - 138587, - { - "value": 0.8, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 138588, - 138588, - null - ], - [ - "delim-token", - ".", - 138589, - 138589, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder-lg", - 138590, - 138603, - { - "value": "placeholder-lg" - } - ], - [ - "{-token", - "{", - 138604, - 138604, - null - ], - [ - "ident-token", - "min-height", - 138605, - 138614, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 138615, - 138615, - null - ], - [ - "dimension-token", - "1.2em", - 138616, - 138620, - { - "value": 1.2, - "type": "number", - "unit": "em" - } - ], - [ - "}-token", - "}", - 138621, - 138621, - null - ], - [ - "delim-token", - ".", - 138622, - 138622, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder-glow", - 138623, - 138638, - { - "value": "placeholder-glow" - } - ], - [ - "whitespace-token", - " ", - 138639, - 138639, - null - ], - [ - "delim-token", - ".", - 138640, - 138640, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder", - 138641, - 138651, - { - "value": "placeholder" - } - ], - [ - "{-token", - "{", - 138652, - 138652, - null - ], - [ - "ident-token", - "-webkit-animation", - 138653, - 138669, - { - "value": "-webkit-animation" - } - ], - [ - "colon-token", - ":", - 138670, - 138670, - null - ], - [ - "ident-token", - "placeholder-glow", - 138671, - 138686, - { - "value": "placeholder-glow" - } - ], - [ - "whitespace-token", - " ", - 138687, - 138687, - null - ], - [ - "dimension-token", - "2s", - 138688, - 138689, - { - "value": 2, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 138690, - 138690, - null - ], - [ - "ident-token", - "ease-in-out", - 138691, - 138701, - { - "value": "ease-in-out" - } - ], - [ - "whitespace-token", - " ", - 138702, - 138702, - null - ], - [ - "ident-token", - "infinite", - 138703, - 138710, - { - "value": "infinite" - } - ], - [ - "semicolon-token", - ";", - 138711, - 138711, - null - ], - [ - "ident-token", - "animation", - 138712, - 138720, - { - "value": "animation" - } - ], - [ - "colon-token", - ":", - 138721, - 138721, - null - ], - [ - "ident-token", - "placeholder-glow", - 138722, - 138737, - { - "value": "placeholder-glow" - } - ], - [ - "whitespace-token", - " ", - 138738, - 138738, - null - ], - [ - "dimension-token", - "2s", - 138739, - 138740, - { - "value": 2, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 138741, - 138741, - null - ], - [ - "ident-token", - "ease-in-out", - 138742, - 138752, - { - "value": "ease-in-out" - } - ], - [ - "whitespace-token", - " ", - 138753, - 138753, - null - ], - [ - "ident-token", - "infinite", - 138754, - 138761, - { - "value": "infinite" - } - ], - [ - "}-token", - "}", - 138762, - 138762, - null - ], - [ - "at-keyword-token", - "@-webkit-keyframes", - 138763, - 138780, - { - "value": "-webkit-keyframes" - } - ], - [ - "whitespace-token", - " ", - 138781, - 138781, - null - ], - [ - "ident-token", - "placeholder-glow", - 138782, - 138797, - { - "value": "placeholder-glow" - } - ], - [ - "{-token", - "{", - 138798, - 138798, - null - ], - [ - "percentage-token", - "50%", - 138799, - 138801, - { - "value": 50 - } - ], - [ - "{-token", - "{", - 138802, - 138802, - null - ], - [ - "ident-token", - "opacity", - 138803, - 138809, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 138810, - 138810, - null - ], - [ - "number-token", - ".2", - 138811, - 138812, - { - "value": 0.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 138813, - 138813, - null - ], - [ - "}-token", - "}", - 138814, - 138814, - null - ], - [ - "at-keyword-token", - "@keyframes", - 138815, - 138824, - { - "value": "keyframes" - } - ], - [ - "whitespace-token", - " ", - 138825, - 138825, - null - ], - [ - "ident-token", - "placeholder-glow", - 138826, - 138841, - { - "value": "placeholder-glow" - } - ], - [ - "{-token", - "{", - 138842, - 138842, - null - ], - [ - "percentage-token", - "50%", - 138843, - 138845, - { - "value": 50 - } - ], - [ - "{-token", - "{", - 138846, - 138846, - null - ], - [ - "ident-token", - "opacity", - 138847, - 138853, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 138854, - 138854, - null - ], - [ - "number-token", - ".2", - 138855, - 138856, - { - "value": 0.2, - "type": "number" - } - ], - [ - "}-token", - "}", - 138857, - 138857, - null - ], - [ - "}-token", - "}", - 138858, - 138858, - null - ], - [ - "delim-token", - ".", - 138859, - 138859, - { - "value": "." - } - ], - [ - "ident-token", - "placeholder-wave", - 138860, - 138875, - { - "value": "placeholder-wave" - } - ], - [ - "{-token", - "{", - 138876, - 138876, - null - ], - [ - "ident-token", - "-webkit-mask-image", - 138877, - 138894, - { - "value": "-webkit-mask-image" - } - ], - [ - "colon-token", - ":", - 138895, - 138895, - null - ], - [ - "function-token", - "linear-gradient(", - 138896, - 138911, - { - "value": "linear-gradient" - } - ], - [ - "dimension-token", - "130deg", - 138912, - 138917, - { - "value": 130, - "type": "integer", - "unit": "deg" - } - ], - [ - "comma-token", - ",", - 138918, - 138918, - null - ], - [ - "hash-token", - "#000", - 138919, - 138922, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "whitespace-token", - " ", - 138923, - 138923, - null - ], - [ - "percentage-token", - "55%", - 138924, - 138926, - { - "value": 55 - } - ], - [ - "comma-token", - ",", - 138927, - 138927, - null - ], - [ - "function-token", - "rgba(", - 138928, - 138932, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 138933, - 138933, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 138934, - 138934, - null - ], - [ - "number-token", - "0", - 138935, - 138935, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 138936, - 138936, - null - ], - [ - "number-token", - "0", - 138937, - 138937, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 138938, - 138938, - null - ], - [ - "number-token", - "0.8", - 138939, - 138941, - { - "value": 0.8, - "type": "number" - } - ], - [ - ")-token", - ")", - 138942, - 138942, - null - ], - [ - "whitespace-token", - " ", - 138943, - 138943, - null - ], - [ - "percentage-token", - "75%", - 138944, - 138946, - { - "value": 75 - } - ], - [ - "comma-token", - ",", - 138947, - 138947, - null - ], - [ - "hash-token", - "#000", - 138948, - 138951, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "whitespace-token", - " ", - 138952, - 138952, - null - ], - [ - "percentage-token", - "95%", - 138953, - 138955, - { - "value": 95 - } - ], - [ - ")-token", - ")", - 138956, - 138956, - null - ], - [ - "semicolon-token", - ";", - 138957, - 138957, - null - ], - [ - "ident-token", - "mask-image", - 138958, - 138967, - { - "value": "mask-image" - } - ], - [ - "colon-token", - ":", - 138968, - 138968, - null - ], - [ - "function-token", - "linear-gradient(", - 138969, - 138984, - { - "value": "linear-gradient" - } - ], - [ - "dimension-token", - "130deg", - 138985, - 138990, - { - "value": 130, - "type": "integer", - "unit": "deg" - } - ], - [ - "comma-token", - ",", - 138991, - 138991, - null - ], - [ - "hash-token", - "#000", - 138992, - 138995, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "whitespace-token", - " ", - 138996, - 138996, - null - ], - [ - "percentage-token", - "55%", - 138997, - 138999, - { - "value": 55 - } - ], - [ - "comma-token", - ",", - 139000, - 139000, - null - ], - [ - "function-token", - "rgba(", - 139001, - 139005, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 139006, - 139006, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139007, - 139007, - null - ], - [ - "number-token", - "0", - 139008, - 139008, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139009, - 139009, - null - ], - [ - "number-token", - "0", - 139010, - 139010, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139011, - 139011, - null - ], - [ - "number-token", - "0.8", - 139012, - 139014, - { - "value": 0.8, - "type": "number" - } - ], - [ - ")-token", - ")", - 139015, - 139015, - null - ], - [ - "whitespace-token", - " ", - 139016, - 139016, - null - ], - [ - "percentage-token", - "75%", - 139017, - 139019, - { - "value": 75 - } - ], - [ - "comma-token", - ",", - 139020, - 139020, - null - ], - [ - "hash-token", - "#000", - 139021, - 139024, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "whitespace-token", - " ", - 139025, - 139025, - null - ], - [ - "percentage-token", - "95%", - 139026, - 139028, - { - "value": 95 - } - ], - [ - ")-token", - ")", - 139029, - 139029, - null - ], - [ - "semicolon-token", - ";", - 139030, - 139030, - null - ], - [ - "ident-token", - "-webkit-mask-size", - 139031, - 139047, - { - "value": "-webkit-mask-size" - } - ], - [ - "colon-token", - ":", - 139048, - 139048, - null - ], - [ - "percentage-token", - "200%", - 139049, - 139052, - { - "value": 200 - } - ], - [ - "whitespace-token", - " ", - 139053, - 139053, - null - ], - [ - "percentage-token", - "100%", - 139054, - 139057, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 139058, - 139058, - null - ], - [ - "ident-token", - "mask-size", - 139059, - 139067, - { - "value": "mask-size" - } - ], - [ - "colon-token", - ":", - 139068, - 139068, - null - ], - [ - "percentage-token", - "200%", - 139069, - 139072, - { - "value": 200 - } - ], - [ - "whitespace-token", - " ", - 139073, - 139073, - null - ], - [ - "percentage-token", - "100%", - 139074, - 139077, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 139078, - 139078, - null - ], - [ - "ident-token", - "-webkit-animation", - 139079, - 139095, - { - "value": "-webkit-animation" - } - ], - [ - "colon-token", - ":", - 139096, - 139096, - null - ], - [ - "ident-token", - "placeholder-wave", - 139097, - 139112, - { - "value": "placeholder-wave" - } - ], - [ - "whitespace-token", - " ", - 139113, - 139113, - null - ], - [ - "dimension-token", - "2s", - 139114, - 139115, - { - "value": 2, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 139116, - 139116, - null - ], - [ - "ident-token", - "linear", - 139117, - 139122, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 139123, - 139123, - null - ], - [ - "ident-token", - "infinite", - 139124, - 139131, - { - "value": "infinite" - } - ], - [ - "semicolon-token", - ";", - 139132, - 139132, - null - ], - [ - "ident-token", - "animation", - 139133, - 139141, - { - "value": "animation" - } - ], - [ - "colon-token", - ":", - 139142, - 139142, - null - ], - [ - "ident-token", - "placeholder-wave", - 139143, - 139158, - { - "value": "placeholder-wave" - } - ], - [ - "whitespace-token", - " ", - 139159, - 139159, - null - ], - [ - "dimension-token", - "2s", - 139160, - 139161, - { - "value": 2, - "type": "integer", - "unit": "s" - } - ], - [ - "whitespace-token", - " ", - 139162, - 139162, - null - ], - [ - "ident-token", - "linear", - 139163, - 139168, - { - "value": "linear" - } - ], - [ - "whitespace-token", - " ", - 139169, - 139169, - null - ], - [ - "ident-token", - "infinite", - 139170, - 139177, - { - "value": "infinite" - } - ], - [ - "}-token", - "}", - 139178, - 139178, - null - ], - [ - "at-keyword-token", - "@-webkit-keyframes", - 139179, - 139196, - { - "value": "-webkit-keyframes" - } - ], - [ - "whitespace-token", - " ", - 139197, - 139197, - null - ], - [ - "ident-token", - "placeholder-wave", - 139198, - 139213, - { - "value": "placeholder-wave" - } - ], - [ - "{-token", - "{", - 139214, - 139214, - null - ], - [ - "percentage-token", - "100%", - 139215, - 139218, - { - "value": 100 - } - ], - [ - "{-token", - "{", - 139219, - 139219, - null - ], - [ - "ident-token", - "-webkit-mask-position", - 139220, - 139240, - { - "value": "-webkit-mask-position" - } - ], - [ - "colon-token", - ":", - 139241, - 139241, - null - ], - [ - "percentage-token", - "-200%", - 139242, - 139246, - { - "value": -200 - } - ], - [ - "whitespace-token", - " ", - 139247, - 139247, - null - ], - [ - "percentage-token", - "0%", - 139248, - 139249, - { - "value": 0 - } - ], - [ - "semicolon-token", - ";", - 139250, - 139250, - null - ], - [ - "ident-token", - "mask-position", - 139251, - 139263, - { - "value": "mask-position" - } - ], - [ - "colon-token", - ":", - 139264, - 139264, - null - ], - [ - "percentage-token", - "-200%", - 139265, - 139269, - { - "value": -200 - } - ], - [ - "whitespace-token", - " ", - 139270, - 139270, - null - ], - [ - "percentage-token", - "0%", - 139271, - 139272, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 139273, - 139273, - null - ], - [ - "}-token", - "}", - 139274, - 139274, - null - ], - [ - "at-keyword-token", - "@keyframes", - 139275, - 139284, - { - "value": "keyframes" - } - ], - [ - "whitespace-token", - " ", - 139285, - 139285, - null - ], - [ - "ident-token", - "placeholder-wave", - 139286, - 139301, - { - "value": "placeholder-wave" - } - ], - [ - "{-token", - "{", - 139302, - 139302, - null - ], - [ - "percentage-token", - "100%", - 139303, - 139306, - { - "value": 100 - } - ], - [ - "{-token", - "{", - 139307, - 139307, - null - ], - [ - "ident-token", - "-webkit-mask-position", - 139308, - 139328, - { - "value": "-webkit-mask-position" - } - ], - [ - "colon-token", - ":", - 139329, - 139329, - null - ], - [ - "percentage-token", - "-200%", - 139330, - 139334, - { - "value": -200 - } - ], - [ - "whitespace-token", - " ", - 139335, - 139335, - null - ], - [ - "percentage-token", - "0%", - 139336, - 139337, - { - "value": 0 - } - ], - [ - "semicolon-token", - ";", - 139338, - 139338, - null - ], - [ - "ident-token", - "mask-position", - 139339, - 139351, - { - "value": "mask-position" - } - ], - [ - "colon-token", - ":", - 139352, - 139352, - null - ], - [ - "percentage-token", - "-200%", - 139353, - 139357, - { - "value": -200 - } - ], - [ - "whitespace-token", - " ", - 139358, - 139358, - null - ], - [ - "percentage-token", - "0%", - 139359, - 139360, - { - "value": 0 - } - ], - [ - "}-token", - "}", - 139361, - 139361, - null - ], - [ - "}-token", - "}", - 139362, - 139362, - null - ], - [ - "delim-token", - ".", - 139363, - 139363, - { - "value": "." - } - ], - [ - "ident-token", - "clearfix", - 139364, - 139371, - { - "value": "clearfix" - } - ], - [ - "colon-token", - ":", - 139372, - 139372, - null - ], - [ - "colon-token", - ":", - 139373, - 139373, - null - ], - [ - "ident-token", - "after", - 139374, - 139378, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 139379, - 139379, - null - ], - [ - "ident-token", - "display", - 139380, - 139386, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 139387, - 139387, - null - ], - [ - "ident-token", - "block", - 139388, - 139392, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 139393, - 139393, - null - ], - [ - "ident-token", - "clear", - 139394, - 139398, - { - "value": "clear" - } - ], - [ - "colon-token", - ":", - 139399, - 139399, - null - ], - [ - "ident-token", - "both", - 139400, - 139403, - { - "value": "both" - } - ], - [ - "semicolon-token", - ";", - 139404, - 139404, - null - ], - [ - "ident-token", - "content", - 139405, - 139411, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 139412, - 139412, - null - ], - [ - "string-token", - "\"\"", - 139413, - 139414, - { - "value": "" - } - ], - [ - "}-token", - "}", - 139415, - 139415, - null - ], - [ - "delim-token", - ".", - 139416, - 139416, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-primary", - 139417, - 139431, - { - "value": "text-bg-primary" - } - ], - [ - "{-token", - "{", - 139432, - 139432, - null - ], - [ - "ident-token", - "color", - 139433, - 139437, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139438, - 139438, - null - ], - [ - "hash-token", - "#fff", - 139439, - 139442, - { - "value": "fff", - "type": "id" - } - ], - [ - "delim-token", - "!", - 139443, - 139443, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139444, - 139452, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139453, - 139453, - null - ], - [ - "ident-token", - "background-color", - 139454, - 139469, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139470, - 139470, - null - ], - [ - "function-token", - "RGBA(", - 139471, - 139475, - { - "value": "RGBA" - } - ], - [ - "number-token", - "13", - 139476, - 139477, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139478, - 139478, - null - ], - [ - "number-token", - "110", - 139479, - 139481, - { - "value": 110, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139482, - 139482, - null - ], - [ - "number-token", - "253", - 139483, - 139485, - { - "value": 253, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139486, - 139486, - null - ], - [ - "function-token", - "var(", - 139487, - 139490, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 139491, - 139505, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 139506, - 139506, - null - ], - [ - "number-token", - "1", - 139507, - 139507, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 139508, - 139508, - null - ], - [ - ")-token", - ")", - 139509, - 139509, - null - ], - [ - "delim-token", - "!", - 139510, - 139510, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139511, - 139519, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 139520, - 139520, - null - ], - [ - "delim-token", - ".", - 139521, - 139521, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-secondary", - 139522, - 139538, - { - "value": "text-bg-secondary" - } - ], - [ - "{-token", - "{", - 139539, - 139539, - null - ], - [ - "ident-token", - "color", - 139540, - 139544, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139545, - 139545, - null - ], - [ - "hash-token", - "#fff", - 139546, - 139549, - { - "value": "fff", - "type": "id" - } - ], - [ - "delim-token", - "!", - 139550, - 139550, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139551, - 139559, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139560, - 139560, - null - ], - [ - "ident-token", - "background-color", - 139561, - 139576, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139577, - 139577, - null - ], - [ - "function-token", - "RGBA(", - 139578, - 139582, - { - "value": "RGBA" - } - ], - [ - "number-token", - "108", - 139583, - 139585, - { - "value": 108, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139586, - 139586, - null - ], - [ - "number-token", - "117", - 139587, - 139589, - { - "value": 117, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139590, - 139590, - null - ], - [ - "number-token", - "125", - 139591, - 139593, - { - "value": 125, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139594, - 139594, - null - ], - [ - "function-token", - "var(", - 139595, - 139598, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 139599, - 139613, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 139614, - 139614, - null - ], - [ - "number-token", - "1", - 139615, - 139615, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 139616, - 139616, - null - ], - [ - ")-token", - ")", - 139617, - 139617, - null - ], - [ - "delim-token", - "!", - 139618, - 139618, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139619, - 139627, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 139628, - 139628, - null - ], - [ - "delim-token", - ".", - 139629, - 139629, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-success", - 139630, - 139644, - { - "value": "text-bg-success" - } - ], - [ - "{-token", - "{", - 139645, - 139645, - null - ], - [ - "ident-token", - "color", - 139646, - 139650, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139651, - 139651, - null - ], - [ - "hash-token", - "#fff", - 139652, - 139655, - { - "value": "fff", - "type": "id" - } - ], - [ - "delim-token", - "!", - 139656, - 139656, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139657, - 139665, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139666, - 139666, - null - ], - [ - "ident-token", - "background-color", - 139667, - 139682, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139683, - 139683, - null - ], - [ - "function-token", - "RGBA(", - 139684, - 139688, - { - "value": "RGBA" - } - ], - [ - "number-token", - "25", - 139689, - 139690, - { - "value": 25, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139691, - 139691, - null - ], - [ - "number-token", - "135", - 139692, - 139694, - { - "value": 135, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139695, - 139695, - null - ], - [ - "number-token", - "84", - 139696, - 139697, - { - "value": 84, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139698, - 139698, - null - ], - [ - "function-token", - "var(", - 139699, - 139702, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 139703, - 139717, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 139718, - 139718, - null - ], - [ - "number-token", - "1", - 139719, - 139719, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 139720, - 139720, - null - ], - [ - ")-token", - ")", - 139721, - 139721, - null - ], - [ - "delim-token", - "!", - 139722, - 139722, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139723, - 139731, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 139732, - 139732, - null - ], - [ - "delim-token", - ".", - 139733, - 139733, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-info", - 139734, - 139745, - { - "value": "text-bg-info" - } - ], - [ - "{-token", - "{", - 139746, - 139746, - null - ], - [ - "ident-token", - "color", - 139747, - 139751, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139752, - 139752, - null - ], - [ - "hash-token", - "#000", - 139753, - 139756, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 139757, - 139757, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139758, - 139766, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139767, - 139767, - null - ], - [ - "ident-token", - "background-color", - 139768, - 139783, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139784, - 139784, - null - ], - [ - "function-token", - "RGBA(", - 139785, - 139789, - { - "value": "RGBA" - } - ], - [ - "number-token", - "13", - 139790, - 139791, - { - "value": 13, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139792, - 139792, - null - ], - [ - "number-token", - "202", - 139793, - 139795, - { - "value": 202, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139796, - 139796, - null - ], - [ - "number-token", - "240", - 139797, - 139799, - { - "value": 240, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139800, - 139800, - null - ], - [ - "function-token", - "var(", - 139801, - 139804, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 139805, - 139819, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 139820, - 139820, - null - ], - [ - "number-token", - "1", - 139821, - 139821, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 139822, - 139822, - null - ], - [ - ")-token", - ")", - 139823, - 139823, - null - ], - [ - "delim-token", - "!", - 139824, - 139824, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139825, - 139833, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 139834, - 139834, - null - ], - [ - "delim-token", - ".", - 139835, - 139835, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-warning", - 139836, - 139850, - { - "value": "text-bg-warning" - } - ], - [ - "{-token", - "{", - 139851, - 139851, - null - ], - [ - "ident-token", - "color", - 139852, - 139856, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139857, - 139857, - null - ], - [ - "hash-token", - "#000", - 139858, - 139861, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 139862, - 139862, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139863, - 139871, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139872, - 139872, - null - ], - [ - "ident-token", - "background-color", - 139873, - 139888, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139889, - 139889, - null - ], - [ - "function-token", - "RGBA(", - 139890, - 139894, - { - "value": "RGBA" - } - ], - [ - "number-token", - "255", - 139895, - 139897, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139898, - 139898, - null - ], - [ - "number-token", - "193", - 139899, - 139901, - { - "value": 193, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139902, - 139902, - null - ], - [ - "number-token", - "7", - 139903, - 139903, - { - "value": 7, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 139904, - 139904, - null - ], - [ - "function-token", - "var(", - 139905, - 139908, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 139909, - 139923, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 139924, - 139924, - null - ], - [ - "number-token", - "1", - 139925, - 139925, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 139926, - 139926, - null - ], - [ - ")-token", - ")", - 139927, - 139927, - null - ], - [ - "delim-token", - "!", - 139928, - 139928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139929, - 139937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 139938, - 139938, - null - ], - [ - "delim-token", - ".", - 139939, - 139939, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-danger", - 139940, - 139953, - { - "value": "text-bg-danger" - } - ], - [ - "{-token", - "{", - 139954, - 139954, - null - ], - [ - "ident-token", - "color", - 139955, - 139959, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 139960, - 139960, - null - ], - [ - "hash-token", - "#fff", - 139961, - 139964, - { - "value": "fff", - "type": "id" - } - ], - [ - "delim-token", - "!", - 139965, - 139965, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 139966, - 139974, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 139975, - 139975, - null - ], - [ - "ident-token", - "background-color", - 139976, - 139991, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 139992, - 139992, - null - ], - [ - "function-token", - "RGBA(", - 139993, - 139997, - { - "value": "RGBA" - } - ], - [ - "number-token", - "220", - 139998, - 140000, - { - "value": 220, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140001, - 140001, - null - ], - [ - "number-token", - "53", - 140002, - 140003, - { - "value": 53, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140004, - 140004, - null - ], - [ - "number-token", - "69", - 140005, - 140006, - { - "value": 69, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140007, - 140007, - null - ], - [ - "function-token", - "var(", - 140008, - 140011, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 140012, - 140026, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 140027, - 140027, - null - ], - [ - "number-token", - "1", - 140028, - 140028, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 140029, - 140029, - null - ], - [ - ")-token", - ")", - 140030, - 140030, - null - ], - [ - "delim-token", - "!", - 140031, - 140031, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140032, - 140040, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140041, - 140041, - null - ], - [ - "delim-token", - ".", - 140042, - 140042, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-light", - 140043, - 140055, - { - "value": "text-bg-light" - } - ], - [ - "{-token", - "{", - 140056, - 140056, - null - ], - [ - "ident-token", - "color", - 140057, - 140061, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140062, - 140062, - null - ], - [ - "hash-token", - "#000", - 140063, - 140066, - { - "value": "000", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140067, - 140067, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140068, - 140076, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 140077, - 140077, - null - ], - [ - "ident-token", - "background-color", - 140078, - 140093, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 140094, - 140094, - null - ], - [ - "function-token", - "RGBA(", - 140095, - 140099, - { - "value": "RGBA" - } - ], - [ - "number-token", - "248", - 140100, - 140102, - { - "value": 248, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140103, - 140103, - null - ], - [ - "number-token", - "249", - 140104, - 140106, - { - "value": 249, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140107, - 140107, - null - ], - [ - "number-token", - "250", - 140108, - 140110, - { - "value": 250, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140111, - 140111, - null - ], - [ - "function-token", - "var(", - 140112, - 140115, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 140116, - 140130, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 140131, - 140131, - null - ], - [ - "number-token", - "1", - 140132, - 140132, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 140133, - 140133, - null - ], - [ - ")-token", - ")", - 140134, - 140134, - null - ], - [ - "delim-token", - "!", - 140135, - 140135, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140136, - 140144, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140145, - 140145, - null - ], - [ - "delim-token", - ".", - 140146, - 140146, - { - "value": "." - } - ], - [ - "ident-token", - "text-bg-dark", - 140147, - 140158, - { - "value": "text-bg-dark" - } - ], - [ - "{-token", - "{", - 140159, - 140159, - null - ], - [ - "ident-token", - "color", - 140160, - 140164, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140165, - 140165, - null - ], - [ - "hash-token", - "#fff", - 140166, - 140169, - { - "value": "fff", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140170, - 140170, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140171, - 140179, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 140180, - 140180, - null - ], - [ - "ident-token", - "background-color", - 140181, - 140196, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 140197, - 140197, - null - ], - [ - "function-token", - "RGBA(", - 140198, - 140202, - { - "value": "RGBA" - } - ], - [ - "number-token", - "33", - 140203, - 140204, - { - "value": 33, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140205, - 140205, - null - ], - [ - "number-token", - "37", - 140206, - 140207, - { - "value": 37, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140208, - 140208, - null - ], - [ - "number-token", - "41", - 140209, - 140210, - { - "value": 41, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 140211, - 140211, - null - ], - [ - "function-token", - "var(", - 140212, - 140215, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 140216, - 140230, - { - "value": "--bs-bg-opacity" - } - ], - [ - "comma-token", - ",", - 140231, - 140231, - null - ], - [ - "number-token", - "1", - 140232, - 140232, - { - "value": 1, - "type": "integer" - } - ], - [ - ")-token", - ")", - 140233, - 140233, - null - ], - [ - ")-token", - ")", - 140234, - 140234, - null - ], - [ - "delim-token", - "!", - 140235, - 140235, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140236, - 140244, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140245, - 140245, - null - ], - [ - "delim-token", - ".", - 140246, - 140246, - { - "value": "." - } - ], - [ - "ident-token", - "link-primary", - 140247, - 140258, - { - "value": "link-primary" - } - ], - [ - "{-token", - "{", - 140259, - 140259, - null - ], - [ - "ident-token", - "color", - 140260, - 140264, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140265, - 140265, - null - ], - [ - "hash-token", - "#0d6efd", - 140266, - 140272, - { - "value": "0d6efd", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140273, - 140273, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140274, - 140282, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140283, - 140283, - null - ], - [ - "delim-token", - ".", - 140284, - 140284, - { - "value": "." - } - ], - [ - "ident-token", - "link-primary", - 140285, - 140296, - { - "value": "link-primary" - } - ], - [ - "colon-token", - ":", - 140297, - 140297, - null - ], - [ - "ident-token", - "focus", - 140298, - 140302, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140303, - 140303, - null - ], - [ - "delim-token", - ".", - 140304, - 140304, - { - "value": "." - } - ], - [ - "ident-token", - "link-primary", - 140305, - 140316, - { - "value": "link-primary" - } - ], - [ - "colon-token", - ":", - 140317, - 140317, - null - ], - [ - "ident-token", - "hover", - 140318, - 140322, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140323, - 140323, - null - ], - [ - "ident-token", - "color", - 140324, - 140328, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140329, - 140329, - null - ], - [ - "hash-token", - "#0a58ca", - 140330, - 140336, - { - "value": "0a58ca", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140337, - 140337, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140338, - 140346, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140347, - 140347, - null - ], - [ - "delim-token", - ".", - 140348, - 140348, - { - "value": "." - } - ], - [ - "ident-token", - "link-secondary", - 140349, - 140362, - { - "value": "link-secondary" - } - ], - [ - "{-token", - "{", - 140363, - 140363, - null - ], - [ - "ident-token", - "color", - 140364, - 140368, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140369, - 140369, - null - ], - [ - "hash-token", - "#6c757d", - 140370, - 140376, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140377, - 140377, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140378, - 140386, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140387, - 140387, - null - ], - [ - "delim-token", - ".", - 140388, - 140388, - { - "value": "." - } - ], - [ - "ident-token", - "link-secondary", - 140389, - 140402, - { - "value": "link-secondary" - } - ], - [ - "colon-token", - ":", - 140403, - 140403, - null - ], - [ - "ident-token", - "focus", - 140404, - 140408, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140409, - 140409, - null - ], - [ - "delim-token", - ".", - 140410, - 140410, - { - "value": "." - } - ], - [ - "ident-token", - "link-secondary", - 140411, - 140424, - { - "value": "link-secondary" - } - ], - [ - "colon-token", - ":", - 140425, - 140425, - null - ], - [ - "ident-token", - "hover", - 140426, - 140430, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140431, - 140431, - null - ], - [ - "ident-token", - "color", - 140432, - 140436, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140437, - 140437, - null - ], - [ - "hash-token", - "#565e64", - 140438, - 140444, - { - "value": "565e64", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140445, - 140445, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140446, - 140454, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140455, - 140455, - null - ], - [ - "delim-token", - ".", - 140456, - 140456, - { - "value": "." - } - ], - [ - "ident-token", - "link-success", - 140457, - 140468, - { - "value": "link-success" - } - ], - [ - "{-token", - "{", - 140469, - 140469, - null - ], - [ - "ident-token", - "color", - 140470, - 140474, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140475, - 140475, - null - ], - [ - "hash-token", - "#198754", - 140476, - 140482, - { - "value": "198754", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140483, - 140483, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140484, - 140492, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140493, - 140493, - null - ], - [ - "delim-token", - ".", - 140494, - 140494, - { - "value": "." - } - ], - [ - "ident-token", - "link-success", - 140495, - 140506, - { - "value": "link-success" - } - ], - [ - "colon-token", - ":", - 140507, - 140507, - null - ], - [ - "ident-token", - "focus", - 140508, - 140512, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140513, - 140513, - null - ], - [ - "delim-token", - ".", - 140514, - 140514, - { - "value": "." - } - ], - [ - "ident-token", - "link-success", - 140515, - 140526, - { - "value": "link-success" - } - ], - [ - "colon-token", - ":", - 140527, - 140527, - null - ], - [ - "ident-token", - "hover", - 140528, - 140532, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140533, - 140533, - null - ], - [ - "ident-token", - "color", - 140534, - 140538, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140539, - 140539, - null - ], - [ - "hash-token", - "#146c43", - 140540, - 140546, - { - "value": "146c43", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140547, - 140547, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140548, - 140556, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140557, - 140557, - null - ], - [ - "delim-token", - ".", - 140558, - 140558, - { - "value": "." - } - ], - [ - "ident-token", - "link-info", - 140559, - 140567, - { - "value": "link-info" - } - ], - [ - "{-token", - "{", - 140568, - 140568, - null - ], - [ - "ident-token", - "color", - 140569, - 140573, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140574, - 140574, - null - ], - [ - "hash-token", - "#0dcaf0", - 140575, - 140581, - { - "value": "0dcaf0", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140582, - 140582, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140583, - 140591, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140592, - 140592, - null - ], - [ - "delim-token", - ".", - 140593, - 140593, - { - "value": "." - } - ], - [ - "ident-token", - "link-info", - 140594, - 140602, - { - "value": "link-info" - } - ], - [ - "colon-token", - ":", - 140603, - 140603, - null - ], - [ - "ident-token", - "focus", - 140604, - 140608, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140609, - 140609, - null - ], - [ - "delim-token", - ".", - 140610, - 140610, - { - "value": "." - } - ], - [ - "ident-token", - "link-info", - 140611, - 140619, - { - "value": "link-info" - } - ], - [ - "colon-token", - ":", - 140620, - 140620, - null - ], - [ - "ident-token", - "hover", - 140621, - 140625, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140626, - 140626, - null - ], - [ - "ident-token", - "color", - 140627, - 140631, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140632, - 140632, - null - ], - [ - "hash-token", - "#3dd5f3", - 140633, - 140639, - { - "value": "3dd5f3", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140640, - 140640, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140641, - 140649, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140650, - 140650, - null - ], - [ - "delim-token", - ".", - 140651, - 140651, - { - "value": "." - } - ], - [ - "ident-token", - "link-warning", - 140652, - 140663, - { - "value": "link-warning" - } - ], - [ - "{-token", - "{", - 140664, - 140664, - null - ], - [ - "ident-token", - "color", - 140665, - 140669, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140670, - 140670, - null - ], - [ - "hash-token", - "#ffc107", - 140671, - 140677, - { - "value": "ffc107", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140678, - 140678, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140679, - 140687, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140688, - 140688, - null - ], - [ - "delim-token", - ".", - 140689, - 140689, - { - "value": "." - } - ], - [ - "ident-token", - "link-warning", - 140690, - 140701, - { - "value": "link-warning" - } - ], - [ - "colon-token", - ":", - 140702, - 140702, - null - ], - [ - "ident-token", - "focus", - 140703, - 140707, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140708, - 140708, - null - ], - [ - "delim-token", - ".", - 140709, - 140709, - { - "value": "." - } - ], - [ - "ident-token", - "link-warning", - 140710, - 140721, - { - "value": "link-warning" - } - ], - [ - "colon-token", - ":", - 140722, - 140722, - null - ], - [ - "ident-token", - "hover", - 140723, - 140727, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140728, - 140728, - null - ], - [ - "ident-token", - "color", - 140729, - 140733, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140734, - 140734, - null - ], - [ - "hash-token", - "#ffcd39", - 140735, - 140741, - { - "value": "ffcd39", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140742, - 140742, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140743, - 140751, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140752, - 140752, - null - ], - [ - "delim-token", - ".", - 140753, - 140753, - { - "value": "." - } - ], - [ - "ident-token", - "link-danger", - 140754, - 140764, - { - "value": "link-danger" - } - ], - [ - "{-token", - "{", - 140765, - 140765, - null - ], - [ - "ident-token", - "color", - 140766, - 140770, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140771, - 140771, - null - ], - [ - "hash-token", - "#dc3545", - 140772, - 140778, - { - "value": "dc3545", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140779, - 140779, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140780, - 140788, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140789, - 140789, - null - ], - [ - "delim-token", - ".", - 140790, - 140790, - { - "value": "." - } - ], - [ - "ident-token", - "link-danger", - 140791, - 140801, - { - "value": "link-danger" - } - ], - [ - "colon-token", - ":", - 140802, - 140802, - null - ], - [ - "ident-token", - "focus", - 140803, - 140807, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140808, - 140808, - null - ], - [ - "delim-token", - ".", - 140809, - 140809, - { - "value": "." - } - ], - [ - "ident-token", - "link-danger", - 140810, - 140820, - { - "value": "link-danger" - } - ], - [ - "colon-token", - ":", - 140821, - 140821, - null - ], - [ - "ident-token", - "hover", - 140822, - 140826, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140827, - 140827, - null - ], - [ - "ident-token", - "color", - 140828, - 140832, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140833, - 140833, - null - ], - [ - "hash-token", - "#b02a37", - 140834, - 140840, - { - "value": "b02a37", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140841, - 140841, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140842, - 140850, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140851, - 140851, - null - ], - [ - "delim-token", - ".", - 140852, - 140852, - { - "value": "." - } - ], - [ - "ident-token", - "link-light", - 140853, - 140862, - { - "value": "link-light" - } - ], - [ - "{-token", - "{", - 140863, - 140863, - null - ], - [ - "ident-token", - "color", - 140864, - 140868, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140869, - 140869, - null - ], - [ - "hash-token", - "#f8f9fa", - 140870, - 140876, - { - "value": "f8f9fa", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140877, - 140877, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140878, - 140886, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140887, - 140887, - null - ], - [ - "delim-token", - ".", - 140888, - 140888, - { - "value": "." - } - ], - [ - "ident-token", - "link-light", - 140889, - 140898, - { - "value": "link-light" - } - ], - [ - "colon-token", - ":", - 140899, - 140899, - null - ], - [ - "ident-token", - "focus", - 140900, - 140904, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140905, - 140905, - null - ], - [ - "delim-token", - ".", - 140906, - 140906, - { - "value": "." - } - ], - [ - "ident-token", - "link-light", - 140907, - 140916, - { - "value": "link-light" - } - ], - [ - "colon-token", - ":", - 140917, - 140917, - null - ], - [ - "ident-token", - "hover", - 140918, - 140922, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 140923, - 140923, - null - ], - [ - "ident-token", - "color", - 140924, - 140928, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140929, - 140929, - null - ], - [ - "hash-token", - "#f9fafb", - 140930, - 140936, - { - "value": "f9fafb", - "type": "id" - } - ], - [ - "delim-token", - "!", - 140937, - 140937, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140938, - 140946, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140947, - 140947, - null - ], - [ - "delim-token", - ".", - 140948, - 140948, - { - "value": "." - } - ], - [ - "ident-token", - "link-dark", - 140949, - 140957, - { - "value": "link-dark" - } - ], - [ - "{-token", - "{", - 140958, - 140958, - null - ], - [ - "ident-token", - "color", - 140959, - 140963, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 140964, - 140964, - null - ], - [ - "hash-token", - "#212529", - 140965, - 140971, - { - "value": "212529", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 140972, - 140972, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 140973, - 140981, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 140982, - 140982, - null - ], - [ - "delim-token", - ".", - 140983, - 140983, - { - "value": "." - } - ], - [ - "ident-token", - "link-dark", - 140984, - 140992, - { - "value": "link-dark" - } - ], - [ - "colon-token", - ":", - 140993, - 140993, - null - ], - [ - "ident-token", - "focus", - 140994, - 140998, - { - "value": "focus" - } - ], - [ - "comma-token", - ",", - 140999, - 140999, - null - ], - [ - "delim-token", - ".", - 141000, - 141000, - { - "value": "." - } - ], - [ - "ident-token", - "link-dark", - 141001, - 141009, - { - "value": "link-dark" - } - ], - [ - "colon-token", - ":", - 141010, - 141010, - null - ], - [ - "ident-token", - "hover", - 141011, - 141015, - { - "value": "hover" - } - ], - [ - "{-token", - "{", - 141016, - 141016, - null - ], - [ - "ident-token", - "color", - 141017, - 141021, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 141022, - 141022, - null - ], - [ - "hash-token", - "#1a1e21", - 141023, - 141029, - { - "value": "1a1e21", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 141030, - 141030, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 141031, - 141039, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 141040, - 141040, - null - ], - [ - "delim-token", - ".", - 141041, - 141041, - { - "value": "." - } - ], - [ - "ident-token", - "ratio", - 141042, - 141046, - { - "value": "ratio" - } - ], - [ - "{-token", - "{", - 141047, - 141047, - null - ], - [ - "ident-token", - "position", - 141048, - 141055, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141056, - 141056, - null - ], - [ - "ident-token", - "relative", - 141057, - 141064, - { - "value": "relative" - } - ], - [ - "semicolon-token", - ";", - 141065, - 141065, - null - ], - [ - "ident-token", - "width", - 141066, - 141070, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 141071, - 141071, - null - ], - [ - "percentage-token", - "100%", - 141072, - 141075, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 141076, - 141076, - null - ], - [ - "delim-token", - ".", - 141077, - 141077, - { - "value": "." - } - ], - [ - "ident-token", - "ratio", - 141078, - 141082, - { - "value": "ratio" - } - ], - [ - "colon-token", - ":", - 141083, - 141083, - null - ], - [ - "colon-token", - ":", - 141084, - 141084, - null - ], - [ - "ident-token", - "before", - 141085, - 141090, - { - "value": "before" - } - ], - [ - "{-token", - "{", - 141091, - 141091, - null - ], - [ - "ident-token", - "display", - 141092, - 141098, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 141099, - 141099, - null - ], - [ - "ident-token", - "block", - 141100, - 141104, - { - "value": "block" - } - ], - [ - "semicolon-token", - ";", - 141105, - 141105, - null - ], - [ - "ident-token", - "padding-top", - 141106, - 141116, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 141117, - 141117, - null - ], - [ - "function-token", - "var(", - 141118, - 141121, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-aspect-ratio", - 141122, - 141138, - { - "value": "--bs-aspect-ratio" - } - ], - [ - ")-token", - ")", - 141139, - 141139, - null - ], - [ - "semicolon-token", - ";", - 141140, - 141140, - null - ], - [ - "ident-token", - "content", - 141141, - 141147, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 141148, - 141148, - null - ], - [ - "string-token", - "\"\"", - 141149, - 141150, - { - "value": "" - } - ], - [ - "}-token", - "}", - 141151, - 141151, - null - ], - [ - "delim-token", - ".", - 141152, - 141152, - { - "value": "." - } - ], - [ - "ident-token", - "ratio", - 141153, - 141157, - { - "value": "ratio" - } - ], - [ - "delim-token", - ">", - 141158, - 141158, - { - "value": ">" - } - ], - [ - "delim-token", - "*", - 141159, - 141159, - { - "value": "*" - } - ], - [ - "{-token", - "{", - 141160, - 141160, - null - ], - [ - "ident-token", - "position", - 141161, - 141168, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141169, - 141169, - null - ], - [ - "ident-token", - "absolute", - 141170, - 141177, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 141178, - 141178, - null - ], - [ - "ident-token", - "top", - 141179, - 141181, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 141182, - 141182, - null - ], - [ - "number-token", - "0", - 141183, - 141183, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141184, - 141184, - null - ], - [ - "ident-token", - "left", - 141185, - 141188, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 141189, - 141189, - null - ], - [ - "number-token", - "0", - 141190, - 141190, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141191, - 141191, - null - ], - [ - "ident-token", - "width", - 141192, - 141196, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 141197, - 141197, - null - ], - [ - "percentage-token", - "100%", - 141198, - 141201, - { - "value": 100 - } - ], - [ - "semicolon-token", - ";", - 141202, - 141202, - null - ], - [ - "ident-token", - "height", - 141203, - 141208, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 141209, - 141209, - null - ], - [ - "percentage-token", - "100%", - 141210, - 141213, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 141214, - 141214, - null - ], - [ - "delim-token", - ".", - 141215, - 141215, - { - "value": "." - } - ], - [ - "ident-token", - "ratio-1x1", - 141216, - 141224, - { - "value": "ratio-1x1" - } - ], - [ - "{-token", - "{", - 141225, - 141225, - null - ], - [ - "ident-token", - "--bs-aspect-ratio", - 141226, - 141242, - { - "value": "--bs-aspect-ratio" - } - ], - [ - "colon-token", - ":", - 141243, - 141243, - null - ], - [ - "percentage-token", - "100%", - 141244, - 141247, - { - "value": 100 - } - ], - [ - "}-token", - "}", - 141248, - 141248, - null - ], - [ - "delim-token", - ".", - 141249, - 141249, - { - "value": "." - } - ], - [ - "ident-token", - "ratio-4x3", - 141250, - 141258, - { - "value": "ratio-4x3" - } - ], - [ - "{-token", - "{", - 141259, - 141259, - null - ], - [ - "ident-token", - "--bs-aspect-ratio", - 141260, - 141276, - { - "value": "--bs-aspect-ratio" - } - ], - [ - "colon-token", - ":", - 141277, - 141277, - null - ], - [ - "percentage-token", - "75%", - 141278, - 141280, - { - "value": 75 - } - ], - [ - "}-token", - "}", - 141281, - 141281, - null - ], - [ - "delim-token", - ".", - 141282, - 141282, - { - "value": "." - } - ], - [ - "ident-token", - "ratio-16x9", - 141283, - 141292, - { - "value": "ratio-16x9" - } - ], - [ - "{-token", - "{", - 141293, - 141293, - null - ], - [ - "ident-token", - "--bs-aspect-ratio", - 141294, - 141310, - { - "value": "--bs-aspect-ratio" - } - ], - [ - "colon-token", - ":", - 141311, - 141311, - null - ], - [ - "percentage-token", - "56.25%", - 141312, - 141317, - { - "value": 56.25 - } - ], - [ - "}-token", - "}", - 141318, - 141318, - null - ], - [ - "delim-token", - ".", - 141319, - 141319, - { - "value": "." - } - ], - [ - "ident-token", - "ratio-21x9", - 141320, - 141329, - { - "value": "ratio-21x9" - } - ], - [ - "{-token", - "{", - 141330, - 141330, - null - ], - [ - "ident-token", - "--bs-aspect-ratio", - 141331, - 141347, - { - "value": "--bs-aspect-ratio" - } - ], - [ - "colon-token", - ":", - 141348, - 141348, - null - ], - [ - "percentage-token", - "42.8571428571%", - 141349, - 141362, - { - "value": 42.8571428571 - } - ], - [ - "}-token", - "}", - 141363, - 141363, - null - ], - [ - "delim-token", - ".", - 141364, - 141364, - { - "value": "." - } - ], - [ - "ident-token", - "fixed-top", - 141365, - 141373, - { - "value": "fixed-top" - } - ], - [ - "{-token", - "{", - 141374, - 141374, - null - ], - [ - "ident-token", - "position", - 141375, - 141382, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141383, - 141383, - null - ], - [ - "ident-token", - "fixed", - 141384, - 141388, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 141389, - 141389, - null - ], - [ - "ident-token", - "top", - 141390, - 141392, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 141393, - 141393, - null - ], - [ - "number-token", - "0", - 141394, - 141394, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141395, - 141395, - null - ], - [ - "ident-token", - "right", - 141396, - 141400, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 141401, - 141401, - null - ], - [ - "number-token", - "0", - 141402, - 141402, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141403, - 141403, - null - ], - [ - "ident-token", - "left", - 141404, - 141407, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 141408, - 141408, - null - ], - [ - "number-token", - "0", - 141409, - 141409, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141410, - 141410, - null - ], - [ - "ident-token", - "z-index", - 141411, - 141417, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141418, - 141418, - null - ], - [ - "number-token", - "1030", - 141419, - 141422, - { - "value": 1030, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141423, - 141423, - null - ], - [ - "delim-token", - ".", - 141424, - 141424, - { - "value": "." - } - ], - [ - "ident-token", - "fixed-bottom", - 141425, - 141436, - { - "value": "fixed-bottom" - } - ], - [ - "{-token", - "{", - 141437, - 141437, - null - ], - [ - "ident-token", - "position", - 141438, - 141445, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141446, - 141446, - null - ], - [ - "ident-token", - "fixed", - 141447, - 141451, - { - "value": "fixed" - } - ], - [ - "semicolon-token", - ";", - 141452, - 141452, - null - ], - [ - "ident-token", - "right", - 141453, - 141457, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 141458, - 141458, - null - ], - [ - "number-token", - "0", - 141459, - 141459, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141460, - 141460, - null - ], - [ - "ident-token", - "bottom", - 141461, - 141466, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 141467, - 141467, - null - ], - [ - "number-token", - "0", - 141468, - 141468, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141469, - 141469, - null - ], - [ - "ident-token", - "left", - 141470, - 141473, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 141474, - 141474, - null - ], - [ - "number-token", - "0", - 141475, - 141475, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141476, - 141476, - null - ], - [ - "ident-token", - "z-index", - 141477, - 141483, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141484, - 141484, - null - ], - [ - "number-token", - "1030", - 141485, - 141488, - { - "value": 1030, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141489, - 141489, - null - ], - [ - "delim-token", - ".", - 141490, - 141490, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-top", - 141491, - 141500, - { - "value": "sticky-top" - } - ], - [ - "{-token", - "{", - 141501, - 141501, - null - ], - [ - "ident-token", - "position", - 141502, - 141509, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141510, - 141510, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141511, - 141524, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141525, - 141525, - null - ], - [ - "ident-token", - "position", - 141526, - 141533, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141534, - 141534, - null - ], - [ - "ident-token", - "sticky", - 141535, - 141540, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141541, - 141541, - null - ], - [ - "ident-token", - "top", - 141542, - 141544, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 141545, - 141545, - null - ], - [ - "number-token", - "0", - 141546, - 141546, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141547, - 141547, - null - ], - [ - "ident-token", - "z-index", - 141548, - 141554, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141555, - 141555, - null - ], - [ - "number-token", - "1020", - 141556, - 141559, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141560, - 141560, - null - ], - [ - "delim-token", - ".", - 141561, - 141561, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-bottom", - 141562, - 141574, - { - "value": "sticky-bottom" - } - ], - [ - "{-token", - "{", - 141575, - 141575, - null - ], - [ - "ident-token", - "position", - 141576, - 141583, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141584, - 141584, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141585, - 141598, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141599, - 141599, - null - ], - [ - "ident-token", - "position", - 141600, - 141607, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141608, - 141608, - null - ], - [ - "ident-token", - "sticky", - 141609, - 141614, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141615, - 141615, - null - ], - [ - "ident-token", - "bottom", - 141616, - 141621, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 141622, - 141622, - null - ], - [ - "number-token", - "0", - 141623, - 141623, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141624, - 141624, - null - ], - [ - "ident-token", - "z-index", - 141625, - 141631, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141632, - 141632, - null - ], - [ - "number-token", - "1020", - 141633, - 141636, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141637, - 141637, - null - ], - [ - "at-keyword-token", - "@media", - 141638, - 141643, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 141644, - 141644, - null - ], - [ - "(-token", - "(", - 141645, - 141645, - null - ], - [ - "ident-token", - "min-width", - 141646, - 141654, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 141655, - 141655, - null - ], - [ - "dimension-token", - "576px", - 141656, - 141660, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 141661, - 141661, - null - ], - [ - "{-token", - "{", - 141662, - 141662, - null - ], - [ - "delim-token", - ".", - 141663, - 141663, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-sm-top", - 141664, - 141676, - { - "value": "sticky-sm-top" - } - ], - [ - "{-token", - "{", - 141677, - 141677, - null - ], - [ - "ident-token", - "position", - 141678, - 141685, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141686, - 141686, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141687, - 141700, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141701, - 141701, - null - ], - [ - "ident-token", - "position", - 141702, - 141709, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141710, - 141710, - null - ], - [ - "ident-token", - "sticky", - 141711, - 141716, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141717, - 141717, - null - ], - [ - "ident-token", - "top", - 141718, - 141720, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 141721, - 141721, - null - ], - [ - "number-token", - "0", - 141722, - 141722, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141723, - 141723, - null - ], - [ - "ident-token", - "z-index", - 141724, - 141730, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141731, - 141731, - null - ], - [ - "number-token", - "1020", - 141732, - 141735, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141736, - 141736, - null - ], - [ - "delim-token", - ".", - 141737, - 141737, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-sm-bottom", - 141738, - 141753, - { - "value": "sticky-sm-bottom" - } - ], - [ - "{-token", - "{", - 141754, - 141754, - null - ], - [ - "ident-token", - "position", - 141755, - 141762, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141763, - 141763, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141764, - 141777, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141778, - 141778, - null - ], - [ - "ident-token", - "position", - 141779, - 141786, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141787, - 141787, - null - ], - [ - "ident-token", - "sticky", - 141788, - 141793, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141794, - 141794, - null - ], - [ - "ident-token", - "bottom", - 141795, - 141800, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 141801, - 141801, - null - ], - [ - "number-token", - "0", - 141802, - 141802, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141803, - 141803, - null - ], - [ - "ident-token", - "z-index", - 141804, - 141810, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141811, - 141811, - null - ], - [ - "number-token", - "1020", - 141812, - 141815, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141816, - 141816, - null - ], - [ - "}-token", - "}", - 141817, - 141817, - null - ], - [ - "at-keyword-token", - "@media", - 141818, - 141823, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 141824, - 141824, - null - ], - [ - "(-token", - "(", - 141825, - 141825, - null - ], - [ - "ident-token", - "min-width", - 141826, - 141834, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 141835, - 141835, - null - ], - [ - "dimension-token", - "768px", - 141836, - 141840, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 141841, - 141841, - null - ], - [ - "{-token", - "{", - 141842, - 141842, - null - ], - [ - "delim-token", - ".", - 141843, - 141843, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-md-top", - 141844, - 141856, - { - "value": "sticky-md-top" - } - ], - [ - "{-token", - "{", - 141857, - 141857, - null - ], - [ - "ident-token", - "position", - 141858, - 141865, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141866, - 141866, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141867, - 141880, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141881, - 141881, - null - ], - [ - "ident-token", - "position", - 141882, - 141889, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141890, - 141890, - null - ], - [ - "ident-token", - "sticky", - 141891, - 141896, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141897, - 141897, - null - ], - [ - "ident-token", - "top", - 141898, - 141900, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 141901, - 141901, - null - ], - [ - "number-token", - "0", - 141902, - 141902, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141903, - 141903, - null - ], - [ - "ident-token", - "z-index", - 141904, - 141910, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141911, - 141911, - null - ], - [ - "number-token", - "1020", - 141912, - 141915, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141916, - 141916, - null - ], - [ - "delim-token", - ".", - 141917, - 141917, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-md-bottom", - 141918, - 141933, - { - "value": "sticky-md-bottom" - } - ], - [ - "{-token", - "{", - 141934, - 141934, - null - ], - [ - "ident-token", - "position", - 141935, - 141942, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141943, - 141943, - null - ], - [ - "ident-token", - "-webkit-sticky", - 141944, - 141957, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 141958, - 141958, - null - ], - [ - "ident-token", - "position", - 141959, - 141966, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 141967, - 141967, - null - ], - [ - "ident-token", - "sticky", - 141968, - 141973, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 141974, - 141974, - null - ], - [ - "ident-token", - "bottom", - 141975, - 141980, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 141981, - 141981, - null - ], - [ - "number-token", - "0", - 141982, - 141982, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 141983, - 141983, - null - ], - [ - "ident-token", - "z-index", - 141984, - 141990, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 141991, - 141991, - null - ], - [ - "number-token", - "1020", - 141992, - 141995, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 141996, - 141996, - null - ], - [ - "}-token", - "}", - 141997, - 141997, - null - ], - [ - "at-keyword-token", - "@media", - 141998, - 142003, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 142004, - 142004, - null - ], - [ - "(-token", - "(", - 142005, - 142005, - null - ], - [ - "ident-token", - "min-width", - 142006, - 142014, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 142015, - 142015, - null - ], - [ - "dimension-token", - "992px", - 142016, - 142020, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 142021, - 142021, - null - ], - [ - "{-token", - "{", - 142022, - 142022, - null - ], - [ - "delim-token", - ".", - 142023, - 142023, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-lg-top", - 142024, - 142036, - { - "value": "sticky-lg-top" - } - ], - [ - "{-token", - "{", - 142037, - 142037, - null - ], - [ - "ident-token", - "position", - 142038, - 142045, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142046, - 142046, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142047, - 142060, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142061, - 142061, - null - ], - [ - "ident-token", - "position", - 142062, - 142069, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142070, - 142070, - null - ], - [ - "ident-token", - "sticky", - 142071, - 142076, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142077, - 142077, - null - ], - [ - "ident-token", - "top", - 142078, - 142080, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 142081, - 142081, - null - ], - [ - "number-token", - "0", - 142082, - 142082, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142083, - 142083, - null - ], - [ - "ident-token", - "z-index", - 142084, - 142090, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142091, - 142091, - null - ], - [ - "number-token", - "1020", - 142092, - 142095, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142096, - 142096, - null - ], - [ - "delim-token", - ".", - 142097, - 142097, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-lg-bottom", - 142098, - 142113, - { - "value": "sticky-lg-bottom" - } - ], - [ - "{-token", - "{", - 142114, - 142114, - null - ], - [ - "ident-token", - "position", - 142115, - 142122, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142123, - 142123, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142124, - 142137, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142138, - 142138, - null - ], - [ - "ident-token", - "position", - 142139, - 142146, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142147, - 142147, - null - ], - [ - "ident-token", - "sticky", - 142148, - 142153, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142154, - 142154, - null - ], - [ - "ident-token", - "bottom", - 142155, - 142160, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 142161, - 142161, - null - ], - [ - "number-token", - "0", - 142162, - 142162, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142163, - 142163, - null - ], - [ - "ident-token", - "z-index", - 142164, - 142170, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142171, - 142171, - null - ], - [ - "number-token", - "1020", - 142172, - 142175, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142176, - 142176, - null - ], - [ - "}-token", - "}", - 142177, - 142177, - null - ], - [ - "at-keyword-token", - "@media", - 142178, - 142183, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 142184, - 142184, - null - ], - [ - "(-token", - "(", - 142185, - 142185, - null - ], - [ - "ident-token", - "min-width", - 142186, - 142194, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 142195, - 142195, - null - ], - [ - "dimension-token", - "1200px", - 142196, - 142201, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 142202, - 142202, - null - ], - [ - "{-token", - "{", - 142203, - 142203, - null - ], - [ - "delim-token", - ".", - 142204, - 142204, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-xl-top", - 142205, - 142217, - { - "value": "sticky-xl-top" - } - ], - [ - "{-token", - "{", - 142218, - 142218, - null - ], - [ - "ident-token", - "position", - 142219, - 142226, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142227, - 142227, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142228, - 142241, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142242, - 142242, - null - ], - [ - "ident-token", - "position", - 142243, - 142250, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142251, - 142251, - null - ], - [ - "ident-token", - "sticky", - 142252, - 142257, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142258, - 142258, - null - ], - [ - "ident-token", - "top", - 142259, - 142261, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 142262, - 142262, - null - ], - [ - "number-token", - "0", - 142263, - 142263, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142264, - 142264, - null - ], - [ - "ident-token", - "z-index", - 142265, - 142271, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142272, - 142272, - null - ], - [ - "number-token", - "1020", - 142273, - 142276, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142277, - 142277, - null - ], - [ - "delim-token", - ".", - 142278, - 142278, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-xl-bottom", - 142279, - 142294, - { - "value": "sticky-xl-bottom" - } - ], - [ - "{-token", - "{", - 142295, - 142295, - null - ], - [ - "ident-token", - "position", - 142296, - 142303, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142304, - 142304, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142305, - 142318, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142319, - 142319, - null - ], - [ - "ident-token", - "position", - 142320, - 142327, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142328, - 142328, - null - ], - [ - "ident-token", - "sticky", - 142329, - 142334, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142335, - 142335, - null - ], - [ - "ident-token", - "bottom", - 142336, - 142341, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 142342, - 142342, - null - ], - [ - "number-token", - "0", - 142343, - 142343, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142344, - 142344, - null - ], - [ - "ident-token", - "z-index", - 142345, - 142351, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142352, - 142352, - null - ], - [ - "number-token", - "1020", - 142353, - 142356, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142357, - 142357, - null - ], - [ - "}-token", - "}", - 142358, - 142358, - null - ], - [ - "at-keyword-token", - "@media", - 142359, - 142364, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 142365, - 142365, - null - ], - [ - "(-token", - "(", - 142366, - 142366, - null - ], - [ - "ident-token", - "min-width", - 142367, - 142375, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 142376, - 142376, - null - ], - [ - "dimension-token", - "1400px", - 142377, - 142382, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 142383, - 142383, - null - ], - [ - "{-token", - "{", - 142384, - 142384, - null - ], - [ - "delim-token", - ".", - 142385, - 142385, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-xxl-top", - 142386, - 142399, - { - "value": "sticky-xxl-top" - } - ], - [ - "{-token", - "{", - 142400, - 142400, - null - ], - [ - "ident-token", - "position", - 142401, - 142408, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142409, - 142409, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142410, - 142423, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142424, - 142424, - null - ], - [ - "ident-token", - "position", - 142425, - 142432, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142433, - 142433, - null - ], - [ - "ident-token", - "sticky", - 142434, - 142439, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142440, - 142440, - null - ], - [ - "ident-token", - "top", - 142441, - 142443, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 142444, - 142444, - null - ], - [ - "number-token", - "0", - 142445, - 142445, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142446, - 142446, - null - ], - [ - "ident-token", - "z-index", - 142447, - 142453, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142454, - 142454, - null - ], - [ - "number-token", - "1020", - 142455, - 142458, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142459, - 142459, - null - ], - [ - "delim-token", - ".", - 142460, - 142460, - { - "value": "." - } - ], - [ - "ident-token", - "sticky-xxl-bottom", - 142461, - 142477, - { - "value": "sticky-xxl-bottom" - } - ], - [ - "{-token", - "{", - 142478, - 142478, - null - ], - [ - "ident-token", - "position", - 142479, - 142486, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142487, - 142487, - null - ], - [ - "ident-token", - "-webkit-sticky", - 142488, - 142501, - { - "value": "-webkit-sticky" - } - ], - [ - "semicolon-token", - ";", - 142502, - 142502, - null - ], - [ - "ident-token", - "position", - 142503, - 142510, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142511, - 142511, - null - ], - [ - "ident-token", - "sticky", - 142512, - 142517, - { - "value": "sticky" - } - ], - [ - "semicolon-token", - ";", - 142518, - 142518, - null - ], - [ - "ident-token", - "bottom", - 142519, - 142524, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 142525, - 142525, - null - ], - [ - "number-token", - "0", - 142526, - 142526, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 142527, - 142527, - null - ], - [ - "ident-token", - "z-index", - 142528, - 142534, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 142535, - 142535, - null - ], - [ - "number-token", - "1020", - 142536, - 142539, - { - "value": 1020, - "type": "integer" - } - ], - [ - "}-token", - "}", - 142540, - 142540, - null - ], - [ - "}-token", - "}", - 142541, - 142541, - null - ], - [ - "delim-token", - ".", - 142542, - 142542, - { - "value": "." - } - ], - [ - "ident-token", - "hstack", - 142543, - 142548, - { - "value": "hstack" - } - ], - [ - "{-token", - "{", - 142549, - 142549, - null - ], - [ - "ident-token", - "display", - 142550, - 142556, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 142557, - 142557, - null - ], - [ - "ident-token", - "flex", - 142558, - 142561, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 142562, - 142562, - null - ], - [ - "ident-token", - "flex-direction", - 142563, - 142576, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 142577, - 142577, - null - ], - [ - "ident-token", - "row", - 142578, - 142580, - { - "value": "row" - } - ], - [ - "semicolon-token", - ";", - 142581, - 142581, - null - ], - [ - "ident-token", - "align-items", - 142582, - 142592, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 142593, - 142593, - null - ], - [ - "ident-token", - "center", - 142594, - 142599, - { - "value": "center" - } - ], - [ - "semicolon-token", - ";", - 142600, - 142600, - null - ], - [ - "ident-token", - "align-self", - 142601, - 142610, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 142611, - 142611, - null - ], - [ - "ident-token", - "stretch", - 142612, - 142618, - { - "value": "stretch" - } - ], - [ - "}-token", - "}", - 142619, - 142619, - null - ], - [ - "delim-token", - ".", - 142620, - 142620, - { - "value": "." - } - ], - [ - "ident-token", - "vstack", - 142621, - 142626, - { - "value": "vstack" - } - ], - [ - "{-token", - "{", - 142627, - 142627, - null - ], - [ - "ident-token", - "display", - 142628, - 142634, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 142635, - 142635, - null - ], - [ - "ident-token", - "flex", - 142636, - 142639, - { - "value": "flex" - } - ], - [ - "semicolon-token", - ";", - 142640, - 142640, - null - ], - [ - "ident-token", - "flex", - 142641, - 142644, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 142645, - 142645, - null - ], - [ - "number-token", - "1", - 142646, - 142646, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 142647, - 142647, - null - ], - [ - "number-token", - "1", - 142648, - 142648, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 142649, - 142649, - null - ], - [ - "ident-token", - "auto", - 142650, - 142653, - { - "value": "auto" - } - ], - [ - "semicolon-token", - ";", - 142654, - 142654, - null - ], - [ - "ident-token", - "flex-direction", - 142655, - 142668, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 142669, - 142669, - null - ], - [ - "ident-token", - "column", - 142670, - 142675, - { - "value": "column" - } - ], - [ - "semicolon-token", - ";", - 142676, - 142676, - null - ], - [ - "ident-token", - "align-self", - 142677, - 142686, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 142687, - 142687, - null - ], - [ - "ident-token", - "stretch", - 142688, - 142694, - { - "value": "stretch" - } - ], - [ - "}-token", - "}", - 142695, - 142695, - null - ], - [ - "delim-token", - ".", - 142696, - 142696, - { - "value": "." - } - ], - [ - "ident-token", - "visually-hidden", - 142697, - 142711, - { - "value": "visually-hidden" - } - ], - [ - "comma-token", - ",", - 142712, - 142712, - null - ], - [ - "delim-token", - ".", - 142713, - 142713, - { - "value": "." - } - ], - [ - "ident-token", - "visually-hidden-focusable", - 142714, - 142738, - { - "value": "visually-hidden-focusable" - } - ], - [ - "colon-token", - ":", - 142739, - 142739, - null - ], - [ - "function-token", - "not(", - 142740, - 142743, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 142744, - 142744, - null - ], - [ - "ident-token", - "focus", - 142745, - 142749, - { - "value": "focus" - } - ], - [ - ")-token", - ")", - 142750, - 142750, - null - ], - [ - "colon-token", - ":", - 142751, - 142751, - null - ], - [ - "function-token", - "not(", - 142752, - 142755, - { - "value": "not" - } - ], - [ - "colon-token", - ":", - 142756, - 142756, - null - ], - [ - "ident-token", - "focus-within", - 142757, - 142768, - { - "value": "focus-within" - } - ], - [ - ")-token", - ")", - 142769, - 142769, - null - ], - [ - "{-token", - "{", - 142770, - 142770, - null - ], - [ - "ident-token", - "position", - 142771, - 142778, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 142779, - 142779, - null - ], - [ - "ident-token", - "absolute", - 142780, - 142787, - { - "value": "absolute" - } - ], - [ - "delim-token", - "!", - 142788, - 142788, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142789, - 142797, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142798, - 142798, - null - ], - [ - "ident-token", - "width", - 142799, - 142803, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 142804, - 142804, - null - ], - [ - "dimension-token", - "1px", - 142805, - 142807, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "delim-token", - "!", - 142808, - 142808, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142809, - 142817, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142818, - 142818, - null - ], - [ - "ident-token", - "height", - 142819, - 142824, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 142825, - 142825, - null - ], - [ - "dimension-token", - "1px", - 142826, - 142828, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "delim-token", - "!", - 142829, - 142829, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142830, - 142838, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142839, - 142839, - null - ], - [ - "ident-token", - "padding", - 142840, - 142846, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 142847, - 142847, - null - ], - [ - "number-token", - "0", - 142848, - 142848, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 142849, - 142849, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142850, - 142858, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142859, - 142859, - null - ], - [ - "ident-token", - "margin", - 142860, - 142865, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 142866, - 142866, - null - ], - [ - "dimension-token", - "-1px", - 142867, - 142870, - { - "value": -1, - "type": "integer", - "unit": "px" - } - ], - [ - "delim-token", - "!", - 142871, - 142871, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142872, - 142880, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142881, - 142881, - null - ], - [ - "ident-token", - "overflow", - 142882, - 142889, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 142890, - 142890, - null - ], - [ - "ident-token", - "hidden", - 142891, - 142896, - { - "value": "hidden" - } - ], - [ - "delim-token", - "!", - 142897, - 142897, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142898, - 142906, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142907, - 142907, - null - ], - [ - "ident-token", - "clip", - 142908, - 142911, - { - "value": "clip" - } - ], - [ - "colon-token", - ":", - 142912, - 142912, - null - ], - [ - "function-token", - "rect(", - 142913, - 142917, - { - "value": "rect" - } - ], - [ - "number-token", - "0", - 142918, - 142918, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 142919, - 142919, - null - ], - [ - "number-token", - "0", - 142920, - 142920, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 142921, - 142921, - null - ], - [ - "number-token", - "0", - 142922, - 142922, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 142923, - 142923, - null - ], - [ - "number-token", - "0", - 142924, - 142924, - { - "value": 0, - "type": "integer" - } - ], - [ - ")-token", - ")", - 142925, - 142925, - null - ], - [ - "delim-token", - "!", - 142926, - 142926, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142927, - 142935, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142936, - 142936, - null - ], - [ - "ident-token", - "white-space", - 142937, - 142947, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 142948, - 142948, - null - ], - [ - "ident-token", - "nowrap", - 142949, - 142954, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 142955, - 142955, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142956, - 142964, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 142965, - 142965, - null - ], - [ - "ident-token", - "border", - 142966, - 142971, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 142972, - 142972, - null - ], - [ - "number-token", - "0", - 142973, - 142973, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 142974, - 142974, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 142975, - 142983, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 142984, - 142984, - null - ], - [ - "delim-token", - ".", - 142985, - 142985, - { - "value": "." - } - ], - [ - "ident-token", - "stretched-link", - 142986, - 142999, - { - "value": "stretched-link" - } - ], - [ - "colon-token", - ":", - 143000, - 143000, - null - ], - [ - "colon-token", - ":", - 143001, - 143001, - null - ], - [ - "ident-token", - "after", - 143002, - 143006, - { - "value": "after" - } - ], - [ - "{-token", - "{", - 143007, - 143007, - null - ], - [ - "ident-token", - "position", - 143008, - 143015, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 143016, - 143016, - null - ], - [ - "ident-token", - "absolute", - 143017, - 143024, - { - "value": "absolute" - } - ], - [ - "semicolon-token", - ";", - 143025, - 143025, - null - ], - [ - "ident-token", - "top", - 143026, - 143028, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 143029, - 143029, - null - ], - [ - "number-token", - "0", - 143030, - 143030, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 143031, - 143031, - null - ], - [ - "ident-token", - "right", - 143032, - 143036, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 143037, - 143037, - null - ], - [ - "number-token", - "0", - 143038, - 143038, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 143039, - 143039, - null - ], - [ - "ident-token", - "bottom", - 143040, - 143045, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 143046, - 143046, - null - ], - [ - "number-token", - "0", - 143047, - 143047, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 143048, - 143048, - null - ], - [ - "ident-token", - "left", - 143049, - 143052, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 143053, - 143053, - null - ], - [ - "number-token", - "0", - 143054, - 143054, - { - "value": 0, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 143055, - 143055, - null - ], - [ - "ident-token", - "z-index", - 143056, - 143062, - { - "value": "z-index" - } - ], - [ - "colon-token", - ":", - 143063, - 143063, - null - ], - [ - "number-token", - "1", - 143064, - 143064, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 143065, - 143065, - null - ], - [ - "ident-token", - "content", - 143066, - 143072, - { - "value": "content" - } - ], - [ - "colon-token", - ":", - 143073, - 143073, - null - ], - [ - "string-token", - "\"\"", - 143074, - 143075, - { - "value": "" - } - ], - [ - "}-token", - "}", - 143076, - 143076, - null - ], - [ - "delim-token", - ".", - 143077, - 143077, - { - "value": "." - } - ], - [ - "ident-token", - "text-truncate", - 143078, - 143090, - { - "value": "text-truncate" - } - ], - [ - "{-token", - "{", - 143091, - 143091, - null - ], - [ - "ident-token", - "overflow", - 143092, - 143099, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 143100, - 143100, - null - ], - [ - "ident-token", - "hidden", - 143101, - 143106, - { - "value": "hidden" - } - ], - [ - "semicolon-token", - ";", - 143107, - 143107, - null - ], - [ - "ident-token", - "text-overflow", - 143108, - 143120, - { - "value": "text-overflow" - } - ], - [ - "colon-token", - ":", - 143121, - 143121, - null - ], - [ - "ident-token", - "ellipsis", - 143122, - 143129, - { - "value": "ellipsis" - } - ], - [ - "semicolon-token", - ";", - 143130, - 143130, - null - ], - [ - "ident-token", - "white-space", - 143131, - 143141, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 143142, - 143142, - null - ], - [ - "ident-token", - "nowrap", - 143143, - 143148, - { - "value": "nowrap" - } - ], - [ - "}-token", - "}", - 143149, - 143149, - null - ], - [ - "delim-token", - ".", - 143150, - 143150, - { - "value": "." - } - ], - [ - "ident-token", - "vr", - 143151, - 143152, - { - "value": "vr" - } - ], - [ - "{-token", - "{", - 143153, - 143153, - null - ], - [ - "ident-token", - "display", - 143154, - 143160, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 143161, - 143161, - null - ], - [ - "ident-token", - "inline-block", - 143162, - 143173, - { - "value": "inline-block" - } - ], - [ - "semicolon-token", - ";", - 143174, - 143174, - null - ], - [ - "ident-token", - "align-self", - 143175, - 143184, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 143185, - 143185, - null - ], - [ - "ident-token", - "stretch", - 143186, - 143192, - { - "value": "stretch" - } - ], - [ - "semicolon-token", - ";", - 143193, - 143193, - null - ], - [ - "ident-token", - "width", - 143194, - 143198, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 143199, - 143199, - null - ], - [ - "dimension-token", - "1px", - 143200, - 143202, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "semicolon-token", - ";", - 143203, - 143203, - null - ], - [ - "ident-token", - "min-height", - 143204, - 143213, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 143214, - 143214, - null - ], - [ - "dimension-token", - "1em", - 143215, - 143217, - { - "value": 1, - "type": "integer", - "unit": "em" - } - ], - [ - "semicolon-token", - ";", - 143218, - 143218, - null - ], - [ - "ident-token", - "background-color", - 143219, - 143234, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 143235, - 143235, - null - ], - [ - "ident-token", - "currentcolor", - 143236, - 143247, - { - "value": "currentcolor" - } - ], - [ - "semicolon-token", - ";", - 143248, - 143248, - null - ], - [ - "ident-token", - "opacity", - 143249, - 143255, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143256, - 143256, - null - ], - [ - "number-token", - ".25", - 143257, - 143259, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 143260, - 143260, - null - ], - [ - "delim-token", - ".", - 143261, - 143261, - { - "value": "." - } - ], - [ - "ident-token", - "align-baseline", - 143262, - 143275, - { - "value": "align-baseline" - } - ], - [ - "{-token", - "{", - 143276, - 143276, - null - ], - [ - "ident-token", - "vertical-align", - 143277, - 143290, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143291, - 143291, - null - ], - [ - "ident-token", - "baseline", - 143292, - 143299, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 143300, - 143300, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143301, - 143309, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143310, - 143310, - null - ], - [ - "delim-token", - ".", - 143311, - 143311, - { - "value": "." - } - ], - [ - "ident-token", - "align-top", - 143312, - 143320, - { - "value": "align-top" - } - ], - [ - "{-token", - "{", - 143321, - 143321, - null - ], - [ - "ident-token", - "vertical-align", - 143322, - 143335, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143336, - 143336, - null - ], - [ - "ident-token", - "top", - 143337, - 143339, - { - "value": "top" - } - ], - [ - "delim-token", - "!", - 143340, - 143340, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143341, - 143349, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143350, - 143350, - null - ], - [ - "delim-token", - ".", - 143351, - 143351, - { - "value": "." - } - ], - [ - "ident-token", - "align-middle", - 143352, - 143363, - { - "value": "align-middle" - } - ], - [ - "{-token", - "{", - 143364, - 143364, - null - ], - [ - "ident-token", - "vertical-align", - 143365, - 143378, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143379, - 143379, - null - ], - [ - "ident-token", - "middle", - 143380, - 143385, - { - "value": "middle" - } - ], - [ - "delim-token", - "!", - 143386, - 143386, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143387, - 143395, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143396, - 143396, - null - ], - [ - "delim-token", - ".", - 143397, - 143397, - { - "value": "." - } - ], - [ - "ident-token", - "align-bottom", - 143398, - 143409, - { - "value": "align-bottom" - } - ], - [ - "{-token", - "{", - 143410, - 143410, - null - ], - [ - "ident-token", - "vertical-align", - 143411, - 143424, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143425, - 143425, - null - ], - [ - "ident-token", - "bottom", - 143426, - 143431, - { - "value": "bottom" - } - ], - [ - "delim-token", - "!", - 143432, - 143432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143433, - 143441, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143442, - 143442, - null - ], - [ - "delim-token", - ".", - 143443, - 143443, - { - "value": "." - } - ], - [ - "ident-token", - "align-text-bottom", - 143444, - 143460, - { - "value": "align-text-bottom" - } - ], - [ - "{-token", - "{", - 143461, - 143461, - null - ], - [ - "ident-token", - "vertical-align", - 143462, - 143475, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143476, - 143476, - null - ], - [ - "ident-token", - "text-bottom", - 143477, - 143487, - { - "value": "text-bottom" - } - ], - [ - "delim-token", - "!", - 143488, - 143488, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143489, - 143497, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143498, - 143498, - null - ], - [ - "delim-token", - ".", - 143499, - 143499, - { - "value": "." - } - ], - [ - "ident-token", - "align-text-top", - 143500, - 143513, - { - "value": "align-text-top" - } - ], - [ - "{-token", - "{", - 143514, - 143514, - null - ], - [ - "ident-token", - "vertical-align", - 143515, - 143528, - { - "value": "vertical-align" - } - ], - [ - "colon-token", - ":", - 143529, - 143529, - null - ], - [ - "ident-token", - "text-top", - 143530, - 143537, - { - "value": "text-top" - } - ], - [ - "delim-token", - "!", - 143538, - 143538, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143539, - 143547, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143548, - 143548, - null - ], - [ - "delim-token", - ".", - 143549, - 143549, - { - "value": "." - } - ], - [ - "ident-token", - "float-start", - 143550, - 143560, - { - "value": "float-start" - } - ], - [ - "{-token", - "{", - 143561, - 143561, - null - ], - [ - "ident-token", - "float", - 143562, - 143566, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 143567, - 143567, - null - ], - [ - "ident-token", - "left", - 143568, - 143571, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 143572, - 143572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143573, - 143581, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143582, - 143582, - null - ], - [ - "delim-token", - ".", - 143583, - 143583, - { - "value": "." - } - ], - [ - "ident-token", - "float-end", - 143584, - 143592, - { - "value": "float-end" - } - ], - [ - "{-token", - "{", - 143593, - 143593, - null - ], - [ - "ident-token", - "float", - 143594, - 143598, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 143599, - 143599, - null - ], - [ - "ident-token", - "right", - 143600, - 143604, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 143605, - 143605, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143606, - 143614, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143615, - 143615, - null - ], - [ - "delim-token", - ".", - 143616, - 143616, - { - "value": "." - } - ], - [ - "ident-token", - "float-none", - 143617, - 143626, - { - "value": "float-none" - } - ], - [ - "{-token", - "{", - 143627, - 143627, - null - ], - [ - "ident-token", - "float", - 143628, - 143632, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 143633, - 143633, - null - ], - [ - "ident-token", - "none", - 143634, - 143637, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 143638, - 143638, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143639, - 143647, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143648, - 143648, - null - ], - [ - "delim-token", - ".", - 143649, - 143649, - { - "value": "." - } - ], - [ - "ident-token", - "opacity-0", - 143650, - 143658, - { - "value": "opacity-0" - } - ], - [ - "{-token", - "{", - 143659, - 143659, - null - ], - [ - "ident-token", - "opacity", - 143660, - 143666, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143667, - 143667, - null - ], - [ - "number-token", - "0", - 143668, - 143668, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 143669, - 143669, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143670, - 143678, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143679, - 143679, - null - ], - [ - "delim-token", - ".", - 143680, - 143680, - { - "value": "." - } - ], - [ - "ident-token", - "opacity-25", - 143681, - 143690, - { - "value": "opacity-25" - } - ], - [ - "{-token", - "{", - 143691, - 143691, - null - ], - [ - "ident-token", - "opacity", - 143692, - 143698, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143699, - 143699, - null - ], - [ - "number-token", - ".25", - 143700, - 143702, - { - "value": 0.25, - "type": "number" - } - ], - [ - "delim-token", - "!", - 143703, - 143703, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143704, - 143712, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143713, - 143713, - null - ], - [ - "delim-token", - ".", - 143714, - 143714, - { - "value": "." - } - ], - [ - "ident-token", - "opacity-50", - 143715, - 143724, - { - "value": "opacity-50" - } - ], - [ - "{-token", - "{", - 143725, - 143725, - null - ], - [ - "ident-token", - "opacity", - 143726, - 143732, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143733, - 143733, - null - ], - [ - "number-token", - ".5", - 143734, - 143735, - { - "value": 0.5, - "type": "number" - } - ], - [ - "delim-token", - "!", - 143736, - 143736, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143737, - 143745, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143746, - 143746, - null - ], - [ - "delim-token", - ".", - 143747, - 143747, - { - "value": "." - } - ], - [ - "ident-token", - "opacity-75", - 143748, - 143757, - { - "value": "opacity-75" - } - ], - [ - "{-token", - "{", - 143758, - 143758, - null - ], - [ - "ident-token", - "opacity", - 143759, - 143765, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143766, - 143766, - null - ], - [ - "number-token", - ".75", - 143767, - 143769, - { - "value": 0.75, - "type": "number" - } - ], - [ - "delim-token", - "!", - 143770, - 143770, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143771, - 143779, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143780, - 143780, - null - ], - [ - "delim-token", - ".", - 143781, - 143781, - { - "value": "." - } - ], - [ - "ident-token", - "opacity-100", - 143782, - 143792, - { - "value": "opacity-100" - } - ], - [ - "{-token", - "{", - 143793, - 143793, - null - ], - [ - "ident-token", - "opacity", - 143794, - 143800, - { - "value": "opacity" - } - ], - [ - "colon-token", - ":", - 143801, - 143801, - null - ], - [ - "number-token", - "1", - 143802, - 143802, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 143803, - 143803, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143804, - 143812, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143813, - 143813, - null - ], - [ - "delim-token", - ".", - 143814, - 143814, - { - "value": "." - } - ], - [ - "ident-token", - "overflow-auto", - 143815, - 143827, - { - "value": "overflow-auto" - } - ], - [ - "{-token", - "{", - 143828, - 143828, - null - ], - [ - "ident-token", - "overflow", - 143829, - 143836, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 143837, - 143837, - null - ], - [ - "ident-token", - "auto", - 143838, - 143841, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 143842, - 143842, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143843, - 143851, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143852, - 143852, - null - ], - [ - "delim-token", - ".", - 143853, - 143853, - { - "value": "." - } - ], - [ - "ident-token", - "overflow-hidden", - 143854, - 143868, - { - "value": "overflow-hidden" - } - ], - [ - "{-token", - "{", - 143869, - 143869, - null - ], - [ - "ident-token", - "overflow", - 143870, - 143877, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 143878, - 143878, - null - ], - [ - "ident-token", - "hidden", - 143879, - 143884, - { - "value": "hidden" - } - ], - [ - "delim-token", - "!", - 143885, - 143885, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143886, - 143894, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143895, - 143895, - null - ], - [ - "delim-token", - ".", - 143896, - 143896, - { - "value": "." - } - ], - [ - "ident-token", - "overflow-visible", - 143897, - 143912, - { - "value": "overflow-visible" - } - ], - [ - "{-token", - "{", - 143913, - 143913, - null - ], - [ - "ident-token", - "overflow", - 143914, - 143921, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 143922, - 143922, - null - ], - [ - "ident-token", - "visible", - 143923, - 143929, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 143930, - 143930, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143931, - 143939, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143940, - 143940, - null - ], - [ - "delim-token", - ".", - 143941, - 143941, - { - "value": "." - } - ], - [ - "ident-token", - "overflow-scroll", - 143942, - 143956, - { - "value": "overflow-scroll" - } - ], - [ - "{-token", - "{", - 143957, - 143957, - null - ], - [ - "ident-token", - "overflow", - 143958, - 143965, - { - "value": "overflow" - } - ], - [ - "colon-token", - ":", - 143966, - 143966, - null - ], - [ - "ident-token", - "scroll", - 143967, - 143972, - { - "value": "scroll" - } - ], - [ - "delim-token", - "!", - 143973, - 143973, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 143974, - 143982, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 143983, - 143983, - null - ], - [ - "delim-token", - ".", - 143984, - 143984, - { - "value": "." - } - ], - [ - "ident-token", - "d-inline", - 143985, - 143992, - { - "value": "d-inline" - } - ], - [ - "{-token", - "{", - 143993, - 143993, - null - ], - [ - "ident-token", - "display", - 143994, - 144000, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144001, - 144001, - null - ], - [ - "ident-token", - "inline", - 144002, - 144007, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 144008, - 144008, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144009, - 144017, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144018, - 144018, - null - ], - [ - "delim-token", - ".", - 144019, - 144019, - { - "value": "." - } - ], - [ - "ident-token", - "d-inline-block", - 144020, - 144033, - { - "value": "d-inline-block" - } - ], - [ - "{-token", - "{", - 144034, - 144034, - null - ], - [ - "ident-token", - "display", - 144035, - 144041, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144042, - 144042, - null - ], - [ - "ident-token", - "inline-block", - 144043, - 144054, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 144055, - 144055, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144056, - 144064, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144065, - 144065, - null - ], - [ - "delim-token", - ".", - 144066, - 144066, - { - "value": "." - } - ], - [ - "ident-token", - "d-block", - 144067, - 144073, - { - "value": "d-block" - } - ], - [ - "{-token", - "{", - 144074, - 144074, - null - ], - [ - "ident-token", - "display", - 144075, - 144081, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144082, - 144082, - null - ], - [ - "ident-token", - "block", - 144083, - 144087, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 144088, - 144088, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144089, - 144097, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144098, - 144098, - null - ], - [ - "delim-token", - ".", - 144099, - 144099, - { - "value": "." - } - ], - [ - "ident-token", - "d-grid", - 144100, - 144105, - { - "value": "d-grid" - } - ], - [ - "{-token", - "{", - 144106, - 144106, - null - ], - [ - "ident-token", - "display", - 144107, - 144113, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144114, - 144114, - null - ], - [ - "ident-token", - "grid", - 144115, - 144118, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 144119, - 144119, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144120, - 144128, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144129, - 144129, - null - ], - [ - "delim-token", - ".", - 144130, - 144130, - { - "value": "." - } - ], - [ - "ident-token", - "d-table", - 144131, - 144137, - { - "value": "d-table" - } - ], - [ - "{-token", - "{", - 144138, - 144138, - null - ], - [ - "ident-token", - "display", - 144139, - 144145, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144146, - 144146, - null - ], - [ - "ident-token", - "table", - 144147, - 144151, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 144152, - 144152, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144153, - 144161, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144162, - 144162, - null - ], - [ - "delim-token", - ".", - 144163, - 144163, - { - "value": "." - } - ], - [ - "ident-token", - "d-table-row", - 144164, - 144174, - { - "value": "d-table-row" - } - ], - [ - "{-token", - "{", - 144175, - 144175, - null - ], - [ - "ident-token", - "display", - 144176, - 144182, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144183, - 144183, - null - ], - [ - "ident-token", - "table-row", - 144184, - 144192, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 144193, - 144193, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144194, - 144202, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144203, - 144203, - null - ], - [ - "delim-token", - ".", - 144204, - 144204, - { - "value": "." - } - ], - [ - "ident-token", - "d-table-cell", - 144205, - 144216, - { - "value": "d-table-cell" - } - ], - [ - "{-token", - "{", - 144217, - 144217, - null - ], - [ - "ident-token", - "display", - 144218, - 144224, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144225, - 144225, - null - ], - [ - "ident-token", - "table-cell", - 144226, - 144235, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 144236, - 144236, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144237, - 144245, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144246, - 144246, - null - ], - [ - "delim-token", - ".", - 144247, - 144247, - { - "value": "." - } - ], - [ - "ident-token", - "d-flex", - 144248, - 144253, - { - "value": "d-flex" - } - ], - [ - "{-token", - "{", - 144254, - 144254, - null - ], - [ - "ident-token", - "display", - 144255, - 144261, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144262, - 144262, - null - ], - [ - "ident-token", - "flex", - 144263, - 144266, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 144267, - 144267, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144268, - 144276, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144277, - 144277, - null - ], - [ - "delim-token", - ".", - 144278, - 144278, - { - "value": "." - } - ], - [ - "ident-token", - "d-inline-flex", - 144279, - 144291, - { - "value": "d-inline-flex" - } - ], - [ - "{-token", - "{", - 144292, - 144292, - null - ], - [ - "ident-token", - "display", - 144293, - 144299, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144300, - 144300, - null - ], - [ - "ident-token", - "inline-flex", - 144301, - 144311, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 144312, - 144312, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144313, - 144321, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144322, - 144322, - null - ], - [ - "delim-token", - ".", - 144323, - 144323, - { - "value": "." - } - ], - [ - "ident-token", - "d-none", - 144324, - 144329, - { - "value": "d-none" - } - ], - [ - "{-token", - "{", - 144330, - 144330, - null - ], - [ - "ident-token", - "display", - 144331, - 144337, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 144338, - 144338, - null - ], - [ - "ident-token", - "none", - 144339, - 144342, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 144343, - 144343, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144344, - 144352, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144353, - 144353, - null - ], - [ - "delim-token", - ".", - 144354, - 144354, - { - "value": "." - } - ], - [ - "ident-token", - "shadow", - 144355, - 144360, - { - "value": "shadow" - } - ], - [ - "{-token", - "{", - 144361, - 144361, - null - ], - [ - "ident-token", - "box-shadow", - 144362, - 144371, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 144372, - 144372, - null - ], - [ - "number-token", - "0", - 144373, - 144373, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 144374, - 144374, - null - ], - [ - "dimension-token", - ".5rem", - 144375, - 144379, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144380, - 144380, - null - ], - [ - "dimension-token", - "1rem", - 144381, - 144384, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144385, - 144385, - null - ], - [ - "function-token", - "rgba(", - 144386, - 144390, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 144391, - 144391, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144392, - 144392, - null - ], - [ - "number-token", - "0", - 144393, - 144393, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144394, - 144394, - null - ], - [ - "number-token", - "0", - 144395, - 144395, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144396, - 144396, - null - ], - [ - "number-token", - ".15", - 144397, - 144399, - { - "value": 0.15, - "type": "number" - } - ], - [ - ")-token", - ")", - 144400, - 144400, - null - ], - [ - "delim-token", - "!", - 144401, - 144401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144402, - 144410, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144411, - 144411, - null - ], - [ - "delim-token", - ".", - 144412, - 144412, - { - "value": "." - } - ], - [ - "ident-token", - "shadow-sm", - 144413, - 144421, - { - "value": "shadow-sm" - } - ], - [ - "{-token", - "{", - 144422, - 144422, - null - ], - [ - "ident-token", - "box-shadow", - 144423, - 144432, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 144433, - 144433, - null - ], - [ - "number-token", - "0", - 144434, - 144434, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 144435, - 144435, - null - ], - [ - "dimension-token", - ".125rem", - 144436, - 144442, - { - "value": 0.125, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144443, - 144443, - null - ], - [ - "dimension-token", - ".25rem", - 144444, - 144449, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144450, - 144450, - null - ], - [ - "function-token", - "rgba(", - 144451, - 144455, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 144456, - 144456, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144457, - 144457, - null - ], - [ - "number-token", - "0", - 144458, - 144458, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144459, - 144459, - null - ], - [ - "number-token", - "0", - 144460, - 144460, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144461, - 144461, - null - ], - [ - "number-token", - ".075", - 144462, - 144465, - { - "value": 0.075, - "type": "number" - } - ], - [ - ")-token", - ")", - 144466, - 144466, - null - ], - [ - "delim-token", - "!", - 144467, - 144467, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144468, - 144476, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144477, - 144477, - null - ], - [ - "delim-token", - ".", - 144478, - 144478, - { - "value": "." - } - ], - [ - "ident-token", - "shadow-lg", - 144479, - 144487, - { - "value": "shadow-lg" - } - ], - [ - "{-token", - "{", - 144488, - 144488, - null - ], - [ - "ident-token", - "box-shadow", - 144489, - 144498, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 144499, - 144499, - null - ], - [ - "number-token", - "0", - 144500, - 144500, - { - "value": 0, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 144501, - 144501, - null - ], - [ - "dimension-token", - "1rem", - 144502, - 144505, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144506, - 144506, - null - ], - [ - "dimension-token", - "3rem", - 144507, - 144510, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 144511, - 144511, - null - ], - [ - "function-token", - "rgba(", - 144512, - 144516, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 144517, - 144517, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144518, - 144518, - null - ], - [ - "number-token", - "0", - 144519, - 144519, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144520, - 144520, - null - ], - [ - "number-token", - "0", - 144521, - 144521, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 144522, - 144522, - null - ], - [ - "number-token", - ".175", - 144523, - 144526, - { - "value": 0.175, - "type": "number" - } - ], - [ - ")-token", - ")", - 144527, - 144527, - null - ], - [ - "delim-token", - "!", - 144528, - 144528, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144529, - 144537, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144538, - 144538, - null - ], - [ - "delim-token", - ".", - 144539, - 144539, - { - "value": "." - } - ], - [ - "ident-token", - "shadow-none", - 144540, - 144550, - { - "value": "shadow-none" - } - ], - [ - "{-token", - "{", - 144551, - 144551, - null - ], - [ - "ident-token", - "box-shadow", - 144552, - 144561, - { - "value": "box-shadow" - } - ], - [ - "colon-token", - ":", - 144562, - 144562, - null - ], - [ - "ident-token", - "none", - 144563, - 144566, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 144567, - 144567, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144568, - 144576, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144577, - 144577, - null - ], - [ - "delim-token", - ".", - 144578, - 144578, - { - "value": "." - } - ], - [ - "ident-token", - "position-static", - 144579, - 144593, - { - "value": "position-static" - } - ], - [ - "{-token", - "{", - 144594, - 144594, - null - ], - [ - "ident-token", - "position", - 144595, - 144602, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144603, - 144603, - null - ], - [ - "ident-token", - "static", - 144604, - 144609, - { - "value": "static" - } - ], - [ - "delim-token", - "!", - 144610, - 144610, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144611, - 144619, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144620, - 144620, - null - ], - [ - "delim-token", - ".", - 144621, - 144621, - { - "value": "." - } - ], - [ - "ident-token", - "position-relative", - 144622, - 144638, - { - "value": "position-relative" - } - ], - [ - "{-token", - "{", - 144639, - 144639, - null - ], - [ - "ident-token", - "position", - 144640, - 144647, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144648, - 144648, - null - ], - [ - "ident-token", - "relative", - 144649, - 144656, - { - "value": "relative" - } - ], - [ - "delim-token", - "!", - 144657, - 144657, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144658, - 144666, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144667, - 144667, - null - ], - [ - "delim-token", - ".", - 144668, - 144668, - { - "value": "." - } - ], - [ - "ident-token", - "position-absolute", - 144669, - 144685, - { - "value": "position-absolute" - } - ], - [ - "{-token", - "{", - 144686, - 144686, - null - ], - [ - "ident-token", - "position", - 144687, - 144694, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144695, - 144695, - null - ], - [ - "ident-token", - "absolute", - 144696, - 144703, - { - "value": "absolute" - } - ], - [ - "delim-token", - "!", - 144704, - 144704, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144705, - 144713, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144714, - 144714, - null - ], - [ - "delim-token", - ".", - 144715, - 144715, - { - "value": "." - } - ], - [ - "ident-token", - "position-fixed", - 144716, - 144729, - { - "value": "position-fixed" - } - ], - [ - "{-token", - "{", - 144730, - 144730, - null - ], - [ - "ident-token", - "position", - 144731, - 144738, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144739, - 144739, - null - ], - [ - "ident-token", - "fixed", - 144740, - 144744, - { - "value": "fixed" - } - ], - [ - "delim-token", - "!", - 144745, - 144745, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144746, - 144754, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144755, - 144755, - null - ], - [ - "delim-token", - ".", - 144756, - 144756, - { - "value": "." - } - ], - [ - "ident-token", - "position-sticky", - 144757, - 144771, - { - "value": "position-sticky" - } - ], - [ - "{-token", - "{", - 144772, - 144772, - null - ], - [ - "ident-token", - "position", - 144773, - 144780, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144781, - 144781, - null - ], - [ - "ident-token", - "-webkit-sticky", - 144782, - 144795, - { - "value": "-webkit-sticky" - } - ], - [ - "delim-token", - "!", - 144796, - 144796, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144797, - 144805, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 144806, - 144806, - null - ], - [ - "ident-token", - "position", - 144807, - 144814, - { - "value": "position" - } - ], - [ - "colon-token", - ":", - 144815, - 144815, - null - ], - [ - "ident-token", - "sticky", - 144816, - 144821, - { - "value": "sticky" - } - ], - [ - "delim-token", - "!", - 144822, - 144822, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144823, - 144831, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144832, - 144832, - null - ], - [ - "delim-token", - ".", - 144833, - 144833, - { - "value": "." - } - ], - [ - "ident-token", - "top-0", - 144834, - 144838, - { - "value": "top-0" - } - ], - [ - "{-token", - "{", - 144839, - 144839, - null - ], - [ - "ident-token", - "top", - 144840, - 144842, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 144843, - 144843, - null - ], - [ - "number-token", - "0", - 144844, - 144844, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 144845, - 144845, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144846, - 144854, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144855, - 144855, - null - ], - [ - "delim-token", - ".", - 144856, - 144856, - { - "value": "." - } - ], - [ - "ident-token", - "top-50", - 144857, - 144862, - { - "value": "top-50" - } - ], - [ - "{-token", - "{", - 144863, - 144863, - null - ], - [ - "ident-token", - "top", - 144864, - 144866, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 144867, - 144867, - null - ], - [ - "percentage-token", - "50%", - 144868, - 144870, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 144871, - 144871, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144872, - 144880, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144881, - 144881, - null - ], - [ - "delim-token", - ".", - 144882, - 144882, - { - "value": "." - } - ], - [ - "ident-token", - "top-100", - 144883, - 144889, - { - "value": "top-100" - } - ], - [ - "{-token", - "{", - 144890, - 144890, - null - ], - [ - "ident-token", - "top", - 144891, - 144893, - { - "value": "top" - } - ], - [ - "colon-token", - ":", - 144894, - 144894, - null - ], - [ - "percentage-token", - "100%", - 144895, - 144898, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 144899, - 144899, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144900, - 144908, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144909, - 144909, - null - ], - [ - "delim-token", - ".", - 144910, - 144910, - { - "value": "." - } - ], - [ - "ident-token", - "bottom-0", - 144911, - 144918, - { - "value": "bottom-0" - } - ], - [ - "{-token", - "{", - 144919, - 144919, - null - ], - [ - "ident-token", - "bottom", - 144920, - 144925, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 144926, - 144926, - null - ], - [ - "number-token", - "0", - 144927, - 144927, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 144928, - 144928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144929, - 144937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144938, - 144938, - null - ], - [ - "delim-token", - ".", - 144939, - 144939, - { - "value": "." - } - ], - [ - "ident-token", - "bottom-50", - 144940, - 144948, - { - "value": "bottom-50" - } - ], - [ - "{-token", - "{", - 144949, - 144949, - null - ], - [ - "ident-token", - "bottom", - 144950, - 144955, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 144956, - 144956, - null - ], - [ - "percentage-token", - "50%", - 144957, - 144959, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 144960, - 144960, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144961, - 144969, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 144970, - 144970, - null - ], - [ - "delim-token", - ".", - 144971, - 144971, - { - "value": "." - } - ], - [ - "ident-token", - "bottom-100", - 144972, - 144981, - { - "value": "bottom-100" - } - ], - [ - "{-token", - "{", - 144982, - 144982, - null - ], - [ - "ident-token", - "bottom", - 144983, - 144988, - { - "value": "bottom" - } - ], - [ - "colon-token", - ":", - 144989, - 144989, - null - ], - [ - "percentage-token", - "100%", - 144990, - 144993, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 144994, - 144994, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 144995, - 145003, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145004, - 145004, - null - ], - [ - "delim-token", - ".", - 145005, - 145005, - { - "value": "." - } - ], - [ - "ident-token", - "start-0", - 145006, - 145012, - { - "value": "start-0" - } - ], - [ - "{-token", - "{", - 145013, - 145013, - null - ], - [ - "ident-token", - "left", - 145014, - 145017, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 145018, - 145018, - null - ], - [ - "number-token", - "0", - 145019, - 145019, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145020, - 145020, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145021, - 145029, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145030, - 145030, - null - ], - [ - "delim-token", - ".", - 145031, - 145031, - { - "value": "." - } - ], - [ - "ident-token", - "start-50", - 145032, - 145039, - { - "value": "start-50" - } - ], - [ - "{-token", - "{", - 145040, - 145040, - null - ], - [ - "ident-token", - "left", - 145041, - 145044, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 145045, - 145045, - null - ], - [ - "percentage-token", - "50%", - 145046, - 145048, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 145049, - 145049, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145050, - 145058, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145059, - 145059, - null - ], - [ - "delim-token", - ".", - 145060, - 145060, - { - "value": "." - } - ], - [ - "ident-token", - "start-100", - 145061, - 145069, - { - "value": "start-100" - } - ], - [ - "{-token", - "{", - 145070, - 145070, - null - ], - [ - "ident-token", - "left", - 145071, - 145074, - { - "value": "left" - } - ], - [ - "colon-token", - ":", - 145075, - 145075, - null - ], - [ - "percentage-token", - "100%", - 145076, - 145079, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 145080, - 145080, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145081, - 145089, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145090, - 145090, - null - ], - [ - "delim-token", - ".", - 145091, - 145091, - { - "value": "." - } - ], - [ - "ident-token", - "end-0", - 145092, - 145096, - { - "value": "end-0" - } - ], - [ - "{-token", - "{", - 145097, - 145097, - null - ], - [ - "ident-token", - "right", - 145098, - 145102, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 145103, - 145103, - null - ], - [ - "number-token", - "0", - 145104, - 145104, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145105, - 145105, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145106, - 145114, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145115, - 145115, - null - ], - [ - "delim-token", - ".", - 145116, - 145116, - { - "value": "." - } - ], - [ - "ident-token", - "end-50", - 145117, - 145122, - { - "value": "end-50" - } - ], - [ - "{-token", - "{", - 145123, - 145123, - null - ], - [ - "ident-token", - "right", - 145124, - 145128, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 145129, - 145129, - null - ], - [ - "percentage-token", - "50%", - 145130, - 145132, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 145133, - 145133, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145134, - 145142, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145143, - 145143, - null - ], - [ - "delim-token", - ".", - 145144, - 145144, - { - "value": "." - } - ], - [ - "ident-token", - "end-100", - 145145, - 145151, - { - "value": "end-100" - } - ], - [ - "{-token", - "{", - 145152, - 145152, - null - ], - [ - "ident-token", - "right", - 145153, - 145157, - { - "value": "right" - } - ], - [ - "colon-token", - ":", - 145158, - 145158, - null - ], - [ - "percentage-token", - "100%", - 145159, - 145162, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 145163, - 145163, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145164, - 145172, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145173, - 145173, - null - ], - [ - "delim-token", - ".", - 145174, - 145174, - { - "value": "." - } - ], - [ - "ident-token", - "translate-middle", - 145175, - 145190, - { - "value": "translate-middle" - } - ], - [ - "{-token", - "{", - 145191, - 145191, - null - ], - [ - "ident-token", - "transform", - 145192, - 145200, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 145201, - 145201, - null - ], - [ - "function-token", - "translate(", - 145202, - 145211, - { - "value": "translate" - } - ], - [ - "percentage-token", - "-50%", - 145212, - 145215, - { - "value": -50 - } - ], - [ - "comma-token", - ",", - 145216, - 145216, - null - ], - [ - "percentage-token", - "-50%", - 145217, - 145220, - { - "value": -50 - } - ], - [ - ")-token", - ")", - 145221, - 145221, - null - ], - [ - "delim-token", - "!", - 145222, - 145222, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145223, - 145231, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145232, - 145232, - null - ], - [ - "delim-token", - ".", - 145233, - 145233, - { - "value": "." - } - ], - [ - "ident-token", - "translate-middle-x", - 145234, - 145251, - { - "value": "translate-middle-x" - } - ], - [ - "{-token", - "{", - 145252, - 145252, - null - ], - [ - "ident-token", - "transform", - 145253, - 145261, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 145262, - 145262, - null - ], - [ - "function-token", - "translateX(", - 145263, - 145273, - { - "value": "translateX" - } - ], - [ - "percentage-token", - "-50%", - 145274, - 145277, - { - "value": -50 - } - ], - [ - ")-token", - ")", - 145278, - 145278, - null - ], - [ - "delim-token", - "!", - 145279, - 145279, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145280, - 145288, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145289, - 145289, - null - ], - [ - "delim-token", - ".", - 145290, - 145290, - { - "value": "." - } - ], - [ - "ident-token", - "translate-middle-y", - 145291, - 145308, - { - "value": "translate-middle-y" - } - ], - [ - "{-token", - "{", - 145309, - 145309, - null - ], - [ - "ident-token", - "transform", - 145310, - 145318, - { - "value": "transform" - } - ], - [ - "colon-token", - ":", - 145319, - 145319, - null - ], - [ - "function-token", - "translateY(", - 145320, - 145330, - { - "value": "translateY" - } - ], - [ - "percentage-token", - "-50%", - 145331, - 145334, - { - "value": -50 - } - ], - [ - ")-token", - ")", - 145335, - 145335, - null - ], - [ - "delim-token", - "!", - 145336, - 145336, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145337, - 145345, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145346, - 145346, - null - ], - [ - "delim-token", - ".", - 145347, - 145347, - { - "value": "." - } - ], - [ - "ident-token", - "border", - 145348, - 145353, - { - "value": "border" - } - ], - [ - "{-token", - "{", - 145354, - 145354, - null - ], - [ - "ident-token", - "border", - 145355, - 145360, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 145361, - 145361, - null - ], - [ - "function-token", - "var(", - 145362, - 145365, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 145366, - 145382, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 145383, - 145383, - null - ], - [ - "whitespace-token", - " ", - 145384, - 145384, - null - ], - [ - "function-token", - "var(", - 145385, - 145388, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-style", - 145389, - 145405, - { - "value": "--bs-border-style" - } - ], - [ - ")-token", - ")", - 145406, - 145406, - null - ], - [ - "whitespace-token", - " ", - 145407, - 145407, - null - ], - [ - "function-token", - "var(", - 145408, - 145411, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 145412, - 145428, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 145429, - 145429, - null - ], - [ - "delim-token", - "!", - 145430, - 145430, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145431, - 145439, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145440, - 145440, - null - ], - [ - "delim-token", - ".", - 145441, - 145441, - { - "value": "." - } - ], - [ - "ident-token", - "border-0", - 145442, - 145449, - { - "value": "border-0" - } - ], - [ - "{-token", - "{", - 145450, - 145450, - null - ], - [ - "ident-token", - "border", - 145451, - 145456, - { - "value": "border" - } - ], - [ - "colon-token", - ":", - 145457, - 145457, - null - ], - [ - "number-token", - "0", - 145458, - 145458, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145459, - 145459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145460, - 145468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145469, - 145469, - null - ], - [ - "delim-token", - ".", - 145470, - 145470, - { - "value": "." - } - ], - [ - "ident-token", - "border-top", - 145471, - 145480, - { - "value": "border-top" - } - ], - [ - "{-token", - "{", - 145481, - 145481, - null - ], - [ - "ident-token", - "border-top", - 145482, - 145491, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 145492, - 145492, - null - ], - [ - "function-token", - "var(", - 145493, - 145496, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 145497, - 145513, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 145514, - 145514, - null - ], - [ - "whitespace-token", - " ", - 145515, - 145515, - null - ], - [ - "function-token", - "var(", - 145516, - 145519, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-style", - 145520, - 145536, - { - "value": "--bs-border-style" - } - ], - [ - ")-token", - ")", - 145537, - 145537, - null - ], - [ - "whitespace-token", - " ", - 145538, - 145538, - null - ], - [ - "function-token", - "var(", - 145539, - 145542, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 145543, - 145559, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 145560, - 145560, - null - ], - [ - "delim-token", - "!", - 145561, - 145561, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145562, - 145570, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145571, - 145571, - null - ], - [ - "delim-token", - ".", - 145572, - 145572, - { - "value": "." - } - ], - [ - "ident-token", - "border-top-0", - 145573, - 145584, - { - "value": "border-top-0" - } - ], - [ - "{-token", - "{", - 145585, - 145585, - null - ], - [ - "ident-token", - "border-top", - 145586, - 145595, - { - "value": "border-top" - } - ], - [ - "colon-token", - ":", - 145596, - 145596, - null - ], - [ - "number-token", - "0", - 145597, - 145597, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145598, - 145598, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145599, - 145607, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145608, - 145608, - null - ], - [ - "delim-token", - ".", - 145609, - 145609, - { - "value": "." - } - ], - [ - "ident-token", - "border-end", - 145610, - 145619, - { - "value": "border-end" - } - ], - [ - "{-token", - "{", - 145620, - 145620, - null - ], - [ - "ident-token", - "border-right", - 145621, - 145632, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 145633, - 145633, - null - ], - [ - "function-token", - "var(", - 145634, - 145637, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 145638, - 145654, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 145655, - 145655, - null - ], - [ - "whitespace-token", - " ", - 145656, - 145656, - null - ], - [ - "function-token", - "var(", - 145657, - 145660, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-style", - 145661, - 145677, - { - "value": "--bs-border-style" - } - ], - [ - ")-token", - ")", - 145678, - 145678, - null - ], - [ - "whitespace-token", - " ", - 145679, - 145679, - null - ], - [ - "function-token", - "var(", - 145680, - 145683, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 145684, - 145700, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 145701, - 145701, - null - ], - [ - "delim-token", - "!", - 145702, - 145702, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145703, - 145711, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145712, - 145712, - null - ], - [ - "delim-token", - ".", - 145713, - 145713, - { - "value": "." - } - ], - [ - "ident-token", - "border-end-0", - 145714, - 145725, - { - "value": "border-end-0" - } - ], - [ - "{-token", - "{", - 145726, - 145726, - null - ], - [ - "ident-token", - "border-right", - 145727, - 145738, - { - "value": "border-right" - } - ], - [ - "colon-token", - ":", - 145739, - 145739, - null - ], - [ - "number-token", - "0", - 145740, - 145740, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145741, - 145741, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145742, - 145750, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145751, - 145751, - null - ], - [ - "delim-token", - ".", - 145752, - 145752, - { - "value": "." - } - ], - [ - "ident-token", - "border-bottom", - 145753, - 145765, - { - "value": "border-bottom" - } - ], - [ - "{-token", - "{", - 145766, - 145766, - null - ], - [ - "ident-token", - "border-bottom", - 145767, - 145779, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 145780, - 145780, - null - ], - [ - "function-token", - "var(", - 145781, - 145784, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 145785, - 145801, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 145802, - 145802, - null - ], - [ - "whitespace-token", - " ", - 145803, - 145803, - null - ], - [ - "function-token", - "var(", - 145804, - 145807, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-style", - 145808, - 145824, - { - "value": "--bs-border-style" - } - ], - [ - ")-token", - ")", - 145825, - 145825, - null - ], - [ - "whitespace-token", - " ", - 145826, - 145826, - null - ], - [ - "function-token", - "var(", - 145827, - 145830, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 145831, - 145847, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 145848, - 145848, - null - ], - [ - "delim-token", - "!", - 145849, - 145849, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145850, - 145858, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145859, - 145859, - null - ], - [ - "delim-token", - ".", - 145860, - 145860, - { - "value": "." - } - ], - [ - "ident-token", - "border-bottom-0", - 145861, - 145875, - { - "value": "border-bottom-0" - } - ], - [ - "{-token", - "{", - 145876, - 145876, - null - ], - [ - "ident-token", - "border-bottom", - 145877, - 145889, - { - "value": "border-bottom" - } - ], - [ - "colon-token", - ":", - 145890, - 145890, - null - ], - [ - "number-token", - "0", - 145891, - 145891, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 145892, - 145892, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145893, - 145901, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 145902, - 145902, - null - ], - [ - "delim-token", - ".", - 145903, - 145903, - { - "value": "." - } - ], - [ - "ident-token", - "border-start", - 145904, - 145915, - { - "value": "border-start" - } - ], - [ - "{-token", - "{", - 145916, - 145916, - null - ], - [ - "ident-token", - "border-left", - 145917, - 145927, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 145928, - 145928, - null - ], - [ - "function-token", - "var(", - 145929, - 145932, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-width", - 145933, - 145949, - { - "value": "--bs-border-width" - } - ], - [ - ")-token", - ")", - 145950, - 145950, - null - ], - [ - "whitespace-token", - " ", - 145951, - 145951, - null - ], - [ - "function-token", - "var(", - 145952, - 145955, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-style", - 145956, - 145972, - { - "value": "--bs-border-style" - } - ], - [ - ")-token", - ")", - 145973, - 145973, - null - ], - [ - "whitespace-token", - " ", - 145974, - 145974, - null - ], - [ - "function-token", - "var(", - 145975, - 145978, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-color", - 145979, - 145995, - { - "value": "--bs-border-color" - } - ], - [ - ")-token", - ")", - 145996, - 145996, - null - ], - [ - "delim-token", - "!", - 145997, - 145997, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 145998, - 146006, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146007, - 146007, - null - ], - [ - "delim-token", - ".", - 146008, - 146008, - { - "value": "." - } - ], - [ - "ident-token", - "border-start-0", - 146009, - 146022, - { - "value": "border-start-0" - } - ], - [ - "{-token", - "{", - 146023, - 146023, - null - ], - [ - "ident-token", - "border-left", - 146024, - 146034, - { - "value": "border-left" - } - ], - [ - "colon-token", - ":", - 146035, - 146035, - null - ], - [ - "number-token", - "0", - 146036, - 146036, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 146037, - 146037, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146038, - 146046, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146047, - 146047, - null - ], - [ - "delim-token", - ".", - 146048, - 146048, - { - "value": "." - } - ], - [ - "ident-token", - "border-primary", - 146049, - 146062, - { - "value": "border-primary" - } - ], - [ - "{-token", - "{", - 146063, - 146063, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146064, - 146082, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146083, - 146083, - null - ], - [ - "number-token", - "1", - 146084, - 146084, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146085, - 146085, - null - ], - [ - "ident-token", - "border-color", - 146086, - 146097, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146098, - 146098, - null - ], - [ - "function-token", - "rgba(", - 146099, - 146103, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146104, - 146107, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-primary-rgb", - 146108, - 146123, - { - "value": "--bs-primary-rgb" - } - ], - [ - ")-token", - ")", - 146124, - 146124, - null - ], - [ - "comma-token", - ",", - 146125, - 146125, - null - ], - [ - "function-token", - "var(", - 146126, - 146129, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146130, - 146148, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146149, - 146149, - null - ], - [ - ")-token", - ")", - 146150, - 146150, - null - ], - [ - "delim-token", - "!", - 146151, - 146151, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146152, - 146160, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146161, - 146161, - null - ], - [ - "delim-token", - ".", - 146162, - 146162, - { - "value": "." - } - ], - [ - "ident-token", - "border-secondary", - 146163, - 146178, - { - "value": "border-secondary" - } - ], - [ - "{-token", - "{", - 146179, - 146179, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146180, - 146198, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146199, - 146199, - null - ], - [ - "number-token", - "1", - 146200, - 146200, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146201, - 146201, - null - ], - [ - "ident-token", - "border-color", - 146202, - 146213, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146214, - 146214, - null - ], - [ - "function-token", - "rgba(", - 146215, - 146219, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146220, - 146223, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-secondary-rgb", - 146224, - 146241, - { - "value": "--bs-secondary-rgb" - } - ], - [ - ")-token", - ")", - 146242, - 146242, - null - ], - [ - "comma-token", - ",", - 146243, - 146243, - null - ], - [ - "function-token", - "var(", - 146244, - 146247, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146248, - 146266, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146267, - 146267, - null - ], - [ - ")-token", - ")", - 146268, - 146268, - null - ], - [ - "delim-token", - "!", - 146269, - 146269, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146270, - 146278, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146279, - 146279, - null - ], - [ - "delim-token", - ".", - 146280, - 146280, - { - "value": "." - } - ], - [ - "ident-token", - "border-success", - 146281, - 146294, - { - "value": "border-success" - } - ], - [ - "{-token", - "{", - 146295, - 146295, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146296, - 146314, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146315, - 146315, - null - ], - [ - "number-token", - "1", - 146316, - 146316, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146317, - 146317, - null - ], - [ - "ident-token", - "border-color", - 146318, - 146329, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146330, - 146330, - null - ], - [ - "function-token", - "rgba(", - 146331, - 146335, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146336, - 146339, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-success-rgb", - 146340, - 146355, - { - "value": "--bs-success-rgb" - } - ], - [ - ")-token", - ")", - 146356, - 146356, - null - ], - [ - "comma-token", - ",", - 146357, - 146357, - null - ], - [ - "function-token", - "var(", - 146358, - 146361, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146362, - 146380, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146381, - 146381, - null - ], - [ - ")-token", - ")", - 146382, - 146382, - null - ], - [ - "delim-token", - "!", - 146383, - 146383, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146384, - 146392, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146393, - 146393, - null - ], - [ - "delim-token", - ".", - 146394, - 146394, - { - "value": "." - } - ], - [ - "ident-token", - "border-info", - 146395, - 146405, - { - "value": "border-info" - } - ], - [ - "{-token", - "{", - 146406, - 146406, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146407, - 146425, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146426, - 146426, - null - ], - [ - "number-token", - "1", - 146427, - 146427, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146428, - 146428, - null - ], - [ - "ident-token", - "border-color", - 146429, - 146440, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146441, - 146441, - null - ], - [ - "function-token", - "rgba(", - 146442, - 146446, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146447, - 146450, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-info-rgb", - 146451, - 146463, - { - "value": "--bs-info-rgb" - } - ], - [ - ")-token", - ")", - 146464, - 146464, - null - ], - [ - "comma-token", - ",", - 146465, - 146465, - null - ], - [ - "function-token", - "var(", - 146466, - 146469, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146470, - 146488, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146489, - 146489, - null - ], - [ - ")-token", - ")", - 146490, - 146490, - null - ], - [ - "delim-token", - "!", - 146491, - 146491, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146492, - 146500, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146501, - 146501, - null - ], - [ - "delim-token", - ".", - 146502, - 146502, - { - "value": "." - } - ], - [ - "ident-token", - "border-warning", - 146503, - 146516, - { - "value": "border-warning" - } - ], - [ - "{-token", - "{", - 146517, - 146517, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146518, - 146536, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146537, - 146537, - null - ], - [ - "number-token", - "1", - 146538, - 146538, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146539, - 146539, - null - ], - [ - "ident-token", - "border-color", - 146540, - 146551, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146552, - 146552, - null - ], - [ - "function-token", - "rgba(", - 146553, - 146557, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146558, - 146561, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-warning-rgb", - 146562, - 146577, - { - "value": "--bs-warning-rgb" - } - ], - [ - ")-token", - ")", - 146578, - 146578, - null - ], - [ - "comma-token", - ",", - 146579, - 146579, - null - ], - [ - "function-token", - "var(", - 146580, - 146583, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146584, - 146602, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146603, - 146603, - null - ], - [ - ")-token", - ")", - 146604, - 146604, - null - ], - [ - "delim-token", - "!", - 146605, - 146605, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146606, - 146614, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146615, - 146615, - null - ], - [ - "delim-token", - ".", - 146616, - 146616, - { - "value": "." - } - ], - [ - "ident-token", - "border-danger", - 146617, - 146629, - { - "value": "border-danger" - } - ], - [ - "{-token", - "{", - 146630, - 146630, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146631, - 146649, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146650, - 146650, - null - ], - [ - "number-token", - "1", - 146651, - 146651, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146652, - 146652, - null - ], - [ - "ident-token", - "border-color", - 146653, - 146664, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146665, - 146665, - null - ], - [ - "function-token", - "rgba(", - 146666, - 146670, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146671, - 146674, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-danger-rgb", - 146675, - 146689, - { - "value": "--bs-danger-rgb" - } - ], - [ - ")-token", - ")", - 146690, - 146690, - null - ], - [ - "comma-token", - ",", - 146691, - 146691, - null - ], - [ - "function-token", - "var(", - 146692, - 146695, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146696, - 146714, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146715, - 146715, - null - ], - [ - ")-token", - ")", - 146716, - 146716, - null - ], - [ - "delim-token", - "!", - 146717, - 146717, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146718, - 146726, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146727, - 146727, - null - ], - [ - "delim-token", - ".", - 146728, - 146728, - { - "value": "." - } - ], - [ - "ident-token", - "border-light", - 146729, - 146740, - { - "value": "border-light" - } - ], - [ - "{-token", - "{", - 146741, - 146741, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146742, - 146760, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146761, - 146761, - null - ], - [ - "number-token", - "1", - 146762, - 146762, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146763, - 146763, - null - ], - [ - "ident-token", - "border-color", - 146764, - 146775, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146776, - 146776, - null - ], - [ - "function-token", - "rgba(", - 146777, - 146781, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146782, - 146785, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-light-rgb", - 146786, - 146799, - { - "value": "--bs-light-rgb" - } - ], - [ - ")-token", - ")", - 146800, - 146800, - null - ], - [ - "comma-token", - ",", - 146801, - 146801, - null - ], - [ - "function-token", - "var(", - 146802, - 146805, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146806, - 146824, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146825, - 146825, - null - ], - [ - ")-token", - ")", - 146826, - 146826, - null - ], - [ - "delim-token", - "!", - 146827, - 146827, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146828, - 146836, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146837, - 146837, - null - ], - [ - "delim-token", - ".", - 146838, - 146838, - { - "value": "." - } - ], - [ - "ident-token", - "border-dark", - 146839, - 146849, - { - "value": "border-dark" - } - ], - [ - "{-token", - "{", - 146850, - 146850, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146851, - 146869, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146870, - 146870, - null - ], - [ - "number-token", - "1", - 146871, - 146871, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146872, - 146872, - null - ], - [ - "ident-token", - "border-color", - 146873, - 146884, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146885, - 146885, - null - ], - [ - "function-token", - "rgba(", - 146886, - 146890, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 146891, - 146894, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dark-rgb", - 146895, - 146907, - { - "value": "--bs-dark-rgb" - } - ], - [ - ")-token", - ")", - 146908, - 146908, - null - ], - [ - "comma-token", - ",", - 146909, - 146909, - null - ], - [ - "function-token", - "var(", - 146910, - 146913, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 146914, - 146932, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 146933, - 146933, - null - ], - [ - ")-token", - ")", - 146934, - 146934, - null - ], - [ - "delim-token", - "!", - 146935, - 146935, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 146936, - 146944, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 146945, - 146945, - null - ], - [ - "delim-token", - ".", - 146946, - 146946, - { - "value": "." - } - ], - [ - "ident-token", - "border-white", - 146947, - 146958, - { - "value": "border-white" - } - ], - [ - "{-token", - "{", - 146959, - 146959, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 146960, - 146978, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 146979, - 146979, - null - ], - [ - "number-token", - "1", - 146980, - 146980, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 146981, - 146981, - null - ], - [ - "ident-token", - "border-color", - 146982, - 146993, - { - "value": "border-color" - } - ], - [ - "colon-token", - ":", - 146994, - 146994, - null - ], - [ - "function-token", - "rgba(", - 146995, - 146999, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 147000, - 147003, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-white-rgb", - 147004, - 147017, - { - "value": "--bs-white-rgb" - } - ], - [ - ")-token", - ")", - 147018, - 147018, - null - ], - [ - "comma-token", - ",", - 147019, - 147019, - null - ], - [ - "function-token", - "var(", - 147020, - 147023, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-opacity", - 147024, - 147042, - { - "value": "--bs-border-opacity" - } - ], - [ - ")-token", - ")", - 147043, - 147043, - null - ], - [ - ")-token", - ")", - 147044, - 147044, - null - ], - [ - "delim-token", - "!", - 147045, - 147045, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147046, - 147054, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147055, - 147055, - null - ], - [ - "delim-token", - ".", - 147056, - 147056, - { - "value": "." - } - ], - [ - "ident-token", - "border-1", - 147057, - 147064, - { - "value": "border-1" - } - ], - [ - "{-token", - "{", - 147065, - 147065, - null - ], - [ - "ident-token", - "--bs-border-width", - 147066, - 147082, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 147083, - 147083, - null - ], - [ - "dimension-token", - "1px", - 147084, - 147086, - { - "value": 1, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 147087, - 147087, - null - ], - [ - "delim-token", - ".", - 147088, - 147088, - { - "value": "." - } - ], - [ - "ident-token", - "border-2", - 147089, - 147096, - { - "value": "border-2" - } - ], - [ - "{-token", - "{", - 147097, - 147097, - null - ], - [ - "ident-token", - "--bs-border-width", - 147098, - 147114, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 147115, - 147115, - null - ], - [ - "dimension-token", - "2px", - 147116, - 147118, - { - "value": 2, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 147119, - 147119, - null - ], - [ - "delim-token", - ".", - 147120, - 147120, - { - "value": "." - } - ], - [ - "ident-token", - "border-3", - 147121, - 147128, - { - "value": "border-3" - } - ], - [ - "{-token", - "{", - 147129, - 147129, - null - ], - [ - "ident-token", - "--bs-border-width", - 147130, - 147146, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 147147, - 147147, - null - ], - [ - "dimension-token", - "3px", - 147148, - 147150, - { - "value": 3, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 147151, - 147151, - null - ], - [ - "delim-token", - ".", - 147152, - 147152, - { - "value": "." - } - ], - [ - "ident-token", - "border-4", - 147153, - 147160, - { - "value": "border-4" - } - ], - [ - "{-token", - "{", - 147161, - 147161, - null - ], - [ - "ident-token", - "--bs-border-width", - 147162, - 147178, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 147179, - 147179, - null - ], - [ - "dimension-token", - "4px", - 147180, - 147182, - { - "value": 4, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 147183, - 147183, - null - ], - [ - "delim-token", - ".", - 147184, - 147184, - { - "value": "." - } - ], - [ - "ident-token", - "border-5", - 147185, - 147192, - { - "value": "border-5" - } - ], - [ - "{-token", - "{", - 147193, - 147193, - null - ], - [ - "ident-token", - "--bs-border-width", - 147194, - 147210, - { - "value": "--bs-border-width" - } - ], - [ - "colon-token", - ":", - 147211, - 147211, - null - ], - [ - "dimension-token", - "5px", - 147212, - 147214, - { - "value": 5, - "type": "integer", - "unit": "px" - } - ], - [ - "}-token", - "}", - 147215, - 147215, - null - ], - [ - "delim-token", - ".", - 147216, - 147216, - { - "value": "." - } - ], - [ - "ident-token", - "border-opacity-10", - 147217, - 147233, - { - "value": "border-opacity-10" - } - ], - [ - "{-token", - "{", - 147234, - 147234, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 147235, - 147253, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 147254, - 147254, - null - ], - [ - "number-token", - "0.1", - 147255, - 147257, - { - "value": 0.1, - "type": "number" - } - ], - [ - "}-token", - "}", - 147258, - 147258, - null - ], - [ - "delim-token", - ".", - 147259, - 147259, - { - "value": "." - } - ], - [ - "ident-token", - "border-opacity-25", - 147260, - 147276, - { - "value": "border-opacity-25" - } - ], - [ - "{-token", - "{", - 147277, - 147277, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 147278, - 147296, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 147297, - 147297, - null - ], - [ - "number-token", - "0.25", - 147298, - 147301, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 147302, - 147302, - null - ], - [ - "delim-token", - ".", - 147303, - 147303, - { - "value": "." - } - ], - [ - "ident-token", - "border-opacity-50", - 147304, - 147320, - { - "value": "border-opacity-50" - } - ], - [ - "{-token", - "{", - 147321, - 147321, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 147322, - 147340, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 147341, - 147341, - null - ], - [ - "number-token", - "0.5", - 147342, - 147344, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 147345, - 147345, - null - ], - [ - "delim-token", - ".", - 147346, - 147346, - { - "value": "." - } - ], - [ - "ident-token", - "border-opacity-75", - 147347, - 147363, - { - "value": "border-opacity-75" - } - ], - [ - "{-token", - "{", - 147364, - 147364, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 147365, - 147383, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 147384, - 147384, - null - ], - [ - "number-token", - "0.75", - 147385, - 147388, - { - "value": 0.75, - "type": "number" - } - ], - [ - "}-token", - "}", - 147389, - 147389, - null - ], - [ - "delim-token", - ".", - 147390, - 147390, - { - "value": "." - } - ], - [ - "ident-token", - "border-opacity-100", - 147391, - 147408, - { - "value": "border-opacity-100" - } - ], - [ - "{-token", - "{", - 147409, - 147409, - null - ], - [ - "ident-token", - "--bs-border-opacity", - 147410, - 147428, - { - "value": "--bs-border-opacity" - } - ], - [ - "colon-token", - ":", - 147429, - 147429, - null - ], - [ - "number-token", - "1", - 147430, - 147430, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 147431, - 147431, - null - ], - [ - "delim-token", - ".", - 147432, - 147432, - { - "value": "." - } - ], - [ - "ident-token", - "w-25", - 147433, - 147436, - { - "value": "w-25" - } - ], - [ - "{-token", - "{", - 147437, - 147437, - null - ], - [ - "ident-token", - "width", - 147438, - 147442, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147443, - 147443, - null - ], - [ - "percentage-token", - "25%", - 147444, - 147446, - { - "value": 25 - } - ], - [ - "delim-token", - "!", - 147447, - 147447, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147448, - 147456, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147457, - 147457, - null - ], - [ - "delim-token", - ".", - 147458, - 147458, - { - "value": "." - } - ], - [ - "ident-token", - "w-50", - 147459, - 147462, - { - "value": "w-50" - } - ], - [ - "{-token", - "{", - 147463, - 147463, - null - ], - [ - "ident-token", - "width", - 147464, - 147468, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147469, - 147469, - null - ], - [ - "percentage-token", - "50%", - 147470, - 147472, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 147473, - 147473, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147474, - 147482, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147483, - 147483, - null - ], - [ - "delim-token", - ".", - 147484, - 147484, - { - "value": "." - } - ], - [ - "ident-token", - "w-75", - 147485, - 147488, - { - "value": "w-75" - } - ], - [ - "{-token", - "{", - 147489, - 147489, - null - ], - [ - "ident-token", - "width", - 147490, - 147494, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147495, - 147495, - null - ], - [ - "percentage-token", - "75%", - 147496, - 147498, - { - "value": 75 - } - ], - [ - "delim-token", - "!", - 147499, - 147499, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147500, - 147508, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147509, - 147509, - null - ], - [ - "delim-token", - ".", - 147510, - 147510, - { - "value": "." - } - ], - [ - "ident-token", - "w-100", - 147511, - 147515, - { - "value": "w-100" - } - ], - [ - "{-token", - "{", - 147516, - 147516, - null - ], - [ - "ident-token", - "width", - 147517, - 147521, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147522, - 147522, - null - ], - [ - "percentage-token", - "100%", - 147523, - 147526, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 147527, - 147527, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147528, - 147536, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147537, - 147537, - null - ], - [ - "delim-token", - ".", - 147538, - 147538, - { - "value": "." - } - ], - [ - "ident-token", - "w-auto", - 147539, - 147544, - { - "value": "w-auto" - } - ], - [ - "{-token", - "{", - 147545, - 147545, - null - ], - [ - "ident-token", - "width", - 147546, - 147550, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147551, - 147551, - null - ], - [ - "ident-token", - "auto", - 147552, - 147555, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 147556, - 147556, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147557, - 147565, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147566, - 147566, - null - ], - [ - "delim-token", - ".", - 147567, - 147567, - { - "value": "." - } - ], - [ - "ident-token", - "mw-100", - 147568, - 147573, - { - "value": "mw-100" - } - ], - [ - "{-token", - "{", - 147574, - 147574, - null - ], - [ - "ident-token", - "max-width", - 147575, - 147583, - { - "value": "max-width" - } - ], - [ - "colon-token", - ":", - 147584, - 147584, - null - ], - [ - "percentage-token", - "100%", - 147585, - 147588, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 147589, - 147589, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147590, - 147598, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147599, - 147599, - null - ], - [ - "delim-token", - ".", - 147600, - 147600, - { - "value": "." - } - ], - [ - "ident-token", - "vw-100", - 147601, - 147606, - { - "value": "vw-100" - } - ], - [ - "{-token", - "{", - 147607, - 147607, - null - ], - [ - "ident-token", - "width", - 147608, - 147612, - { - "value": "width" - } - ], - [ - "colon-token", - ":", - 147613, - 147613, - null - ], - [ - "dimension-token", - "100vw", - 147614, - 147618, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "delim-token", - "!", - 147619, - 147619, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147620, - 147628, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147629, - 147629, - null - ], - [ - "delim-token", - ".", - 147630, - 147630, - { - "value": "." - } - ], - [ - "ident-token", - "min-vw-100", - 147631, - 147640, - { - "value": "min-vw-100" - } - ], - [ - "{-token", - "{", - 147641, - 147641, - null - ], - [ - "ident-token", - "min-width", - 147642, - 147650, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 147651, - 147651, - null - ], - [ - "dimension-token", - "100vw", - 147652, - 147656, - { - "value": 100, - "type": "integer", - "unit": "vw" - } - ], - [ - "delim-token", - "!", - 147657, - 147657, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147658, - 147666, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147667, - 147667, - null - ], - [ - "delim-token", - ".", - 147668, - 147668, - { - "value": "." - } - ], - [ - "ident-token", - "h-25", - 147669, - 147672, - { - "value": "h-25" - } - ], - [ - "{-token", - "{", - 147673, - 147673, - null - ], - [ - "ident-token", - "height", - 147674, - 147679, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147680, - 147680, - null - ], - [ - "percentage-token", - "25%", - 147681, - 147683, - { - "value": 25 - } - ], - [ - "delim-token", - "!", - 147684, - 147684, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147685, - 147693, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147694, - 147694, - null - ], - [ - "delim-token", - ".", - 147695, - 147695, - { - "value": "." - } - ], - [ - "ident-token", - "h-50", - 147696, - 147699, - { - "value": "h-50" - } - ], - [ - "{-token", - "{", - 147700, - 147700, - null - ], - [ - "ident-token", - "height", - 147701, - 147706, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147707, - 147707, - null - ], - [ - "percentage-token", - "50%", - 147708, - 147710, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 147711, - 147711, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147712, - 147720, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147721, - 147721, - null - ], - [ - "delim-token", - ".", - 147722, - 147722, - { - "value": "." - } - ], - [ - "ident-token", - "h-75", - 147723, - 147726, - { - "value": "h-75" - } - ], - [ - "{-token", - "{", - 147727, - 147727, - null - ], - [ - "ident-token", - "height", - 147728, - 147733, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147734, - 147734, - null - ], - [ - "percentage-token", - "75%", - 147735, - 147737, - { - "value": 75 - } - ], - [ - "delim-token", - "!", - 147738, - 147738, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147739, - 147747, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147748, - 147748, - null - ], - [ - "delim-token", - ".", - 147749, - 147749, - { - "value": "." - } - ], - [ - "ident-token", - "h-100", - 147750, - 147754, - { - "value": "h-100" - } - ], - [ - "{-token", - "{", - 147755, - 147755, - null - ], - [ - "ident-token", - "height", - 147756, - 147761, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147762, - 147762, - null - ], - [ - "percentage-token", - "100%", - 147763, - 147766, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 147767, - 147767, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147768, - 147776, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147777, - 147777, - null - ], - [ - "delim-token", - ".", - 147778, - 147778, - { - "value": "." - } - ], - [ - "ident-token", - "h-auto", - 147779, - 147784, - { - "value": "h-auto" - } - ], - [ - "{-token", - "{", - 147785, - 147785, - null - ], - [ - "ident-token", - "height", - 147786, - 147791, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147792, - 147792, - null - ], - [ - "ident-token", - "auto", - 147793, - 147796, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 147797, - 147797, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147798, - 147806, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147807, - 147807, - null - ], - [ - "delim-token", - ".", - 147808, - 147808, - { - "value": "." - } - ], - [ - "ident-token", - "mh-100", - 147809, - 147814, - { - "value": "mh-100" - } - ], - [ - "{-token", - "{", - 147815, - 147815, - null - ], - [ - "ident-token", - "max-height", - 147816, - 147825, - { - "value": "max-height" - } - ], - [ - "colon-token", - ":", - 147826, - 147826, - null - ], - [ - "percentage-token", - "100%", - 147827, - 147830, - { - "value": 100 - } - ], - [ - "delim-token", - "!", - 147831, - 147831, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147832, - 147840, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147841, - 147841, - null - ], - [ - "delim-token", - ".", - 147842, - 147842, - { - "value": "." - } - ], - [ - "ident-token", - "vh-100", - 147843, - 147848, - { - "value": "vh-100" - } - ], - [ - "{-token", - "{", - 147849, - 147849, - null - ], - [ - "ident-token", - "height", - 147850, - 147855, - { - "value": "height" - } - ], - [ - "colon-token", - ":", - 147856, - 147856, - null - ], - [ - "dimension-token", - "100vh", - 147857, - 147861, - { - "value": 100, - "type": "integer", - "unit": "vh" - } - ], - [ - "delim-token", - "!", - 147862, - 147862, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147863, - 147871, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147872, - 147872, - null - ], - [ - "delim-token", - ".", - 147873, - 147873, - { - "value": "." - } - ], - [ - "ident-token", - "min-vh-100", - 147874, - 147883, - { - "value": "min-vh-100" - } - ], - [ - "{-token", - "{", - 147884, - 147884, - null - ], - [ - "ident-token", - "min-height", - 147885, - 147894, - { - "value": "min-height" - } - ], - [ - "colon-token", - ":", - 147895, - 147895, - null - ], - [ - "dimension-token", - "100vh", - 147896, - 147900, - { - "value": 100, - "type": "integer", - "unit": "vh" - } - ], - [ - "delim-token", - "!", - 147901, - 147901, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147902, - 147910, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147911, - 147911, - null - ], - [ - "delim-token", - ".", - 147912, - 147912, - { - "value": "." - } - ], - [ - "ident-token", - "flex-fill", - 147913, - 147921, - { - "value": "flex-fill" - } - ], - [ - "{-token", - "{", - 147922, - 147922, - null - ], - [ - "ident-token", - "flex", - 147923, - 147926, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 147927, - 147927, - null - ], - [ - "number-token", - "1", - 147928, - 147928, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 147929, - 147929, - null - ], - [ - "number-token", - "1", - 147930, - 147930, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 147931, - 147931, - null - ], - [ - "ident-token", - "auto", - 147932, - 147935, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 147936, - 147936, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147937, - 147945, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147946, - 147946, - null - ], - [ - "delim-token", - ".", - 147947, - 147947, - { - "value": "." - } - ], - [ - "ident-token", - "flex-row", - 147948, - 147955, - { - "value": "flex-row" - } - ], - [ - "{-token", - "{", - 147956, - 147956, - null - ], - [ - "ident-token", - "flex-direction", - 147957, - 147970, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 147971, - 147971, - null - ], - [ - "ident-token", - "row", - 147972, - 147974, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 147975, - 147975, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 147976, - 147984, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 147985, - 147985, - null - ], - [ - "delim-token", - ".", - 147986, - 147986, - { - "value": "." - } - ], - [ - "ident-token", - "flex-column", - 147987, - 147997, - { - "value": "flex-column" - } - ], - [ - "{-token", - "{", - 147998, - 147998, - null - ], - [ - "ident-token", - "flex-direction", - 147999, - 148012, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 148013, - 148013, - null - ], - [ - "ident-token", - "column", - 148014, - 148019, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 148020, - 148020, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148021, - 148029, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148030, - 148030, - null - ], - [ - "delim-token", - ".", - 148031, - 148031, - { - "value": "." - } - ], - [ - "ident-token", - "flex-row-reverse", - 148032, - 148047, - { - "value": "flex-row-reverse" - } - ], - [ - "{-token", - "{", - 148048, - 148048, - null - ], - [ - "ident-token", - "flex-direction", - 148049, - 148062, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 148063, - 148063, - null - ], - [ - "ident-token", - "row-reverse", - 148064, - 148074, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 148075, - 148075, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148076, - 148084, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148085, - 148085, - null - ], - [ - "delim-token", - ".", - 148086, - 148086, - { - "value": "." - } - ], - [ - "ident-token", - "flex-column-reverse", - 148087, - 148105, - { - "value": "flex-column-reverse" - } - ], - [ - "{-token", - "{", - 148106, - 148106, - null - ], - [ - "ident-token", - "flex-direction", - 148107, - 148120, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 148121, - 148121, - null - ], - [ - "ident-token", - "column-reverse", - 148122, - 148135, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 148136, - 148136, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148137, - 148145, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148146, - 148146, - null - ], - [ - "delim-token", - ".", - 148147, - 148147, - { - "value": "." - } - ], - [ - "ident-token", - "flex-grow-0", - 148148, - 148158, - { - "value": "flex-grow-0" - } - ], - [ - "{-token", - "{", - 148159, - 148159, - null - ], - [ - "ident-token", - "flex-grow", - 148160, - 148168, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 148169, - 148169, - null - ], - [ - "number-token", - "0", - 148170, - 148170, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 148171, - 148171, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148172, - 148180, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148181, - 148181, - null - ], - [ - "delim-token", - ".", - 148182, - 148182, - { - "value": "." - } - ], - [ - "ident-token", - "flex-grow-1", - 148183, - 148193, - { - "value": "flex-grow-1" - } - ], - [ - "{-token", - "{", - 148194, - 148194, - null - ], - [ - "ident-token", - "flex-grow", - 148195, - 148203, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 148204, - 148204, - null - ], - [ - "number-token", - "1", - 148205, - 148205, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 148206, - 148206, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148207, - 148215, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148216, - 148216, - null - ], - [ - "delim-token", - ".", - 148217, - 148217, - { - "value": "." - } - ], - [ - "ident-token", - "flex-shrink-0", - 148218, - 148230, - { - "value": "flex-shrink-0" - } - ], - [ - "{-token", - "{", - 148231, - 148231, - null - ], - [ - "ident-token", - "flex-shrink", - 148232, - 148242, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 148243, - 148243, - null - ], - [ - "number-token", - "0", - 148244, - 148244, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 148245, - 148245, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148246, - 148254, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148255, - 148255, - null - ], - [ - "delim-token", - ".", - 148256, - 148256, - { - "value": "." - } - ], - [ - "ident-token", - "flex-shrink-1", - 148257, - 148269, - { - "value": "flex-shrink-1" - } - ], - [ - "{-token", - "{", - 148270, - 148270, - null - ], - [ - "ident-token", - "flex-shrink", - 148271, - 148281, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 148282, - 148282, - null - ], - [ - "number-token", - "1", - 148283, - 148283, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 148284, - 148284, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148285, - 148293, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148294, - 148294, - null - ], - [ - "delim-token", - ".", - 148295, - 148295, - { - "value": "." - } - ], - [ - "ident-token", - "flex-wrap", - 148296, - 148304, - { - "value": "flex-wrap" - } - ], - [ - "{-token", - "{", - 148305, - 148305, - null - ], - [ - "ident-token", - "flex-wrap", - 148306, - 148314, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 148315, - 148315, - null - ], - [ - "ident-token", - "wrap", - 148316, - 148319, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 148320, - 148320, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148321, - 148329, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148330, - 148330, - null - ], - [ - "delim-token", - ".", - 148331, - 148331, - { - "value": "." - } - ], - [ - "ident-token", - "flex-nowrap", - 148332, - 148342, - { - "value": "flex-nowrap" - } - ], - [ - "{-token", - "{", - 148343, - 148343, - null - ], - [ - "ident-token", - "flex-wrap", - 148344, - 148352, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 148353, - 148353, - null - ], - [ - "ident-token", - "nowrap", - 148354, - 148359, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 148360, - 148360, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148361, - 148369, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148370, - 148370, - null - ], - [ - "delim-token", - ".", - 148371, - 148371, - { - "value": "." - } - ], - [ - "ident-token", - "flex-wrap-reverse", - 148372, - 148388, - { - "value": "flex-wrap-reverse" - } - ], - [ - "{-token", - "{", - 148389, - 148389, - null - ], - [ - "ident-token", - "flex-wrap", - 148390, - 148398, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 148399, - 148399, - null - ], - [ - "ident-token", - "wrap-reverse", - 148400, - 148411, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 148412, - 148412, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148413, - 148421, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148422, - 148422, - null - ], - [ - "delim-token", - ".", - 148423, - 148423, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-start", - 148424, - 148444, - { - "value": "justify-content-start" - } - ], - [ - "{-token", - "{", - 148445, - 148445, - null - ], - [ - "ident-token", - "justify-content", - 148446, - 148460, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148461, - 148461, - null - ], - [ - "ident-token", - "flex-start", - 148462, - 148471, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 148472, - 148472, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148473, - 148481, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148482, - 148482, - null - ], - [ - "delim-token", - ".", - 148483, - 148483, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-end", - 148484, - 148502, - { - "value": "justify-content-end" - } - ], - [ - "{-token", - "{", - 148503, - 148503, - null - ], - [ - "ident-token", - "justify-content", - 148504, - 148518, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148519, - 148519, - null - ], - [ - "ident-token", - "flex-end", - 148520, - 148527, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 148528, - 148528, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148529, - 148537, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148538, - 148538, - null - ], - [ - "delim-token", - ".", - 148539, - 148539, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-center", - 148540, - 148561, - { - "value": "justify-content-center" - } - ], - [ - "{-token", - "{", - 148562, - 148562, - null - ], - [ - "ident-token", - "justify-content", - 148563, - 148577, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148578, - 148578, - null - ], - [ - "ident-token", - "center", - 148579, - 148584, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 148585, - 148585, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148586, - 148594, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148595, - 148595, - null - ], - [ - "delim-token", - ".", - 148596, - 148596, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-between", - 148597, - 148619, - { - "value": "justify-content-between" - } - ], - [ - "{-token", - "{", - 148620, - 148620, - null - ], - [ - "ident-token", - "justify-content", - 148621, - 148635, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148636, - 148636, - null - ], - [ - "ident-token", - "space-between", - 148637, - 148649, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 148650, - 148650, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148651, - 148659, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148660, - 148660, - null - ], - [ - "delim-token", - ".", - 148661, - 148661, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-around", - 148662, - 148683, - { - "value": "justify-content-around" - } - ], - [ - "{-token", - "{", - 148684, - 148684, - null - ], - [ - "ident-token", - "justify-content", - 148685, - 148699, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148700, - 148700, - null - ], - [ - "ident-token", - "space-around", - 148701, - 148712, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 148713, - 148713, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148714, - 148722, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148723, - 148723, - null - ], - [ - "delim-token", - ".", - 148724, - 148724, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-evenly", - 148725, - 148746, - { - "value": "justify-content-evenly" - } - ], - [ - "{-token", - "{", - 148747, - 148747, - null - ], - [ - "ident-token", - "justify-content", - 148748, - 148762, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 148763, - 148763, - null - ], - [ - "ident-token", - "space-evenly", - 148764, - 148775, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 148776, - 148776, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148777, - 148785, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148786, - 148786, - null - ], - [ - "delim-token", - ".", - 148787, - 148787, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-start", - 148788, - 148804, - { - "value": "align-items-start" - } - ], - [ - "{-token", - "{", - 148805, - 148805, - null - ], - [ - "ident-token", - "align-items", - 148806, - 148816, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 148817, - 148817, - null - ], - [ - "ident-token", - "flex-start", - 148818, - 148827, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 148828, - 148828, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148829, - 148837, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148838, - 148838, - null - ], - [ - "delim-token", - ".", - 148839, - 148839, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-end", - 148840, - 148854, - { - "value": "align-items-end" - } - ], - [ - "{-token", - "{", - 148855, - 148855, - null - ], - [ - "ident-token", - "align-items", - 148856, - 148866, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 148867, - 148867, - null - ], - [ - "ident-token", - "flex-end", - 148868, - 148875, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 148876, - 148876, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148877, - 148885, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148886, - 148886, - null - ], - [ - "delim-token", - ".", - 148887, - 148887, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-center", - 148888, - 148905, - { - "value": "align-items-center" - } - ], - [ - "{-token", - "{", - 148906, - 148906, - null - ], - [ - "ident-token", - "align-items", - 148907, - 148917, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 148918, - 148918, - null - ], - [ - "ident-token", - "center", - 148919, - 148924, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 148925, - 148925, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148926, - 148934, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148935, - 148935, - null - ], - [ - "delim-token", - ".", - 148936, - 148936, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-baseline", - 148937, - 148956, - { - "value": "align-items-baseline" - } - ], - [ - "{-token", - "{", - 148957, - 148957, - null - ], - [ - "ident-token", - "align-items", - 148958, - 148968, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 148969, - 148969, - null - ], - [ - "ident-token", - "baseline", - 148970, - 148977, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 148978, - 148978, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 148979, - 148987, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 148988, - 148988, - null - ], - [ - "delim-token", - ".", - 148989, - 148989, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-stretch", - 148990, - 149008, - { - "value": "align-items-stretch" - } - ], - [ - "{-token", - "{", - 149009, - 149009, - null - ], - [ - "ident-token", - "align-items", - 149010, - 149020, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 149021, - 149021, - null - ], - [ - "ident-token", - "stretch", - 149022, - 149028, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 149029, - 149029, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149030, - 149038, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149039, - 149039, - null - ], - [ - "delim-token", - ".", - 149040, - 149040, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-start", - 149041, - 149059, - { - "value": "align-content-start" - } - ], - [ - "{-token", - "{", - 149060, - 149060, - null - ], - [ - "ident-token", - "align-content", - 149061, - 149073, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149074, - 149074, - null - ], - [ - "ident-token", - "flex-start", - 149075, - 149084, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 149085, - 149085, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149086, - 149094, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149095, - 149095, - null - ], - [ - "delim-token", - ".", - 149096, - 149096, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-end", - 149097, - 149113, - { - "value": "align-content-end" - } - ], - [ - "{-token", - "{", - 149114, - 149114, - null - ], - [ - "ident-token", - "align-content", - 149115, - 149127, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149128, - 149128, - null - ], - [ - "ident-token", - "flex-end", - 149129, - 149136, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 149137, - 149137, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149138, - 149146, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149147, - 149147, - null - ], - [ - "delim-token", - ".", - 149148, - 149148, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-center", - 149149, - 149168, - { - "value": "align-content-center" - } - ], - [ - "{-token", - "{", - 149169, - 149169, - null - ], - [ - "ident-token", - "align-content", - 149170, - 149182, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149183, - 149183, - null - ], - [ - "ident-token", - "center", - 149184, - 149189, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 149190, - 149190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149191, - 149199, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149200, - 149200, - null - ], - [ - "delim-token", - ".", - 149201, - 149201, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-between", - 149202, - 149222, - { - "value": "align-content-between" - } - ], - [ - "{-token", - "{", - 149223, - 149223, - null - ], - [ - "ident-token", - "align-content", - 149224, - 149236, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149237, - 149237, - null - ], - [ - "ident-token", - "space-between", - 149238, - 149250, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 149251, - 149251, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149252, - 149260, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149261, - 149261, - null - ], - [ - "delim-token", - ".", - 149262, - 149262, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-around", - 149263, - 149282, - { - "value": "align-content-around" - } - ], - [ - "{-token", - "{", - 149283, - 149283, - null - ], - [ - "ident-token", - "align-content", - 149284, - 149296, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149297, - 149297, - null - ], - [ - "ident-token", - "space-around", - 149298, - 149309, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 149310, - 149310, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149311, - 149319, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149320, - 149320, - null - ], - [ - "delim-token", - ".", - 149321, - 149321, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-stretch", - 149322, - 149342, - { - "value": "align-content-stretch" - } - ], - [ - "{-token", - "{", - 149343, - 149343, - null - ], - [ - "ident-token", - "align-content", - 149344, - 149356, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 149357, - 149357, - null - ], - [ - "ident-token", - "stretch", - 149358, - 149364, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 149365, - 149365, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149366, - 149374, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149375, - 149375, - null - ], - [ - "delim-token", - ".", - 149376, - 149376, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-auto", - 149377, - 149391, - { - "value": "align-self-auto" - } - ], - [ - "{-token", - "{", - 149392, - 149392, - null - ], - [ - "ident-token", - "align-self", - 149393, - 149402, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149403, - 149403, - null - ], - [ - "ident-token", - "auto", - 149404, - 149407, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 149408, - 149408, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149409, - 149417, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149418, - 149418, - null - ], - [ - "delim-token", - ".", - 149419, - 149419, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-start", - 149420, - 149435, - { - "value": "align-self-start" - } - ], - [ - "{-token", - "{", - 149436, - 149436, - null - ], - [ - "ident-token", - "align-self", - 149437, - 149446, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149447, - 149447, - null - ], - [ - "ident-token", - "flex-start", - 149448, - 149457, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 149458, - 149458, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149459, - 149467, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149468, - 149468, - null - ], - [ - "delim-token", - ".", - 149469, - 149469, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-end", - 149470, - 149483, - { - "value": "align-self-end" - } - ], - [ - "{-token", - "{", - 149484, - 149484, - null - ], - [ - "ident-token", - "align-self", - 149485, - 149494, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149495, - 149495, - null - ], - [ - "ident-token", - "flex-end", - 149496, - 149503, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 149504, - 149504, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149505, - 149513, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149514, - 149514, - null - ], - [ - "delim-token", - ".", - 149515, - 149515, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-center", - 149516, - 149532, - { - "value": "align-self-center" - } - ], - [ - "{-token", - "{", - 149533, - 149533, - null - ], - [ - "ident-token", - "align-self", - 149534, - 149543, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149544, - 149544, - null - ], - [ - "ident-token", - "center", - 149545, - 149550, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 149551, - 149551, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149552, - 149560, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149561, - 149561, - null - ], - [ - "delim-token", - ".", - 149562, - 149562, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-baseline", - 149563, - 149581, - { - "value": "align-self-baseline" - } - ], - [ - "{-token", - "{", - 149582, - 149582, - null - ], - [ - "ident-token", - "align-self", - 149583, - 149592, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149593, - 149593, - null - ], - [ - "ident-token", - "baseline", - 149594, - 149601, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 149602, - 149602, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149603, - 149611, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149612, - 149612, - null - ], - [ - "delim-token", - ".", - 149613, - 149613, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-stretch", - 149614, - 149631, - { - "value": "align-self-stretch" - } - ], - [ - "{-token", - "{", - 149632, - 149632, - null - ], - [ - "ident-token", - "align-self", - 149633, - 149642, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 149643, - 149643, - null - ], - [ - "ident-token", - "stretch", - 149644, - 149650, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 149651, - 149651, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149652, - 149660, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149661, - 149661, - null - ], - [ - "delim-token", - ".", - 149662, - 149662, - { - "value": "." - } - ], - [ - "ident-token", - "order-first", - 149663, - 149673, - { - "value": "order-first" - } - ], - [ - "{-token", - "{", - 149674, - 149674, - null - ], - [ - "ident-token", - "order", - 149675, - 149679, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149680, - 149680, - null - ], - [ - "number-token", - "-1", - 149681, - 149682, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149683, - 149683, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149684, - 149692, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149693, - 149693, - null - ], - [ - "delim-token", - ".", - 149694, - 149694, - { - "value": "." - } - ], - [ - "ident-token", - "order-0", - 149695, - 149701, - { - "value": "order-0" - } - ], - [ - "{-token", - "{", - 149702, - 149702, - null - ], - [ - "ident-token", - "order", - 149703, - 149707, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149708, - 149708, - null - ], - [ - "number-token", - "0", - 149709, - 149709, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149710, - 149710, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149711, - 149719, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149720, - 149720, - null - ], - [ - "delim-token", - ".", - 149721, - 149721, - { - "value": "." - } - ], - [ - "ident-token", - "order-1", - 149722, - 149728, - { - "value": "order-1" - } - ], - [ - "{-token", - "{", - 149729, - 149729, - null - ], - [ - "ident-token", - "order", - 149730, - 149734, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149735, - 149735, - null - ], - [ - "number-token", - "1", - 149736, - 149736, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149737, - 149737, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149738, - 149746, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149747, - 149747, - null - ], - [ - "delim-token", - ".", - 149748, - 149748, - { - "value": "." - } - ], - [ - "ident-token", - "order-2", - 149749, - 149755, - { - "value": "order-2" - } - ], - [ - "{-token", - "{", - 149756, - 149756, - null - ], - [ - "ident-token", - "order", - 149757, - 149761, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149762, - 149762, - null - ], - [ - "number-token", - "2", - 149763, - 149763, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149764, - 149764, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149765, - 149773, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149774, - 149774, - null - ], - [ - "delim-token", - ".", - 149775, - 149775, - { - "value": "." - } - ], - [ - "ident-token", - "order-3", - 149776, - 149782, - { - "value": "order-3" - } - ], - [ - "{-token", - "{", - 149783, - 149783, - null - ], - [ - "ident-token", - "order", - 149784, - 149788, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149789, - 149789, - null - ], - [ - "number-token", - "3", - 149790, - 149790, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149791, - 149791, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149792, - 149800, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149801, - 149801, - null - ], - [ - "delim-token", - ".", - 149802, - 149802, - { - "value": "." - } - ], - [ - "ident-token", - "order-4", - 149803, - 149809, - { - "value": "order-4" - } - ], - [ - "{-token", - "{", - 149810, - 149810, - null - ], - [ - "ident-token", - "order", - 149811, - 149815, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149816, - 149816, - null - ], - [ - "number-token", - "4", - 149817, - 149817, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149818, - 149818, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149819, - 149827, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149828, - 149828, - null - ], - [ - "delim-token", - ".", - 149829, - 149829, - { - "value": "." - } - ], - [ - "ident-token", - "order-5", - 149830, - 149836, - { - "value": "order-5" - } - ], - [ - "{-token", - "{", - 149837, - 149837, - null - ], - [ - "ident-token", - "order", - 149838, - 149842, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149843, - 149843, - null - ], - [ - "number-token", - "5", - 149844, - 149844, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149845, - 149845, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149846, - 149854, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149855, - 149855, - null - ], - [ - "delim-token", - ".", - 149856, - 149856, - { - "value": "." - } - ], - [ - "ident-token", - "order-last", - 149857, - 149866, - { - "value": "order-last" - } - ], - [ - "{-token", - "{", - 149867, - 149867, - null - ], - [ - "ident-token", - "order", - 149868, - 149872, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 149873, - 149873, - null - ], - [ - "number-token", - "6", - 149874, - 149874, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149875, - 149875, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149876, - 149884, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149885, - 149885, - null - ], - [ - "delim-token", - ".", - 149886, - 149886, - { - "value": "." - } - ], - [ - "ident-token", - "m-0", - 149887, - 149889, - { - "value": "m-0" - } - ], - [ - "{-token", - "{", - 149890, - 149890, - null - ], - [ - "ident-token", - "margin", - 149891, - 149896, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 149897, - 149897, - null - ], - [ - "number-token", - "0", - 149898, - 149898, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 149899, - 149899, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149900, - 149908, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149909, - 149909, - null - ], - [ - "delim-token", - ".", - 149910, - 149910, - { - "value": "." - } - ], - [ - "ident-token", - "m-1", - 149911, - 149913, - { - "value": "m-1" - } - ], - [ - "{-token", - "{", - 149914, - 149914, - null - ], - [ - "ident-token", - "margin", - 149915, - 149920, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 149921, - 149921, - null - ], - [ - "dimension-token", - ".25rem", - 149922, - 149927, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 149928, - 149928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149929, - 149937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149938, - 149938, - null - ], - [ - "delim-token", - ".", - 149939, - 149939, - { - "value": "." - } - ], - [ - "ident-token", - "m-2", - 149940, - 149942, - { - "value": "m-2" - } - ], - [ - "{-token", - "{", - 149943, - 149943, - null - ], - [ - "ident-token", - "margin", - 149944, - 149949, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 149950, - 149950, - null - ], - [ - "dimension-token", - ".5rem", - 149951, - 149955, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 149956, - 149956, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149957, - 149965, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149966, - 149966, - null - ], - [ - "delim-token", - ".", - 149967, - 149967, - { - "value": "." - } - ], - [ - "ident-token", - "m-3", - 149968, - 149970, - { - "value": "m-3" - } - ], - [ - "{-token", - "{", - 149971, - 149971, - null - ], - [ - "ident-token", - "margin", - 149972, - 149977, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 149978, - 149978, - null - ], - [ - "dimension-token", - "1rem", - 149979, - 149982, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 149983, - 149983, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 149984, - 149992, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 149993, - 149993, - null - ], - [ - "delim-token", - ".", - 149994, - 149994, - { - "value": "." - } - ], - [ - "ident-token", - "m-4", - 149995, - 149997, - { - "value": "m-4" - } - ], - [ - "{-token", - "{", - 149998, - 149998, - null - ], - [ - "ident-token", - "margin", - 149999, - 150004, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 150005, - 150005, - null - ], - [ - "dimension-token", - "1.5rem", - 150006, - 150011, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150012, - 150012, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150013, - 150021, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150022, - 150022, - null - ], - [ - "delim-token", - ".", - 150023, - 150023, - { - "value": "." - } - ], - [ - "ident-token", - "m-5", - 150024, - 150026, - { - "value": "m-5" - } - ], - [ - "{-token", - "{", - 150027, - 150027, - null - ], - [ - "ident-token", - "margin", - 150028, - 150033, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 150034, - 150034, - null - ], - [ - "dimension-token", - "3rem", - 150035, - 150038, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150039, - 150039, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150040, - 150048, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150049, - 150049, - null - ], - [ - "delim-token", - ".", - 150050, - 150050, - { - "value": "." - } - ], - [ - "ident-token", - "m-auto", - 150051, - 150056, - { - "value": "m-auto" - } - ], - [ - "{-token", - "{", - 150057, - 150057, - null - ], - [ - "ident-token", - "margin", - 150058, - 150063, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 150064, - 150064, - null - ], - [ - "ident-token", - "auto", - 150065, - 150068, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 150069, - 150069, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150070, - 150078, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150079, - 150079, - null - ], - [ - "delim-token", - ".", - 150080, - 150080, - { - "value": "." - } - ], - [ - "ident-token", - "mx-0", - 150081, - 150084, - { - "value": "mx-0" - } - ], - [ - "{-token", - "{", - 150085, - 150085, - null - ], - [ - "ident-token", - "margin-right", - 150086, - 150097, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150098, - 150098, - null - ], - [ - "number-token", - "0", - 150099, - 150099, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 150100, - 150100, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150101, - 150109, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150110, - 150110, - null - ], - [ - "ident-token", - "margin-left", - 150111, - 150121, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150122, - 150122, - null - ], - [ - "number-token", - "0", - 150123, - 150123, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 150124, - 150124, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150125, - 150133, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150134, - 150134, - null - ], - [ - "delim-token", - ".", - 150135, - 150135, - { - "value": "." - } - ], - [ - "ident-token", - "mx-1", - 150136, - 150139, - { - "value": "mx-1" - } - ], - [ - "{-token", - "{", - 150140, - 150140, - null - ], - [ - "ident-token", - "margin-right", - 150141, - 150152, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150153, - 150153, - null - ], - [ - "dimension-token", - ".25rem", - 150154, - 150159, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150160, - 150160, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150161, - 150169, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150170, - 150170, - null - ], - [ - "ident-token", - "margin-left", - 150171, - 150181, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150182, - 150182, - null - ], - [ - "dimension-token", - ".25rem", - 150183, - 150188, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150189, - 150189, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150190, - 150198, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150199, - 150199, - null - ], - [ - "delim-token", - ".", - 150200, - 150200, - { - "value": "." - } - ], - [ - "ident-token", - "mx-2", - 150201, - 150204, - { - "value": "mx-2" - } - ], - [ - "{-token", - "{", - 150205, - 150205, - null - ], - [ - "ident-token", - "margin-right", - 150206, - 150217, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150218, - 150218, - null - ], - [ - "dimension-token", - ".5rem", - 150219, - 150223, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150224, - 150224, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150225, - 150233, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150234, - 150234, - null - ], - [ - "ident-token", - "margin-left", - 150235, - 150245, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150246, - 150246, - null - ], - [ - "dimension-token", - ".5rem", - 150247, - 150251, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150252, - 150252, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150253, - 150261, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150262, - 150262, - null - ], - [ - "delim-token", - ".", - 150263, - 150263, - { - "value": "." - } - ], - [ - "ident-token", - "mx-3", - 150264, - 150267, - { - "value": "mx-3" - } - ], - [ - "{-token", - "{", - 150268, - 150268, - null - ], - [ - "ident-token", - "margin-right", - 150269, - 150280, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150281, - 150281, - null - ], - [ - "dimension-token", - "1rem", - 150282, - 150285, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150286, - 150286, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150287, - 150295, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150296, - 150296, - null - ], - [ - "ident-token", - "margin-left", - 150297, - 150307, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150308, - 150308, - null - ], - [ - "dimension-token", - "1rem", - 150309, - 150312, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150313, - 150313, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150314, - 150322, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150323, - 150323, - null - ], - [ - "delim-token", - ".", - 150324, - 150324, - { - "value": "." - } - ], - [ - "ident-token", - "mx-4", - 150325, - 150328, - { - "value": "mx-4" - } - ], - [ - "{-token", - "{", - 150329, - 150329, - null - ], - [ - "ident-token", - "margin-right", - 150330, - 150341, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150342, - 150342, - null - ], - [ - "dimension-token", - "1.5rem", - 150343, - 150348, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150349, - 150349, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150350, - 150358, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150359, - 150359, - null - ], - [ - "ident-token", - "margin-left", - 150360, - 150370, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150371, - 150371, - null - ], - [ - "dimension-token", - "1.5rem", - 150372, - 150377, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150378, - 150378, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150379, - 150387, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150388, - 150388, - null - ], - [ - "delim-token", - ".", - 150389, - 150389, - { - "value": "." - } - ], - [ - "ident-token", - "mx-5", - 150390, - 150393, - { - "value": "mx-5" - } - ], - [ - "{-token", - "{", - 150394, - 150394, - null - ], - [ - "ident-token", - "margin-right", - 150395, - 150406, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150407, - 150407, - null - ], - [ - "dimension-token", - "3rem", - 150408, - 150411, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150412, - 150412, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150413, - 150421, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150422, - 150422, - null - ], - [ - "ident-token", - "margin-left", - 150423, - 150433, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150434, - 150434, - null - ], - [ - "dimension-token", - "3rem", - 150435, - 150438, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150439, - 150439, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150440, - 150448, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150449, - 150449, - null - ], - [ - "delim-token", - ".", - 150450, - 150450, - { - "value": "." - } - ], - [ - "ident-token", - "mx-auto", - 150451, - 150457, - { - "value": "mx-auto" - } - ], - [ - "{-token", - "{", - 150458, - 150458, - null - ], - [ - "ident-token", - "margin-right", - 150459, - 150470, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 150471, - 150471, - null - ], - [ - "ident-token", - "auto", - 150472, - 150475, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 150476, - 150476, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150477, - 150485, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150486, - 150486, - null - ], - [ - "ident-token", - "margin-left", - 150487, - 150497, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 150498, - 150498, - null - ], - [ - "ident-token", - "auto", - 150499, - 150502, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 150503, - 150503, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150504, - 150512, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150513, - 150513, - null - ], - [ - "delim-token", - ".", - 150514, - 150514, - { - "value": "." - } - ], - [ - "ident-token", - "my-0", - 150515, - 150518, - { - "value": "my-0" - } - ], - [ - "{-token", - "{", - 150519, - 150519, - null - ], - [ - "ident-token", - "margin-top", - 150520, - 150529, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150530, - 150530, - null - ], - [ - "number-token", - "0", - 150531, - 150531, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 150532, - 150532, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150533, - 150541, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150542, - 150542, - null - ], - [ - "ident-token", - "margin-bottom", - 150543, - 150555, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150556, - 150556, - null - ], - [ - "number-token", - "0", - 150557, - 150557, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 150558, - 150558, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150559, - 150567, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150568, - 150568, - null - ], - [ - "delim-token", - ".", - 150569, - 150569, - { - "value": "." - } - ], - [ - "ident-token", - "my-1", - 150570, - 150573, - { - "value": "my-1" - } - ], - [ - "{-token", - "{", - 150574, - 150574, - null - ], - [ - "ident-token", - "margin-top", - 150575, - 150584, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150585, - 150585, - null - ], - [ - "dimension-token", - ".25rem", - 150586, - 150591, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150592, - 150592, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150593, - 150601, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150602, - 150602, - null - ], - [ - "ident-token", - "margin-bottom", - 150603, - 150615, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150616, - 150616, - null - ], - [ - "dimension-token", - ".25rem", - 150617, - 150622, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150623, - 150623, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150624, - 150632, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150633, - 150633, - null - ], - [ - "delim-token", - ".", - 150634, - 150634, - { - "value": "." - } - ], - [ - "ident-token", - "my-2", - 150635, - 150638, - { - "value": "my-2" - } - ], - [ - "{-token", - "{", - 150639, - 150639, - null - ], - [ - "ident-token", - "margin-top", - 150640, - 150649, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150650, - 150650, - null - ], - [ - "dimension-token", - ".5rem", - 150651, - 150655, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150656, - 150656, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150657, - 150665, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150666, - 150666, - null - ], - [ - "ident-token", - "margin-bottom", - 150667, - 150679, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150680, - 150680, - null - ], - [ - "dimension-token", - ".5rem", - 150681, - 150685, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150686, - 150686, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150687, - 150695, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150696, - 150696, - null - ], - [ - "delim-token", - ".", - 150697, - 150697, - { - "value": "." - } - ], - [ - "ident-token", - "my-3", - 150698, - 150701, - { - "value": "my-3" - } - ], - [ - "{-token", - "{", - 150702, - 150702, - null - ], - [ - "ident-token", - "margin-top", - 150703, - 150712, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150713, - 150713, - null - ], - [ - "dimension-token", - "1rem", - 150714, - 150717, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150718, - 150718, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150719, - 150727, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150728, - 150728, - null - ], - [ - "ident-token", - "margin-bottom", - 150729, - 150741, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150742, - 150742, - null - ], - [ - "dimension-token", - "1rem", - 150743, - 150746, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150747, - 150747, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150748, - 150756, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150757, - 150757, - null - ], - [ - "delim-token", - ".", - 150758, - 150758, - { - "value": "." - } - ], - [ - "ident-token", - "my-4", - 150759, - 150762, - { - "value": "my-4" - } - ], - [ - "{-token", - "{", - 150763, - 150763, - null - ], - [ - "ident-token", - "margin-top", - 150764, - 150773, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150774, - 150774, - null - ], - [ - "dimension-token", - "1.5rem", - 150775, - 150780, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150781, - 150781, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150782, - 150790, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150791, - 150791, - null - ], - [ - "ident-token", - "margin-bottom", - 150792, - 150804, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150805, - 150805, - null - ], - [ - "dimension-token", - "1.5rem", - 150806, - 150811, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150812, - 150812, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150813, - 150821, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150822, - 150822, - null - ], - [ - "delim-token", - ".", - 150823, - 150823, - { - "value": "." - } - ], - [ - "ident-token", - "my-5", - 150824, - 150827, - { - "value": "my-5" - } - ], - [ - "{-token", - "{", - 150828, - 150828, - null - ], - [ - "ident-token", - "margin-top", - 150829, - 150838, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150839, - 150839, - null - ], - [ - "dimension-token", - "3rem", - 150840, - 150843, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150844, - 150844, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150845, - 150853, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150854, - 150854, - null - ], - [ - "ident-token", - "margin-bottom", - 150855, - 150867, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150868, - 150868, - null - ], - [ - "dimension-token", - "3rem", - 150869, - 150872, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 150873, - 150873, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150874, - 150882, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150883, - 150883, - null - ], - [ - "delim-token", - ".", - 150884, - 150884, - { - "value": "." - } - ], - [ - "ident-token", - "my-auto", - 150885, - 150891, - { - "value": "my-auto" - } - ], - [ - "{-token", - "{", - 150892, - 150892, - null - ], - [ - "ident-token", - "margin-top", - 150893, - 150902, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150903, - 150903, - null - ], - [ - "ident-token", - "auto", - 150904, - 150907, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 150908, - 150908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150909, - 150917, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 150918, - 150918, - null - ], - [ - "ident-token", - "margin-bottom", - 150919, - 150931, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 150932, - 150932, - null - ], - [ - "ident-token", - "auto", - 150933, - 150936, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 150937, - 150937, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150938, - 150946, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150947, - 150947, - null - ], - [ - "delim-token", - ".", - 150948, - 150948, - { - "value": "." - } - ], - [ - "ident-token", - "mt-0", - 150949, - 150952, - { - "value": "mt-0" - } - ], - [ - "{-token", - "{", - 150953, - 150953, - null - ], - [ - "ident-token", - "margin-top", - 150954, - 150963, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150964, - 150964, - null - ], - [ - "number-token", - "0", - 150965, - 150965, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 150966, - 150966, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 150967, - 150975, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 150976, - 150976, - null - ], - [ - "delim-token", - ".", - 150977, - 150977, - { - "value": "." - } - ], - [ - "ident-token", - "mt-1", - 150978, - 150981, - { - "value": "mt-1" - } - ], - [ - "{-token", - "{", - 150982, - 150982, - null - ], - [ - "ident-token", - "margin-top", - 150983, - 150992, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 150993, - 150993, - null - ], - [ - "dimension-token", - ".25rem", - 150994, - 150999, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151000, - 151000, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151001, - 151009, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151010, - 151010, - null - ], - [ - "delim-token", - ".", - 151011, - 151011, - { - "value": "." - } - ], - [ - "ident-token", - "mt-2", - 151012, - 151015, - { - "value": "mt-2" - } - ], - [ - "{-token", - "{", - 151016, - 151016, - null - ], - [ - "ident-token", - "margin-top", - 151017, - 151026, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 151027, - 151027, - null - ], - [ - "dimension-token", - ".5rem", - 151028, - 151032, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151033, - 151033, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151034, - 151042, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151043, - 151043, - null - ], - [ - "delim-token", - ".", - 151044, - 151044, - { - "value": "." - } - ], - [ - "ident-token", - "mt-3", - 151045, - 151048, - { - "value": "mt-3" - } - ], - [ - "{-token", - "{", - 151049, - 151049, - null - ], - [ - "ident-token", - "margin-top", - 151050, - 151059, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 151060, - 151060, - null - ], - [ - "dimension-token", - "1rem", - 151061, - 151064, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151065, - 151065, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151066, - 151074, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151075, - 151075, - null - ], - [ - "delim-token", - ".", - 151076, - 151076, - { - "value": "." - } - ], - [ - "ident-token", - "mt-4", - 151077, - 151080, - { - "value": "mt-4" - } - ], - [ - "{-token", - "{", - 151081, - 151081, - null - ], - [ - "ident-token", - "margin-top", - 151082, - 151091, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 151092, - 151092, - null - ], - [ - "dimension-token", - "1.5rem", - 151093, - 151098, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151099, - 151099, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151100, - 151108, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151109, - 151109, - null - ], - [ - "delim-token", - ".", - 151110, - 151110, - { - "value": "." - } - ], - [ - "ident-token", - "mt-5", - 151111, - 151114, - { - "value": "mt-5" - } - ], - [ - "{-token", - "{", - 151115, - 151115, - null - ], - [ - "ident-token", - "margin-top", - 151116, - 151125, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 151126, - 151126, - null - ], - [ - "dimension-token", - "3rem", - 151127, - 151130, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151131, - 151131, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151132, - 151140, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151141, - 151141, - null - ], - [ - "delim-token", - ".", - 151142, - 151142, - { - "value": "." - } - ], - [ - "ident-token", - "mt-auto", - 151143, - 151149, - { - "value": "mt-auto" - } - ], - [ - "{-token", - "{", - 151150, - 151150, - null - ], - [ - "ident-token", - "margin-top", - 151151, - 151160, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 151161, - 151161, - null - ], - [ - "ident-token", - "auto", - 151162, - 151165, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 151166, - 151166, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151167, - 151175, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151176, - 151176, - null - ], - [ - "delim-token", - ".", - 151177, - 151177, - { - "value": "." - } - ], - [ - "ident-token", - "me-0", - 151178, - 151181, - { - "value": "me-0" - } - ], - [ - "{-token", - "{", - 151182, - 151182, - null - ], - [ - "ident-token", - "margin-right", - 151183, - 151194, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151195, - 151195, - null - ], - [ - "number-token", - "0", - 151196, - 151196, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 151197, - 151197, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151198, - 151206, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151207, - 151207, - null - ], - [ - "delim-token", - ".", - 151208, - 151208, - { - "value": "." - } - ], - [ - "ident-token", - "me-1", - 151209, - 151212, - { - "value": "me-1" - } - ], - [ - "{-token", - "{", - 151213, - 151213, - null - ], - [ - "ident-token", - "margin-right", - 151214, - 151225, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151226, - 151226, - null - ], - [ - "dimension-token", - ".25rem", - 151227, - 151232, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151233, - 151233, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151234, - 151242, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151243, - 151243, - null - ], - [ - "delim-token", - ".", - 151244, - 151244, - { - "value": "." - } - ], - [ - "ident-token", - "me-2", - 151245, - 151248, - { - "value": "me-2" - } - ], - [ - "{-token", - "{", - 151249, - 151249, - null - ], - [ - "ident-token", - "margin-right", - 151250, - 151261, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151262, - 151262, - null - ], - [ - "dimension-token", - ".5rem", - 151263, - 151267, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151268, - 151268, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151269, - 151277, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151278, - 151278, - null - ], - [ - "delim-token", - ".", - 151279, - 151279, - { - "value": "." - } - ], - [ - "ident-token", - "me-3", - 151280, - 151283, - { - "value": "me-3" - } - ], - [ - "{-token", - "{", - 151284, - 151284, - null - ], - [ - "ident-token", - "margin-right", - 151285, - 151296, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151297, - 151297, - null - ], - [ - "dimension-token", - "1rem", - 151298, - 151301, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151302, - 151302, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151303, - 151311, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151312, - 151312, - null - ], - [ - "delim-token", - ".", - 151313, - 151313, - { - "value": "." - } - ], - [ - "ident-token", - "me-4", - 151314, - 151317, - { - "value": "me-4" - } - ], - [ - "{-token", - "{", - 151318, - 151318, - null - ], - [ - "ident-token", - "margin-right", - 151319, - 151330, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151331, - 151331, - null - ], - [ - "dimension-token", - "1.5rem", - 151332, - 151337, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151338, - 151338, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151339, - 151347, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151348, - 151348, - null - ], - [ - "delim-token", - ".", - 151349, - 151349, - { - "value": "." - } - ], - [ - "ident-token", - "me-5", - 151350, - 151353, - { - "value": "me-5" - } - ], - [ - "{-token", - "{", - 151354, - 151354, - null - ], - [ - "ident-token", - "margin-right", - 151355, - 151366, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151367, - 151367, - null - ], - [ - "dimension-token", - "3rem", - 151368, - 151371, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151372, - 151372, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151373, - 151381, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151382, - 151382, - null - ], - [ - "delim-token", - ".", - 151383, - 151383, - { - "value": "." - } - ], - [ - "ident-token", - "me-auto", - 151384, - 151390, - { - "value": "me-auto" - } - ], - [ - "{-token", - "{", - 151391, - 151391, - null - ], - [ - "ident-token", - "margin-right", - 151392, - 151403, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 151404, - 151404, - null - ], - [ - "ident-token", - "auto", - 151405, - 151408, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 151409, - 151409, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151410, - 151418, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151419, - 151419, - null - ], - [ - "delim-token", - ".", - 151420, - 151420, - { - "value": "." - } - ], - [ - "ident-token", - "mb-0", - 151421, - 151424, - { - "value": "mb-0" - } - ], - [ - "{-token", - "{", - 151425, - 151425, - null - ], - [ - "ident-token", - "margin-bottom", - 151426, - 151438, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151439, - 151439, - null - ], - [ - "number-token", - "0", - 151440, - 151440, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 151441, - 151441, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151442, - 151450, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151451, - 151451, - null - ], - [ - "delim-token", - ".", - 151452, - 151452, - { - "value": "." - } - ], - [ - "ident-token", - "mb-1", - 151453, - 151456, - { - "value": "mb-1" - } - ], - [ - "{-token", - "{", - 151457, - 151457, - null - ], - [ - "ident-token", - "margin-bottom", - 151458, - 151470, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151471, - 151471, - null - ], - [ - "dimension-token", - ".25rem", - 151472, - 151477, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151478, - 151478, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151479, - 151487, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151488, - 151488, - null - ], - [ - "delim-token", - ".", - 151489, - 151489, - { - "value": "." - } - ], - [ - "ident-token", - "mb-2", - 151490, - 151493, - { - "value": "mb-2" - } - ], - [ - "{-token", - "{", - 151494, - 151494, - null - ], - [ - "ident-token", - "margin-bottom", - 151495, - 151507, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151508, - 151508, - null - ], - [ - "dimension-token", - ".5rem", - 151509, - 151513, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151514, - 151514, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151515, - 151523, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151524, - 151524, - null - ], - [ - "delim-token", - ".", - 151525, - 151525, - { - "value": "." - } - ], - [ - "ident-token", - "mb-3", - 151526, - 151529, - { - "value": "mb-3" - } - ], - [ - "{-token", - "{", - 151530, - 151530, - null - ], - [ - "ident-token", - "margin-bottom", - 151531, - 151543, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151544, - 151544, - null - ], - [ - "dimension-token", - "1rem", - 151545, - 151548, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151549, - 151549, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151550, - 151558, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151559, - 151559, - null - ], - [ - "delim-token", - ".", - 151560, - 151560, - { - "value": "." - } - ], - [ - "ident-token", - "mb-4", - 151561, - 151564, - { - "value": "mb-4" - } - ], - [ - "{-token", - "{", - 151565, - 151565, - null - ], - [ - "ident-token", - "margin-bottom", - 151566, - 151578, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151579, - 151579, - null - ], - [ - "dimension-token", - "1.5rem", - 151580, - 151585, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151586, - 151586, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151587, - 151595, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151596, - 151596, - null - ], - [ - "delim-token", - ".", - 151597, - 151597, - { - "value": "." - } - ], - [ - "ident-token", - "mb-5", - 151598, - 151601, - { - "value": "mb-5" - } - ], - [ - "{-token", - "{", - 151602, - 151602, - null - ], - [ - "ident-token", - "margin-bottom", - 151603, - 151615, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151616, - 151616, - null - ], - [ - "dimension-token", - "3rem", - 151617, - 151620, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151621, - 151621, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151622, - 151630, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151631, - 151631, - null - ], - [ - "delim-token", - ".", - 151632, - 151632, - { - "value": "." - } - ], - [ - "ident-token", - "mb-auto", - 151633, - 151639, - { - "value": "mb-auto" - } - ], - [ - "{-token", - "{", - 151640, - 151640, - null - ], - [ - "ident-token", - "margin-bottom", - 151641, - 151653, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 151654, - 151654, - null - ], - [ - "ident-token", - "auto", - 151655, - 151658, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 151659, - 151659, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151660, - 151668, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151669, - 151669, - null - ], - [ - "delim-token", - ".", - 151670, - 151670, - { - "value": "." - } - ], - [ - "ident-token", - "ms-0", - 151671, - 151674, - { - "value": "ms-0" - } - ], - [ - "{-token", - "{", - 151675, - 151675, - null - ], - [ - "ident-token", - "margin-left", - 151676, - 151686, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151687, - 151687, - null - ], - [ - "number-token", - "0", - 151688, - 151688, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 151689, - 151689, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151690, - 151698, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151699, - 151699, - null - ], - [ - "delim-token", - ".", - 151700, - 151700, - { - "value": "." - } - ], - [ - "ident-token", - "ms-1", - 151701, - 151704, - { - "value": "ms-1" - } - ], - [ - "{-token", - "{", - 151705, - 151705, - null - ], - [ - "ident-token", - "margin-left", - 151706, - 151716, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151717, - 151717, - null - ], - [ - "dimension-token", - ".25rem", - 151718, - 151723, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151724, - 151724, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151725, - 151733, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151734, - 151734, - null - ], - [ - "delim-token", - ".", - 151735, - 151735, - { - "value": "." - } - ], - [ - "ident-token", - "ms-2", - 151736, - 151739, - { - "value": "ms-2" - } - ], - [ - "{-token", - "{", - 151740, - 151740, - null - ], - [ - "ident-token", - "margin-left", - 151741, - 151751, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151752, - 151752, - null - ], - [ - "dimension-token", - ".5rem", - 151753, - 151757, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151758, - 151758, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151759, - 151767, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151768, - 151768, - null - ], - [ - "delim-token", - ".", - 151769, - 151769, - { - "value": "." - } - ], - [ - "ident-token", - "ms-3", - 151770, - 151773, - { - "value": "ms-3" - } - ], - [ - "{-token", - "{", - 151774, - 151774, - null - ], - [ - "ident-token", - "margin-left", - 151775, - 151785, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151786, - 151786, - null - ], - [ - "dimension-token", - "1rem", - 151787, - 151790, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151791, - 151791, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151792, - 151800, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151801, - 151801, - null - ], - [ - "delim-token", - ".", - 151802, - 151802, - { - "value": "." - } - ], - [ - "ident-token", - "ms-4", - 151803, - 151806, - { - "value": "ms-4" - } - ], - [ - "{-token", - "{", - 151807, - 151807, - null - ], - [ - "ident-token", - "margin-left", - 151808, - 151818, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151819, - 151819, - null - ], - [ - "dimension-token", - "1.5rem", - 151820, - 151825, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151826, - 151826, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151827, - 151835, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151836, - 151836, - null - ], - [ - "delim-token", - ".", - 151837, - 151837, - { - "value": "." - } - ], - [ - "ident-token", - "ms-5", - 151838, - 151841, - { - "value": "ms-5" - } - ], - [ - "{-token", - "{", - 151842, - 151842, - null - ], - [ - "ident-token", - "margin-left", - 151843, - 151853, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151854, - 151854, - null - ], - [ - "dimension-token", - "3rem", - 151855, - 151858, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151859, - 151859, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151860, - 151868, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151869, - 151869, - null - ], - [ - "delim-token", - ".", - 151870, - 151870, - { - "value": "." - } - ], - [ - "ident-token", - "ms-auto", - 151871, - 151877, - { - "value": "ms-auto" - } - ], - [ - "{-token", - "{", - 151878, - 151878, - null - ], - [ - "ident-token", - "margin-left", - 151879, - 151889, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 151890, - 151890, - null - ], - [ - "ident-token", - "auto", - 151891, - 151894, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 151895, - 151895, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151896, - 151904, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151905, - 151905, - null - ], - [ - "delim-token", - ".", - 151906, - 151906, - { - "value": "." - } - ], - [ - "ident-token", - "p-0", - 151907, - 151909, - { - "value": "p-0" - } - ], - [ - "{-token", - "{", - 151910, - 151910, - null - ], - [ - "ident-token", - "padding", - 151911, - 151917, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 151918, - 151918, - null - ], - [ - "number-token", - "0", - 151919, - 151919, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 151920, - 151920, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151921, - 151929, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151930, - 151930, - null - ], - [ - "delim-token", - ".", - 151931, - 151931, - { - "value": "." - } - ], - [ - "ident-token", - "p-1", - 151932, - 151934, - { - "value": "p-1" - } - ], - [ - "{-token", - "{", - 151935, - 151935, - null - ], - [ - "ident-token", - "padding", - 151936, - 151942, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 151943, - 151943, - null - ], - [ - "dimension-token", - ".25rem", - 151944, - 151949, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151950, - 151950, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151951, - 151959, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151960, - 151960, - null - ], - [ - "delim-token", - ".", - 151961, - 151961, - { - "value": "." - } - ], - [ - "ident-token", - "p-2", - 151962, - 151964, - { - "value": "p-2" - } - ], - [ - "{-token", - "{", - 151965, - 151965, - null - ], - [ - "ident-token", - "padding", - 151966, - 151972, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 151973, - 151973, - null - ], - [ - "dimension-token", - ".5rem", - 151974, - 151978, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 151979, - 151979, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 151980, - 151988, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 151989, - 151989, - null - ], - [ - "delim-token", - ".", - 151990, - 151990, - { - "value": "." - } - ], - [ - "ident-token", - "p-3", - 151991, - 151993, - { - "value": "p-3" - } - ], - [ - "{-token", - "{", - 151994, - 151994, - null - ], - [ - "ident-token", - "padding", - 151995, - 152001, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 152002, - 152002, - null - ], - [ - "dimension-token", - "1rem", - 152003, - 152006, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152007, - 152007, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152008, - 152016, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152017, - 152017, - null - ], - [ - "delim-token", - ".", - 152018, - 152018, - { - "value": "." - } - ], - [ - "ident-token", - "p-4", - 152019, - 152021, - { - "value": "p-4" - } - ], - [ - "{-token", - "{", - 152022, - 152022, - null - ], - [ - "ident-token", - "padding", - 152023, - 152029, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 152030, - 152030, - null - ], - [ - "dimension-token", - "1.5rem", - 152031, - 152036, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152037, - 152037, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152038, - 152046, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152047, - 152047, - null - ], - [ - "delim-token", - ".", - 152048, - 152048, - { - "value": "." - } - ], - [ - "ident-token", - "p-5", - 152049, - 152051, - { - "value": "p-5" - } - ], - [ - "{-token", - "{", - 152052, - 152052, - null - ], - [ - "ident-token", - "padding", - 152053, - 152059, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 152060, - 152060, - null - ], - [ - "dimension-token", - "3rem", - 152061, - 152064, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152065, - 152065, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152066, - 152074, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152075, - 152075, - null - ], - [ - "delim-token", - ".", - 152076, - 152076, - { - "value": "." - } - ], - [ - "ident-token", - "px-0", - 152077, - 152080, - { - "value": "px-0" - } - ], - [ - "{-token", - "{", - 152081, - 152081, - null - ], - [ - "ident-token", - "padding-right", - 152082, - 152094, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152095, - 152095, - null - ], - [ - "number-token", - "0", - 152096, - 152096, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 152097, - 152097, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152098, - 152106, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152107, - 152107, - null - ], - [ - "ident-token", - "padding-left", - 152108, - 152119, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152120, - 152120, - null - ], - [ - "number-token", - "0", - 152121, - 152121, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 152122, - 152122, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152123, - 152131, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152132, - 152132, - null - ], - [ - "delim-token", - ".", - 152133, - 152133, - { - "value": "." - } - ], - [ - "ident-token", - "px-1", - 152134, - 152137, - { - "value": "px-1" - } - ], - [ - "{-token", - "{", - 152138, - 152138, - null - ], - [ - "ident-token", - "padding-right", - 152139, - 152151, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152152, - 152152, - null - ], - [ - "dimension-token", - ".25rem", - 152153, - 152158, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152159, - 152159, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152160, - 152168, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152169, - 152169, - null - ], - [ - "ident-token", - "padding-left", - 152170, - 152181, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152182, - 152182, - null - ], - [ - "dimension-token", - ".25rem", - 152183, - 152188, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152189, - 152189, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152190, - 152198, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152199, - 152199, - null - ], - [ - "delim-token", - ".", - 152200, - 152200, - { - "value": "." - } - ], - [ - "ident-token", - "px-2", - 152201, - 152204, - { - "value": "px-2" - } - ], - [ - "{-token", - "{", - 152205, - 152205, - null - ], - [ - "ident-token", - "padding-right", - 152206, - 152218, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152219, - 152219, - null - ], - [ - "dimension-token", - ".5rem", - 152220, - 152224, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152225, - 152225, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152226, - 152234, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152235, - 152235, - null - ], - [ - "ident-token", - "padding-left", - 152236, - 152247, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152248, - 152248, - null - ], - [ - "dimension-token", - ".5rem", - 152249, - 152253, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152254, - 152254, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152255, - 152263, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152264, - 152264, - null - ], - [ - "delim-token", - ".", - 152265, - 152265, - { - "value": "." - } - ], - [ - "ident-token", - "px-3", - 152266, - 152269, - { - "value": "px-3" - } - ], - [ - "{-token", - "{", - 152270, - 152270, - null - ], - [ - "ident-token", - "padding-right", - 152271, - 152283, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152284, - 152284, - null - ], - [ - "dimension-token", - "1rem", - 152285, - 152288, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152289, - 152289, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152290, - 152298, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152299, - 152299, - null - ], - [ - "ident-token", - "padding-left", - 152300, - 152311, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152312, - 152312, - null - ], - [ - "dimension-token", - "1rem", - 152313, - 152316, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152317, - 152317, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152318, - 152326, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152327, - 152327, - null - ], - [ - "delim-token", - ".", - 152328, - 152328, - { - "value": "." - } - ], - [ - "ident-token", - "px-4", - 152329, - 152332, - { - "value": "px-4" - } - ], - [ - "{-token", - "{", - 152333, - 152333, - null - ], - [ - "ident-token", - "padding-right", - 152334, - 152346, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152347, - 152347, - null - ], - [ - "dimension-token", - "1.5rem", - 152348, - 152353, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152354, - 152354, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152355, - 152363, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152364, - 152364, - null - ], - [ - "ident-token", - "padding-left", - 152365, - 152376, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152377, - 152377, - null - ], - [ - "dimension-token", - "1.5rem", - 152378, - 152383, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152384, - 152384, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152385, - 152393, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152394, - 152394, - null - ], - [ - "delim-token", - ".", - 152395, - 152395, - { - "value": "." - } - ], - [ - "ident-token", - "px-5", - 152396, - 152399, - { - "value": "px-5" - } - ], - [ - "{-token", - "{", - 152400, - 152400, - null - ], - [ - "ident-token", - "padding-right", - 152401, - 152413, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 152414, - 152414, - null - ], - [ - "dimension-token", - "3rem", - 152415, - 152418, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152419, - 152419, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152420, - 152428, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152429, - 152429, - null - ], - [ - "ident-token", - "padding-left", - 152430, - 152441, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 152442, - 152442, - null - ], - [ - "dimension-token", - "3rem", - 152443, - 152446, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152447, - 152447, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152448, - 152456, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152457, - 152457, - null - ], - [ - "delim-token", - ".", - 152458, - 152458, - { - "value": "." - } - ], - [ - "ident-token", - "py-0", - 152459, - 152462, - { - "value": "py-0" - } - ], - [ - "{-token", - "{", - 152463, - 152463, - null - ], - [ - "ident-token", - "padding-top", - 152464, - 152474, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152475, - 152475, - null - ], - [ - "number-token", - "0", - 152476, - 152476, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 152477, - 152477, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152478, - 152486, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152487, - 152487, - null - ], - [ - "ident-token", - "padding-bottom", - 152488, - 152501, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152502, - 152502, - null - ], - [ - "number-token", - "0", - 152503, - 152503, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 152504, - 152504, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152505, - 152513, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152514, - 152514, - null - ], - [ - "delim-token", - ".", - 152515, - 152515, - { - "value": "." - } - ], - [ - "ident-token", - "py-1", - 152516, - 152519, - { - "value": "py-1" - } - ], - [ - "{-token", - "{", - 152520, - 152520, - null - ], - [ - "ident-token", - "padding-top", - 152521, - 152531, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152532, - 152532, - null - ], - [ - "dimension-token", - ".25rem", - 152533, - 152538, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152539, - 152539, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152540, - 152548, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152549, - 152549, - null - ], - [ - "ident-token", - "padding-bottom", - 152550, - 152563, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152564, - 152564, - null - ], - [ - "dimension-token", - ".25rem", - 152565, - 152570, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152571, - 152571, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152572, - 152580, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152581, - 152581, - null - ], - [ - "delim-token", - ".", - 152582, - 152582, - { - "value": "." - } - ], - [ - "ident-token", - "py-2", - 152583, - 152586, - { - "value": "py-2" - } - ], - [ - "{-token", - "{", - 152587, - 152587, - null - ], - [ - "ident-token", - "padding-top", - 152588, - 152598, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152599, - 152599, - null - ], - [ - "dimension-token", - ".5rem", - 152600, - 152604, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152605, - 152605, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152606, - 152614, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152615, - 152615, - null - ], - [ - "ident-token", - "padding-bottom", - 152616, - 152629, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152630, - 152630, - null - ], - [ - "dimension-token", - ".5rem", - 152631, - 152635, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152636, - 152636, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152637, - 152645, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152646, - 152646, - null - ], - [ - "delim-token", - ".", - 152647, - 152647, - { - "value": "." - } - ], - [ - "ident-token", - "py-3", - 152648, - 152651, - { - "value": "py-3" - } - ], - [ - "{-token", - "{", - 152652, - 152652, - null - ], - [ - "ident-token", - "padding-top", - 152653, - 152663, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152664, - 152664, - null - ], - [ - "dimension-token", - "1rem", - 152665, - 152668, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152669, - 152669, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152670, - 152678, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152679, - 152679, - null - ], - [ - "ident-token", - "padding-bottom", - 152680, - 152693, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152694, - 152694, - null - ], - [ - "dimension-token", - "1rem", - 152695, - 152698, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152699, - 152699, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152700, - 152708, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152709, - 152709, - null - ], - [ - "delim-token", - ".", - 152710, - 152710, - { - "value": "." - } - ], - [ - "ident-token", - "py-4", - 152711, - 152714, - { - "value": "py-4" - } - ], - [ - "{-token", - "{", - 152715, - 152715, - null - ], - [ - "ident-token", - "padding-top", - 152716, - 152726, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152727, - 152727, - null - ], - [ - "dimension-token", - "1.5rem", - 152728, - 152733, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152734, - 152734, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152735, - 152743, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152744, - 152744, - null - ], - [ - "ident-token", - "padding-bottom", - 152745, - 152758, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152759, - 152759, - null - ], - [ - "dimension-token", - "1.5rem", - 152760, - 152765, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152766, - 152766, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152767, - 152775, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152776, - 152776, - null - ], - [ - "delim-token", - ".", - 152777, - 152777, - { - "value": "." - } - ], - [ - "ident-token", - "py-5", - 152778, - 152781, - { - "value": "py-5" - } - ], - [ - "{-token", - "{", - 152782, - 152782, - null - ], - [ - "ident-token", - "padding-top", - 152783, - 152793, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152794, - 152794, - null - ], - [ - "dimension-token", - "3rem", - 152795, - 152798, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152799, - 152799, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152800, - 152808, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 152809, - 152809, - null - ], - [ - "ident-token", - "padding-bottom", - 152810, - 152823, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 152824, - 152824, - null - ], - [ - "dimension-token", - "3rem", - 152825, - 152828, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152829, - 152829, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152830, - 152838, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152839, - 152839, - null - ], - [ - "delim-token", - ".", - 152840, - 152840, - { - "value": "." - } - ], - [ - "ident-token", - "pt-0", - 152841, - 152844, - { - "value": "pt-0" - } - ], - [ - "{-token", - "{", - 152845, - 152845, - null - ], - [ - "ident-token", - "padding-top", - 152846, - 152856, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152857, - 152857, - null - ], - [ - "number-token", - "0", - 152858, - 152858, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 152859, - 152859, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152860, - 152868, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152869, - 152869, - null - ], - [ - "delim-token", - ".", - 152870, - 152870, - { - "value": "." - } - ], - [ - "ident-token", - "pt-1", - 152871, - 152874, - { - "value": "pt-1" - } - ], - [ - "{-token", - "{", - 152875, - 152875, - null - ], - [ - "ident-token", - "padding-top", - 152876, - 152886, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152887, - 152887, - null - ], - [ - "dimension-token", - ".25rem", - 152888, - 152893, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152894, - 152894, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152895, - 152903, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152904, - 152904, - null - ], - [ - "delim-token", - ".", - 152905, - 152905, - { - "value": "." - } - ], - [ - "ident-token", - "pt-2", - 152906, - 152909, - { - "value": "pt-2" - } - ], - [ - "{-token", - "{", - 152910, - 152910, - null - ], - [ - "ident-token", - "padding-top", - 152911, - 152921, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152922, - 152922, - null - ], - [ - "dimension-token", - ".5rem", - 152923, - 152927, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152928, - 152928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152929, - 152937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152938, - 152938, - null - ], - [ - "delim-token", - ".", - 152939, - 152939, - { - "value": "." - } - ], - [ - "ident-token", - "pt-3", - 152940, - 152943, - { - "value": "pt-3" - } - ], - [ - "{-token", - "{", - 152944, - 152944, - null - ], - [ - "ident-token", - "padding-top", - 152945, - 152955, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152956, - 152956, - null - ], - [ - "dimension-token", - "1rem", - 152957, - 152960, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152961, - 152961, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152962, - 152970, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 152971, - 152971, - null - ], - [ - "delim-token", - ".", - 152972, - 152972, - { - "value": "." - } - ], - [ - "ident-token", - "pt-4", - 152973, - 152976, - { - "value": "pt-4" - } - ], - [ - "{-token", - "{", - 152977, - 152977, - null - ], - [ - "ident-token", - "padding-top", - 152978, - 152988, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 152989, - 152989, - null - ], - [ - "dimension-token", - "1.5rem", - 152990, - 152995, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 152996, - 152996, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 152997, - 153005, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153006, - 153006, - null - ], - [ - "delim-token", - ".", - 153007, - 153007, - { - "value": "." - } - ], - [ - "ident-token", - "pt-5", - 153008, - 153011, - { - "value": "pt-5" - } - ], - [ - "{-token", - "{", - 153012, - 153012, - null - ], - [ - "ident-token", - "padding-top", - 153013, - 153023, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 153024, - 153024, - null - ], - [ - "dimension-token", - "3rem", - 153025, - 153028, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153029, - 153029, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153030, - 153038, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153039, - 153039, - null - ], - [ - "delim-token", - ".", - 153040, - 153040, - { - "value": "." - } - ], - [ - "ident-token", - "pe-0", - 153041, - 153044, - { - "value": "pe-0" - } - ], - [ - "{-token", - "{", - 153045, - 153045, - null - ], - [ - "ident-token", - "padding-right", - 153046, - 153058, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153059, - 153059, - null - ], - [ - "number-token", - "0", - 153060, - 153060, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 153061, - 153061, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153062, - 153070, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153071, - 153071, - null - ], - [ - "delim-token", - ".", - 153072, - 153072, - { - "value": "." - } - ], - [ - "ident-token", - "pe-1", - 153073, - 153076, - { - "value": "pe-1" - } - ], - [ - "{-token", - "{", - 153077, - 153077, - null - ], - [ - "ident-token", - "padding-right", - 153078, - 153090, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153091, - 153091, - null - ], - [ - "dimension-token", - ".25rem", - 153092, - 153097, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153098, - 153098, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153099, - 153107, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153108, - 153108, - null - ], - [ - "delim-token", - ".", - 153109, - 153109, - { - "value": "." - } - ], - [ - "ident-token", - "pe-2", - 153110, - 153113, - { - "value": "pe-2" - } - ], - [ - "{-token", - "{", - 153114, - 153114, - null - ], - [ - "ident-token", - "padding-right", - 153115, - 153127, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153128, - 153128, - null - ], - [ - "dimension-token", - ".5rem", - 153129, - 153133, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153134, - 153134, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153135, - 153143, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153144, - 153144, - null - ], - [ - "delim-token", - ".", - 153145, - 153145, - { - "value": "." - } - ], - [ - "ident-token", - "pe-3", - 153146, - 153149, - { - "value": "pe-3" - } - ], - [ - "{-token", - "{", - 153150, - 153150, - null - ], - [ - "ident-token", - "padding-right", - 153151, - 153163, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153164, - 153164, - null - ], - [ - "dimension-token", - "1rem", - 153165, - 153168, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153169, - 153169, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153170, - 153178, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153179, - 153179, - null - ], - [ - "delim-token", - ".", - 153180, - 153180, - { - "value": "." - } - ], - [ - "ident-token", - "pe-4", - 153181, - 153184, - { - "value": "pe-4" - } - ], - [ - "{-token", - "{", - 153185, - 153185, - null - ], - [ - "ident-token", - "padding-right", - 153186, - 153198, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153199, - 153199, - null - ], - [ - "dimension-token", - "1.5rem", - 153200, - 153205, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153206, - 153206, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153207, - 153215, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153216, - 153216, - null - ], - [ - "delim-token", - ".", - 153217, - 153217, - { - "value": "." - } - ], - [ - "ident-token", - "pe-5", - 153218, - 153221, - { - "value": "pe-5" - } - ], - [ - "{-token", - "{", - 153222, - 153222, - null - ], - [ - "ident-token", - "padding-right", - 153223, - 153235, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 153236, - 153236, - null - ], - [ - "dimension-token", - "3rem", - 153237, - 153240, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153241, - 153241, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153242, - 153250, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153251, - 153251, - null - ], - [ - "delim-token", - ".", - 153252, - 153252, - { - "value": "." - } - ], - [ - "ident-token", - "pb-0", - 153253, - 153256, - { - "value": "pb-0" - } - ], - [ - "{-token", - "{", - 153257, - 153257, - null - ], - [ - "ident-token", - "padding-bottom", - 153258, - 153271, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153272, - 153272, - null - ], - [ - "number-token", - "0", - 153273, - 153273, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 153274, - 153274, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153275, - 153283, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153284, - 153284, - null - ], - [ - "delim-token", - ".", - 153285, - 153285, - { - "value": "." - } - ], - [ - "ident-token", - "pb-1", - 153286, - 153289, - { - "value": "pb-1" - } - ], - [ - "{-token", - "{", - 153290, - 153290, - null - ], - [ - "ident-token", - "padding-bottom", - 153291, - 153304, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153305, - 153305, - null - ], - [ - "dimension-token", - ".25rem", - 153306, - 153311, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153312, - 153312, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153313, - 153321, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153322, - 153322, - null - ], - [ - "delim-token", - ".", - 153323, - 153323, - { - "value": "." - } - ], - [ - "ident-token", - "pb-2", - 153324, - 153327, - { - "value": "pb-2" - } - ], - [ - "{-token", - "{", - 153328, - 153328, - null - ], - [ - "ident-token", - "padding-bottom", - 153329, - 153342, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153343, - 153343, - null - ], - [ - "dimension-token", - ".5rem", - 153344, - 153348, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153349, - 153349, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153350, - 153358, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153359, - 153359, - null - ], - [ - "delim-token", - ".", - 153360, - 153360, - { - "value": "." - } - ], - [ - "ident-token", - "pb-3", - 153361, - 153364, - { - "value": "pb-3" - } - ], - [ - "{-token", - "{", - 153365, - 153365, - null - ], - [ - "ident-token", - "padding-bottom", - 153366, - 153379, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153380, - 153380, - null - ], - [ - "dimension-token", - "1rem", - 153381, - 153384, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153385, - 153385, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153386, - 153394, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153395, - 153395, - null - ], - [ - "delim-token", - ".", - 153396, - 153396, - { - "value": "." - } - ], - [ - "ident-token", - "pb-4", - 153397, - 153400, - { - "value": "pb-4" - } - ], - [ - "{-token", - "{", - 153401, - 153401, - null - ], - [ - "ident-token", - "padding-bottom", - 153402, - 153415, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153416, - 153416, - null - ], - [ - "dimension-token", - "1.5rem", - 153417, - 153422, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153423, - 153423, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153424, - 153432, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153433, - 153433, - null - ], - [ - "delim-token", - ".", - 153434, - 153434, - { - "value": "." - } - ], - [ - "ident-token", - "pb-5", - 153435, - 153438, - { - "value": "pb-5" - } - ], - [ - "{-token", - "{", - 153439, - 153439, - null - ], - [ - "ident-token", - "padding-bottom", - 153440, - 153453, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 153454, - 153454, - null - ], - [ - "dimension-token", - "3rem", - 153455, - 153458, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153459, - 153459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153460, - 153468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153469, - 153469, - null - ], - [ - "delim-token", - ".", - 153470, - 153470, - { - "value": "." - } - ], - [ - "ident-token", - "ps-0", - 153471, - 153474, - { - "value": "ps-0" - } - ], - [ - "{-token", - "{", - 153475, - 153475, - null - ], - [ - "ident-token", - "padding-left", - 153476, - 153487, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153488, - 153488, - null - ], - [ - "number-token", - "0", - 153489, - 153489, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 153490, - 153490, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153491, - 153499, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153500, - 153500, - null - ], - [ - "delim-token", - ".", - 153501, - 153501, - { - "value": "." - } - ], - [ - "ident-token", - "ps-1", - 153502, - 153505, - { - "value": "ps-1" - } - ], - [ - "{-token", - "{", - 153506, - 153506, - null - ], - [ - "ident-token", - "padding-left", - 153507, - 153518, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153519, - 153519, - null - ], - [ - "dimension-token", - ".25rem", - 153520, - 153525, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153526, - 153526, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153527, - 153535, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153536, - 153536, - null - ], - [ - "delim-token", - ".", - 153537, - 153537, - { - "value": "." - } - ], - [ - "ident-token", - "ps-2", - 153538, - 153541, - { - "value": "ps-2" - } - ], - [ - "{-token", - "{", - 153542, - 153542, - null - ], - [ - "ident-token", - "padding-left", - 153543, - 153554, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153555, - 153555, - null - ], - [ - "dimension-token", - ".5rem", - 153556, - 153560, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153561, - 153561, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153562, - 153570, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153571, - 153571, - null - ], - [ - "delim-token", - ".", - 153572, - 153572, - { - "value": "." - } - ], - [ - "ident-token", - "ps-3", - 153573, - 153576, - { - "value": "ps-3" - } - ], - [ - "{-token", - "{", - 153577, - 153577, - null - ], - [ - "ident-token", - "padding-left", - 153578, - 153589, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153590, - 153590, - null - ], - [ - "dimension-token", - "1rem", - 153591, - 153594, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153595, - 153595, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153596, - 153604, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153605, - 153605, - null - ], - [ - "delim-token", - ".", - 153606, - 153606, - { - "value": "." - } - ], - [ - "ident-token", - "ps-4", - 153607, - 153610, - { - "value": "ps-4" - } - ], - [ - "{-token", - "{", - 153611, - 153611, - null - ], - [ - "ident-token", - "padding-left", - 153612, - 153623, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153624, - 153624, - null - ], - [ - "dimension-token", - "1.5rem", - 153625, - 153630, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153631, - 153631, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153632, - 153640, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153641, - 153641, - null - ], - [ - "delim-token", - ".", - 153642, - 153642, - { - "value": "." - } - ], - [ - "ident-token", - "ps-5", - 153643, - 153646, - { - "value": "ps-5" - } - ], - [ - "{-token", - "{", - 153647, - 153647, - null - ], - [ - "ident-token", - "padding-left", - 153648, - 153659, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 153660, - 153660, - null - ], - [ - "dimension-token", - "3rem", - 153661, - 153664, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153665, - 153665, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153666, - 153674, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153675, - 153675, - null - ], - [ - "delim-token", - ".", - 153676, - 153676, - { - "value": "." - } - ], - [ - "ident-token", - "gap-0", - 153677, - 153681, - { - "value": "gap-0" - } - ], - [ - "{-token", - "{", - 153682, - 153682, - null - ], - [ - "ident-token", - "gap", - 153683, - 153685, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153686, - 153686, - null - ], - [ - "number-token", - "0", - 153687, - 153687, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 153688, - 153688, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153689, - 153697, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153698, - 153698, - null - ], - [ - "delim-token", - ".", - 153699, - 153699, - { - "value": "." - } - ], - [ - "ident-token", - "gap-1", - 153700, - 153704, - { - "value": "gap-1" - } - ], - [ - "{-token", - "{", - 153705, - 153705, - null - ], - [ - "ident-token", - "gap", - 153706, - 153708, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153709, - 153709, - null - ], - [ - "dimension-token", - ".25rem", - 153710, - 153715, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153716, - 153716, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153717, - 153725, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153726, - 153726, - null - ], - [ - "delim-token", - ".", - 153727, - 153727, - { - "value": "." - } - ], - [ - "ident-token", - "gap-2", - 153728, - 153732, - { - "value": "gap-2" - } - ], - [ - "{-token", - "{", - 153733, - 153733, - null - ], - [ - "ident-token", - "gap", - 153734, - 153736, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153737, - 153737, - null - ], - [ - "dimension-token", - ".5rem", - 153738, - 153742, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153743, - 153743, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153744, - 153752, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153753, - 153753, - null - ], - [ - "delim-token", - ".", - 153754, - 153754, - { - "value": "." - } - ], - [ - "ident-token", - "gap-3", - 153755, - 153759, - { - "value": "gap-3" - } - ], - [ - "{-token", - "{", - 153760, - 153760, - null - ], - [ - "ident-token", - "gap", - 153761, - 153763, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153764, - 153764, - null - ], - [ - "dimension-token", - "1rem", - 153765, - 153768, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153769, - 153769, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153770, - 153778, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153779, - 153779, - null - ], - [ - "delim-token", - ".", - 153780, - 153780, - { - "value": "." - } - ], - [ - "ident-token", - "gap-4", - 153781, - 153785, - { - "value": "gap-4" - } - ], - [ - "{-token", - "{", - 153786, - 153786, - null - ], - [ - "ident-token", - "gap", - 153787, - 153789, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153790, - 153790, - null - ], - [ - "dimension-token", - "1.5rem", - 153791, - 153796, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153797, - 153797, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153798, - 153806, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153807, - 153807, - null - ], - [ - "delim-token", - ".", - 153808, - 153808, - { - "value": "." - } - ], - [ - "ident-token", - "gap-5", - 153809, - 153813, - { - "value": "gap-5" - } - ], - [ - "{-token", - "{", - 153814, - 153814, - null - ], - [ - "ident-token", - "gap", - 153815, - 153817, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 153818, - 153818, - null - ], - [ - "dimension-token", - "3rem", - 153819, - 153822, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 153823, - 153823, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153824, - 153832, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153833, - 153833, - null - ], - [ - "delim-token", - ".", - 153834, - 153834, - { - "value": "." - } - ], - [ - "ident-token", - "font-monospace", - 153835, - 153848, - { - "value": "font-monospace" - } - ], - [ - "{-token", - "{", - 153849, - 153849, - null - ], - [ - "ident-token", - "font-family", - 153850, - 153860, - { - "value": "font-family" - } - ], - [ - "colon-token", - ":", - 153861, - 153861, - null - ], - [ - "function-token", - "var(", - 153862, - 153865, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-font-monospace", - 153866, - 153884, - { - "value": "--bs-font-monospace" - } - ], - [ - ")-token", - ")", - 153885, - 153885, - null - ], - [ - "delim-token", - "!", - 153886, - 153886, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153887, - 153895, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153896, - 153896, - null - ], - [ - "delim-token", - ".", - 153897, - 153897, - { - "value": "." - } - ], - [ - "ident-token", - "fs-1", - 153898, - 153901, - { - "value": "fs-1" - } - ], - [ - "{-token", - "{", - 153902, - 153902, - null - ], - [ - "ident-token", - "font-size", - 153903, - 153911, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 153912, - 153912, - null - ], - [ - "function-token", - "calc(", - 153913, - 153917, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.375rem", - 153918, - 153925, - { - "value": 1.375, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 153926, - 153926, - null - ], - [ - "delim-token", - "+", - 153927, - 153927, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 153928, - 153928, - null - ], - [ - "dimension-token", - "1.5vw", - 153929, - 153933, - { - "value": 1.5, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 153934, - 153934, - null - ], - [ - "delim-token", - "!", - 153935, - 153935, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153936, - 153944, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153945, - 153945, - null - ], - [ - "delim-token", - ".", - 153946, - 153946, - { - "value": "." - } - ], - [ - "ident-token", - "fs-2", - 153947, - 153950, - { - "value": "fs-2" - } - ], - [ - "{-token", - "{", - 153951, - 153951, - null - ], - [ - "ident-token", - "font-size", - 153952, - 153960, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 153961, - 153961, - null - ], - [ - "function-token", - "calc(", - 153962, - 153966, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.325rem", - 153967, - 153974, - { - "value": 1.325, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 153975, - 153975, - null - ], - [ - "delim-token", - "+", - 153976, - 153976, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 153977, - 153977, - null - ], - [ - "dimension-token", - ".9vw", - 153978, - 153981, - { - "value": 0.9, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 153982, - 153982, - null - ], - [ - "delim-token", - "!", - 153983, - 153983, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 153984, - 153992, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 153993, - 153993, - null - ], - [ - "delim-token", - ".", - 153994, - 153994, - { - "value": "." - } - ], - [ - "ident-token", - "fs-3", - 153995, - 153998, - { - "value": "fs-3" - } - ], - [ - "{-token", - "{", - 153999, - 153999, - null - ], - [ - "ident-token", - "font-size", - 154000, - 154008, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 154009, - 154009, - null - ], - [ - "function-token", - "calc(", - 154010, - 154014, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.3rem", - 154015, - 154020, - { - "value": 1.3, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 154021, - 154021, - null - ], - [ - "delim-token", - "+", - 154022, - 154022, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 154023, - 154023, - null - ], - [ - "dimension-token", - ".6vw", - 154024, - 154027, - { - "value": 0.6, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 154028, - 154028, - null - ], - [ - "delim-token", - "!", - 154029, - 154029, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154030, - 154038, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154039, - 154039, - null - ], - [ - "delim-token", - ".", - 154040, - 154040, - { - "value": "." - } - ], - [ - "ident-token", - "fs-4", - 154041, - 154044, - { - "value": "fs-4" - } - ], - [ - "{-token", - "{", - 154045, - 154045, - null - ], - [ - "ident-token", - "font-size", - 154046, - 154054, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 154055, - 154055, - null - ], - [ - "function-token", - "calc(", - 154056, - 154060, - { - "value": "calc" - } - ], - [ - "dimension-token", - "1.275rem", - 154061, - 154068, - { - "value": 1.275, - "type": "number", - "unit": "rem" - } - ], - [ - "whitespace-token", - " ", - 154069, - 154069, - null - ], - [ - "delim-token", - "+", - 154070, - 154070, - { - "value": "+" - } - ], - [ - "whitespace-token", - " ", - 154071, - 154071, - null - ], - [ - "dimension-token", - ".3vw", - 154072, - 154075, - { - "value": 0.3, - "type": "number", - "unit": "vw" - } - ], - [ - ")-token", - ")", - 154076, - 154076, - null - ], - [ - "delim-token", - "!", - 154077, - 154077, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154078, - 154086, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154087, - 154087, - null - ], - [ - "delim-token", - ".", - 154088, - 154088, - { - "value": "." - } - ], - [ - "ident-token", - "fs-5", - 154089, - 154092, - { - "value": "fs-5" - } - ], - [ - "{-token", - "{", - 154093, - 154093, - null - ], - [ - "ident-token", - "font-size", - 154094, - 154102, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 154103, - 154103, - null - ], - [ - "dimension-token", - "1.25rem", - 154104, - 154110, - { - "value": 1.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 154111, - 154111, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154112, - 154120, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154121, - 154121, - null - ], - [ - "delim-token", - ".", - 154122, - 154122, - { - "value": "." - } - ], - [ - "ident-token", - "fs-6", - 154123, - 154126, - { - "value": "fs-6" - } - ], - [ - "{-token", - "{", - 154127, - 154127, - null - ], - [ - "ident-token", - "font-size", - 154128, - 154136, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 154137, - 154137, - null - ], - [ - "dimension-token", - "1rem", - 154138, - 154141, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 154142, - 154142, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154143, - 154151, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154152, - 154152, - null - ], - [ - "delim-token", - ".", - 154153, - 154153, - { - "value": "." - } - ], - [ - "ident-token", - "fst-italic", - 154154, - 154163, - { - "value": "fst-italic" - } - ], - [ - "{-token", - "{", - 154164, - 154164, - null - ], - [ - "ident-token", - "font-style", - 154165, - 154174, - { - "value": "font-style" - } - ], - [ - "colon-token", - ":", - 154175, - 154175, - null - ], - [ - "ident-token", - "italic", - 154176, - 154181, - { - "value": "italic" - } - ], - [ - "delim-token", - "!", - 154182, - 154182, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154183, - 154191, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154192, - 154192, - null - ], - [ - "delim-token", - ".", - 154193, - 154193, - { - "value": "." - } - ], - [ - "ident-token", - "fst-normal", - 154194, - 154203, - { - "value": "fst-normal" - } - ], - [ - "{-token", - "{", - 154204, - 154204, - null - ], - [ - "ident-token", - "font-style", - 154205, - 154214, - { - "value": "font-style" - } - ], - [ - "colon-token", - ":", - 154215, - 154215, - null - ], - [ - "ident-token", - "normal", - 154216, - 154221, - { - "value": "normal" - } - ], - [ - "delim-token", - "!", - 154222, - 154222, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154223, - 154231, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154232, - 154232, - null - ], - [ - "delim-token", - ".", - 154233, - 154233, - { - "value": "." - } - ], - [ - "ident-token", - "fw-light", - 154234, - 154241, - { - "value": "fw-light" - } - ], - [ - "{-token", - "{", - 154242, - 154242, - null - ], - [ - "ident-token", - "font-weight", - 154243, - 154253, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154254, - 154254, - null - ], - [ - "number-token", - "300", - 154255, - 154257, - { - "value": 300, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154258, - 154258, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154259, - 154267, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154268, - 154268, - null - ], - [ - "delim-token", - ".", - 154269, - 154269, - { - "value": "." - } - ], - [ - "ident-token", - "fw-lighter", - 154270, - 154279, - { - "value": "fw-lighter" - } - ], - [ - "{-token", - "{", - 154280, - 154280, - null - ], - [ - "ident-token", - "font-weight", - 154281, - 154291, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154292, - 154292, - null - ], - [ - "ident-token", - "lighter", - 154293, - 154299, - { - "value": "lighter" - } - ], - [ - "delim-token", - "!", - 154300, - 154300, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154301, - 154309, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154310, - 154310, - null - ], - [ - "delim-token", - ".", - 154311, - 154311, - { - "value": "." - } - ], - [ - "ident-token", - "fw-normal", - 154312, - 154320, - { - "value": "fw-normal" - } - ], - [ - "{-token", - "{", - 154321, - 154321, - null - ], - [ - "ident-token", - "font-weight", - 154322, - 154332, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154333, - 154333, - null - ], - [ - "number-token", - "400", - 154334, - 154336, - { - "value": 400, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154337, - 154337, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154338, - 154346, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154347, - 154347, - null - ], - [ - "delim-token", - ".", - 154348, - 154348, - { - "value": "." - } - ], - [ - "ident-token", - "fw-bold", - 154349, - 154355, - { - "value": "fw-bold" - } - ], - [ - "{-token", - "{", - 154356, - 154356, - null - ], - [ - "ident-token", - "font-weight", - 154357, - 154367, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154368, - 154368, - null - ], - [ - "number-token", - "700", - 154369, - 154371, - { - "value": 700, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154372, - 154372, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154373, - 154381, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154382, - 154382, - null - ], - [ - "delim-token", - ".", - 154383, - 154383, - { - "value": "." - } - ], - [ - "ident-token", - "fw-semibold", - 154384, - 154394, - { - "value": "fw-semibold" - } - ], - [ - "{-token", - "{", - 154395, - 154395, - null - ], - [ - "ident-token", - "font-weight", - 154396, - 154406, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154407, - 154407, - null - ], - [ - "number-token", - "600", - 154408, - 154410, - { - "value": 600, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154411, - 154411, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154412, - 154420, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154421, - 154421, - null - ], - [ - "delim-token", - ".", - 154422, - 154422, - { - "value": "." - } - ], - [ - "ident-token", - "fw-bolder", - 154423, - 154431, - { - "value": "fw-bolder" - } - ], - [ - "{-token", - "{", - 154432, - 154432, - null - ], - [ - "ident-token", - "font-weight", - 154433, - 154443, - { - "value": "font-weight" - } - ], - [ - "colon-token", - ":", - 154444, - 154444, - null - ], - [ - "ident-token", - "bolder", - 154445, - 154450, - { - "value": "bolder" - } - ], - [ - "delim-token", - "!", - 154451, - 154451, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154452, - 154460, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154461, - 154461, - null - ], - [ - "delim-token", - ".", - 154462, - 154462, - { - "value": "." - } - ], - [ - "ident-token", - "lh-1", - 154463, - 154466, - { - "value": "lh-1" - } - ], - [ - "{-token", - "{", - 154467, - 154467, - null - ], - [ - "ident-token", - "line-height", - 154468, - 154478, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 154479, - 154479, - null - ], - [ - "number-token", - "1", - 154480, - 154480, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154481, - 154481, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154482, - 154490, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154491, - 154491, - null - ], - [ - "delim-token", - ".", - 154492, - 154492, - { - "value": "." - } - ], - [ - "ident-token", - "lh-sm", - 154493, - 154497, - { - "value": "lh-sm" - } - ], - [ - "{-token", - "{", - 154498, - 154498, - null - ], - [ - "ident-token", - "line-height", - 154499, - 154509, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 154510, - 154510, - null - ], - [ - "number-token", - "1.25", - 154511, - 154514, - { - "value": 1.25, - "type": "number" - } - ], - [ - "delim-token", - "!", - 154515, - 154515, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154516, - 154524, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154525, - 154525, - null - ], - [ - "delim-token", - ".", - 154526, - 154526, - { - "value": "." - } - ], - [ - "ident-token", - "lh-base", - 154527, - 154533, - { - "value": "lh-base" - } - ], - [ - "{-token", - "{", - 154534, - 154534, - null - ], - [ - "ident-token", - "line-height", - 154535, - 154545, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 154546, - 154546, - null - ], - [ - "number-token", - "1.5", - 154547, - 154549, - { - "value": 1.5, - "type": "number" - } - ], - [ - "delim-token", - "!", - 154550, - 154550, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154551, - 154559, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154560, - 154560, - null - ], - [ - "delim-token", - ".", - 154561, - 154561, - { - "value": "." - } - ], - [ - "ident-token", - "lh-lg", - 154562, - 154566, - { - "value": "lh-lg" - } - ], - [ - "{-token", - "{", - 154567, - 154567, - null - ], - [ - "ident-token", - "line-height", - 154568, - 154578, - { - "value": "line-height" - } - ], - [ - "colon-token", - ":", - 154579, - 154579, - null - ], - [ - "number-token", - "2", - 154580, - 154580, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 154581, - 154581, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154582, - 154590, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154591, - 154591, - null - ], - [ - "delim-token", - ".", - 154592, - 154592, - { - "value": "." - } - ], - [ - "ident-token", - "text-start", - 154593, - 154602, - { - "value": "text-start" - } - ], - [ - "{-token", - "{", - 154603, - 154603, - null - ], - [ - "ident-token", - "text-align", - 154604, - 154613, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 154614, - 154614, - null - ], - [ - "ident-token", - "left", - 154615, - 154618, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 154619, - 154619, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154620, - 154628, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154629, - 154629, - null - ], - [ - "delim-token", - ".", - 154630, - 154630, - { - "value": "." - } - ], - [ - "ident-token", - "text-end", - 154631, - 154638, - { - "value": "text-end" - } - ], - [ - "{-token", - "{", - 154639, - 154639, - null - ], - [ - "ident-token", - "text-align", - 154640, - 154649, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 154650, - 154650, - null - ], - [ - "ident-token", - "right", - 154651, - 154655, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 154656, - 154656, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154657, - 154665, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154666, - 154666, - null - ], - [ - "delim-token", - ".", - 154667, - 154667, - { - "value": "." - } - ], - [ - "ident-token", - "text-center", - 154668, - 154678, - { - "value": "text-center" - } - ], - [ - "{-token", - "{", - 154679, - 154679, - null - ], - [ - "ident-token", - "text-align", - 154680, - 154689, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 154690, - 154690, - null - ], - [ - "ident-token", - "center", - 154691, - 154696, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 154697, - 154697, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154698, - 154706, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154707, - 154707, - null - ], - [ - "delim-token", - ".", - 154708, - 154708, - { - "value": "." - } - ], - [ - "ident-token", - "text-decoration-none", - 154709, - 154728, - { - "value": "text-decoration-none" - } - ], - [ - "{-token", - "{", - 154729, - 154729, - null - ], - [ - "ident-token", - "text-decoration", - 154730, - 154744, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 154745, - 154745, - null - ], - [ - "ident-token", - "none", - 154746, - 154749, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 154750, - 154750, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154751, - 154759, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154760, - 154760, - null - ], - [ - "delim-token", - ".", - 154761, - 154761, - { - "value": "." - } - ], - [ - "ident-token", - "text-decoration-underline", - 154762, - 154786, - { - "value": "text-decoration-underline" - } - ], - [ - "{-token", - "{", - 154787, - 154787, - null - ], - [ - "ident-token", - "text-decoration", - 154788, - 154802, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 154803, - 154803, - null - ], - [ - "ident-token", - "underline", - 154804, - 154812, - { - "value": "underline" - } - ], - [ - "delim-token", - "!", - 154813, - 154813, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154814, - 154822, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154823, - 154823, - null - ], - [ - "delim-token", - ".", - 154824, - 154824, - { - "value": "." - } - ], - [ - "ident-token", - "text-decoration-line-through", - 154825, - 154852, - { - "value": "text-decoration-line-through" - } - ], - [ - "{-token", - "{", - 154853, - 154853, - null - ], - [ - "ident-token", - "text-decoration", - 154854, - 154868, - { - "value": "text-decoration" - } - ], - [ - "colon-token", - ":", - 154869, - 154869, - null - ], - [ - "ident-token", - "line-through", - 154870, - 154881, - { - "value": "line-through" - } - ], - [ - "delim-token", - "!", - 154882, - 154882, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154883, - 154891, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154892, - 154892, - null - ], - [ - "delim-token", - ".", - 154893, - 154893, - { - "value": "." - } - ], - [ - "ident-token", - "text-lowercase", - 154894, - 154907, - { - "value": "text-lowercase" - } - ], - [ - "{-token", - "{", - 154908, - 154908, - null - ], - [ - "ident-token", - "text-transform", - 154909, - 154922, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 154923, - 154923, - null - ], - [ - "ident-token", - "lowercase", - 154924, - 154932, - { - "value": "lowercase" - } - ], - [ - "delim-token", - "!", - 154933, - 154933, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154934, - 154942, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154943, - 154943, - null - ], - [ - "delim-token", - ".", - 154944, - 154944, - { - "value": "." - } - ], - [ - "ident-token", - "text-uppercase", - 154945, - 154958, - { - "value": "text-uppercase" - } - ], - [ - "{-token", - "{", - 154959, - 154959, - null - ], - [ - "ident-token", - "text-transform", - 154960, - 154973, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 154974, - 154974, - null - ], - [ - "ident-token", - "uppercase", - 154975, - 154983, - { - "value": "uppercase" - } - ], - [ - "delim-token", - "!", - 154984, - 154984, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 154985, - 154993, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 154994, - 154994, - null - ], - [ - "delim-token", - ".", - 154995, - 154995, - { - "value": "." - } - ], - [ - "ident-token", - "text-capitalize", - 154996, - 155010, - { - "value": "text-capitalize" - } - ], - [ - "{-token", - "{", - 155011, - 155011, - null - ], - [ - "ident-token", - "text-transform", - 155012, - 155025, - { - "value": "text-transform" - } - ], - [ - "colon-token", - ":", - 155026, - 155026, - null - ], - [ - "ident-token", - "capitalize", - 155027, - 155036, - { - "value": "capitalize" - } - ], - [ - "delim-token", - "!", - 155037, - 155037, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155038, - 155046, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155047, - 155047, - null - ], - [ - "delim-token", - ".", - 155048, - 155048, - { - "value": "." - } - ], - [ - "ident-token", - "text-wrap", - 155049, - 155057, - { - "value": "text-wrap" - } - ], - [ - "{-token", - "{", - 155058, - 155058, - null - ], - [ - "ident-token", - "white-space", - 155059, - 155069, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 155070, - 155070, - null - ], - [ - "ident-token", - "normal", - 155071, - 155076, - { - "value": "normal" - } - ], - [ - "delim-token", - "!", - 155077, - 155077, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155078, - 155086, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155087, - 155087, - null - ], - [ - "delim-token", - ".", - 155088, - 155088, - { - "value": "." - } - ], - [ - "ident-token", - "text-nowrap", - 155089, - 155099, - { - "value": "text-nowrap" - } - ], - [ - "{-token", - "{", - 155100, - 155100, - null - ], - [ - "ident-token", - "white-space", - 155101, - 155111, - { - "value": "white-space" - } - ], - [ - "colon-token", - ":", - 155112, - 155112, - null - ], - [ - "ident-token", - "nowrap", - 155113, - 155118, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 155119, - 155119, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155120, - 155128, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155129, - 155129, - null - ], - [ - "delim-token", - ".", - 155130, - 155130, - { - "value": "." - } - ], - [ - "ident-token", - "text-break", - 155131, - 155140, - { - "value": "text-break" - } - ], - [ - "{-token", - "{", - 155141, - 155141, - null - ], - [ - "ident-token", - "word-wrap", - 155142, - 155150, - { - "value": "word-wrap" - } - ], - [ - "colon-token", - ":", - 155151, - 155151, - null - ], - [ - "ident-token", - "break-word", - 155152, - 155161, - { - "value": "break-word" - } - ], - [ - "delim-token", - "!", - 155162, - 155162, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155163, - 155171, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 155172, - 155172, - null - ], - [ - "ident-token", - "word-break", - 155173, - 155182, - { - "value": "word-break" - } - ], - [ - "colon-token", - ":", - 155183, - 155183, - null - ], - [ - "ident-token", - "break-word", - 155184, - 155193, - { - "value": "break-word" - } - ], - [ - "delim-token", - "!", - 155194, - 155194, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155195, - 155203, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155204, - 155204, - null - ], - [ - "delim-token", - ".", - 155205, - 155205, - { - "value": "." - } - ], - [ - "ident-token", - "text-primary", - 155206, - 155217, - { - "value": "text-primary" - } - ], - [ - "{-token", - "{", - 155218, - 155218, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155219, - 155235, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155236, - 155236, - null - ], - [ - "number-token", - "1", - 155237, - 155237, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155238, - 155238, - null - ], - [ - "ident-token", - "color", - 155239, - 155243, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155244, - 155244, - null - ], - [ - "function-token", - "rgba(", - 155245, - 155249, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155250, - 155253, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-primary-rgb", - 155254, - 155269, - { - "value": "--bs-primary-rgb" - } - ], - [ - ")-token", - ")", - 155270, - 155270, - null - ], - [ - "comma-token", - ",", - 155271, - 155271, - null - ], - [ - "function-token", - "var(", - 155272, - 155275, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155276, - 155292, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155293, - 155293, - null - ], - [ - ")-token", - ")", - 155294, - 155294, - null - ], - [ - "delim-token", - "!", - 155295, - 155295, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155296, - 155304, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155305, - 155305, - null - ], - [ - "delim-token", - ".", - 155306, - 155306, - { - "value": "." - } - ], - [ - "ident-token", - "text-secondary", - 155307, - 155320, - { - "value": "text-secondary" - } - ], - [ - "{-token", - "{", - 155321, - 155321, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155322, - 155338, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155339, - 155339, - null - ], - [ - "number-token", - "1", - 155340, - 155340, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155341, - 155341, - null - ], - [ - "ident-token", - "color", - 155342, - 155346, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155347, - 155347, - null - ], - [ - "function-token", - "rgba(", - 155348, - 155352, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155353, - 155356, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-secondary-rgb", - 155357, - 155374, - { - "value": "--bs-secondary-rgb" - } - ], - [ - ")-token", - ")", - 155375, - 155375, - null - ], - [ - "comma-token", - ",", - 155376, - 155376, - null - ], - [ - "function-token", - "var(", - 155377, - 155380, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155381, - 155397, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155398, - 155398, - null - ], - [ - ")-token", - ")", - 155399, - 155399, - null - ], - [ - "delim-token", - "!", - 155400, - 155400, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155401, - 155409, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155410, - 155410, - null - ], - [ - "delim-token", - ".", - 155411, - 155411, - { - "value": "." - } - ], - [ - "ident-token", - "text-success", - 155412, - 155423, - { - "value": "text-success" - } - ], - [ - "{-token", - "{", - 155424, - 155424, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155425, - 155441, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155442, - 155442, - null - ], - [ - "number-token", - "1", - 155443, - 155443, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155444, - 155444, - null - ], - [ - "ident-token", - "color", - 155445, - 155449, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155450, - 155450, - null - ], - [ - "function-token", - "rgba(", - 155451, - 155455, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155456, - 155459, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-success-rgb", - 155460, - 155475, - { - "value": "--bs-success-rgb" - } - ], - [ - ")-token", - ")", - 155476, - 155476, - null - ], - [ - "comma-token", - ",", - 155477, - 155477, - null - ], - [ - "function-token", - "var(", - 155478, - 155481, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155482, - 155498, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155499, - 155499, - null - ], - [ - ")-token", - ")", - 155500, - 155500, - null - ], - [ - "delim-token", - "!", - 155501, - 155501, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155502, - 155510, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155511, - 155511, - null - ], - [ - "delim-token", - ".", - 155512, - 155512, - { - "value": "." - } - ], - [ - "ident-token", - "text-info", - 155513, - 155521, - { - "value": "text-info" - } - ], - [ - "{-token", - "{", - 155522, - 155522, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155523, - 155539, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155540, - 155540, - null - ], - [ - "number-token", - "1", - 155541, - 155541, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155542, - 155542, - null - ], - [ - "ident-token", - "color", - 155543, - 155547, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155548, - 155548, - null - ], - [ - "function-token", - "rgba(", - 155549, - 155553, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155554, - 155557, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-info-rgb", - 155558, - 155570, - { - "value": "--bs-info-rgb" - } - ], - [ - ")-token", - ")", - 155571, - 155571, - null - ], - [ - "comma-token", - ",", - 155572, - 155572, - null - ], - [ - "function-token", - "var(", - 155573, - 155576, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155577, - 155593, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155594, - 155594, - null - ], - [ - ")-token", - ")", - 155595, - 155595, - null - ], - [ - "delim-token", - "!", - 155596, - 155596, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155597, - 155605, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155606, - 155606, - null - ], - [ - "delim-token", - ".", - 155607, - 155607, - { - "value": "." - } - ], - [ - "ident-token", - "text-warning", - 155608, - 155619, - { - "value": "text-warning" - } - ], - [ - "{-token", - "{", - 155620, - 155620, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155621, - 155637, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155638, - 155638, - null - ], - [ - "number-token", - "1", - 155639, - 155639, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155640, - 155640, - null - ], - [ - "ident-token", - "color", - 155641, - 155645, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155646, - 155646, - null - ], - [ - "function-token", - "rgba(", - 155647, - 155651, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155652, - 155655, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-warning-rgb", - 155656, - 155671, - { - "value": "--bs-warning-rgb" - } - ], - [ - ")-token", - ")", - 155672, - 155672, - null - ], - [ - "comma-token", - ",", - 155673, - 155673, - null - ], - [ - "function-token", - "var(", - 155674, - 155677, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155678, - 155694, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155695, - 155695, - null - ], - [ - ")-token", - ")", - 155696, - 155696, - null - ], - [ - "delim-token", - "!", - 155697, - 155697, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155698, - 155706, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155707, - 155707, - null - ], - [ - "delim-token", - ".", - 155708, - 155708, - { - "value": "." - } - ], - [ - "ident-token", - "text-danger", - 155709, - 155719, - { - "value": "text-danger" - } - ], - [ - "{-token", - "{", - 155720, - 155720, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155721, - 155737, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155738, - 155738, - null - ], - [ - "number-token", - "1", - 155739, - 155739, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155740, - 155740, - null - ], - [ - "ident-token", - "color", - 155741, - 155745, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155746, - 155746, - null - ], - [ - "function-token", - "rgba(", - 155747, - 155751, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155752, - 155755, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-danger-rgb", - 155756, - 155770, - { - "value": "--bs-danger-rgb" - } - ], - [ - ")-token", - ")", - 155771, - 155771, - null - ], - [ - "comma-token", - ",", - 155772, - 155772, - null - ], - [ - "function-token", - "var(", - 155773, - 155776, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155777, - 155793, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155794, - 155794, - null - ], - [ - ")-token", - ")", - 155795, - 155795, - null - ], - [ - "delim-token", - "!", - 155796, - 155796, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155797, - 155805, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155806, - 155806, - null - ], - [ - "delim-token", - ".", - 155807, - 155807, - { - "value": "." - } - ], - [ - "ident-token", - "text-light", - 155808, - 155817, - { - "value": "text-light" - } - ], - [ - "{-token", - "{", - 155818, - 155818, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155819, - 155835, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155836, - 155836, - null - ], - [ - "number-token", - "1", - 155837, - 155837, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155838, - 155838, - null - ], - [ - "ident-token", - "color", - 155839, - 155843, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155844, - 155844, - null - ], - [ - "function-token", - "rgba(", - 155845, - 155849, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155850, - 155853, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-light-rgb", - 155854, - 155867, - { - "value": "--bs-light-rgb" - } - ], - [ - ")-token", - ")", - 155868, - 155868, - null - ], - [ - "comma-token", - ",", - 155869, - 155869, - null - ], - [ - "function-token", - "var(", - 155870, - 155873, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155874, - 155890, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155891, - 155891, - null - ], - [ - ")-token", - ")", - 155892, - 155892, - null - ], - [ - "delim-token", - "!", - 155893, - 155893, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155894, - 155902, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155903, - 155903, - null - ], - [ - "delim-token", - ".", - 155904, - 155904, - { - "value": "." - } - ], - [ - "ident-token", - "text-dark", - 155905, - 155913, - { - "value": "text-dark" - } - ], - [ - "{-token", - "{", - 155914, - 155914, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 155915, - 155931, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 155932, - 155932, - null - ], - [ - "number-token", - "1", - 155933, - 155933, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 155934, - 155934, - null - ], - [ - "ident-token", - "color", - 155935, - 155939, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 155940, - 155940, - null - ], - [ - "function-token", - "rgba(", - 155941, - 155945, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 155946, - 155949, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dark-rgb", - 155950, - 155962, - { - "value": "--bs-dark-rgb" - } - ], - [ - ")-token", - ")", - 155963, - 155963, - null - ], - [ - "comma-token", - ",", - 155964, - 155964, - null - ], - [ - "function-token", - "var(", - 155965, - 155968, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 155969, - 155985, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 155986, - 155986, - null - ], - [ - ")-token", - ")", - 155987, - 155987, - null - ], - [ - "delim-token", - "!", - 155988, - 155988, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 155989, - 155997, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 155998, - 155998, - null - ], - [ - "delim-token", - ".", - 155999, - 155999, - { - "value": "." - } - ], - [ - "ident-token", - "text-black", - 156000, - 156009, - { - "value": "text-black" - } - ], - [ - "{-token", - "{", - 156010, - 156010, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156011, - 156027, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156028, - 156028, - null - ], - [ - "number-token", - "1", - 156029, - 156029, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156030, - 156030, - null - ], - [ - "ident-token", - "color", - 156031, - 156035, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156036, - 156036, - null - ], - [ - "function-token", - "rgba(", - 156037, - 156041, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156042, - 156045, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-black-rgb", - 156046, - 156059, - { - "value": "--bs-black-rgb" - } - ], - [ - ")-token", - ")", - 156060, - 156060, - null - ], - [ - "comma-token", - ",", - 156061, - 156061, - null - ], - [ - "function-token", - "var(", - 156062, - 156065, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 156066, - 156082, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 156083, - 156083, - null - ], - [ - ")-token", - ")", - 156084, - 156084, - null - ], - [ - "delim-token", - "!", - 156085, - 156085, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156086, - 156094, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156095, - 156095, - null - ], - [ - "delim-token", - ".", - 156096, - 156096, - { - "value": "." - } - ], - [ - "ident-token", - "text-white", - 156097, - 156106, - { - "value": "text-white" - } - ], - [ - "{-token", - "{", - 156107, - 156107, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156108, - 156124, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156125, - 156125, - null - ], - [ - "number-token", - "1", - 156126, - 156126, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156127, - 156127, - null - ], - [ - "ident-token", - "color", - 156128, - 156132, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156133, - 156133, - null - ], - [ - "function-token", - "rgba(", - 156134, - 156138, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156139, - 156142, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-white-rgb", - 156143, - 156156, - { - "value": "--bs-white-rgb" - } - ], - [ - ")-token", - ")", - 156157, - 156157, - null - ], - [ - "comma-token", - ",", - 156158, - 156158, - null - ], - [ - "function-token", - "var(", - 156159, - 156162, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 156163, - 156179, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 156180, - 156180, - null - ], - [ - ")-token", - ")", - 156181, - 156181, - null - ], - [ - "delim-token", - "!", - 156182, - 156182, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156183, - 156191, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156192, - 156192, - null - ], - [ - "delim-token", - ".", - 156193, - 156193, - { - "value": "." - } - ], - [ - "ident-token", - "text-body", - 156194, - 156202, - { - "value": "text-body" - } - ], - [ - "{-token", - "{", - 156203, - 156203, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156204, - 156220, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156221, - 156221, - null - ], - [ - "number-token", - "1", - 156222, - 156222, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156223, - 156223, - null - ], - [ - "ident-token", - "color", - 156224, - 156228, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156229, - 156229, - null - ], - [ - "function-token", - "rgba(", - 156230, - 156234, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156235, - 156238, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-color-rgb", - 156239, - 156257, - { - "value": "--bs-body-color-rgb" - } - ], - [ - ")-token", - ")", - 156258, - 156258, - null - ], - [ - "comma-token", - ",", - 156259, - 156259, - null - ], - [ - "function-token", - "var(", - 156260, - 156263, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-text-opacity", - 156264, - 156280, - { - "value": "--bs-text-opacity" - } - ], - [ - ")-token", - ")", - 156281, - 156281, - null - ], - [ - ")-token", - ")", - 156282, - 156282, - null - ], - [ - "delim-token", - "!", - 156283, - 156283, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156284, - 156292, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156293, - 156293, - null - ], - [ - "delim-token", - ".", - 156294, - 156294, - { - "value": "." - } - ], - [ - "ident-token", - "text-muted", - 156295, - 156304, - { - "value": "text-muted" - } - ], - [ - "{-token", - "{", - 156305, - 156305, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156306, - 156322, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156323, - 156323, - null - ], - [ - "number-token", - "1", - 156324, - 156324, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156325, - 156325, - null - ], - [ - "ident-token", - "color", - 156326, - 156330, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156331, - 156331, - null - ], - [ - "hash-token", - "#6c757d", - 156332, - 156338, - { - "value": "6c757d", - "type": "unrestricted" - } - ], - [ - "delim-token", - "!", - 156339, - 156339, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156340, - 156348, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156349, - 156349, - null - ], - [ - "delim-token", - ".", - 156350, - 156350, - { - "value": "." - } - ], - [ - "ident-token", - "text-black-50", - 156351, - 156363, - { - "value": "text-black-50" - } - ], - [ - "{-token", - "{", - 156364, - 156364, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156365, - 156381, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156382, - 156382, - null - ], - [ - "number-token", - "1", - 156383, - 156383, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156384, - 156384, - null - ], - [ - "ident-token", - "color", - 156385, - 156389, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156390, - 156390, - null - ], - [ - "function-token", - "rgba(", - 156391, - 156395, - { - "value": "rgba" - } - ], - [ - "number-token", - "0", - 156396, - 156396, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156397, - 156397, - null - ], - [ - "number-token", - "0", - 156398, - 156398, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156399, - 156399, - null - ], - [ - "number-token", - "0", - 156400, - 156400, - { - "value": 0, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156401, - 156401, - null - ], - [ - "number-token", - ".5", - 156402, - 156403, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 156404, - 156404, - null - ], - [ - "delim-token", - "!", - 156405, - 156405, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156406, - 156414, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156415, - 156415, - null - ], - [ - "delim-token", - ".", - 156416, - 156416, - { - "value": "." - } - ], - [ - "ident-token", - "text-white-50", - 156417, - 156429, - { - "value": "text-white-50" - } - ], - [ - "{-token", - "{", - 156430, - 156430, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156431, - 156447, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156448, - 156448, - null - ], - [ - "number-token", - "1", - 156449, - 156449, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156450, - 156450, - null - ], - [ - "ident-token", - "color", - 156451, - 156455, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156456, - 156456, - null - ], - [ - "function-token", - "rgba(", - 156457, - 156461, - { - "value": "rgba" - } - ], - [ - "number-token", - "255", - 156462, - 156464, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156465, - 156465, - null - ], - [ - "number-token", - "255", - 156466, - 156468, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156469, - 156469, - null - ], - [ - "number-token", - "255", - 156470, - 156472, - { - "value": 255, - "type": "integer" - } - ], - [ - "comma-token", - ",", - 156473, - 156473, - null - ], - [ - "number-token", - ".5", - 156474, - 156475, - { - "value": 0.5, - "type": "number" - } - ], - [ - ")-token", - ")", - 156476, - 156476, - null - ], - [ - "delim-token", - "!", - 156477, - 156477, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156478, - 156486, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156487, - 156487, - null - ], - [ - "delim-token", - ".", - 156488, - 156488, - { - "value": "." - } - ], - [ - "ident-token", - "text-reset", - 156489, - 156498, - { - "value": "text-reset" - } - ], - [ - "{-token", - "{", - 156499, - 156499, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156500, - 156516, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156517, - 156517, - null - ], - [ - "number-token", - "1", - 156518, - 156518, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156519, - 156519, - null - ], - [ - "ident-token", - "color", - 156520, - 156524, - { - "value": "color" - } - ], - [ - "colon-token", - ":", - 156525, - 156525, - null - ], - [ - "ident-token", - "inherit", - 156526, - 156532, - { - "value": "inherit" - } - ], - [ - "delim-token", - "!", - 156533, - 156533, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156534, - 156542, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156543, - 156543, - null - ], - [ - "delim-token", - ".", - 156544, - 156544, - { - "value": "." - } - ], - [ - "ident-token", - "text-opacity-25", - 156545, - 156559, - { - "value": "text-opacity-25" - } - ], - [ - "{-token", - "{", - 156560, - 156560, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156561, - 156577, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156578, - 156578, - null - ], - [ - "number-token", - "0.25", - 156579, - 156582, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 156583, - 156583, - null - ], - [ - "delim-token", - ".", - 156584, - 156584, - { - "value": "." - } - ], - [ - "ident-token", - "text-opacity-50", - 156585, - 156599, - { - "value": "text-opacity-50" - } - ], - [ - "{-token", - "{", - 156600, - 156600, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156601, - 156617, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156618, - 156618, - null - ], - [ - "number-token", - "0.5", - 156619, - 156621, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 156622, - 156622, - null - ], - [ - "delim-token", - ".", - 156623, - 156623, - { - "value": "." - } - ], - [ - "ident-token", - "text-opacity-75", - 156624, - 156638, - { - "value": "text-opacity-75" - } - ], - [ - "{-token", - "{", - 156639, - 156639, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156640, - 156656, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156657, - 156657, - null - ], - [ - "number-token", - "0.75", - 156658, - 156661, - { - "value": 0.75, - "type": "number" - } - ], - [ - "}-token", - "}", - 156662, - 156662, - null - ], - [ - "delim-token", - ".", - 156663, - 156663, - { - "value": "." - } - ], - [ - "ident-token", - "text-opacity-100", - 156664, - 156679, - { - "value": "text-opacity-100" - } - ], - [ - "{-token", - "{", - 156680, - 156680, - null - ], - [ - "ident-token", - "--bs-text-opacity", - 156681, - 156697, - { - "value": "--bs-text-opacity" - } - ], - [ - "colon-token", - ":", - 156698, - 156698, - null - ], - [ - "number-token", - "1", - 156699, - 156699, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 156700, - 156700, - null - ], - [ - "delim-token", - ".", - 156701, - 156701, - { - "value": "." - } - ], - [ - "ident-token", - "bg-primary", - 156702, - 156711, - { - "value": "bg-primary" - } - ], - [ - "{-token", - "{", - 156712, - 156712, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 156713, - 156727, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 156728, - 156728, - null - ], - [ - "number-token", - "1", - 156729, - 156729, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156730, - 156730, - null - ], - [ - "ident-token", - "background-color", - 156731, - 156746, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 156747, - 156747, - null - ], - [ - "function-token", - "rgba(", - 156748, - 156752, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156753, - 156756, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-primary-rgb", - 156757, - 156772, - { - "value": "--bs-primary-rgb" - } - ], - [ - ")-token", - ")", - 156773, - 156773, - null - ], - [ - "comma-token", - ",", - 156774, - 156774, - null - ], - [ - "function-token", - "var(", - 156775, - 156778, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 156779, - 156793, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 156794, - 156794, - null - ], - [ - ")-token", - ")", - 156795, - 156795, - null - ], - [ - "delim-token", - "!", - 156796, - 156796, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156797, - 156805, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156806, - 156806, - null - ], - [ - "delim-token", - ".", - 156807, - 156807, - { - "value": "." - } - ], - [ - "ident-token", - "bg-secondary", - 156808, - 156819, - { - "value": "bg-secondary" - } - ], - [ - "{-token", - "{", - 156820, - 156820, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 156821, - 156835, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 156836, - 156836, - null - ], - [ - "number-token", - "1", - 156837, - 156837, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156838, - 156838, - null - ], - [ - "ident-token", - "background-color", - 156839, - 156854, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 156855, - 156855, - null - ], - [ - "function-token", - "rgba(", - 156856, - 156860, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156861, - 156864, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-secondary-rgb", - 156865, - 156882, - { - "value": "--bs-secondary-rgb" - } - ], - [ - ")-token", - ")", - 156883, - 156883, - null - ], - [ - "comma-token", - ",", - 156884, - 156884, - null - ], - [ - "function-token", - "var(", - 156885, - 156888, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 156889, - 156903, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 156904, - 156904, - null - ], - [ - ")-token", - ")", - 156905, - 156905, - null - ], - [ - "delim-token", - "!", - 156906, - 156906, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 156907, - 156915, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 156916, - 156916, - null - ], - [ - "delim-token", - ".", - 156917, - 156917, - { - "value": "." - } - ], - [ - "ident-token", - "bg-success", - 156918, - 156927, - { - "value": "bg-success" - } - ], - [ - "{-token", - "{", - 156928, - 156928, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 156929, - 156943, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 156944, - 156944, - null - ], - [ - "number-token", - "1", - 156945, - 156945, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 156946, - 156946, - null - ], - [ - "ident-token", - "background-color", - 156947, - 156962, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 156963, - 156963, - null - ], - [ - "function-token", - "rgba(", - 156964, - 156968, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 156969, - 156972, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-success-rgb", - 156973, - 156988, - { - "value": "--bs-success-rgb" - } - ], - [ - ")-token", - ")", - 156989, - 156989, - null - ], - [ - "comma-token", - ",", - 156990, - 156990, - null - ], - [ - "function-token", - "var(", - 156991, - 156994, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 156995, - 157009, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157010, - 157010, - null - ], - [ - ")-token", - ")", - 157011, - 157011, - null - ], - [ - "delim-token", - "!", - 157012, - 157012, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157013, - 157021, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157022, - 157022, - null - ], - [ - "delim-token", - ".", - 157023, - 157023, - { - "value": "." - } - ], - [ - "ident-token", - "bg-info", - 157024, - 157030, - { - "value": "bg-info" - } - ], - [ - "{-token", - "{", - 157031, - 157031, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157032, - 157046, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157047, - 157047, - null - ], - [ - "number-token", - "1", - 157048, - 157048, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157049, - 157049, - null - ], - [ - "ident-token", - "background-color", - 157050, - 157065, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157066, - 157066, - null - ], - [ - "function-token", - "rgba(", - 157067, - 157071, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157072, - 157075, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-info-rgb", - 157076, - 157088, - { - "value": "--bs-info-rgb" - } - ], - [ - ")-token", - ")", - 157089, - 157089, - null - ], - [ - "comma-token", - ",", - 157090, - 157090, - null - ], - [ - "function-token", - "var(", - 157091, - 157094, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157095, - 157109, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157110, - 157110, - null - ], - [ - ")-token", - ")", - 157111, - 157111, - null - ], - [ - "delim-token", - "!", - 157112, - 157112, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157113, - 157121, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157122, - 157122, - null - ], - [ - "delim-token", - ".", - 157123, - 157123, - { - "value": "." - } - ], - [ - "ident-token", - "bg-warning", - 157124, - 157133, - { - "value": "bg-warning" - } - ], - [ - "{-token", - "{", - 157134, - 157134, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157135, - 157149, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157150, - 157150, - null - ], - [ - "number-token", - "1", - 157151, - 157151, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157152, - 157152, - null - ], - [ - "ident-token", - "background-color", - 157153, - 157168, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157169, - 157169, - null - ], - [ - "function-token", - "rgba(", - 157170, - 157174, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157175, - 157178, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-warning-rgb", - 157179, - 157194, - { - "value": "--bs-warning-rgb" - } - ], - [ - ")-token", - ")", - 157195, - 157195, - null - ], - [ - "comma-token", - ",", - 157196, - 157196, - null - ], - [ - "function-token", - "var(", - 157197, - 157200, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157201, - 157215, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157216, - 157216, - null - ], - [ - ")-token", - ")", - 157217, - 157217, - null - ], - [ - "delim-token", - "!", - 157218, - 157218, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157219, - 157227, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157228, - 157228, - null - ], - [ - "delim-token", - ".", - 157229, - 157229, - { - "value": "." - } - ], - [ - "ident-token", - "bg-danger", - 157230, - 157238, - { - "value": "bg-danger" - } - ], - [ - "{-token", - "{", - 157239, - 157239, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157240, - 157254, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157255, - 157255, - null - ], - [ - "number-token", - "1", - 157256, - 157256, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157257, - 157257, - null - ], - [ - "ident-token", - "background-color", - 157258, - 157273, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157274, - 157274, - null - ], - [ - "function-token", - "rgba(", - 157275, - 157279, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157280, - 157283, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-danger-rgb", - 157284, - 157298, - { - "value": "--bs-danger-rgb" - } - ], - [ - ")-token", - ")", - 157299, - 157299, - null - ], - [ - "comma-token", - ",", - 157300, - 157300, - null - ], - [ - "function-token", - "var(", - 157301, - 157304, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157305, - 157319, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157320, - 157320, - null - ], - [ - ")-token", - ")", - 157321, - 157321, - null - ], - [ - "delim-token", - "!", - 157322, - 157322, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157323, - 157331, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157332, - 157332, - null - ], - [ - "delim-token", - ".", - 157333, - 157333, - { - "value": "." - } - ], - [ - "ident-token", - "bg-light", - 157334, - 157341, - { - "value": "bg-light" - } - ], - [ - "{-token", - "{", - 157342, - 157342, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157343, - 157357, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157358, - 157358, - null - ], - [ - "number-token", - "1", - 157359, - 157359, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157360, - 157360, - null - ], - [ - "ident-token", - "background-color", - 157361, - 157376, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157377, - 157377, - null - ], - [ - "function-token", - "rgba(", - 157378, - 157382, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157383, - 157386, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-light-rgb", - 157387, - 157400, - { - "value": "--bs-light-rgb" - } - ], - [ - ")-token", - ")", - 157401, - 157401, - null - ], - [ - "comma-token", - ",", - 157402, - 157402, - null - ], - [ - "function-token", - "var(", - 157403, - 157406, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157407, - 157421, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157422, - 157422, - null - ], - [ - ")-token", - ")", - 157423, - 157423, - null - ], - [ - "delim-token", - "!", - 157424, - 157424, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157425, - 157433, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157434, - 157434, - null - ], - [ - "delim-token", - ".", - 157435, - 157435, - { - "value": "." - } - ], - [ - "ident-token", - "bg-dark", - 157436, - 157442, - { - "value": "bg-dark" - } - ], - [ - "{-token", - "{", - 157443, - 157443, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157444, - 157458, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157459, - 157459, - null - ], - [ - "number-token", - "1", - 157460, - 157460, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157461, - 157461, - null - ], - [ - "ident-token", - "background-color", - 157462, - 157477, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157478, - 157478, - null - ], - [ - "function-token", - "rgba(", - 157479, - 157483, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157484, - 157487, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-dark-rgb", - 157488, - 157500, - { - "value": "--bs-dark-rgb" - } - ], - [ - ")-token", - ")", - 157501, - 157501, - null - ], - [ - "comma-token", - ",", - 157502, - 157502, - null - ], - [ - "function-token", - "var(", - 157503, - 157506, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157507, - 157521, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157522, - 157522, - null - ], - [ - ")-token", - ")", - 157523, - 157523, - null - ], - [ - "delim-token", - "!", - 157524, - 157524, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157525, - 157533, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157534, - 157534, - null - ], - [ - "delim-token", - ".", - 157535, - 157535, - { - "value": "." - } - ], - [ - "ident-token", - "bg-black", - 157536, - 157543, - { - "value": "bg-black" - } - ], - [ - "{-token", - "{", - 157544, - 157544, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157545, - 157559, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157560, - 157560, - null - ], - [ - "number-token", - "1", - 157561, - 157561, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157562, - 157562, - null - ], - [ - "ident-token", - "background-color", - 157563, - 157578, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157579, - 157579, - null - ], - [ - "function-token", - "rgba(", - 157580, - 157584, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157585, - 157588, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-black-rgb", - 157589, - 157602, - { - "value": "--bs-black-rgb" - } - ], - [ - ")-token", - ")", - 157603, - 157603, - null - ], - [ - "comma-token", - ",", - 157604, - 157604, - null - ], - [ - "function-token", - "var(", - 157605, - 157608, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157609, - 157623, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157624, - 157624, - null - ], - [ - ")-token", - ")", - 157625, - 157625, - null - ], - [ - "delim-token", - "!", - 157626, - 157626, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157627, - 157635, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157636, - 157636, - null - ], - [ - "delim-token", - ".", - 157637, - 157637, - { - "value": "." - } - ], - [ - "ident-token", - "bg-white", - 157638, - 157645, - { - "value": "bg-white" - } - ], - [ - "{-token", - "{", - 157646, - 157646, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157647, - 157661, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157662, - 157662, - null - ], - [ - "number-token", - "1", - 157663, - 157663, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157664, - 157664, - null - ], - [ - "ident-token", - "background-color", - 157665, - 157680, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157681, - 157681, - null - ], - [ - "function-token", - "rgba(", - 157682, - 157686, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157687, - 157690, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-white-rgb", - 157691, - 157704, - { - "value": "--bs-white-rgb" - } - ], - [ - ")-token", - ")", - 157705, - 157705, - null - ], - [ - "comma-token", - ",", - 157706, - 157706, - null - ], - [ - "function-token", - "var(", - 157707, - 157710, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157711, - 157725, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157726, - 157726, - null - ], - [ - ")-token", - ")", - 157727, - 157727, - null - ], - [ - "delim-token", - "!", - 157728, - 157728, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157729, - 157737, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157738, - 157738, - null - ], - [ - "delim-token", - ".", - 157739, - 157739, - { - "value": "." - } - ], - [ - "ident-token", - "bg-body", - 157740, - 157746, - { - "value": "bg-body" - } - ], - [ - "{-token", - "{", - 157747, - 157747, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157748, - 157762, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157763, - 157763, - null - ], - [ - "number-token", - "1", - 157764, - 157764, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157765, - 157765, - null - ], - [ - "ident-token", - "background-color", - 157766, - 157781, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157782, - 157782, - null - ], - [ - "function-token", - "rgba(", - 157783, - 157787, - { - "value": "rgba" - } - ], - [ - "function-token", - "var(", - 157788, - 157791, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-body-bg-rgb", - 157792, - 157807, - { - "value": "--bs-body-bg-rgb" - } - ], - [ - ")-token", - ")", - 157808, - 157808, - null - ], - [ - "comma-token", - ",", - 157809, - 157809, - null - ], - [ - "function-token", - "var(", - 157810, - 157813, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-bg-opacity", - 157814, - 157828, - { - "value": "--bs-bg-opacity" - } - ], - [ - ")-token", - ")", - 157829, - 157829, - null - ], - [ - ")-token", - ")", - 157830, - 157830, - null - ], - [ - "delim-token", - "!", - 157831, - 157831, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157832, - 157840, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157841, - 157841, - null - ], - [ - "delim-token", - ".", - 157842, - 157842, - { - "value": "." - } - ], - [ - "ident-token", - "bg-transparent", - 157843, - 157856, - { - "value": "bg-transparent" - } - ], - [ - "{-token", - "{", - 157857, - 157857, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157858, - 157872, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157873, - 157873, - null - ], - [ - "number-token", - "1", - 157874, - 157874, - { - "value": 1, - "type": "integer" - } - ], - [ - "semicolon-token", - ";", - 157875, - 157875, - null - ], - [ - "ident-token", - "background-color", - 157876, - 157891, - { - "value": "background-color" - } - ], - [ - "colon-token", - ":", - 157892, - 157892, - null - ], - [ - "ident-token", - "transparent", - 157893, - 157903, - { - "value": "transparent" - } - ], - [ - "delim-token", - "!", - 157904, - 157904, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 157905, - 157913, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 157914, - 157914, - null - ], - [ - "delim-token", - ".", - 157915, - 157915, - { - "value": "." - } - ], - [ - "ident-token", - "bg-opacity-10", - 157916, - 157928, - { - "value": "bg-opacity-10" - } - ], - [ - "{-token", - "{", - 157929, - 157929, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157930, - 157944, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157945, - 157945, - null - ], - [ - "number-token", - "0.1", - 157946, - 157948, - { - "value": 0.1, - "type": "number" - } - ], - [ - "}-token", - "}", - 157949, - 157949, - null - ], - [ - "delim-token", - ".", - 157950, - 157950, - { - "value": "." - } - ], - [ - "ident-token", - "bg-opacity-25", - 157951, - 157963, - { - "value": "bg-opacity-25" - } - ], - [ - "{-token", - "{", - 157964, - 157964, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 157965, - 157979, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 157980, - 157980, - null - ], - [ - "number-token", - "0.25", - 157981, - 157984, - { - "value": 0.25, - "type": "number" - } - ], - [ - "}-token", - "}", - 157985, - 157985, - null - ], - [ - "delim-token", - ".", - 157986, - 157986, - { - "value": "." - } - ], - [ - "ident-token", - "bg-opacity-50", - 157987, - 157999, - { - "value": "bg-opacity-50" - } - ], - [ - "{-token", - "{", - 158000, - 158000, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 158001, - 158015, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 158016, - 158016, - null - ], - [ - "number-token", - "0.5", - 158017, - 158019, - { - "value": 0.5, - "type": "number" - } - ], - [ - "}-token", - "}", - 158020, - 158020, - null - ], - [ - "delim-token", - ".", - 158021, - 158021, - { - "value": "." - } - ], - [ - "ident-token", - "bg-opacity-75", - 158022, - 158034, - { - "value": "bg-opacity-75" - } - ], - [ - "{-token", - "{", - 158035, - 158035, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 158036, - 158050, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 158051, - 158051, - null - ], - [ - "number-token", - "0.75", - 158052, - 158055, - { - "value": 0.75, - "type": "number" - } - ], - [ - "}-token", - "}", - 158056, - 158056, - null - ], - [ - "delim-token", - ".", - 158057, - 158057, - { - "value": "." - } - ], - [ - "ident-token", - "bg-opacity-100", - 158058, - 158071, - { - "value": "bg-opacity-100" - } - ], - [ - "{-token", - "{", - 158072, - 158072, - null - ], - [ - "ident-token", - "--bs-bg-opacity", - 158073, - 158087, - { - "value": "--bs-bg-opacity" - } - ], - [ - "colon-token", - ":", - 158088, - 158088, - null - ], - [ - "number-token", - "1", - 158089, - 158089, - { - "value": 1, - "type": "integer" - } - ], - [ - "}-token", - "}", - 158090, - 158090, - null - ], - [ - "delim-token", - ".", - 158091, - 158091, - { - "value": "." - } - ], - [ - "ident-token", - "bg-gradient", - 158092, - 158102, - { - "value": "bg-gradient" - } - ], - [ - "{-token", - "{", - 158103, - 158103, - null - ], - [ - "ident-token", - "background-image", - 158104, - 158119, - { - "value": "background-image" - } - ], - [ - "colon-token", - ":", - 158120, - 158120, - null - ], - [ - "function-token", - "var(", - 158121, - 158124, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-gradient", - 158125, - 158137, - { - "value": "--bs-gradient" - } - ], - [ - ")-token", - ")", - 158138, - 158138, - null - ], - [ - "delim-token", - "!", - 158139, - 158139, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158140, - 158148, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158149, - 158149, - null - ], - [ - "delim-token", - ".", - 158150, - 158150, - { - "value": "." - } - ], - [ - "ident-token", - "user-select-all", - 158151, - 158165, - { - "value": "user-select-all" - } - ], - [ - "{-token", - "{", - 158166, - 158166, - null - ], - [ - "ident-token", - "-webkit-user-select", - 158167, - 158185, - { - "value": "-webkit-user-select" - } - ], - [ - "colon-token", - ":", - 158186, - 158186, - null - ], - [ - "ident-token", - "all", - 158187, - 158189, - { - "value": "all" - } - ], - [ - "delim-token", - "!", - 158190, - 158190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158191, - 158199, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158200, - 158200, - null - ], - [ - "ident-token", - "-moz-user-select", - 158201, - 158216, - { - "value": "-moz-user-select" - } - ], - [ - "colon-token", - ":", - 158217, - 158217, - null - ], - [ - "ident-token", - "all", - 158218, - 158220, - { - "value": "all" - } - ], - [ - "delim-token", - "!", - 158221, - 158221, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158222, - 158230, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158231, - 158231, - null - ], - [ - "ident-token", - "user-select", - 158232, - 158242, - { - "value": "user-select" - } - ], - [ - "colon-token", - ":", - 158243, - 158243, - null - ], - [ - "ident-token", - "all", - 158244, - 158246, - { - "value": "all" - } - ], - [ - "delim-token", - "!", - 158247, - 158247, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158248, - 158256, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158257, - 158257, - null - ], - [ - "delim-token", - ".", - 158258, - 158258, - { - "value": "." - } - ], - [ - "ident-token", - "user-select-auto", - 158259, - 158274, - { - "value": "user-select-auto" - } - ], - [ - "{-token", - "{", - 158275, - 158275, - null - ], - [ - "ident-token", - "-webkit-user-select", - 158276, - 158294, - { - "value": "-webkit-user-select" - } - ], - [ - "colon-token", - ":", - 158295, - 158295, - null - ], - [ - "ident-token", - "auto", - 158296, - 158299, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 158300, - 158300, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158301, - 158309, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158310, - 158310, - null - ], - [ - "ident-token", - "-moz-user-select", - 158311, - 158326, - { - "value": "-moz-user-select" - } - ], - [ - "colon-token", - ":", - 158327, - 158327, - null - ], - [ - "ident-token", - "auto", - 158328, - 158331, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 158332, - 158332, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158333, - 158341, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158342, - 158342, - null - ], - [ - "ident-token", - "user-select", - 158343, - 158353, - { - "value": "user-select" - } - ], - [ - "colon-token", - ":", - 158354, - 158354, - null - ], - [ - "ident-token", - "auto", - 158355, - 158358, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 158359, - 158359, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158360, - 158368, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158369, - 158369, - null - ], - [ - "delim-token", - ".", - 158370, - 158370, - { - "value": "." - } - ], - [ - "ident-token", - "user-select-none", - 158371, - 158386, - { - "value": "user-select-none" - } - ], - [ - "{-token", - "{", - 158387, - 158387, - null - ], - [ - "ident-token", - "-webkit-user-select", - 158388, - 158406, - { - "value": "-webkit-user-select" - } - ], - [ - "colon-token", - ":", - 158407, - 158407, - null - ], - [ - "ident-token", - "none", - 158408, - 158411, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 158412, - 158412, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158413, - 158421, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158422, - 158422, - null - ], - [ - "ident-token", - "-moz-user-select", - 158423, - 158438, - { - "value": "-moz-user-select" - } - ], - [ - "colon-token", - ":", - 158439, - 158439, - null - ], - [ - "ident-token", - "none", - 158440, - 158443, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 158444, - 158444, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158445, - 158453, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 158454, - 158454, - null - ], - [ - "ident-token", - "user-select", - 158455, - 158465, - { - "value": "user-select" - } - ], - [ - "colon-token", - ":", - 158466, - 158466, - null - ], - [ - "ident-token", - "none", - 158467, - 158470, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 158471, - 158471, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158472, - 158480, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158481, - 158481, - null - ], - [ - "delim-token", - ".", - 158482, - 158482, - { - "value": "." - } - ], - [ - "ident-token", - "pe-none", - 158483, - 158489, - { - "value": "pe-none" - } - ], - [ - "{-token", - "{", - 158490, - 158490, - null - ], - [ - "ident-token", - "pointer-events", - 158491, - 158504, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 158505, - 158505, - null - ], - [ - "ident-token", - "none", - 158506, - 158509, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 158510, - 158510, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158511, - 158519, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158520, - 158520, - null - ], - [ - "delim-token", - ".", - 158521, - 158521, - { - "value": "." - } - ], - [ - "ident-token", - "pe-auto", - 158522, - 158528, - { - "value": "pe-auto" - } - ], - [ - "{-token", - "{", - 158529, - 158529, - null - ], - [ - "ident-token", - "pointer-events", - 158530, - 158543, - { - "value": "pointer-events" - } - ], - [ - "colon-token", - ":", - 158544, - 158544, - null - ], - [ - "ident-token", - "auto", - 158545, - 158548, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 158549, - 158549, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158550, - 158558, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158559, - 158559, - null - ], - [ - "delim-token", - ".", - 158560, - 158560, - { - "value": "." - } - ], - [ - "ident-token", - "rounded", - 158561, - 158567, - { - "value": "rounded" - } - ], - [ - "{-token", - "{", - 158568, - 158568, - null - ], - [ - "ident-token", - "border-radius", - 158569, - 158581, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158582, - 158582, - null - ], - [ - "function-token", - "var(", - 158583, - 158586, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 158587, - 158604, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 158605, - 158605, - null - ], - [ - "delim-token", - "!", - 158606, - 158606, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158607, - 158615, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158616, - 158616, - null - ], - [ - "delim-token", - ".", - 158617, - 158617, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-0", - 158618, - 158626, - { - "value": "rounded-0" - } - ], - [ - "{-token", - "{", - 158627, - 158627, - null - ], - [ - "ident-token", - "border-radius", - 158628, - 158640, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158641, - 158641, - null - ], - [ - "number-token", - "0", - 158642, - 158642, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 158643, - 158643, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158644, - 158652, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158653, - 158653, - null - ], - [ - "delim-token", - ".", - 158654, - 158654, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-1", - 158655, - 158663, - { - "value": "rounded-1" - } - ], - [ - "{-token", - "{", - 158664, - 158664, - null - ], - [ - "ident-token", - "border-radius", - 158665, - 158677, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158678, - 158678, - null - ], - [ - "function-token", - "var(", - 158679, - 158682, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius-sm", - 158683, - 158703, - { - "value": "--bs-border-radius-sm" - } - ], - [ - ")-token", - ")", - 158704, - 158704, - null - ], - [ - "delim-token", - "!", - 158705, - 158705, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158706, - 158714, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158715, - 158715, - null - ], - [ - "delim-token", - ".", - 158716, - 158716, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-2", - 158717, - 158725, - { - "value": "rounded-2" - } - ], - [ - "{-token", - "{", - 158726, - 158726, - null - ], - [ - "ident-token", - "border-radius", - 158727, - 158739, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158740, - 158740, - null - ], - [ - "function-token", - "var(", - 158741, - 158744, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 158745, - 158762, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 158763, - 158763, - null - ], - [ - "delim-token", - "!", - 158764, - 158764, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158765, - 158773, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158774, - 158774, - null - ], - [ - "delim-token", - ".", - 158775, - 158775, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-3", - 158776, - 158784, - { - "value": "rounded-3" - } - ], - [ - "{-token", - "{", - 158785, - 158785, - null - ], - [ - "ident-token", - "border-radius", - 158786, - 158798, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158799, - 158799, - null - ], - [ - "function-token", - "var(", - 158800, - 158803, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius-lg", - 158804, - 158824, - { - "value": "--bs-border-radius-lg" - } - ], - [ - ")-token", - ")", - 158825, - 158825, - null - ], - [ - "delim-token", - "!", - 158826, - 158826, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158827, - 158835, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158836, - 158836, - null - ], - [ - "delim-token", - ".", - 158837, - 158837, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-4", - 158838, - 158846, - { - "value": "rounded-4" - } - ], - [ - "{-token", - "{", - 158847, - 158847, - null - ], - [ - "ident-token", - "border-radius", - 158848, - 158860, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158861, - 158861, - null - ], - [ - "function-token", - "var(", - 158862, - 158865, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius-xl", - 158866, - 158886, - { - "value": "--bs-border-radius-xl" - } - ], - [ - ")-token", - ")", - 158887, - 158887, - null - ], - [ - "delim-token", - "!", - 158888, - 158888, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158889, - 158897, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158898, - 158898, - null - ], - [ - "delim-token", - ".", - 158899, - 158899, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-5", - 158900, - 158908, - { - "value": "rounded-5" - } - ], - [ - "{-token", - "{", - 158909, - 158909, - null - ], - [ - "ident-token", - "border-radius", - 158910, - 158922, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158923, - 158923, - null - ], - [ - "function-token", - "var(", - 158924, - 158927, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius-2xl", - 158928, - 158949, - { - "value": "--bs-border-radius-2xl" - } - ], - [ - ")-token", - ")", - 158950, - 158950, - null - ], - [ - "delim-token", - "!", - 158951, - 158951, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158952, - 158960, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 158961, - 158961, - null - ], - [ - "delim-token", - ".", - 158962, - 158962, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-circle", - 158963, - 158976, - { - "value": "rounded-circle" - } - ], - [ - "{-token", - "{", - 158977, - 158977, - null - ], - [ - "ident-token", - "border-radius", - 158978, - 158990, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 158991, - 158991, - null - ], - [ - "percentage-token", - "50%", - 158992, - 158994, - { - "value": 50 - } - ], - [ - "delim-token", - "!", - 158995, - 158995, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 158996, - 159004, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159005, - 159005, - null - ], - [ - "delim-token", - ".", - 159006, - 159006, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-pill", - 159007, - 159018, - { - "value": "rounded-pill" - } - ], - [ - "{-token", - "{", - 159019, - 159019, - null - ], - [ - "ident-token", - "border-radius", - 159020, - 159032, - { - "value": "border-radius" - } - ], - [ - "colon-token", - ":", - 159033, - 159033, - null - ], - [ - "function-token", - "var(", - 159034, - 159037, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius-pill", - 159038, - 159060, - { - "value": "--bs-border-radius-pill" - } - ], - [ - ")-token", - ")", - 159061, - 159061, - null - ], - [ - "delim-token", - "!", - 159062, - 159062, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159063, - 159071, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159072, - 159072, - null - ], - [ - "delim-token", - ".", - 159073, - 159073, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-top", - 159074, - 159084, - { - "value": "rounded-top" - } - ], - [ - "{-token", - "{", - 159085, - 159085, - null - ], - [ - "ident-token", - "border-top-left-radius", - 159086, - 159107, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 159108, - 159108, - null - ], - [ - "function-token", - "var(", - 159109, - 159112, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159113, - 159130, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159131, - 159131, - null - ], - [ - "delim-token", - "!", - 159132, - 159132, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159133, - 159141, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 159142, - 159142, - null - ], - [ - "ident-token", - "border-top-right-radius", - 159143, - 159165, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 159166, - 159166, - null - ], - [ - "function-token", - "var(", - 159167, - 159170, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159171, - 159188, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159189, - 159189, - null - ], - [ - "delim-token", - "!", - 159190, - 159190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159191, - 159199, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159200, - 159200, - null - ], - [ - "delim-token", - ".", - 159201, - 159201, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-end", - 159202, - 159212, - { - "value": "rounded-end" - } - ], - [ - "{-token", - "{", - 159213, - 159213, - null - ], - [ - "ident-token", - "border-top-right-radius", - 159214, - 159236, - { - "value": "border-top-right-radius" - } - ], - [ - "colon-token", - ":", - 159237, - 159237, - null - ], - [ - "function-token", - "var(", - 159238, - 159241, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159242, - 159259, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159260, - 159260, - null - ], - [ - "delim-token", - "!", - 159261, - 159261, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159262, - 159270, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 159271, - 159271, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 159272, - 159297, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 159298, - 159298, - null - ], - [ - "function-token", - "var(", - 159299, - 159302, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159303, - 159320, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159321, - 159321, - null - ], - [ - "delim-token", - "!", - 159322, - 159322, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159323, - 159331, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159332, - 159332, - null - ], - [ - "delim-token", - ".", - 159333, - 159333, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-bottom", - 159334, - 159347, - { - "value": "rounded-bottom" - } - ], - [ - "{-token", - "{", - 159348, - 159348, - null - ], - [ - "ident-token", - "border-bottom-right-radius", - 159349, - 159374, - { - "value": "border-bottom-right-radius" - } - ], - [ - "colon-token", - ":", - 159375, - 159375, - null - ], - [ - "function-token", - "var(", - 159376, - 159379, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159380, - 159397, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159398, - 159398, - null - ], - [ - "delim-token", - "!", - 159399, - 159399, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159400, - 159408, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 159409, - 159409, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 159410, - 159434, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 159435, - 159435, - null - ], - [ - "function-token", - "var(", - 159436, - 159439, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159440, - 159457, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159458, - 159458, - null - ], - [ - "delim-token", - "!", - 159459, - 159459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159460, - 159468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159469, - 159469, - null - ], - [ - "delim-token", - ".", - 159470, - 159470, - { - "value": "." - } - ], - [ - "ident-token", - "rounded-start", - 159471, - 159483, - { - "value": "rounded-start" - } - ], - [ - "{-token", - "{", - 159484, - 159484, - null - ], - [ - "ident-token", - "border-bottom-left-radius", - 159485, - 159509, - { - "value": "border-bottom-left-radius" - } - ], - [ - "colon-token", - ":", - 159510, - 159510, - null - ], - [ - "function-token", - "var(", - 159511, - 159514, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159515, - 159532, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159533, - 159533, - null - ], - [ - "delim-token", - "!", - 159534, - 159534, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159535, - 159543, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 159544, - 159544, - null - ], - [ - "ident-token", - "border-top-left-radius", - 159545, - 159566, - { - "value": "border-top-left-radius" - } - ], - [ - "colon-token", - ":", - 159567, - 159567, - null - ], - [ - "function-token", - "var(", - 159568, - 159571, - { - "value": "var" - } - ], - [ - "ident-token", - "--bs-border-radius", - 159572, - 159589, - { - "value": "--bs-border-radius" - } - ], - [ - ")-token", - ")", - 159590, - 159590, - null - ], - [ - "delim-token", - "!", - 159591, - 159591, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159592, - 159600, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159601, - 159601, - null - ], - [ - "delim-token", - ".", - 159602, - 159602, - { - "value": "." - } - ], - [ - "ident-token", - "visible", - 159603, - 159609, - { - "value": "visible" - } - ], - [ - "{-token", - "{", - 159610, - 159610, - null - ], - [ - "ident-token", - "visibility", - 159611, - 159620, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 159621, - 159621, - null - ], - [ - "ident-token", - "visible", - 159622, - 159628, - { - "value": "visible" - } - ], - [ - "delim-token", - "!", - 159629, - 159629, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159630, - 159638, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159639, - 159639, - null - ], - [ - "delim-token", - ".", - 159640, - 159640, - { - "value": "." - } - ], - [ - "ident-token", - "invisible", - 159641, - 159649, - { - "value": "invisible" - } - ], - [ - "{-token", - "{", - 159650, - 159650, - null - ], - [ - "ident-token", - "visibility", - 159651, - 159660, - { - "value": "visibility" - } - ], - [ - "colon-token", - ":", - 159661, - 159661, - null - ], - [ - "ident-token", - "hidden", - 159662, - 159667, - { - "value": "hidden" - } - ], - [ - "delim-token", - "!", - 159668, - 159668, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159669, - 159677, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159678, - 159678, - null - ], - [ - "at-keyword-token", - "@media", - 159679, - 159684, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 159685, - 159685, - null - ], - [ - "(-token", - "(", - 159686, - 159686, - null - ], - [ - "ident-token", - "min-width", - 159687, - 159695, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 159696, - 159696, - null - ], - [ - "dimension-token", - "576px", - 159697, - 159701, - { - "value": 576, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 159702, - 159702, - null - ], - [ - "{-token", - "{", - 159703, - 159703, - null - ], - [ - "delim-token", - ".", - 159704, - 159704, - { - "value": "." - } - ], - [ - "ident-token", - "float-sm-start", - 159705, - 159718, - { - "value": "float-sm-start" - } - ], - [ - "{-token", - "{", - 159719, - 159719, - null - ], - [ - "ident-token", - "float", - 159720, - 159724, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 159725, - 159725, - null - ], - [ - "ident-token", - "left", - 159726, - 159729, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 159730, - 159730, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159731, - 159739, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159740, - 159740, - null - ], - [ - "delim-token", - ".", - 159741, - 159741, - { - "value": "." - } - ], - [ - "ident-token", - "float-sm-end", - 159742, - 159753, - { - "value": "float-sm-end" - } - ], - [ - "{-token", - "{", - 159754, - 159754, - null - ], - [ - "ident-token", - "float", - 159755, - 159759, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 159760, - 159760, - null - ], - [ - "ident-token", - "right", - 159761, - 159765, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 159766, - 159766, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159767, - 159775, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159776, - 159776, - null - ], - [ - "delim-token", - ".", - 159777, - 159777, - { - "value": "." - } - ], - [ - "ident-token", - "float-sm-none", - 159778, - 159790, - { - "value": "float-sm-none" - } - ], - [ - "{-token", - "{", - 159791, - 159791, - null - ], - [ - "ident-token", - "float", - 159792, - 159796, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 159797, - 159797, - null - ], - [ - "ident-token", - "none", - 159798, - 159801, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 159802, - 159802, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159803, - 159811, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159812, - 159812, - null - ], - [ - "delim-token", - ".", - 159813, - 159813, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-inline", - 159814, - 159824, - { - "value": "d-sm-inline" - } - ], - [ - "{-token", - "{", - 159825, - 159825, - null - ], - [ - "ident-token", - "display", - 159826, - 159832, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 159833, - 159833, - null - ], - [ - "ident-token", - "inline", - 159834, - 159839, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 159840, - 159840, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159841, - 159849, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159850, - 159850, - null - ], - [ - "delim-token", - ".", - 159851, - 159851, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-inline-block", - 159852, - 159868, - { - "value": "d-sm-inline-block" - } - ], - [ - "{-token", - "{", - 159869, - 159869, - null - ], - [ - "ident-token", - "display", - 159870, - 159876, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 159877, - 159877, - null - ], - [ - "ident-token", - "inline-block", - 159878, - 159889, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 159890, - 159890, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159891, - 159899, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159900, - 159900, - null - ], - [ - "delim-token", - ".", - 159901, - 159901, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-block", - 159902, - 159911, - { - "value": "d-sm-block" - } - ], - [ - "{-token", - "{", - 159912, - 159912, - null - ], - [ - "ident-token", - "display", - 159913, - 159919, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 159920, - 159920, - null - ], - [ - "ident-token", - "block", - 159921, - 159925, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 159926, - 159926, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159927, - 159935, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159936, - 159936, - null - ], - [ - "delim-token", - ".", - 159937, - 159937, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-grid", - 159938, - 159946, - { - "value": "d-sm-grid" - } - ], - [ - "{-token", - "{", - 159947, - 159947, - null - ], - [ - "ident-token", - "display", - 159948, - 159954, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 159955, - 159955, - null - ], - [ - "ident-token", - "grid", - 159956, - 159959, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 159960, - 159960, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159961, - 159969, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 159970, - 159970, - null - ], - [ - "delim-token", - ".", - 159971, - 159971, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-table", - 159972, - 159981, - { - "value": "d-sm-table" - } - ], - [ - "{-token", - "{", - 159982, - 159982, - null - ], - [ - "ident-token", - "display", - 159983, - 159989, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 159990, - 159990, - null - ], - [ - "ident-token", - "table", - 159991, - 159995, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 159996, - 159996, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 159997, - 160005, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160006, - 160006, - null - ], - [ - "delim-token", - ".", - 160007, - 160007, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-table-row", - 160008, - 160021, - { - "value": "d-sm-table-row" - } - ], - [ - "{-token", - "{", - 160022, - 160022, - null - ], - [ - "ident-token", - "display", - 160023, - 160029, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 160030, - 160030, - null - ], - [ - "ident-token", - "table-row", - 160031, - 160039, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 160040, - 160040, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160041, - 160049, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160050, - 160050, - null - ], - [ - "delim-token", - ".", - 160051, - 160051, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-table-cell", - 160052, - 160066, - { - "value": "d-sm-table-cell" - } - ], - [ - "{-token", - "{", - 160067, - 160067, - null - ], - [ - "ident-token", - "display", - 160068, - 160074, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 160075, - 160075, - null - ], - [ - "ident-token", - "table-cell", - 160076, - 160085, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 160086, - 160086, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160087, - 160095, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160096, - 160096, - null - ], - [ - "delim-token", - ".", - 160097, - 160097, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-flex", - 160098, - 160106, - { - "value": "d-sm-flex" - } - ], - [ - "{-token", - "{", - 160107, - 160107, - null - ], - [ - "ident-token", - "display", - 160108, - 160114, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 160115, - 160115, - null - ], - [ - "ident-token", - "flex", - 160116, - 160119, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 160120, - 160120, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160121, - 160129, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160130, - 160130, - null - ], - [ - "delim-token", - ".", - 160131, - 160131, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-inline-flex", - 160132, - 160147, - { - "value": "d-sm-inline-flex" - } - ], - [ - "{-token", - "{", - 160148, - 160148, - null - ], - [ - "ident-token", - "display", - 160149, - 160155, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 160156, - 160156, - null - ], - [ - "ident-token", - "inline-flex", - 160157, - 160167, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 160168, - 160168, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160169, - 160177, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160178, - 160178, - null - ], - [ - "delim-token", - ".", - 160179, - 160179, - { - "value": "." - } - ], - [ - "ident-token", - "d-sm-none", - 160180, - 160188, - { - "value": "d-sm-none" - } - ], - [ - "{-token", - "{", - 160189, - 160189, - null - ], - [ - "ident-token", - "display", - 160190, - 160196, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 160197, - 160197, - null - ], - [ - "ident-token", - "none", - 160198, - 160201, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 160202, - 160202, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160203, - 160211, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160212, - 160212, - null - ], - [ - "delim-token", - ".", - 160213, - 160213, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-fill", - 160214, - 160225, - { - "value": "flex-sm-fill" - } - ], - [ - "{-token", - "{", - 160226, - 160226, - null - ], - [ - "ident-token", - "flex", - 160227, - 160230, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 160231, - 160231, - null - ], - [ - "number-token", - "1", - 160232, - 160232, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 160233, - 160233, - null - ], - [ - "number-token", - "1", - 160234, - 160234, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 160235, - 160235, - null - ], - [ - "ident-token", - "auto", - 160236, - 160239, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 160240, - 160240, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160241, - 160249, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160250, - 160250, - null - ], - [ - "delim-token", - ".", - 160251, - 160251, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-row", - 160252, - 160262, - { - "value": "flex-sm-row" - } - ], - [ - "{-token", - "{", - 160263, - 160263, - null - ], - [ - "ident-token", - "flex-direction", - 160264, - 160277, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 160278, - 160278, - null - ], - [ - "ident-token", - "row", - 160279, - 160281, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 160282, - 160282, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160283, - 160291, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160292, - 160292, - null - ], - [ - "delim-token", - ".", - 160293, - 160293, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-column", - 160294, - 160307, - { - "value": "flex-sm-column" - } - ], - [ - "{-token", - "{", - 160308, - 160308, - null - ], - [ - "ident-token", - "flex-direction", - 160309, - 160322, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 160323, - 160323, - null - ], - [ - "ident-token", - "column", - 160324, - 160329, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 160330, - 160330, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160331, - 160339, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160340, - 160340, - null - ], - [ - "delim-token", - ".", - 160341, - 160341, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-row-reverse", - 160342, - 160360, - { - "value": "flex-sm-row-reverse" - } - ], - [ - "{-token", - "{", - 160361, - 160361, - null - ], - [ - "ident-token", - "flex-direction", - 160362, - 160375, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 160376, - 160376, - null - ], - [ - "ident-token", - "row-reverse", - 160377, - 160387, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 160388, - 160388, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160389, - 160397, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160398, - 160398, - null - ], - [ - "delim-token", - ".", - 160399, - 160399, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-column-reverse", - 160400, - 160421, - { - "value": "flex-sm-column-reverse" - } - ], - [ - "{-token", - "{", - 160422, - 160422, - null - ], - [ - "ident-token", - "flex-direction", - 160423, - 160436, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 160437, - 160437, - null - ], - [ - "ident-token", - "column-reverse", - 160438, - 160451, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 160452, - 160452, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160453, - 160461, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160462, - 160462, - null - ], - [ - "delim-token", - ".", - 160463, - 160463, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-grow-0", - 160464, - 160477, - { - "value": "flex-sm-grow-0" - } - ], - [ - "{-token", - "{", - 160478, - 160478, - null - ], - [ - "ident-token", - "flex-grow", - 160479, - 160487, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 160488, - 160488, - null - ], - [ - "number-token", - "0", - 160489, - 160489, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 160490, - 160490, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160491, - 160499, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160500, - 160500, - null - ], - [ - "delim-token", - ".", - 160501, - 160501, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-grow-1", - 160502, - 160515, - { - "value": "flex-sm-grow-1" - } - ], - [ - "{-token", - "{", - 160516, - 160516, - null - ], - [ - "ident-token", - "flex-grow", - 160517, - 160525, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 160526, - 160526, - null - ], - [ - "number-token", - "1", - 160527, - 160527, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 160528, - 160528, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160529, - 160537, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160538, - 160538, - null - ], - [ - "delim-token", - ".", - 160539, - 160539, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-shrink-0", - 160540, - 160555, - { - "value": "flex-sm-shrink-0" - } - ], - [ - "{-token", - "{", - 160556, - 160556, - null - ], - [ - "ident-token", - "flex-shrink", - 160557, - 160567, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 160568, - 160568, - null - ], - [ - "number-token", - "0", - 160569, - 160569, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 160570, - 160570, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160571, - 160579, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160580, - 160580, - null - ], - [ - "delim-token", - ".", - 160581, - 160581, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-shrink-1", - 160582, - 160597, - { - "value": "flex-sm-shrink-1" - } - ], - [ - "{-token", - "{", - 160598, - 160598, - null - ], - [ - "ident-token", - "flex-shrink", - 160599, - 160609, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 160610, - 160610, - null - ], - [ - "number-token", - "1", - 160611, - 160611, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 160612, - 160612, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160613, - 160621, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160622, - 160622, - null - ], - [ - "delim-token", - ".", - 160623, - 160623, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-wrap", - 160624, - 160635, - { - "value": "flex-sm-wrap" - } - ], - [ - "{-token", - "{", - 160636, - 160636, - null - ], - [ - "ident-token", - "flex-wrap", - 160637, - 160645, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 160646, - 160646, - null - ], - [ - "ident-token", - "wrap", - 160647, - 160650, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 160651, - 160651, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160652, - 160660, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160661, - 160661, - null - ], - [ - "delim-token", - ".", - 160662, - 160662, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-nowrap", - 160663, - 160676, - { - "value": "flex-sm-nowrap" - } - ], - [ - "{-token", - "{", - 160677, - 160677, - null - ], - [ - "ident-token", - "flex-wrap", - 160678, - 160686, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 160687, - 160687, - null - ], - [ - "ident-token", - "nowrap", - 160688, - 160693, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 160694, - 160694, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160695, - 160703, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160704, - 160704, - null - ], - [ - "delim-token", - ".", - 160705, - 160705, - { - "value": "." - } - ], - [ - "ident-token", - "flex-sm-wrap-reverse", - 160706, - 160725, - { - "value": "flex-sm-wrap-reverse" - } - ], - [ - "{-token", - "{", - 160726, - 160726, - null - ], - [ - "ident-token", - "flex-wrap", - 160727, - 160735, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 160736, - 160736, - null - ], - [ - "ident-token", - "wrap-reverse", - 160737, - 160748, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 160749, - 160749, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160750, - 160758, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160759, - 160759, - null - ], - [ - "delim-token", - ".", - 160760, - 160760, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-start", - 160761, - 160784, - { - "value": "justify-content-sm-start" - } - ], - [ - "{-token", - "{", - 160785, - 160785, - null - ], - [ - "ident-token", - "justify-content", - 160786, - 160800, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 160801, - 160801, - null - ], - [ - "ident-token", - "flex-start", - 160802, - 160811, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 160812, - 160812, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160813, - 160821, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160822, - 160822, - null - ], - [ - "delim-token", - ".", - 160823, - 160823, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-end", - 160824, - 160845, - { - "value": "justify-content-sm-end" - } - ], - [ - "{-token", - "{", - 160846, - 160846, - null - ], - [ - "ident-token", - "justify-content", - 160847, - 160861, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 160862, - 160862, - null - ], - [ - "ident-token", - "flex-end", - 160863, - 160870, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 160871, - 160871, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160872, - 160880, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160881, - 160881, - null - ], - [ - "delim-token", - ".", - 160882, - 160882, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-center", - 160883, - 160907, - { - "value": "justify-content-sm-center" - } - ], - [ - "{-token", - "{", - 160908, - 160908, - null - ], - [ - "ident-token", - "justify-content", - 160909, - 160923, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 160924, - 160924, - null - ], - [ - "ident-token", - "center", - 160925, - 160930, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 160931, - 160931, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 160932, - 160940, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 160941, - 160941, - null - ], - [ - "delim-token", - ".", - 160942, - 160942, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-between", - 160943, - 160968, - { - "value": "justify-content-sm-between" - } - ], - [ - "{-token", - "{", - 160969, - 160969, - null - ], - [ - "ident-token", - "justify-content", - 160970, - 160984, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 160985, - 160985, - null - ], - [ - "ident-token", - "space-between", - 160986, - 160998, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 160999, - 160999, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161000, - 161008, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161009, - 161009, - null - ], - [ - "delim-token", - ".", - 161010, - 161010, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-around", - 161011, - 161035, - { - "value": "justify-content-sm-around" - } - ], - [ - "{-token", - "{", - 161036, - 161036, - null - ], - [ - "ident-token", - "justify-content", - 161037, - 161051, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 161052, - 161052, - null - ], - [ - "ident-token", - "space-around", - 161053, - 161064, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 161065, - 161065, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161066, - 161074, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161075, - 161075, - null - ], - [ - "delim-token", - ".", - 161076, - 161076, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-sm-evenly", - 161077, - 161101, - { - "value": "justify-content-sm-evenly" - } - ], - [ - "{-token", - "{", - 161102, - 161102, - null - ], - [ - "ident-token", - "justify-content", - 161103, - 161117, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 161118, - 161118, - null - ], - [ - "ident-token", - "space-evenly", - 161119, - 161130, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 161131, - 161131, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161132, - 161140, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161141, - 161141, - null - ], - [ - "delim-token", - ".", - 161142, - 161142, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-sm-start", - 161143, - 161162, - { - "value": "align-items-sm-start" - } - ], - [ - "{-token", - "{", - 161163, - 161163, - null - ], - [ - "ident-token", - "align-items", - 161164, - 161174, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 161175, - 161175, - null - ], - [ - "ident-token", - "flex-start", - 161176, - 161185, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 161186, - 161186, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161187, - 161195, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161196, - 161196, - null - ], - [ - "delim-token", - ".", - 161197, - 161197, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-sm-end", - 161198, - 161215, - { - "value": "align-items-sm-end" - } - ], - [ - "{-token", - "{", - 161216, - 161216, - null - ], - [ - "ident-token", - "align-items", - 161217, - 161227, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 161228, - 161228, - null - ], - [ - "ident-token", - "flex-end", - 161229, - 161236, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 161237, - 161237, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161238, - 161246, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161247, - 161247, - null - ], - [ - "delim-token", - ".", - 161248, - 161248, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-sm-center", - 161249, - 161269, - { - "value": "align-items-sm-center" - } - ], - [ - "{-token", - "{", - 161270, - 161270, - null - ], - [ - "ident-token", - "align-items", - 161271, - 161281, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 161282, - 161282, - null - ], - [ - "ident-token", - "center", - 161283, - 161288, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 161289, - 161289, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161290, - 161298, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161299, - 161299, - null - ], - [ - "delim-token", - ".", - 161300, - 161300, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-sm-baseline", - 161301, - 161323, - { - "value": "align-items-sm-baseline" - } - ], - [ - "{-token", - "{", - 161324, - 161324, - null - ], - [ - "ident-token", - "align-items", - 161325, - 161335, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 161336, - 161336, - null - ], - [ - "ident-token", - "baseline", - 161337, - 161344, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 161345, - 161345, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161346, - 161354, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161355, - 161355, - null - ], - [ - "delim-token", - ".", - 161356, - 161356, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-sm-stretch", - 161357, - 161378, - { - "value": "align-items-sm-stretch" - } - ], - [ - "{-token", - "{", - 161379, - 161379, - null - ], - [ - "ident-token", - "align-items", - 161380, - 161390, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 161391, - 161391, - null - ], - [ - "ident-token", - "stretch", - 161392, - 161398, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 161399, - 161399, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161400, - 161408, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161409, - 161409, - null - ], - [ - "delim-token", - ".", - 161410, - 161410, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-start", - 161411, - 161432, - { - "value": "align-content-sm-start" - } - ], - [ - "{-token", - "{", - 161433, - 161433, - null - ], - [ - "ident-token", - "align-content", - 161434, - 161446, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161447, - 161447, - null - ], - [ - "ident-token", - "flex-start", - 161448, - 161457, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 161458, - 161458, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161459, - 161467, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161468, - 161468, - null - ], - [ - "delim-token", - ".", - 161469, - 161469, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-end", - 161470, - 161489, - { - "value": "align-content-sm-end" - } - ], - [ - "{-token", - "{", - 161490, - 161490, - null - ], - [ - "ident-token", - "align-content", - 161491, - 161503, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161504, - 161504, - null - ], - [ - "ident-token", - "flex-end", - 161505, - 161512, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 161513, - 161513, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161514, - 161522, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161523, - 161523, - null - ], - [ - "delim-token", - ".", - 161524, - 161524, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-center", - 161525, - 161547, - { - "value": "align-content-sm-center" - } - ], - [ - "{-token", - "{", - 161548, - 161548, - null - ], - [ - "ident-token", - "align-content", - 161549, - 161561, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161562, - 161562, - null - ], - [ - "ident-token", - "center", - 161563, - 161568, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 161569, - 161569, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161570, - 161578, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161579, - 161579, - null - ], - [ - "delim-token", - ".", - 161580, - 161580, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-between", - 161581, - 161604, - { - "value": "align-content-sm-between" - } - ], - [ - "{-token", - "{", - 161605, - 161605, - null - ], - [ - "ident-token", - "align-content", - 161606, - 161618, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161619, - 161619, - null - ], - [ - "ident-token", - "space-between", - 161620, - 161632, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 161633, - 161633, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161634, - 161642, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161643, - 161643, - null - ], - [ - "delim-token", - ".", - 161644, - 161644, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-around", - 161645, - 161667, - { - "value": "align-content-sm-around" - } - ], - [ - "{-token", - "{", - 161668, - 161668, - null - ], - [ - "ident-token", - "align-content", - 161669, - 161681, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161682, - 161682, - null - ], - [ - "ident-token", - "space-around", - 161683, - 161694, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 161695, - 161695, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161696, - 161704, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161705, - 161705, - null - ], - [ - "delim-token", - ".", - 161706, - 161706, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-sm-stretch", - 161707, - 161730, - { - "value": "align-content-sm-stretch" - } - ], - [ - "{-token", - "{", - 161731, - 161731, - null - ], - [ - "ident-token", - "align-content", - 161732, - 161744, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 161745, - 161745, - null - ], - [ - "ident-token", - "stretch", - 161746, - 161752, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 161753, - 161753, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161754, - 161762, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161763, - 161763, - null - ], - [ - "delim-token", - ".", - 161764, - 161764, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-auto", - 161765, - 161782, - { - "value": "align-self-sm-auto" - } - ], - [ - "{-token", - "{", - 161783, - 161783, - null - ], - [ - "ident-token", - "align-self", - 161784, - 161793, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 161794, - 161794, - null - ], - [ - "ident-token", - "auto", - 161795, - 161798, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 161799, - 161799, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161800, - 161808, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161809, - 161809, - null - ], - [ - "delim-token", - ".", - 161810, - 161810, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-start", - 161811, - 161829, - { - "value": "align-self-sm-start" - } - ], - [ - "{-token", - "{", - 161830, - 161830, - null - ], - [ - "ident-token", - "align-self", - 161831, - 161840, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 161841, - 161841, - null - ], - [ - "ident-token", - "flex-start", - 161842, - 161851, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 161852, - 161852, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161853, - 161861, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161862, - 161862, - null - ], - [ - "delim-token", - ".", - 161863, - 161863, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-end", - 161864, - 161880, - { - "value": "align-self-sm-end" - } - ], - [ - "{-token", - "{", - 161881, - 161881, - null - ], - [ - "ident-token", - "align-self", - 161882, - 161891, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 161892, - 161892, - null - ], - [ - "ident-token", - "flex-end", - 161893, - 161900, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 161901, - 161901, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161902, - 161910, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161911, - 161911, - null - ], - [ - "delim-token", - ".", - 161912, - 161912, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-center", - 161913, - 161932, - { - "value": "align-self-sm-center" - } - ], - [ - "{-token", - "{", - 161933, - 161933, - null - ], - [ - "ident-token", - "align-self", - 161934, - 161943, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 161944, - 161944, - null - ], - [ - "ident-token", - "center", - 161945, - 161950, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 161951, - 161951, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 161952, - 161960, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 161961, - 161961, - null - ], - [ - "delim-token", - ".", - 161962, - 161962, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-baseline", - 161963, - 161984, - { - "value": "align-self-sm-baseline" - } - ], - [ - "{-token", - "{", - 161985, - 161985, - null - ], - [ - "ident-token", - "align-self", - 161986, - 161995, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 161996, - 161996, - null - ], - [ - "ident-token", - "baseline", - 161997, - 162004, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 162005, - 162005, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162006, - 162014, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162015, - 162015, - null - ], - [ - "delim-token", - ".", - 162016, - 162016, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-sm-stretch", - 162017, - 162037, - { - "value": "align-self-sm-stretch" - } - ], - [ - "{-token", - "{", - 162038, - 162038, - null - ], - [ - "ident-token", - "align-self", - 162039, - 162048, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 162049, - 162049, - null - ], - [ - "ident-token", - "stretch", - 162050, - 162056, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 162057, - 162057, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162058, - 162066, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162067, - 162067, - null - ], - [ - "delim-token", - ".", - 162068, - 162068, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-first", - 162069, - 162082, - { - "value": "order-sm-first" - } - ], - [ - "{-token", - "{", - 162083, - 162083, - null - ], - [ - "ident-token", - "order", - 162084, - 162088, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162089, - 162089, - null - ], - [ - "number-token", - "-1", - 162090, - 162091, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162092, - 162092, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162093, - 162101, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162102, - 162102, - null - ], - [ - "delim-token", - ".", - 162103, - 162103, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-0", - 162104, - 162113, - { - "value": "order-sm-0" - } - ], - [ - "{-token", - "{", - 162114, - 162114, - null - ], - [ - "ident-token", - "order", - 162115, - 162119, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162120, - 162120, - null - ], - [ - "number-token", - "0", - 162121, - 162121, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162122, - 162122, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162123, - 162131, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162132, - 162132, - null - ], - [ - "delim-token", - ".", - 162133, - 162133, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-1", - 162134, - 162143, - { - "value": "order-sm-1" - } - ], - [ - "{-token", - "{", - 162144, - 162144, - null - ], - [ - "ident-token", - "order", - 162145, - 162149, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162150, - 162150, - null - ], - [ - "number-token", - "1", - 162151, - 162151, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162152, - 162152, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162153, - 162161, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162162, - 162162, - null - ], - [ - "delim-token", - ".", - 162163, - 162163, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-2", - 162164, - 162173, - { - "value": "order-sm-2" - } - ], - [ - "{-token", - "{", - 162174, - 162174, - null - ], - [ - "ident-token", - "order", - 162175, - 162179, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162180, - 162180, - null - ], - [ - "number-token", - "2", - 162181, - 162181, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162182, - 162182, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162183, - 162191, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162192, - 162192, - null - ], - [ - "delim-token", - ".", - 162193, - 162193, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-3", - 162194, - 162203, - { - "value": "order-sm-3" - } - ], - [ - "{-token", - "{", - 162204, - 162204, - null - ], - [ - "ident-token", - "order", - 162205, - 162209, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162210, - 162210, - null - ], - [ - "number-token", - "3", - 162211, - 162211, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162212, - 162212, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162213, - 162221, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162222, - 162222, - null - ], - [ - "delim-token", - ".", - 162223, - 162223, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-4", - 162224, - 162233, - { - "value": "order-sm-4" - } - ], - [ - "{-token", - "{", - 162234, - 162234, - null - ], - [ - "ident-token", - "order", - 162235, - 162239, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162240, - 162240, - null - ], - [ - "number-token", - "4", - 162241, - 162241, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162242, - 162242, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162243, - 162251, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162252, - 162252, - null - ], - [ - "delim-token", - ".", - 162253, - 162253, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-5", - 162254, - 162263, - { - "value": "order-sm-5" - } - ], - [ - "{-token", - "{", - 162264, - 162264, - null - ], - [ - "ident-token", - "order", - 162265, - 162269, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162270, - 162270, - null - ], - [ - "number-token", - "5", - 162271, - 162271, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162272, - 162272, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162273, - 162281, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162282, - 162282, - null - ], - [ - "delim-token", - ".", - 162283, - 162283, - { - "value": "." - } - ], - [ - "ident-token", - "order-sm-last", - 162284, - 162296, - { - "value": "order-sm-last" - } - ], - [ - "{-token", - "{", - 162297, - 162297, - null - ], - [ - "ident-token", - "order", - 162298, - 162302, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 162303, - 162303, - null - ], - [ - "number-token", - "6", - 162304, - 162304, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162305, - 162305, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162306, - 162314, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162315, - 162315, - null - ], - [ - "delim-token", - ".", - 162316, - 162316, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-0", - 162317, - 162322, - { - "value": "m-sm-0" - } - ], - [ - "{-token", - "{", - 162323, - 162323, - null - ], - [ - "ident-token", - "margin", - 162324, - 162329, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162330, - 162330, - null - ], - [ - "number-token", - "0", - 162331, - 162331, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162332, - 162332, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162333, - 162341, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162342, - 162342, - null - ], - [ - "delim-token", - ".", - 162343, - 162343, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-1", - 162344, - 162349, - { - "value": "m-sm-1" - } - ], - [ - "{-token", - "{", - 162350, - 162350, - null - ], - [ - "ident-token", - "margin", - 162351, - 162356, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162357, - 162357, - null - ], - [ - "dimension-token", - ".25rem", - 162358, - 162363, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162364, - 162364, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162365, - 162373, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162374, - 162374, - null - ], - [ - "delim-token", - ".", - 162375, - 162375, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-2", - 162376, - 162381, - { - "value": "m-sm-2" - } - ], - [ - "{-token", - "{", - 162382, - 162382, - null - ], - [ - "ident-token", - "margin", - 162383, - 162388, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162389, - 162389, - null - ], - [ - "dimension-token", - ".5rem", - 162390, - 162394, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162395, - 162395, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162396, - 162404, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162405, - 162405, - null - ], - [ - "delim-token", - ".", - 162406, - 162406, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-3", - 162407, - 162412, - { - "value": "m-sm-3" - } - ], - [ - "{-token", - "{", - 162413, - 162413, - null - ], - [ - "ident-token", - "margin", - 162414, - 162419, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162420, - 162420, - null - ], - [ - "dimension-token", - "1rem", - 162421, - 162424, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162425, - 162425, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162426, - 162434, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162435, - 162435, - null - ], - [ - "delim-token", - ".", - 162436, - 162436, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-4", - 162437, - 162442, - { - "value": "m-sm-4" - } - ], - [ - "{-token", - "{", - 162443, - 162443, - null - ], - [ - "ident-token", - "margin", - 162444, - 162449, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162450, - 162450, - null - ], - [ - "dimension-token", - "1.5rem", - 162451, - 162456, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162457, - 162457, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162458, - 162466, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162467, - 162467, - null - ], - [ - "delim-token", - ".", - 162468, - 162468, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-5", - 162469, - 162474, - { - "value": "m-sm-5" - } - ], - [ - "{-token", - "{", - 162475, - 162475, - null - ], - [ - "ident-token", - "margin", - 162476, - 162481, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162482, - 162482, - null - ], - [ - "dimension-token", - "3rem", - 162483, - 162486, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162487, - 162487, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162488, - 162496, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162497, - 162497, - null - ], - [ - "delim-token", - ".", - 162498, - 162498, - { - "value": "." - } - ], - [ - "ident-token", - "m-sm-auto", - 162499, - 162507, - { - "value": "m-sm-auto" - } - ], - [ - "{-token", - "{", - 162508, - 162508, - null - ], - [ - "ident-token", - "margin", - 162509, - 162514, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 162515, - 162515, - null - ], - [ - "ident-token", - "auto", - 162516, - 162519, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 162520, - 162520, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162521, - 162529, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162530, - 162530, - null - ], - [ - "delim-token", - ".", - 162531, - 162531, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-0", - 162532, - 162538, - { - "value": "mx-sm-0" - } - ], - [ - "{-token", - "{", - 162539, - 162539, - null - ], - [ - "ident-token", - "margin-right", - 162540, - 162551, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162552, - 162552, - null - ], - [ - "number-token", - "0", - 162553, - 162553, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162554, - 162554, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162555, - 162563, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162564, - 162564, - null - ], - [ - "ident-token", - "margin-left", - 162565, - 162575, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162576, - 162576, - null - ], - [ - "number-token", - "0", - 162577, - 162577, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 162578, - 162578, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162579, - 162587, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162588, - 162588, - null - ], - [ - "delim-token", - ".", - 162589, - 162589, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-1", - 162590, - 162596, - { - "value": "mx-sm-1" - } - ], - [ - "{-token", - "{", - 162597, - 162597, - null - ], - [ - "ident-token", - "margin-right", - 162598, - 162609, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162610, - 162610, - null - ], - [ - "dimension-token", - ".25rem", - 162611, - 162616, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162617, - 162617, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162618, - 162626, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162627, - 162627, - null - ], - [ - "ident-token", - "margin-left", - 162628, - 162638, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162639, - 162639, - null - ], - [ - "dimension-token", - ".25rem", - 162640, - 162645, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162646, - 162646, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162647, - 162655, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162656, - 162656, - null - ], - [ - "delim-token", - ".", - 162657, - 162657, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-2", - 162658, - 162664, - { - "value": "mx-sm-2" - } - ], - [ - "{-token", - "{", - 162665, - 162665, - null - ], - [ - "ident-token", - "margin-right", - 162666, - 162677, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162678, - 162678, - null - ], - [ - "dimension-token", - ".5rem", - 162679, - 162683, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162684, - 162684, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162685, - 162693, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162694, - 162694, - null - ], - [ - "ident-token", - "margin-left", - 162695, - 162705, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162706, - 162706, - null - ], - [ - "dimension-token", - ".5rem", - 162707, - 162711, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162712, - 162712, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162713, - 162721, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162722, - 162722, - null - ], - [ - "delim-token", - ".", - 162723, - 162723, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-3", - 162724, - 162730, - { - "value": "mx-sm-3" - } - ], - [ - "{-token", - "{", - 162731, - 162731, - null - ], - [ - "ident-token", - "margin-right", - 162732, - 162743, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162744, - 162744, - null - ], - [ - "dimension-token", - "1rem", - 162745, - 162748, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162749, - 162749, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162750, - 162758, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162759, - 162759, - null - ], - [ - "ident-token", - "margin-left", - 162760, - 162770, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162771, - 162771, - null - ], - [ - "dimension-token", - "1rem", - 162772, - 162775, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162776, - 162776, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162777, - 162785, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162786, - 162786, - null - ], - [ - "delim-token", - ".", - 162787, - 162787, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-4", - 162788, - 162794, - { - "value": "mx-sm-4" - } - ], - [ - "{-token", - "{", - 162795, - 162795, - null - ], - [ - "ident-token", - "margin-right", - 162796, - 162807, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162808, - 162808, - null - ], - [ - "dimension-token", - "1.5rem", - 162809, - 162814, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162815, - 162815, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162816, - 162824, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162825, - 162825, - null - ], - [ - "ident-token", - "margin-left", - 162826, - 162836, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162837, - 162837, - null - ], - [ - "dimension-token", - "1.5rem", - 162838, - 162843, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162844, - 162844, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162845, - 162853, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162854, - 162854, - null - ], - [ - "delim-token", - ".", - 162855, - 162855, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-5", - 162856, - 162862, - { - "value": "mx-sm-5" - } - ], - [ - "{-token", - "{", - 162863, - 162863, - null - ], - [ - "ident-token", - "margin-right", - 162864, - 162875, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162876, - 162876, - null - ], - [ - "dimension-token", - "3rem", - 162877, - 162880, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162881, - 162881, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162882, - 162890, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162891, - 162891, - null - ], - [ - "ident-token", - "margin-left", - 162892, - 162902, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162903, - 162903, - null - ], - [ - "dimension-token", - "3rem", - 162904, - 162907, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 162908, - 162908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162909, - 162917, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162918, - 162918, - null - ], - [ - "delim-token", - ".", - 162919, - 162919, - { - "value": "." - } - ], - [ - "ident-token", - "mx-sm-auto", - 162920, - 162929, - { - "value": "mx-sm-auto" - } - ], - [ - "{-token", - "{", - 162930, - 162930, - null - ], - [ - "ident-token", - "margin-right", - 162931, - 162942, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 162943, - 162943, - null - ], - [ - "ident-token", - "auto", - 162944, - 162947, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 162948, - 162948, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162949, - 162957, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 162958, - 162958, - null - ], - [ - "ident-token", - "margin-left", - 162959, - 162969, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 162970, - 162970, - null - ], - [ - "ident-token", - "auto", - 162971, - 162974, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 162975, - 162975, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 162976, - 162984, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 162985, - 162985, - null - ], - [ - "delim-token", - ".", - 162986, - 162986, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-0", - 162987, - 162993, - { - "value": "my-sm-0" - } - ], - [ - "{-token", - "{", - 162994, - 162994, - null - ], - [ - "ident-token", - "margin-top", - 162995, - 163004, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163005, - 163005, - null - ], - [ - "number-token", - "0", - 163006, - 163006, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 163007, - 163007, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163008, - 163016, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163017, - 163017, - null - ], - [ - "ident-token", - "margin-bottom", - 163018, - 163030, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163031, - 163031, - null - ], - [ - "number-token", - "0", - 163032, - 163032, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 163033, - 163033, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163034, - 163042, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163043, - 163043, - null - ], - [ - "delim-token", - ".", - 163044, - 163044, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-1", - 163045, - 163051, - { - "value": "my-sm-1" - } - ], - [ - "{-token", - "{", - 163052, - 163052, - null - ], - [ - "ident-token", - "margin-top", - 163053, - 163062, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163063, - 163063, - null - ], - [ - "dimension-token", - ".25rem", - 163064, - 163069, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163070, - 163070, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163071, - 163079, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163080, - 163080, - null - ], - [ - "ident-token", - "margin-bottom", - 163081, - 163093, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163094, - 163094, - null - ], - [ - "dimension-token", - ".25rem", - 163095, - 163100, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163101, - 163101, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163102, - 163110, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163111, - 163111, - null - ], - [ - "delim-token", - ".", - 163112, - 163112, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-2", - 163113, - 163119, - { - "value": "my-sm-2" - } - ], - [ - "{-token", - "{", - 163120, - 163120, - null - ], - [ - "ident-token", - "margin-top", - 163121, - 163130, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163131, - 163131, - null - ], - [ - "dimension-token", - ".5rem", - 163132, - 163136, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163137, - 163137, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163138, - 163146, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163147, - 163147, - null - ], - [ - "ident-token", - "margin-bottom", - 163148, - 163160, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163161, - 163161, - null - ], - [ - "dimension-token", - ".5rem", - 163162, - 163166, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163167, - 163167, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163168, - 163176, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163177, - 163177, - null - ], - [ - "delim-token", - ".", - 163178, - 163178, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-3", - 163179, - 163185, - { - "value": "my-sm-3" - } - ], - [ - "{-token", - "{", - 163186, - 163186, - null - ], - [ - "ident-token", - "margin-top", - 163187, - 163196, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163197, - 163197, - null - ], - [ - "dimension-token", - "1rem", - 163198, - 163201, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163202, - 163202, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163203, - 163211, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163212, - 163212, - null - ], - [ - "ident-token", - "margin-bottom", - 163213, - 163225, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163226, - 163226, - null - ], - [ - "dimension-token", - "1rem", - 163227, - 163230, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163231, - 163231, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163232, - 163240, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163241, - 163241, - null - ], - [ - "delim-token", - ".", - 163242, - 163242, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-4", - 163243, - 163249, - { - "value": "my-sm-4" - } - ], - [ - "{-token", - "{", - 163250, - 163250, - null - ], - [ - "ident-token", - "margin-top", - 163251, - 163260, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163261, - 163261, - null - ], - [ - "dimension-token", - "1.5rem", - 163262, - 163267, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163268, - 163268, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163269, - 163277, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163278, - 163278, - null - ], - [ - "ident-token", - "margin-bottom", - 163279, - 163291, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163292, - 163292, - null - ], - [ - "dimension-token", - "1.5rem", - 163293, - 163298, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163299, - 163299, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163300, - 163308, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163309, - 163309, - null - ], - [ - "delim-token", - ".", - 163310, - 163310, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-5", - 163311, - 163317, - { - "value": "my-sm-5" - } - ], - [ - "{-token", - "{", - 163318, - 163318, - null - ], - [ - "ident-token", - "margin-top", - 163319, - 163328, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163329, - 163329, - null - ], - [ - "dimension-token", - "3rem", - 163330, - 163333, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163334, - 163334, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163335, - 163343, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163344, - 163344, - null - ], - [ - "ident-token", - "margin-bottom", - 163345, - 163357, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163358, - 163358, - null - ], - [ - "dimension-token", - "3rem", - 163359, - 163362, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163363, - 163363, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163364, - 163372, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163373, - 163373, - null - ], - [ - "delim-token", - ".", - 163374, - 163374, - { - "value": "." - } - ], - [ - "ident-token", - "my-sm-auto", - 163375, - 163384, - { - "value": "my-sm-auto" - } - ], - [ - "{-token", - "{", - 163385, - 163385, - null - ], - [ - "ident-token", - "margin-top", - 163386, - 163395, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163396, - 163396, - null - ], - [ - "ident-token", - "auto", - 163397, - 163400, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 163401, - 163401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163402, - 163410, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 163411, - 163411, - null - ], - [ - "ident-token", - "margin-bottom", - 163412, - 163424, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163425, - 163425, - null - ], - [ - "ident-token", - "auto", - 163426, - 163429, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 163430, - 163430, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163431, - 163439, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163440, - 163440, - null - ], - [ - "delim-token", - ".", - 163441, - 163441, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-0", - 163442, - 163448, - { - "value": "mt-sm-0" - } - ], - [ - "{-token", - "{", - 163449, - 163449, - null - ], - [ - "ident-token", - "margin-top", - 163450, - 163459, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163460, - 163460, - null - ], - [ - "number-token", - "0", - 163461, - 163461, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 163462, - 163462, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163463, - 163471, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163472, - 163472, - null - ], - [ - "delim-token", - ".", - 163473, - 163473, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-1", - 163474, - 163480, - { - "value": "mt-sm-1" - } - ], - [ - "{-token", - "{", - 163481, - 163481, - null - ], - [ - "ident-token", - "margin-top", - 163482, - 163491, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163492, - 163492, - null - ], - [ - "dimension-token", - ".25rem", - 163493, - 163498, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163499, - 163499, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163500, - 163508, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163509, - 163509, - null - ], - [ - "delim-token", - ".", - 163510, - 163510, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-2", - 163511, - 163517, - { - "value": "mt-sm-2" - } - ], - [ - "{-token", - "{", - 163518, - 163518, - null - ], - [ - "ident-token", - "margin-top", - 163519, - 163528, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163529, - 163529, - null - ], - [ - "dimension-token", - ".5rem", - 163530, - 163534, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163535, - 163535, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163536, - 163544, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163545, - 163545, - null - ], - [ - "delim-token", - ".", - 163546, - 163546, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-3", - 163547, - 163553, - { - "value": "mt-sm-3" - } - ], - [ - "{-token", - "{", - 163554, - 163554, - null - ], - [ - "ident-token", - "margin-top", - 163555, - 163564, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163565, - 163565, - null - ], - [ - "dimension-token", - "1rem", - 163566, - 163569, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163570, - 163570, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163571, - 163579, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163580, - 163580, - null - ], - [ - "delim-token", - ".", - 163581, - 163581, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-4", - 163582, - 163588, - { - "value": "mt-sm-4" - } - ], - [ - "{-token", - "{", - 163589, - 163589, - null - ], - [ - "ident-token", - "margin-top", - 163590, - 163599, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163600, - 163600, - null - ], - [ - "dimension-token", - "1.5rem", - 163601, - 163606, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163607, - 163607, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163608, - 163616, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163617, - 163617, - null - ], - [ - "delim-token", - ".", - 163618, - 163618, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-5", - 163619, - 163625, - { - "value": "mt-sm-5" - } - ], - [ - "{-token", - "{", - 163626, - 163626, - null - ], - [ - "ident-token", - "margin-top", - 163627, - 163636, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163637, - 163637, - null - ], - [ - "dimension-token", - "3rem", - 163638, - 163641, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163642, - 163642, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163643, - 163651, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163652, - 163652, - null - ], - [ - "delim-token", - ".", - 163653, - 163653, - { - "value": "." - } - ], - [ - "ident-token", - "mt-sm-auto", - 163654, - 163663, - { - "value": "mt-sm-auto" - } - ], - [ - "{-token", - "{", - 163664, - 163664, - null - ], - [ - "ident-token", - "margin-top", - 163665, - 163674, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 163675, - 163675, - null - ], - [ - "ident-token", - "auto", - 163676, - 163679, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 163680, - 163680, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163681, - 163689, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163690, - 163690, - null - ], - [ - "delim-token", - ".", - 163691, - 163691, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-0", - 163692, - 163698, - { - "value": "me-sm-0" - } - ], - [ - "{-token", - "{", - 163699, - 163699, - null - ], - [ - "ident-token", - "margin-right", - 163700, - 163711, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163712, - 163712, - null - ], - [ - "number-token", - "0", - 163713, - 163713, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 163714, - 163714, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163715, - 163723, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163724, - 163724, - null - ], - [ - "delim-token", - ".", - 163725, - 163725, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-1", - 163726, - 163732, - { - "value": "me-sm-1" - } - ], - [ - "{-token", - "{", - 163733, - 163733, - null - ], - [ - "ident-token", - "margin-right", - 163734, - 163745, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163746, - 163746, - null - ], - [ - "dimension-token", - ".25rem", - 163747, - 163752, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163753, - 163753, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163754, - 163762, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163763, - 163763, - null - ], - [ - "delim-token", - ".", - 163764, - 163764, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-2", - 163765, - 163771, - { - "value": "me-sm-2" - } - ], - [ - "{-token", - "{", - 163772, - 163772, - null - ], - [ - "ident-token", - "margin-right", - 163773, - 163784, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163785, - 163785, - null - ], - [ - "dimension-token", - ".5rem", - 163786, - 163790, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163791, - 163791, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163792, - 163800, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163801, - 163801, - null - ], - [ - "delim-token", - ".", - 163802, - 163802, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-3", - 163803, - 163809, - { - "value": "me-sm-3" - } - ], - [ - "{-token", - "{", - 163810, - 163810, - null - ], - [ - "ident-token", - "margin-right", - 163811, - 163822, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163823, - 163823, - null - ], - [ - "dimension-token", - "1rem", - 163824, - 163827, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163828, - 163828, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163829, - 163837, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163838, - 163838, - null - ], - [ - "delim-token", - ".", - 163839, - 163839, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-4", - 163840, - 163846, - { - "value": "me-sm-4" - } - ], - [ - "{-token", - "{", - 163847, - 163847, - null - ], - [ - "ident-token", - "margin-right", - 163848, - 163859, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163860, - 163860, - null - ], - [ - "dimension-token", - "1.5rem", - 163861, - 163866, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163867, - 163867, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163868, - 163876, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163877, - 163877, - null - ], - [ - "delim-token", - ".", - 163878, - 163878, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-5", - 163879, - 163885, - { - "value": "me-sm-5" - } - ], - [ - "{-token", - "{", - 163886, - 163886, - null - ], - [ - "ident-token", - "margin-right", - 163887, - 163898, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163899, - 163899, - null - ], - [ - "dimension-token", - "3rem", - 163900, - 163903, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 163904, - 163904, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163905, - 163913, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163914, - 163914, - null - ], - [ - "delim-token", - ".", - 163915, - 163915, - { - "value": "." - } - ], - [ - "ident-token", - "me-sm-auto", - 163916, - 163925, - { - "value": "me-sm-auto" - } - ], - [ - "{-token", - "{", - 163926, - 163926, - null - ], - [ - "ident-token", - "margin-right", - 163927, - 163938, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 163939, - 163939, - null - ], - [ - "ident-token", - "auto", - 163940, - 163943, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 163944, - 163944, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163945, - 163953, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163954, - 163954, - null - ], - [ - "delim-token", - ".", - 163955, - 163955, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-0", - 163956, - 163962, - { - "value": "mb-sm-0" - } - ], - [ - "{-token", - "{", - 163963, - 163963, - null - ], - [ - "ident-token", - "margin-bottom", - 163964, - 163976, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 163977, - 163977, - null - ], - [ - "number-token", - "0", - 163978, - 163978, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 163979, - 163979, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 163980, - 163988, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 163989, - 163989, - null - ], - [ - "delim-token", - ".", - 163990, - 163990, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-1", - 163991, - 163997, - { - "value": "mb-sm-1" - } - ], - [ - "{-token", - "{", - 163998, - 163998, - null - ], - [ - "ident-token", - "margin-bottom", - 163999, - 164011, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164012, - 164012, - null - ], - [ - "dimension-token", - ".25rem", - 164013, - 164018, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164019, - 164019, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164020, - 164028, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164029, - 164029, - null - ], - [ - "delim-token", - ".", - 164030, - 164030, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-2", - 164031, - 164037, - { - "value": "mb-sm-2" - } - ], - [ - "{-token", - "{", - 164038, - 164038, - null - ], - [ - "ident-token", - "margin-bottom", - 164039, - 164051, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164052, - 164052, - null - ], - [ - "dimension-token", - ".5rem", - 164053, - 164057, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164058, - 164058, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164059, - 164067, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164068, - 164068, - null - ], - [ - "delim-token", - ".", - 164069, - 164069, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-3", - 164070, - 164076, - { - "value": "mb-sm-3" - } - ], - [ - "{-token", - "{", - 164077, - 164077, - null - ], - [ - "ident-token", - "margin-bottom", - 164078, - 164090, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164091, - 164091, - null - ], - [ - "dimension-token", - "1rem", - 164092, - 164095, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164096, - 164096, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164097, - 164105, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164106, - 164106, - null - ], - [ - "delim-token", - ".", - 164107, - 164107, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-4", - 164108, - 164114, - { - "value": "mb-sm-4" - } - ], - [ - "{-token", - "{", - 164115, - 164115, - null - ], - [ - "ident-token", - "margin-bottom", - 164116, - 164128, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164129, - 164129, - null - ], - [ - "dimension-token", - "1.5rem", - 164130, - 164135, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164136, - 164136, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164137, - 164145, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164146, - 164146, - null - ], - [ - "delim-token", - ".", - 164147, - 164147, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-5", - 164148, - 164154, - { - "value": "mb-sm-5" - } - ], - [ - "{-token", - "{", - 164155, - 164155, - null - ], - [ - "ident-token", - "margin-bottom", - 164156, - 164168, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164169, - 164169, - null - ], - [ - "dimension-token", - "3rem", - 164170, - 164173, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164174, - 164174, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164175, - 164183, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164184, - 164184, - null - ], - [ - "delim-token", - ".", - 164185, - 164185, - { - "value": "." - } - ], - [ - "ident-token", - "mb-sm-auto", - 164186, - 164195, - { - "value": "mb-sm-auto" - } - ], - [ - "{-token", - "{", - 164196, - 164196, - null - ], - [ - "ident-token", - "margin-bottom", - 164197, - 164209, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 164210, - 164210, - null - ], - [ - "ident-token", - "auto", - 164211, - 164214, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 164215, - 164215, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164216, - 164224, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164225, - 164225, - null - ], - [ - "delim-token", - ".", - 164226, - 164226, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-0", - 164227, - 164233, - { - "value": "ms-sm-0" - } - ], - [ - "{-token", - "{", - 164234, - 164234, - null - ], - [ - "ident-token", - "margin-left", - 164235, - 164245, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164246, - 164246, - null - ], - [ - "number-token", - "0", - 164247, - 164247, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 164248, - 164248, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164249, - 164257, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164258, - 164258, - null - ], - [ - "delim-token", - ".", - 164259, - 164259, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-1", - 164260, - 164266, - { - "value": "ms-sm-1" - } - ], - [ - "{-token", - "{", - 164267, - 164267, - null - ], - [ - "ident-token", - "margin-left", - 164268, - 164278, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164279, - 164279, - null - ], - [ - "dimension-token", - ".25rem", - 164280, - 164285, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164286, - 164286, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164287, - 164295, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164296, - 164296, - null - ], - [ - "delim-token", - ".", - 164297, - 164297, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-2", - 164298, - 164304, - { - "value": "ms-sm-2" - } - ], - [ - "{-token", - "{", - 164305, - 164305, - null - ], - [ - "ident-token", - "margin-left", - 164306, - 164316, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164317, - 164317, - null - ], - [ - "dimension-token", - ".5rem", - 164318, - 164322, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164323, - 164323, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164324, - 164332, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164333, - 164333, - null - ], - [ - "delim-token", - ".", - 164334, - 164334, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-3", - 164335, - 164341, - { - "value": "ms-sm-3" - } - ], - [ - "{-token", - "{", - 164342, - 164342, - null - ], - [ - "ident-token", - "margin-left", - 164343, - 164353, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164354, - 164354, - null - ], - [ - "dimension-token", - "1rem", - 164355, - 164358, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164359, - 164359, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164360, - 164368, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164369, - 164369, - null - ], - [ - "delim-token", - ".", - 164370, - 164370, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-4", - 164371, - 164377, - { - "value": "ms-sm-4" - } - ], - [ - "{-token", - "{", - 164378, - 164378, - null - ], - [ - "ident-token", - "margin-left", - 164379, - 164389, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164390, - 164390, - null - ], - [ - "dimension-token", - "1.5rem", - 164391, - 164396, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164397, - 164397, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164398, - 164406, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164407, - 164407, - null - ], - [ - "delim-token", - ".", - 164408, - 164408, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-5", - 164409, - 164415, - { - "value": "ms-sm-5" - } - ], - [ - "{-token", - "{", - 164416, - 164416, - null - ], - [ - "ident-token", - "margin-left", - 164417, - 164427, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164428, - 164428, - null - ], - [ - "dimension-token", - "3rem", - 164429, - 164432, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164433, - 164433, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164434, - 164442, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164443, - 164443, - null - ], - [ - "delim-token", - ".", - 164444, - 164444, - { - "value": "." - } - ], - [ - "ident-token", - "ms-sm-auto", - 164445, - 164454, - { - "value": "ms-sm-auto" - } - ], - [ - "{-token", - "{", - 164455, - 164455, - null - ], - [ - "ident-token", - "margin-left", - 164456, - 164466, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 164467, - 164467, - null - ], - [ - "ident-token", - "auto", - 164468, - 164471, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 164472, - 164472, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164473, - 164481, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164482, - 164482, - null - ], - [ - "delim-token", - ".", - 164483, - 164483, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-0", - 164484, - 164489, - { - "value": "p-sm-0" - } - ], - [ - "{-token", - "{", - 164490, - 164490, - null - ], - [ - "ident-token", - "padding", - 164491, - 164497, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164498, - 164498, - null - ], - [ - "number-token", - "0", - 164499, - 164499, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 164500, - 164500, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164501, - 164509, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164510, - 164510, - null - ], - [ - "delim-token", - ".", - 164511, - 164511, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-1", - 164512, - 164517, - { - "value": "p-sm-1" - } - ], - [ - "{-token", - "{", - 164518, - 164518, - null - ], - [ - "ident-token", - "padding", - 164519, - 164525, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164526, - 164526, - null - ], - [ - "dimension-token", - ".25rem", - 164527, - 164532, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164533, - 164533, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164534, - 164542, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164543, - 164543, - null - ], - [ - "delim-token", - ".", - 164544, - 164544, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-2", - 164545, - 164550, - { - "value": "p-sm-2" - } - ], - [ - "{-token", - "{", - 164551, - 164551, - null - ], - [ - "ident-token", - "padding", - 164552, - 164558, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164559, - 164559, - null - ], - [ - "dimension-token", - ".5rem", - 164560, - 164564, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164565, - 164565, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164566, - 164574, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164575, - 164575, - null - ], - [ - "delim-token", - ".", - 164576, - 164576, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-3", - 164577, - 164582, - { - "value": "p-sm-3" - } - ], - [ - "{-token", - "{", - 164583, - 164583, - null - ], - [ - "ident-token", - "padding", - 164584, - 164590, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164591, - 164591, - null - ], - [ - "dimension-token", - "1rem", - 164592, - 164595, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164596, - 164596, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164597, - 164605, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164606, - 164606, - null - ], - [ - "delim-token", - ".", - 164607, - 164607, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-4", - 164608, - 164613, - { - "value": "p-sm-4" - } - ], - [ - "{-token", - "{", - 164614, - 164614, - null - ], - [ - "ident-token", - "padding", - 164615, - 164621, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164622, - 164622, - null - ], - [ - "dimension-token", - "1.5rem", - 164623, - 164628, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164629, - 164629, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164630, - 164638, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164639, - 164639, - null - ], - [ - "delim-token", - ".", - 164640, - 164640, - { - "value": "." - } - ], - [ - "ident-token", - "p-sm-5", - 164641, - 164646, - { - "value": "p-sm-5" - } - ], - [ - "{-token", - "{", - 164647, - 164647, - null - ], - [ - "ident-token", - "padding", - 164648, - 164654, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 164655, - 164655, - null - ], - [ - "dimension-token", - "3rem", - 164656, - 164659, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164660, - 164660, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164661, - 164669, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164670, - 164670, - null - ], - [ - "delim-token", - ".", - 164671, - 164671, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-0", - 164672, - 164678, - { - "value": "px-sm-0" - } - ], - [ - "{-token", - "{", - 164679, - 164679, - null - ], - [ - "ident-token", - "padding-right", - 164680, - 164692, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 164693, - 164693, - null - ], - [ - "number-token", - "0", - 164694, - 164694, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 164695, - 164695, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164696, - 164704, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 164705, - 164705, - null - ], - [ - "ident-token", - "padding-left", - 164706, - 164717, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 164718, - 164718, - null - ], - [ - "number-token", - "0", - 164719, - 164719, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 164720, - 164720, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164721, - 164729, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164730, - 164730, - null - ], - [ - "delim-token", - ".", - 164731, - 164731, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-1", - 164732, - 164738, - { - "value": "px-sm-1" - } - ], - [ - "{-token", - "{", - 164739, - 164739, - null - ], - [ - "ident-token", - "padding-right", - 164740, - 164752, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 164753, - 164753, - null - ], - [ - "dimension-token", - ".25rem", - 164754, - 164759, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164760, - 164760, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164761, - 164769, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 164770, - 164770, - null - ], - [ - "ident-token", - "padding-left", - 164771, - 164782, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 164783, - 164783, - null - ], - [ - "dimension-token", - ".25rem", - 164784, - 164789, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164790, - 164790, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164791, - 164799, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164800, - 164800, - null - ], - [ - "delim-token", - ".", - 164801, - 164801, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-2", - 164802, - 164808, - { - "value": "px-sm-2" - } - ], - [ - "{-token", - "{", - 164809, - 164809, - null - ], - [ - "ident-token", - "padding-right", - 164810, - 164822, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 164823, - 164823, - null - ], - [ - "dimension-token", - ".5rem", - 164824, - 164828, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164829, - 164829, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164830, - 164838, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 164839, - 164839, - null - ], - [ - "ident-token", - "padding-left", - 164840, - 164851, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 164852, - 164852, - null - ], - [ - "dimension-token", - ".5rem", - 164853, - 164857, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164858, - 164858, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164859, - 164867, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164868, - 164868, - null - ], - [ - "delim-token", - ".", - 164869, - 164869, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-3", - 164870, - 164876, - { - "value": "px-sm-3" - } - ], - [ - "{-token", - "{", - 164877, - 164877, - null - ], - [ - "ident-token", - "padding-right", - 164878, - 164890, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 164891, - 164891, - null - ], - [ - "dimension-token", - "1rem", - 164892, - 164895, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164896, - 164896, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164897, - 164905, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 164906, - 164906, - null - ], - [ - "ident-token", - "padding-left", - 164907, - 164918, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 164919, - 164919, - null - ], - [ - "dimension-token", - "1rem", - 164920, - 164923, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164924, - 164924, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164925, - 164933, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 164934, - 164934, - null - ], - [ - "delim-token", - ".", - 164935, - 164935, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-4", - 164936, - 164942, - { - "value": "px-sm-4" - } - ], - [ - "{-token", - "{", - 164943, - 164943, - null - ], - [ - "ident-token", - "padding-right", - 164944, - 164956, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 164957, - 164957, - null - ], - [ - "dimension-token", - "1.5rem", - 164958, - 164963, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164964, - 164964, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164965, - 164973, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 164974, - 164974, - null - ], - [ - "ident-token", - "padding-left", - 164975, - 164986, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 164987, - 164987, - null - ], - [ - "dimension-token", - "1.5rem", - 164988, - 164993, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 164994, - 164994, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 164995, - 165003, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165004, - 165004, - null - ], - [ - "delim-token", - ".", - 165005, - 165005, - { - "value": "." - } - ], - [ - "ident-token", - "px-sm-5", - 165006, - 165012, - { - "value": "px-sm-5" - } - ], - [ - "{-token", - "{", - 165013, - 165013, - null - ], - [ - "ident-token", - "padding-right", - 165014, - 165026, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165027, - 165027, - null - ], - [ - "dimension-token", - "3rem", - 165028, - 165031, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165032, - 165032, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165033, - 165041, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165042, - 165042, - null - ], - [ - "ident-token", - "padding-left", - 165043, - 165054, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 165055, - 165055, - null - ], - [ - "dimension-token", - "3rem", - 165056, - 165059, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165060, - 165060, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165061, - 165069, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165070, - 165070, - null - ], - [ - "delim-token", - ".", - 165071, - 165071, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-0", - 165072, - 165078, - { - "value": "py-sm-0" - } - ], - [ - "{-token", - "{", - 165079, - 165079, - null - ], - [ - "ident-token", - "padding-top", - 165080, - 165090, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165091, - 165091, - null - ], - [ - "number-token", - "0", - 165092, - 165092, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 165093, - 165093, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165094, - 165102, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165103, - 165103, - null - ], - [ - "ident-token", - "padding-bottom", - 165104, - 165117, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165118, - 165118, - null - ], - [ - "number-token", - "0", - 165119, - 165119, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 165120, - 165120, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165121, - 165129, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165130, - 165130, - null - ], - [ - "delim-token", - ".", - 165131, - 165131, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-1", - 165132, - 165138, - { - "value": "py-sm-1" - } - ], - [ - "{-token", - "{", - 165139, - 165139, - null - ], - [ - "ident-token", - "padding-top", - 165140, - 165150, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165151, - 165151, - null - ], - [ - "dimension-token", - ".25rem", - 165152, - 165157, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165158, - 165158, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165159, - 165167, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165168, - 165168, - null - ], - [ - "ident-token", - "padding-bottom", - 165169, - 165182, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165183, - 165183, - null - ], - [ - "dimension-token", - ".25rem", - 165184, - 165189, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165190, - 165190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165191, - 165199, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165200, - 165200, - null - ], - [ - "delim-token", - ".", - 165201, - 165201, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-2", - 165202, - 165208, - { - "value": "py-sm-2" - } - ], - [ - "{-token", - "{", - 165209, - 165209, - null - ], - [ - "ident-token", - "padding-top", - 165210, - 165220, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165221, - 165221, - null - ], - [ - "dimension-token", - ".5rem", - 165222, - 165226, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165227, - 165227, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165228, - 165236, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165237, - 165237, - null - ], - [ - "ident-token", - "padding-bottom", - 165238, - 165251, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165252, - 165252, - null - ], - [ - "dimension-token", - ".5rem", - 165253, - 165257, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165258, - 165258, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165259, - 165267, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165268, - 165268, - null - ], - [ - "delim-token", - ".", - 165269, - 165269, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-3", - 165270, - 165276, - { - "value": "py-sm-3" - } - ], - [ - "{-token", - "{", - 165277, - 165277, - null - ], - [ - "ident-token", - "padding-top", - 165278, - 165288, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165289, - 165289, - null - ], - [ - "dimension-token", - "1rem", - 165290, - 165293, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165294, - 165294, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165295, - 165303, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165304, - 165304, - null - ], - [ - "ident-token", - "padding-bottom", - 165305, - 165318, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165319, - 165319, - null - ], - [ - "dimension-token", - "1rem", - 165320, - 165323, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165324, - 165324, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165325, - 165333, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165334, - 165334, - null - ], - [ - "delim-token", - ".", - 165335, - 165335, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-4", - 165336, - 165342, - { - "value": "py-sm-4" - } - ], - [ - "{-token", - "{", - 165343, - 165343, - null - ], - [ - "ident-token", - "padding-top", - 165344, - 165354, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165355, - 165355, - null - ], - [ - "dimension-token", - "1.5rem", - 165356, - 165361, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165362, - 165362, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165363, - 165371, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165372, - 165372, - null - ], - [ - "ident-token", - "padding-bottom", - 165373, - 165386, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165387, - 165387, - null - ], - [ - "dimension-token", - "1.5rem", - 165388, - 165393, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165394, - 165394, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165395, - 165403, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165404, - 165404, - null - ], - [ - "delim-token", - ".", - 165405, - 165405, - { - "value": "." - } - ], - [ - "ident-token", - "py-sm-5", - 165406, - 165412, - { - "value": "py-sm-5" - } - ], - [ - "{-token", - "{", - 165413, - 165413, - null - ], - [ - "ident-token", - "padding-top", - 165414, - 165424, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165425, - 165425, - null - ], - [ - "dimension-token", - "3rem", - 165426, - 165429, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165430, - 165430, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165431, - 165439, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 165440, - 165440, - null - ], - [ - "ident-token", - "padding-bottom", - 165441, - 165454, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165455, - 165455, - null - ], - [ - "dimension-token", - "3rem", - 165456, - 165459, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165460, - 165460, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165461, - 165469, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165470, - 165470, - null - ], - [ - "delim-token", - ".", - 165471, - 165471, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-0", - 165472, - 165478, - { - "value": "pt-sm-0" - } - ], - [ - "{-token", - "{", - 165479, - 165479, - null - ], - [ - "ident-token", - "padding-top", - 165480, - 165490, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165491, - 165491, - null - ], - [ - "number-token", - "0", - 165492, - 165492, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 165493, - 165493, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165494, - 165502, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165503, - 165503, - null - ], - [ - "delim-token", - ".", - 165504, - 165504, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-1", - 165505, - 165511, - { - "value": "pt-sm-1" - } - ], - [ - "{-token", - "{", - 165512, - 165512, - null - ], - [ - "ident-token", - "padding-top", - 165513, - 165523, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165524, - 165524, - null - ], - [ - "dimension-token", - ".25rem", - 165525, - 165530, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165531, - 165531, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165532, - 165540, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165541, - 165541, - null - ], - [ - "delim-token", - ".", - 165542, - 165542, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-2", - 165543, - 165549, - { - "value": "pt-sm-2" - } - ], - [ - "{-token", - "{", - 165550, - 165550, - null - ], - [ - "ident-token", - "padding-top", - 165551, - 165561, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165562, - 165562, - null - ], - [ - "dimension-token", - ".5rem", - 165563, - 165567, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165568, - 165568, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165569, - 165577, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165578, - 165578, - null - ], - [ - "delim-token", - ".", - 165579, - 165579, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-3", - 165580, - 165586, - { - "value": "pt-sm-3" - } - ], - [ - "{-token", - "{", - 165587, - 165587, - null - ], - [ - "ident-token", - "padding-top", - 165588, - 165598, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165599, - 165599, - null - ], - [ - "dimension-token", - "1rem", - 165600, - 165603, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165604, - 165604, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165605, - 165613, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165614, - 165614, - null - ], - [ - "delim-token", - ".", - 165615, - 165615, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-4", - 165616, - 165622, - { - "value": "pt-sm-4" - } - ], - [ - "{-token", - "{", - 165623, - 165623, - null - ], - [ - "ident-token", - "padding-top", - 165624, - 165634, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165635, - 165635, - null - ], - [ - "dimension-token", - "1.5rem", - 165636, - 165641, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165642, - 165642, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165643, - 165651, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165652, - 165652, - null - ], - [ - "delim-token", - ".", - 165653, - 165653, - { - "value": "." - } - ], - [ - "ident-token", - "pt-sm-5", - 165654, - 165660, - { - "value": "pt-sm-5" - } - ], - [ - "{-token", - "{", - 165661, - 165661, - null - ], - [ - "ident-token", - "padding-top", - 165662, - 165672, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 165673, - 165673, - null - ], - [ - "dimension-token", - "3rem", - 165674, - 165677, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165678, - 165678, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165679, - 165687, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165688, - 165688, - null - ], - [ - "delim-token", - ".", - 165689, - 165689, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-0", - 165690, - 165696, - { - "value": "pe-sm-0" - } - ], - [ - "{-token", - "{", - 165697, - 165697, - null - ], - [ - "ident-token", - "padding-right", - 165698, - 165710, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165711, - 165711, - null - ], - [ - "number-token", - "0", - 165712, - 165712, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 165713, - 165713, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165714, - 165722, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165723, - 165723, - null - ], - [ - "delim-token", - ".", - 165724, - 165724, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-1", - 165725, - 165731, - { - "value": "pe-sm-1" - } - ], - [ - "{-token", - "{", - 165732, - 165732, - null - ], - [ - "ident-token", - "padding-right", - 165733, - 165745, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165746, - 165746, - null - ], - [ - "dimension-token", - ".25rem", - 165747, - 165752, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165753, - 165753, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165754, - 165762, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165763, - 165763, - null - ], - [ - "delim-token", - ".", - 165764, - 165764, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-2", - 165765, - 165771, - { - "value": "pe-sm-2" - } - ], - [ - "{-token", - "{", - 165772, - 165772, - null - ], - [ - "ident-token", - "padding-right", - 165773, - 165785, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165786, - 165786, - null - ], - [ - "dimension-token", - ".5rem", - 165787, - 165791, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165792, - 165792, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165793, - 165801, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165802, - 165802, - null - ], - [ - "delim-token", - ".", - 165803, - 165803, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-3", - 165804, - 165810, - { - "value": "pe-sm-3" - } - ], - [ - "{-token", - "{", - 165811, - 165811, - null - ], - [ - "ident-token", - "padding-right", - 165812, - 165824, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165825, - 165825, - null - ], - [ - "dimension-token", - "1rem", - 165826, - 165829, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165830, - 165830, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165831, - 165839, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165840, - 165840, - null - ], - [ - "delim-token", - ".", - 165841, - 165841, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-4", - 165842, - 165848, - { - "value": "pe-sm-4" - } - ], - [ - "{-token", - "{", - 165849, - 165849, - null - ], - [ - "ident-token", - "padding-right", - 165850, - 165862, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165863, - 165863, - null - ], - [ - "dimension-token", - "1.5rem", - 165864, - 165869, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165870, - 165870, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165871, - 165879, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165880, - 165880, - null - ], - [ - "delim-token", - ".", - 165881, - 165881, - { - "value": "." - } - ], - [ - "ident-token", - "pe-sm-5", - 165882, - 165888, - { - "value": "pe-sm-5" - } - ], - [ - "{-token", - "{", - 165889, - 165889, - null - ], - [ - "ident-token", - "padding-right", - 165890, - 165902, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 165903, - 165903, - null - ], - [ - "dimension-token", - "3rem", - 165904, - 165907, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165908, - 165908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165909, - 165917, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165918, - 165918, - null - ], - [ - "delim-token", - ".", - 165919, - 165919, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-0", - 165920, - 165926, - { - "value": "pb-sm-0" - } - ], - [ - "{-token", - "{", - 165927, - 165927, - null - ], - [ - "ident-token", - "padding-bottom", - 165928, - 165941, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165942, - 165942, - null - ], - [ - "number-token", - "0", - 165943, - 165943, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 165944, - 165944, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165945, - 165953, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165954, - 165954, - null - ], - [ - "delim-token", - ".", - 165955, - 165955, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-1", - 165956, - 165962, - { - "value": "pb-sm-1" - } - ], - [ - "{-token", - "{", - 165963, - 165963, - null - ], - [ - "ident-token", - "padding-bottom", - 165964, - 165977, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 165978, - 165978, - null - ], - [ - "dimension-token", - ".25rem", - 165979, - 165984, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 165985, - 165985, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 165986, - 165994, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 165995, - 165995, - null - ], - [ - "delim-token", - ".", - 165996, - 165996, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-2", - 165997, - 166003, - { - "value": "pb-sm-2" - } - ], - [ - "{-token", - "{", - 166004, - 166004, - null - ], - [ - "ident-token", - "padding-bottom", - 166005, - 166018, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 166019, - 166019, - null - ], - [ - "dimension-token", - ".5rem", - 166020, - 166024, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166025, - 166025, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166026, - 166034, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166035, - 166035, - null - ], - [ - "delim-token", - ".", - 166036, - 166036, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-3", - 166037, - 166043, - { - "value": "pb-sm-3" - } - ], - [ - "{-token", - "{", - 166044, - 166044, - null - ], - [ - "ident-token", - "padding-bottom", - 166045, - 166058, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 166059, - 166059, - null - ], - [ - "dimension-token", - "1rem", - 166060, - 166063, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166064, - 166064, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166065, - 166073, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166074, - 166074, - null - ], - [ - "delim-token", - ".", - 166075, - 166075, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-4", - 166076, - 166082, - { - "value": "pb-sm-4" - } - ], - [ - "{-token", - "{", - 166083, - 166083, - null - ], - [ - "ident-token", - "padding-bottom", - 166084, - 166097, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 166098, - 166098, - null - ], - [ - "dimension-token", - "1.5rem", - 166099, - 166104, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166105, - 166105, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166106, - 166114, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166115, - 166115, - null - ], - [ - "delim-token", - ".", - 166116, - 166116, - { - "value": "." - } - ], - [ - "ident-token", - "pb-sm-5", - 166117, - 166123, - { - "value": "pb-sm-5" - } - ], - [ - "{-token", - "{", - 166124, - 166124, - null - ], - [ - "ident-token", - "padding-bottom", - 166125, - 166138, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 166139, - 166139, - null - ], - [ - "dimension-token", - "3rem", - 166140, - 166143, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166144, - 166144, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166145, - 166153, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166154, - 166154, - null - ], - [ - "delim-token", - ".", - 166155, - 166155, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-0", - 166156, - 166162, - { - "value": "ps-sm-0" - } - ], - [ - "{-token", - "{", - 166163, - 166163, - null - ], - [ - "ident-token", - "padding-left", - 166164, - 166175, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166176, - 166176, - null - ], - [ - "number-token", - "0", - 166177, - 166177, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 166178, - 166178, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166179, - 166187, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166188, - 166188, - null - ], - [ - "delim-token", - ".", - 166189, - 166189, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-1", - 166190, - 166196, - { - "value": "ps-sm-1" - } - ], - [ - "{-token", - "{", - 166197, - 166197, - null - ], - [ - "ident-token", - "padding-left", - 166198, - 166209, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166210, - 166210, - null - ], - [ - "dimension-token", - ".25rem", - 166211, - 166216, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166217, - 166217, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166218, - 166226, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166227, - 166227, - null - ], - [ - "delim-token", - ".", - 166228, - 166228, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-2", - 166229, - 166235, - { - "value": "ps-sm-2" - } - ], - [ - "{-token", - "{", - 166236, - 166236, - null - ], - [ - "ident-token", - "padding-left", - 166237, - 166248, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166249, - 166249, - null - ], - [ - "dimension-token", - ".5rem", - 166250, - 166254, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166255, - 166255, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166256, - 166264, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166265, - 166265, - null - ], - [ - "delim-token", - ".", - 166266, - 166266, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-3", - 166267, - 166273, - { - "value": "ps-sm-3" - } - ], - [ - "{-token", - "{", - 166274, - 166274, - null - ], - [ - "ident-token", - "padding-left", - 166275, - 166286, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166287, - 166287, - null - ], - [ - "dimension-token", - "1rem", - 166288, - 166291, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166292, - 166292, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166293, - 166301, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166302, - 166302, - null - ], - [ - "delim-token", - ".", - 166303, - 166303, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-4", - 166304, - 166310, - { - "value": "ps-sm-4" - } - ], - [ - "{-token", - "{", - 166311, - 166311, - null - ], - [ - "ident-token", - "padding-left", - 166312, - 166323, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166324, - 166324, - null - ], - [ - "dimension-token", - "1.5rem", - 166325, - 166330, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166331, - 166331, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166332, - 166340, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166341, - 166341, - null - ], - [ - "delim-token", - ".", - 166342, - 166342, - { - "value": "." - } - ], - [ - "ident-token", - "ps-sm-5", - 166343, - 166349, - { - "value": "ps-sm-5" - } - ], - [ - "{-token", - "{", - 166350, - 166350, - null - ], - [ - "ident-token", - "padding-left", - 166351, - 166362, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 166363, - 166363, - null - ], - [ - "dimension-token", - "3rem", - 166364, - 166367, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166368, - 166368, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166369, - 166377, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166378, - 166378, - null - ], - [ - "delim-token", - ".", - 166379, - 166379, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-0", - 166380, - 166387, - { - "value": "gap-sm-0" - } - ], - [ - "{-token", - "{", - 166388, - 166388, - null - ], - [ - "ident-token", - "gap", - 166389, - 166391, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166392, - 166392, - null - ], - [ - "number-token", - "0", - 166393, - 166393, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 166394, - 166394, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166395, - 166403, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166404, - 166404, - null - ], - [ - "delim-token", - ".", - 166405, - 166405, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-1", - 166406, - 166413, - { - "value": "gap-sm-1" - } - ], - [ - "{-token", - "{", - 166414, - 166414, - null - ], - [ - "ident-token", - "gap", - 166415, - 166417, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166418, - 166418, - null - ], - [ - "dimension-token", - ".25rem", - 166419, - 166424, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166425, - 166425, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166426, - 166434, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166435, - 166435, - null - ], - [ - "delim-token", - ".", - 166436, - 166436, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-2", - 166437, - 166444, - { - "value": "gap-sm-2" - } - ], - [ - "{-token", - "{", - 166445, - 166445, - null - ], - [ - "ident-token", - "gap", - 166446, - 166448, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166449, - 166449, - null - ], - [ - "dimension-token", - ".5rem", - 166450, - 166454, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166455, - 166455, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166456, - 166464, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166465, - 166465, - null - ], - [ - "delim-token", - ".", - 166466, - 166466, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-3", - 166467, - 166474, - { - "value": "gap-sm-3" - } - ], - [ - "{-token", - "{", - 166475, - 166475, - null - ], - [ - "ident-token", - "gap", - 166476, - 166478, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166479, - 166479, - null - ], - [ - "dimension-token", - "1rem", - 166480, - 166483, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166484, - 166484, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166485, - 166493, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166494, - 166494, - null - ], - [ - "delim-token", - ".", - 166495, - 166495, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-4", - 166496, - 166503, - { - "value": "gap-sm-4" - } - ], - [ - "{-token", - "{", - 166504, - 166504, - null - ], - [ - "ident-token", - "gap", - 166505, - 166507, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166508, - 166508, - null - ], - [ - "dimension-token", - "1.5rem", - 166509, - 166514, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166515, - 166515, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166516, - 166524, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166525, - 166525, - null - ], - [ - "delim-token", - ".", - 166526, - 166526, - { - "value": "." - } - ], - [ - "ident-token", - "gap-sm-5", - 166527, - 166534, - { - "value": "gap-sm-5" - } - ], - [ - "{-token", - "{", - 166535, - 166535, - null - ], - [ - "ident-token", - "gap", - 166536, - 166538, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 166539, - 166539, - null - ], - [ - "dimension-token", - "3rem", - 166540, - 166543, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 166544, - 166544, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166545, - 166553, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166554, - 166554, - null - ], - [ - "delim-token", - ".", - 166555, - 166555, - { - "value": "." - } - ], - [ - "ident-token", - "text-sm-start", - 166556, - 166568, - { - "value": "text-sm-start" - } - ], - [ - "{-token", - "{", - 166569, - 166569, - null - ], - [ - "ident-token", - "text-align", - 166570, - 166579, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 166580, - 166580, - null - ], - [ - "ident-token", - "left", - 166581, - 166584, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 166585, - 166585, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166586, - 166594, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166595, - 166595, - null - ], - [ - "delim-token", - ".", - 166596, - 166596, - { - "value": "." - } - ], - [ - "ident-token", - "text-sm-end", - 166597, - 166607, - { - "value": "text-sm-end" - } - ], - [ - "{-token", - "{", - 166608, - 166608, - null - ], - [ - "ident-token", - "text-align", - 166609, - 166618, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 166619, - 166619, - null - ], - [ - "ident-token", - "right", - 166620, - 166624, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 166625, - 166625, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166626, - 166634, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166635, - 166635, - null - ], - [ - "delim-token", - ".", - 166636, - 166636, - { - "value": "." - } - ], - [ - "ident-token", - "text-sm-center", - 166637, - 166650, - { - "value": "text-sm-center" - } - ], - [ - "{-token", - "{", - 166651, - 166651, - null - ], - [ - "ident-token", - "text-align", - 166652, - 166661, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 166662, - 166662, - null - ], - [ - "ident-token", - "center", - 166663, - 166668, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 166669, - 166669, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166670, - 166678, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166679, - 166679, - null - ], - [ - "}-token", - "}", - 166680, - 166680, - null - ], - [ - "at-keyword-token", - "@media", - 166681, - 166686, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 166687, - 166687, - null - ], - [ - "(-token", - "(", - 166688, - 166688, - null - ], - [ - "ident-token", - "min-width", - 166689, - 166697, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 166698, - 166698, - null - ], - [ - "dimension-token", - "768px", - 166699, - 166703, - { - "value": 768, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 166704, - 166704, - null - ], - [ - "{-token", - "{", - 166705, - 166705, - null - ], - [ - "delim-token", - ".", - 166706, - 166706, - { - "value": "." - } - ], - [ - "ident-token", - "float-md-start", - 166707, - 166720, - { - "value": "float-md-start" - } - ], - [ - "{-token", - "{", - 166721, - 166721, - null - ], - [ - "ident-token", - "float", - 166722, - 166726, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 166727, - 166727, - null - ], - [ - "ident-token", - "left", - 166728, - 166731, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 166732, - 166732, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166733, - 166741, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166742, - 166742, - null - ], - [ - "delim-token", - ".", - 166743, - 166743, - { - "value": "." - } - ], - [ - "ident-token", - "float-md-end", - 166744, - 166755, - { - "value": "float-md-end" - } - ], - [ - "{-token", - "{", - 166756, - 166756, - null - ], - [ - "ident-token", - "float", - 166757, - 166761, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 166762, - 166762, - null - ], - [ - "ident-token", - "right", - 166763, - 166767, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 166768, - 166768, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166769, - 166777, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166778, - 166778, - null - ], - [ - "delim-token", - ".", - 166779, - 166779, - { - "value": "." - } - ], - [ - "ident-token", - "float-md-none", - 166780, - 166792, - { - "value": "float-md-none" - } - ], - [ - "{-token", - "{", - 166793, - 166793, - null - ], - [ - "ident-token", - "float", - 166794, - 166798, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 166799, - 166799, - null - ], - [ - "ident-token", - "none", - 166800, - 166803, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 166804, - 166804, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166805, - 166813, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166814, - 166814, - null - ], - [ - "delim-token", - ".", - 166815, - 166815, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-inline", - 166816, - 166826, - { - "value": "d-md-inline" - } - ], - [ - "{-token", - "{", - 166827, - 166827, - null - ], - [ - "ident-token", - "display", - 166828, - 166834, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 166835, - 166835, - null - ], - [ - "ident-token", - "inline", - 166836, - 166841, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 166842, - 166842, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166843, - 166851, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166852, - 166852, - null - ], - [ - "delim-token", - ".", - 166853, - 166853, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-inline-block", - 166854, - 166870, - { - "value": "d-md-inline-block" - } - ], - [ - "{-token", - "{", - 166871, - 166871, - null - ], - [ - "ident-token", - "display", - 166872, - 166878, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 166879, - 166879, - null - ], - [ - "ident-token", - "inline-block", - 166880, - 166891, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 166892, - 166892, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166893, - 166901, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166902, - 166902, - null - ], - [ - "delim-token", - ".", - 166903, - 166903, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-block", - 166904, - 166913, - { - "value": "d-md-block" - } - ], - [ - "{-token", - "{", - 166914, - 166914, - null - ], - [ - "ident-token", - "display", - 166915, - 166921, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 166922, - 166922, - null - ], - [ - "ident-token", - "block", - 166923, - 166927, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 166928, - 166928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166929, - 166937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166938, - 166938, - null - ], - [ - "delim-token", - ".", - 166939, - 166939, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-grid", - 166940, - 166948, - { - "value": "d-md-grid" - } - ], - [ - "{-token", - "{", - 166949, - 166949, - null - ], - [ - "ident-token", - "display", - 166950, - 166956, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 166957, - 166957, - null - ], - [ - "ident-token", - "grid", - 166958, - 166961, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 166962, - 166962, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166963, - 166971, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 166972, - 166972, - null - ], - [ - "delim-token", - ".", - 166973, - 166973, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-table", - 166974, - 166983, - { - "value": "d-md-table" - } - ], - [ - "{-token", - "{", - 166984, - 166984, - null - ], - [ - "ident-token", - "display", - 166985, - 166991, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 166992, - 166992, - null - ], - [ - "ident-token", - "table", - 166993, - 166997, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 166998, - 166998, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 166999, - 167007, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167008, - 167008, - null - ], - [ - "delim-token", - ".", - 167009, - 167009, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-table-row", - 167010, - 167023, - { - "value": "d-md-table-row" - } - ], - [ - "{-token", - "{", - 167024, - 167024, - null - ], - [ - "ident-token", - "display", - 167025, - 167031, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 167032, - 167032, - null - ], - [ - "ident-token", - "table-row", - 167033, - 167041, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 167042, - 167042, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167043, - 167051, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167052, - 167052, - null - ], - [ - "delim-token", - ".", - 167053, - 167053, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-table-cell", - 167054, - 167068, - { - "value": "d-md-table-cell" - } - ], - [ - "{-token", - "{", - 167069, - 167069, - null - ], - [ - "ident-token", - "display", - 167070, - 167076, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 167077, - 167077, - null - ], - [ - "ident-token", - "table-cell", - 167078, - 167087, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 167088, - 167088, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167089, - 167097, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167098, - 167098, - null - ], - [ - "delim-token", - ".", - 167099, - 167099, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-flex", - 167100, - 167108, - { - "value": "d-md-flex" - } - ], - [ - "{-token", - "{", - 167109, - 167109, - null - ], - [ - "ident-token", - "display", - 167110, - 167116, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 167117, - 167117, - null - ], - [ - "ident-token", - "flex", - 167118, - 167121, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 167122, - 167122, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167123, - 167131, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167132, - 167132, - null - ], - [ - "delim-token", - ".", - 167133, - 167133, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-inline-flex", - 167134, - 167149, - { - "value": "d-md-inline-flex" - } - ], - [ - "{-token", - "{", - 167150, - 167150, - null - ], - [ - "ident-token", - "display", - 167151, - 167157, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 167158, - 167158, - null - ], - [ - "ident-token", - "inline-flex", - 167159, - 167169, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 167170, - 167170, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167171, - 167179, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167180, - 167180, - null - ], - [ - "delim-token", - ".", - 167181, - 167181, - { - "value": "." - } - ], - [ - "ident-token", - "d-md-none", - 167182, - 167190, - { - "value": "d-md-none" - } - ], - [ - "{-token", - "{", - 167191, - 167191, - null - ], - [ - "ident-token", - "display", - 167192, - 167198, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 167199, - 167199, - null - ], - [ - "ident-token", - "none", - 167200, - 167203, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 167204, - 167204, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167205, - 167213, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167214, - 167214, - null - ], - [ - "delim-token", - ".", - 167215, - 167215, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-fill", - 167216, - 167227, - { - "value": "flex-md-fill" - } - ], - [ - "{-token", - "{", - 167228, - 167228, - null - ], - [ - "ident-token", - "flex", - 167229, - 167232, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 167233, - 167233, - null - ], - [ - "number-token", - "1", - 167234, - 167234, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 167235, - 167235, - null - ], - [ - "number-token", - "1", - 167236, - 167236, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 167237, - 167237, - null - ], - [ - "ident-token", - "auto", - 167238, - 167241, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 167242, - 167242, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167243, - 167251, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167252, - 167252, - null - ], - [ - "delim-token", - ".", - 167253, - 167253, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-row", - 167254, - 167264, - { - "value": "flex-md-row" - } - ], - [ - "{-token", - "{", - 167265, - 167265, - null - ], - [ - "ident-token", - "flex-direction", - 167266, - 167279, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 167280, - 167280, - null - ], - [ - "ident-token", - "row", - 167281, - 167283, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 167284, - 167284, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167285, - 167293, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167294, - 167294, - null - ], - [ - "delim-token", - ".", - 167295, - 167295, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-column", - 167296, - 167309, - { - "value": "flex-md-column" - } - ], - [ - "{-token", - "{", - 167310, - 167310, - null - ], - [ - "ident-token", - "flex-direction", - 167311, - 167324, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 167325, - 167325, - null - ], - [ - "ident-token", - "column", - 167326, - 167331, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 167332, - 167332, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167333, - 167341, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167342, - 167342, - null - ], - [ - "delim-token", - ".", - 167343, - 167343, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-row-reverse", - 167344, - 167362, - { - "value": "flex-md-row-reverse" - } - ], - [ - "{-token", - "{", - 167363, - 167363, - null - ], - [ - "ident-token", - "flex-direction", - 167364, - 167377, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 167378, - 167378, - null - ], - [ - "ident-token", - "row-reverse", - 167379, - 167389, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 167390, - 167390, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167391, - 167399, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167400, - 167400, - null - ], - [ - "delim-token", - ".", - 167401, - 167401, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-column-reverse", - 167402, - 167423, - { - "value": "flex-md-column-reverse" - } - ], - [ - "{-token", - "{", - 167424, - 167424, - null - ], - [ - "ident-token", - "flex-direction", - 167425, - 167438, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 167439, - 167439, - null - ], - [ - "ident-token", - "column-reverse", - 167440, - 167453, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 167454, - 167454, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167455, - 167463, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167464, - 167464, - null - ], - [ - "delim-token", - ".", - 167465, - 167465, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-grow-0", - 167466, - 167479, - { - "value": "flex-md-grow-0" - } - ], - [ - "{-token", - "{", - 167480, - 167480, - null - ], - [ - "ident-token", - "flex-grow", - 167481, - 167489, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 167490, - 167490, - null - ], - [ - "number-token", - "0", - 167491, - 167491, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 167492, - 167492, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167493, - 167501, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167502, - 167502, - null - ], - [ - "delim-token", - ".", - 167503, - 167503, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-grow-1", - 167504, - 167517, - { - "value": "flex-md-grow-1" - } - ], - [ - "{-token", - "{", - 167518, - 167518, - null - ], - [ - "ident-token", - "flex-grow", - 167519, - 167527, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 167528, - 167528, - null - ], - [ - "number-token", - "1", - 167529, - 167529, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 167530, - 167530, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167531, - 167539, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167540, - 167540, - null - ], - [ - "delim-token", - ".", - 167541, - 167541, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-shrink-0", - 167542, - 167557, - { - "value": "flex-md-shrink-0" - } - ], - [ - "{-token", - "{", - 167558, - 167558, - null - ], - [ - "ident-token", - "flex-shrink", - 167559, - 167569, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 167570, - 167570, - null - ], - [ - "number-token", - "0", - 167571, - 167571, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 167572, - 167572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167573, - 167581, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167582, - 167582, - null - ], - [ - "delim-token", - ".", - 167583, - 167583, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-shrink-1", - 167584, - 167599, - { - "value": "flex-md-shrink-1" - } - ], - [ - "{-token", - "{", - 167600, - 167600, - null - ], - [ - "ident-token", - "flex-shrink", - 167601, - 167611, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 167612, - 167612, - null - ], - [ - "number-token", - "1", - 167613, - 167613, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 167614, - 167614, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167615, - 167623, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167624, - 167624, - null - ], - [ - "delim-token", - ".", - 167625, - 167625, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-wrap", - 167626, - 167637, - { - "value": "flex-md-wrap" - } - ], - [ - "{-token", - "{", - 167638, - 167638, - null - ], - [ - "ident-token", - "flex-wrap", - 167639, - 167647, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 167648, - 167648, - null - ], - [ - "ident-token", - "wrap", - 167649, - 167652, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 167653, - 167653, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167654, - 167662, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167663, - 167663, - null - ], - [ - "delim-token", - ".", - 167664, - 167664, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-nowrap", - 167665, - 167678, - { - "value": "flex-md-nowrap" - } - ], - [ - "{-token", - "{", - 167679, - 167679, - null - ], - [ - "ident-token", - "flex-wrap", - 167680, - 167688, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 167689, - 167689, - null - ], - [ - "ident-token", - "nowrap", - 167690, - 167695, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 167696, - 167696, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167697, - 167705, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167706, - 167706, - null - ], - [ - "delim-token", - ".", - 167707, - 167707, - { - "value": "." - } - ], - [ - "ident-token", - "flex-md-wrap-reverse", - 167708, - 167727, - { - "value": "flex-md-wrap-reverse" - } - ], - [ - "{-token", - "{", - 167728, - 167728, - null - ], - [ - "ident-token", - "flex-wrap", - 167729, - 167737, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 167738, - 167738, - null - ], - [ - "ident-token", - "wrap-reverse", - 167739, - 167750, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 167751, - 167751, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167752, - 167760, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167761, - 167761, - null - ], - [ - "delim-token", - ".", - 167762, - 167762, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-start", - 167763, - 167786, - { - "value": "justify-content-md-start" - } - ], - [ - "{-token", - "{", - 167787, - 167787, - null - ], - [ - "ident-token", - "justify-content", - 167788, - 167802, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 167803, - 167803, - null - ], - [ - "ident-token", - "flex-start", - 167804, - 167813, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 167814, - 167814, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167815, - 167823, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167824, - 167824, - null - ], - [ - "delim-token", - ".", - 167825, - 167825, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-end", - 167826, - 167847, - { - "value": "justify-content-md-end" - } - ], - [ - "{-token", - "{", - 167848, - 167848, - null - ], - [ - "ident-token", - "justify-content", - 167849, - 167863, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 167864, - 167864, - null - ], - [ - "ident-token", - "flex-end", - 167865, - 167872, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 167873, - 167873, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167874, - 167882, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167883, - 167883, - null - ], - [ - "delim-token", - ".", - 167884, - 167884, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-center", - 167885, - 167909, - { - "value": "justify-content-md-center" - } - ], - [ - "{-token", - "{", - 167910, - 167910, - null - ], - [ - "ident-token", - "justify-content", - 167911, - 167925, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 167926, - 167926, - null - ], - [ - "ident-token", - "center", - 167927, - 167932, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 167933, - 167933, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 167934, - 167942, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 167943, - 167943, - null - ], - [ - "delim-token", - ".", - 167944, - 167944, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-between", - 167945, - 167970, - { - "value": "justify-content-md-between" - } - ], - [ - "{-token", - "{", - 167971, - 167971, - null - ], - [ - "ident-token", - "justify-content", - 167972, - 167986, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 167987, - 167987, - null - ], - [ - "ident-token", - "space-between", - 167988, - 168000, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 168001, - 168001, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168002, - 168010, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168011, - 168011, - null - ], - [ - "delim-token", - ".", - 168012, - 168012, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-around", - 168013, - 168037, - { - "value": "justify-content-md-around" - } - ], - [ - "{-token", - "{", - 168038, - 168038, - null - ], - [ - "ident-token", - "justify-content", - 168039, - 168053, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 168054, - 168054, - null - ], - [ - "ident-token", - "space-around", - 168055, - 168066, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 168067, - 168067, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168068, - 168076, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168077, - 168077, - null - ], - [ - "delim-token", - ".", - 168078, - 168078, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-md-evenly", - 168079, - 168103, - { - "value": "justify-content-md-evenly" - } - ], - [ - "{-token", - "{", - 168104, - 168104, - null - ], - [ - "ident-token", - "justify-content", - 168105, - 168119, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 168120, - 168120, - null - ], - [ - "ident-token", - "space-evenly", - 168121, - 168132, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 168133, - 168133, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168134, - 168142, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168143, - 168143, - null - ], - [ - "delim-token", - ".", - 168144, - 168144, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-md-start", - 168145, - 168164, - { - "value": "align-items-md-start" - } - ], - [ - "{-token", - "{", - 168165, - 168165, - null - ], - [ - "ident-token", - "align-items", - 168166, - 168176, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 168177, - 168177, - null - ], - [ - "ident-token", - "flex-start", - 168178, - 168187, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 168188, - 168188, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168189, - 168197, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168198, - 168198, - null - ], - [ - "delim-token", - ".", - 168199, - 168199, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-md-end", - 168200, - 168217, - { - "value": "align-items-md-end" - } - ], - [ - "{-token", - "{", - 168218, - 168218, - null - ], - [ - "ident-token", - "align-items", - 168219, - 168229, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 168230, - 168230, - null - ], - [ - "ident-token", - "flex-end", - 168231, - 168238, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 168239, - 168239, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168240, - 168248, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168249, - 168249, - null - ], - [ - "delim-token", - ".", - 168250, - 168250, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-md-center", - 168251, - 168271, - { - "value": "align-items-md-center" - } - ], - [ - "{-token", - "{", - 168272, - 168272, - null - ], - [ - "ident-token", - "align-items", - 168273, - 168283, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 168284, - 168284, - null - ], - [ - "ident-token", - "center", - 168285, - 168290, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 168291, - 168291, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168292, - 168300, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168301, - 168301, - null - ], - [ - "delim-token", - ".", - 168302, - 168302, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-md-baseline", - 168303, - 168325, - { - "value": "align-items-md-baseline" - } - ], - [ - "{-token", - "{", - 168326, - 168326, - null - ], - [ - "ident-token", - "align-items", - 168327, - 168337, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 168338, - 168338, - null - ], - [ - "ident-token", - "baseline", - 168339, - 168346, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 168347, - 168347, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168348, - 168356, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168357, - 168357, - null - ], - [ - "delim-token", - ".", - 168358, - 168358, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-md-stretch", - 168359, - 168380, - { - "value": "align-items-md-stretch" - } - ], - [ - "{-token", - "{", - 168381, - 168381, - null - ], - [ - "ident-token", - "align-items", - 168382, - 168392, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 168393, - 168393, - null - ], - [ - "ident-token", - "stretch", - 168394, - 168400, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 168401, - 168401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168402, - 168410, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168411, - 168411, - null - ], - [ - "delim-token", - ".", - 168412, - 168412, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-start", - 168413, - 168434, - { - "value": "align-content-md-start" - } - ], - [ - "{-token", - "{", - 168435, - 168435, - null - ], - [ - "ident-token", - "align-content", - 168436, - 168448, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168449, - 168449, - null - ], - [ - "ident-token", - "flex-start", - 168450, - 168459, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 168460, - 168460, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168461, - 168469, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168470, - 168470, - null - ], - [ - "delim-token", - ".", - 168471, - 168471, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-end", - 168472, - 168491, - { - "value": "align-content-md-end" - } - ], - [ - "{-token", - "{", - 168492, - 168492, - null - ], - [ - "ident-token", - "align-content", - 168493, - 168505, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168506, - 168506, - null - ], - [ - "ident-token", - "flex-end", - 168507, - 168514, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 168515, - 168515, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168516, - 168524, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168525, - 168525, - null - ], - [ - "delim-token", - ".", - 168526, - 168526, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-center", - 168527, - 168549, - { - "value": "align-content-md-center" - } - ], - [ - "{-token", - "{", - 168550, - 168550, - null - ], - [ - "ident-token", - "align-content", - 168551, - 168563, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168564, - 168564, - null - ], - [ - "ident-token", - "center", - 168565, - 168570, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 168571, - 168571, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168572, - 168580, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168581, - 168581, - null - ], - [ - "delim-token", - ".", - 168582, - 168582, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-between", - 168583, - 168606, - { - "value": "align-content-md-between" - } - ], - [ - "{-token", - "{", - 168607, - 168607, - null - ], - [ - "ident-token", - "align-content", - 168608, - 168620, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168621, - 168621, - null - ], - [ - "ident-token", - "space-between", - 168622, - 168634, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 168635, - 168635, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168636, - 168644, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168645, - 168645, - null - ], - [ - "delim-token", - ".", - 168646, - 168646, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-around", - 168647, - 168669, - { - "value": "align-content-md-around" - } - ], - [ - "{-token", - "{", - 168670, - 168670, - null - ], - [ - "ident-token", - "align-content", - 168671, - 168683, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168684, - 168684, - null - ], - [ - "ident-token", - "space-around", - 168685, - 168696, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 168697, - 168697, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168698, - 168706, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168707, - 168707, - null - ], - [ - "delim-token", - ".", - 168708, - 168708, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-md-stretch", - 168709, - 168732, - { - "value": "align-content-md-stretch" - } - ], - [ - "{-token", - "{", - 168733, - 168733, - null - ], - [ - "ident-token", - "align-content", - 168734, - 168746, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 168747, - 168747, - null - ], - [ - "ident-token", - "stretch", - 168748, - 168754, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 168755, - 168755, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168756, - 168764, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168765, - 168765, - null - ], - [ - "delim-token", - ".", - 168766, - 168766, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-auto", - 168767, - 168784, - { - "value": "align-self-md-auto" - } - ], - [ - "{-token", - "{", - 168785, - 168785, - null - ], - [ - "ident-token", - "align-self", - 168786, - 168795, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 168796, - 168796, - null - ], - [ - "ident-token", - "auto", - 168797, - 168800, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 168801, - 168801, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168802, - 168810, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168811, - 168811, - null - ], - [ - "delim-token", - ".", - 168812, - 168812, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-start", - 168813, - 168831, - { - "value": "align-self-md-start" - } - ], - [ - "{-token", - "{", - 168832, - 168832, - null - ], - [ - "ident-token", - "align-self", - 168833, - 168842, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 168843, - 168843, - null - ], - [ - "ident-token", - "flex-start", - 168844, - 168853, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 168854, - 168854, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168855, - 168863, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168864, - 168864, - null - ], - [ - "delim-token", - ".", - 168865, - 168865, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-end", - 168866, - 168882, - { - "value": "align-self-md-end" - } - ], - [ - "{-token", - "{", - 168883, - 168883, - null - ], - [ - "ident-token", - "align-self", - 168884, - 168893, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 168894, - 168894, - null - ], - [ - "ident-token", - "flex-end", - 168895, - 168902, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 168903, - 168903, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168904, - 168912, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168913, - 168913, - null - ], - [ - "delim-token", - ".", - 168914, - 168914, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-center", - 168915, - 168934, - { - "value": "align-self-md-center" - } - ], - [ - "{-token", - "{", - 168935, - 168935, - null - ], - [ - "ident-token", - "align-self", - 168936, - 168945, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 168946, - 168946, - null - ], - [ - "ident-token", - "center", - 168947, - 168952, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 168953, - 168953, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 168954, - 168962, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 168963, - 168963, - null - ], - [ - "delim-token", - ".", - 168964, - 168964, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-baseline", - 168965, - 168986, - { - "value": "align-self-md-baseline" - } - ], - [ - "{-token", - "{", - 168987, - 168987, - null - ], - [ - "ident-token", - "align-self", - 168988, - 168997, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 168998, - 168998, - null - ], - [ - "ident-token", - "baseline", - 168999, - 169006, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 169007, - 169007, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169008, - 169016, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169017, - 169017, - null - ], - [ - "delim-token", - ".", - 169018, - 169018, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-md-stretch", - 169019, - 169039, - { - "value": "align-self-md-stretch" - } - ], - [ - "{-token", - "{", - 169040, - 169040, - null - ], - [ - "ident-token", - "align-self", - 169041, - 169050, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 169051, - 169051, - null - ], - [ - "ident-token", - "stretch", - 169052, - 169058, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 169059, - 169059, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169060, - 169068, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169069, - 169069, - null - ], - [ - "delim-token", - ".", - 169070, - 169070, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-first", - 169071, - 169084, - { - "value": "order-md-first" - } - ], - [ - "{-token", - "{", - 169085, - 169085, - null - ], - [ - "ident-token", - "order", - 169086, - 169090, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169091, - 169091, - null - ], - [ - "number-token", - "-1", - 169092, - 169093, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169094, - 169094, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169095, - 169103, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169104, - 169104, - null - ], - [ - "delim-token", - ".", - 169105, - 169105, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-0", - 169106, - 169115, - { - "value": "order-md-0" - } - ], - [ - "{-token", - "{", - 169116, - 169116, - null - ], - [ - "ident-token", - "order", - 169117, - 169121, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169122, - 169122, - null - ], - [ - "number-token", - "0", - 169123, - 169123, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169124, - 169124, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169125, - 169133, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169134, - 169134, - null - ], - [ - "delim-token", - ".", - 169135, - 169135, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-1", - 169136, - 169145, - { - "value": "order-md-1" - } - ], - [ - "{-token", - "{", - 169146, - 169146, - null - ], - [ - "ident-token", - "order", - 169147, - 169151, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169152, - 169152, - null - ], - [ - "number-token", - "1", - 169153, - 169153, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169154, - 169154, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169155, - 169163, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169164, - 169164, - null - ], - [ - "delim-token", - ".", - 169165, - 169165, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-2", - 169166, - 169175, - { - "value": "order-md-2" - } - ], - [ - "{-token", - "{", - 169176, - 169176, - null - ], - [ - "ident-token", - "order", - 169177, - 169181, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169182, - 169182, - null - ], - [ - "number-token", - "2", - 169183, - 169183, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169184, - 169184, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169185, - 169193, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169194, - 169194, - null - ], - [ - "delim-token", - ".", - 169195, - 169195, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-3", - 169196, - 169205, - { - "value": "order-md-3" - } - ], - [ - "{-token", - "{", - 169206, - 169206, - null - ], - [ - "ident-token", - "order", - 169207, - 169211, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169212, - 169212, - null - ], - [ - "number-token", - "3", - 169213, - 169213, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169214, - 169214, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169215, - 169223, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169224, - 169224, - null - ], - [ - "delim-token", - ".", - 169225, - 169225, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-4", - 169226, - 169235, - { - "value": "order-md-4" - } - ], - [ - "{-token", - "{", - 169236, - 169236, - null - ], - [ - "ident-token", - "order", - 169237, - 169241, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169242, - 169242, - null - ], - [ - "number-token", - "4", - 169243, - 169243, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169244, - 169244, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169245, - 169253, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169254, - 169254, - null - ], - [ - "delim-token", - ".", - 169255, - 169255, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-5", - 169256, - 169265, - { - "value": "order-md-5" - } - ], - [ - "{-token", - "{", - 169266, - 169266, - null - ], - [ - "ident-token", - "order", - 169267, - 169271, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169272, - 169272, - null - ], - [ - "number-token", - "5", - 169273, - 169273, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169274, - 169274, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169275, - 169283, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169284, - 169284, - null - ], - [ - "delim-token", - ".", - 169285, - 169285, - { - "value": "." - } - ], - [ - "ident-token", - "order-md-last", - 169286, - 169298, - { - "value": "order-md-last" - } - ], - [ - "{-token", - "{", - 169299, - 169299, - null - ], - [ - "ident-token", - "order", - 169300, - 169304, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 169305, - 169305, - null - ], - [ - "number-token", - "6", - 169306, - 169306, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169307, - 169307, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169308, - 169316, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169317, - 169317, - null - ], - [ - "delim-token", - ".", - 169318, - 169318, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-0", - 169319, - 169324, - { - "value": "m-md-0" - } - ], - [ - "{-token", - "{", - 169325, - 169325, - null - ], - [ - "ident-token", - "margin", - 169326, - 169331, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169332, - 169332, - null - ], - [ - "number-token", - "0", - 169333, - 169333, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169334, - 169334, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169335, - 169343, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169344, - 169344, - null - ], - [ - "delim-token", - ".", - 169345, - 169345, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-1", - 169346, - 169351, - { - "value": "m-md-1" - } - ], - [ - "{-token", - "{", - 169352, - 169352, - null - ], - [ - "ident-token", - "margin", - 169353, - 169358, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169359, - 169359, - null - ], - [ - "dimension-token", - ".25rem", - 169360, - 169365, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169366, - 169366, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169367, - 169375, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169376, - 169376, - null - ], - [ - "delim-token", - ".", - 169377, - 169377, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-2", - 169378, - 169383, - { - "value": "m-md-2" - } - ], - [ - "{-token", - "{", - 169384, - 169384, - null - ], - [ - "ident-token", - "margin", - 169385, - 169390, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169391, - 169391, - null - ], - [ - "dimension-token", - ".5rem", - 169392, - 169396, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169397, - 169397, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169398, - 169406, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169407, - 169407, - null - ], - [ - "delim-token", - ".", - 169408, - 169408, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-3", - 169409, - 169414, - { - "value": "m-md-3" - } - ], - [ - "{-token", - "{", - 169415, - 169415, - null - ], - [ - "ident-token", - "margin", - 169416, - 169421, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169422, - 169422, - null - ], - [ - "dimension-token", - "1rem", - 169423, - 169426, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169427, - 169427, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169428, - 169436, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169437, - 169437, - null - ], - [ - "delim-token", - ".", - 169438, - 169438, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-4", - 169439, - 169444, - { - "value": "m-md-4" - } - ], - [ - "{-token", - "{", - 169445, - 169445, - null - ], - [ - "ident-token", - "margin", - 169446, - 169451, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169452, - 169452, - null - ], - [ - "dimension-token", - "1.5rem", - 169453, - 169458, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169459, - 169459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169460, - 169468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169469, - 169469, - null - ], - [ - "delim-token", - ".", - 169470, - 169470, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-5", - 169471, - 169476, - { - "value": "m-md-5" - } - ], - [ - "{-token", - "{", - 169477, - 169477, - null - ], - [ - "ident-token", - "margin", - 169478, - 169483, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169484, - 169484, - null - ], - [ - "dimension-token", - "3rem", - 169485, - 169488, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169489, - 169489, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169490, - 169498, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169499, - 169499, - null - ], - [ - "delim-token", - ".", - 169500, - 169500, - { - "value": "." - } - ], - [ - "ident-token", - "m-md-auto", - 169501, - 169509, - { - "value": "m-md-auto" - } - ], - [ - "{-token", - "{", - 169510, - 169510, - null - ], - [ - "ident-token", - "margin", - 169511, - 169516, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 169517, - 169517, - null - ], - [ - "ident-token", - "auto", - 169518, - 169521, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 169522, - 169522, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169523, - 169531, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169532, - 169532, - null - ], - [ - "delim-token", - ".", - 169533, - 169533, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-0", - 169534, - 169540, - { - "value": "mx-md-0" - } - ], - [ - "{-token", - "{", - 169541, - 169541, - null - ], - [ - "ident-token", - "margin-right", - 169542, - 169553, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169554, - 169554, - null - ], - [ - "number-token", - "0", - 169555, - 169555, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169556, - 169556, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169557, - 169565, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169566, - 169566, - null - ], - [ - "ident-token", - "margin-left", - 169567, - 169577, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169578, - 169578, - null - ], - [ - "number-token", - "0", - 169579, - 169579, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 169580, - 169580, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169581, - 169589, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169590, - 169590, - null - ], - [ - "delim-token", - ".", - 169591, - 169591, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-1", - 169592, - 169598, - { - "value": "mx-md-1" - } - ], - [ - "{-token", - "{", - 169599, - 169599, - null - ], - [ - "ident-token", - "margin-right", - 169600, - 169611, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169612, - 169612, - null - ], - [ - "dimension-token", - ".25rem", - 169613, - 169618, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169619, - 169619, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169620, - 169628, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169629, - 169629, - null - ], - [ - "ident-token", - "margin-left", - 169630, - 169640, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169641, - 169641, - null - ], - [ - "dimension-token", - ".25rem", - 169642, - 169647, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169648, - 169648, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169649, - 169657, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169658, - 169658, - null - ], - [ - "delim-token", - ".", - 169659, - 169659, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-2", - 169660, - 169666, - { - "value": "mx-md-2" - } - ], - [ - "{-token", - "{", - 169667, - 169667, - null - ], - [ - "ident-token", - "margin-right", - 169668, - 169679, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169680, - 169680, - null - ], - [ - "dimension-token", - ".5rem", - 169681, - 169685, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169686, - 169686, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169687, - 169695, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169696, - 169696, - null - ], - [ - "ident-token", - "margin-left", - 169697, - 169707, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169708, - 169708, - null - ], - [ - "dimension-token", - ".5rem", - 169709, - 169713, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169714, - 169714, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169715, - 169723, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169724, - 169724, - null - ], - [ - "delim-token", - ".", - 169725, - 169725, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-3", - 169726, - 169732, - { - "value": "mx-md-3" - } - ], - [ - "{-token", - "{", - 169733, - 169733, - null - ], - [ - "ident-token", - "margin-right", - 169734, - 169745, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169746, - 169746, - null - ], - [ - "dimension-token", - "1rem", - 169747, - 169750, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169751, - 169751, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169752, - 169760, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169761, - 169761, - null - ], - [ - "ident-token", - "margin-left", - 169762, - 169772, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169773, - 169773, - null - ], - [ - "dimension-token", - "1rem", - 169774, - 169777, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169778, - 169778, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169779, - 169787, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169788, - 169788, - null - ], - [ - "delim-token", - ".", - 169789, - 169789, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-4", - 169790, - 169796, - { - "value": "mx-md-4" - } - ], - [ - "{-token", - "{", - 169797, - 169797, - null - ], - [ - "ident-token", - "margin-right", - 169798, - 169809, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169810, - 169810, - null - ], - [ - "dimension-token", - "1.5rem", - 169811, - 169816, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169817, - 169817, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169818, - 169826, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169827, - 169827, - null - ], - [ - "ident-token", - "margin-left", - 169828, - 169838, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169839, - 169839, - null - ], - [ - "dimension-token", - "1.5rem", - 169840, - 169845, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169846, - 169846, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169847, - 169855, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169856, - 169856, - null - ], - [ - "delim-token", - ".", - 169857, - 169857, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-5", - 169858, - 169864, - { - "value": "mx-md-5" - } - ], - [ - "{-token", - "{", - 169865, - 169865, - null - ], - [ - "ident-token", - "margin-right", - 169866, - 169877, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169878, - 169878, - null - ], - [ - "dimension-token", - "3rem", - 169879, - 169882, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169883, - 169883, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169884, - 169892, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169893, - 169893, - null - ], - [ - "ident-token", - "margin-left", - 169894, - 169904, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169905, - 169905, - null - ], - [ - "dimension-token", - "3rem", - 169906, - 169909, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 169910, - 169910, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169911, - 169919, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169920, - 169920, - null - ], - [ - "delim-token", - ".", - 169921, - 169921, - { - "value": "." - } - ], - [ - "ident-token", - "mx-md-auto", - 169922, - 169931, - { - "value": "mx-md-auto" - } - ], - [ - "{-token", - "{", - 169932, - 169932, - null - ], - [ - "ident-token", - "margin-right", - 169933, - 169944, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 169945, - 169945, - null - ], - [ - "ident-token", - "auto", - 169946, - 169949, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 169950, - 169950, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169951, - 169959, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 169960, - 169960, - null - ], - [ - "ident-token", - "margin-left", - 169961, - 169971, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 169972, - 169972, - null - ], - [ - "ident-token", - "auto", - 169973, - 169976, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 169977, - 169977, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 169978, - 169986, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 169987, - 169987, - null - ], - [ - "delim-token", - ".", - 169988, - 169988, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-0", - 169989, - 169995, - { - "value": "my-md-0" - } - ], - [ - "{-token", - "{", - 169996, - 169996, - null - ], - [ - "ident-token", - "margin-top", - 169997, - 170006, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170007, - 170007, - null - ], - [ - "number-token", - "0", - 170008, - 170008, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 170009, - 170009, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170010, - 170018, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170019, - 170019, - null - ], - [ - "ident-token", - "margin-bottom", - 170020, - 170032, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170033, - 170033, - null - ], - [ - "number-token", - "0", - 170034, - 170034, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 170035, - 170035, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170036, - 170044, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170045, - 170045, - null - ], - [ - "delim-token", - ".", - 170046, - 170046, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-1", - 170047, - 170053, - { - "value": "my-md-1" - } - ], - [ - "{-token", - "{", - 170054, - 170054, - null - ], - [ - "ident-token", - "margin-top", - 170055, - 170064, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170065, - 170065, - null - ], - [ - "dimension-token", - ".25rem", - 170066, - 170071, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170072, - 170072, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170073, - 170081, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170082, - 170082, - null - ], - [ - "ident-token", - "margin-bottom", - 170083, - 170095, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170096, - 170096, - null - ], - [ - "dimension-token", - ".25rem", - 170097, - 170102, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170103, - 170103, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170104, - 170112, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170113, - 170113, - null - ], - [ - "delim-token", - ".", - 170114, - 170114, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-2", - 170115, - 170121, - { - "value": "my-md-2" - } - ], - [ - "{-token", - "{", - 170122, - 170122, - null - ], - [ - "ident-token", - "margin-top", - 170123, - 170132, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170133, - 170133, - null - ], - [ - "dimension-token", - ".5rem", - 170134, - 170138, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170139, - 170139, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170140, - 170148, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170149, - 170149, - null - ], - [ - "ident-token", - "margin-bottom", - 170150, - 170162, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170163, - 170163, - null - ], - [ - "dimension-token", - ".5rem", - 170164, - 170168, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170169, - 170169, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170170, - 170178, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170179, - 170179, - null - ], - [ - "delim-token", - ".", - 170180, - 170180, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-3", - 170181, - 170187, - { - "value": "my-md-3" - } - ], - [ - "{-token", - "{", - 170188, - 170188, - null - ], - [ - "ident-token", - "margin-top", - 170189, - 170198, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170199, - 170199, - null - ], - [ - "dimension-token", - "1rem", - 170200, - 170203, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170204, - 170204, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170205, - 170213, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170214, - 170214, - null - ], - [ - "ident-token", - "margin-bottom", - 170215, - 170227, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170228, - 170228, - null - ], - [ - "dimension-token", - "1rem", - 170229, - 170232, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170233, - 170233, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170234, - 170242, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170243, - 170243, - null - ], - [ - "delim-token", - ".", - 170244, - 170244, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-4", - 170245, - 170251, - { - "value": "my-md-4" - } - ], - [ - "{-token", - "{", - 170252, - 170252, - null - ], - [ - "ident-token", - "margin-top", - 170253, - 170262, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170263, - 170263, - null - ], - [ - "dimension-token", - "1.5rem", - 170264, - 170269, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170270, - 170270, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170271, - 170279, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170280, - 170280, - null - ], - [ - "ident-token", - "margin-bottom", - 170281, - 170293, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170294, - 170294, - null - ], - [ - "dimension-token", - "1.5rem", - 170295, - 170300, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170301, - 170301, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170302, - 170310, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170311, - 170311, - null - ], - [ - "delim-token", - ".", - 170312, - 170312, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-5", - 170313, - 170319, - { - "value": "my-md-5" - } - ], - [ - "{-token", - "{", - 170320, - 170320, - null - ], - [ - "ident-token", - "margin-top", - 170321, - 170330, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170331, - 170331, - null - ], - [ - "dimension-token", - "3rem", - 170332, - 170335, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170336, - 170336, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170337, - 170345, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170346, - 170346, - null - ], - [ - "ident-token", - "margin-bottom", - 170347, - 170359, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170360, - 170360, - null - ], - [ - "dimension-token", - "3rem", - 170361, - 170364, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170365, - 170365, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170366, - 170374, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170375, - 170375, - null - ], - [ - "delim-token", - ".", - 170376, - 170376, - { - "value": "." - } - ], - [ - "ident-token", - "my-md-auto", - 170377, - 170386, - { - "value": "my-md-auto" - } - ], - [ - "{-token", - "{", - 170387, - 170387, - null - ], - [ - "ident-token", - "margin-top", - 170388, - 170397, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170398, - 170398, - null - ], - [ - "ident-token", - "auto", - 170399, - 170402, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 170403, - 170403, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170404, - 170412, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 170413, - 170413, - null - ], - [ - "ident-token", - "margin-bottom", - 170414, - 170426, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170427, - 170427, - null - ], - [ - "ident-token", - "auto", - 170428, - 170431, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 170432, - 170432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170433, - 170441, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170442, - 170442, - null - ], - [ - "delim-token", - ".", - 170443, - 170443, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-0", - 170444, - 170450, - { - "value": "mt-md-0" - } - ], - [ - "{-token", - "{", - 170451, - 170451, - null - ], - [ - "ident-token", - "margin-top", - 170452, - 170461, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170462, - 170462, - null - ], - [ - "number-token", - "0", - 170463, - 170463, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 170464, - 170464, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170465, - 170473, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170474, - 170474, - null - ], - [ - "delim-token", - ".", - 170475, - 170475, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-1", - 170476, - 170482, - { - "value": "mt-md-1" - } - ], - [ - "{-token", - "{", - 170483, - 170483, - null - ], - [ - "ident-token", - "margin-top", - 170484, - 170493, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170494, - 170494, - null - ], - [ - "dimension-token", - ".25rem", - 170495, - 170500, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170501, - 170501, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170502, - 170510, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170511, - 170511, - null - ], - [ - "delim-token", - ".", - 170512, - 170512, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-2", - 170513, - 170519, - { - "value": "mt-md-2" - } - ], - [ - "{-token", - "{", - 170520, - 170520, - null - ], - [ - "ident-token", - "margin-top", - 170521, - 170530, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170531, - 170531, - null - ], - [ - "dimension-token", - ".5rem", - 170532, - 170536, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170537, - 170537, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170538, - 170546, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170547, - 170547, - null - ], - [ - "delim-token", - ".", - 170548, - 170548, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-3", - 170549, - 170555, - { - "value": "mt-md-3" - } - ], - [ - "{-token", - "{", - 170556, - 170556, - null - ], - [ - "ident-token", - "margin-top", - 170557, - 170566, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170567, - 170567, - null - ], - [ - "dimension-token", - "1rem", - 170568, - 170571, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170572, - 170572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170573, - 170581, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170582, - 170582, - null - ], - [ - "delim-token", - ".", - 170583, - 170583, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-4", - 170584, - 170590, - { - "value": "mt-md-4" - } - ], - [ - "{-token", - "{", - 170591, - 170591, - null - ], - [ - "ident-token", - "margin-top", - 170592, - 170601, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170602, - 170602, - null - ], - [ - "dimension-token", - "1.5rem", - 170603, - 170608, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170609, - 170609, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170610, - 170618, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170619, - 170619, - null - ], - [ - "delim-token", - ".", - 170620, - 170620, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-5", - 170621, - 170627, - { - "value": "mt-md-5" - } - ], - [ - "{-token", - "{", - 170628, - 170628, - null - ], - [ - "ident-token", - "margin-top", - 170629, - 170638, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170639, - 170639, - null - ], - [ - "dimension-token", - "3rem", - 170640, - 170643, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170644, - 170644, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170645, - 170653, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170654, - 170654, - null - ], - [ - "delim-token", - ".", - 170655, - 170655, - { - "value": "." - } - ], - [ - "ident-token", - "mt-md-auto", - 170656, - 170665, - { - "value": "mt-md-auto" - } - ], - [ - "{-token", - "{", - 170666, - 170666, - null - ], - [ - "ident-token", - "margin-top", - 170667, - 170676, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 170677, - 170677, - null - ], - [ - "ident-token", - "auto", - 170678, - 170681, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 170682, - 170682, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170683, - 170691, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170692, - 170692, - null - ], - [ - "delim-token", - ".", - 170693, - 170693, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-0", - 170694, - 170700, - { - "value": "me-md-0" - } - ], - [ - "{-token", - "{", - 170701, - 170701, - null - ], - [ - "ident-token", - "margin-right", - 170702, - 170713, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170714, - 170714, - null - ], - [ - "number-token", - "0", - 170715, - 170715, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 170716, - 170716, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170717, - 170725, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170726, - 170726, - null - ], - [ - "delim-token", - ".", - 170727, - 170727, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-1", - 170728, - 170734, - { - "value": "me-md-1" - } - ], - [ - "{-token", - "{", - 170735, - 170735, - null - ], - [ - "ident-token", - "margin-right", - 170736, - 170747, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170748, - 170748, - null - ], - [ - "dimension-token", - ".25rem", - 170749, - 170754, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170755, - 170755, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170756, - 170764, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170765, - 170765, - null - ], - [ - "delim-token", - ".", - 170766, - 170766, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-2", - 170767, - 170773, - { - "value": "me-md-2" - } - ], - [ - "{-token", - "{", - 170774, - 170774, - null - ], - [ - "ident-token", - "margin-right", - 170775, - 170786, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170787, - 170787, - null - ], - [ - "dimension-token", - ".5rem", - 170788, - 170792, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170793, - 170793, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170794, - 170802, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170803, - 170803, - null - ], - [ - "delim-token", - ".", - 170804, - 170804, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-3", - 170805, - 170811, - { - "value": "me-md-3" - } - ], - [ - "{-token", - "{", - 170812, - 170812, - null - ], - [ - "ident-token", - "margin-right", - 170813, - 170824, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170825, - 170825, - null - ], - [ - "dimension-token", - "1rem", - 170826, - 170829, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170830, - 170830, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170831, - 170839, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170840, - 170840, - null - ], - [ - "delim-token", - ".", - 170841, - 170841, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-4", - 170842, - 170848, - { - "value": "me-md-4" - } - ], - [ - "{-token", - "{", - 170849, - 170849, - null - ], - [ - "ident-token", - "margin-right", - 170850, - 170861, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170862, - 170862, - null - ], - [ - "dimension-token", - "1.5rem", - 170863, - 170868, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170869, - 170869, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170870, - 170878, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170879, - 170879, - null - ], - [ - "delim-token", - ".", - 170880, - 170880, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-5", - 170881, - 170887, - { - "value": "me-md-5" - } - ], - [ - "{-token", - "{", - 170888, - 170888, - null - ], - [ - "ident-token", - "margin-right", - 170889, - 170900, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170901, - 170901, - null - ], - [ - "dimension-token", - "3rem", - 170902, - 170905, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 170906, - 170906, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170907, - 170915, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170916, - 170916, - null - ], - [ - "delim-token", - ".", - 170917, - 170917, - { - "value": "." - } - ], - [ - "ident-token", - "me-md-auto", - 170918, - 170927, - { - "value": "me-md-auto" - } - ], - [ - "{-token", - "{", - 170928, - 170928, - null - ], - [ - "ident-token", - "margin-right", - 170929, - 170940, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 170941, - 170941, - null - ], - [ - "ident-token", - "auto", - 170942, - 170945, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 170946, - 170946, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170947, - 170955, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170956, - 170956, - null - ], - [ - "delim-token", - ".", - 170957, - 170957, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-0", - 170958, - 170964, - { - "value": "mb-md-0" - } - ], - [ - "{-token", - "{", - 170965, - 170965, - null - ], - [ - "ident-token", - "margin-bottom", - 170966, - 170978, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 170979, - 170979, - null - ], - [ - "number-token", - "0", - 170980, - 170980, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 170981, - 170981, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 170982, - 170990, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 170991, - 170991, - null - ], - [ - "delim-token", - ".", - 170992, - 170992, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-1", - 170993, - 170999, - { - "value": "mb-md-1" - } - ], - [ - "{-token", - "{", - 171000, - 171000, - null - ], - [ - "ident-token", - "margin-bottom", - 171001, - 171013, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171014, - 171014, - null - ], - [ - "dimension-token", - ".25rem", - 171015, - 171020, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171021, - 171021, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171022, - 171030, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171031, - 171031, - null - ], - [ - "delim-token", - ".", - 171032, - 171032, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-2", - 171033, - 171039, - { - "value": "mb-md-2" - } - ], - [ - "{-token", - "{", - 171040, - 171040, - null - ], - [ - "ident-token", - "margin-bottom", - 171041, - 171053, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171054, - 171054, - null - ], - [ - "dimension-token", - ".5rem", - 171055, - 171059, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171060, - 171060, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171061, - 171069, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171070, - 171070, - null - ], - [ - "delim-token", - ".", - 171071, - 171071, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-3", - 171072, - 171078, - { - "value": "mb-md-3" - } - ], - [ - "{-token", - "{", - 171079, - 171079, - null - ], - [ - "ident-token", - "margin-bottom", - 171080, - 171092, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171093, - 171093, - null - ], - [ - "dimension-token", - "1rem", - 171094, - 171097, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171098, - 171098, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171099, - 171107, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171108, - 171108, - null - ], - [ - "delim-token", - ".", - 171109, - 171109, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-4", - 171110, - 171116, - { - "value": "mb-md-4" - } - ], - [ - "{-token", - "{", - 171117, - 171117, - null - ], - [ - "ident-token", - "margin-bottom", - 171118, - 171130, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171131, - 171131, - null - ], - [ - "dimension-token", - "1.5rem", - 171132, - 171137, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171138, - 171138, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171139, - 171147, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171148, - 171148, - null - ], - [ - "delim-token", - ".", - 171149, - 171149, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-5", - 171150, - 171156, - { - "value": "mb-md-5" - } - ], - [ - "{-token", - "{", - 171157, - 171157, - null - ], - [ - "ident-token", - "margin-bottom", - 171158, - 171170, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171171, - 171171, - null - ], - [ - "dimension-token", - "3rem", - 171172, - 171175, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171176, - 171176, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171177, - 171185, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171186, - 171186, - null - ], - [ - "delim-token", - ".", - 171187, - 171187, - { - "value": "." - } - ], - [ - "ident-token", - "mb-md-auto", - 171188, - 171197, - { - "value": "mb-md-auto" - } - ], - [ - "{-token", - "{", - 171198, - 171198, - null - ], - [ - "ident-token", - "margin-bottom", - 171199, - 171211, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 171212, - 171212, - null - ], - [ - "ident-token", - "auto", - 171213, - 171216, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 171217, - 171217, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171218, - 171226, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171227, - 171227, - null - ], - [ - "delim-token", - ".", - 171228, - 171228, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-0", - 171229, - 171235, - { - "value": "ms-md-0" - } - ], - [ - "{-token", - "{", - 171236, - 171236, - null - ], - [ - "ident-token", - "margin-left", - 171237, - 171247, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171248, - 171248, - null - ], - [ - "number-token", - "0", - 171249, - 171249, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 171250, - 171250, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171251, - 171259, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171260, - 171260, - null - ], - [ - "delim-token", - ".", - 171261, - 171261, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-1", - 171262, - 171268, - { - "value": "ms-md-1" - } - ], - [ - "{-token", - "{", - 171269, - 171269, - null - ], - [ - "ident-token", - "margin-left", - 171270, - 171280, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171281, - 171281, - null - ], - [ - "dimension-token", - ".25rem", - 171282, - 171287, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171288, - 171288, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171289, - 171297, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171298, - 171298, - null - ], - [ - "delim-token", - ".", - 171299, - 171299, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-2", - 171300, - 171306, - { - "value": "ms-md-2" - } - ], - [ - "{-token", - "{", - 171307, - 171307, - null - ], - [ - "ident-token", - "margin-left", - 171308, - 171318, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171319, - 171319, - null - ], - [ - "dimension-token", - ".5rem", - 171320, - 171324, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171325, - 171325, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171326, - 171334, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171335, - 171335, - null - ], - [ - "delim-token", - ".", - 171336, - 171336, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-3", - 171337, - 171343, - { - "value": "ms-md-3" - } - ], - [ - "{-token", - "{", - 171344, - 171344, - null - ], - [ - "ident-token", - "margin-left", - 171345, - 171355, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171356, - 171356, - null - ], - [ - "dimension-token", - "1rem", - 171357, - 171360, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171361, - 171361, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171362, - 171370, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171371, - 171371, - null - ], - [ - "delim-token", - ".", - 171372, - 171372, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-4", - 171373, - 171379, - { - "value": "ms-md-4" - } - ], - [ - "{-token", - "{", - 171380, - 171380, - null - ], - [ - "ident-token", - "margin-left", - 171381, - 171391, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171392, - 171392, - null - ], - [ - "dimension-token", - "1.5rem", - 171393, - 171398, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171399, - 171399, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171400, - 171408, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171409, - 171409, - null - ], - [ - "delim-token", - ".", - 171410, - 171410, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-5", - 171411, - 171417, - { - "value": "ms-md-5" - } - ], - [ - "{-token", - "{", - 171418, - 171418, - null - ], - [ - "ident-token", - "margin-left", - 171419, - 171429, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171430, - 171430, - null - ], - [ - "dimension-token", - "3rem", - 171431, - 171434, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171435, - 171435, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171436, - 171444, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171445, - 171445, - null - ], - [ - "delim-token", - ".", - 171446, - 171446, - { - "value": "." - } - ], - [ - "ident-token", - "ms-md-auto", - 171447, - 171456, - { - "value": "ms-md-auto" - } - ], - [ - "{-token", - "{", - 171457, - 171457, - null - ], - [ - "ident-token", - "margin-left", - 171458, - 171468, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 171469, - 171469, - null - ], - [ - "ident-token", - "auto", - 171470, - 171473, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 171474, - 171474, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171475, - 171483, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171484, - 171484, - null - ], - [ - "delim-token", - ".", - 171485, - 171485, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-0", - 171486, - 171491, - { - "value": "p-md-0" - } - ], - [ - "{-token", - "{", - 171492, - 171492, - null - ], - [ - "ident-token", - "padding", - 171493, - 171499, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171500, - 171500, - null - ], - [ - "number-token", - "0", - 171501, - 171501, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 171502, - 171502, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171503, - 171511, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171512, - 171512, - null - ], - [ - "delim-token", - ".", - 171513, - 171513, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-1", - 171514, - 171519, - { - "value": "p-md-1" - } - ], - [ - "{-token", - "{", - 171520, - 171520, - null - ], - [ - "ident-token", - "padding", - 171521, - 171527, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171528, - 171528, - null - ], - [ - "dimension-token", - ".25rem", - 171529, - 171534, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171535, - 171535, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171536, - 171544, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171545, - 171545, - null - ], - [ - "delim-token", - ".", - 171546, - 171546, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-2", - 171547, - 171552, - { - "value": "p-md-2" - } - ], - [ - "{-token", - "{", - 171553, - 171553, - null - ], - [ - "ident-token", - "padding", - 171554, - 171560, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171561, - 171561, - null - ], - [ - "dimension-token", - ".5rem", - 171562, - 171566, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171567, - 171567, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171568, - 171576, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171577, - 171577, - null - ], - [ - "delim-token", - ".", - 171578, - 171578, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-3", - 171579, - 171584, - { - "value": "p-md-3" - } - ], - [ - "{-token", - "{", - 171585, - 171585, - null - ], - [ - "ident-token", - "padding", - 171586, - 171592, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171593, - 171593, - null - ], - [ - "dimension-token", - "1rem", - 171594, - 171597, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171598, - 171598, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171599, - 171607, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171608, - 171608, - null - ], - [ - "delim-token", - ".", - 171609, - 171609, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-4", - 171610, - 171615, - { - "value": "p-md-4" - } - ], - [ - "{-token", - "{", - 171616, - 171616, - null - ], - [ - "ident-token", - "padding", - 171617, - 171623, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171624, - 171624, - null - ], - [ - "dimension-token", - "1.5rem", - 171625, - 171630, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171631, - 171631, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171632, - 171640, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171641, - 171641, - null - ], - [ - "delim-token", - ".", - 171642, - 171642, - { - "value": "." - } - ], - [ - "ident-token", - "p-md-5", - 171643, - 171648, - { - "value": "p-md-5" - } - ], - [ - "{-token", - "{", - 171649, - 171649, - null - ], - [ - "ident-token", - "padding", - 171650, - 171656, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 171657, - 171657, - null - ], - [ - "dimension-token", - "3rem", - 171658, - 171661, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171662, - 171662, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171663, - 171671, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171672, - 171672, - null - ], - [ - "delim-token", - ".", - 171673, - 171673, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-0", - 171674, - 171680, - { - "value": "px-md-0" - } - ], - [ - "{-token", - "{", - 171681, - 171681, - null - ], - [ - "ident-token", - "padding-right", - 171682, - 171694, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 171695, - 171695, - null - ], - [ - "number-token", - "0", - 171696, - 171696, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 171697, - 171697, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171698, - 171706, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 171707, - 171707, - null - ], - [ - "ident-token", - "padding-left", - 171708, - 171719, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 171720, - 171720, - null - ], - [ - "number-token", - "0", - 171721, - 171721, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 171722, - 171722, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171723, - 171731, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171732, - 171732, - null - ], - [ - "delim-token", - ".", - 171733, - 171733, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-1", - 171734, - 171740, - { - "value": "px-md-1" - } - ], - [ - "{-token", - "{", - 171741, - 171741, - null - ], - [ - "ident-token", - "padding-right", - 171742, - 171754, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 171755, - 171755, - null - ], - [ - "dimension-token", - ".25rem", - 171756, - 171761, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171762, - 171762, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171763, - 171771, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 171772, - 171772, - null - ], - [ - "ident-token", - "padding-left", - 171773, - 171784, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 171785, - 171785, - null - ], - [ - "dimension-token", - ".25rem", - 171786, - 171791, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171792, - 171792, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171793, - 171801, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171802, - 171802, - null - ], - [ - "delim-token", - ".", - 171803, - 171803, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-2", - 171804, - 171810, - { - "value": "px-md-2" - } - ], - [ - "{-token", - "{", - 171811, - 171811, - null - ], - [ - "ident-token", - "padding-right", - 171812, - 171824, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 171825, - 171825, - null - ], - [ - "dimension-token", - ".5rem", - 171826, - 171830, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171831, - 171831, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171832, - 171840, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 171841, - 171841, - null - ], - [ - "ident-token", - "padding-left", - 171842, - 171853, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 171854, - 171854, - null - ], - [ - "dimension-token", - ".5rem", - 171855, - 171859, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171860, - 171860, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171861, - 171869, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171870, - 171870, - null - ], - [ - "delim-token", - ".", - 171871, - 171871, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-3", - 171872, - 171878, - { - "value": "px-md-3" - } - ], - [ - "{-token", - "{", - 171879, - 171879, - null - ], - [ - "ident-token", - "padding-right", - 171880, - 171892, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 171893, - 171893, - null - ], - [ - "dimension-token", - "1rem", - 171894, - 171897, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171898, - 171898, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171899, - 171907, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 171908, - 171908, - null - ], - [ - "ident-token", - "padding-left", - 171909, - 171920, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 171921, - 171921, - null - ], - [ - "dimension-token", - "1rem", - 171922, - 171925, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171926, - 171926, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171927, - 171935, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 171936, - 171936, - null - ], - [ - "delim-token", - ".", - 171937, - 171937, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-4", - 171938, - 171944, - { - "value": "px-md-4" - } - ], - [ - "{-token", - "{", - 171945, - 171945, - null - ], - [ - "ident-token", - "padding-right", - 171946, - 171958, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 171959, - 171959, - null - ], - [ - "dimension-token", - "1.5rem", - 171960, - 171965, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171966, - 171966, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171967, - 171975, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 171976, - 171976, - null - ], - [ - "ident-token", - "padding-left", - 171977, - 171988, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 171989, - 171989, - null - ], - [ - "dimension-token", - "1.5rem", - 171990, - 171995, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 171996, - 171996, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 171997, - 172005, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172006, - 172006, - null - ], - [ - "delim-token", - ".", - 172007, - 172007, - { - "value": "." - } - ], - [ - "ident-token", - "px-md-5", - 172008, - 172014, - { - "value": "px-md-5" - } - ], - [ - "{-token", - "{", - 172015, - 172015, - null - ], - [ - "ident-token", - "padding-right", - 172016, - 172028, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172029, - 172029, - null - ], - [ - "dimension-token", - "3rem", - 172030, - 172033, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172034, - 172034, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172035, - 172043, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172044, - 172044, - null - ], - [ - "ident-token", - "padding-left", - 172045, - 172056, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 172057, - 172057, - null - ], - [ - "dimension-token", - "3rem", - 172058, - 172061, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172062, - 172062, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172063, - 172071, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172072, - 172072, - null - ], - [ - "delim-token", - ".", - 172073, - 172073, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-0", - 172074, - 172080, - { - "value": "py-md-0" - } - ], - [ - "{-token", - "{", - 172081, - 172081, - null - ], - [ - "ident-token", - "padding-top", - 172082, - 172092, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172093, - 172093, - null - ], - [ - "number-token", - "0", - 172094, - 172094, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 172095, - 172095, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172096, - 172104, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172105, - 172105, - null - ], - [ - "ident-token", - "padding-bottom", - 172106, - 172119, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172120, - 172120, - null - ], - [ - "number-token", - "0", - 172121, - 172121, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 172122, - 172122, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172123, - 172131, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172132, - 172132, - null - ], - [ - "delim-token", - ".", - 172133, - 172133, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-1", - 172134, - 172140, - { - "value": "py-md-1" - } - ], - [ - "{-token", - "{", - 172141, - 172141, - null - ], - [ - "ident-token", - "padding-top", - 172142, - 172152, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172153, - 172153, - null - ], - [ - "dimension-token", - ".25rem", - 172154, - 172159, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172160, - 172160, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172161, - 172169, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172170, - 172170, - null - ], - [ - "ident-token", - "padding-bottom", - 172171, - 172184, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172185, - 172185, - null - ], - [ - "dimension-token", - ".25rem", - 172186, - 172191, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172192, - 172192, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172193, - 172201, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172202, - 172202, - null - ], - [ - "delim-token", - ".", - 172203, - 172203, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-2", - 172204, - 172210, - { - "value": "py-md-2" - } - ], - [ - "{-token", - "{", - 172211, - 172211, - null - ], - [ - "ident-token", - "padding-top", - 172212, - 172222, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172223, - 172223, - null - ], - [ - "dimension-token", - ".5rem", - 172224, - 172228, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172229, - 172229, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172230, - 172238, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172239, - 172239, - null - ], - [ - "ident-token", - "padding-bottom", - 172240, - 172253, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172254, - 172254, - null - ], - [ - "dimension-token", - ".5rem", - 172255, - 172259, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172260, - 172260, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172261, - 172269, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172270, - 172270, - null - ], - [ - "delim-token", - ".", - 172271, - 172271, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-3", - 172272, - 172278, - { - "value": "py-md-3" - } - ], - [ - "{-token", - "{", - 172279, - 172279, - null - ], - [ - "ident-token", - "padding-top", - 172280, - 172290, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172291, - 172291, - null - ], - [ - "dimension-token", - "1rem", - 172292, - 172295, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172296, - 172296, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172297, - 172305, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172306, - 172306, - null - ], - [ - "ident-token", - "padding-bottom", - 172307, - 172320, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172321, - 172321, - null - ], - [ - "dimension-token", - "1rem", - 172322, - 172325, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172326, - 172326, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172327, - 172335, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172336, - 172336, - null - ], - [ - "delim-token", - ".", - 172337, - 172337, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-4", - 172338, - 172344, - { - "value": "py-md-4" - } - ], - [ - "{-token", - "{", - 172345, - 172345, - null - ], - [ - "ident-token", - "padding-top", - 172346, - 172356, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172357, - 172357, - null - ], - [ - "dimension-token", - "1.5rem", - 172358, - 172363, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172364, - 172364, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172365, - 172373, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172374, - 172374, - null - ], - [ - "ident-token", - "padding-bottom", - 172375, - 172388, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172389, - 172389, - null - ], - [ - "dimension-token", - "1.5rem", - 172390, - 172395, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172396, - 172396, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172397, - 172405, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172406, - 172406, - null - ], - [ - "delim-token", - ".", - 172407, - 172407, - { - "value": "." - } - ], - [ - "ident-token", - "py-md-5", - 172408, - 172414, - { - "value": "py-md-5" - } - ], - [ - "{-token", - "{", - 172415, - 172415, - null - ], - [ - "ident-token", - "padding-top", - 172416, - 172426, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172427, - 172427, - null - ], - [ - "dimension-token", - "3rem", - 172428, - 172431, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172432, - 172432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172433, - 172441, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 172442, - 172442, - null - ], - [ - "ident-token", - "padding-bottom", - 172443, - 172456, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172457, - 172457, - null - ], - [ - "dimension-token", - "3rem", - 172458, - 172461, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172462, - 172462, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172463, - 172471, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172472, - 172472, - null - ], - [ - "delim-token", - ".", - 172473, - 172473, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-0", - 172474, - 172480, - { - "value": "pt-md-0" - } - ], - [ - "{-token", - "{", - 172481, - 172481, - null - ], - [ - "ident-token", - "padding-top", - 172482, - 172492, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172493, - 172493, - null - ], - [ - "number-token", - "0", - 172494, - 172494, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 172495, - 172495, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172496, - 172504, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172505, - 172505, - null - ], - [ - "delim-token", - ".", - 172506, - 172506, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-1", - 172507, - 172513, - { - "value": "pt-md-1" - } - ], - [ - "{-token", - "{", - 172514, - 172514, - null - ], - [ - "ident-token", - "padding-top", - 172515, - 172525, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172526, - 172526, - null - ], - [ - "dimension-token", - ".25rem", - 172527, - 172532, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172533, - 172533, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172534, - 172542, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172543, - 172543, - null - ], - [ - "delim-token", - ".", - 172544, - 172544, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-2", - 172545, - 172551, - { - "value": "pt-md-2" - } - ], - [ - "{-token", - "{", - 172552, - 172552, - null - ], - [ - "ident-token", - "padding-top", - 172553, - 172563, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172564, - 172564, - null - ], - [ - "dimension-token", - ".5rem", - 172565, - 172569, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172570, - 172570, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172571, - 172579, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172580, - 172580, - null - ], - [ - "delim-token", - ".", - 172581, - 172581, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-3", - 172582, - 172588, - { - "value": "pt-md-3" - } - ], - [ - "{-token", - "{", - 172589, - 172589, - null - ], - [ - "ident-token", - "padding-top", - 172590, - 172600, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172601, - 172601, - null - ], - [ - "dimension-token", - "1rem", - 172602, - 172605, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172606, - 172606, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172607, - 172615, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172616, - 172616, - null - ], - [ - "delim-token", - ".", - 172617, - 172617, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-4", - 172618, - 172624, - { - "value": "pt-md-4" - } - ], - [ - "{-token", - "{", - 172625, - 172625, - null - ], - [ - "ident-token", - "padding-top", - 172626, - 172636, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172637, - 172637, - null - ], - [ - "dimension-token", - "1.5rem", - 172638, - 172643, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172644, - 172644, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172645, - 172653, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172654, - 172654, - null - ], - [ - "delim-token", - ".", - 172655, - 172655, - { - "value": "." - } - ], - [ - "ident-token", - "pt-md-5", - 172656, - 172662, - { - "value": "pt-md-5" - } - ], - [ - "{-token", - "{", - 172663, - 172663, - null - ], - [ - "ident-token", - "padding-top", - 172664, - 172674, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 172675, - 172675, - null - ], - [ - "dimension-token", - "3rem", - 172676, - 172679, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172680, - 172680, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172681, - 172689, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172690, - 172690, - null - ], - [ - "delim-token", - ".", - 172691, - 172691, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-0", - 172692, - 172698, - { - "value": "pe-md-0" - } - ], - [ - "{-token", - "{", - 172699, - 172699, - null - ], - [ - "ident-token", - "padding-right", - 172700, - 172712, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172713, - 172713, - null - ], - [ - "number-token", - "0", - 172714, - 172714, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 172715, - 172715, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172716, - 172724, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172725, - 172725, - null - ], - [ - "delim-token", - ".", - 172726, - 172726, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-1", - 172727, - 172733, - { - "value": "pe-md-1" - } - ], - [ - "{-token", - "{", - 172734, - 172734, - null - ], - [ - "ident-token", - "padding-right", - 172735, - 172747, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172748, - 172748, - null - ], - [ - "dimension-token", - ".25rem", - 172749, - 172754, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172755, - 172755, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172756, - 172764, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172765, - 172765, - null - ], - [ - "delim-token", - ".", - 172766, - 172766, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-2", - 172767, - 172773, - { - "value": "pe-md-2" - } - ], - [ - "{-token", - "{", - 172774, - 172774, - null - ], - [ - "ident-token", - "padding-right", - 172775, - 172787, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172788, - 172788, - null - ], - [ - "dimension-token", - ".5rem", - 172789, - 172793, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172794, - 172794, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172795, - 172803, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172804, - 172804, - null - ], - [ - "delim-token", - ".", - 172805, - 172805, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-3", - 172806, - 172812, - { - "value": "pe-md-3" - } - ], - [ - "{-token", - "{", - 172813, - 172813, - null - ], - [ - "ident-token", - "padding-right", - 172814, - 172826, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172827, - 172827, - null - ], - [ - "dimension-token", - "1rem", - 172828, - 172831, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172832, - 172832, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172833, - 172841, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172842, - 172842, - null - ], - [ - "delim-token", - ".", - 172843, - 172843, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-4", - 172844, - 172850, - { - "value": "pe-md-4" - } - ], - [ - "{-token", - "{", - 172851, - 172851, - null - ], - [ - "ident-token", - "padding-right", - 172852, - 172864, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172865, - 172865, - null - ], - [ - "dimension-token", - "1.5rem", - 172866, - 172871, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172872, - 172872, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172873, - 172881, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172882, - 172882, - null - ], - [ - "delim-token", - ".", - 172883, - 172883, - { - "value": "." - } - ], - [ - "ident-token", - "pe-md-5", - 172884, - 172890, - { - "value": "pe-md-5" - } - ], - [ - "{-token", - "{", - 172891, - 172891, - null - ], - [ - "ident-token", - "padding-right", - 172892, - 172904, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 172905, - 172905, - null - ], - [ - "dimension-token", - "3rem", - 172906, - 172909, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172910, - 172910, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172911, - 172919, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172920, - 172920, - null - ], - [ - "delim-token", - ".", - 172921, - 172921, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-0", - 172922, - 172928, - { - "value": "pb-md-0" - } - ], - [ - "{-token", - "{", - 172929, - 172929, - null - ], - [ - "ident-token", - "padding-bottom", - 172930, - 172943, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172944, - 172944, - null - ], - [ - "number-token", - "0", - 172945, - 172945, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 172946, - 172946, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172947, - 172955, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172956, - 172956, - null - ], - [ - "delim-token", - ".", - 172957, - 172957, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-1", - 172958, - 172964, - { - "value": "pb-md-1" - } - ], - [ - "{-token", - "{", - 172965, - 172965, - null - ], - [ - "ident-token", - "padding-bottom", - 172966, - 172979, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 172980, - 172980, - null - ], - [ - "dimension-token", - ".25rem", - 172981, - 172986, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 172987, - 172987, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 172988, - 172996, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 172997, - 172997, - null - ], - [ - "delim-token", - ".", - 172998, - 172998, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-2", - 172999, - 173005, - { - "value": "pb-md-2" - } - ], - [ - "{-token", - "{", - 173006, - 173006, - null - ], - [ - "ident-token", - "padding-bottom", - 173007, - 173020, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 173021, - 173021, - null - ], - [ - "dimension-token", - ".5rem", - 173022, - 173026, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173027, - 173027, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173028, - 173036, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173037, - 173037, - null - ], - [ - "delim-token", - ".", - 173038, - 173038, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-3", - 173039, - 173045, - { - "value": "pb-md-3" - } - ], - [ - "{-token", - "{", - 173046, - 173046, - null - ], - [ - "ident-token", - "padding-bottom", - 173047, - 173060, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 173061, - 173061, - null - ], - [ - "dimension-token", - "1rem", - 173062, - 173065, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173066, - 173066, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173067, - 173075, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173076, - 173076, - null - ], - [ - "delim-token", - ".", - 173077, - 173077, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-4", - 173078, - 173084, - { - "value": "pb-md-4" - } - ], - [ - "{-token", - "{", - 173085, - 173085, - null - ], - [ - "ident-token", - "padding-bottom", - 173086, - 173099, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 173100, - 173100, - null - ], - [ - "dimension-token", - "1.5rem", - 173101, - 173106, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173107, - 173107, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173108, - 173116, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173117, - 173117, - null - ], - [ - "delim-token", - ".", - 173118, - 173118, - { - "value": "." - } - ], - [ - "ident-token", - "pb-md-5", - 173119, - 173125, - { - "value": "pb-md-5" - } - ], - [ - "{-token", - "{", - 173126, - 173126, - null - ], - [ - "ident-token", - "padding-bottom", - 173127, - 173140, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 173141, - 173141, - null - ], - [ - "dimension-token", - "3rem", - 173142, - 173145, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173146, - 173146, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173147, - 173155, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173156, - 173156, - null - ], - [ - "delim-token", - ".", - 173157, - 173157, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-0", - 173158, - 173164, - { - "value": "ps-md-0" - } - ], - [ - "{-token", - "{", - 173165, - 173165, - null - ], - [ - "ident-token", - "padding-left", - 173166, - 173177, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173178, - 173178, - null - ], - [ - "number-token", - "0", - 173179, - 173179, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 173180, - 173180, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173181, - 173189, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173190, - 173190, - null - ], - [ - "delim-token", - ".", - 173191, - 173191, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-1", - 173192, - 173198, - { - "value": "ps-md-1" - } - ], - [ - "{-token", - "{", - 173199, - 173199, - null - ], - [ - "ident-token", - "padding-left", - 173200, - 173211, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173212, - 173212, - null - ], - [ - "dimension-token", - ".25rem", - 173213, - 173218, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173219, - 173219, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173220, - 173228, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173229, - 173229, - null - ], - [ - "delim-token", - ".", - 173230, - 173230, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-2", - 173231, - 173237, - { - "value": "ps-md-2" - } - ], - [ - "{-token", - "{", - 173238, - 173238, - null - ], - [ - "ident-token", - "padding-left", - 173239, - 173250, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173251, - 173251, - null - ], - [ - "dimension-token", - ".5rem", - 173252, - 173256, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173257, - 173257, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173258, - 173266, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173267, - 173267, - null - ], - [ - "delim-token", - ".", - 173268, - 173268, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-3", - 173269, - 173275, - { - "value": "ps-md-3" - } - ], - [ - "{-token", - "{", - 173276, - 173276, - null - ], - [ - "ident-token", - "padding-left", - 173277, - 173288, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173289, - 173289, - null - ], - [ - "dimension-token", - "1rem", - 173290, - 173293, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173294, - 173294, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173295, - 173303, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173304, - 173304, - null - ], - [ - "delim-token", - ".", - 173305, - 173305, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-4", - 173306, - 173312, - { - "value": "ps-md-4" - } - ], - [ - "{-token", - "{", - 173313, - 173313, - null - ], - [ - "ident-token", - "padding-left", - 173314, - 173325, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173326, - 173326, - null - ], - [ - "dimension-token", - "1.5rem", - 173327, - 173332, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173333, - 173333, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173334, - 173342, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173343, - 173343, - null - ], - [ - "delim-token", - ".", - 173344, - 173344, - { - "value": "." - } - ], - [ - "ident-token", - "ps-md-5", - 173345, - 173351, - { - "value": "ps-md-5" - } - ], - [ - "{-token", - "{", - 173352, - 173352, - null - ], - [ - "ident-token", - "padding-left", - 173353, - 173364, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 173365, - 173365, - null - ], - [ - "dimension-token", - "3rem", - 173366, - 173369, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173370, - 173370, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173371, - 173379, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173380, - 173380, - null - ], - [ - "delim-token", - ".", - 173381, - 173381, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-0", - 173382, - 173389, - { - "value": "gap-md-0" - } - ], - [ - "{-token", - "{", - 173390, - 173390, - null - ], - [ - "ident-token", - "gap", - 173391, - 173393, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173394, - 173394, - null - ], - [ - "number-token", - "0", - 173395, - 173395, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 173396, - 173396, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173397, - 173405, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173406, - 173406, - null - ], - [ - "delim-token", - ".", - 173407, - 173407, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-1", - 173408, - 173415, - { - "value": "gap-md-1" - } - ], - [ - "{-token", - "{", - 173416, - 173416, - null - ], - [ - "ident-token", - "gap", - 173417, - 173419, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173420, - 173420, - null - ], - [ - "dimension-token", - ".25rem", - 173421, - 173426, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173427, - 173427, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173428, - 173436, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173437, - 173437, - null - ], - [ - "delim-token", - ".", - 173438, - 173438, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-2", - 173439, - 173446, - { - "value": "gap-md-2" - } - ], - [ - "{-token", - "{", - 173447, - 173447, - null - ], - [ - "ident-token", - "gap", - 173448, - 173450, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173451, - 173451, - null - ], - [ - "dimension-token", - ".5rem", - 173452, - 173456, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173457, - 173457, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173458, - 173466, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173467, - 173467, - null - ], - [ - "delim-token", - ".", - 173468, - 173468, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-3", - 173469, - 173476, - { - "value": "gap-md-3" - } - ], - [ - "{-token", - "{", - 173477, - 173477, - null - ], - [ - "ident-token", - "gap", - 173478, - 173480, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173481, - 173481, - null - ], - [ - "dimension-token", - "1rem", - 173482, - 173485, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173486, - 173486, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173487, - 173495, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173496, - 173496, - null - ], - [ - "delim-token", - ".", - 173497, - 173497, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-4", - 173498, - 173505, - { - "value": "gap-md-4" - } - ], - [ - "{-token", - "{", - 173506, - 173506, - null - ], - [ - "ident-token", - "gap", - 173507, - 173509, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173510, - 173510, - null - ], - [ - "dimension-token", - "1.5rem", - 173511, - 173516, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173517, - 173517, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173518, - 173526, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173527, - 173527, - null - ], - [ - "delim-token", - ".", - 173528, - 173528, - { - "value": "." - } - ], - [ - "ident-token", - "gap-md-5", - 173529, - 173536, - { - "value": "gap-md-5" - } - ], - [ - "{-token", - "{", - 173537, - 173537, - null - ], - [ - "ident-token", - "gap", - 173538, - 173540, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 173541, - 173541, - null - ], - [ - "dimension-token", - "3rem", - 173542, - 173545, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 173546, - 173546, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173547, - 173555, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173556, - 173556, - null - ], - [ - "delim-token", - ".", - 173557, - 173557, - { - "value": "." - } - ], - [ - "ident-token", - "text-md-start", - 173558, - 173570, - { - "value": "text-md-start" - } - ], - [ - "{-token", - "{", - 173571, - 173571, - null - ], - [ - "ident-token", - "text-align", - 173572, - 173581, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 173582, - 173582, - null - ], - [ - "ident-token", - "left", - 173583, - 173586, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 173587, - 173587, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173588, - 173596, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173597, - 173597, - null - ], - [ - "delim-token", - ".", - 173598, - 173598, - { - "value": "." - } - ], - [ - "ident-token", - "text-md-end", - 173599, - 173609, - { - "value": "text-md-end" - } - ], - [ - "{-token", - "{", - 173610, - 173610, - null - ], - [ - "ident-token", - "text-align", - 173611, - 173620, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 173621, - 173621, - null - ], - [ - "ident-token", - "right", - 173622, - 173626, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 173627, - 173627, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173628, - 173636, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173637, - 173637, - null - ], - [ - "delim-token", - ".", - 173638, - 173638, - { - "value": "." - } - ], - [ - "ident-token", - "text-md-center", - 173639, - 173652, - { - "value": "text-md-center" - } - ], - [ - "{-token", - "{", - 173653, - 173653, - null - ], - [ - "ident-token", - "text-align", - 173654, - 173663, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 173664, - 173664, - null - ], - [ - "ident-token", - "center", - 173665, - 173670, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 173671, - 173671, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173672, - 173680, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173681, - 173681, - null - ], - [ - "}-token", - "}", - 173682, - 173682, - null - ], - [ - "at-keyword-token", - "@media", - 173683, - 173688, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 173689, - 173689, - null - ], - [ - "(-token", - "(", - 173690, - 173690, - null - ], - [ - "ident-token", - "min-width", - 173691, - 173699, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 173700, - 173700, - null - ], - [ - "dimension-token", - "992px", - 173701, - 173705, - { - "value": 992, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 173706, - 173706, - null - ], - [ - "{-token", - "{", - 173707, - 173707, - null - ], - [ - "delim-token", - ".", - 173708, - 173708, - { - "value": "." - } - ], - [ - "ident-token", - "float-lg-start", - 173709, - 173722, - { - "value": "float-lg-start" - } - ], - [ - "{-token", - "{", - 173723, - 173723, - null - ], - [ - "ident-token", - "float", - 173724, - 173728, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 173729, - 173729, - null - ], - [ - "ident-token", - "left", - 173730, - 173733, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 173734, - 173734, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173735, - 173743, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173744, - 173744, - null - ], - [ - "delim-token", - ".", - 173745, - 173745, - { - "value": "." - } - ], - [ - "ident-token", - "float-lg-end", - 173746, - 173757, - { - "value": "float-lg-end" - } - ], - [ - "{-token", - "{", - 173758, - 173758, - null - ], - [ - "ident-token", - "float", - 173759, - 173763, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 173764, - 173764, - null - ], - [ - "ident-token", - "right", - 173765, - 173769, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 173770, - 173770, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173771, - 173779, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173780, - 173780, - null - ], - [ - "delim-token", - ".", - 173781, - 173781, - { - "value": "." - } - ], - [ - "ident-token", - "float-lg-none", - 173782, - 173794, - { - "value": "float-lg-none" - } - ], - [ - "{-token", - "{", - 173795, - 173795, - null - ], - [ - "ident-token", - "float", - 173796, - 173800, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 173801, - 173801, - null - ], - [ - "ident-token", - "none", - 173802, - 173805, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 173806, - 173806, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173807, - 173815, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173816, - 173816, - null - ], - [ - "delim-token", - ".", - 173817, - 173817, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-inline", - 173818, - 173828, - { - "value": "d-lg-inline" - } - ], - [ - "{-token", - "{", - 173829, - 173829, - null - ], - [ - "ident-token", - "display", - 173830, - 173836, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 173837, - 173837, - null - ], - [ - "ident-token", - "inline", - 173838, - 173843, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 173844, - 173844, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173845, - 173853, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173854, - 173854, - null - ], - [ - "delim-token", - ".", - 173855, - 173855, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-inline-block", - 173856, - 173872, - { - "value": "d-lg-inline-block" - } - ], - [ - "{-token", - "{", - 173873, - 173873, - null - ], - [ - "ident-token", - "display", - 173874, - 173880, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 173881, - 173881, - null - ], - [ - "ident-token", - "inline-block", - 173882, - 173893, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 173894, - 173894, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173895, - 173903, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173904, - 173904, - null - ], - [ - "delim-token", - ".", - 173905, - 173905, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-block", - 173906, - 173915, - { - "value": "d-lg-block" - } - ], - [ - "{-token", - "{", - 173916, - 173916, - null - ], - [ - "ident-token", - "display", - 173917, - 173923, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 173924, - 173924, - null - ], - [ - "ident-token", - "block", - 173925, - 173929, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 173930, - 173930, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173931, - 173939, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173940, - 173940, - null - ], - [ - "delim-token", - ".", - 173941, - 173941, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-grid", - 173942, - 173950, - { - "value": "d-lg-grid" - } - ], - [ - "{-token", - "{", - 173951, - 173951, - null - ], - [ - "ident-token", - "display", - 173952, - 173958, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 173959, - 173959, - null - ], - [ - "ident-token", - "grid", - 173960, - 173963, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 173964, - 173964, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 173965, - 173973, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 173974, - 173974, - null - ], - [ - "delim-token", - ".", - 173975, - 173975, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-table", - 173976, - 173985, - { - "value": "d-lg-table" - } - ], - [ - "{-token", - "{", - 173986, - 173986, - null - ], - [ - "ident-token", - "display", - 173987, - 173993, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 173994, - 173994, - null - ], - [ - "ident-token", - "table", - 173995, - 173999, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 174000, - 174000, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174001, - 174009, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174010, - 174010, - null - ], - [ - "delim-token", - ".", - 174011, - 174011, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-table-row", - 174012, - 174025, - { - "value": "d-lg-table-row" - } - ], - [ - "{-token", - "{", - 174026, - 174026, - null - ], - [ - "ident-token", - "display", - 174027, - 174033, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 174034, - 174034, - null - ], - [ - "ident-token", - "table-row", - 174035, - 174043, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 174044, - 174044, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174045, - 174053, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174054, - 174054, - null - ], - [ - "delim-token", - ".", - 174055, - 174055, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-table-cell", - 174056, - 174070, - { - "value": "d-lg-table-cell" - } - ], - [ - "{-token", - "{", - 174071, - 174071, - null - ], - [ - "ident-token", - "display", - 174072, - 174078, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 174079, - 174079, - null - ], - [ - "ident-token", - "table-cell", - 174080, - 174089, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 174090, - 174090, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174091, - 174099, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174100, - 174100, - null - ], - [ - "delim-token", - ".", - 174101, - 174101, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-flex", - 174102, - 174110, - { - "value": "d-lg-flex" - } - ], - [ - "{-token", - "{", - 174111, - 174111, - null - ], - [ - "ident-token", - "display", - 174112, - 174118, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 174119, - 174119, - null - ], - [ - "ident-token", - "flex", - 174120, - 174123, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 174124, - 174124, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174125, - 174133, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174134, - 174134, - null - ], - [ - "delim-token", - ".", - 174135, - 174135, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-inline-flex", - 174136, - 174151, - { - "value": "d-lg-inline-flex" - } - ], - [ - "{-token", - "{", - 174152, - 174152, - null - ], - [ - "ident-token", - "display", - 174153, - 174159, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 174160, - 174160, - null - ], - [ - "ident-token", - "inline-flex", - 174161, - 174171, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 174172, - 174172, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174173, - 174181, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174182, - 174182, - null - ], - [ - "delim-token", - ".", - 174183, - 174183, - { - "value": "." - } - ], - [ - "ident-token", - "d-lg-none", - 174184, - 174192, - { - "value": "d-lg-none" - } - ], - [ - "{-token", - "{", - 174193, - 174193, - null - ], - [ - "ident-token", - "display", - 174194, - 174200, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 174201, - 174201, - null - ], - [ - "ident-token", - "none", - 174202, - 174205, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 174206, - 174206, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174207, - 174215, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174216, - 174216, - null - ], - [ - "delim-token", - ".", - 174217, - 174217, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-fill", - 174218, - 174229, - { - "value": "flex-lg-fill" - } - ], - [ - "{-token", - "{", - 174230, - 174230, - null - ], - [ - "ident-token", - "flex", - 174231, - 174234, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 174235, - 174235, - null - ], - [ - "number-token", - "1", - 174236, - 174236, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 174237, - 174237, - null - ], - [ - "number-token", - "1", - 174238, - 174238, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 174239, - 174239, - null - ], - [ - "ident-token", - "auto", - 174240, - 174243, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 174244, - 174244, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174245, - 174253, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174254, - 174254, - null - ], - [ - "delim-token", - ".", - 174255, - 174255, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-row", - 174256, - 174266, - { - "value": "flex-lg-row" - } - ], - [ - "{-token", - "{", - 174267, - 174267, - null - ], - [ - "ident-token", - "flex-direction", - 174268, - 174281, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 174282, - 174282, - null - ], - [ - "ident-token", - "row", - 174283, - 174285, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 174286, - 174286, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174287, - 174295, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174296, - 174296, - null - ], - [ - "delim-token", - ".", - 174297, - 174297, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-column", - 174298, - 174311, - { - "value": "flex-lg-column" - } - ], - [ - "{-token", - "{", - 174312, - 174312, - null - ], - [ - "ident-token", - "flex-direction", - 174313, - 174326, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 174327, - 174327, - null - ], - [ - "ident-token", - "column", - 174328, - 174333, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 174334, - 174334, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174335, - 174343, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174344, - 174344, - null - ], - [ - "delim-token", - ".", - 174345, - 174345, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-row-reverse", - 174346, - 174364, - { - "value": "flex-lg-row-reverse" - } - ], - [ - "{-token", - "{", - 174365, - 174365, - null - ], - [ - "ident-token", - "flex-direction", - 174366, - 174379, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 174380, - 174380, - null - ], - [ - "ident-token", - "row-reverse", - 174381, - 174391, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 174392, - 174392, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174393, - 174401, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174402, - 174402, - null - ], - [ - "delim-token", - ".", - 174403, - 174403, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-column-reverse", - 174404, - 174425, - { - "value": "flex-lg-column-reverse" - } - ], - [ - "{-token", - "{", - 174426, - 174426, - null - ], - [ - "ident-token", - "flex-direction", - 174427, - 174440, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 174441, - 174441, - null - ], - [ - "ident-token", - "column-reverse", - 174442, - 174455, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 174456, - 174456, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174457, - 174465, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174466, - 174466, - null - ], - [ - "delim-token", - ".", - 174467, - 174467, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-grow-0", - 174468, - 174481, - { - "value": "flex-lg-grow-0" - } - ], - [ - "{-token", - "{", - 174482, - 174482, - null - ], - [ - "ident-token", - "flex-grow", - 174483, - 174491, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 174492, - 174492, - null - ], - [ - "number-token", - "0", - 174493, - 174493, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 174494, - 174494, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174495, - 174503, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174504, - 174504, - null - ], - [ - "delim-token", - ".", - 174505, - 174505, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-grow-1", - 174506, - 174519, - { - "value": "flex-lg-grow-1" - } - ], - [ - "{-token", - "{", - 174520, - 174520, - null - ], - [ - "ident-token", - "flex-grow", - 174521, - 174529, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 174530, - 174530, - null - ], - [ - "number-token", - "1", - 174531, - 174531, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 174532, - 174532, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174533, - 174541, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174542, - 174542, - null - ], - [ - "delim-token", - ".", - 174543, - 174543, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-shrink-0", - 174544, - 174559, - { - "value": "flex-lg-shrink-0" - } - ], - [ - "{-token", - "{", - 174560, - 174560, - null - ], - [ - "ident-token", - "flex-shrink", - 174561, - 174571, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 174572, - 174572, - null - ], - [ - "number-token", - "0", - 174573, - 174573, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 174574, - 174574, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174575, - 174583, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174584, - 174584, - null - ], - [ - "delim-token", - ".", - 174585, - 174585, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-shrink-1", - 174586, - 174601, - { - "value": "flex-lg-shrink-1" - } - ], - [ - "{-token", - "{", - 174602, - 174602, - null - ], - [ - "ident-token", - "flex-shrink", - 174603, - 174613, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 174614, - 174614, - null - ], - [ - "number-token", - "1", - 174615, - 174615, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 174616, - 174616, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174617, - 174625, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174626, - 174626, - null - ], - [ - "delim-token", - ".", - 174627, - 174627, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-wrap", - 174628, - 174639, - { - "value": "flex-lg-wrap" - } - ], - [ - "{-token", - "{", - 174640, - 174640, - null - ], - [ - "ident-token", - "flex-wrap", - 174641, - 174649, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 174650, - 174650, - null - ], - [ - "ident-token", - "wrap", - 174651, - 174654, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 174655, - 174655, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174656, - 174664, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174665, - 174665, - null - ], - [ - "delim-token", - ".", - 174666, - 174666, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-nowrap", - 174667, - 174680, - { - "value": "flex-lg-nowrap" - } - ], - [ - "{-token", - "{", - 174681, - 174681, - null - ], - [ - "ident-token", - "flex-wrap", - 174682, - 174690, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 174691, - 174691, - null - ], - [ - "ident-token", - "nowrap", - 174692, - 174697, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 174698, - 174698, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174699, - 174707, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174708, - 174708, - null - ], - [ - "delim-token", - ".", - 174709, - 174709, - { - "value": "." - } - ], - [ - "ident-token", - "flex-lg-wrap-reverse", - 174710, - 174729, - { - "value": "flex-lg-wrap-reverse" - } - ], - [ - "{-token", - "{", - 174730, - 174730, - null - ], - [ - "ident-token", - "flex-wrap", - 174731, - 174739, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 174740, - 174740, - null - ], - [ - "ident-token", - "wrap-reverse", - 174741, - 174752, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 174753, - 174753, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174754, - 174762, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174763, - 174763, - null - ], - [ - "delim-token", - ".", - 174764, - 174764, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-start", - 174765, - 174788, - { - "value": "justify-content-lg-start" - } - ], - [ - "{-token", - "{", - 174789, - 174789, - null - ], - [ - "ident-token", - "justify-content", - 174790, - 174804, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 174805, - 174805, - null - ], - [ - "ident-token", - "flex-start", - 174806, - 174815, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 174816, - 174816, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174817, - 174825, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174826, - 174826, - null - ], - [ - "delim-token", - ".", - 174827, - 174827, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-end", - 174828, - 174849, - { - "value": "justify-content-lg-end" - } - ], - [ - "{-token", - "{", - 174850, - 174850, - null - ], - [ - "ident-token", - "justify-content", - 174851, - 174865, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 174866, - 174866, - null - ], - [ - "ident-token", - "flex-end", - 174867, - 174874, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 174875, - 174875, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174876, - 174884, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174885, - 174885, - null - ], - [ - "delim-token", - ".", - 174886, - 174886, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-center", - 174887, - 174911, - { - "value": "justify-content-lg-center" - } - ], - [ - "{-token", - "{", - 174912, - 174912, - null - ], - [ - "ident-token", - "justify-content", - 174913, - 174927, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 174928, - 174928, - null - ], - [ - "ident-token", - "center", - 174929, - 174934, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 174935, - 174935, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 174936, - 174944, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 174945, - 174945, - null - ], - [ - "delim-token", - ".", - 174946, - 174946, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-between", - 174947, - 174972, - { - "value": "justify-content-lg-between" - } - ], - [ - "{-token", - "{", - 174973, - 174973, - null - ], - [ - "ident-token", - "justify-content", - 174974, - 174988, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 174989, - 174989, - null - ], - [ - "ident-token", - "space-between", - 174990, - 175002, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 175003, - 175003, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175004, - 175012, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175013, - 175013, - null - ], - [ - "delim-token", - ".", - 175014, - 175014, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-around", - 175015, - 175039, - { - "value": "justify-content-lg-around" - } - ], - [ - "{-token", - "{", - 175040, - 175040, - null - ], - [ - "ident-token", - "justify-content", - 175041, - 175055, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 175056, - 175056, - null - ], - [ - "ident-token", - "space-around", - 175057, - 175068, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 175069, - 175069, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175070, - 175078, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175079, - 175079, - null - ], - [ - "delim-token", - ".", - 175080, - 175080, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-lg-evenly", - 175081, - 175105, - { - "value": "justify-content-lg-evenly" - } - ], - [ - "{-token", - "{", - 175106, - 175106, - null - ], - [ - "ident-token", - "justify-content", - 175107, - 175121, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 175122, - 175122, - null - ], - [ - "ident-token", - "space-evenly", - 175123, - 175134, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 175135, - 175135, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175136, - 175144, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175145, - 175145, - null - ], - [ - "delim-token", - ".", - 175146, - 175146, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-lg-start", - 175147, - 175166, - { - "value": "align-items-lg-start" - } - ], - [ - "{-token", - "{", - 175167, - 175167, - null - ], - [ - "ident-token", - "align-items", - 175168, - 175178, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 175179, - 175179, - null - ], - [ - "ident-token", - "flex-start", - 175180, - 175189, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 175190, - 175190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175191, - 175199, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175200, - 175200, - null - ], - [ - "delim-token", - ".", - 175201, - 175201, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-lg-end", - 175202, - 175219, - { - "value": "align-items-lg-end" - } - ], - [ - "{-token", - "{", - 175220, - 175220, - null - ], - [ - "ident-token", - "align-items", - 175221, - 175231, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 175232, - 175232, - null - ], - [ - "ident-token", - "flex-end", - 175233, - 175240, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 175241, - 175241, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175242, - 175250, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175251, - 175251, - null - ], - [ - "delim-token", - ".", - 175252, - 175252, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-lg-center", - 175253, - 175273, - { - "value": "align-items-lg-center" - } - ], - [ - "{-token", - "{", - 175274, - 175274, - null - ], - [ - "ident-token", - "align-items", - 175275, - 175285, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 175286, - 175286, - null - ], - [ - "ident-token", - "center", - 175287, - 175292, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 175293, - 175293, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175294, - 175302, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175303, - 175303, - null - ], - [ - "delim-token", - ".", - 175304, - 175304, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-lg-baseline", - 175305, - 175327, - { - "value": "align-items-lg-baseline" - } - ], - [ - "{-token", - "{", - 175328, - 175328, - null - ], - [ - "ident-token", - "align-items", - 175329, - 175339, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 175340, - 175340, - null - ], - [ - "ident-token", - "baseline", - 175341, - 175348, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 175349, - 175349, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175350, - 175358, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175359, - 175359, - null - ], - [ - "delim-token", - ".", - 175360, - 175360, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-lg-stretch", - 175361, - 175382, - { - "value": "align-items-lg-stretch" - } - ], - [ - "{-token", - "{", - 175383, - 175383, - null - ], - [ - "ident-token", - "align-items", - 175384, - 175394, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 175395, - 175395, - null - ], - [ - "ident-token", - "stretch", - 175396, - 175402, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 175403, - 175403, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175404, - 175412, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175413, - 175413, - null - ], - [ - "delim-token", - ".", - 175414, - 175414, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-start", - 175415, - 175436, - { - "value": "align-content-lg-start" - } - ], - [ - "{-token", - "{", - 175437, - 175437, - null - ], - [ - "ident-token", - "align-content", - 175438, - 175450, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175451, - 175451, - null - ], - [ - "ident-token", - "flex-start", - 175452, - 175461, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 175462, - 175462, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175463, - 175471, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175472, - 175472, - null - ], - [ - "delim-token", - ".", - 175473, - 175473, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-end", - 175474, - 175493, - { - "value": "align-content-lg-end" - } - ], - [ - "{-token", - "{", - 175494, - 175494, - null - ], - [ - "ident-token", - "align-content", - 175495, - 175507, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175508, - 175508, - null - ], - [ - "ident-token", - "flex-end", - 175509, - 175516, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 175517, - 175517, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175518, - 175526, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175527, - 175527, - null - ], - [ - "delim-token", - ".", - 175528, - 175528, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-center", - 175529, - 175551, - { - "value": "align-content-lg-center" - } - ], - [ - "{-token", - "{", - 175552, - 175552, - null - ], - [ - "ident-token", - "align-content", - 175553, - 175565, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175566, - 175566, - null - ], - [ - "ident-token", - "center", - 175567, - 175572, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 175573, - 175573, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175574, - 175582, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175583, - 175583, - null - ], - [ - "delim-token", - ".", - 175584, - 175584, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-between", - 175585, - 175608, - { - "value": "align-content-lg-between" - } - ], - [ - "{-token", - "{", - 175609, - 175609, - null - ], - [ - "ident-token", - "align-content", - 175610, - 175622, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175623, - 175623, - null - ], - [ - "ident-token", - "space-between", - 175624, - 175636, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 175637, - 175637, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175638, - 175646, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175647, - 175647, - null - ], - [ - "delim-token", - ".", - 175648, - 175648, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-around", - 175649, - 175671, - { - "value": "align-content-lg-around" - } - ], - [ - "{-token", - "{", - 175672, - 175672, - null - ], - [ - "ident-token", - "align-content", - 175673, - 175685, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175686, - 175686, - null - ], - [ - "ident-token", - "space-around", - 175687, - 175698, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 175699, - 175699, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175700, - 175708, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175709, - 175709, - null - ], - [ - "delim-token", - ".", - 175710, - 175710, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-lg-stretch", - 175711, - 175734, - { - "value": "align-content-lg-stretch" - } - ], - [ - "{-token", - "{", - 175735, - 175735, - null - ], - [ - "ident-token", - "align-content", - 175736, - 175748, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 175749, - 175749, - null - ], - [ - "ident-token", - "stretch", - 175750, - 175756, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 175757, - 175757, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175758, - 175766, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175767, - 175767, - null - ], - [ - "delim-token", - ".", - 175768, - 175768, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-auto", - 175769, - 175786, - { - "value": "align-self-lg-auto" - } - ], - [ - "{-token", - "{", - 175787, - 175787, - null - ], - [ - "ident-token", - "align-self", - 175788, - 175797, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 175798, - 175798, - null - ], - [ - "ident-token", - "auto", - 175799, - 175802, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 175803, - 175803, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175804, - 175812, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175813, - 175813, - null - ], - [ - "delim-token", - ".", - 175814, - 175814, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-start", - 175815, - 175833, - { - "value": "align-self-lg-start" - } - ], - [ - "{-token", - "{", - 175834, - 175834, - null - ], - [ - "ident-token", - "align-self", - 175835, - 175844, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 175845, - 175845, - null - ], - [ - "ident-token", - "flex-start", - 175846, - 175855, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 175856, - 175856, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175857, - 175865, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175866, - 175866, - null - ], - [ - "delim-token", - ".", - 175867, - 175867, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-end", - 175868, - 175884, - { - "value": "align-self-lg-end" - } - ], - [ - "{-token", - "{", - 175885, - 175885, - null - ], - [ - "ident-token", - "align-self", - 175886, - 175895, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 175896, - 175896, - null - ], - [ - "ident-token", - "flex-end", - 175897, - 175904, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 175905, - 175905, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175906, - 175914, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175915, - 175915, - null - ], - [ - "delim-token", - ".", - 175916, - 175916, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-center", - 175917, - 175936, - { - "value": "align-self-lg-center" - } - ], - [ - "{-token", - "{", - 175937, - 175937, - null - ], - [ - "ident-token", - "align-self", - 175938, - 175947, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 175948, - 175948, - null - ], - [ - "ident-token", - "center", - 175949, - 175954, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 175955, - 175955, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 175956, - 175964, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 175965, - 175965, - null - ], - [ - "delim-token", - ".", - 175966, - 175966, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-baseline", - 175967, - 175988, - { - "value": "align-self-lg-baseline" - } - ], - [ - "{-token", - "{", - 175989, - 175989, - null - ], - [ - "ident-token", - "align-self", - 175990, - 175999, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 176000, - 176000, - null - ], - [ - "ident-token", - "baseline", - 176001, - 176008, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 176009, - 176009, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176010, - 176018, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176019, - 176019, - null - ], - [ - "delim-token", - ".", - 176020, - 176020, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-lg-stretch", - 176021, - 176041, - { - "value": "align-self-lg-stretch" - } - ], - [ - "{-token", - "{", - 176042, - 176042, - null - ], - [ - "ident-token", - "align-self", - 176043, - 176052, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 176053, - 176053, - null - ], - [ - "ident-token", - "stretch", - 176054, - 176060, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 176061, - 176061, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176062, - 176070, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176071, - 176071, - null - ], - [ - "delim-token", - ".", - 176072, - 176072, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-first", - 176073, - 176086, - { - "value": "order-lg-first" - } - ], - [ - "{-token", - "{", - 176087, - 176087, - null - ], - [ - "ident-token", - "order", - 176088, - 176092, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176093, - 176093, - null - ], - [ - "number-token", - "-1", - 176094, - 176095, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176096, - 176096, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176097, - 176105, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176106, - 176106, - null - ], - [ - "delim-token", - ".", - 176107, - 176107, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-0", - 176108, - 176117, - { - "value": "order-lg-0" - } - ], - [ - "{-token", - "{", - 176118, - 176118, - null - ], - [ - "ident-token", - "order", - 176119, - 176123, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176124, - 176124, - null - ], - [ - "number-token", - "0", - 176125, - 176125, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176126, - 176126, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176127, - 176135, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176136, - 176136, - null - ], - [ - "delim-token", - ".", - 176137, - 176137, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-1", - 176138, - 176147, - { - "value": "order-lg-1" - } - ], - [ - "{-token", - "{", - 176148, - 176148, - null - ], - [ - "ident-token", - "order", - 176149, - 176153, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176154, - 176154, - null - ], - [ - "number-token", - "1", - 176155, - 176155, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176156, - 176156, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176157, - 176165, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176166, - 176166, - null - ], - [ - "delim-token", - ".", - 176167, - 176167, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-2", - 176168, - 176177, - { - "value": "order-lg-2" - } - ], - [ - "{-token", - "{", - 176178, - 176178, - null - ], - [ - "ident-token", - "order", - 176179, - 176183, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176184, - 176184, - null - ], - [ - "number-token", - "2", - 176185, - 176185, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176186, - 176186, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176187, - 176195, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176196, - 176196, - null - ], - [ - "delim-token", - ".", - 176197, - 176197, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-3", - 176198, - 176207, - { - "value": "order-lg-3" - } - ], - [ - "{-token", - "{", - 176208, - 176208, - null - ], - [ - "ident-token", - "order", - 176209, - 176213, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176214, - 176214, - null - ], - [ - "number-token", - "3", - 176215, - 176215, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176216, - 176216, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176217, - 176225, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176226, - 176226, - null - ], - [ - "delim-token", - ".", - 176227, - 176227, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-4", - 176228, - 176237, - { - "value": "order-lg-4" - } - ], - [ - "{-token", - "{", - 176238, - 176238, - null - ], - [ - "ident-token", - "order", - 176239, - 176243, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176244, - 176244, - null - ], - [ - "number-token", - "4", - 176245, - 176245, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176246, - 176246, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176247, - 176255, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176256, - 176256, - null - ], - [ - "delim-token", - ".", - 176257, - 176257, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-5", - 176258, - 176267, - { - "value": "order-lg-5" - } - ], - [ - "{-token", - "{", - 176268, - 176268, - null - ], - [ - "ident-token", - "order", - 176269, - 176273, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176274, - 176274, - null - ], - [ - "number-token", - "5", - 176275, - 176275, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176276, - 176276, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176277, - 176285, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176286, - 176286, - null - ], - [ - "delim-token", - ".", - 176287, - 176287, - { - "value": "." - } - ], - [ - "ident-token", - "order-lg-last", - 176288, - 176300, - { - "value": "order-lg-last" - } - ], - [ - "{-token", - "{", - 176301, - 176301, - null - ], - [ - "ident-token", - "order", - 176302, - 176306, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 176307, - 176307, - null - ], - [ - "number-token", - "6", - 176308, - 176308, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176309, - 176309, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176310, - 176318, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176319, - 176319, - null - ], - [ - "delim-token", - ".", - 176320, - 176320, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-0", - 176321, - 176326, - { - "value": "m-lg-0" - } - ], - [ - "{-token", - "{", - 176327, - 176327, - null - ], - [ - "ident-token", - "margin", - 176328, - 176333, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176334, - 176334, - null - ], - [ - "number-token", - "0", - 176335, - 176335, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176336, - 176336, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176337, - 176345, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176346, - 176346, - null - ], - [ - "delim-token", - ".", - 176347, - 176347, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-1", - 176348, - 176353, - { - "value": "m-lg-1" - } - ], - [ - "{-token", - "{", - 176354, - 176354, - null - ], - [ - "ident-token", - "margin", - 176355, - 176360, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176361, - 176361, - null - ], - [ - "dimension-token", - ".25rem", - 176362, - 176367, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176368, - 176368, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176369, - 176377, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176378, - 176378, - null - ], - [ - "delim-token", - ".", - 176379, - 176379, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-2", - 176380, - 176385, - { - "value": "m-lg-2" - } - ], - [ - "{-token", - "{", - 176386, - 176386, - null - ], - [ - "ident-token", - "margin", - 176387, - 176392, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176393, - 176393, - null - ], - [ - "dimension-token", - ".5rem", - 176394, - 176398, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176399, - 176399, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176400, - 176408, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176409, - 176409, - null - ], - [ - "delim-token", - ".", - 176410, - 176410, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-3", - 176411, - 176416, - { - "value": "m-lg-3" - } - ], - [ - "{-token", - "{", - 176417, - 176417, - null - ], - [ - "ident-token", - "margin", - 176418, - 176423, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176424, - 176424, - null - ], - [ - "dimension-token", - "1rem", - 176425, - 176428, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176429, - 176429, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176430, - 176438, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176439, - 176439, - null - ], - [ - "delim-token", - ".", - 176440, - 176440, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-4", - 176441, - 176446, - { - "value": "m-lg-4" - } - ], - [ - "{-token", - "{", - 176447, - 176447, - null - ], - [ - "ident-token", - "margin", - 176448, - 176453, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176454, - 176454, - null - ], - [ - "dimension-token", - "1.5rem", - 176455, - 176460, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176461, - 176461, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176462, - 176470, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176471, - 176471, - null - ], - [ - "delim-token", - ".", - 176472, - 176472, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-5", - 176473, - 176478, - { - "value": "m-lg-5" - } - ], - [ - "{-token", - "{", - 176479, - 176479, - null - ], - [ - "ident-token", - "margin", - 176480, - 176485, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176486, - 176486, - null - ], - [ - "dimension-token", - "3rem", - 176487, - 176490, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176491, - 176491, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176492, - 176500, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176501, - 176501, - null - ], - [ - "delim-token", - ".", - 176502, - 176502, - { - "value": "." - } - ], - [ - "ident-token", - "m-lg-auto", - 176503, - 176511, - { - "value": "m-lg-auto" - } - ], - [ - "{-token", - "{", - 176512, - 176512, - null - ], - [ - "ident-token", - "margin", - 176513, - 176518, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 176519, - 176519, - null - ], - [ - "ident-token", - "auto", - 176520, - 176523, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 176524, - 176524, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176525, - 176533, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176534, - 176534, - null - ], - [ - "delim-token", - ".", - 176535, - 176535, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-0", - 176536, - 176542, - { - "value": "mx-lg-0" - } - ], - [ - "{-token", - "{", - 176543, - 176543, - null - ], - [ - "ident-token", - "margin-right", - 176544, - 176555, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176556, - 176556, - null - ], - [ - "number-token", - "0", - 176557, - 176557, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176558, - 176558, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176559, - 176567, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176568, - 176568, - null - ], - [ - "ident-token", - "margin-left", - 176569, - 176579, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176580, - 176580, - null - ], - [ - "number-token", - "0", - 176581, - 176581, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 176582, - 176582, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176583, - 176591, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176592, - 176592, - null - ], - [ - "delim-token", - ".", - 176593, - 176593, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-1", - 176594, - 176600, - { - "value": "mx-lg-1" - } - ], - [ - "{-token", - "{", - 176601, - 176601, - null - ], - [ - "ident-token", - "margin-right", - 176602, - 176613, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176614, - 176614, - null - ], - [ - "dimension-token", - ".25rem", - 176615, - 176620, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176621, - 176621, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176622, - 176630, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176631, - 176631, - null - ], - [ - "ident-token", - "margin-left", - 176632, - 176642, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176643, - 176643, - null - ], - [ - "dimension-token", - ".25rem", - 176644, - 176649, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176650, - 176650, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176651, - 176659, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176660, - 176660, - null - ], - [ - "delim-token", - ".", - 176661, - 176661, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-2", - 176662, - 176668, - { - "value": "mx-lg-2" - } - ], - [ - "{-token", - "{", - 176669, - 176669, - null - ], - [ - "ident-token", - "margin-right", - 176670, - 176681, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176682, - 176682, - null - ], - [ - "dimension-token", - ".5rem", - 176683, - 176687, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176688, - 176688, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176689, - 176697, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176698, - 176698, - null - ], - [ - "ident-token", - "margin-left", - 176699, - 176709, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176710, - 176710, - null - ], - [ - "dimension-token", - ".5rem", - 176711, - 176715, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176716, - 176716, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176717, - 176725, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176726, - 176726, - null - ], - [ - "delim-token", - ".", - 176727, - 176727, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-3", - 176728, - 176734, - { - "value": "mx-lg-3" - } - ], - [ - "{-token", - "{", - 176735, - 176735, - null - ], - [ - "ident-token", - "margin-right", - 176736, - 176747, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176748, - 176748, - null - ], - [ - "dimension-token", - "1rem", - 176749, - 176752, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176753, - 176753, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176754, - 176762, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176763, - 176763, - null - ], - [ - "ident-token", - "margin-left", - 176764, - 176774, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176775, - 176775, - null - ], - [ - "dimension-token", - "1rem", - 176776, - 176779, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176780, - 176780, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176781, - 176789, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176790, - 176790, - null - ], - [ - "delim-token", - ".", - 176791, - 176791, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-4", - 176792, - 176798, - { - "value": "mx-lg-4" - } - ], - [ - "{-token", - "{", - 176799, - 176799, - null - ], - [ - "ident-token", - "margin-right", - 176800, - 176811, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176812, - 176812, - null - ], - [ - "dimension-token", - "1.5rem", - 176813, - 176818, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176819, - 176819, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176820, - 176828, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176829, - 176829, - null - ], - [ - "ident-token", - "margin-left", - 176830, - 176840, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176841, - 176841, - null - ], - [ - "dimension-token", - "1.5rem", - 176842, - 176847, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176848, - 176848, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176849, - 176857, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176858, - 176858, - null - ], - [ - "delim-token", - ".", - 176859, - 176859, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-5", - 176860, - 176866, - { - "value": "mx-lg-5" - } - ], - [ - "{-token", - "{", - 176867, - 176867, - null - ], - [ - "ident-token", - "margin-right", - 176868, - 176879, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176880, - 176880, - null - ], - [ - "dimension-token", - "3rem", - 176881, - 176884, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176885, - 176885, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176886, - 176894, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176895, - 176895, - null - ], - [ - "ident-token", - "margin-left", - 176896, - 176906, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176907, - 176907, - null - ], - [ - "dimension-token", - "3rem", - 176908, - 176911, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 176912, - 176912, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176913, - 176921, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176922, - 176922, - null - ], - [ - "delim-token", - ".", - 176923, - 176923, - { - "value": "." - } - ], - [ - "ident-token", - "mx-lg-auto", - 176924, - 176933, - { - "value": "mx-lg-auto" - } - ], - [ - "{-token", - "{", - 176934, - 176934, - null - ], - [ - "ident-token", - "margin-right", - 176935, - 176946, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 176947, - 176947, - null - ], - [ - "ident-token", - "auto", - 176948, - 176951, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 176952, - 176952, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176953, - 176961, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 176962, - 176962, - null - ], - [ - "ident-token", - "margin-left", - 176963, - 176973, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 176974, - 176974, - null - ], - [ - "ident-token", - "auto", - 176975, - 176978, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 176979, - 176979, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 176980, - 176988, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 176989, - 176989, - null - ], - [ - "delim-token", - ".", - 176990, - 176990, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-0", - 176991, - 176997, - { - "value": "my-lg-0" - } - ], - [ - "{-token", - "{", - 176998, - 176998, - null - ], - [ - "ident-token", - "margin-top", - 176999, - 177008, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177009, - 177009, - null - ], - [ - "number-token", - "0", - 177010, - 177010, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 177011, - 177011, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177012, - 177020, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177021, - 177021, - null - ], - [ - "ident-token", - "margin-bottom", - 177022, - 177034, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177035, - 177035, - null - ], - [ - "number-token", - "0", - 177036, - 177036, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 177037, - 177037, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177038, - 177046, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177047, - 177047, - null - ], - [ - "delim-token", - ".", - 177048, - 177048, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-1", - 177049, - 177055, - { - "value": "my-lg-1" - } - ], - [ - "{-token", - "{", - 177056, - 177056, - null - ], - [ - "ident-token", - "margin-top", - 177057, - 177066, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177067, - 177067, - null - ], - [ - "dimension-token", - ".25rem", - 177068, - 177073, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177074, - 177074, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177075, - 177083, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177084, - 177084, - null - ], - [ - "ident-token", - "margin-bottom", - 177085, - 177097, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177098, - 177098, - null - ], - [ - "dimension-token", - ".25rem", - 177099, - 177104, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177105, - 177105, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177106, - 177114, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177115, - 177115, - null - ], - [ - "delim-token", - ".", - 177116, - 177116, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-2", - 177117, - 177123, - { - "value": "my-lg-2" - } - ], - [ - "{-token", - "{", - 177124, - 177124, - null - ], - [ - "ident-token", - "margin-top", - 177125, - 177134, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177135, - 177135, - null - ], - [ - "dimension-token", - ".5rem", - 177136, - 177140, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177141, - 177141, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177142, - 177150, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177151, - 177151, - null - ], - [ - "ident-token", - "margin-bottom", - 177152, - 177164, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177165, - 177165, - null - ], - [ - "dimension-token", - ".5rem", - 177166, - 177170, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177171, - 177171, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177172, - 177180, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177181, - 177181, - null - ], - [ - "delim-token", - ".", - 177182, - 177182, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-3", - 177183, - 177189, - { - "value": "my-lg-3" - } - ], - [ - "{-token", - "{", - 177190, - 177190, - null - ], - [ - "ident-token", - "margin-top", - 177191, - 177200, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177201, - 177201, - null - ], - [ - "dimension-token", - "1rem", - 177202, - 177205, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177206, - 177206, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177207, - 177215, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177216, - 177216, - null - ], - [ - "ident-token", - "margin-bottom", - 177217, - 177229, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177230, - 177230, - null - ], - [ - "dimension-token", - "1rem", - 177231, - 177234, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177235, - 177235, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177236, - 177244, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177245, - 177245, - null - ], - [ - "delim-token", - ".", - 177246, - 177246, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-4", - 177247, - 177253, - { - "value": "my-lg-4" - } - ], - [ - "{-token", - "{", - 177254, - 177254, - null - ], - [ - "ident-token", - "margin-top", - 177255, - 177264, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177265, - 177265, - null - ], - [ - "dimension-token", - "1.5rem", - 177266, - 177271, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177272, - 177272, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177273, - 177281, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177282, - 177282, - null - ], - [ - "ident-token", - "margin-bottom", - 177283, - 177295, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177296, - 177296, - null - ], - [ - "dimension-token", - "1.5rem", - 177297, - 177302, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177303, - 177303, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177304, - 177312, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177313, - 177313, - null - ], - [ - "delim-token", - ".", - 177314, - 177314, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-5", - 177315, - 177321, - { - "value": "my-lg-5" - } - ], - [ - "{-token", - "{", - 177322, - 177322, - null - ], - [ - "ident-token", - "margin-top", - 177323, - 177332, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177333, - 177333, - null - ], - [ - "dimension-token", - "3rem", - 177334, - 177337, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177338, - 177338, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177339, - 177347, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177348, - 177348, - null - ], - [ - "ident-token", - "margin-bottom", - 177349, - 177361, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177362, - 177362, - null - ], - [ - "dimension-token", - "3rem", - 177363, - 177366, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177367, - 177367, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177368, - 177376, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177377, - 177377, - null - ], - [ - "delim-token", - ".", - 177378, - 177378, - { - "value": "." - } - ], - [ - "ident-token", - "my-lg-auto", - 177379, - 177388, - { - "value": "my-lg-auto" - } - ], - [ - "{-token", - "{", - 177389, - 177389, - null - ], - [ - "ident-token", - "margin-top", - 177390, - 177399, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177400, - 177400, - null - ], - [ - "ident-token", - "auto", - 177401, - 177404, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 177405, - 177405, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177406, - 177414, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 177415, - 177415, - null - ], - [ - "ident-token", - "margin-bottom", - 177416, - 177428, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177429, - 177429, - null - ], - [ - "ident-token", - "auto", - 177430, - 177433, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 177434, - 177434, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177435, - 177443, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177444, - 177444, - null - ], - [ - "delim-token", - ".", - 177445, - 177445, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-0", - 177446, - 177452, - { - "value": "mt-lg-0" - } - ], - [ - "{-token", - "{", - 177453, - 177453, - null - ], - [ - "ident-token", - "margin-top", - 177454, - 177463, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177464, - 177464, - null - ], - [ - "number-token", - "0", - 177465, - 177465, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 177466, - 177466, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177467, - 177475, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177476, - 177476, - null - ], - [ - "delim-token", - ".", - 177477, - 177477, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-1", - 177478, - 177484, - { - "value": "mt-lg-1" - } - ], - [ - "{-token", - "{", - 177485, - 177485, - null - ], - [ - "ident-token", - "margin-top", - 177486, - 177495, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177496, - 177496, - null - ], - [ - "dimension-token", - ".25rem", - 177497, - 177502, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177503, - 177503, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177504, - 177512, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177513, - 177513, - null - ], - [ - "delim-token", - ".", - 177514, - 177514, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-2", - 177515, - 177521, - { - "value": "mt-lg-2" - } - ], - [ - "{-token", - "{", - 177522, - 177522, - null - ], - [ - "ident-token", - "margin-top", - 177523, - 177532, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177533, - 177533, - null - ], - [ - "dimension-token", - ".5rem", - 177534, - 177538, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177539, - 177539, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177540, - 177548, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177549, - 177549, - null - ], - [ - "delim-token", - ".", - 177550, - 177550, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-3", - 177551, - 177557, - { - "value": "mt-lg-3" - } - ], - [ - "{-token", - "{", - 177558, - 177558, - null - ], - [ - "ident-token", - "margin-top", - 177559, - 177568, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177569, - 177569, - null - ], - [ - "dimension-token", - "1rem", - 177570, - 177573, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177574, - 177574, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177575, - 177583, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177584, - 177584, - null - ], - [ - "delim-token", - ".", - 177585, - 177585, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-4", - 177586, - 177592, - { - "value": "mt-lg-4" - } - ], - [ - "{-token", - "{", - 177593, - 177593, - null - ], - [ - "ident-token", - "margin-top", - 177594, - 177603, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177604, - 177604, - null - ], - [ - "dimension-token", - "1.5rem", - 177605, - 177610, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177611, - 177611, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177612, - 177620, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177621, - 177621, - null - ], - [ - "delim-token", - ".", - 177622, - 177622, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-5", - 177623, - 177629, - { - "value": "mt-lg-5" - } - ], - [ - "{-token", - "{", - 177630, - 177630, - null - ], - [ - "ident-token", - "margin-top", - 177631, - 177640, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177641, - 177641, - null - ], - [ - "dimension-token", - "3rem", - 177642, - 177645, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177646, - 177646, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177647, - 177655, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177656, - 177656, - null - ], - [ - "delim-token", - ".", - 177657, - 177657, - { - "value": "." - } - ], - [ - "ident-token", - "mt-lg-auto", - 177658, - 177667, - { - "value": "mt-lg-auto" - } - ], - [ - "{-token", - "{", - 177668, - 177668, - null - ], - [ - "ident-token", - "margin-top", - 177669, - 177678, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 177679, - 177679, - null - ], - [ - "ident-token", - "auto", - 177680, - 177683, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 177684, - 177684, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177685, - 177693, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177694, - 177694, - null - ], - [ - "delim-token", - ".", - 177695, - 177695, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-0", - 177696, - 177702, - { - "value": "me-lg-0" - } - ], - [ - "{-token", - "{", - 177703, - 177703, - null - ], - [ - "ident-token", - "margin-right", - 177704, - 177715, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177716, - 177716, - null - ], - [ - "number-token", - "0", - 177717, - 177717, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 177718, - 177718, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177719, - 177727, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177728, - 177728, - null - ], - [ - "delim-token", - ".", - 177729, - 177729, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-1", - 177730, - 177736, - { - "value": "me-lg-1" - } - ], - [ - "{-token", - "{", - 177737, - 177737, - null - ], - [ - "ident-token", - "margin-right", - 177738, - 177749, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177750, - 177750, - null - ], - [ - "dimension-token", - ".25rem", - 177751, - 177756, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177757, - 177757, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177758, - 177766, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177767, - 177767, - null - ], - [ - "delim-token", - ".", - 177768, - 177768, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-2", - 177769, - 177775, - { - "value": "me-lg-2" - } - ], - [ - "{-token", - "{", - 177776, - 177776, - null - ], - [ - "ident-token", - "margin-right", - 177777, - 177788, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177789, - 177789, - null - ], - [ - "dimension-token", - ".5rem", - 177790, - 177794, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177795, - 177795, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177796, - 177804, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177805, - 177805, - null - ], - [ - "delim-token", - ".", - 177806, - 177806, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-3", - 177807, - 177813, - { - "value": "me-lg-3" - } - ], - [ - "{-token", - "{", - 177814, - 177814, - null - ], - [ - "ident-token", - "margin-right", - 177815, - 177826, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177827, - 177827, - null - ], - [ - "dimension-token", - "1rem", - 177828, - 177831, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177832, - 177832, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177833, - 177841, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177842, - 177842, - null - ], - [ - "delim-token", - ".", - 177843, - 177843, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-4", - 177844, - 177850, - { - "value": "me-lg-4" - } - ], - [ - "{-token", - "{", - 177851, - 177851, - null - ], - [ - "ident-token", - "margin-right", - 177852, - 177863, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177864, - 177864, - null - ], - [ - "dimension-token", - "1.5rem", - 177865, - 177870, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177871, - 177871, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177872, - 177880, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177881, - 177881, - null - ], - [ - "delim-token", - ".", - 177882, - 177882, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-5", - 177883, - 177889, - { - "value": "me-lg-5" - } - ], - [ - "{-token", - "{", - 177890, - 177890, - null - ], - [ - "ident-token", - "margin-right", - 177891, - 177902, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177903, - 177903, - null - ], - [ - "dimension-token", - "3rem", - 177904, - 177907, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 177908, - 177908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177909, - 177917, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177918, - 177918, - null - ], - [ - "delim-token", - ".", - 177919, - 177919, - { - "value": "." - } - ], - [ - "ident-token", - "me-lg-auto", - 177920, - 177929, - { - "value": "me-lg-auto" - } - ], - [ - "{-token", - "{", - 177930, - 177930, - null - ], - [ - "ident-token", - "margin-right", - 177931, - 177942, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 177943, - 177943, - null - ], - [ - "ident-token", - "auto", - 177944, - 177947, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 177948, - 177948, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177949, - 177957, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177958, - 177958, - null - ], - [ - "delim-token", - ".", - 177959, - 177959, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-0", - 177960, - 177966, - { - "value": "mb-lg-0" - } - ], - [ - "{-token", - "{", - 177967, - 177967, - null - ], - [ - "ident-token", - "margin-bottom", - 177968, - 177980, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 177981, - 177981, - null - ], - [ - "number-token", - "0", - 177982, - 177982, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 177983, - 177983, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 177984, - 177992, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 177993, - 177993, - null - ], - [ - "delim-token", - ".", - 177994, - 177994, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-1", - 177995, - 178001, - { - "value": "mb-lg-1" - } - ], - [ - "{-token", - "{", - 178002, - 178002, - null - ], - [ - "ident-token", - "margin-bottom", - 178003, - 178015, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178016, - 178016, - null - ], - [ - "dimension-token", - ".25rem", - 178017, - 178022, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178023, - 178023, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178024, - 178032, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178033, - 178033, - null - ], - [ - "delim-token", - ".", - 178034, - 178034, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-2", - 178035, - 178041, - { - "value": "mb-lg-2" - } - ], - [ - "{-token", - "{", - 178042, - 178042, - null - ], - [ - "ident-token", - "margin-bottom", - 178043, - 178055, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178056, - 178056, - null - ], - [ - "dimension-token", - ".5rem", - 178057, - 178061, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178062, - 178062, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178063, - 178071, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178072, - 178072, - null - ], - [ - "delim-token", - ".", - 178073, - 178073, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-3", - 178074, - 178080, - { - "value": "mb-lg-3" - } - ], - [ - "{-token", - "{", - 178081, - 178081, - null - ], - [ - "ident-token", - "margin-bottom", - 178082, - 178094, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178095, - 178095, - null - ], - [ - "dimension-token", - "1rem", - 178096, - 178099, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178100, - 178100, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178101, - 178109, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178110, - 178110, - null - ], - [ - "delim-token", - ".", - 178111, - 178111, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-4", - 178112, - 178118, - { - "value": "mb-lg-4" - } - ], - [ - "{-token", - "{", - 178119, - 178119, - null - ], - [ - "ident-token", - "margin-bottom", - 178120, - 178132, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178133, - 178133, - null - ], - [ - "dimension-token", - "1.5rem", - 178134, - 178139, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178140, - 178140, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178141, - 178149, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178150, - 178150, - null - ], - [ - "delim-token", - ".", - 178151, - 178151, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-5", - 178152, - 178158, - { - "value": "mb-lg-5" - } - ], - [ - "{-token", - "{", - 178159, - 178159, - null - ], - [ - "ident-token", - "margin-bottom", - 178160, - 178172, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178173, - 178173, - null - ], - [ - "dimension-token", - "3rem", - 178174, - 178177, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178178, - 178178, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178179, - 178187, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178188, - 178188, - null - ], - [ - "delim-token", - ".", - 178189, - 178189, - { - "value": "." - } - ], - [ - "ident-token", - "mb-lg-auto", - 178190, - 178199, - { - "value": "mb-lg-auto" - } - ], - [ - "{-token", - "{", - 178200, - 178200, - null - ], - [ - "ident-token", - "margin-bottom", - 178201, - 178213, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 178214, - 178214, - null - ], - [ - "ident-token", - "auto", - 178215, - 178218, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 178219, - 178219, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178220, - 178228, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178229, - 178229, - null - ], - [ - "delim-token", - ".", - 178230, - 178230, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-0", - 178231, - 178237, - { - "value": "ms-lg-0" - } - ], - [ - "{-token", - "{", - 178238, - 178238, - null - ], - [ - "ident-token", - "margin-left", - 178239, - 178249, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178250, - 178250, - null - ], - [ - "number-token", - "0", - 178251, - 178251, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 178252, - 178252, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178253, - 178261, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178262, - 178262, - null - ], - [ - "delim-token", - ".", - 178263, - 178263, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-1", - 178264, - 178270, - { - "value": "ms-lg-1" - } - ], - [ - "{-token", - "{", - 178271, - 178271, - null - ], - [ - "ident-token", - "margin-left", - 178272, - 178282, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178283, - 178283, - null - ], - [ - "dimension-token", - ".25rem", - 178284, - 178289, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178290, - 178290, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178291, - 178299, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178300, - 178300, - null - ], - [ - "delim-token", - ".", - 178301, - 178301, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-2", - 178302, - 178308, - { - "value": "ms-lg-2" - } - ], - [ - "{-token", - "{", - 178309, - 178309, - null - ], - [ - "ident-token", - "margin-left", - 178310, - 178320, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178321, - 178321, - null - ], - [ - "dimension-token", - ".5rem", - 178322, - 178326, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178327, - 178327, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178328, - 178336, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178337, - 178337, - null - ], - [ - "delim-token", - ".", - 178338, - 178338, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-3", - 178339, - 178345, - { - "value": "ms-lg-3" - } - ], - [ - "{-token", - "{", - 178346, - 178346, - null - ], - [ - "ident-token", - "margin-left", - 178347, - 178357, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178358, - 178358, - null - ], - [ - "dimension-token", - "1rem", - 178359, - 178362, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178363, - 178363, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178364, - 178372, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178373, - 178373, - null - ], - [ - "delim-token", - ".", - 178374, - 178374, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-4", - 178375, - 178381, - { - "value": "ms-lg-4" - } - ], - [ - "{-token", - "{", - 178382, - 178382, - null - ], - [ - "ident-token", - "margin-left", - 178383, - 178393, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178394, - 178394, - null - ], - [ - "dimension-token", - "1.5rem", - 178395, - 178400, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178401, - 178401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178402, - 178410, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178411, - 178411, - null - ], - [ - "delim-token", - ".", - 178412, - 178412, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-5", - 178413, - 178419, - { - "value": "ms-lg-5" - } - ], - [ - "{-token", - "{", - 178420, - 178420, - null - ], - [ - "ident-token", - "margin-left", - 178421, - 178431, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178432, - 178432, - null - ], - [ - "dimension-token", - "3rem", - 178433, - 178436, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178437, - 178437, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178438, - 178446, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178447, - 178447, - null - ], - [ - "delim-token", - ".", - 178448, - 178448, - { - "value": "." - } - ], - [ - "ident-token", - "ms-lg-auto", - 178449, - 178458, - { - "value": "ms-lg-auto" - } - ], - [ - "{-token", - "{", - 178459, - 178459, - null - ], - [ - "ident-token", - "margin-left", - 178460, - 178470, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 178471, - 178471, - null - ], - [ - "ident-token", - "auto", - 178472, - 178475, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 178476, - 178476, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178477, - 178485, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178486, - 178486, - null - ], - [ - "delim-token", - ".", - 178487, - 178487, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-0", - 178488, - 178493, - { - "value": "p-lg-0" - } - ], - [ - "{-token", - "{", - 178494, - 178494, - null - ], - [ - "ident-token", - "padding", - 178495, - 178501, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178502, - 178502, - null - ], - [ - "number-token", - "0", - 178503, - 178503, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 178504, - 178504, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178505, - 178513, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178514, - 178514, - null - ], - [ - "delim-token", - ".", - 178515, - 178515, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-1", - 178516, - 178521, - { - "value": "p-lg-1" - } - ], - [ - "{-token", - "{", - 178522, - 178522, - null - ], - [ - "ident-token", - "padding", - 178523, - 178529, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178530, - 178530, - null - ], - [ - "dimension-token", - ".25rem", - 178531, - 178536, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178537, - 178537, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178538, - 178546, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178547, - 178547, - null - ], - [ - "delim-token", - ".", - 178548, - 178548, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-2", - 178549, - 178554, - { - "value": "p-lg-2" - } - ], - [ - "{-token", - "{", - 178555, - 178555, - null - ], - [ - "ident-token", - "padding", - 178556, - 178562, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178563, - 178563, - null - ], - [ - "dimension-token", - ".5rem", - 178564, - 178568, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178569, - 178569, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178570, - 178578, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178579, - 178579, - null - ], - [ - "delim-token", - ".", - 178580, - 178580, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-3", - 178581, - 178586, - { - "value": "p-lg-3" - } - ], - [ - "{-token", - "{", - 178587, - 178587, - null - ], - [ - "ident-token", - "padding", - 178588, - 178594, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178595, - 178595, - null - ], - [ - "dimension-token", - "1rem", - 178596, - 178599, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178600, - 178600, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178601, - 178609, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178610, - 178610, - null - ], - [ - "delim-token", - ".", - 178611, - 178611, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-4", - 178612, - 178617, - { - "value": "p-lg-4" - } - ], - [ - "{-token", - "{", - 178618, - 178618, - null - ], - [ - "ident-token", - "padding", - 178619, - 178625, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178626, - 178626, - null - ], - [ - "dimension-token", - "1.5rem", - 178627, - 178632, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178633, - 178633, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178634, - 178642, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178643, - 178643, - null - ], - [ - "delim-token", - ".", - 178644, - 178644, - { - "value": "." - } - ], - [ - "ident-token", - "p-lg-5", - 178645, - 178650, - { - "value": "p-lg-5" - } - ], - [ - "{-token", - "{", - 178651, - 178651, - null - ], - [ - "ident-token", - "padding", - 178652, - 178658, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 178659, - 178659, - null - ], - [ - "dimension-token", - "3rem", - 178660, - 178663, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178664, - 178664, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178665, - 178673, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178674, - 178674, - null - ], - [ - "delim-token", - ".", - 178675, - 178675, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-0", - 178676, - 178682, - { - "value": "px-lg-0" - } - ], - [ - "{-token", - "{", - 178683, - 178683, - null - ], - [ - "ident-token", - "padding-right", - 178684, - 178696, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 178697, - 178697, - null - ], - [ - "number-token", - "0", - 178698, - 178698, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 178699, - 178699, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178700, - 178708, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 178709, - 178709, - null - ], - [ - "ident-token", - "padding-left", - 178710, - 178721, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 178722, - 178722, - null - ], - [ - "number-token", - "0", - 178723, - 178723, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 178724, - 178724, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178725, - 178733, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178734, - 178734, - null - ], - [ - "delim-token", - ".", - 178735, - 178735, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-1", - 178736, - 178742, - { - "value": "px-lg-1" - } - ], - [ - "{-token", - "{", - 178743, - 178743, - null - ], - [ - "ident-token", - "padding-right", - 178744, - 178756, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 178757, - 178757, - null - ], - [ - "dimension-token", - ".25rem", - 178758, - 178763, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178764, - 178764, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178765, - 178773, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 178774, - 178774, - null - ], - [ - "ident-token", - "padding-left", - 178775, - 178786, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 178787, - 178787, - null - ], - [ - "dimension-token", - ".25rem", - 178788, - 178793, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178794, - 178794, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178795, - 178803, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178804, - 178804, - null - ], - [ - "delim-token", - ".", - 178805, - 178805, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-2", - 178806, - 178812, - { - "value": "px-lg-2" - } - ], - [ - "{-token", - "{", - 178813, - 178813, - null - ], - [ - "ident-token", - "padding-right", - 178814, - 178826, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 178827, - 178827, - null - ], - [ - "dimension-token", - ".5rem", - 178828, - 178832, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178833, - 178833, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178834, - 178842, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 178843, - 178843, - null - ], - [ - "ident-token", - "padding-left", - 178844, - 178855, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 178856, - 178856, - null - ], - [ - "dimension-token", - ".5rem", - 178857, - 178861, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178862, - 178862, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178863, - 178871, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178872, - 178872, - null - ], - [ - "delim-token", - ".", - 178873, - 178873, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-3", - 178874, - 178880, - { - "value": "px-lg-3" - } - ], - [ - "{-token", - "{", - 178881, - 178881, - null - ], - [ - "ident-token", - "padding-right", - 178882, - 178894, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 178895, - 178895, - null - ], - [ - "dimension-token", - "1rem", - 178896, - 178899, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178900, - 178900, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178901, - 178909, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 178910, - 178910, - null - ], - [ - "ident-token", - "padding-left", - 178911, - 178922, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 178923, - 178923, - null - ], - [ - "dimension-token", - "1rem", - 178924, - 178927, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178928, - 178928, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178929, - 178937, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 178938, - 178938, - null - ], - [ - "delim-token", - ".", - 178939, - 178939, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-4", - 178940, - 178946, - { - "value": "px-lg-4" - } - ], - [ - "{-token", - "{", - 178947, - 178947, - null - ], - [ - "ident-token", - "padding-right", - 178948, - 178960, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 178961, - 178961, - null - ], - [ - "dimension-token", - "1.5rem", - 178962, - 178967, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178968, - 178968, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178969, - 178977, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 178978, - 178978, - null - ], - [ - "ident-token", - "padding-left", - 178979, - 178990, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 178991, - 178991, - null - ], - [ - "dimension-token", - "1.5rem", - 178992, - 178997, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 178998, - 178998, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 178999, - 179007, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179008, - 179008, - null - ], - [ - "delim-token", - ".", - 179009, - 179009, - { - "value": "." - } - ], - [ - "ident-token", - "px-lg-5", - 179010, - 179016, - { - "value": "px-lg-5" - } - ], - [ - "{-token", - "{", - 179017, - 179017, - null - ], - [ - "ident-token", - "padding-right", - 179018, - 179030, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179031, - 179031, - null - ], - [ - "dimension-token", - "3rem", - 179032, - 179035, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179036, - 179036, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179037, - 179045, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179046, - 179046, - null - ], - [ - "ident-token", - "padding-left", - 179047, - 179058, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 179059, - 179059, - null - ], - [ - "dimension-token", - "3rem", - 179060, - 179063, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179064, - 179064, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179065, - 179073, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179074, - 179074, - null - ], - [ - "delim-token", - ".", - 179075, - 179075, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-0", - 179076, - 179082, - { - "value": "py-lg-0" - } - ], - [ - "{-token", - "{", - 179083, - 179083, - null - ], - [ - "ident-token", - "padding-top", - 179084, - 179094, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179095, - 179095, - null - ], - [ - "number-token", - "0", - 179096, - 179096, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 179097, - 179097, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179098, - 179106, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179107, - 179107, - null - ], - [ - "ident-token", - "padding-bottom", - 179108, - 179121, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179122, - 179122, - null - ], - [ - "number-token", - "0", - 179123, - 179123, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 179124, - 179124, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179125, - 179133, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179134, - 179134, - null - ], - [ - "delim-token", - ".", - 179135, - 179135, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-1", - 179136, - 179142, - { - "value": "py-lg-1" - } - ], - [ - "{-token", - "{", - 179143, - 179143, - null - ], - [ - "ident-token", - "padding-top", - 179144, - 179154, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179155, - 179155, - null - ], - [ - "dimension-token", - ".25rem", - 179156, - 179161, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179162, - 179162, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179163, - 179171, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179172, - 179172, - null - ], - [ - "ident-token", - "padding-bottom", - 179173, - 179186, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179187, - 179187, - null - ], - [ - "dimension-token", - ".25rem", - 179188, - 179193, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179194, - 179194, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179195, - 179203, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179204, - 179204, - null - ], - [ - "delim-token", - ".", - 179205, - 179205, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-2", - 179206, - 179212, - { - "value": "py-lg-2" - } - ], - [ - "{-token", - "{", - 179213, - 179213, - null - ], - [ - "ident-token", - "padding-top", - 179214, - 179224, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179225, - 179225, - null - ], - [ - "dimension-token", - ".5rem", - 179226, - 179230, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179231, - 179231, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179232, - 179240, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179241, - 179241, - null - ], - [ - "ident-token", - "padding-bottom", - 179242, - 179255, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179256, - 179256, - null - ], - [ - "dimension-token", - ".5rem", - 179257, - 179261, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179262, - 179262, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179263, - 179271, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179272, - 179272, - null - ], - [ - "delim-token", - ".", - 179273, - 179273, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-3", - 179274, - 179280, - { - "value": "py-lg-3" - } - ], - [ - "{-token", - "{", - 179281, - 179281, - null - ], - [ - "ident-token", - "padding-top", - 179282, - 179292, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179293, - 179293, - null - ], - [ - "dimension-token", - "1rem", - 179294, - 179297, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179298, - 179298, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179299, - 179307, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179308, - 179308, - null - ], - [ - "ident-token", - "padding-bottom", - 179309, - 179322, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179323, - 179323, - null - ], - [ - "dimension-token", - "1rem", - 179324, - 179327, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179328, - 179328, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179329, - 179337, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179338, - 179338, - null - ], - [ - "delim-token", - ".", - 179339, - 179339, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-4", - 179340, - 179346, - { - "value": "py-lg-4" - } - ], - [ - "{-token", - "{", - 179347, - 179347, - null - ], - [ - "ident-token", - "padding-top", - 179348, - 179358, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179359, - 179359, - null - ], - [ - "dimension-token", - "1.5rem", - 179360, - 179365, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179366, - 179366, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179367, - 179375, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179376, - 179376, - null - ], - [ - "ident-token", - "padding-bottom", - 179377, - 179390, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179391, - 179391, - null - ], - [ - "dimension-token", - "1.5rem", - 179392, - 179397, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179398, - 179398, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179399, - 179407, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179408, - 179408, - null - ], - [ - "delim-token", - ".", - 179409, - 179409, - { - "value": "." - } - ], - [ - "ident-token", - "py-lg-5", - 179410, - 179416, - { - "value": "py-lg-5" - } - ], - [ - "{-token", - "{", - 179417, - 179417, - null - ], - [ - "ident-token", - "padding-top", - 179418, - 179428, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179429, - 179429, - null - ], - [ - "dimension-token", - "3rem", - 179430, - 179433, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179434, - 179434, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179435, - 179443, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 179444, - 179444, - null - ], - [ - "ident-token", - "padding-bottom", - 179445, - 179458, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179459, - 179459, - null - ], - [ - "dimension-token", - "3rem", - 179460, - 179463, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179464, - 179464, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179465, - 179473, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179474, - 179474, - null - ], - [ - "delim-token", - ".", - 179475, - 179475, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-0", - 179476, - 179482, - { - "value": "pt-lg-0" - } - ], - [ - "{-token", - "{", - 179483, - 179483, - null - ], - [ - "ident-token", - "padding-top", - 179484, - 179494, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179495, - 179495, - null - ], - [ - "number-token", - "0", - 179496, - 179496, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 179497, - 179497, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179498, - 179506, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179507, - 179507, - null - ], - [ - "delim-token", - ".", - 179508, - 179508, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-1", - 179509, - 179515, - { - "value": "pt-lg-1" - } - ], - [ - "{-token", - "{", - 179516, - 179516, - null - ], - [ - "ident-token", - "padding-top", - 179517, - 179527, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179528, - 179528, - null - ], - [ - "dimension-token", - ".25rem", - 179529, - 179534, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179535, - 179535, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179536, - 179544, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179545, - 179545, - null - ], - [ - "delim-token", - ".", - 179546, - 179546, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-2", - 179547, - 179553, - { - "value": "pt-lg-2" - } - ], - [ - "{-token", - "{", - 179554, - 179554, - null - ], - [ - "ident-token", - "padding-top", - 179555, - 179565, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179566, - 179566, - null - ], - [ - "dimension-token", - ".5rem", - 179567, - 179571, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179572, - 179572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179573, - 179581, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179582, - 179582, - null - ], - [ - "delim-token", - ".", - 179583, - 179583, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-3", - 179584, - 179590, - { - "value": "pt-lg-3" - } - ], - [ - "{-token", - "{", - 179591, - 179591, - null - ], - [ - "ident-token", - "padding-top", - 179592, - 179602, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179603, - 179603, - null - ], - [ - "dimension-token", - "1rem", - 179604, - 179607, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179608, - 179608, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179609, - 179617, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179618, - 179618, - null - ], - [ - "delim-token", - ".", - 179619, - 179619, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-4", - 179620, - 179626, - { - "value": "pt-lg-4" - } - ], - [ - "{-token", - "{", - 179627, - 179627, - null - ], - [ - "ident-token", - "padding-top", - 179628, - 179638, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179639, - 179639, - null - ], - [ - "dimension-token", - "1.5rem", - 179640, - 179645, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179646, - 179646, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179647, - 179655, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179656, - 179656, - null - ], - [ - "delim-token", - ".", - 179657, - 179657, - { - "value": "." - } - ], - [ - "ident-token", - "pt-lg-5", - 179658, - 179664, - { - "value": "pt-lg-5" - } - ], - [ - "{-token", - "{", - 179665, - 179665, - null - ], - [ - "ident-token", - "padding-top", - 179666, - 179676, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 179677, - 179677, - null - ], - [ - "dimension-token", - "3rem", - 179678, - 179681, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179682, - 179682, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179683, - 179691, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179692, - 179692, - null - ], - [ - "delim-token", - ".", - 179693, - 179693, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-0", - 179694, - 179700, - { - "value": "pe-lg-0" - } - ], - [ - "{-token", - "{", - 179701, - 179701, - null - ], - [ - "ident-token", - "padding-right", - 179702, - 179714, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179715, - 179715, - null - ], - [ - "number-token", - "0", - 179716, - 179716, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 179717, - 179717, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179718, - 179726, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179727, - 179727, - null - ], - [ - "delim-token", - ".", - 179728, - 179728, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-1", - 179729, - 179735, - { - "value": "pe-lg-1" - } - ], - [ - "{-token", - "{", - 179736, - 179736, - null - ], - [ - "ident-token", - "padding-right", - 179737, - 179749, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179750, - 179750, - null - ], - [ - "dimension-token", - ".25rem", - 179751, - 179756, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179757, - 179757, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179758, - 179766, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179767, - 179767, - null - ], - [ - "delim-token", - ".", - 179768, - 179768, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-2", - 179769, - 179775, - { - "value": "pe-lg-2" - } - ], - [ - "{-token", - "{", - 179776, - 179776, - null - ], - [ - "ident-token", - "padding-right", - 179777, - 179789, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179790, - 179790, - null - ], - [ - "dimension-token", - ".5rem", - 179791, - 179795, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179796, - 179796, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179797, - 179805, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179806, - 179806, - null - ], - [ - "delim-token", - ".", - 179807, - 179807, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-3", - 179808, - 179814, - { - "value": "pe-lg-3" - } - ], - [ - "{-token", - "{", - 179815, - 179815, - null - ], - [ - "ident-token", - "padding-right", - 179816, - 179828, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179829, - 179829, - null - ], - [ - "dimension-token", - "1rem", - 179830, - 179833, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179834, - 179834, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179835, - 179843, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179844, - 179844, - null - ], - [ - "delim-token", - ".", - 179845, - 179845, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-4", - 179846, - 179852, - { - "value": "pe-lg-4" - } - ], - [ - "{-token", - "{", - 179853, - 179853, - null - ], - [ - "ident-token", - "padding-right", - 179854, - 179866, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179867, - 179867, - null - ], - [ - "dimension-token", - "1.5rem", - 179868, - 179873, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179874, - 179874, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179875, - 179883, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179884, - 179884, - null - ], - [ - "delim-token", - ".", - 179885, - 179885, - { - "value": "." - } - ], - [ - "ident-token", - "pe-lg-5", - 179886, - 179892, - { - "value": "pe-lg-5" - } - ], - [ - "{-token", - "{", - 179893, - 179893, - null - ], - [ - "ident-token", - "padding-right", - 179894, - 179906, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 179907, - 179907, - null - ], - [ - "dimension-token", - "3rem", - 179908, - 179911, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179912, - 179912, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179913, - 179921, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179922, - 179922, - null - ], - [ - "delim-token", - ".", - 179923, - 179923, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-0", - 179924, - 179930, - { - "value": "pb-lg-0" - } - ], - [ - "{-token", - "{", - 179931, - 179931, - null - ], - [ - "ident-token", - "padding-bottom", - 179932, - 179945, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179946, - 179946, - null - ], - [ - "number-token", - "0", - 179947, - 179947, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 179948, - 179948, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179949, - 179957, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179958, - 179958, - null - ], - [ - "delim-token", - ".", - 179959, - 179959, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-1", - 179960, - 179966, - { - "value": "pb-lg-1" - } - ], - [ - "{-token", - "{", - 179967, - 179967, - null - ], - [ - "ident-token", - "padding-bottom", - 179968, - 179981, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 179982, - 179982, - null - ], - [ - "dimension-token", - ".25rem", - 179983, - 179988, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 179989, - 179989, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 179990, - 179998, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 179999, - 179999, - null - ], - [ - "delim-token", - ".", - 180000, - 180000, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-2", - 180001, - 180007, - { - "value": "pb-lg-2" - } - ], - [ - "{-token", - "{", - 180008, - 180008, - null - ], - [ - "ident-token", - "padding-bottom", - 180009, - 180022, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 180023, - 180023, - null - ], - [ - "dimension-token", - ".5rem", - 180024, - 180028, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180029, - 180029, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180030, - 180038, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180039, - 180039, - null - ], - [ - "delim-token", - ".", - 180040, - 180040, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-3", - 180041, - 180047, - { - "value": "pb-lg-3" - } - ], - [ - "{-token", - "{", - 180048, - 180048, - null - ], - [ - "ident-token", - "padding-bottom", - 180049, - 180062, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 180063, - 180063, - null - ], - [ - "dimension-token", - "1rem", - 180064, - 180067, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180068, - 180068, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180069, - 180077, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180078, - 180078, - null - ], - [ - "delim-token", - ".", - 180079, - 180079, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-4", - 180080, - 180086, - { - "value": "pb-lg-4" - } - ], - [ - "{-token", - "{", - 180087, - 180087, - null - ], - [ - "ident-token", - "padding-bottom", - 180088, - 180101, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 180102, - 180102, - null - ], - [ - "dimension-token", - "1.5rem", - 180103, - 180108, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180109, - 180109, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180110, - 180118, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180119, - 180119, - null - ], - [ - "delim-token", - ".", - 180120, - 180120, - { - "value": "." - } - ], - [ - "ident-token", - "pb-lg-5", - 180121, - 180127, - { - "value": "pb-lg-5" - } - ], - [ - "{-token", - "{", - 180128, - 180128, - null - ], - [ - "ident-token", - "padding-bottom", - 180129, - 180142, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 180143, - 180143, - null - ], - [ - "dimension-token", - "3rem", - 180144, - 180147, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180148, - 180148, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180149, - 180157, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180158, - 180158, - null - ], - [ - "delim-token", - ".", - 180159, - 180159, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-0", - 180160, - 180166, - { - "value": "ps-lg-0" - } - ], - [ - "{-token", - "{", - 180167, - 180167, - null - ], - [ - "ident-token", - "padding-left", - 180168, - 180179, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180180, - 180180, - null - ], - [ - "number-token", - "0", - 180181, - 180181, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 180182, - 180182, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180183, - 180191, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180192, - 180192, - null - ], - [ - "delim-token", - ".", - 180193, - 180193, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-1", - 180194, - 180200, - { - "value": "ps-lg-1" - } - ], - [ - "{-token", - "{", - 180201, - 180201, - null - ], - [ - "ident-token", - "padding-left", - 180202, - 180213, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180214, - 180214, - null - ], - [ - "dimension-token", - ".25rem", - 180215, - 180220, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180221, - 180221, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180222, - 180230, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180231, - 180231, - null - ], - [ - "delim-token", - ".", - 180232, - 180232, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-2", - 180233, - 180239, - { - "value": "ps-lg-2" - } - ], - [ - "{-token", - "{", - 180240, - 180240, - null - ], - [ - "ident-token", - "padding-left", - 180241, - 180252, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180253, - 180253, - null - ], - [ - "dimension-token", - ".5rem", - 180254, - 180258, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180259, - 180259, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180260, - 180268, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180269, - 180269, - null - ], - [ - "delim-token", - ".", - 180270, - 180270, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-3", - 180271, - 180277, - { - "value": "ps-lg-3" - } - ], - [ - "{-token", - "{", - 180278, - 180278, - null - ], - [ - "ident-token", - "padding-left", - 180279, - 180290, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180291, - 180291, - null - ], - [ - "dimension-token", - "1rem", - 180292, - 180295, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180296, - 180296, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180297, - 180305, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180306, - 180306, - null - ], - [ - "delim-token", - ".", - 180307, - 180307, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-4", - 180308, - 180314, - { - "value": "ps-lg-4" - } - ], - [ - "{-token", - "{", - 180315, - 180315, - null - ], - [ - "ident-token", - "padding-left", - 180316, - 180327, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180328, - 180328, - null - ], - [ - "dimension-token", - "1.5rem", - 180329, - 180334, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180335, - 180335, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180336, - 180344, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180345, - 180345, - null - ], - [ - "delim-token", - ".", - 180346, - 180346, - { - "value": "." - } - ], - [ - "ident-token", - "ps-lg-5", - 180347, - 180353, - { - "value": "ps-lg-5" - } - ], - [ - "{-token", - "{", - 180354, - 180354, - null - ], - [ - "ident-token", - "padding-left", - 180355, - 180366, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 180367, - 180367, - null - ], - [ - "dimension-token", - "3rem", - 180368, - 180371, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180372, - 180372, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180373, - 180381, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180382, - 180382, - null - ], - [ - "delim-token", - ".", - 180383, - 180383, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-0", - 180384, - 180391, - { - "value": "gap-lg-0" - } - ], - [ - "{-token", - "{", - 180392, - 180392, - null - ], - [ - "ident-token", - "gap", - 180393, - 180395, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180396, - 180396, - null - ], - [ - "number-token", - "0", - 180397, - 180397, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 180398, - 180398, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180399, - 180407, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180408, - 180408, - null - ], - [ - "delim-token", - ".", - 180409, - 180409, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-1", - 180410, - 180417, - { - "value": "gap-lg-1" - } - ], - [ - "{-token", - "{", - 180418, - 180418, - null - ], - [ - "ident-token", - "gap", - 180419, - 180421, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180422, - 180422, - null - ], - [ - "dimension-token", - ".25rem", - 180423, - 180428, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180429, - 180429, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180430, - 180438, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180439, - 180439, - null - ], - [ - "delim-token", - ".", - 180440, - 180440, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-2", - 180441, - 180448, - { - "value": "gap-lg-2" - } - ], - [ - "{-token", - "{", - 180449, - 180449, - null - ], - [ - "ident-token", - "gap", - 180450, - 180452, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180453, - 180453, - null - ], - [ - "dimension-token", - ".5rem", - 180454, - 180458, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180459, - 180459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180460, - 180468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180469, - 180469, - null - ], - [ - "delim-token", - ".", - 180470, - 180470, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-3", - 180471, - 180478, - { - "value": "gap-lg-3" - } - ], - [ - "{-token", - "{", - 180479, - 180479, - null - ], - [ - "ident-token", - "gap", - 180480, - 180482, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180483, - 180483, - null - ], - [ - "dimension-token", - "1rem", - 180484, - 180487, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180488, - 180488, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180489, - 180497, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180498, - 180498, - null - ], - [ - "delim-token", - ".", - 180499, - 180499, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-4", - 180500, - 180507, - { - "value": "gap-lg-4" - } - ], - [ - "{-token", - "{", - 180508, - 180508, - null - ], - [ - "ident-token", - "gap", - 180509, - 180511, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180512, - 180512, - null - ], - [ - "dimension-token", - "1.5rem", - 180513, - 180518, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180519, - 180519, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180520, - 180528, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180529, - 180529, - null - ], - [ - "delim-token", - ".", - 180530, - 180530, - { - "value": "." - } - ], - [ - "ident-token", - "gap-lg-5", - 180531, - 180538, - { - "value": "gap-lg-5" - } - ], - [ - "{-token", - "{", - 180539, - 180539, - null - ], - [ - "ident-token", - "gap", - 180540, - 180542, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 180543, - 180543, - null - ], - [ - "dimension-token", - "3rem", - 180544, - 180547, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 180548, - 180548, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180549, - 180557, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180558, - 180558, - null - ], - [ - "delim-token", - ".", - 180559, - 180559, - { - "value": "." - } - ], - [ - "ident-token", - "text-lg-start", - 180560, - 180572, - { - "value": "text-lg-start" - } - ], - [ - "{-token", - "{", - 180573, - 180573, - null - ], - [ - "ident-token", - "text-align", - 180574, - 180583, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 180584, - 180584, - null - ], - [ - "ident-token", - "left", - 180585, - 180588, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 180589, - 180589, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180590, - 180598, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180599, - 180599, - null - ], - [ - "delim-token", - ".", - 180600, - 180600, - { - "value": "." - } - ], - [ - "ident-token", - "text-lg-end", - 180601, - 180611, - { - "value": "text-lg-end" - } - ], - [ - "{-token", - "{", - 180612, - 180612, - null - ], - [ - "ident-token", - "text-align", - 180613, - 180622, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 180623, - 180623, - null - ], - [ - "ident-token", - "right", - 180624, - 180628, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 180629, - 180629, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180630, - 180638, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180639, - 180639, - null - ], - [ - "delim-token", - ".", - 180640, - 180640, - { - "value": "." - } - ], - [ - "ident-token", - "text-lg-center", - 180641, - 180654, - { - "value": "text-lg-center" - } - ], - [ - "{-token", - "{", - 180655, - 180655, - null - ], - [ - "ident-token", - "text-align", - 180656, - 180665, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 180666, - 180666, - null - ], - [ - "ident-token", - "center", - 180667, - 180672, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 180673, - 180673, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180674, - 180682, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180683, - 180683, - null - ], - [ - "}-token", - "}", - 180684, - 180684, - null - ], - [ - "at-keyword-token", - "@media", - 180685, - 180690, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 180691, - 180691, - null - ], - [ - "(-token", - "(", - 180692, - 180692, - null - ], - [ - "ident-token", - "min-width", - 180693, - 180701, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 180702, - 180702, - null - ], - [ - "dimension-token", - "1200px", - 180703, - 180708, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 180709, - 180709, - null - ], - [ - "{-token", - "{", - 180710, - 180710, - null - ], - [ - "delim-token", - ".", - 180711, - 180711, - { - "value": "." - } - ], - [ - "ident-token", - "float-xl-start", - 180712, - 180725, - { - "value": "float-xl-start" - } - ], - [ - "{-token", - "{", - 180726, - 180726, - null - ], - [ - "ident-token", - "float", - 180727, - 180731, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 180732, - 180732, - null - ], - [ - "ident-token", - "left", - 180733, - 180736, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 180737, - 180737, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180738, - 180746, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180747, - 180747, - null - ], - [ - "delim-token", - ".", - 180748, - 180748, - { - "value": "." - } - ], - [ - "ident-token", - "float-xl-end", - 180749, - 180760, - { - "value": "float-xl-end" - } - ], - [ - "{-token", - "{", - 180761, - 180761, - null - ], - [ - "ident-token", - "float", - 180762, - 180766, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 180767, - 180767, - null - ], - [ - "ident-token", - "right", - 180768, - 180772, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 180773, - 180773, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180774, - 180782, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180783, - 180783, - null - ], - [ - "delim-token", - ".", - 180784, - 180784, - { - "value": "." - } - ], - [ - "ident-token", - "float-xl-none", - 180785, - 180797, - { - "value": "float-xl-none" - } - ], - [ - "{-token", - "{", - 180798, - 180798, - null - ], - [ - "ident-token", - "float", - 180799, - 180803, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 180804, - 180804, - null - ], - [ - "ident-token", - "none", - 180805, - 180808, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 180809, - 180809, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180810, - 180818, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180819, - 180819, - null - ], - [ - "delim-token", - ".", - 180820, - 180820, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-inline", - 180821, - 180831, - { - "value": "d-xl-inline" - } - ], - [ - "{-token", - "{", - 180832, - 180832, - null - ], - [ - "ident-token", - "display", - 180833, - 180839, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 180840, - 180840, - null - ], - [ - "ident-token", - "inline", - 180841, - 180846, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 180847, - 180847, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180848, - 180856, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180857, - 180857, - null - ], - [ - "delim-token", - ".", - 180858, - 180858, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-inline-block", - 180859, - 180875, - { - "value": "d-xl-inline-block" - } - ], - [ - "{-token", - "{", - 180876, - 180876, - null - ], - [ - "ident-token", - "display", - 180877, - 180883, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 180884, - 180884, - null - ], - [ - "ident-token", - "inline-block", - 180885, - 180896, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 180897, - 180897, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180898, - 180906, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180907, - 180907, - null - ], - [ - "delim-token", - ".", - 180908, - 180908, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-block", - 180909, - 180918, - { - "value": "d-xl-block" - } - ], - [ - "{-token", - "{", - 180919, - 180919, - null - ], - [ - "ident-token", - "display", - 180920, - 180926, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 180927, - 180927, - null - ], - [ - "ident-token", - "block", - 180928, - 180932, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 180933, - 180933, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180934, - 180942, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180943, - 180943, - null - ], - [ - "delim-token", - ".", - 180944, - 180944, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-grid", - 180945, - 180953, - { - "value": "d-xl-grid" - } - ], - [ - "{-token", - "{", - 180954, - 180954, - null - ], - [ - "ident-token", - "display", - 180955, - 180961, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 180962, - 180962, - null - ], - [ - "ident-token", - "grid", - 180963, - 180966, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 180967, - 180967, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 180968, - 180976, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 180977, - 180977, - null - ], - [ - "delim-token", - ".", - 180978, - 180978, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-table", - 180979, - 180988, - { - "value": "d-xl-table" - } - ], - [ - "{-token", - "{", - 180989, - 180989, - null - ], - [ - "ident-token", - "display", - 180990, - 180996, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 180997, - 180997, - null - ], - [ - "ident-token", - "table", - 180998, - 181002, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 181003, - 181003, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181004, - 181012, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181013, - 181013, - null - ], - [ - "delim-token", - ".", - 181014, - 181014, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-table-row", - 181015, - 181028, - { - "value": "d-xl-table-row" - } - ], - [ - "{-token", - "{", - 181029, - 181029, - null - ], - [ - "ident-token", - "display", - 181030, - 181036, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 181037, - 181037, - null - ], - [ - "ident-token", - "table-row", - 181038, - 181046, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 181047, - 181047, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181048, - 181056, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181057, - 181057, - null - ], - [ - "delim-token", - ".", - 181058, - 181058, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-table-cell", - 181059, - 181073, - { - "value": "d-xl-table-cell" - } - ], - [ - "{-token", - "{", - 181074, - 181074, - null - ], - [ - "ident-token", - "display", - 181075, - 181081, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 181082, - 181082, - null - ], - [ - "ident-token", - "table-cell", - 181083, - 181092, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 181093, - 181093, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181094, - 181102, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181103, - 181103, - null - ], - [ - "delim-token", - ".", - 181104, - 181104, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-flex", - 181105, - 181113, - { - "value": "d-xl-flex" - } - ], - [ - "{-token", - "{", - 181114, - 181114, - null - ], - [ - "ident-token", - "display", - 181115, - 181121, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 181122, - 181122, - null - ], - [ - "ident-token", - "flex", - 181123, - 181126, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 181127, - 181127, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181128, - 181136, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181137, - 181137, - null - ], - [ - "delim-token", - ".", - 181138, - 181138, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-inline-flex", - 181139, - 181154, - { - "value": "d-xl-inline-flex" - } - ], - [ - "{-token", - "{", - 181155, - 181155, - null - ], - [ - "ident-token", - "display", - 181156, - 181162, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 181163, - 181163, - null - ], - [ - "ident-token", - "inline-flex", - 181164, - 181174, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 181175, - 181175, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181176, - 181184, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181185, - 181185, - null - ], - [ - "delim-token", - ".", - 181186, - 181186, - { - "value": "." - } - ], - [ - "ident-token", - "d-xl-none", - 181187, - 181195, - { - "value": "d-xl-none" - } - ], - [ - "{-token", - "{", - 181196, - 181196, - null - ], - [ - "ident-token", - "display", - 181197, - 181203, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 181204, - 181204, - null - ], - [ - "ident-token", - "none", - 181205, - 181208, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 181209, - 181209, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181210, - 181218, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181219, - 181219, - null - ], - [ - "delim-token", - ".", - 181220, - 181220, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-fill", - 181221, - 181232, - { - "value": "flex-xl-fill" - } - ], - [ - "{-token", - "{", - 181233, - 181233, - null - ], - [ - "ident-token", - "flex", - 181234, - 181237, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 181238, - 181238, - null - ], - [ - "number-token", - "1", - 181239, - 181239, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 181240, - 181240, - null - ], - [ - "number-token", - "1", - 181241, - 181241, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 181242, - 181242, - null - ], - [ - "ident-token", - "auto", - 181243, - 181246, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 181247, - 181247, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181248, - 181256, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181257, - 181257, - null - ], - [ - "delim-token", - ".", - 181258, - 181258, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-row", - 181259, - 181269, - { - "value": "flex-xl-row" - } - ], - [ - "{-token", - "{", - 181270, - 181270, - null - ], - [ - "ident-token", - "flex-direction", - 181271, - 181284, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 181285, - 181285, - null - ], - [ - "ident-token", - "row", - 181286, - 181288, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 181289, - 181289, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181290, - 181298, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181299, - 181299, - null - ], - [ - "delim-token", - ".", - 181300, - 181300, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-column", - 181301, - 181314, - { - "value": "flex-xl-column" - } - ], - [ - "{-token", - "{", - 181315, - 181315, - null - ], - [ - "ident-token", - "flex-direction", - 181316, - 181329, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 181330, - 181330, - null - ], - [ - "ident-token", - "column", - 181331, - 181336, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 181337, - 181337, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181338, - 181346, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181347, - 181347, - null - ], - [ - "delim-token", - ".", - 181348, - 181348, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-row-reverse", - 181349, - 181367, - { - "value": "flex-xl-row-reverse" - } - ], - [ - "{-token", - "{", - 181368, - 181368, - null - ], - [ - "ident-token", - "flex-direction", - 181369, - 181382, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 181383, - 181383, - null - ], - [ - "ident-token", - "row-reverse", - 181384, - 181394, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 181395, - 181395, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181396, - 181404, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181405, - 181405, - null - ], - [ - "delim-token", - ".", - 181406, - 181406, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-column-reverse", - 181407, - 181428, - { - "value": "flex-xl-column-reverse" - } - ], - [ - "{-token", - "{", - 181429, - 181429, - null - ], - [ - "ident-token", - "flex-direction", - 181430, - 181443, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 181444, - 181444, - null - ], - [ - "ident-token", - "column-reverse", - 181445, - 181458, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 181459, - 181459, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181460, - 181468, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181469, - 181469, - null - ], - [ - "delim-token", - ".", - 181470, - 181470, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-grow-0", - 181471, - 181484, - { - "value": "flex-xl-grow-0" - } - ], - [ - "{-token", - "{", - 181485, - 181485, - null - ], - [ - "ident-token", - "flex-grow", - 181486, - 181494, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 181495, - 181495, - null - ], - [ - "number-token", - "0", - 181496, - 181496, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 181497, - 181497, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181498, - 181506, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181507, - 181507, - null - ], - [ - "delim-token", - ".", - 181508, - 181508, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-grow-1", - 181509, - 181522, - { - "value": "flex-xl-grow-1" - } - ], - [ - "{-token", - "{", - 181523, - 181523, - null - ], - [ - "ident-token", - "flex-grow", - 181524, - 181532, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 181533, - 181533, - null - ], - [ - "number-token", - "1", - 181534, - 181534, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 181535, - 181535, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181536, - 181544, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181545, - 181545, - null - ], - [ - "delim-token", - ".", - 181546, - 181546, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-shrink-0", - 181547, - 181562, - { - "value": "flex-xl-shrink-0" - } - ], - [ - "{-token", - "{", - 181563, - 181563, - null - ], - [ - "ident-token", - "flex-shrink", - 181564, - 181574, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 181575, - 181575, - null - ], - [ - "number-token", - "0", - 181576, - 181576, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 181577, - 181577, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181578, - 181586, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181587, - 181587, - null - ], - [ - "delim-token", - ".", - 181588, - 181588, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-shrink-1", - 181589, - 181604, - { - "value": "flex-xl-shrink-1" - } - ], - [ - "{-token", - "{", - 181605, - 181605, - null - ], - [ - "ident-token", - "flex-shrink", - 181606, - 181616, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 181617, - 181617, - null - ], - [ - "number-token", - "1", - 181618, - 181618, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 181619, - 181619, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181620, - 181628, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181629, - 181629, - null - ], - [ - "delim-token", - ".", - 181630, - 181630, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-wrap", - 181631, - 181642, - { - "value": "flex-xl-wrap" - } - ], - [ - "{-token", - "{", - 181643, - 181643, - null - ], - [ - "ident-token", - "flex-wrap", - 181644, - 181652, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 181653, - 181653, - null - ], - [ - "ident-token", - "wrap", - 181654, - 181657, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 181658, - 181658, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181659, - 181667, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181668, - 181668, - null - ], - [ - "delim-token", - ".", - 181669, - 181669, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-nowrap", - 181670, - 181683, - { - "value": "flex-xl-nowrap" - } - ], - [ - "{-token", - "{", - 181684, - 181684, - null - ], - [ - "ident-token", - "flex-wrap", - 181685, - 181693, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 181694, - 181694, - null - ], - [ - "ident-token", - "nowrap", - 181695, - 181700, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 181701, - 181701, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181702, - 181710, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181711, - 181711, - null - ], - [ - "delim-token", - ".", - 181712, - 181712, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xl-wrap-reverse", - 181713, - 181732, - { - "value": "flex-xl-wrap-reverse" - } - ], - [ - "{-token", - "{", - 181733, - 181733, - null - ], - [ - "ident-token", - "flex-wrap", - 181734, - 181742, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 181743, - 181743, - null - ], - [ - "ident-token", - "wrap-reverse", - 181744, - 181755, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 181756, - 181756, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181757, - 181765, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181766, - 181766, - null - ], - [ - "delim-token", - ".", - 181767, - 181767, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-start", - 181768, - 181791, - { - "value": "justify-content-xl-start" - } - ], - [ - "{-token", - "{", - 181792, - 181792, - null - ], - [ - "ident-token", - "justify-content", - 181793, - 181807, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 181808, - 181808, - null - ], - [ - "ident-token", - "flex-start", - 181809, - 181818, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 181819, - 181819, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181820, - 181828, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181829, - 181829, - null - ], - [ - "delim-token", - ".", - 181830, - 181830, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-end", - 181831, - 181852, - { - "value": "justify-content-xl-end" - } - ], - [ - "{-token", - "{", - 181853, - 181853, - null - ], - [ - "ident-token", - "justify-content", - 181854, - 181868, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 181869, - 181869, - null - ], - [ - "ident-token", - "flex-end", - 181870, - 181877, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 181878, - 181878, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181879, - 181887, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181888, - 181888, - null - ], - [ - "delim-token", - ".", - 181889, - 181889, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-center", - 181890, - 181914, - { - "value": "justify-content-xl-center" - } - ], - [ - "{-token", - "{", - 181915, - 181915, - null - ], - [ - "ident-token", - "justify-content", - 181916, - 181930, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 181931, - 181931, - null - ], - [ - "ident-token", - "center", - 181932, - 181937, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 181938, - 181938, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 181939, - 181947, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 181948, - 181948, - null - ], - [ - "delim-token", - ".", - 181949, - 181949, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-between", - 181950, - 181975, - { - "value": "justify-content-xl-between" - } - ], - [ - "{-token", - "{", - 181976, - 181976, - null - ], - [ - "ident-token", - "justify-content", - 181977, - 181991, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 181992, - 181992, - null - ], - [ - "ident-token", - "space-between", - 181993, - 182005, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 182006, - 182006, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182007, - 182015, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182016, - 182016, - null - ], - [ - "delim-token", - ".", - 182017, - 182017, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-around", - 182018, - 182042, - { - "value": "justify-content-xl-around" - } - ], - [ - "{-token", - "{", - 182043, - 182043, - null - ], - [ - "ident-token", - "justify-content", - 182044, - 182058, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 182059, - 182059, - null - ], - [ - "ident-token", - "space-around", - 182060, - 182071, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 182072, - 182072, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182073, - 182081, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182082, - 182082, - null - ], - [ - "delim-token", - ".", - 182083, - 182083, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xl-evenly", - 182084, - 182108, - { - "value": "justify-content-xl-evenly" - } - ], - [ - "{-token", - "{", - 182109, - 182109, - null - ], - [ - "ident-token", - "justify-content", - 182110, - 182124, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 182125, - 182125, - null - ], - [ - "ident-token", - "space-evenly", - 182126, - 182137, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 182138, - 182138, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182139, - 182147, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182148, - 182148, - null - ], - [ - "delim-token", - ".", - 182149, - 182149, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xl-start", - 182150, - 182169, - { - "value": "align-items-xl-start" - } - ], - [ - "{-token", - "{", - 182170, - 182170, - null - ], - [ - "ident-token", - "align-items", - 182171, - 182181, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 182182, - 182182, - null - ], - [ - "ident-token", - "flex-start", - 182183, - 182192, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 182193, - 182193, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182194, - 182202, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182203, - 182203, - null - ], - [ - "delim-token", - ".", - 182204, - 182204, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xl-end", - 182205, - 182222, - { - "value": "align-items-xl-end" - } - ], - [ - "{-token", - "{", - 182223, - 182223, - null - ], - [ - "ident-token", - "align-items", - 182224, - 182234, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 182235, - 182235, - null - ], - [ - "ident-token", - "flex-end", - 182236, - 182243, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 182244, - 182244, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182245, - 182253, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182254, - 182254, - null - ], - [ - "delim-token", - ".", - 182255, - 182255, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xl-center", - 182256, - 182276, - { - "value": "align-items-xl-center" - } - ], - [ - "{-token", - "{", - 182277, - 182277, - null - ], - [ - "ident-token", - "align-items", - 182278, - 182288, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 182289, - 182289, - null - ], - [ - "ident-token", - "center", - 182290, - 182295, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 182296, - 182296, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182297, - 182305, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182306, - 182306, - null - ], - [ - "delim-token", - ".", - 182307, - 182307, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xl-baseline", - 182308, - 182330, - { - "value": "align-items-xl-baseline" - } - ], - [ - "{-token", - "{", - 182331, - 182331, - null - ], - [ - "ident-token", - "align-items", - 182332, - 182342, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 182343, - 182343, - null - ], - [ - "ident-token", - "baseline", - 182344, - 182351, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 182352, - 182352, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182353, - 182361, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182362, - 182362, - null - ], - [ - "delim-token", - ".", - 182363, - 182363, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xl-stretch", - 182364, - 182385, - { - "value": "align-items-xl-stretch" - } - ], - [ - "{-token", - "{", - 182386, - 182386, - null - ], - [ - "ident-token", - "align-items", - 182387, - 182397, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 182398, - 182398, - null - ], - [ - "ident-token", - "stretch", - 182399, - 182405, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 182406, - 182406, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182407, - 182415, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182416, - 182416, - null - ], - [ - "delim-token", - ".", - 182417, - 182417, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-start", - 182418, - 182439, - { - "value": "align-content-xl-start" - } - ], - [ - "{-token", - "{", - 182440, - 182440, - null - ], - [ - "ident-token", - "align-content", - 182441, - 182453, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182454, - 182454, - null - ], - [ - "ident-token", - "flex-start", - 182455, - 182464, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 182465, - 182465, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182466, - 182474, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182475, - 182475, - null - ], - [ - "delim-token", - ".", - 182476, - 182476, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-end", - 182477, - 182496, - { - "value": "align-content-xl-end" - } - ], - [ - "{-token", - "{", - 182497, - 182497, - null - ], - [ - "ident-token", - "align-content", - 182498, - 182510, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182511, - 182511, - null - ], - [ - "ident-token", - "flex-end", - 182512, - 182519, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 182520, - 182520, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182521, - 182529, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182530, - 182530, - null - ], - [ - "delim-token", - ".", - 182531, - 182531, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-center", - 182532, - 182554, - { - "value": "align-content-xl-center" - } - ], - [ - "{-token", - "{", - 182555, - 182555, - null - ], - [ - "ident-token", - "align-content", - 182556, - 182568, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182569, - 182569, - null - ], - [ - "ident-token", - "center", - 182570, - 182575, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 182576, - 182576, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182577, - 182585, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182586, - 182586, - null - ], - [ - "delim-token", - ".", - 182587, - 182587, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-between", - 182588, - 182611, - { - "value": "align-content-xl-between" - } - ], - [ - "{-token", - "{", - 182612, - 182612, - null - ], - [ - "ident-token", - "align-content", - 182613, - 182625, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182626, - 182626, - null - ], - [ - "ident-token", - "space-between", - 182627, - 182639, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 182640, - 182640, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182641, - 182649, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182650, - 182650, - null - ], - [ - "delim-token", - ".", - 182651, - 182651, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-around", - 182652, - 182674, - { - "value": "align-content-xl-around" - } - ], - [ - "{-token", - "{", - 182675, - 182675, - null - ], - [ - "ident-token", - "align-content", - 182676, - 182688, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182689, - 182689, - null - ], - [ - "ident-token", - "space-around", - 182690, - 182701, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 182702, - 182702, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182703, - 182711, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182712, - 182712, - null - ], - [ - "delim-token", - ".", - 182713, - 182713, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xl-stretch", - 182714, - 182737, - { - "value": "align-content-xl-stretch" - } - ], - [ - "{-token", - "{", - 182738, - 182738, - null - ], - [ - "ident-token", - "align-content", - 182739, - 182751, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 182752, - 182752, - null - ], - [ - "ident-token", - "stretch", - 182753, - 182759, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 182760, - 182760, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182761, - 182769, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182770, - 182770, - null - ], - [ - "delim-token", - ".", - 182771, - 182771, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-auto", - 182772, - 182789, - { - "value": "align-self-xl-auto" - } - ], - [ - "{-token", - "{", - 182790, - 182790, - null - ], - [ - "ident-token", - "align-self", - 182791, - 182800, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 182801, - 182801, - null - ], - [ - "ident-token", - "auto", - 182802, - 182805, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 182806, - 182806, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182807, - 182815, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182816, - 182816, - null - ], - [ - "delim-token", - ".", - 182817, - 182817, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-start", - 182818, - 182836, - { - "value": "align-self-xl-start" - } - ], - [ - "{-token", - "{", - 182837, - 182837, - null - ], - [ - "ident-token", - "align-self", - 182838, - 182847, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 182848, - 182848, - null - ], - [ - "ident-token", - "flex-start", - 182849, - 182858, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 182859, - 182859, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182860, - 182868, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182869, - 182869, - null - ], - [ - "delim-token", - ".", - 182870, - 182870, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-end", - 182871, - 182887, - { - "value": "align-self-xl-end" - } - ], - [ - "{-token", - "{", - 182888, - 182888, - null - ], - [ - "ident-token", - "align-self", - 182889, - 182898, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 182899, - 182899, - null - ], - [ - "ident-token", - "flex-end", - 182900, - 182907, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 182908, - 182908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182909, - 182917, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182918, - 182918, - null - ], - [ - "delim-token", - ".", - 182919, - 182919, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-center", - 182920, - 182939, - { - "value": "align-self-xl-center" - } - ], - [ - "{-token", - "{", - 182940, - 182940, - null - ], - [ - "ident-token", - "align-self", - 182941, - 182950, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 182951, - 182951, - null - ], - [ - "ident-token", - "center", - 182952, - 182957, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 182958, - 182958, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 182959, - 182967, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 182968, - 182968, - null - ], - [ - "delim-token", - ".", - 182969, - 182969, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-baseline", - 182970, - 182991, - { - "value": "align-self-xl-baseline" - } - ], - [ - "{-token", - "{", - 182992, - 182992, - null - ], - [ - "ident-token", - "align-self", - 182993, - 183002, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 183003, - 183003, - null - ], - [ - "ident-token", - "baseline", - 183004, - 183011, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 183012, - 183012, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183013, - 183021, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183022, - 183022, - null - ], - [ - "delim-token", - ".", - 183023, - 183023, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xl-stretch", - 183024, - 183044, - { - "value": "align-self-xl-stretch" - } - ], - [ - "{-token", - "{", - 183045, - 183045, - null - ], - [ - "ident-token", - "align-self", - 183046, - 183055, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 183056, - 183056, - null - ], - [ - "ident-token", - "stretch", - 183057, - 183063, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 183064, - 183064, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183065, - 183073, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183074, - 183074, - null - ], - [ - "delim-token", - ".", - 183075, - 183075, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-first", - 183076, - 183089, - { - "value": "order-xl-first" - } - ], - [ - "{-token", - "{", - 183090, - 183090, - null - ], - [ - "ident-token", - "order", - 183091, - 183095, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183096, - 183096, - null - ], - [ - "number-token", - "-1", - 183097, - 183098, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183099, - 183099, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183100, - 183108, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183109, - 183109, - null - ], - [ - "delim-token", - ".", - 183110, - 183110, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-0", - 183111, - 183120, - { - "value": "order-xl-0" - } - ], - [ - "{-token", - "{", - 183121, - 183121, - null - ], - [ - "ident-token", - "order", - 183122, - 183126, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183127, - 183127, - null - ], - [ - "number-token", - "0", - 183128, - 183128, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183129, - 183129, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183130, - 183138, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183139, - 183139, - null - ], - [ - "delim-token", - ".", - 183140, - 183140, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-1", - 183141, - 183150, - { - "value": "order-xl-1" - } - ], - [ - "{-token", - "{", - 183151, - 183151, - null - ], - [ - "ident-token", - "order", - 183152, - 183156, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183157, - 183157, - null - ], - [ - "number-token", - "1", - 183158, - 183158, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183159, - 183159, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183160, - 183168, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183169, - 183169, - null - ], - [ - "delim-token", - ".", - 183170, - 183170, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-2", - 183171, - 183180, - { - "value": "order-xl-2" - } - ], - [ - "{-token", - "{", - 183181, - 183181, - null - ], - [ - "ident-token", - "order", - 183182, - 183186, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183187, - 183187, - null - ], - [ - "number-token", - "2", - 183188, - 183188, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183189, - 183189, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183190, - 183198, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183199, - 183199, - null - ], - [ - "delim-token", - ".", - 183200, - 183200, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-3", - 183201, - 183210, - { - "value": "order-xl-3" - } - ], - [ - "{-token", - "{", - 183211, - 183211, - null - ], - [ - "ident-token", - "order", - 183212, - 183216, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183217, - 183217, - null - ], - [ - "number-token", - "3", - 183218, - 183218, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183219, - 183219, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183220, - 183228, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183229, - 183229, - null - ], - [ - "delim-token", - ".", - 183230, - 183230, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-4", - 183231, - 183240, - { - "value": "order-xl-4" - } - ], - [ - "{-token", - "{", - 183241, - 183241, - null - ], - [ - "ident-token", - "order", - 183242, - 183246, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183247, - 183247, - null - ], - [ - "number-token", - "4", - 183248, - 183248, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183249, - 183249, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183250, - 183258, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183259, - 183259, - null - ], - [ - "delim-token", - ".", - 183260, - 183260, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-5", - 183261, - 183270, - { - "value": "order-xl-5" - } - ], - [ - "{-token", - "{", - 183271, - 183271, - null - ], - [ - "ident-token", - "order", - 183272, - 183276, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183277, - 183277, - null - ], - [ - "number-token", - "5", - 183278, - 183278, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183279, - 183279, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183280, - 183288, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183289, - 183289, - null - ], - [ - "delim-token", - ".", - 183290, - 183290, - { - "value": "." - } - ], - [ - "ident-token", - "order-xl-last", - 183291, - 183303, - { - "value": "order-xl-last" - } - ], - [ - "{-token", - "{", - 183304, - 183304, - null - ], - [ - "ident-token", - "order", - 183305, - 183309, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 183310, - 183310, - null - ], - [ - "number-token", - "6", - 183311, - 183311, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183312, - 183312, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183313, - 183321, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183322, - 183322, - null - ], - [ - "delim-token", - ".", - 183323, - 183323, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-0", - 183324, - 183329, - { - "value": "m-xl-0" - } - ], - [ - "{-token", - "{", - 183330, - 183330, - null - ], - [ - "ident-token", - "margin", - 183331, - 183336, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183337, - 183337, - null - ], - [ - "number-token", - "0", - 183338, - 183338, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183339, - 183339, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183340, - 183348, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183349, - 183349, - null - ], - [ - "delim-token", - ".", - 183350, - 183350, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-1", - 183351, - 183356, - { - "value": "m-xl-1" - } - ], - [ - "{-token", - "{", - 183357, - 183357, - null - ], - [ - "ident-token", - "margin", - 183358, - 183363, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183364, - 183364, - null - ], - [ - "dimension-token", - ".25rem", - 183365, - 183370, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183371, - 183371, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183372, - 183380, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183381, - 183381, - null - ], - [ - "delim-token", - ".", - 183382, - 183382, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-2", - 183383, - 183388, - { - "value": "m-xl-2" - } - ], - [ - "{-token", - "{", - 183389, - 183389, - null - ], - [ - "ident-token", - "margin", - 183390, - 183395, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183396, - 183396, - null - ], - [ - "dimension-token", - ".5rem", - 183397, - 183401, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183402, - 183402, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183403, - 183411, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183412, - 183412, - null - ], - [ - "delim-token", - ".", - 183413, - 183413, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-3", - 183414, - 183419, - { - "value": "m-xl-3" - } - ], - [ - "{-token", - "{", - 183420, - 183420, - null - ], - [ - "ident-token", - "margin", - 183421, - 183426, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183427, - 183427, - null - ], - [ - "dimension-token", - "1rem", - 183428, - 183431, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183432, - 183432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183433, - 183441, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183442, - 183442, - null - ], - [ - "delim-token", - ".", - 183443, - 183443, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-4", - 183444, - 183449, - { - "value": "m-xl-4" - } - ], - [ - "{-token", - "{", - 183450, - 183450, - null - ], - [ - "ident-token", - "margin", - 183451, - 183456, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183457, - 183457, - null - ], - [ - "dimension-token", - "1.5rem", - 183458, - 183463, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183464, - 183464, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183465, - 183473, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183474, - 183474, - null - ], - [ - "delim-token", - ".", - 183475, - 183475, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-5", - 183476, - 183481, - { - "value": "m-xl-5" - } - ], - [ - "{-token", - "{", - 183482, - 183482, - null - ], - [ - "ident-token", - "margin", - 183483, - 183488, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183489, - 183489, - null - ], - [ - "dimension-token", - "3rem", - 183490, - 183493, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183494, - 183494, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183495, - 183503, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183504, - 183504, - null - ], - [ - "delim-token", - ".", - 183505, - 183505, - { - "value": "." - } - ], - [ - "ident-token", - "m-xl-auto", - 183506, - 183514, - { - "value": "m-xl-auto" - } - ], - [ - "{-token", - "{", - 183515, - 183515, - null - ], - [ - "ident-token", - "margin", - 183516, - 183521, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 183522, - 183522, - null - ], - [ - "ident-token", - "auto", - 183523, - 183526, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 183527, - 183527, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183528, - 183536, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183537, - 183537, - null - ], - [ - "delim-token", - ".", - 183538, - 183538, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-0", - 183539, - 183545, - { - "value": "mx-xl-0" - } - ], - [ - "{-token", - "{", - 183546, - 183546, - null - ], - [ - "ident-token", - "margin-right", - 183547, - 183558, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183559, - 183559, - null - ], - [ - "number-token", - "0", - 183560, - 183560, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183561, - 183561, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183562, - 183570, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183571, - 183571, - null - ], - [ - "ident-token", - "margin-left", - 183572, - 183582, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183583, - 183583, - null - ], - [ - "number-token", - "0", - 183584, - 183584, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 183585, - 183585, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183586, - 183594, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183595, - 183595, - null - ], - [ - "delim-token", - ".", - 183596, - 183596, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-1", - 183597, - 183603, - { - "value": "mx-xl-1" - } - ], - [ - "{-token", - "{", - 183604, - 183604, - null - ], - [ - "ident-token", - "margin-right", - 183605, - 183616, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183617, - 183617, - null - ], - [ - "dimension-token", - ".25rem", - 183618, - 183623, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183624, - 183624, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183625, - 183633, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183634, - 183634, - null - ], - [ - "ident-token", - "margin-left", - 183635, - 183645, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183646, - 183646, - null - ], - [ - "dimension-token", - ".25rem", - 183647, - 183652, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183653, - 183653, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183654, - 183662, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183663, - 183663, - null - ], - [ - "delim-token", - ".", - 183664, - 183664, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-2", - 183665, - 183671, - { - "value": "mx-xl-2" - } - ], - [ - "{-token", - "{", - 183672, - 183672, - null - ], - [ - "ident-token", - "margin-right", - 183673, - 183684, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183685, - 183685, - null - ], - [ - "dimension-token", - ".5rem", - 183686, - 183690, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183691, - 183691, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183692, - 183700, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183701, - 183701, - null - ], - [ - "ident-token", - "margin-left", - 183702, - 183712, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183713, - 183713, - null - ], - [ - "dimension-token", - ".5rem", - 183714, - 183718, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183719, - 183719, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183720, - 183728, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183729, - 183729, - null - ], - [ - "delim-token", - ".", - 183730, - 183730, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-3", - 183731, - 183737, - { - "value": "mx-xl-3" - } - ], - [ - "{-token", - "{", - 183738, - 183738, - null - ], - [ - "ident-token", - "margin-right", - 183739, - 183750, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183751, - 183751, - null - ], - [ - "dimension-token", - "1rem", - 183752, - 183755, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183756, - 183756, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183757, - 183765, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183766, - 183766, - null - ], - [ - "ident-token", - "margin-left", - 183767, - 183777, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183778, - 183778, - null - ], - [ - "dimension-token", - "1rem", - 183779, - 183782, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183783, - 183783, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183784, - 183792, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183793, - 183793, - null - ], - [ - "delim-token", - ".", - 183794, - 183794, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-4", - 183795, - 183801, - { - "value": "mx-xl-4" - } - ], - [ - "{-token", - "{", - 183802, - 183802, - null - ], - [ - "ident-token", - "margin-right", - 183803, - 183814, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183815, - 183815, - null - ], - [ - "dimension-token", - "1.5rem", - 183816, - 183821, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183822, - 183822, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183823, - 183831, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183832, - 183832, - null - ], - [ - "ident-token", - "margin-left", - 183833, - 183843, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183844, - 183844, - null - ], - [ - "dimension-token", - "1.5rem", - 183845, - 183850, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183851, - 183851, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183852, - 183860, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183861, - 183861, - null - ], - [ - "delim-token", - ".", - 183862, - 183862, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-5", - 183863, - 183869, - { - "value": "mx-xl-5" - } - ], - [ - "{-token", - "{", - 183870, - 183870, - null - ], - [ - "ident-token", - "margin-right", - 183871, - 183882, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183883, - 183883, - null - ], - [ - "dimension-token", - "3rem", - 183884, - 183887, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183888, - 183888, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183889, - 183897, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183898, - 183898, - null - ], - [ - "ident-token", - "margin-left", - 183899, - 183909, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183910, - 183910, - null - ], - [ - "dimension-token", - "3rem", - 183911, - 183914, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 183915, - 183915, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183916, - 183924, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183925, - 183925, - null - ], - [ - "delim-token", - ".", - 183926, - 183926, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xl-auto", - 183927, - 183936, - { - "value": "mx-xl-auto" - } - ], - [ - "{-token", - "{", - 183937, - 183937, - null - ], - [ - "ident-token", - "margin-right", - 183938, - 183949, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 183950, - 183950, - null - ], - [ - "ident-token", - "auto", - 183951, - 183954, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 183955, - 183955, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183956, - 183964, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 183965, - 183965, - null - ], - [ - "ident-token", - "margin-left", - 183966, - 183976, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 183977, - 183977, - null - ], - [ - "ident-token", - "auto", - 183978, - 183981, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 183982, - 183982, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 183983, - 183991, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 183992, - 183992, - null - ], - [ - "delim-token", - ".", - 183993, - 183993, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-0", - 183994, - 184000, - { - "value": "my-xl-0" - } - ], - [ - "{-token", - "{", - 184001, - 184001, - null - ], - [ - "ident-token", - "margin-top", - 184002, - 184011, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184012, - 184012, - null - ], - [ - "number-token", - "0", - 184013, - 184013, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 184014, - 184014, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184015, - 184023, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184024, - 184024, - null - ], - [ - "ident-token", - "margin-bottom", - 184025, - 184037, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184038, - 184038, - null - ], - [ - "number-token", - "0", - 184039, - 184039, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 184040, - 184040, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184041, - 184049, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184050, - 184050, - null - ], - [ - "delim-token", - ".", - 184051, - 184051, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-1", - 184052, - 184058, - { - "value": "my-xl-1" - } - ], - [ - "{-token", - "{", - 184059, - 184059, - null - ], - [ - "ident-token", - "margin-top", - 184060, - 184069, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184070, - 184070, - null - ], - [ - "dimension-token", - ".25rem", - 184071, - 184076, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184077, - 184077, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184078, - 184086, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184087, - 184087, - null - ], - [ - "ident-token", - "margin-bottom", - 184088, - 184100, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184101, - 184101, - null - ], - [ - "dimension-token", - ".25rem", - 184102, - 184107, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184108, - 184108, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184109, - 184117, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184118, - 184118, - null - ], - [ - "delim-token", - ".", - 184119, - 184119, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-2", - 184120, - 184126, - { - "value": "my-xl-2" - } - ], - [ - "{-token", - "{", - 184127, - 184127, - null - ], - [ - "ident-token", - "margin-top", - 184128, - 184137, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184138, - 184138, - null - ], - [ - "dimension-token", - ".5rem", - 184139, - 184143, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184144, - 184144, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184145, - 184153, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184154, - 184154, - null - ], - [ - "ident-token", - "margin-bottom", - 184155, - 184167, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184168, - 184168, - null - ], - [ - "dimension-token", - ".5rem", - 184169, - 184173, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184174, - 184174, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184175, - 184183, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184184, - 184184, - null - ], - [ - "delim-token", - ".", - 184185, - 184185, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-3", - 184186, - 184192, - { - "value": "my-xl-3" - } - ], - [ - "{-token", - "{", - 184193, - 184193, - null - ], - [ - "ident-token", - "margin-top", - 184194, - 184203, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184204, - 184204, - null - ], - [ - "dimension-token", - "1rem", - 184205, - 184208, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184209, - 184209, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184210, - 184218, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184219, - 184219, - null - ], - [ - "ident-token", - "margin-bottom", - 184220, - 184232, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184233, - 184233, - null - ], - [ - "dimension-token", - "1rem", - 184234, - 184237, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184238, - 184238, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184239, - 184247, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184248, - 184248, - null - ], - [ - "delim-token", - ".", - 184249, - 184249, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-4", - 184250, - 184256, - { - "value": "my-xl-4" - } - ], - [ - "{-token", - "{", - 184257, - 184257, - null - ], - [ - "ident-token", - "margin-top", - 184258, - 184267, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184268, - 184268, - null - ], - [ - "dimension-token", - "1.5rem", - 184269, - 184274, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184275, - 184275, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184276, - 184284, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184285, - 184285, - null - ], - [ - "ident-token", - "margin-bottom", - 184286, - 184298, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184299, - 184299, - null - ], - [ - "dimension-token", - "1.5rem", - 184300, - 184305, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184306, - 184306, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184307, - 184315, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184316, - 184316, - null - ], - [ - "delim-token", - ".", - 184317, - 184317, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-5", - 184318, - 184324, - { - "value": "my-xl-5" - } - ], - [ - "{-token", - "{", - 184325, - 184325, - null - ], - [ - "ident-token", - "margin-top", - 184326, - 184335, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184336, - 184336, - null - ], - [ - "dimension-token", - "3rem", - 184337, - 184340, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184341, - 184341, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184342, - 184350, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184351, - 184351, - null - ], - [ - "ident-token", - "margin-bottom", - 184352, - 184364, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184365, - 184365, - null - ], - [ - "dimension-token", - "3rem", - 184366, - 184369, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184370, - 184370, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184371, - 184379, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184380, - 184380, - null - ], - [ - "delim-token", - ".", - 184381, - 184381, - { - "value": "." - } - ], - [ - "ident-token", - "my-xl-auto", - 184382, - 184391, - { - "value": "my-xl-auto" - } - ], - [ - "{-token", - "{", - 184392, - 184392, - null - ], - [ - "ident-token", - "margin-top", - 184393, - 184402, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184403, - 184403, - null - ], - [ - "ident-token", - "auto", - 184404, - 184407, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 184408, - 184408, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184409, - 184417, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 184418, - 184418, - null - ], - [ - "ident-token", - "margin-bottom", - 184419, - 184431, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184432, - 184432, - null - ], - [ - "ident-token", - "auto", - 184433, - 184436, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 184437, - 184437, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184438, - 184446, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184447, - 184447, - null - ], - [ - "delim-token", - ".", - 184448, - 184448, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-0", - 184449, - 184455, - { - "value": "mt-xl-0" - } - ], - [ - "{-token", - "{", - 184456, - 184456, - null - ], - [ - "ident-token", - "margin-top", - 184457, - 184466, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184467, - 184467, - null - ], - [ - "number-token", - "0", - 184468, - 184468, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 184469, - 184469, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184470, - 184478, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184479, - 184479, - null - ], - [ - "delim-token", - ".", - 184480, - 184480, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-1", - 184481, - 184487, - { - "value": "mt-xl-1" - } - ], - [ - "{-token", - "{", - 184488, - 184488, - null - ], - [ - "ident-token", - "margin-top", - 184489, - 184498, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184499, - 184499, - null - ], - [ - "dimension-token", - ".25rem", - 184500, - 184505, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184506, - 184506, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184507, - 184515, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184516, - 184516, - null - ], - [ - "delim-token", - ".", - 184517, - 184517, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-2", - 184518, - 184524, - { - "value": "mt-xl-2" - } - ], - [ - "{-token", - "{", - 184525, - 184525, - null - ], - [ - "ident-token", - "margin-top", - 184526, - 184535, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184536, - 184536, - null - ], - [ - "dimension-token", - ".5rem", - 184537, - 184541, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184542, - 184542, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184543, - 184551, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184552, - 184552, - null - ], - [ - "delim-token", - ".", - 184553, - 184553, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-3", - 184554, - 184560, - { - "value": "mt-xl-3" - } - ], - [ - "{-token", - "{", - 184561, - 184561, - null - ], - [ - "ident-token", - "margin-top", - 184562, - 184571, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184572, - 184572, - null - ], - [ - "dimension-token", - "1rem", - 184573, - 184576, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184577, - 184577, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184578, - 184586, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184587, - 184587, - null - ], - [ - "delim-token", - ".", - 184588, - 184588, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-4", - 184589, - 184595, - { - "value": "mt-xl-4" - } - ], - [ - "{-token", - "{", - 184596, - 184596, - null - ], - [ - "ident-token", - "margin-top", - 184597, - 184606, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184607, - 184607, - null - ], - [ - "dimension-token", - "1.5rem", - 184608, - 184613, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184614, - 184614, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184615, - 184623, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184624, - 184624, - null - ], - [ - "delim-token", - ".", - 184625, - 184625, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-5", - 184626, - 184632, - { - "value": "mt-xl-5" - } - ], - [ - "{-token", - "{", - 184633, - 184633, - null - ], - [ - "ident-token", - "margin-top", - 184634, - 184643, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184644, - 184644, - null - ], - [ - "dimension-token", - "3rem", - 184645, - 184648, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184649, - 184649, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184650, - 184658, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184659, - 184659, - null - ], - [ - "delim-token", - ".", - 184660, - 184660, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xl-auto", - 184661, - 184670, - { - "value": "mt-xl-auto" - } - ], - [ - "{-token", - "{", - 184671, - 184671, - null - ], - [ - "ident-token", - "margin-top", - 184672, - 184681, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 184682, - 184682, - null - ], - [ - "ident-token", - "auto", - 184683, - 184686, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 184687, - 184687, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184688, - 184696, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184697, - 184697, - null - ], - [ - "delim-token", - ".", - 184698, - 184698, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-0", - 184699, - 184705, - { - "value": "me-xl-0" - } - ], - [ - "{-token", - "{", - 184706, - 184706, - null - ], - [ - "ident-token", - "margin-right", - 184707, - 184718, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184719, - 184719, - null - ], - [ - "number-token", - "0", - 184720, - 184720, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 184721, - 184721, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184722, - 184730, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184731, - 184731, - null - ], - [ - "delim-token", - ".", - 184732, - 184732, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-1", - 184733, - 184739, - { - "value": "me-xl-1" - } - ], - [ - "{-token", - "{", - 184740, - 184740, - null - ], - [ - "ident-token", - "margin-right", - 184741, - 184752, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184753, - 184753, - null - ], - [ - "dimension-token", - ".25rem", - 184754, - 184759, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184760, - 184760, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184761, - 184769, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184770, - 184770, - null - ], - [ - "delim-token", - ".", - 184771, - 184771, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-2", - 184772, - 184778, - { - "value": "me-xl-2" - } - ], - [ - "{-token", - "{", - 184779, - 184779, - null - ], - [ - "ident-token", - "margin-right", - 184780, - 184791, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184792, - 184792, - null - ], - [ - "dimension-token", - ".5rem", - 184793, - 184797, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184798, - 184798, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184799, - 184807, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184808, - 184808, - null - ], - [ - "delim-token", - ".", - 184809, - 184809, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-3", - 184810, - 184816, - { - "value": "me-xl-3" - } - ], - [ - "{-token", - "{", - 184817, - 184817, - null - ], - [ - "ident-token", - "margin-right", - 184818, - 184829, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184830, - 184830, - null - ], - [ - "dimension-token", - "1rem", - 184831, - 184834, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184835, - 184835, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184836, - 184844, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184845, - 184845, - null - ], - [ - "delim-token", - ".", - 184846, - 184846, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-4", - 184847, - 184853, - { - "value": "me-xl-4" - } - ], - [ - "{-token", - "{", - 184854, - 184854, - null - ], - [ - "ident-token", - "margin-right", - 184855, - 184866, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184867, - 184867, - null - ], - [ - "dimension-token", - "1.5rem", - 184868, - 184873, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184874, - 184874, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184875, - 184883, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184884, - 184884, - null - ], - [ - "delim-token", - ".", - 184885, - 184885, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-5", - 184886, - 184892, - { - "value": "me-xl-5" - } - ], - [ - "{-token", - "{", - 184893, - 184893, - null - ], - [ - "ident-token", - "margin-right", - 184894, - 184905, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184906, - 184906, - null - ], - [ - "dimension-token", - "3rem", - 184907, - 184910, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 184911, - 184911, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184912, - 184920, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184921, - 184921, - null - ], - [ - "delim-token", - ".", - 184922, - 184922, - { - "value": "." - } - ], - [ - "ident-token", - "me-xl-auto", - 184923, - 184932, - { - "value": "me-xl-auto" - } - ], - [ - "{-token", - "{", - 184933, - 184933, - null - ], - [ - "ident-token", - "margin-right", - 184934, - 184945, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 184946, - 184946, - null - ], - [ - "ident-token", - "auto", - 184947, - 184950, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 184951, - 184951, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184952, - 184960, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184961, - 184961, - null - ], - [ - "delim-token", - ".", - 184962, - 184962, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-0", - 184963, - 184969, - { - "value": "mb-xl-0" - } - ], - [ - "{-token", - "{", - 184970, - 184970, - null - ], - [ - "ident-token", - "margin-bottom", - 184971, - 184983, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 184984, - 184984, - null - ], - [ - "number-token", - "0", - 184985, - 184985, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 184986, - 184986, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 184987, - 184995, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 184996, - 184996, - null - ], - [ - "delim-token", - ".", - 184997, - 184997, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-1", - 184998, - 185004, - { - "value": "mb-xl-1" - } - ], - [ - "{-token", - "{", - 185005, - 185005, - null - ], - [ - "ident-token", - "margin-bottom", - 185006, - 185018, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185019, - 185019, - null - ], - [ - "dimension-token", - ".25rem", - 185020, - 185025, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185026, - 185026, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185027, - 185035, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185036, - 185036, - null - ], - [ - "delim-token", - ".", - 185037, - 185037, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-2", - 185038, - 185044, - { - "value": "mb-xl-2" - } - ], - [ - "{-token", - "{", - 185045, - 185045, - null - ], - [ - "ident-token", - "margin-bottom", - 185046, - 185058, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185059, - 185059, - null - ], - [ - "dimension-token", - ".5rem", - 185060, - 185064, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185065, - 185065, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185066, - 185074, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185075, - 185075, - null - ], - [ - "delim-token", - ".", - 185076, - 185076, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-3", - 185077, - 185083, - { - "value": "mb-xl-3" - } - ], - [ - "{-token", - "{", - 185084, - 185084, - null - ], - [ - "ident-token", - "margin-bottom", - 185085, - 185097, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185098, - 185098, - null - ], - [ - "dimension-token", - "1rem", - 185099, - 185102, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185103, - 185103, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185104, - 185112, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185113, - 185113, - null - ], - [ - "delim-token", - ".", - 185114, - 185114, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-4", - 185115, - 185121, - { - "value": "mb-xl-4" - } - ], - [ - "{-token", - "{", - 185122, - 185122, - null - ], - [ - "ident-token", - "margin-bottom", - 185123, - 185135, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185136, - 185136, - null - ], - [ - "dimension-token", - "1.5rem", - 185137, - 185142, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185143, - 185143, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185144, - 185152, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185153, - 185153, - null - ], - [ - "delim-token", - ".", - 185154, - 185154, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-5", - 185155, - 185161, - { - "value": "mb-xl-5" - } - ], - [ - "{-token", - "{", - 185162, - 185162, - null - ], - [ - "ident-token", - "margin-bottom", - 185163, - 185175, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185176, - 185176, - null - ], - [ - "dimension-token", - "3rem", - 185177, - 185180, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185181, - 185181, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185182, - 185190, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185191, - 185191, - null - ], - [ - "delim-token", - ".", - 185192, - 185192, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xl-auto", - 185193, - 185202, - { - "value": "mb-xl-auto" - } - ], - [ - "{-token", - "{", - 185203, - 185203, - null - ], - [ - "ident-token", - "margin-bottom", - 185204, - 185216, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 185217, - 185217, - null - ], - [ - "ident-token", - "auto", - 185218, - 185221, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 185222, - 185222, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185223, - 185231, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185232, - 185232, - null - ], - [ - "delim-token", - ".", - 185233, - 185233, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-0", - 185234, - 185240, - { - "value": "ms-xl-0" - } - ], - [ - "{-token", - "{", - 185241, - 185241, - null - ], - [ - "ident-token", - "margin-left", - 185242, - 185252, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185253, - 185253, - null - ], - [ - "number-token", - "0", - 185254, - 185254, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 185255, - 185255, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185256, - 185264, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185265, - 185265, - null - ], - [ - "delim-token", - ".", - 185266, - 185266, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-1", - 185267, - 185273, - { - "value": "ms-xl-1" - } - ], - [ - "{-token", - "{", - 185274, - 185274, - null - ], - [ - "ident-token", - "margin-left", - 185275, - 185285, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185286, - 185286, - null - ], - [ - "dimension-token", - ".25rem", - 185287, - 185292, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185293, - 185293, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185294, - 185302, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185303, - 185303, - null - ], - [ - "delim-token", - ".", - 185304, - 185304, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-2", - 185305, - 185311, - { - "value": "ms-xl-2" - } - ], - [ - "{-token", - "{", - 185312, - 185312, - null - ], - [ - "ident-token", - "margin-left", - 185313, - 185323, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185324, - 185324, - null - ], - [ - "dimension-token", - ".5rem", - 185325, - 185329, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185330, - 185330, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185331, - 185339, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185340, - 185340, - null - ], - [ - "delim-token", - ".", - 185341, - 185341, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-3", - 185342, - 185348, - { - "value": "ms-xl-3" - } - ], - [ - "{-token", - "{", - 185349, - 185349, - null - ], - [ - "ident-token", - "margin-left", - 185350, - 185360, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185361, - 185361, - null - ], - [ - "dimension-token", - "1rem", - 185362, - 185365, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185366, - 185366, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185367, - 185375, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185376, - 185376, - null - ], - [ - "delim-token", - ".", - 185377, - 185377, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-4", - 185378, - 185384, - { - "value": "ms-xl-4" - } - ], - [ - "{-token", - "{", - 185385, - 185385, - null - ], - [ - "ident-token", - "margin-left", - 185386, - 185396, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185397, - 185397, - null - ], - [ - "dimension-token", - "1.5rem", - 185398, - 185403, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185404, - 185404, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185405, - 185413, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185414, - 185414, - null - ], - [ - "delim-token", - ".", - 185415, - 185415, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-5", - 185416, - 185422, - { - "value": "ms-xl-5" - } - ], - [ - "{-token", - "{", - 185423, - 185423, - null - ], - [ - "ident-token", - "margin-left", - 185424, - 185434, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185435, - 185435, - null - ], - [ - "dimension-token", - "3rem", - 185436, - 185439, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185440, - 185440, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185441, - 185449, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185450, - 185450, - null - ], - [ - "delim-token", - ".", - 185451, - 185451, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xl-auto", - 185452, - 185461, - { - "value": "ms-xl-auto" - } - ], - [ - "{-token", - "{", - 185462, - 185462, - null - ], - [ - "ident-token", - "margin-left", - 185463, - 185473, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 185474, - 185474, - null - ], - [ - "ident-token", - "auto", - 185475, - 185478, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 185479, - 185479, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185480, - 185488, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185489, - 185489, - null - ], - [ - "delim-token", - ".", - 185490, - 185490, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-0", - 185491, - 185496, - { - "value": "p-xl-0" - } - ], - [ - "{-token", - "{", - 185497, - 185497, - null - ], - [ - "ident-token", - "padding", - 185498, - 185504, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185505, - 185505, - null - ], - [ - "number-token", - "0", - 185506, - 185506, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 185507, - 185507, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185508, - 185516, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185517, - 185517, - null - ], - [ - "delim-token", - ".", - 185518, - 185518, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-1", - 185519, - 185524, - { - "value": "p-xl-1" - } - ], - [ - "{-token", - "{", - 185525, - 185525, - null - ], - [ - "ident-token", - "padding", - 185526, - 185532, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185533, - 185533, - null - ], - [ - "dimension-token", - ".25rem", - 185534, - 185539, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185540, - 185540, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185541, - 185549, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185550, - 185550, - null - ], - [ - "delim-token", - ".", - 185551, - 185551, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-2", - 185552, - 185557, - { - "value": "p-xl-2" - } - ], - [ - "{-token", - "{", - 185558, - 185558, - null - ], - [ - "ident-token", - "padding", - 185559, - 185565, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185566, - 185566, - null - ], - [ - "dimension-token", - ".5rem", - 185567, - 185571, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185572, - 185572, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185573, - 185581, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185582, - 185582, - null - ], - [ - "delim-token", - ".", - 185583, - 185583, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-3", - 185584, - 185589, - { - "value": "p-xl-3" - } - ], - [ - "{-token", - "{", - 185590, - 185590, - null - ], - [ - "ident-token", - "padding", - 185591, - 185597, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185598, - 185598, - null - ], - [ - "dimension-token", - "1rem", - 185599, - 185602, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185603, - 185603, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185604, - 185612, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185613, - 185613, - null - ], - [ - "delim-token", - ".", - 185614, - 185614, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-4", - 185615, - 185620, - { - "value": "p-xl-4" - } - ], - [ - "{-token", - "{", - 185621, - 185621, - null - ], - [ - "ident-token", - "padding", - 185622, - 185628, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185629, - 185629, - null - ], - [ - "dimension-token", - "1.5rem", - 185630, - 185635, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185636, - 185636, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185637, - 185645, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185646, - 185646, - null - ], - [ - "delim-token", - ".", - 185647, - 185647, - { - "value": "." - } - ], - [ - "ident-token", - "p-xl-5", - 185648, - 185653, - { - "value": "p-xl-5" - } - ], - [ - "{-token", - "{", - 185654, - 185654, - null - ], - [ - "ident-token", - "padding", - 185655, - 185661, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 185662, - 185662, - null - ], - [ - "dimension-token", - "3rem", - 185663, - 185666, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185667, - 185667, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185668, - 185676, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185677, - 185677, - null - ], - [ - "delim-token", - ".", - 185678, - 185678, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-0", - 185679, - 185685, - { - "value": "px-xl-0" - } - ], - [ - "{-token", - "{", - 185686, - 185686, - null - ], - [ - "ident-token", - "padding-right", - 185687, - 185699, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 185700, - 185700, - null - ], - [ - "number-token", - "0", - 185701, - 185701, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 185702, - 185702, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185703, - 185711, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 185712, - 185712, - null - ], - [ - "ident-token", - "padding-left", - 185713, - 185724, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 185725, - 185725, - null - ], - [ - "number-token", - "0", - 185726, - 185726, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 185727, - 185727, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185728, - 185736, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185737, - 185737, - null - ], - [ - "delim-token", - ".", - 185738, - 185738, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-1", - 185739, - 185745, - { - "value": "px-xl-1" - } - ], - [ - "{-token", - "{", - 185746, - 185746, - null - ], - [ - "ident-token", - "padding-right", - 185747, - 185759, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 185760, - 185760, - null - ], - [ - "dimension-token", - ".25rem", - 185761, - 185766, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185767, - 185767, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185768, - 185776, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 185777, - 185777, - null - ], - [ - "ident-token", - "padding-left", - 185778, - 185789, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 185790, - 185790, - null - ], - [ - "dimension-token", - ".25rem", - 185791, - 185796, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185797, - 185797, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185798, - 185806, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185807, - 185807, - null - ], - [ - "delim-token", - ".", - 185808, - 185808, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-2", - 185809, - 185815, - { - "value": "px-xl-2" - } - ], - [ - "{-token", - "{", - 185816, - 185816, - null - ], - [ - "ident-token", - "padding-right", - 185817, - 185829, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 185830, - 185830, - null - ], - [ - "dimension-token", - ".5rem", - 185831, - 185835, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185836, - 185836, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185837, - 185845, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 185846, - 185846, - null - ], - [ - "ident-token", - "padding-left", - 185847, - 185858, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 185859, - 185859, - null - ], - [ - "dimension-token", - ".5rem", - 185860, - 185864, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185865, - 185865, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185866, - 185874, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185875, - 185875, - null - ], - [ - "delim-token", - ".", - 185876, - 185876, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-3", - 185877, - 185883, - { - "value": "px-xl-3" - } - ], - [ - "{-token", - "{", - 185884, - 185884, - null - ], - [ - "ident-token", - "padding-right", - 185885, - 185897, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 185898, - 185898, - null - ], - [ - "dimension-token", - "1rem", - 185899, - 185902, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185903, - 185903, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185904, - 185912, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 185913, - 185913, - null - ], - [ - "ident-token", - "padding-left", - 185914, - 185925, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 185926, - 185926, - null - ], - [ - "dimension-token", - "1rem", - 185927, - 185930, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185931, - 185931, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185932, - 185940, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 185941, - 185941, - null - ], - [ - "delim-token", - ".", - 185942, - 185942, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-4", - 185943, - 185949, - { - "value": "px-xl-4" - } - ], - [ - "{-token", - "{", - 185950, - 185950, - null - ], - [ - "ident-token", - "padding-right", - 185951, - 185963, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 185964, - 185964, - null - ], - [ - "dimension-token", - "1.5rem", - 185965, - 185970, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 185971, - 185971, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 185972, - 185980, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 185981, - 185981, - null - ], - [ - "ident-token", - "padding-left", - 185982, - 185993, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 185994, - 185994, - null - ], - [ - "dimension-token", - "1.5rem", - 185995, - 186000, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186001, - 186001, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186002, - 186010, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186011, - 186011, - null - ], - [ - "delim-token", - ".", - 186012, - 186012, - { - "value": "." - } - ], - [ - "ident-token", - "px-xl-5", - 186013, - 186019, - { - "value": "px-xl-5" - } - ], - [ - "{-token", - "{", - 186020, - 186020, - null - ], - [ - "ident-token", - "padding-right", - 186021, - 186033, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186034, - 186034, - null - ], - [ - "dimension-token", - "3rem", - 186035, - 186038, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186039, - 186039, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186040, - 186048, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186049, - 186049, - null - ], - [ - "ident-token", - "padding-left", - 186050, - 186061, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 186062, - 186062, - null - ], - [ - "dimension-token", - "3rem", - 186063, - 186066, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186067, - 186067, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186068, - 186076, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186077, - 186077, - null - ], - [ - "delim-token", - ".", - 186078, - 186078, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-0", - 186079, - 186085, - { - "value": "py-xl-0" - } - ], - [ - "{-token", - "{", - 186086, - 186086, - null - ], - [ - "ident-token", - "padding-top", - 186087, - 186097, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186098, - 186098, - null - ], - [ - "number-token", - "0", - 186099, - 186099, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 186100, - 186100, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186101, - 186109, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186110, - 186110, - null - ], - [ - "ident-token", - "padding-bottom", - 186111, - 186124, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186125, - 186125, - null - ], - [ - "number-token", - "0", - 186126, - 186126, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 186127, - 186127, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186128, - 186136, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186137, - 186137, - null - ], - [ - "delim-token", - ".", - 186138, - 186138, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-1", - 186139, - 186145, - { - "value": "py-xl-1" - } - ], - [ - "{-token", - "{", - 186146, - 186146, - null - ], - [ - "ident-token", - "padding-top", - 186147, - 186157, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186158, - 186158, - null - ], - [ - "dimension-token", - ".25rem", - 186159, - 186164, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186165, - 186165, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186166, - 186174, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186175, - 186175, - null - ], - [ - "ident-token", - "padding-bottom", - 186176, - 186189, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186190, - 186190, - null - ], - [ - "dimension-token", - ".25rem", - 186191, - 186196, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186197, - 186197, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186198, - 186206, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186207, - 186207, - null - ], - [ - "delim-token", - ".", - 186208, - 186208, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-2", - 186209, - 186215, - { - "value": "py-xl-2" - } - ], - [ - "{-token", - "{", - 186216, - 186216, - null - ], - [ - "ident-token", - "padding-top", - 186217, - 186227, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186228, - 186228, - null - ], - [ - "dimension-token", - ".5rem", - 186229, - 186233, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186234, - 186234, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186235, - 186243, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186244, - 186244, - null - ], - [ - "ident-token", - "padding-bottom", - 186245, - 186258, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186259, - 186259, - null - ], - [ - "dimension-token", - ".5rem", - 186260, - 186264, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186265, - 186265, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186266, - 186274, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186275, - 186275, - null - ], - [ - "delim-token", - ".", - 186276, - 186276, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-3", - 186277, - 186283, - { - "value": "py-xl-3" - } - ], - [ - "{-token", - "{", - 186284, - 186284, - null - ], - [ - "ident-token", - "padding-top", - 186285, - 186295, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186296, - 186296, - null - ], - [ - "dimension-token", - "1rem", - 186297, - 186300, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186301, - 186301, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186302, - 186310, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186311, - 186311, - null - ], - [ - "ident-token", - "padding-bottom", - 186312, - 186325, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186326, - 186326, - null - ], - [ - "dimension-token", - "1rem", - 186327, - 186330, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186331, - 186331, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186332, - 186340, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186341, - 186341, - null - ], - [ - "delim-token", - ".", - 186342, - 186342, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-4", - 186343, - 186349, - { - "value": "py-xl-4" - } - ], - [ - "{-token", - "{", - 186350, - 186350, - null - ], - [ - "ident-token", - "padding-top", - 186351, - 186361, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186362, - 186362, - null - ], - [ - "dimension-token", - "1.5rem", - 186363, - 186368, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186369, - 186369, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186370, - 186378, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186379, - 186379, - null - ], - [ - "ident-token", - "padding-bottom", - 186380, - 186393, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186394, - 186394, - null - ], - [ - "dimension-token", - "1.5rem", - 186395, - 186400, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186401, - 186401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186402, - 186410, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186411, - 186411, - null - ], - [ - "delim-token", - ".", - 186412, - 186412, - { - "value": "." - } - ], - [ - "ident-token", - "py-xl-5", - 186413, - 186419, - { - "value": "py-xl-5" - } - ], - [ - "{-token", - "{", - 186420, - 186420, - null - ], - [ - "ident-token", - "padding-top", - 186421, - 186431, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186432, - 186432, - null - ], - [ - "dimension-token", - "3rem", - 186433, - 186436, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186437, - 186437, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186438, - 186446, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 186447, - 186447, - null - ], - [ - "ident-token", - "padding-bottom", - 186448, - 186461, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186462, - 186462, - null - ], - [ - "dimension-token", - "3rem", - 186463, - 186466, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186467, - 186467, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186468, - 186476, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186477, - 186477, - null - ], - [ - "delim-token", - ".", - 186478, - 186478, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-0", - 186479, - 186485, - { - "value": "pt-xl-0" - } - ], - [ - "{-token", - "{", - 186486, - 186486, - null - ], - [ - "ident-token", - "padding-top", - 186487, - 186497, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186498, - 186498, - null - ], - [ - "number-token", - "0", - 186499, - 186499, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 186500, - 186500, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186501, - 186509, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186510, - 186510, - null - ], - [ - "delim-token", - ".", - 186511, - 186511, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-1", - 186512, - 186518, - { - "value": "pt-xl-1" - } - ], - [ - "{-token", - "{", - 186519, - 186519, - null - ], - [ - "ident-token", - "padding-top", - 186520, - 186530, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186531, - 186531, - null - ], - [ - "dimension-token", - ".25rem", - 186532, - 186537, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186538, - 186538, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186539, - 186547, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186548, - 186548, - null - ], - [ - "delim-token", - ".", - 186549, - 186549, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-2", - 186550, - 186556, - { - "value": "pt-xl-2" - } - ], - [ - "{-token", - "{", - 186557, - 186557, - null - ], - [ - "ident-token", - "padding-top", - 186558, - 186568, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186569, - 186569, - null - ], - [ - "dimension-token", - ".5rem", - 186570, - 186574, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186575, - 186575, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186576, - 186584, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186585, - 186585, - null - ], - [ - "delim-token", - ".", - 186586, - 186586, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-3", - 186587, - 186593, - { - "value": "pt-xl-3" - } - ], - [ - "{-token", - "{", - 186594, - 186594, - null - ], - [ - "ident-token", - "padding-top", - 186595, - 186605, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186606, - 186606, - null - ], - [ - "dimension-token", - "1rem", - 186607, - 186610, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186611, - 186611, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186612, - 186620, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186621, - 186621, - null - ], - [ - "delim-token", - ".", - 186622, - 186622, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-4", - 186623, - 186629, - { - "value": "pt-xl-4" - } - ], - [ - "{-token", - "{", - 186630, - 186630, - null - ], - [ - "ident-token", - "padding-top", - 186631, - 186641, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186642, - 186642, - null - ], - [ - "dimension-token", - "1.5rem", - 186643, - 186648, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186649, - 186649, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186650, - 186658, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186659, - 186659, - null - ], - [ - "delim-token", - ".", - 186660, - 186660, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xl-5", - 186661, - 186667, - { - "value": "pt-xl-5" - } - ], - [ - "{-token", - "{", - 186668, - 186668, - null - ], - [ - "ident-token", - "padding-top", - 186669, - 186679, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 186680, - 186680, - null - ], - [ - "dimension-token", - "3rem", - 186681, - 186684, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186685, - 186685, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186686, - 186694, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186695, - 186695, - null - ], - [ - "delim-token", - ".", - 186696, - 186696, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-0", - 186697, - 186703, - { - "value": "pe-xl-0" - } - ], - [ - "{-token", - "{", - 186704, - 186704, - null - ], - [ - "ident-token", - "padding-right", - 186705, - 186717, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186718, - 186718, - null - ], - [ - "number-token", - "0", - 186719, - 186719, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 186720, - 186720, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186721, - 186729, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186730, - 186730, - null - ], - [ - "delim-token", - ".", - 186731, - 186731, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-1", - 186732, - 186738, - { - "value": "pe-xl-1" - } - ], - [ - "{-token", - "{", - 186739, - 186739, - null - ], - [ - "ident-token", - "padding-right", - 186740, - 186752, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186753, - 186753, - null - ], - [ - "dimension-token", - ".25rem", - 186754, - 186759, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186760, - 186760, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186761, - 186769, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186770, - 186770, - null - ], - [ - "delim-token", - ".", - 186771, - 186771, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-2", - 186772, - 186778, - { - "value": "pe-xl-2" - } - ], - [ - "{-token", - "{", - 186779, - 186779, - null - ], - [ - "ident-token", - "padding-right", - 186780, - 186792, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186793, - 186793, - null - ], - [ - "dimension-token", - ".5rem", - 186794, - 186798, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186799, - 186799, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186800, - 186808, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186809, - 186809, - null - ], - [ - "delim-token", - ".", - 186810, - 186810, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-3", - 186811, - 186817, - { - "value": "pe-xl-3" - } - ], - [ - "{-token", - "{", - 186818, - 186818, - null - ], - [ - "ident-token", - "padding-right", - 186819, - 186831, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186832, - 186832, - null - ], - [ - "dimension-token", - "1rem", - 186833, - 186836, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186837, - 186837, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186838, - 186846, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186847, - 186847, - null - ], - [ - "delim-token", - ".", - 186848, - 186848, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-4", - 186849, - 186855, - { - "value": "pe-xl-4" - } - ], - [ - "{-token", - "{", - 186856, - 186856, - null - ], - [ - "ident-token", - "padding-right", - 186857, - 186869, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186870, - 186870, - null - ], - [ - "dimension-token", - "1.5rem", - 186871, - 186876, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186877, - 186877, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186878, - 186886, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186887, - 186887, - null - ], - [ - "delim-token", - ".", - 186888, - 186888, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xl-5", - 186889, - 186895, - { - "value": "pe-xl-5" - } - ], - [ - "{-token", - "{", - 186896, - 186896, - null - ], - [ - "ident-token", - "padding-right", - 186897, - 186909, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 186910, - 186910, - null - ], - [ - "dimension-token", - "3rem", - 186911, - 186914, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186915, - 186915, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186916, - 186924, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186925, - 186925, - null - ], - [ - "delim-token", - ".", - 186926, - 186926, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-0", - 186927, - 186933, - { - "value": "pb-xl-0" - } - ], - [ - "{-token", - "{", - 186934, - 186934, - null - ], - [ - "ident-token", - "padding-bottom", - 186935, - 186948, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186949, - 186949, - null - ], - [ - "number-token", - "0", - 186950, - 186950, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 186951, - 186951, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186952, - 186960, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 186961, - 186961, - null - ], - [ - "delim-token", - ".", - 186962, - 186962, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-1", - 186963, - 186969, - { - "value": "pb-xl-1" - } - ], - [ - "{-token", - "{", - 186970, - 186970, - null - ], - [ - "ident-token", - "padding-bottom", - 186971, - 186984, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 186985, - 186985, - null - ], - [ - "dimension-token", - ".25rem", - 186986, - 186991, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 186992, - 186992, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 186993, - 187001, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187002, - 187002, - null - ], - [ - "delim-token", - ".", - 187003, - 187003, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-2", - 187004, - 187010, - { - "value": "pb-xl-2" - } - ], - [ - "{-token", - "{", - 187011, - 187011, - null - ], - [ - "ident-token", - "padding-bottom", - 187012, - 187025, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 187026, - 187026, - null - ], - [ - "dimension-token", - ".5rem", - 187027, - 187031, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187032, - 187032, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187033, - 187041, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187042, - 187042, - null - ], - [ - "delim-token", - ".", - 187043, - 187043, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-3", - 187044, - 187050, - { - "value": "pb-xl-3" - } - ], - [ - "{-token", - "{", - 187051, - 187051, - null - ], - [ - "ident-token", - "padding-bottom", - 187052, - 187065, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 187066, - 187066, - null - ], - [ - "dimension-token", - "1rem", - 187067, - 187070, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187071, - 187071, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187072, - 187080, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187081, - 187081, - null - ], - [ - "delim-token", - ".", - 187082, - 187082, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-4", - 187083, - 187089, - { - "value": "pb-xl-4" - } - ], - [ - "{-token", - "{", - 187090, - 187090, - null - ], - [ - "ident-token", - "padding-bottom", - 187091, - 187104, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 187105, - 187105, - null - ], - [ - "dimension-token", - "1.5rem", - 187106, - 187111, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187112, - 187112, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187113, - 187121, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187122, - 187122, - null - ], - [ - "delim-token", - ".", - 187123, - 187123, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xl-5", - 187124, - 187130, - { - "value": "pb-xl-5" - } - ], - [ - "{-token", - "{", - 187131, - 187131, - null - ], - [ - "ident-token", - "padding-bottom", - 187132, - 187145, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 187146, - 187146, - null - ], - [ - "dimension-token", - "3rem", - 187147, - 187150, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187151, - 187151, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187152, - 187160, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187161, - 187161, - null - ], - [ - "delim-token", - ".", - 187162, - 187162, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-0", - 187163, - 187169, - { - "value": "ps-xl-0" - } - ], - [ - "{-token", - "{", - 187170, - 187170, - null - ], - [ - "ident-token", - "padding-left", - 187171, - 187182, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187183, - 187183, - null - ], - [ - "number-token", - "0", - 187184, - 187184, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 187185, - 187185, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187186, - 187194, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187195, - 187195, - null - ], - [ - "delim-token", - ".", - 187196, - 187196, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-1", - 187197, - 187203, - { - "value": "ps-xl-1" - } - ], - [ - "{-token", - "{", - 187204, - 187204, - null - ], - [ - "ident-token", - "padding-left", - 187205, - 187216, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187217, - 187217, - null - ], - [ - "dimension-token", - ".25rem", - 187218, - 187223, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187224, - 187224, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187225, - 187233, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187234, - 187234, - null - ], - [ - "delim-token", - ".", - 187235, - 187235, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-2", - 187236, - 187242, - { - "value": "ps-xl-2" - } - ], - [ - "{-token", - "{", - 187243, - 187243, - null - ], - [ - "ident-token", - "padding-left", - 187244, - 187255, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187256, - 187256, - null - ], - [ - "dimension-token", - ".5rem", - 187257, - 187261, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187262, - 187262, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187263, - 187271, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187272, - 187272, - null - ], - [ - "delim-token", - ".", - 187273, - 187273, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-3", - 187274, - 187280, - { - "value": "ps-xl-3" - } - ], - [ - "{-token", - "{", - 187281, - 187281, - null - ], - [ - "ident-token", - "padding-left", - 187282, - 187293, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187294, - 187294, - null - ], - [ - "dimension-token", - "1rem", - 187295, - 187298, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187299, - 187299, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187300, - 187308, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187309, - 187309, - null - ], - [ - "delim-token", - ".", - 187310, - 187310, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-4", - 187311, - 187317, - { - "value": "ps-xl-4" - } - ], - [ - "{-token", - "{", - 187318, - 187318, - null - ], - [ - "ident-token", - "padding-left", - 187319, - 187330, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187331, - 187331, - null - ], - [ - "dimension-token", - "1.5rem", - 187332, - 187337, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187338, - 187338, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187339, - 187347, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187348, - 187348, - null - ], - [ - "delim-token", - ".", - 187349, - 187349, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xl-5", - 187350, - 187356, - { - "value": "ps-xl-5" - } - ], - [ - "{-token", - "{", - 187357, - 187357, - null - ], - [ - "ident-token", - "padding-left", - 187358, - 187369, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 187370, - 187370, - null - ], - [ - "dimension-token", - "3rem", - 187371, - 187374, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187375, - 187375, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187376, - 187384, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187385, - 187385, - null - ], - [ - "delim-token", - ".", - 187386, - 187386, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-0", - 187387, - 187394, - { - "value": "gap-xl-0" - } - ], - [ - "{-token", - "{", - 187395, - 187395, - null - ], - [ - "ident-token", - "gap", - 187396, - 187398, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187399, - 187399, - null - ], - [ - "number-token", - "0", - 187400, - 187400, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 187401, - 187401, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187402, - 187410, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187411, - 187411, - null - ], - [ - "delim-token", - ".", - 187412, - 187412, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-1", - 187413, - 187420, - { - "value": "gap-xl-1" - } - ], - [ - "{-token", - "{", - 187421, - 187421, - null - ], - [ - "ident-token", - "gap", - 187422, - 187424, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187425, - 187425, - null - ], - [ - "dimension-token", - ".25rem", - 187426, - 187431, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187432, - 187432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187433, - 187441, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187442, - 187442, - null - ], - [ - "delim-token", - ".", - 187443, - 187443, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-2", - 187444, - 187451, - { - "value": "gap-xl-2" - } - ], - [ - "{-token", - "{", - 187452, - 187452, - null - ], - [ - "ident-token", - "gap", - 187453, - 187455, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187456, - 187456, - null - ], - [ - "dimension-token", - ".5rem", - 187457, - 187461, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187462, - 187462, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187463, - 187471, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187472, - 187472, - null - ], - [ - "delim-token", - ".", - 187473, - 187473, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-3", - 187474, - 187481, - { - "value": "gap-xl-3" - } - ], - [ - "{-token", - "{", - 187482, - 187482, - null - ], - [ - "ident-token", - "gap", - 187483, - 187485, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187486, - 187486, - null - ], - [ - "dimension-token", - "1rem", - 187487, - 187490, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187491, - 187491, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187492, - 187500, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187501, - 187501, - null - ], - [ - "delim-token", - ".", - 187502, - 187502, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-4", - 187503, - 187510, - { - "value": "gap-xl-4" - } - ], - [ - "{-token", - "{", - 187511, - 187511, - null - ], - [ - "ident-token", - "gap", - 187512, - 187514, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187515, - 187515, - null - ], - [ - "dimension-token", - "1.5rem", - 187516, - 187521, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187522, - 187522, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187523, - 187531, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187532, - 187532, - null - ], - [ - "delim-token", - ".", - 187533, - 187533, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xl-5", - 187534, - 187541, - { - "value": "gap-xl-5" - } - ], - [ - "{-token", - "{", - 187542, - 187542, - null - ], - [ - "ident-token", - "gap", - 187543, - 187545, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 187546, - 187546, - null - ], - [ - "dimension-token", - "3rem", - 187547, - 187550, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 187551, - 187551, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187552, - 187560, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187561, - 187561, - null - ], - [ - "delim-token", - ".", - 187562, - 187562, - { - "value": "." - } - ], - [ - "ident-token", - "text-xl-start", - 187563, - 187575, - { - "value": "text-xl-start" - } - ], - [ - "{-token", - "{", - 187576, - 187576, - null - ], - [ - "ident-token", - "text-align", - 187577, - 187586, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 187587, - 187587, - null - ], - [ - "ident-token", - "left", - 187588, - 187591, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 187592, - 187592, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187593, - 187601, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187602, - 187602, - null - ], - [ - "delim-token", - ".", - 187603, - 187603, - { - "value": "." - } - ], - [ - "ident-token", - "text-xl-end", - 187604, - 187614, - { - "value": "text-xl-end" - } - ], - [ - "{-token", - "{", - 187615, - 187615, - null - ], - [ - "ident-token", - "text-align", - 187616, - 187625, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 187626, - 187626, - null - ], - [ - "ident-token", - "right", - 187627, - 187631, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 187632, - 187632, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187633, - 187641, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187642, - 187642, - null - ], - [ - "delim-token", - ".", - 187643, - 187643, - { - "value": "." - } - ], - [ - "ident-token", - "text-xl-center", - 187644, - 187657, - { - "value": "text-xl-center" - } - ], - [ - "{-token", - "{", - 187658, - 187658, - null - ], - [ - "ident-token", - "text-align", - 187659, - 187668, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 187669, - 187669, - null - ], - [ - "ident-token", - "center", - 187670, - 187675, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 187676, - 187676, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187677, - 187685, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187686, - 187686, - null - ], - [ - "}-token", - "}", - 187687, - 187687, - null - ], - [ - "at-keyword-token", - "@media", - 187688, - 187693, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 187694, - 187694, - null - ], - [ - "(-token", - "(", - 187695, - 187695, - null - ], - [ - "ident-token", - "min-width", - 187696, - 187704, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 187705, - 187705, - null - ], - [ - "dimension-token", - "1400px", - 187706, - 187711, - { - "value": 1400, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 187712, - 187712, - null - ], - [ - "{-token", - "{", - 187713, - 187713, - null - ], - [ - "delim-token", - ".", - 187714, - 187714, - { - "value": "." - } - ], - [ - "ident-token", - "float-xxl-start", - 187715, - 187729, - { - "value": "float-xxl-start" - } - ], - [ - "{-token", - "{", - 187730, - 187730, - null - ], - [ - "ident-token", - "float", - 187731, - 187735, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 187736, - 187736, - null - ], - [ - "ident-token", - "left", - 187737, - 187740, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 187741, - 187741, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187742, - 187750, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187751, - 187751, - null - ], - [ - "delim-token", - ".", - 187752, - 187752, - { - "value": "." - } - ], - [ - "ident-token", - "float-xxl-end", - 187753, - 187765, - { - "value": "float-xxl-end" - } - ], - [ - "{-token", - "{", - 187766, - 187766, - null - ], - [ - "ident-token", - "float", - 187767, - 187771, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 187772, - 187772, - null - ], - [ - "ident-token", - "right", - 187773, - 187777, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 187778, - 187778, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187779, - 187787, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187788, - 187788, - null - ], - [ - "delim-token", - ".", - 187789, - 187789, - { - "value": "." - } - ], - [ - "ident-token", - "float-xxl-none", - 187790, - 187803, - { - "value": "float-xxl-none" - } - ], - [ - "{-token", - "{", - 187804, - 187804, - null - ], - [ - "ident-token", - "float", - 187805, - 187809, - { - "value": "float" - } - ], - [ - "colon-token", - ":", - 187810, - 187810, - null - ], - [ - "ident-token", - "none", - 187811, - 187814, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 187815, - 187815, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187816, - 187824, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187825, - 187825, - null - ], - [ - "delim-token", - ".", - 187826, - 187826, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-inline", - 187827, - 187838, - { - "value": "d-xxl-inline" - } - ], - [ - "{-token", - "{", - 187839, - 187839, - null - ], - [ - "ident-token", - "display", - 187840, - 187846, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 187847, - 187847, - null - ], - [ - "ident-token", - "inline", - 187848, - 187853, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 187854, - 187854, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187855, - 187863, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187864, - 187864, - null - ], - [ - "delim-token", - ".", - 187865, - 187865, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-inline-block", - 187866, - 187883, - { - "value": "d-xxl-inline-block" - } - ], - [ - "{-token", - "{", - 187884, - 187884, - null - ], - [ - "ident-token", - "display", - 187885, - 187891, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 187892, - 187892, - null - ], - [ - "ident-token", - "inline-block", - 187893, - 187904, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 187905, - 187905, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187906, - 187914, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187915, - 187915, - null - ], - [ - "delim-token", - ".", - 187916, - 187916, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-block", - 187917, - 187927, - { - "value": "d-xxl-block" - } - ], - [ - "{-token", - "{", - 187928, - 187928, - null - ], - [ - "ident-token", - "display", - 187929, - 187935, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 187936, - 187936, - null - ], - [ - "ident-token", - "block", - 187937, - 187941, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 187942, - 187942, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187943, - 187951, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187952, - 187952, - null - ], - [ - "delim-token", - ".", - 187953, - 187953, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-grid", - 187954, - 187963, - { - "value": "d-xxl-grid" - } - ], - [ - "{-token", - "{", - 187964, - 187964, - null - ], - [ - "ident-token", - "display", - 187965, - 187971, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 187972, - 187972, - null - ], - [ - "ident-token", - "grid", - 187973, - 187976, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 187977, - 187977, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 187978, - 187986, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 187987, - 187987, - null - ], - [ - "delim-token", - ".", - 187988, - 187988, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-table", - 187989, - 187999, - { - "value": "d-xxl-table" - } - ], - [ - "{-token", - "{", - 188000, - 188000, - null - ], - [ - "ident-token", - "display", - 188001, - 188007, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188008, - 188008, - null - ], - [ - "ident-token", - "table", - 188009, - 188013, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 188014, - 188014, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188015, - 188023, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188024, - 188024, - null - ], - [ - "delim-token", - ".", - 188025, - 188025, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-table-row", - 188026, - 188040, - { - "value": "d-xxl-table-row" - } - ], - [ - "{-token", - "{", - 188041, - 188041, - null - ], - [ - "ident-token", - "display", - 188042, - 188048, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188049, - 188049, - null - ], - [ - "ident-token", - "table-row", - 188050, - 188058, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 188059, - 188059, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188060, - 188068, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188069, - 188069, - null - ], - [ - "delim-token", - ".", - 188070, - 188070, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-table-cell", - 188071, - 188086, - { - "value": "d-xxl-table-cell" - } - ], - [ - "{-token", - "{", - 188087, - 188087, - null - ], - [ - "ident-token", - "display", - 188088, - 188094, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188095, - 188095, - null - ], - [ - "ident-token", - "table-cell", - 188096, - 188105, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 188106, - 188106, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188107, - 188115, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188116, - 188116, - null - ], - [ - "delim-token", - ".", - 188117, - 188117, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-flex", - 188118, - 188127, - { - "value": "d-xxl-flex" - } - ], - [ - "{-token", - "{", - 188128, - 188128, - null - ], - [ - "ident-token", - "display", - 188129, - 188135, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188136, - 188136, - null - ], - [ - "ident-token", - "flex", - 188137, - 188140, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 188141, - 188141, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188142, - 188150, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188151, - 188151, - null - ], - [ - "delim-token", - ".", - 188152, - 188152, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-inline-flex", - 188153, - 188169, - { - "value": "d-xxl-inline-flex" - } - ], - [ - "{-token", - "{", - 188170, - 188170, - null - ], - [ - "ident-token", - "display", - 188171, - 188177, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188178, - 188178, - null - ], - [ - "ident-token", - "inline-flex", - 188179, - 188189, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 188190, - 188190, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188191, - 188199, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188200, - 188200, - null - ], - [ - "delim-token", - ".", - 188201, - 188201, - { - "value": "." - } - ], - [ - "ident-token", - "d-xxl-none", - 188202, - 188211, - { - "value": "d-xxl-none" - } - ], - [ - "{-token", - "{", - 188212, - 188212, - null - ], - [ - "ident-token", - "display", - 188213, - 188219, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 188220, - 188220, - null - ], - [ - "ident-token", - "none", - 188221, - 188224, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 188225, - 188225, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188226, - 188234, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188235, - 188235, - null - ], - [ - "delim-token", - ".", - 188236, - 188236, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-fill", - 188237, - 188249, - { - "value": "flex-xxl-fill" - } - ], - [ - "{-token", - "{", - 188250, - 188250, - null - ], - [ - "ident-token", - "flex", - 188251, - 188254, - { - "value": "flex" - } - ], - [ - "colon-token", - ":", - 188255, - 188255, - null - ], - [ - "number-token", - "1", - 188256, - 188256, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 188257, - 188257, - null - ], - [ - "number-token", - "1", - 188258, - 188258, - { - "value": 1, - "type": "integer" - } - ], - [ - "whitespace-token", - " ", - 188259, - 188259, - null - ], - [ - "ident-token", - "auto", - 188260, - 188263, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 188264, - 188264, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188265, - 188273, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188274, - 188274, - null - ], - [ - "delim-token", - ".", - 188275, - 188275, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-row", - 188276, - 188287, - { - "value": "flex-xxl-row" - } - ], - [ - "{-token", - "{", - 188288, - 188288, - null - ], - [ - "ident-token", - "flex-direction", - 188289, - 188302, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 188303, - 188303, - null - ], - [ - "ident-token", - "row", - 188304, - 188306, - { - "value": "row" - } - ], - [ - "delim-token", - "!", - 188307, - 188307, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188308, - 188316, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188317, - 188317, - null - ], - [ - "delim-token", - ".", - 188318, - 188318, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-column", - 188319, - 188333, - { - "value": "flex-xxl-column" - } - ], - [ - "{-token", - "{", - 188334, - 188334, - null - ], - [ - "ident-token", - "flex-direction", - 188335, - 188348, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 188349, - 188349, - null - ], - [ - "ident-token", - "column", - 188350, - 188355, - { - "value": "column" - } - ], - [ - "delim-token", - "!", - 188356, - 188356, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188357, - 188365, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188366, - 188366, - null - ], - [ - "delim-token", - ".", - 188367, - 188367, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-row-reverse", - 188368, - 188387, - { - "value": "flex-xxl-row-reverse" - } - ], - [ - "{-token", - "{", - 188388, - 188388, - null - ], - [ - "ident-token", - "flex-direction", - 188389, - 188402, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 188403, - 188403, - null - ], - [ - "ident-token", - "row-reverse", - 188404, - 188414, - { - "value": "row-reverse" - } - ], - [ - "delim-token", - "!", - 188415, - 188415, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188416, - 188424, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188425, - 188425, - null - ], - [ - "delim-token", - ".", - 188426, - 188426, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-column-reverse", - 188427, - 188449, - { - "value": "flex-xxl-column-reverse" - } - ], - [ - "{-token", - "{", - 188450, - 188450, - null - ], - [ - "ident-token", - "flex-direction", - 188451, - 188464, - { - "value": "flex-direction" - } - ], - [ - "colon-token", - ":", - 188465, - 188465, - null - ], - [ - "ident-token", - "column-reverse", - 188466, - 188479, - { - "value": "column-reverse" - } - ], - [ - "delim-token", - "!", - 188480, - 188480, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188481, - 188489, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188490, - 188490, - null - ], - [ - "delim-token", - ".", - 188491, - 188491, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-grow-0", - 188492, - 188506, - { - "value": "flex-xxl-grow-0" - } - ], - [ - "{-token", - "{", - 188507, - 188507, - null - ], - [ - "ident-token", - "flex-grow", - 188508, - 188516, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 188517, - 188517, - null - ], - [ - "number-token", - "0", - 188518, - 188518, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 188519, - 188519, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188520, - 188528, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188529, - 188529, - null - ], - [ - "delim-token", - ".", - 188530, - 188530, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-grow-1", - 188531, - 188545, - { - "value": "flex-xxl-grow-1" - } - ], - [ - "{-token", - "{", - 188546, - 188546, - null - ], - [ - "ident-token", - "flex-grow", - 188547, - 188555, - { - "value": "flex-grow" - } - ], - [ - "colon-token", - ":", - 188556, - 188556, - null - ], - [ - "number-token", - "1", - 188557, - 188557, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 188558, - 188558, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188559, - 188567, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188568, - 188568, - null - ], - [ - "delim-token", - ".", - 188569, - 188569, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-shrink-0", - 188570, - 188586, - { - "value": "flex-xxl-shrink-0" - } - ], - [ - "{-token", - "{", - 188587, - 188587, - null - ], - [ - "ident-token", - "flex-shrink", - 188588, - 188598, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 188599, - 188599, - null - ], - [ - "number-token", - "0", - 188600, - 188600, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 188601, - 188601, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188602, - 188610, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188611, - 188611, - null - ], - [ - "delim-token", - ".", - 188612, - 188612, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-shrink-1", - 188613, - 188629, - { - "value": "flex-xxl-shrink-1" - } - ], - [ - "{-token", - "{", - 188630, - 188630, - null - ], - [ - "ident-token", - "flex-shrink", - 188631, - 188641, - { - "value": "flex-shrink" - } - ], - [ - "colon-token", - ":", - 188642, - 188642, - null - ], - [ - "number-token", - "1", - 188643, - 188643, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 188644, - 188644, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188645, - 188653, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188654, - 188654, - null - ], - [ - "delim-token", - ".", - 188655, - 188655, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-wrap", - 188656, - 188668, - { - "value": "flex-xxl-wrap" - } - ], - [ - "{-token", - "{", - 188669, - 188669, - null - ], - [ - "ident-token", - "flex-wrap", - 188670, - 188678, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 188679, - 188679, - null - ], - [ - "ident-token", - "wrap", - 188680, - 188683, - { - "value": "wrap" - } - ], - [ - "delim-token", - "!", - 188684, - 188684, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188685, - 188693, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188694, - 188694, - null - ], - [ - "delim-token", - ".", - 188695, - 188695, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-nowrap", - 188696, - 188710, - { - "value": "flex-xxl-nowrap" - } - ], - [ - "{-token", - "{", - 188711, - 188711, - null - ], - [ - "ident-token", - "flex-wrap", - 188712, - 188720, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 188721, - 188721, - null - ], - [ - "ident-token", - "nowrap", - 188722, - 188727, - { - "value": "nowrap" - } - ], - [ - "delim-token", - "!", - 188728, - 188728, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188729, - 188737, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188738, - 188738, - null - ], - [ - "delim-token", - ".", - 188739, - 188739, - { - "value": "." - } - ], - [ - "ident-token", - "flex-xxl-wrap-reverse", - 188740, - 188760, - { - "value": "flex-xxl-wrap-reverse" - } - ], - [ - "{-token", - "{", - 188761, - 188761, - null - ], - [ - "ident-token", - "flex-wrap", - 188762, - 188770, - { - "value": "flex-wrap" - } - ], - [ - "colon-token", - ":", - 188771, - 188771, - null - ], - [ - "ident-token", - "wrap-reverse", - 188772, - 188783, - { - "value": "wrap-reverse" - } - ], - [ - "delim-token", - "!", - 188784, - 188784, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188785, - 188793, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188794, - 188794, - null - ], - [ - "delim-token", - ".", - 188795, - 188795, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-start", - 188796, - 188820, - { - "value": "justify-content-xxl-start" - } - ], - [ - "{-token", - "{", - 188821, - 188821, - null - ], - [ - "ident-token", - "justify-content", - 188822, - 188836, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 188837, - 188837, - null - ], - [ - "ident-token", - "flex-start", - 188838, - 188847, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 188848, - 188848, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188849, - 188857, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188858, - 188858, - null - ], - [ - "delim-token", - ".", - 188859, - 188859, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-end", - 188860, - 188882, - { - "value": "justify-content-xxl-end" - } - ], - [ - "{-token", - "{", - 188883, - 188883, - null - ], - [ - "ident-token", - "justify-content", - 188884, - 188898, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 188899, - 188899, - null - ], - [ - "ident-token", - "flex-end", - 188900, - 188907, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 188908, - 188908, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188909, - 188917, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188918, - 188918, - null - ], - [ - "delim-token", - ".", - 188919, - 188919, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-center", - 188920, - 188945, - { - "value": "justify-content-xxl-center" - } - ], - [ - "{-token", - "{", - 188946, - 188946, - null - ], - [ - "ident-token", - "justify-content", - 188947, - 188961, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 188962, - 188962, - null - ], - [ - "ident-token", - "center", - 188963, - 188968, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 188969, - 188969, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 188970, - 188978, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 188979, - 188979, - null - ], - [ - "delim-token", - ".", - 188980, - 188980, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-between", - 188981, - 189007, - { - "value": "justify-content-xxl-between" - } - ], - [ - "{-token", - "{", - 189008, - 189008, - null - ], - [ - "ident-token", - "justify-content", - 189009, - 189023, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 189024, - 189024, - null - ], - [ - "ident-token", - "space-between", - 189025, - 189037, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 189038, - 189038, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189039, - 189047, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189048, - 189048, - null - ], - [ - "delim-token", - ".", - 189049, - 189049, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-around", - 189050, - 189075, - { - "value": "justify-content-xxl-around" - } - ], - [ - "{-token", - "{", - 189076, - 189076, - null - ], - [ - "ident-token", - "justify-content", - 189077, - 189091, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 189092, - 189092, - null - ], - [ - "ident-token", - "space-around", - 189093, - 189104, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 189105, - 189105, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189106, - 189114, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189115, - 189115, - null - ], - [ - "delim-token", - ".", - 189116, - 189116, - { - "value": "." - } - ], - [ - "ident-token", - "justify-content-xxl-evenly", - 189117, - 189142, - { - "value": "justify-content-xxl-evenly" - } - ], - [ - "{-token", - "{", - 189143, - 189143, - null - ], - [ - "ident-token", - "justify-content", - 189144, - 189158, - { - "value": "justify-content" - } - ], - [ - "colon-token", - ":", - 189159, - 189159, - null - ], - [ - "ident-token", - "space-evenly", - 189160, - 189171, - { - "value": "space-evenly" - } - ], - [ - "delim-token", - "!", - 189172, - 189172, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189173, - 189181, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189182, - 189182, - null - ], - [ - "delim-token", - ".", - 189183, - 189183, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xxl-start", - 189184, - 189204, - { - "value": "align-items-xxl-start" - } - ], - [ - "{-token", - "{", - 189205, - 189205, - null - ], - [ - "ident-token", - "align-items", - 189206, - 189216, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 189217, - 189217, - null - ], - [ - "ident-token", - "flex-start", - 189218, - 189227, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 189228, - 189228, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189229, - 189237, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189238, - 189238, - null - ], - [ - "delim-token", - ".", - 189239, - 189239, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xxl-end", - 189240, - 189258, - { - "value": "align-items-xxl-end" - } - ], - [ - "{-token", - "{", - 189259, - 189259, - null - ], - [ - "ident-token", - "align-items", - 189260, - 189270, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 189271, - 189271, - null - ], - [ - "ident-token", - "flex-end", - 189272, - 189279, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 189280, - 189280, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189281, - 189289, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189290, - 189290, - null - ], - [ - "delim-token", - ".", - 189291, - 189291, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xxl-center", - 189292, - 189313, - { - "value": "align-items-xxl-center" - } - ], - [ - "{-token", - "{", - 189314, - 189314, - null - ], - [ - "ident-token", - "align-items", - 189315, - 189325, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 189326, - 189326, - null - ], - [ - "ident-token", - "center", - 189327, - 189332, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 189333, - 189333, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189334, - 189342, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189343, - 189343, - null - ], - [ - "delim-token", - ".", - 189344, - 189344, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xxl-baseline", - 189345, - 189368, - { - "value": "align-items-xxl-baseline" - } - ], - [ - "{-token", - "{", - 189369, - 189369, - null - ], - [ - "ident-token", - "align-items", - 189370, - 189380, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 189381, - 189381, - null - ], - [ - "ident-token", - "baseline", - 189382, - 189389, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 189390, - 189390, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189391, - 189399, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189400, - 189400, - null - ], - [ - "delim-token", - ".", - 189401, - 189401, - { - "value": "." - } - ], - [ - "ident-token", - "align-items-xxl-stretch", - 189402, - 189424, - { - "value": "align-items-xxl-stretch" - } - ], - [ - "{-token", - "{", - 189425, - 189425, - null - ], - [ - "ident-token", - "align-items", - 189426, - 189436, - { - "value": "align-items" - } - ], - [ - "colon-token", - ":", - 189437, - 189437, - null - ], - [ - "ident-token", - "stretch", - 189438, - 189444, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 189445, - 189445, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189446, - 189454, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189455, - 189455, - null - ], - [ - "delim-token", - ".", - 189456, - 189456, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-start", - 189457, - 189479, - { - "value": "align-content-xxl-start" - } - ], - [ - "{-token", - "{", - 189480, - 189480, - null - ], - [ - "ident-token", - "align-content", - 189481, - 189493, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189494, - 189494, - null - ], - [ - "ident-token", - "flex-start", - 189495, - 189504, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 189505, - 189505, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189506, - 189514, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189515, - 189515, - null - ], - [ - "delim-token", - ".", - 189516, - 189516, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-end", - 189517, - 189537, - { - "value": "align-content-xxl-end" - } - ], - [ - "{-token", - "{", - 189538, - 189538, - null - ], - [ - "ident-token", - "align-content", - 189539, - 189551, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189552, - 189552, - null - ], - [ - "ident-token", - "flex-end", - 189553, - 189560, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 189561, - 189561, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189562, - 189570, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189571, - 189571, - null - ], - [ - "delim-token", - ".", - 189572, - 189572, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-center", - 189573, - 189596, - { - "value": "align-content-xxl-center" - } - ], - [ - "{-token", - "{", - 189597, - 189597, - null - ], - [ - "ident-token", - "align-content", - 189598, - 189610, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189611, - 189611, - null - ], - [ - "ident-token", - "center", - 189612, - 189617, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 189618, - 189618, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189619, - 189627, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189628, - 189628, - null - ], - [ - "delim-token", - ".", - 189629, - 189629, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-between", - 189630, - 189654, - { - "value": "align-content-xxl-between" - } - ], - [ - "{-token", - "{", - 189655, - 189655, - null - ], - [ - "ident-token", - "align-content", - 189656, - 189668, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189669, - 189669, - null - ], - [ - "ident-token", - "space-between", - 189670, - 189682, - { - "value": "space-between" - } - ], - [ - "delim-token", - "!", - 189683, - 189683, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189684, - 189692, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189693, - 189693, - null - ], - [ - "delim-token", - ".", - 189694, - 189694, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-around", - 189695, - 189718, - { - "value": "align-content-xxl-around" - } - ], - [ - "{-token", - "{", - 189719, - 189719, - null - ], - [ - "ident-token", - "align-content", - 189720, - 189732, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189733, - 189733, - null - ], - [ - "ident-token", - "space-around", - 189734, - 189745, - { - "value": "space-around" - } - ], - [ - "delim-token", - "!", - 189746, - 189746, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189747, - 189755, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189756, - 189756, - null - ], - [ - "delim-token", - ".", - 189757, - 189757, - { - "value": "." - } - ], - [ - "ident-token", - "align-content-xxl-stretch", - 189758, - 189782, - { - "value": "align-content-xxl-stretch" - } - ], - [ - "{-token", - "{", - 189783, - 189783, - null - ], - [ - "ident-token", - "align-content", - 189784, - 189796, - { - "value": "align-content" - } - ], - [ - "colon-token", - ":", - 189797, - 189797, - null - ], - [ - "ident-token", - "stretch", - 189798, - 189804, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 189805, - 189805, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189806, - 189814, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189815, - 189815, - null - ], - [ - "delim-token", - ".", - 189816, - 189816, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-auto", - 189817, - 189835, - { - "value": "align-self-xxl-auto" - } - ], - [ - "{-token", - "{", - 189836, - 189836, - null - ], - [ - "ident-token", - "align-self", - 189837, - 189846, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 189847, - 189847, - null - ], - [ - "ident-token", - "auto", - 189848, - 189851, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 189852, - 189852, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189853, - 189861, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189862, - 189862, - null - ], - [ - "delim-token", - ".", - 189863, - 189863, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-start", - 189864, - 189883, - { - "value": "align-self-xxl-start" - } - ], - [ - "{-token", - "{", - 189884, - 189884, - null - ], - [ - "ident-token", - "align-self", - 189885, - 189894, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 189895, - 189895, - null - ], - [ - "ident-token", - "flex-start", - 189896, - 189905, - { - "value": "flex-start" - } - ], - [ - "delim-token", - "!", - 189906, - 189906, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189907, - 189915, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189916, - 189916, - null - ], - [ - "delim-token", - ".", - 189917, - 189917, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-end", - 189918, - 189935, - { - "value": "align-self-xxl-end" - } - ], - [ - "{-token", - "{", - 189936, - 189936, - null - ], - [ - "ident-token", - "align-self", - 189937, - 189946, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 189947, - 189947, - null - ], - [ - "ident-token", - "flex-end", - 189948, - 189955, - { - "value": "flex-end" - } - ], - [ - "delim-token", - "!", - 189956, - 189956, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 189957, - 189965, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 189966, - 189966, - null - ], - [ - "delim-token", - ".", - 189967, - 189967, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-center", - 189968, - 189988, - { - "value": "align-self-xxl-center" - } - ], - [ - "{-token", - "{", - 189989, - 189989, - null - ], - [ - "ident-token", - "align-self", - 189990, - 189999, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 190000, - 190000, - null - ], - [ - "ident-token", - "center", - 190001, - 190006, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 190007, - 190007, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190008, - 190016, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190017, - 190017, - null - ], - [ - "delim-token", - ".", - 190018, - 190018, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-baseline", - 190019, - 190041, - { - "value": "align-self-xxl-baseline" - } - ], - [ - "{-token", - "{", - 190042, - 190042, - null - ], - [ - "ident-token", - "align-self", - 190043, - 190052, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 190053, - 190053, - null - ], - [ - "ident-token", - "baseline", - 190054, - 190061, - { - "value": "baseline" - } - ], - [ - "delim-token", - "!", - 190062, - 190062, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190063, - 190071, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190072, - 190072, - null - ], - [ - "delim-token", - ".", - 190073, - 190073, - { - "value": "." - } - ], - [ - "ident-token", - "align-self-xxl-stretch", - 190074, - 190095, - { - "value": "align-self-xxl-stretch" - } - ], - [ - "{-token", - "{", - 190096, - 190096, - null - ], - [ - "ident-token", - "align-self", - 190097, - 190106, - { - "value": "align-self" - } - ], - [ - "colon-token", - ":", - 190107, - 190107, - null - ], - [ - "ident-token", - "stretch", - 190108, - 190114, - { - "value": "stretch" - } - ], - [ - "delim-token", - "!", - 190115, - 190115, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190116, - 190124, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190125, - 190125, - null - ], - [ - "delim-token", - ".", - 190126, - 190126, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-first", - 190127, - 190141, - { - "value": "order-xxl-first" - } - ], - [ - "{-token", - "{", - 190142, - 190142, - null - ], - [ - "ident-token", - "order", - 190143, - 190147, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190148, - 190148, - null - ], - [ - "number-token", - "-1", - 190149, - 190150, - { - "value": -1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190151, - 190151, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190152, - 190160, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190161, - 190161, - null - ], - [ - "delim-token", - ".", - 190162, - 190162, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-0", - 190163, - 190173, - { - "value": "order-xxl-0" - } - ], - [ - "{-token", - "{", - 190174, - 190174, - null - ], - [ - "ident-token", - "order", - 190175, - 190179, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190180, - 190180, - null - ], - [ - "number-token", - "0", - 190181, - 190181, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190182, - 190182, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190183, - 190191, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190192, - 190192, - null - ], - [ - "delim-token", - ".", - 190193, - 190193, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-1", - 190194, - 190204, - { - "value": "order-xxl-1" - } - ], - [ - "{-token", - "{", - 190205, - 190205, - null - ], - [ - "ident-token", - "order", - 190206, - 190210, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190211, - 190211, - null - ], - [ - "number-token", - "1", - 190212, - 190212, - { - "value": 1, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190213, - 190213, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190214, - 190222, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190223, - 190223, - null - ], - [ - "delim-token", - ".", - 190224, - 190224, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-2", - 190225, - 190235, - { - "value": "order-xxl-2" - } - ], - [ - "{-token", - "{", - 190236, - 190236, - null - ], - [ - "ident-token", - "order", - 190237, - 190241, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190242, - 190242, - null - ], - [ - "number-token", - "2", - 190243, - 190243, - { - "value": 2, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190244, - 190244, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190245, - 190253, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190254, - 190254, - null - ], - [ - "delim-token", - ".", - 190255, - 190255, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-3", - 190256, - 190266, - { - "value": "order-xxl-3" - } - ], - [ - "{-token", - "{", - 190267, - 190267, - null - ], - [ - "ident-token", - "order", - 190268, - 190272, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190273, - 190273, - null - ], - [ - "number-token", - "3", - 190274, - 190274, - { - "value": 3, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190275, - 190275, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190276, - 190284, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190285, - 190285, - null - ], - [ - "delim-token", - ".", - 190286, - 190286, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-4", - 190287, - 190297, - { - "value": "order-xxl-4" - } - ], - [ - "{-token", - "{", - 190298, - 190298, - null - ], - [ - "ident-token", - "order", - 190299, - 190303, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190304, - 190304, - null - ], - [ - "number-token", - "4", - 190305, - 190305, - { - "value": 4, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190306, - 190306, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190307, - 190315, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190316, - 190316, - null - ], - [ - "delim-token", - ".", - 190317, - 190317, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-5", - 190318, - 190328, - { - "value": "order-xxl-5" - } - ], - [ - "{-token", - "{", - 190329, - 190329, - null - ], - [ - "ident-token", - "order", - 190330, - 190334, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190335, - 190335, - null - ], - [ - "number-token", - "5", - 190336, - 190336, - { - "value": 5, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190337, - 190337, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190338, - 190346, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190347, - 190347, - null - ], - [ - "delim-token", - ".", - 190348, - 190348, - { - "value": "." - } - ], - [ - "ident-token", - "order-xxl-last", - 190349, - 190362, - { - "value": "order-xxl-last" - } - ], - [ - "{-token", - "{", - 190363, - 190363, - null - ], - [ - "ident-token", - "order", - 190364, - 190368, - { - "value": "order" - } - ], - [ - "colon-token", - ":", - 190369, - 190369, - null - ], - [ - "number-token", - "6", - 190370, - 190370, - { - "value": 6, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190371, - 190371, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190372, - 190380, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190381, - 190381, - null - ], - [ - "delim-token", - ".", - 190382, - 190382, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-0", - 190383, - 190389, - { - "value": "m-xxl-0" - } - ], - [ - "{-token", - "{", - 190390, - 190390, - null - ], - [ - "ident-token", - "margin", - 190391, - 190396, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190397, - 190397, - null - ], - [ - "number-token", - "0", - 190398, - 190398, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190399, - 190399, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190400, - 190408, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190409, - 190409, - null - ], - [ - "delim-token", - ".", - 190410, - 190410, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-1", - 190411, - 190417, - { - "value": "m-xxl-1" - } - ], - [ - "{-token", - "{", - 190418, - 190418, - null - ], - [ - "ident-token", - "margin", - 190419, - 190424, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190425, - 190425, - null - ], - [ - "dimension-token", - ".25rem", - 190426, - 190431, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190432, - 190432, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190433, - 190441, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190442, - 190442, - null - ], - [ - "delim-token", - ".", - 190443, - 190443, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-2", - 190444, - 190450, - { - "value": "m-xxl-2" - } - ], - [ - "{-token", - "{", - 190451, - 190451, - null - ], - [ - "ident-token", - "margin", - 190452, - 190457, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190458, - 190458, - null - ], - [ - "dimension-token", - ".5rem", - 190459, - 190463, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190464, - 190464, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190465, - 190473, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190474, - 190474, - null - ], - [ - "delim-token", - ".", - 190475, - 190475, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-3", - 190476, - 190482, - { - "value": "m-xxl-3" - } - ], - [ - "{-token", - "{", - 190483, - 190483, - null - ], - [ - "ident-token", - "margin", - 190484, - 190489, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190490, - 190490, - null - ], - [ - "dimension-token", - "1rem", - 190491, - 190494, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190495, - 190495, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190496, - 190504, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190505, - 190505, - null - ], - [ - "delim-token", - ".", - 190506, - 190506, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-4", - 190507, - 190513, - { - "value": "m-xxl-4" - } - ], - [ - "{-token", - "{", - 190514, - 190514, - null - ], - [ - "ident-token", - "margin", - 190515, - 190520, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190521, - 190521, - null - ], - [ - "dimension-token", - "1.5rem", - 190522, - 190527, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190528, - 190528, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190529, - 190537, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190538, - 190538, - null - ], - [ - "delim-token", - ".", - 190539, - 190539, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-5", - 190540, - 190546, - { - "value": "m-xxl-5" - } - ], - [ - "{-token", - "{", - 190547, - 190547, - null - ], - [ - "ident-token", - "margin", - 190548, - 190553, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190554, - 190554, - null - ], - [ - "dimension-token", - "3rem", - 190555, - 190558, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190559, - 190559, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190560, - 190568, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190569, - 190569, - null - ], - [ - "delim-token", - ".", - 190570, - 190570, - { - "value": "." - } - ], - [ - "ident-token", - "m-xxl-auto", - 190571, - 190580, - { - "value": "m-xxl-auto" - } - ], - [ - "{-token", - "{", - 190581, - 190581, - null - ], - [ - "ident-token", - "margin", - 190582, - 190587, - { - "value": "margin" - } - ], - [ - "colon-token", - ":", - 190588, - 190588, - null - ], - [ - "ident-token", - "auto", - 190589, - 190592, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 190593, - 190593, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190594, - 190602, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190603, - 190603, - null - ], - [ - "delim-token", - ".", - 190604, - 190604, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-0", - 190605, - 190612, - { - "value": "mx-xxl-0" - } - ], - [ - "{-token", - "{", - 190613, - 190613, - null - ], - [ - "ident-token", - "margin-right", - 190614, - 190625, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190626, - 190626, - null - ], - [ - "number-token", - "0", - 190627, - 190627, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190628, - 190628, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190629, - 190637, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190638, - 190638, - null - ], - [ - "ident-token", - "margin-left", - 190639, - 190649, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190650, - 190650, - null - ], - [ - "number-token", - "0", - 190651, - 190651, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 190652, - 190652, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190653, - 190661, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190662, - 190662, - null - ], - [ - "delim-token", - ".", - 190663, - 190663, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-1", - 190664, - 190671, - { - "value": "mx-xxl-1" - } - ], - [ - "{-token", - "{", - 190672, - 190672, - null - ], - [ - "ident-token", - "margin-right", - 190673, - 190684, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190685, - 190685, - null - ], - [ - "dimension-token", - ".25rem", - 190686, - 190691, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190692, - 190692, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190693, - 190701, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190702, - 190702, - null - ], - [ - "ident-token", - "margin-left", - 190703, - 190713, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190714, - 190714, - null - ], - [ - "dimension-token", - ".25rem", - 190715, - 190720, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190721, - 190721, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190722, - 190730, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190731, - 190731, - null - ], - [ - "delim-token", - ".", - 190732, - 190732, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-2", - 190733, - 190740, - { - "value": "mx-xxl-2" - } - ], - [ - "{-token", - "{", - 190741, - 190741, - null - ], - [ - "ident-token", - "margin-right", - 190742, - 190753, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190754, - 190754, - null - ], - [ - "dimension-token", - ".5rem", - 190755, - 190759, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190760, - 190760, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190761, - 190769, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190770, - 190770, - null - ], - [ - "ident-token", - "margin-left", - 190771, - 190781, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190782, - 190782, - null - ], - [ - "dimension-token", - ".5rem", - 190783, - 190787, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190788, - 190788, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190789, - 190797, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190798, - 190798, - null - ], - [ - "delim-token", - ".", - 190799, - 190799, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-3", - 190800, - 190807, - { - "value": "mx-xxl-3" - } - ], - [ - "{-token", - "{", - 190808, - 190808, - null - ], - [ - "ident-token", - "margin-right", - 190809, - 190820, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190821, - 190821, - null - ], - [ - "dimension-token", - "1rem", - 190822, - 190825, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190826, - 190826, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190827, - 190835, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190836, - 190836, - null - ], - [ - "ident-token", - "margin-left", - 190837, - 190847, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190848, - 190848, - null - ], - [ - "dimension-token", - "1rem", - 190849, - 190852, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190853, - 190853, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190854, - 190862, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190863, - 190863, - null - ], - [ - "delim-token", - ".", - 190864, - 190864, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-4", - 190865, - 190872, - { - "value": "mx-xxl-4" - } - ], - [ - "{-token", - "{", - 190873, - 190873, - null - ], - [ - "ident-token", - "margin-right", - 190874, - 190885, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190886, - 190886, - null - ], - [ - "dimension-token", - "1.5rem", - 190887, - 190892, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190893, - 190893, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190894, - 190902, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190903, - 190903, - null - ], - [ - "ident-token", - "margin-left", - 190904, - 190914, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190915, - 190915, - null - ], - [ - "dimension-token", - "1.5rem", - 190916, - 190921, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190922, - 190922, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190923, - 190931, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190932, - 190932, - null - ], - [ - "delim-token", - ".", - 190933, - 190933, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-5", - 190934, - 190941, - { - "value": "mx-xxl-5" - } - ], - [ - "{-token", - "{", - 190942, - 190942, - null - ], - [ - "ident-token", - "margin-right", - 190943, - 190954, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 190955, - 190955, - null - ], - [ - "dimension-token", - "3rem", - 190956, - 190959, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190960, - 190960, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190961, - 190969, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 190970, - 190970, - null - ], - [ - "ident-token", - "margin-left", - 190971, - 190981, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 190982, - 190982, - null - ], - [ - "dimension-token", - "3rem", - 190983, - 190986, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 190987, - 190987, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 190988, - 190996, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 190997, - 190997, - null - ], - [ - "delim-token", - ".", - 190998, - 190998, - { - "value": "." - } - ], - [ - "ident-token", - "mx-xxl-auto", - 190999, - 191009, - { - "value": "mx-xxl-auto" - } - ], - [ - "{-token", - "{", - 191010, - 191010, - null - ], - [ - "ident-token", - "margin-right", - 191011, - 191022, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191023, - 191023, - null - ], - [ - "ident-token", - "auto", - 191024, - 191027, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 191028, - 191028, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191029, - 191037, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191038, - 191038, - null - ], - [ - "ident-token", - "margin-left", - 191039, - 191049, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 191050, - 191050, - null - ], - [ - "ident-token", - "auto", - 191051, - 191054, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 191055, - 191055, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191056, - 191064, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191065, - 191065, - null - ], - [ - "delim-token", - ".", - 191066, - 191066, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-0", - 191067, - 191074, - { - "value": "my-xxl-0" - } - ], - [ - "{-token", - "{", - 191075, - 191075, - null - ], - [ - "ident-token", - "margin-top", - 191076, - 191085, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191086, - 191086, - null - ], - [ - "number-token", - "0", - 191087, - 191087, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 191088, - 191088, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191089, - 191097, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191098, - 191098, - null - ], - [ - "ident-token", - "margin-bottom", - 191099, - 191111, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191112, - 191112, - null - ], - [ - "number-token", - "0", - 191113, - 191113, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 191114, - 191114, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191115, - 191123, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191124, - 191124, - null - ], - [ - "delim-token", - ".", - 191125, - 191125, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-1", - 191126, - 191133, - { - "value": "my-xxl-1" - } - ], - [ - "{-token", - "{", - 191134, - 191134, - null - ], - [ - "ident-token", - "margin-top", - 191135, - 191144, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191145, - 191145, - null - ], - [ - "dimension-token", - ".25rem", - 191146, - 191151, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191152, - 191152, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191153, - 191161, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191162, - 191162, - null - ], - [ - "ident-token", - "margin-bottom", - 191163, - 191175, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191176, - 191176, - null - ], - [ - "dimension-token", - ".25rem", - 191177, - 191182, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191183, - 191183, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191184, - 191192, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191193, - 191193, - null - ], - [ - "delim-token", - ".", - 191194, - 191194, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-2", - 191195, - 191202, - { - "value": "my-xxl-2" - } - ], - [ - "{-token", - "{", - 191203, - 191203, - null - ], - [ - "ident-token", - "margin-top", - 191204, - 191213, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191214, - 191214, - null - ], - [ - "dimension-token", - ".5rem", - 191215, - 191219, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191220, - 191220, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191221, - 191229, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191230, - 191230, - null - ], - [ - "ident-token", - "margin-bottom", - 191231, - 191243, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191244, - 191244, - null - ], - [ - "dimension-token", - ".5rem", - 191245, - 191249, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191250, - 191250, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191251, - 191259, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191260, - 191260, - null - ], - [ - "delim-token", - ".", - 191261, - 191261, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-3", - 191262, - 191269, - { - "value": "my-xxl-3" - } - ], - [ - "{-token", - "{", - 191270, - 191270, - null - ], - [ - "ident-token", - "margin-top", - 191271, - 191280, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191281, - 191281, - null - ], - [ - "dimension-token", - "1rem", - 191282, - 191285, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191286, - 191286, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191287, - 191295, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191296, - 191296, - null - ], - [ - "ident-token", - "margin-bottom", - 191297, - 191309, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191310, - 191310, - null - ], - [ - "dimension-token", - "1rem", - 191311, - 191314, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191315, - 191315, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191316, - 191324, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191325, - 191325, - null - ], - [ - "delim-token", - ".", - 191326, - 191326, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-4", - 191327, - 191334, - { - "value": "my-xxl-4" - } - ], - [ - "{-token", - "{", - 191335, - 191335, - null - ], - [ - "ident-token", - "margin-top", - 191336, - 191345, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191346, - 191346, - null - ], - [ - "dimension-token", - "1.5rem", - 191347, - 191352, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191353, - 191353, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191354, - 191362, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191363, - 191363, - null - ], - [ - "ident-token", - "margin-bottom", - 191364, - 191376, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191377, - 191377, - null - ], - [ - "dimension-token", - "1.5rem", - 191378, - 191383, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191384, - 191384, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191385, - 191393, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191394, - 191394, - null - ], - [ - "delim-token", - ".", - 191395, - 191395, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-5", - 191396, - 191403, - { - "value": "my-xxl-5" - } - ], - [ - "{-token", - "{", - 191404, - 191404, - null - ], - [ - "ident-token", - "margin-top", - 191405, - 191414, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191415, - 191415, - null - ], - [ - "dimension-token", - "3rem", - 191416, - 191419, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191420, - 191420, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191421, - 191429, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191430, - 191430, - null - ], - [ - "ident-token", - "margin-bottom", - 191431, - 191443, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191444, - 191444, - null - ], - [ - "dimension-token", - "3rem", - 191445, - 191448, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191449, - 191449, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191450, - 191458, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191459, - 191459, - null - ], - [ - "delim-token", - ".", - 191460, - 191460, - { - "value": "." - } - ], - [ - "ident-token", - "my-xxl-auto", - 191461, - 191471, - { - "value": "my-xxl-auto" - } - ], - [ - "{-token", - "{", - 191472, - 191472, - null - ], - [ - "ident-token", - "margin-top", - 191473, - 191482, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191483, - 191483, - null - ], - [ - "ident-token", - "auto", - 191484, - 191487, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 191488, - 191488, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191489, - 191497, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 191498, - 191498, - null - ], - [ - "ident-token", - "margin-bottom", - 191499, - 191511, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 191512, - 191512, - null - ], - [ - "ident-token", - "auto", - 191513, - 191516, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 191517, - 191517, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191518, - 191526, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191527, - 191527, - null - ], - [ - "delim-token", - ".", - 191528, - 191528, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-0", - 191529, - 191536, - { - "value": "mt-xxl-0" - } - ], - [ - "{-token", - "{", - 191537, - 191537, - null - ], - [ - "ident-token", - "margin-top", - 191538, - 191547, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191548, - 191548, - null - ], - [ - "number-token", - "0", - 191549, - 191549, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 191550, - 191550, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191551, - 191559, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191560, - 191560, - null - ], - [ - "delim-token", - ".", - 191561, - 191561, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-1", - 191562, - 191569, - { - "value": "mt-xxl-1" - } - ], - [ - "{-token", - "{", - 191570, - 191570, - null - ], - [ - "ident-token", - "margin-top", - 191571, - 191580, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191581, - 191581, - null - ], - [ - "dimension-token", - ".25rem", - 191582, - 191587, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191588, - 191588, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191589, - 191597, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191598, - 191598, - null - ], - [ - "delim-token", - ".", - 191599, - 191599, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-2", - 191600, - 191607, - { - "value": "mt-xxl-2" - } - ], - [ - "{-token", - "{", - 191608, - 191608, - null - ], - [ - "ident-token", - "margin-top", - 191609, - 191618, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191619, - 191619, - null - ], - [ - "dimension-token", - ".5rem", - 191620, - 191624, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191625, - 191625, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191626, - 191634, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191635, - 191635, - null - ], - [ - "delim-token", - ".", - 191636, - 191636, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-3", - 191637, - 191644, - { - "value": "mt-xxl-3" - } - ], - [ - "{-token", - "{", - 191645, - 191645, - null - ], - [ - "ident-token", - "margin-top", - 191646, - 191655, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191656, - 191656, - null - ], - [ - "dimension-token", - "1rem", - 191657, - 191660, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191661, - 191661, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191662, - 191670, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191671, - 191671, - null - ], - [ - "delim-token", - ".", - 191672, - 191672, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-4", - 191673, - 191680, - { - "value": "mt-xxl-4" - } - ], - [ - "{-token", - "{", - 191681, - 191681, - null - ], - [ - "ident-token", - "margin-top", - 191682, - 191691, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191692, - 191692, - null - ], - [ - "dimension-token", - "1.5rem", - 191693, - 191698, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191699, - 191699, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191700, - 191708, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191709, - 191709, - null - ], - [ - "delim-token", - ".", - 191710, - 191710, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-5", - 191711, - 191718, - { - "value": "mt-xxl-5" - } - ], - [ - "{-token", - "{", - 191719, - 191719, - null - ], - [ - "ident-token", - "margin-top", - 191720, - 191729, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191730, - 191730, - null - ], - [ - "dimension-token", - "3rem", - 191731, - 191734, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191735, - 191735, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191736, - 191744, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191745, - 191745, - null - ], - [ - "delim-token", - ".", - 191746, - 191746, - { - "value": "." - } - ], - [ - "ident-token", - "mt-xxl-auto", - 191747, - 191757, - { - "value": "mt-xxl-auto" - } - ], - [ - "{-token", - "{", - 191758, - 191758, - null - ], - [ - "ident-token", - "margin-top", - 191759, - 191768, - { - "value": "margin-top" - } - ], - [ - "colon-token", - ":", - 191769, - 191769, - null - ], - [ - "ident-token", - "auto", - 191770, - 191773, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 191774, - 191774, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191775, - 191783, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191784, - 191784, - null - ], - [ - "delim-token", - ".", - 191785, - 191785, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-0", - 191786, - 191793, - { - "value": "me-xxl-0" - } - ], - [ - "{-token", - "{", - 191794, - 191794, - null - ], - [ - "ident-token", - "margin-right", - 191795, - 191806, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191807, - 191807, - null - ], - [ - "number-token", - "0", - 191808, - 191808, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 191809, - 191809, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191810, - 191818, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191819, - 191819, - null - ], - [ - "delim-token", - ".", - 191820, - 191820, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-1", - 191821, - 191828, - { - "value": "me-xxl-1" - } - ], - [ - "{-token", - "{", - 191829, - 191829, - null - ], - [ - "ident-token", - "margin-right", - 191830, - 191841, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191842, - 191842, - null - ], - [ - "dimension-token", - ".25rem", - 191843, - 191848, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191849, - 191849, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191850, - 191858, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191859, - 191859, - null - ], - [ - "delim-token", - ".", - 191860, - 191860, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-2", - 191861, - 191868, - { - "value": "me-xxl-2" - } - ], - [ - "{-token", - "{", - 191869, - 191869, - null - ], - [ - "ident-token", - "margin-right", - 191870, - 191881, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191882, - 191882, - null - ], - [ - "dimension-token", - ".5rem", - 191883, - 191887, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191888, - 191888, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191889, - 191897, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191898, - 191898, - null - ], - [ - "delim-token", - ".", - 191899, - 191899, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-3", - 191900, - 191907, - { - "value": "me-xxl-3" - } - ], - [ - "{-token", - "{", - 191908, - 191908, - null - ], - [ - "ident-token", - "margin-right", - 191909, - 191920, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191921, - 191921, - null - ], - [ - "dimension-token", - "1rem", - 191922, - 191925, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191926, - 191926, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191927, - 191935, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191936, - 191936, - null - ], - [ - "delim-token", - ".", - 191937, - 191937, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-4", - 191938, - 191945, - { - "value": "me-xxl-4" - } - ], - [ - "{-token", - "{", - 191946, - 191946, - null - ], - [ - "ident-token", - "margin-right", - 191947, - 191958, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191959, - 191959, - null - ], - [ - "dimension-token", - "1.5rem", - 191960, - 191965, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 191966, - 191966, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 191967, - 191975, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 191976, - 191976, - null - ], - [ - "delim-token", - ".", - 191977, - 191977, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-5", - 191978, - 191985, - { - "value": "me-xxl-5" - } - ], - [ - "{-token", - "{", - 191986, - 191986, - null - ], - [ - "ident-token", - "margin-right", - 191987, - 191998, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 191999, - 191999, - null - ], - [ - "dimension-token", - "3rem", - 192000, - 192003, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192004, - 192004, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192005, - 192013, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192014, - 192014, - null - ], - [ - "delim-token", - ".", - 192015, - 192015, - { - "value": "." - } - ], - [ - "ident-token", - "me-xxl-auto", - 192016, - 192026, - { - "value": "me-xxl-auto" - } - ], - [ - "{-token", - "{", - 192027, - 192027, - null - ], - [ - "ident-token", - "margin-right", - 192028, - 192039, - { - "value": "margin-right" - } - ], - [ - "colon-token", - ":", - 192040, - 192040, - null - ], - [ - "ident-token", - "auto", - 192041, - 192044, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 192045, - 192045, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192046, - 192054, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192055, - 192055, - null - ], - [ - "delim-token", - ".", - 192056, - 192056, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-0", - 192057, - 192064, - { - "value": "mb-xxl-0" - } - ], - [ - "{-token", - "{", - 192065, - 192065, - null - ], - [ - "ident-token", - "margin-bottom", - 192066, - 192078, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192079, - 192079, - null - ], - [ - "number-token", - "0", - 192080, - 192080, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 192081, - 192081, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192082, - 192090, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192091, - 192091, - null - ], - [ - "delim-token", - ".", - 192092, - 192092, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-1", - 192093, - 192100, - { - "value": "mb-xxl-1" - } - ], - [ - "{-token", - "{", - 192101, - 192101, - null - ], - [ - "ident-token", - "margin-bottom", - 192102, - 192114, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192115, - 192115, - null - ], - [ - "dimension-token", - ".25rem", - 192116, - 192121, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192122, - 192122, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192123, - 192131, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192132, - 192132, - null - ], - [ - "delim-token", - ".", - 192133, - 192133, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-2", - 192134, - 192141, - { - "value": "mb-xxl-2" - } - ], - [ - "{-token", - "{", - 192142, - 192142, - null - ], - [ - "ident-token", - "margin-bottom", - 192143, - 192155, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192156, - 192156, - null - ], - [ - "dimension-token", - ".5rem", - 192157, - 192161, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192162, - 192162, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192163, - 192171, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192172, - 192172, - null - ], - [ - "delim-token", - ".", - 192173, - 192173, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-3", - 192174, - 192181, - { - "value": "mb-xxl-3" - } - ], - [ - "{-token", - "{", - 192182, - 192182, - null - ], - [ - "ident-token", - "margin-bottom", - 192183, - 192195, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192196, - 192196, - null - ], - [ - "dimension-token", - "1rem", - 192197, - 192200, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192201, - 192201, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192202, - 192210, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192211, - 192211, - null - ], - [ - "delim-token", - ".", - 192212, - 192212, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-4", - 192213, - 192220, - { - "value": "mb-xxl-4" - } - ], - [ - "{-token", - "{", - 192221, - 192221, - null - ], - [ - "ident-token", - "margin-bottom", - 192222, - 192234, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192235, - 192235, - null - ], - [ - "dimension-token", - "1.5rem", - 192236, - 192241, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192242, - 192242, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192243, - 192251, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192252, - 192252, - null - ], - [ - "delim-token", - ".", - 192253, - 192253, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-5", - 192254, - 192261, - { - "value": "mb-xxl-5" - } - ], - [ - "{-token", - "{", - 192262, - 192262, - null - ], - [ - "ident-token", - "margin-bottom", - 192263, - 192275, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192276, - 192276, - null - ], - [ - "dimension-token", - "3rem", - 192277, - 192280, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192281, - 192281, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192282, - 192290, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192291, - 192291, - null - ], - [ - "delim-token", - ".", - 192292, - 192292, - { - "value": "." - } - ], - [ - "ident-token", - "mb-xxl-auto", - 192293, - 192303, - { - "value": "mb-xxl-auto" - } - ], - [ - "{-token", - "{", - 192304, - 192304, - null - ], - [ - "ident-token", - "margin-bottom", - 192305, - 192317, - { - "value": "margin-bottom" - } - ], - [ - "colon-token", - ":", - 192318, - 192318, - null - ], - [ - "ident-token", - "auto", - 192319, - 192322, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 192323, - 192323, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192324, - 192332, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192333, - 192333, - null - ], - [ - "delim-token", - ".", - 192334, - 192334, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-0", - 192335, - 192342, - { - "value": "ms-xxl-0" - } - ], - [ - "{-token", - "{", - 192343, - 192343, - null - ], - [ - "ident-token", - "margin-left", - 192344, - 192354, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192355, - 192355, - null - ], - [ - "number-token", - "0", - 192356, - 192356, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 192357, - 192357, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192358, - 192366, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192367, - 192367, - null - ], - [ - "delim-token", - ".", - 192368, - 192368, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-1", - 192369, - 192376, - { - "value": "ms-xxl-1" - } - ], - [ - "{-token", - "{", - 192377, - 192377, - null - ], - [ - "ident-token", - "margin-left", - 192378, - 192388, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192389, - 192389, - null - ], - [ - "dimension-token", - ".25rem", - 192390, - 192395, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192396, - 192396, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192397, - 192405, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192406, - 192406, - null - ], - [ - "delim-token", - ".", - 192407, - 192407, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-2", - 192408, - 192415, - { - "value": "ms-xxl-2" - } - ], - [ - "{-token", - "{", - 192416, - 192416, - null - ], - [ - "ident-token", - "margin-left", - 192417, - 192427, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192428, - 192428, - null - ], - [ - "dimension-token", - ".5rem", - 192429, - 192433, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192434, - 192434, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192435, - 192443, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192444, - 192444, - null - ], - [ - "delim-token", - ".", - 192445, - 192445, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-3", - 192446, - 192453, - { - "value": "ms-xxl-3" - } - ], - [ - "{-token", - "{", - 192454, - 192454, - null - ], - [ - "ident-token", - "margin-left", - 192455, - 192465, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192466, - 192466, - null - ], - [ - "dimension-token", - "1rem", - 192467, - 192470, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192471, - 192471, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192472, - 192480, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192481, - 192481, - null - ], - [ - "delim-token", - ".", - 192482, - 192482, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-4", - 192483, - 192490, - { - "value": "ms-xxl-4" - } - ], - [ - "{-token", - "{", - 192491, - 192491, - null - ], - [ - "ident-token", - "margin-left", - 192492, - 192502, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192503, - 192503, - null - ], - [ - "dimension-token", - "1.5rem", - 192504, - 192509, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192510, - 192510, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192511, - 192519, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192520, - 192520, - null - ], - [ - "delim-token", - ".", - 192521, - 192521, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-5", - 192522, - 192529, - { - "value": "ms-xxl-5" - } - ], - [ - "{-token", - "{", - 192530, - 192530, - null - ], - [ - "ident-token", - "margin-left", - 192531, - 192541, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192542, - 192542, - null - ], - [ - "dimension-token", - "3rem", - 192543, - 192546, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192547, - 192547, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192548, - 192556, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192557, - 192557, - null - ], - [ - "delim-token", - ".", - 192558, - 192558, - { - "value": "." - } - ], - [ - "ident-token", - "ms-xxl-auto", - 192559, - 192569, - { - "value": "ms-xxl-auto" - } - ], - [ - "{-token", - "{", - 192570, - 192570, - null - ], - [ - "ident-token", - "margin-left", - 192571, - 192581, - { - "value": "margin-left" - } - ], - [ - "colon-token", - ":", - 192582, - 192582, - null - ], - [ - "ident-token", - "auto", - 192583, - 192586, - { - "value": "auto" - } - ], - [ - "delim-token", - "!", - 192587, - 192587, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192588, - 192596, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192597, - 192597, - null - ], - [ - "delim-token", - ".", - 192598, - 192598, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-0", - 192599, - 192605, - { - "value": "p-xxl-0" - } - ], - [ - "{-token", - "{", - 192606, - 192606, - null - ], - [ - "ident-token", - "padding", - 192607, - 192613, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192614, - 192614, - null - ], - [ - "number-token", - "0", - 192615, - 192615, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 192616, - 192616, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192617, - 192625, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192626, - 192626, - null - ], - [ - "delim-token", - ".", - 192627, - 192627, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-1", - 192628, - 192634, - { - "value": "p-xxl-1" - } - ], - [ - "{-token", - "{", - 192635, - 192635, - null - ], - [ - "ident-token", - "padding", - 192636, - 192642, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192643, - 192643, - null - ], - [ - "dimension-token", - ".25rem", - 192644, - 192649, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192650, - 192650, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192651, - 192659, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192660, - 192660, - null - ], - [ - "delim-token", - ".", - 192661, - 192661, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-2", - 192662, - 192668, - { - "value": "p-xxl-2" - } - ], - [ - "{-token", - "{", - 192669, - 192669, - null - ], - [ - "ident-token", - "padding", - 192670, - 192676, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192677, - 192677, - null - ], - [ - "dimension-token", - ".5rem", - 192678, - 192682, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192683, - 192683, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192684, - 192692, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192693, - 192693, - null - ], - [ - "delim-token", - ".", - 192694, - 192694, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-3", - 192695, - 192701, - { - "value": "p-xxl-3" - } - ], - [ - "{-token", - "{", - 192702, - 192702, - null - ], - [ - "ident-token", - "padding", - 192703, - 192709, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192710, - 192710, - null - ], - [ - "dimension-token", - "1rem", - 192711, - 192714, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192715, - 192715, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192716, - 192724, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192725, - 192725, - null - ], - [ - "delim-token", - ".", - 192726, - 192726, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-4", - 192727, - 192733, - { - "value": "p-xxl-4" - } - ], - [ - "{-token", - "{", - 192734, - 192734, - null - ], - [ - "ident-token", - "padding", - 192735, - 192741, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192742, - 192742, - null - ], - [ - "dimension-token", - "1.5rem", - 192743, - 192748, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192749, - 192749, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192750, - 192758, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192759, - 192759, - null - ], - [ - "delim-token", - ".", - 192760, - 192760, - { - "value": "." - } - ], - [ - "ident-token", - "p-xxl-5", - 192761, - 192767, - { - "value": "p-xxl-5" - } - ], - [ - "{-token", - "{", - 192768, - 192768, - null - ], - [ - "ident-token", - "padding", - 192769, - 192775, - { - "value": "padding" - } - ], - [ - "colon-token", - ":", - 192776, - 192776, - null - ], - [ - "dimension-token", - "3rem", - 192777, - 192780, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192781, - 192781, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192782, - 192790, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192791, - 192791, - null - ], - [ - "delim-token", - ".", - 192792, - 192792, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-0", - 192793, - 192800, - { - "value": "px-xxl-0" - } - ], - [ - "{-token", - "{", - 192801, - 192801, - null - ], - [ - "ident-token", - "padding-right", - 192802, - 192814, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 192815, - 192815, - null - ], - [ - "number-token", - "0", - 192816, - 192816, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 192817, - 192817, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192818, - 192826, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 192827, - 192827, - null - ], - [ - "ident-token", - "padding-left", - 192828, - 192839, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 192840, - 192840, - null - ], - [ - "number-token", - "0", - 192841, - 192841, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 192842, - 192842, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192843, - 192851, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192852, - 192852, - null - ], - [ - "delim-token", - ".", - 192853, - 192853, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-1", - 192854, - 192861, - { - "value": "px-xxl-1" - } - ], - [ - "{-token", - "{", - 192862, - 192862, - null - ], - [ - "ident-token", - "padding-right", - 192863, - 192875, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 192876, - 192876, - null - ], - [ - "dimension-token", - ".25rem", - 192877, - 192882, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192883, - 192883, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192884, - 192892, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 192893, - 192893, - null - ], - [ - "ident-token", - "padding-left", - 192894, - 192905, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 192906, - 192906, - null - ], - [ - "dimension-token", - ".25rem", - 192907, - 192912, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192913, - 192913, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192914, - 192922, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192923, - 192923, - null - ], - [ - "delim-token", - ".", - 192924, - 192924, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-2", - 192925, - 192932, - { - "value": "px-xxl-2" - } - ], - [ - "{-token", - "{", - 192933, - 192933, - null - ], - [ - "ident-token", - "padding-right", - 192934, - 192946, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 192947, - 192947, - null - ], - [ - "dimension-token", - ".5rem", - 192948, - 192952, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192953, - 192953, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192954, - 192962, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 192963, - 192963, - null - ], - [ - "ident-token", - "padding-left", - 192964, - 192975, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 192976, - 192976, - null - ], - [ - "dimension-token", - ".5rem", - 192977, - 192981, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 192982, - 192982, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 192983, - 192991, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 192992, - 192992, - null - ], - [ - "delim-token", - ".", - 192993, - 192993, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-3", - 192994, - 193001, - { - "value": "px-xxl-3" - } - ], - [ - "{-token", - "{", - 193002, - 193002, - null - ], - [ - "ident-token", - "padding-right", - 193003, - 193015, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193016, - 193016, - null - ], - [ - "dimension-token", - "1rem", - 193017, - 193020, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193021, - 193021, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193022, - 193030, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193031, - 193031, - null - ], - [ - "ident-token", - "padding-left", - 193032, - 193043, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 193044, - 193044, - null - ], - [ - "dimension-token", - "1rem", - 193045, - 193048, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193049, - 193049, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193050, - 193058, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193059, - 193059, - null - ], - [ - "delim-token", - ".", - 193060, - 193060, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-4", - 193061, - 193068, - { - "value": "px-xxl-4" - } - ], - [ - "{-token", - "{", - 193069, - 193069, - null - ], - [ - "ident-token", - "padding-right", - 193070, - 193082, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193083, - 193083, - null - ], - [ - "dimension-token", - "1.5rem", - 193084, - 193089, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193090, - 193090, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193091, - 193099, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193100, - 193100, - null - ], - [ - "ident-token", - "padding-left", - 193101, - 193112, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 193113, - 193113, - null - ], - [ - "dimension-token", - "1.5rem", - 193114, - 193119, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193120, - 193120, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193121, - 193129, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193130, - 193130, - null - ], - [ - "delim-token", - ".", - 193131, - 193131, - { - "value": "." - } - ], - [ - "ident-token", - "px-xxl-5", - 193132, - 193139, - { - "value": "px-xxl-5" - } - ], - [ - "{-token", - "{", - 193140, - 193140, - null - ], - [ - "ident-token", - "padding-right", - 193141, - 193153, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193154, - 193154, - null - ], - [ - "dimension-token", - "3rem", - 193155, - 193158, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193159, - 193159, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193160, - 193168, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193169, - 193169, - null - ], - [ - "ident-token", - "padding-left", - 193170, - 193181, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 193182, - 193182, - null - ], - [ - "dimension-token", - "3rem", - 193183, - 193186, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193187, - 193187, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193188, - 193196, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193197, - 193197, - null - ], - [ - "delim-token", - ".", - 193198, - 193198, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-0", - 193199, - 193206, - { - "value": "py-xxl-0" - } - ], - [ - "{-token", - "{", - 193207, - 193207, - null - ], - [ - "ident-token", - "padding-top", - 193208, - 193218, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193219, - 193219, - null - ], - [ - "number-token", - "0", - 193220, - 193220, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 193221, - 193221, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193222, - 193230, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193231, - 193231, - null - ], - [ - "ident-token", - "padding-bottom", - 193232, - 193245, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193246, - 193246, - null - ], - [ - "number-token", - "0", - 193247, - 193247, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 193248, - 193248, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193249, - 193257, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193258, - 193258, - null - ], - [ - "delim-token", - ".", - 193259, - 193259, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-1", - 193260, - 193267, - { - "value": "py-xxl-1" - } - ], - [ - "{-token", - "{", - 193268, - 193268, - null - ], - [ - "ident-token", - "padding-top", - 193269, - 193279, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193280, - 193280, - null - ], - [ - "dimension-token", - ".25rem", - 193281, - 193286, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193287, - 193287, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193288, - 193296, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193297, - 193297, - null - ], - [ - "ident-token", - "padding-bottom", - 193298, - 193311, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193312, - 193312, - null - ], - [ - "dimension-token", - ".25rem", - 193313, - 193318, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193319, - 193319, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193320, - 193328, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193329, - 193329, - null - ], - [ - "delim-token", - ".", - 193330, - 193330, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-2", - 193331, - 193338, - { - "value": "py-xxl-2" - } - ], - [ - "{-token", - "{", - 193339, - 193339, - null - ], - [ - "ident-token", - "padding-top", - 193340, - 193350, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193351, - 193351, - null - ], - [ - "dimension-token", - ".5rem", - 193352, - 193356, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193357, - 193357, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193358, - 193366, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193367, - 193367, - null - ], - [ - "ident-token", - "padding-bottom", - 193368, - 193381, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193382, - 193382, - null - ], - [ - "dimension-token", - ".5rem", - 193383, - 193387, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193388, - 193388, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193389, - 193397, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193398, - 193398, - null - ], - [ - "delim-token", - ".", - 193399, - 193399, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-3", - 193400, - 193407, - { - "value": "py-xxl-3" - } - ], - [ - "{-token", - "{", - 193408, - 193408, - null - ], - [ - "ident-token", - "padding-top", - 193409, - 193419, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193420, - 193420, - null - ], - [ - "dimension-token", - "1rem", - 193421, - 193424, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193425, - 193425, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193426, - 193434, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193435, - 193435, - null - ], - [ - "ident-token", - "padding-bottom", - 193436, - 193449, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193450, - 193450, - null - ], - [ - "dimension-token", - "1rem", - 193451, - 193454, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193455, - 193455, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193456, - 193464, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193465, - 193465, - null - ], - [ - "delim-token", - ".", - 193466, - 193466, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-4", - 193467, - 193474, - { - "value": "py-xxl-4" - } - ], - [ - "{-token", - "{", - 193475, - 193475, - null - ], - [ - "ident-token", - "padding-top", - 193476, - 193486, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193487, - 193487, - null - ], - [ - "dimension-token", - "1.5rem", - 193488, - 193493, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193494, - 193494, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193495, - 193503, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193504, - 193504, - null - ], - [ - "ident-token", - "padding-bottom", - 193505, - 193518, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193519, - 193519, - null - ], - [ - "dimension-token", - "1.5rem", - 193520, - 193525, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193526, - 193526, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193527, - 193535, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193536, - 193536, - null - ], - [ - "delim-token", - ".", - 193537, - 193537, - { - "value": "." - } - ], - [ - "ident-token", - "py-xxl-5", - 193538, - 193545, - { - "value": "py-xxl-5" - } - ], - [ - "{-token", - "{", - 193546, - 193546, - null - ], - [ - "ident-token", - "padding-top", - 193547, - 193557, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193558, - 193558, - null - ], - [ - "dimension-token", - "3rem", - 193559, - 193562, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193563, - 193563, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193564, - 193572, - { - "value": "important" - } - ], - [ - "semicolon-token", - ";", - 193573, - 193573, - null - ], - [ - "ident-token", - "padding-bottom", - 193574, - 193587, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 193588, - 193588, - null - ], - [ - "dimension-token", - "3rem", - 193589, - 193592, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193593, - 193593, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193594, - 193602, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193603, - 193603, - null - ], - [ - "delim-token", - ".", - 193604, - 193604, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-0", - 193605, - 193612, - { - "value": "pt-xxl-0" - } - ], - [ - "{-token", - "{", - 193613, - 193613, - null - ], - [ - "ident-token", - "padding-top", - 193614, - 193624, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193625, - 193625, - null - ], - [ - "number-token", - "0", - 193626, - 193626, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 193627, - 193627, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193628, - 193636, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193637, - 193637, - null - ], - [ - "delim-token", - ".", - 193638, - 193638, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-1", - 193639, - 193646, - { - "value": "pt-xxl-1" - } - ], - [ - "{-token", - "{", - 193647, - 193647, - null - ], - [ - "ident-token", - "padding-top", - 193648, - 193658, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193659, - 193659, - null - ], - [ - "dimension-token", - ".25rem", - 193660, - 193665, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193666, - 193666, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193667, - 193675, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193676, - 193676, - null - ], - [ - "delim-token", - ".", - 193677, - 193677, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-2", - 193678, - 193685, - { - "value": "pt-xxl-2" - } - ], - [ - "{-token", - "{", - 193686, - 193686, - null - ], - [ - "ident-token", - "padding-top", - 193687, - 193697, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193698, - 193698, - null - ], - [ - "dimension-token", - ".5rem", - 193699, - 193703, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193704, - 193704, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193705, - 193713, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193714, - 193714, - null - ], - [ - "delim-token", - ".", - 193715, - 193715, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-3", - 193716, - 193723, - { - "value": "pt-xxl-3" - } - ], - [ - "{-token", - "{", - 193724, - 193724, - null - ], - [ - "ident-token", - "padding-top", - 193725, - 193735, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193736, - 193736, - null - ], - [ - "dimension-token", - "1rem", - 193737, - 193740, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193741, - 193741, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193742, - 193750, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193751, - 193751, - null - ], - [ - "delim-token", - ".", - 193752, - 193752, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-4", - 193753, - 193760, - { - "value": "pt-xxl-4" - } - ], - [ - "{-token", - "{", - 193761, - 193761, - null - ], - [ - "ident-token", - "padding-top", - 193762, - 193772, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193773, - 193773, - null - ], - [ - "dimension-token", - "1.5rem", - 193774, - 193779, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193780, - 193780, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193781, - 193789, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193790, - 193790, - null - ], - [ - "delim-token", - ".", - 193791, - 193791, - { - "value": "." - } - ], - [ - "ident-token", - "pt-xxl-5", - 193792, - 193799, - { - "value": "pt-xxl-5" - } - ], - [ - "{-token", - "{", - 193800, - 193800, - null - ], - [ - "ident-token", - "padding-top", - 193801, - 193811, - { - "value": "padding-top" - } - ], - [ - "colon-token", - ":", - 193812, - 193812, - null - ], - [ - "dimension-token", - "3rem", - 193813, - 193816, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193817, - 193817, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193818, - 193826, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193827, - 193827, - null - ], - [ - "delim-token", - ".", - 193828, - 193828, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-0", - 193829, - 193836, - { - "value": "pe-xxl-0" - } - ], - [ - "{-token", - "{", - 193837, - 193837, - null - ], - [ - "ident-token", - "padding-right", - 193838, - 193850, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193851, - 193851, - null - ], - [ - "number-token", - "0", - 193852, - 193852, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 193853, - 193853, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193854, - 193862, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193863, - 193863, - null - ], - [ - "delim-token", - ".", - 193864, - 193864, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-1", - 193865, - 193872, - { - "value": "pe-xxl-1" - } - ], - [ - "{-token", - "{", - 193873, - 193873, - null - ], - [ - "ident-token", - "padding-right", - 193874, - 193886, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193887, - 193887, - null - ], - [ - "dimension-token", - ".25rem", - 193888, - 193893, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193894, - 193894, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193895, - 193903, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193904, - 193904, - null - ], - [ - "delim-token", - ".", - 193905, - 193905, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-2", - 193906, - 193913, - { - "value": "pe-xxl-2" - } - ], - [ - "{-token", - "{", - 193914, - 193914, - null - ], - [ - "ident-token", - "padding-right", - 193915, - 193927, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193928, - 193928, - null - ], - [ - "dimension-token", - ".5rem", - 193929, - 193933, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193934, - 193934, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193935, - 193943, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193944, - 193944, - null - ], - [ - "delim-token", - ".", - 193945, - 193945, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-3", - 193946, - 193953, - { - "value": "pe-xxl-3" - } - ], - [ - "{-token", - "{", - 193954, - 193954, - null - ], - [ - "ident-token", - "padding-right", - 193955, - 193967, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 193968, - 193968, - null - ], - [ - "dimension-token", - "1rem", - 193969, - 193972, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 193973, - 193973, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 193974, - 193982, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 193983, - 193983, - null - ], - [ - "delim-token", - ".", - 193984, - 193984, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-4", - 193985, - 193992, - { - "value": "pe-xxl-4" - } - ], - [ - "{-token", - "{", - 193993, - 193993, - null - ], - [ - "ident-token", - "padding-right", - 193994, - 194006, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 194007, - 194007, - null - ], - [ - "dimension-token", - "1.5rem", - 194008, - 194013, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194014, - 194014, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194015, - 194023, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194024, - 194024, - null - ], - [ - "delim-token", - ".", - 194025, - 194025, - { - "value": "." - } - ], - [ - "ident-token", - "pe-xxl-5", - 194026, - 194033, - { - "value": "pe-xxl-5" - } - ], - [ - "{-token", - "{", - 194034, - 194034, - null - ], - [ - "ident-token", - "padding-right", - 194035, - 194047, - { - "value": "padding-right" - } - ], - [ - "colon-token", - ":", - 194048, - 194048, - null - ], - [ - "dimension-token", - "3rem", - 194049, - 194052, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194053, - 194053, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194054, - 194062, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194063, - 194063, - null - ], - [ - "delim-token", - ".", - 194064, - 194064, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-0", - 194065, - 194072, - { - "value": "pb-xxl-0" - } - ], - [ - "{-token", - "{", - 194073, - 194073, - null - ], - [ - "ident-token", - "padding-bottom", - 194074, - 194087, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194088, - 194088, - null - ], - [ - "number-token", - "0", - 194089, - 194089, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 194090, - 194090, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194091, - 194099, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194100, - 194100, - null - ], - [ - "delim-token", - ".", - 194101, - 194101, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-1", - 194102, - 194109, - { - "value": "pb-xxl-1" - } - ], - [ - "{-token", - "{", - 194110, - 194110, - null - ], - [ - "ident-token", - "padding-bottom", - 194111, - 194124, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194125, - 194125, - null - ], - [ - "dimension-token", - ".25rem", - 194126, - 194131, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194132, - 194132, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194133, - 194141, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194142, - 194142, - null - ], - [ - "delim-token", - ".", - 194143, - 194143, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-2", - 194144, - 194151, - { - "value": "pb-xxl-2" - } - ], - [ - "{-token", - "{", - 194152, - 194152, - null - ], - [ - "ident-token", - "padding-bottom", - 194153, - 194166, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194167, - 194167, - null - ], - [ - "dimension-token", - ".5rem", - 194168, - 194172, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194173, - 194173, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194174, - 194182, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194183, - 194183, - null - ], - [ - "delim-token", - ".", - 194184, - 194184, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-3", - 194185, - 194192, - { - "value": "pb-xxl-3" - } - ], - [ - "{-token", - "{", - 194193, - 194193, - null - ], - [ - "ident-token", - "padding-bottom", - 194194, - 194207, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194208, - 194208, - null - ], - [ - "dimension-token", - "1rem", - 194209, - 194212, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194213, - 194213, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194214, - 194222, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194223, - 194223, - null - ], - [ - "delim-token", - ".", - 194224, - 194224, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-4", - 194225, - 194232, - { - "value": "pb-xxl-4" - } - ], - [ - "{-token", - "{", - 194233, - 194233, - null - ], - [ - "ident-token", - "padding-bottom", - 194234, - 194247, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194248, - 194248, - null - ], - [ - "dimension-token", - "1.5rem", - 194249, - 194254, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194255, - 194255, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194256, - 194264, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194265, - 194265, - null - ], - [ - "delim-token", - ".", - 194266, - 194266, - { - "value": "." - } - ], - [ - "ident-token", - "pb-xxl-5", - 194267, - 194274, - { - "value": "pb-xxl-5" - } - ], - [ - "{-token", - "{", - 194275, - 194275, - null - ], - [ - "ident-token", - "padding-bottom", - 194276, - 194289, - { - "value": "padding-bottom" - } - ], - [ - "colon-token", - ":", - 194290, - 194290, - null - ], - [ - "dimension-token", - "3rem", - 194291, - 194294, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194295, - 194295, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194296, - 194304, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194305, - 194305, - null - ], - [ - "delim-token", - ".", - 194306, - 194306, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-0", - 194307, - 194314, - { - "value": "ps-xxl-0" - } - ], - [ - "{-token", - "{", - 194315, - 194315, - null - ], - [ - "ident-token", - "padding-left", - 194316, - 194327, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194328, - 194328, - null - ], - [ - "number-token", - "0", - 194329, - 194329, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 194330, - 194330, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194331, - 194339, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194340, - 194340, - null - ], - [ - "delim-token", - ".", - 194341, - 194341, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-1", - 194342, - 194349, - { - "value": "ps-xxl-1" - } - ], - [ - "{-token", - "{", - 194350, - 194350, - null - ], - [ - "ident-token", - "padding-left", - 194351, - 194362, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194363, - 194363, - null - ], - [ - "dimension-token", - ".25rem", - 194364, - 194369, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194370, - 194370, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194371, - 194379, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194380, - 194380, - null - ], - [ - "delim-token", - ".", - 194381, - 194381, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-2", - 194382, - 194389, - { - "value": "ps-xxl-2" - } - ], - [ - "{-token", - "{", - 194390, - 194390, - null - ], - [ - "ident-token", - "padding-left", - 194391, - 194402, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194403, - 194403, - null - ], - [ - "dimension-token", - ".5rem", - 194404, - 194408, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194409, - 194409, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194410, - 194418, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194419, - 194419, - null - ], - [ - "delim-token", - ".", - 194420, - 194420, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-3", - 194421, - 194428, - { - "value": "ps-xxl-3" - } - ], - [ - "{-token", - "{", - 194429, - 194429, - null - ], - [ - "ident-token", - "padding-left", - 194430, - 194441, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194442, - 194442, - null - ], - [ - "dimension-token", - "1rem", - 194443, - 194446, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194447, - 194447, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194448, - 194456, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194457, - 194457, - null - ], - [ - "delim-token", - ".", - 194458, - 194458, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-4", - 194459, - 194466, - { - "value": "ps-xxl-4" - } - ], - [ - "{-token", - "{", - 194467, - 194467, - null - ], - [ - "ident-token", - "padding-left", - 194468, - 194479, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194480, - 194480, - null - ], - [ - "dimension-token", - "1.5rem", - 194481, - 194486, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194487, - 194487, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194488, - 194496, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194497, - 194497, - null - ], - [ - "delim-token", - ".", - 194498, - 194498, - { - "value": "." - } - ], - [ - "ident-token", - "ps-xxl-5", - 194499, - 194506, - { - "value": "ps-xxl-5" - } - ], - [ - "{-token", - "{", - 194507, - 194507, - null - ], - [ - "ident-token", - "padding-left", - 194508, - 194519, - { - "value": "padding-left" - } - ], - [ - "colon-token", - ":", - 194520, - 194520, - null - ], - [ - "dimension-token", - "3rem", - 194521, - 194524, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194525, - 194525, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194526, - 194534, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194535, - 194535, - null - ], - [ - "delim-token", - ".", - 194536, - 194536, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-0", - 194537, - 194545, - { - "value": "gap-xxl-0" - } - ], - [ - "{-token", - "{", - 194546, - 194546, - null - ], - [ - "ident-token", - "gap", - 194547, - 194549, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194550, - 194550, - null - ], - [ - "number-token", - "0", - 194551, - 194551, - { - "value": 0, - "type": "integer" - } - ], - [ - "delim-token", - "!", - 194552, - 194552, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194553, - 194561, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194562, - 194562, - null - ], - [ - "delim-token", - ".", - 194563, - 194563, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-1", - 194564, - 194572, - { - "value": "gap-xxl-1" - } - ], - [ - "{-token", - "{", - 194573, - 194573, - null - ], - [ - "ident-token", - "gap", - 194574, - 194576, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194577, - 194577, - null - ], - [ - "dimension-token", - ".25rem", - 194578, - 194583, - { - "value": 0.25, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194584, - 194584, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194585, - 194593, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194594, - 194594, - null - ], - [ - "delim-token", - ".", - 194595, - 194595, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-2", - 194596, - 194604, - { - "value": "gap-xxl-2" - } - ], - [ - "{-token", - "{", - 194605, - 194605, - null - ], - [ - "ident-token", - "gap", - 194606, - 194608, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194609, - 194609, - null - ], - [ - "dimension-token", - ".5rem", - 194610, - 194614, - { - "value": 0.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194615, - 194615, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194616, - 194624, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194625, - 194625, - null - ], - [ - "delim-token", - ".", - 194626, - 194626, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-3", - 194627, - 194635, - { - "value": "gap-xxl-3" - } - ], - [ - "{-token", - "{", - 194636, - 194636, - null - ], - [ - "ident-token", - "gap", - 194637, - 194639, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194640, - 194640, - null - ], - [ - "dimension-token", - "1rem", - 194641, - 194644, - { - "value": 1, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194645, - 194645, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194646, - 194654, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194655, - 194655, - null - ], - [ - "delim-token", - ".", - 194656, - 194656, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-4", - 194657, - 194665, - { - "value": "gap-xxl-4" - } - ], - [ - "{-token", - "{", - 194666, - 194666, - null - ], - [ - "ident-token", - "gap", - 194667, - 194669, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194670, - 194670, - null - ], - [ - "dimension-token", - "1.5rem", - 194671, - 194676, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194677, - 194677, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194678, - 194686, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194687, - 194687, - null - ], - [ - "delim-token", - ".", - 194688, - 194688, - { - "value": "." - } - ], - [ - "ident-token", - "gap-xxl-5", - 194689, - 194697, - { - "value": "gap-xxl-5" - } - ], - [ - "{-token", - "{", - 194698, - 194698, - null - ], - [ - "ident-token", - "gap", - 194699, - 194701, - { - "value": "gap" - } - ], - [ - "colon-token", - ":", - 194702, - 194702, - null - ], - [ - "dimension-token", - "3rem", - 194703, - 194706, - { - "value": 3, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194707, - 194707, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194708, - 194716, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194717, - 194717, - null - ], - [ - "delim-token", - ".", - 194718, - 194718, - { - "value": "." - } - ], - [ - "ident-token", - "text-xxl-start", - 194719, - 194732, - { - "value": "text-xxl-start" - } - ], - [ - "{-token", - "{", - 194733, - 194733, - null - ], - [ - "ident-token", - "text-align", - 194734, - 194743, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 194744, - 194744, - null - ], - [ - "ident-token", - "left", - 194745, - 194748, - { - "value": "left" - } - ], - [ - "delim-token", - "!", - 194749, - 194749, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194750, - 194758, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194759, - 194759, - null - ], - [ - "delim-token", - ".", - 194760, - 194760, - { - "value": "." - } - ], - [ - "ident-token", - "text-xxl-end", - 194761, - 194772, - { - "value": "text-xxl-end" - } - ], - [ - "{-token", - "{", - 194773, - 194773, - null - ], - [ - "ident-token", - "text-align", - 194774, - 194783, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 194784, - 194784, - null - ], - [ - "ident-token", - "right", - 194785, - 194789, - { - "value": "right" - } - ], - [ - "delim-token", - "!", - 194790, - 194790, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194791, - 194799, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194800, - 194800, - null - ], - [ - "delim-token", - ".", - 194801, - 194801, - { - "value": "." - } - ], - [ - "ident-token", - "text-xxl-center", - 194802, - 194816, - { - "value": "text-xxl-center" - } - ], - [ - "{-token", - "{", - 194817, - 194817, - null - ], - [ - "ident-token", - "text-align", - 194818, - 194827, - { - "value": "text-align" - } - ], - [ - "colon-token", - ":", - 194828, - 194828, - null - ], - [ - "ident-token", - "center", - 194829, - 194834, - { - "value": "center" - } - ], - [ - "delim-token", - "!", - 194835, - 194835, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194836, - 194844, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194845, - 194845, - null - ], - [ - "}-token", - "}", - 194846, - 194846, - null - ], - [ - "at-keyword-token", - "@media", - 194847, - 194852, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 194853, - 194853, - null - ], - [ - "(-token", - "(", - 194854, - 194854, - null - ], - [ - "ident-token", - "min-width", - 194855, - 194863, - { - "value": "min-width" - } - ], - [ - "colon-token", - ":", - 194864, - 194864, - null - ], - [ - "dimension-token", - "1200px", - 194865, - 194870, - { - "value": 1200, - "type": "integer", - "unit": "px" - } - ], - [ - ")-token", - ")", - 194871, - 194871, - null - ], - [ - "{-token", - "{", - 194872, - 194872, - null - ], - [ - "delim-token", - ".", - 194873, - 194873, - { - "value": "." - } - ], - [ - "ident-token", - "fs-1", - 194874, - 194877, - { - "value": "fs-1" - } - ], - [ - "{-token", - "{", - 194878, - 194878, - null - ], - [ - "ident-token", - "font-size", - 194879, - 194887, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 194888, - 194888, - null - ], - [ - "dimension-token", - "2.5rem", - 194889, - 194894, - { - "value": 2.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194895, - 194895, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194896, - 194904, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194905, - 194905, - null - ], - [ - "delim-token", - ".", - 194906, - 194906, - { - "value": "." - } - ], - [ - "ident-token", - "fs-2", - 194907, - 194910, - { - "value": "fs-2" - } - ], - [ - "{-token", - "{", - 194911, - 194911, - null - ], - [ - "ident-token", - "font-size", - 194912, - 194920, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 194921, - 194921, - null - ], - [ - "dimension-token", - "2rem", - 194922, - 194925, - { - "value": 2, - "type": "integer", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194926, - 194926, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194927, - 194935, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194936, - 194936, - null - ], - [ - "delim-token", - ".", - 194937, - 194937, - { - "value": "." - } - ], - [ - "ident-token", - "fs-3", - 194938, - 194941, - { - "value": "fs-3" - } - ], - [ - "{-token", - "{", - 194942, - 194942, - null - ], - [ - "ident-token", - "font-size", - 194943, - 194951, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 194952, - 194952, - null - ], - [ - "dimension-token", - "1.75rem", - 194953, - 194959, - { - "value": 1.75, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194960, - 194960, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194961, - 194969, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 194970, - 194970, - null - ], - [ - "delim-token", - ".", - 194971, - 194971, - { - "value": "." - } - ], - [ - "ident-token", - "fs-4", - 194972, - 194975, - { - "value": "fs-4" - } - ], - [ - "{-token", - "{", - 194976, - 194976, - null - ], - [ - "ident-token", - "font-size", - 194977, - 194985, - { - "value": "font-size" - } - ], - [ - "colon-token", - ":", - 194986, - 194986, - null - ], - [ - "dimension-token", - "1.5rem", - 194987, - 194992, - { - "value": 1.5, - "type": "number", - "unit": "rem" - } - ], - [ - "delim-token", - "!", - 194993, - 194993, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 194994, - 195002, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195003, - 195003, - null - ], - [ - "}-token", - "}", - 195004, - 195004, - null - ], - [ - "at-keyword-token", - "@media", - 195005, - 195010, - { - "value": "media" - } - ], - [ - "whitespace-token", - " ", - 195011, - 195011, - null - ], - [ - "ident-token", - "print", - 195012, - 195016, - { - "value": "print" - } - ], - [ - "{-token", - "{", - 195017, - 195017, - null - ], - [ - "delim-token", - ".", - 195018, - 195018, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-inline", - 195019, - 195032, - { - "value": "d-print-inline" - } - ], - [ - "{-token", - "{", - 195033, - 195033, - null - ], - [ - "ident-token", - "display", - 195034, - 195040, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195041, - 195041, - null - ], - [ - "ident-token", - "inline", - 195042, - 195047, - { - "value": "inline" - } - ], - [ - "delim-token", - "!", - 195048, - 195048, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195049, - 195057, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195058, - 195058, - null - ], - [ - "delim-token", - ".", - 195059, - 195059, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-inline-block", - 195060, - 195079, - { - "value": "d-print-inline-block" - } - ], - [ - "{-token", - "{", - 195080, - 195080, - null - ], - [ - "ident-token", - "display", - 195081, - 195087, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195088, - 195088, - null - ], - [ - "ident-token", - "inline-block", - 195089, - 195100, - { - "value": "inline-block" - } - ], - [ - "delim-token", - "!", - 195101, - 195101, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195102, - 195110, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195111, - 195111, - null - ], - [ - "delim-token", - ".", - 195112, - 195112, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-block", - 195113, - 195125, - { - "value": "d-print-block" - } - ], - [ - "{-token", - "{", - 195126, - 195126, - null - ], - [ - "ident-token", - "display", - 195127, - 195133, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195134, - 195134, - null - ], - [ - "ident-token", - "block", - 195135, - 195139, - { - "value": "block" - } - ], - [ - "delim-token", - "!", - 195140, - 195140, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195141, - 195149, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195150, - 195150, - null - ], - [ - "delim-token", - ".", - 195151, - 195151, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-grid", - 195152, - 195163, - { - "value": "d-print-grid" - } - ], - [ - "{-token", - "{", - 195164, - 195164, - null - ], - [ - "ident-token", - "display", - 195165, - 195171, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195172, - 195172, - null - ], - [ - "ident-token", - "grid", - 195173, - 195176, - { - "value": "grid" - } - ], - [ - "delim-token", - "!", - 195177, - 195177, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195178, - 195186, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195187, - 195187, - null - ], - [ - "delim-token", - ".", - 195188, - 195188, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-table", - 195189, - 195201, - { - "value": "d-print-table" - } - ], - [ - "{-token", - "{", - 195202, - 195202, - null - ], - [ - "ident-token", - "display", - 195203, - 195209, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195210, - 195210, - null - ], - [ - "ident-token", - "table", - 195211, - 195215, - { - "value": "table" - } - ], - [ - "delim-token", - "!", - 195216, - 195216, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195217, - 195225, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195226, - 195226, - null - ], - [ - "delim-token", - ".", - 195227, - 195227, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-table-row", - 195228, - 195244, - { - "value": "d-print-table-row" - } - ], - [ - "{-token", - "{", - 195245, - 195245, - null - ], - [ - "ident-token", - "display", - 195246, - 195252, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195253, - 195253, - null - ], - [ - "ident-token", - "table-row", - 195254, - 195262, - { - "value": "table-row" - } - ], - [ - "delim-token", - "!", - 195263, - 195263, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195264, - 195272, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195273, - 195273, - null - ], - [ - "delim-token", - ".", - 195274, - 195274, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-table-cell", - 195275, - 195292, - { - "value": "d-print-table-cell" - } - ], - [ - "{-token", - "{", - 195293, - 195293, - null - ], - [ - "ident-token", - "display", - 195294, - 195300, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195301, - 195301, - null - ], - [ - "ident-token", - "table-cell", - 195302, - 195311, - { - "value": "table-cell" - } - ], - [ - "delim-token", - "!", - 195312, - 195312, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195313, - 195321, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195322, - 195322, - null - ], - [ - "delim-token", - ".", - 195323, - 195323, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-flex", - 195324, - 195335, - { - "value": "d-print-flex" - } - ], - [ - "{-token", - "{", - 195336, - 195336, - null - ], - [ - "ident-token", - "display", - 195337, - 195343, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195344, - 195344, - null - ], - [ - "ident-token", - "flex", - 195345, - 195348, - { - "value": "flex" - } - ], - [ - "delim-token", - "!", - 195349, - 195349, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195350, - 195358, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195359, - 195359, - null - ], - [ - "delim-token", - ".", - 195360, - 195360, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-inline-flex", - 195361, - 195379, - { - "value": "d-print-inline-flex" - } - ], - [ - "{-token", - "{", - 195380, - 195380, - null - ], - [ - "ident-token", - "display", - 195381, - 195387, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195388, - 195388, - null - ], - [ - "ident-token", - "inline-flex", - 195389, - 195399, - { - "value": "inline-flex" - } - ], - [ - "delim-token", - "!", - 195400, - 195400, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195401, - 195409, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195410, - 195410, - null - ], - [ - "delim-token", - ".", - 195411, - 195411, - { - "value": "." - } - ], - [ - "ident-token", - "d-print-none", - 195412, - 195423, - { - "value": "d-print-none" - } - ], - [ - "{-token", - "{", - 195424, - 195424, - null - ], - [ - "ident-token", - "display", - 195425, - 195431, - { - "value": "display" - } - ], - [ - "colon-token", - ":", - 195432, - 195432, - null - ], - [ - "ident-token", - "none", - 195433, - 195436, - { - "value": "none" - } - ], - [ - "delim-token", - "!", - 195437, - 195437, - { - "value": "!" - } - ], - [ - "ident-token", - "important", - 195438, - 195446, - { - "value": "important" - } - ], - [ - "}-token", - "}", - 195447, - 195447, - null - ], - [ - "}-token", - "}", - 195448, - 195448, - null - ], - [ - "whitespace-token", - "\n", - 195449, - 195449, - null - ], - [ - "whitespace-token", - "\n", - 195495, - 195495, - null - ], - [ - "EOF-token", - "", - -1, - -1, - null - ] -] diff --git a/packages/css-tokenizer/test/token/bootstrap.mjs b/packages/css-tokenizer/test/token/bootstrap.mjs deleted file mode 100644 index 000b63a356..0000000000 --- a/packages/css-tokenizer/test/token/bootstrap.mjs +++ /dev/null @@ -1,52 +0,0 @@ -import { tokenizer } from '@csstools/css-tokenizer'; -import { bootstrapTokens } from './bootstrap-tokens.mjs'; -import assert from 'assert'; -import fs from 'fs'; - -// TODO : delete me -// I do not want to test against bootstrap, but I do want a big bunch of valid CSS as a temporary test corpus. -// This makes the impact of changes and fixes more visible while writing more tests - -function collectTokens(t) { - const bag = []; - // eslint-disable-next-line no-constant-condition - while (true) { - bag.push(t.nextToken()); - - if (!bag[bag.length - 1]) { - break; - } - - if (bag[bag.length - 1][0] === 'EOF-token') { - break; - } - } - - return bag; -} - -{ - const t = tokenizer({ - css: bootstrapSource(), - }); - - const tokens = collectTokens(t); - - fs.writeFileSync('./test/token/bootstrap-tokens.mjs', `/* eslint-disable */\nexport const bootstrapTokens = ${JSON.stringify(tokens, null, '\t')}\n`); - - assert.deepEqual( - tokens, - bootstrapTokens, - ); -} - -function bootstrapSource() { - return `@charset "UTF-8";/*! - * Bootstrap v5.2.1 (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Copyright 2011-2022 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid var(--bs-border-color);border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:2px solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}.form-control-color::-webkit-color-swatch{border-radius:.375rem}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.25rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.375rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.375rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:#212529;--bs-btn-bg:transparent;--bs-btn-border-width:1px;--bs-btn-border-color:transparent;--bs-btn-border-radius:0.375rem;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:first-child:hover,:not(.btn-check)+.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:0.5rem}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:0.25rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:#212529;--bs-dropdown-bg:#fff;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:0.375rem;--bs-dropdown-border-width:1px;--bs-dropdown-inner-border-radius:calc(0.375rem - 1px);--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:#212529;--bs-dropdown-link-hover-color:#1e2125;--bs-dropdown-link-hover-bg:#e9ecef;--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.375rem}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:#6c757d;display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:1px;--bs-nav-tabs-border-color:#dee2e6;--bs-nav-tabs-border-radius:0.375rem;--bs-nav-tabs-link-hover-border-color:#e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color:#495057;--bs-nav-tabs-link-active-bg:#fff;--bs-nav-tabs-link-active-border-color:#dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));background:0 0;border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:0.375rem;--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{background:0 0;border:0;border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(0, 0, 0, 0.55);--bs-navbar-hover-color:rgba(0, 0, 0, 0.7);--bs-navbar-disabled-color:rgba(0, 0, 0, 0.3);--bs-navbar-active-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-hover-color:rgba(0, 0, 0, 0.9);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(0, 0, 0, 0.1);--bs-navbar-toggler-border-radius:0.375rem;--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .show>.nav-link{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-border-width:1px;--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:0.375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(0.375rem - 1px);--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(0, 0, 0, 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:#fff;--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:#fff;--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:1px;--bs-accordion-border-radius:0.375rem;--bs-accordion-inner-border-radius:calc(0.375rem - 1px);--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:#0c63e4;--bs-accordion-active-bg:#e7f1ff}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:#6c757d;--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:#6c757d;display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:#fff;--bs-pagination-border-width:1px;--bs-pagination-border-color:#dee2e6;--bs-pagination-border-radius:0.375rem;--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:#e9ecef;--bs-pagination-hover-border-color:#dee2e6;--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:#e9ecef;--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:#6c757d;--bs-pagination-disabled-bg:#fff;--bs-pagination-disabled-border-color:#dee2e6;display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:0.5rem}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:0.25rem}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0.375rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:1px solid var(--bs-alert-border-color);--bs-alert-border-radius:0.375rem;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:#084298;--bs-alert-bg:#cfe2ff;--bs-alert-border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{--bs-alert-color:#41464b;--bs-alert-bg:#e2e3e5;--bs-alert-border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{--bs-alert-color:#0f5132;--bs-alert-bg:#d1e7dd;--bs-alert-border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{--bs-alert-color:#055160;--bs-alert-bg:#cff4fc;--bs-alert-border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{--bs-alert-color:#664d03;--bs-alert-bg:#fff3cd;--bs-alert-border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{--bs-alert-color:#842029;--bs-alert-bg:#f8d7da;--bs-alert-border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{--bs-alert-color:#636464;--bs-alert-bg:#fefefe;--bs-alert-border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{--bs-alert-color:#141619;--bs-alert-bg:#d3d3d4;--bs-alert-border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:#e9ecef;--bs-progress-border-radius:0.375rem;--bs-progress-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{--bs-list-group-color:#212529;--bs-list-group-bg:#fff;--bs-list-group-border-color:rgba(0, 0, 0, 0.125);--bs-list-group-border-width:1px;--bs-list-group-border-radius:0.375rem;--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:#495057;--bs-list-group-action-hover-color:#495057;--bs-list-group-action-hover-bg:#f8f9fa;--bs-list-group-action-active-color:#212529;--bs-list-group-action-active-bg:#e9ecef;--bs-list-group-disabled-color:#6c757d;--bs-list-group-disabled-bg:#fff;--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(255, 255, 255, 0.85);--bs-toast-border-width:1px;--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:0.375rem;--bs-toast-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color:#6c757d;--bs-toast-header-bg:rgba(255, 255, 255, 0.85);--bs-toast-header-border-color:rgba(0, 0, 0, 0.05);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:#fff;--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:1px;--bs-modal-border-radius:0.5rem;--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(0.5rem - 1px);--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:1px;--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:#fff;--bs-tooltip-bg:#000;--bs-tooltip-border-radius:0.375rem;--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;padding:var(--bs-tooltip-arrow-height);margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:#fff;--bs-popover-border-width:1px;--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:0.5rem;--bs-popover-inner-border-radius:calc(0.5rem - 1px);--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:#f0f0f0;--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:#212529;--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;-webkit-animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color: ;--bs-offcanvas-bg:#fff;--bs-offcanvas-border-width:1px;--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:#0d6efd!important}.link-primary:focus,.link-primary:hover{color:#0a58ca!important}.link-secondary{color:#6c757d!important}.link-secondary:focus,.link-secondary:hover{color:#565e64!important}.link-success{color:#198754!important}.link-success:focus,.link-success:hover{color:#146c43!important}.link-info{color:#0dcaf0!important}.link-info:focus,.link-info:hover{color:#3dd5f3!important}.link-warning{color:#ffc107!important}.link-warning:focus,.link-warning:hover{color:#ffcd39!important}.link-danger{color:#dc3545!important}.link-danger:focus,.link-danger:hover{color:#b02a37!important}.link-light{color:#f8f9fa!important}.link-light:focus,.link-light:hover{color:#f9fafb!important}.link-dark{color:#212529!important}.link-dark:focus,.link-dark:hover{color:#1a1e21!important}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-1{--bs-border-width:1px}.border-2{--bs-border-width:2px}.border-3{--bs-border-width:3px}.border-4{--bs-border-width:4px}.border-5{--bs-border-width:5px}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-semibold{font-weight:600!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-2xl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ -`; -} From 90d2738bc7472f465984d82e61c8a4a9e8b95d0f Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 11:20:19 +0200 Subject: [PATCH 34/59] wip --- package-lock.json | 36 ++-- packages/css-tokenizer/package.json | 7 - packages/css-tokenizer/src/tokenizer.ts | 7 +- packages/css-tokenizer/test/_import.mjs | 11 +- packages/css-tokenizer/test/_require.cjs | 11 +- .../test/util/collect-tokens.mjs | 14 +- .../postcss-media-query-parser/.gitignore | 6 + packages/postcss-media-query-parser/.nvmrc | 1 + .../postcss-media-query-parser/CHANGELOG.md | 3 + .../postcss-media-query-parser/LICENSE.md | 20 +++ packages/postcss-media-query-parser/README.md | 1 + .../postcss-media-query-parser/package.json | 68 +++++++ .../src/interfaces/position.ts | 16 ++ .../src/interfaces/range.ts | 13 ++ .../src/interfaces/source.ts | 18 ++ .../postcss-media-query-parser/src/node.ts | 170 ++++++++++++++++++ .../stryker.conf.json | 19 ++ .../test/_import.mjs | 8 + .../test/_require.cjs | 8 + .../postcss-media-query-parser/test/test.mjs | 1 + .../postcss-media-query-parser/tsconfig.json | 9 + 21 files changed, 404 insertions(+), 43 deletions(-) create mode 100644 packages/postcss-media-query-parser/.gitignore create mode 100644 packages/postcss-media-query-parser/.nvmrc create mode 100644 packages/postcss-media-query-parser/CHANGELOG.md create mode 100644 packages/postcss-media-query-parser/LICENSE.md create mode 100644 packages/postcss-media-query-parser/README.md create mode 100644 packages/postcss-media-query-parser/package.json create mode 100644 packages/postcss-media-query-parser/src/interfaces/position.ts create mode 100644 packages/postcss-media-query-parser/src/interfaces/range.ts create mode 100644 packages/postcss-media-query-parser/src/interfaces/source.ts create mode 100644 packages/postcss-media-query-parser/src/node.ts create mode 100644 packages/postcss-media-query-parser/stryker.conf.json create mode 100644 packages/postcss-media-query-parser/test/_import.mjs create mode 100644 packages/postcss-media-query-parser/test/_require.cjs create mode 100644 packages/postcss-media-query-parser/test/test.mjs create mode 100644 packages/postcss-media-query-parser/tsconfig.json diff --git a/package-lock.json b/package-lock.json index 52c1764a0d..93170f0d2e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1856,6 +1856,10 @@ "resolved": "plugins/postcss-is-pseudo-class", "link": true }, + "node_modules/@csstools/postcss-media-query-parser": { + "resolved": "packages/postcss-media-query-parser", + "link": true + }, "node_modules/@csstools/postcss-nested-calc": { "resolved": "plugins/postcss-nested-calc", "link": true @@ -6729,19 +6733,12 @@ "name": "@csstools/css-tokenizer", "version": "1.0.0", "license": "MIT", - "devDependencies": { - "postcss-selector-parser": "^6.0.10" - }, "engines": { "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2", - "postcss-selector-parser": "^6.0.10" } }, "packages/generate-test-cases": { @@ -6759,6 +6756,20 @@ "url": "https://opencollective.com/csstools" } }, + "packages/postcss-media-query-parser": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@csstools/css-tokenizer": "^1.0.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, "packages/postcss-tape": { "name": "@csstools/postcss-tape", "version": "1.0.0", @@ -8802,10 +8813,7 @@ } }, "@csstools/css-tokenizer": { - "version": "file:packages/css-tokenizer", - "requires": { - "postcss-selector-parser": "^6.0.10" - } + "version": "file:packages/css-tokenizer" }, "@csstools/csstools-cli": { "version": "file:cli/csstools-cli", @@ -8924,6 +8932,12 @@ "puppeteer": "^17.1.3" } }, + "@csstools/postcss-media-query-parser": { + "version": "file:packages/postcss-media-query-parser", + "requires": { + "@csstools/css-tokenizer": "^1.0.0" + } + }, "@csstools/postcss-nested-calc": { "version": "file:plugins/postcss-nested-calc", "requires": { diff --git a/packages/css-tokenizer/package.json b/packages/css-tokenizer/package.json index d0ccdd8374..1c6e2b6868 100644 --- a/packages/css-tokenizer/package.json +++ b/packages/css-tokenizer/package.json @@ -37,13 +37,6 @@ "README.md", "dist" ], - "peerDependencies": { - "postcss": "^8.2", - "postcss-selector-parser": "^6.0.10" - }, - "devDependencies": { - "postcss-selector-parser": "^6.0.10" - }, "scripts": { "build": "rollup -c ../../rollup/default.js", "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 3094548467..6cf2899f6c 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -30,6 +30,10 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken onParseError: options?.onParseError ?? (() => { /* noop */ }), }; + function endOfFile() { + return reader.peekOneCodePoint() === false; + } + function nextToken(): CSSToken | undefined { reader.resetRepresentation(); @@ -196,6 +200,7 @@ export function tokenizer(input: { css: Stringer }, options?: { commentsAreToken } return { - nextToken, + nextToken: nextToken, + endOfFile: endOfFile, }; } diff --git a/packages/css-tokenizer/test/_import.mjs b/packages/css-tokenizer/test/_import.mjs index 9c969f45d0..c1c61bf2b2 100644 --- a/packages/css-tokenizer/test/_import.mjs +++ b/packages/css-tokenizer/test/_import.mjs @@ -1,8 +1,5 @@ -import assert from 'assert'; -import { selectorSpecificity, compare } from '@csstools/selector-specificity'; +import { tokenizer } from '@csstools/css-tokenizer'; -assert.equal(selectorSpecificity().a, 0); -assert.equal(selectorSpecificity().b, 0); -assert.equal(selectorSpecificity().c, 0); - -assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); +tokenizer({ + css: '.some { css: ""; }', +}); diff --git a/packages/css-tokenizer/test/_require.cjs b/packages/css-tokenizer/test/_require.cjs index 018f19a809..abc74a96e1 100644 --- a/packages/css-tokenizer/test/_require.cjs +++ b/packages/css-tokenizer/test/_require.cjs @@ -1,8 +1,5 @@ -const assert = require('assert'); -const { selectorSpecificity, compare } = require('@csstools/selector-specificity'); +const { tokenizer } = require('@csstools/css-tokenizer'); -assert.equal(selectorSpecificity().a, 0); -assert.equal(selectorSpecificity().b, 0); -assert.equal(selectorSpecificity().c, 0); - -assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); +tokenizer({ + css: '.some { css: ""; }', +}); diff --git a/packages/css-tokenizer/test/util/collect-tokens.mjs b/packages/css-tokenizer/test/util/collect-tokens.mjs index 13e038fb4d..5ab1c998b1 100644 --- a/packages/css-tokenizer/test/util/collect-tokens.mjs +++ b/packages/css-tokenizer/test/util/collect-tokens.mjs @@ -1,17 +1,11 @@ export function collectTokens(t) { const bag = []; - // eslint-disable-next-line no-constant-condition - while (true) { - bag.push(t.nextToken()); - - if (!bag[bag.length - 1]) { - break; - } - if (bag[bag.length - 1][0] === 'EOF-token') { - break; - } + while (!t.endOfFile()) { + bag.push(t.nextToken()); } + bag.push(t.nextToken()); // EOF-token + return bag; } diff --git a/packages/postcss-media-query-parser/.gitignore b/packages/postcss-media-query-parser/.gitignore new file mode 100644 index 0000000000..7172b04f10 --- /dev/null +++ b/packages/postcss-media-query-parser/.gitignore @@ -0,0 +1,6 @@ +node_modules +package-lock.json +yarn.lock +*.result.css +*.result.css.map +dist/* diff --git a/packages/postcss-media-query-parser/.nvmrc b/packages/postcss-media-query-parser/.nvmrc new file mode 100644 index 0000000000..f0b10f153f --- /dev/null +++ b/packages/postcss-media-query-parser/.nvmrc @@ -0,0 +1 @@ +v16.13.1 diff --git a/packages/postcss-media-query-parser/CHANGELOG.md b/packages/postcss-media-query-parser/CHANGELOG.md new file mode 100644 index 0000000000..b0ff6b0825 --- /dev/null +++ b/packages/postcss-media-query-parser/CHANGELOG.md @@ -0,0 +1,3 @@ +### 1.0.0 + +- Initial version diff --git a/packages/postcss-media-query-parser/LICENSE.md b/packages/postcss-media-query-parser/LICENSE.md new file mode 100644 index 0000000000..af5411fa24 --- /dev/null +++ b/packages/postcss-media-query-parser/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2022 Romain Menke, Antonio Laguna + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/postcss-media-query-parser/README.md b/packages/postcss-media-query-parser/README.md new file mode 100644 index 0000000000..464090415c --- /dev/null +++ b/packages/postcss-media-query-parser/README.md @@ -0,0 +1 @@ +# TODO diff --git a/packages/postcss-media-query-parser/package.json b/packages/postcss-media-query-parser/package.json new file mode 100644 index 0000000000..37e16180eb --- /dev/null +++ b/packages/postcss-media-query-parser/package.json @@ -0,0 +1,68 @@ +{ + "name": "@csstools/postcss-media-query-parser", + "description": "PostCSS Media Query Parser", + "version": "1.0.0", + "contributors": [ + { + "name": "Antonio Laguna", + "email": "antonio@laguna.es", + "url": "https://antonio.laguna.es" + }, + { + "name": "Romain Menke", + "email": "romainmenke@gmail.com" + } + ], + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "main": "dist/index.cjs", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.cjs", + "default": "./dist/index.mjs" + } + }, + "files": [ + "CHANGELOG.md", + "LICENSE.md", + "README.md", + "dist" + ], + "dependencies": { + "@csstools/css-tokenizer": "^1.0.0" + }, + "scripts": { + "build": "rollup -c ../../rollup/default.js", + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", + "lint": "npm run lint:eslint && npm run lint:package-json", + "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", + "lint:package-json": "node ../../.github/bin/format-package-json.mjs", + "prepublishOnly": "npm run clean && npm run build && npm run test", + "stryker": "stryker run --logLevel error", + "test": "npm run test:exports && node ./test/test.mjs", + "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs" + }, + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/postcss-media-query-parser#readme", + "repository": { + "type": "git", + "url": "https://github.com/csstools/postcss-plugins.git", + "directory": "packages/postcss-media-query-parser" + }, + "bugs": "https://github.com/csstools/postcss-plugins/issues", + "keywords": [ + "css", + "tokenizer" + ], + "volta": { + "extends": "../../package.json" + } +} diff --git a/packages/postcss-media-query-parser/src/interfaces/position.ts b/packages/postcss-media-query-parser/src/interfaces/position.ts new file mode 100644 index 0000000000..d8a4d1a84b --- /dev/null +++ b/packages/postcss-media-query-parser/src/interfaces/position.ts @@ -0,0 +1,16 @@ +export interface Position { + /** + * Source offset in file. It starts from 0. + */ + offset: number + + /** + * Source line in file. In contrast to `offset` it starts from 1. + */ + column: number + + /** + * Source column in file. + */ + line: number +} diff --git a/packages/postcss-media-query-parser/src/interfaces/range.ts b/packages/postcss-media-query-parser/src/interfaces/range.ts new file mode 100644 index 0000000000..cbed653076 --- /dev/null +++ b/packages/postcss-media-query-parser/src/interfaces/range.ts @@ -0,0 +1,13 @@ +import type { Position } from './position'; + +export interface Range { + /** + * Start position, inclusive. + */ + start: Position + + /** + * End position, exclusive. + */ + end: Position +} diff --git a/packages/postcss-media-query-parser/src/interfaces/source.ts b/packages/postcss-media-query-parser/src/interfaces/source.ts new file mode 100644 index 0000000000..d944e8dc1b --- /dev/null +++ b/packages/postcss-media-query-parser/src/interfaces/source.ts @@ -0,0 +1,18 @@ +import type { Position } from './position'; + +export interface Source { + /** + * The file source of the node. + */ + input: { + from: string + } + /** + * The inclusive starting position of the node’s source. + */ + start?: Position + /** + * The inclusive ending position of the node's source. + */ + end?: Position +} diff --git a/packages/postcss-media-query-parser/src/node.ts b/packages/postcss-media-query-parser/src/node.ts new file mode 100644 index 0000000000..f55517dcc1 --- /dev/null +++ b/packages/postcss-media-query-parser/src/node.ts @@ -0,0 +1,170 @@ +/* eslint-disable @typescript-eslint/no-this-alias */ +import { Source } from './interfaces/source'; + +type NodeConstructable = { constructor: new () => T }; + +function cloneNode(obj: NodeConstructable, parent?): T { + const cloned = new obj.constructor(); + + for (const i in obj) { + if (!Object.prototype.hasOwnProperty.call(obj, i)) { + continue; + } + + let value = obj[i]; + const type = typeof value; + + if (i === 'parent' && type === 'object') { + if (parent) { + cloned[i] = parent; + } + } else if (i === 'source') { + cloned[i] = value; + } else if (Array.isArray(value)) { + cloned[i] = value.map(j => cloneNode(j, cloned)); + } else { + if (type === 'object' && value !== null) { + value = cloneNode(value); + } + cloned[i] = value; + } + } + + return cloned; +} + +interface ChildRemover { + removeChild(child: Node | number): this +} + +interface InsertBeforer { + insertBefore( + oldNode: Node | number, + newNode: Node | Node[] + ): this +} + +interface InsertAfterer { + insertAfter( + oldNode: Node | number, + newNode: Node | Node[] + ): this +} + +interface NodeIndexer { + index(node: Node): number +} + +interface NodeContainer { + nodes: Array +} + +interface NodeContainerChild { + parent?: NodeContainer & NodeContainerChild +} + +type ParentNode = ChildRemover & InsertBeforer & InsertAfterer & NodeContainer & NodeIndexer & NodeContainerChild; + +export abstract class Node { + source: Source; + parent?: ParentNode; + + constructor() { + /* noop */ + } + + remove() { + if (this.parent) { + this.parent.removeChild(this); + } + this.parent = undefined; + return this; + } + + toString(): string { + return ''; + } + + clone(overrides = {}) { + const cloned = cloneNode((this as unknown) as NodeConstructable); + for (const name in overrides) { + cloned[name] = overrides[name]; + } + return cloned; + } + + cloneBefore(overrides = {}) { + const cloned = this.clone(overrides); + this.parent.insertBefore(this, cloned); + return cloned; + } + + cloneAfter(overrides = {}) { + const cloned = this.clone(overrides); + this.parent.insertAfter(this, cloned); + return cloned; + } + + replaceWith(...nodes) { + if (this.parent) { + let bookmark = this; + let foundSelf = false; + for (const node of nodes) { + if (node === this) { + foundSelf = true; + } else if (foundSelf) { + this.parent.insertAfter(bookmark, node); + bookmark = node; + } else { + this.parent.insertBefore(bookmark, node); + } + } + + if (!foundSelf) { + this.remove(); + } + } + + return this; + } + + next() { + if (!this.parent) { + return undefined; + } + const index = this.parent.index(this); + return this.parent.nodes[index + 1]; + } + + prev() { + if (!this.parent) { + return undefined; + } + const index = this.parent.index(this); + return this.parent.nodes[index - 1]; + } + + before(add) { + this.parent.insertBefore(this, add); + return this; + } + + after(add) { + this.parent.insertAfter(this, add); + return this; + } + + root(): NodeContainerChild | this { + if (!this.parent) { + return this; + } + + let result: NodeContainerChild = this.parent as NodeContainerChild; + + while (result.parent) { + result = result.parent; + } + + return result; + } +} diff --git a/packages/postcss-media-query-parser/stryker.conf.json b/packages/postcss-media-query-parser/stryker.conf.json new file mode 100644 index 0000000000..015ebbb73c --- /dev/null +++ b/packages/postcss-media-query-parser/stryker.conf.json @@ -0,0 +1,19 @@ +{ + "$schema": "../../node_modules/@stryker-mutator/core/schema/stryker-schema.json", + "mutate": [ + "src/**/*.ts" + ], + "buildCommand": "npm run build", + "testRunner": "command", + "coverageAnalysis": "perTest", + "tempDirName": "../../.stryker-tmp", + "commandRunner": { + "command": "npm run test" + }, + "thresholds": { + "high": 100, + "low": 100, + "break": 100 + }, + "inPlace": true +} diff --git a/packages/postcss-media-query-parser/test/_import.mjs b/packages/postcss-media-query-parser/test/_import.mjs new file mode 100644 index 0000000000..9c969f45d0 --- /dev/null +++ b/packages/postcss-media-query-parser/test/_import.mjs @@ -0,0 +1,8 @@ +import assert from 'assert'; +import { selectorSpecificity, compare } from '@csstools/selector-specificity'; + +assert.equal(selectorSpecificity().a, 0); +assert.equal(selectorSpecificity().b, 0); +assert.equal(selectorSpecificity().c, 0); + +assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/postcss-media-query-parser/test/_require.cjs b/packages/postcss-media-query-parser/test/_require.cjs new file mode 100644 index 0000000000..018f19a809 --- /dev/null +++ b/packages/postcss-media-query-parser/test/_require.cjs @@ -0,0 +1,8 @@ +const assert = require('assert'); +const { selectorSpecificity, compare } = require('@csstools/selector-specificity'); + +assert.equal(selectorSpecificity().a, 0); +assert.equal(selectorSpecificity().b, 0); +assert.equal(selectorSpecificity().c, 0); + +assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/postcss-media-query-parser/test/test.mjs b/packages/postcss-media-query-parser/test/test.mjs new file mode 100644 index 0000000000..e921523b1b --- /dev/null +++ b/packages/postcss-media-query-parser/test/test.mjs @@ -0,0 +1 @@ +console.log('hello'); diff --git a/packages/postcss-media-query-parser/tsconfig.json b/packages/postcss-media-query-parser/tsconfig.json new file mode 100644 index 0000000000..e0d06239cc --- /dev/null +++ b/packages/postcss-media-query-parser/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "dist", + "declarationDir": "." + }, + "include": ["./src/**/*"], + "exclude": ["dist"], +} From 1c2d728f6b14fff14380765e44b5c0adb9687f6e Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 19:04:34 +0200 Subject: [PATCH 35/59] postcss-custom-media --- packages/css-tokenizer/package.json | 2 +- packages/css-tokenizer/src/index.ts | 31 +- .../css-tokenizer/src/interfaces/token.ts | 2 +- packages/css-tokenizer/src/stringify.ts | 10 + packages/css-tokenizer/src/tokenizer.ts | 2 +- .../postcss-media-query-parser/.gitignore | 6 - packages/postcss-media-query-parser/.nvmrc | 1 - .../postcss-media-query-parser/CHANGELOG.md | 3 - .../postcss-media-query-parser/LICENSE.md | 20 - packages/postcss-media-query-parser/README.md | 1 - .../postcss-media-query-parser/package.json | 68 ---- .../src/interfaces/position.ts | 16 - .../src/interfaces/range.ts | 13 - .../src/interfaces/source.ts | 18 - .../postcss-media-query-parser/src/node.ts | 170 --------- .../stryker.conf.json | 19 - .../test/_import.mjs | 8 - .../test/_require.cjs | 8 - .../postcss-media-query-parser/test/test.mjs | 1 - plugins/postcss-custom-media/.tape.cjs | 255 ------------- plugins/postcss-custom-media/.tape.mjs | 26 ++ plugins/postcss-custom-media/package.json | 7 +- .../src/custom-media-from-root.js | 62 --- .../src/custom-media-from-root.ts | 47 +++ .../src/custom-media-name.js | 47 --- .../src/get-custom-media-from-imports.js | 110 ------ plugins/postcss-custom-media/src/index.js | 46 --- plugins/postcss-custom-media/src/index.ts | 86 +++++ .../src/is-processable-custom-media-rule.ts | 36 ++ .../src/media-ast-from-string.js | 134 ------- plugins/postcss-custom-media/src/toposort.ts | 104 +++++ .../src/transform-at-media.ts | 356 ++++++++++++++++++ .../src/transform-atrules.js | 25 -- .../src/transform-media-list.js | 88 ----- .../src/write-custom-media-to-exports.js | 129 ------- plugins/postcss-custom-media/test/basic.css | 130 +------ .../test/basic.expect.css | 117 +----- .../test/basic.preserve.expect.css | 222 ++--------- .../postcss-custom-media/test/circular.css | 1 + .../test/complex.expect.css | 110 +++++- .../test/examples/example.expect.css | 2 +- .../test/examples/example.preserve.expect.css | 9 +- .../test/export-media.css | 8 - .../postcss-custom-media/test/export-media.js | 12 - .../test/export-media.json | 12 - .../test/export-media.mjs | 10 - .../postcss-custom-media/test/import-css.css | 0 .../test/import-media.css | 2 - .../postcss-custom-media/test/import-media.js | 6 - .../test/import-media.json | 6 - plugins/postcss-custom-media/test/import.css | 29 -- .../test/import.empty.expect.css | 29 -- .../test/import.expect.css | 29 -- .../test/import.plugin.expect.css | 29 -- .../{basic.import.expect.css => list.css} | 0 .../postcss-custom-media}/tsconfig.json | 3 +- rollup/presets/package-typescript.js | 2 +- 57 files changed, 876 insertions(+), 1849 deletions(-) create mode 100644 packages/css-tokenizer/src/stringify.ts delete mode 100644 packages/postcss-media-query-parser/.gitignore delete mode 100644 packages/postcss-media-query-parser/.nvmrc delete mode 100644 packages/postcss-media-query-parser/CHANGELOG.md delete mode 100644 packages/postcss-media-query-parser/LICENSE.md delete mode 100644 packages/postcss-media-query-parser/README.md delete mode 100644 packages/postcss-media-query-parser/package.json delete mode 100644 packages/postcss-media-query-parser/src/interfaces/position.ts delete mode 100644 packages/postcss-media-query-parser/src/interfaces/range.ts delete mode 100644 packages/postcss-media-query-parser/src/interfaces/source.ts delete mode 100644 packages/postcss-media-query-parser/src/node.ts delete mode 100644 packages/postcss-media-query-parser/stryker.conf.json delete mode 100644 packages/postcss-media-query-parser/test/_import.mjs delete mode 100644 packages/postcss-media-query-parser/test/_require.cjs delete mode 100644 packages/postcss-media-query-parser/test/test.mjs delete mode 100644 plugins/postcss-custom-media/.tape.cjs create mode 100644 plugins/postcss-custom-media/.tape.mjs delete mode 100644 plugins/postcss-custom-media/src/custom-media-from-root.js create mode 100644 plugins/postcss-custom-media/src/custom-media-from-root.ts delete mode 100644 plugins/postcss-custom-media/src/custom-media-name.js delete mode 100644 plugins/postcss-custom-media/src/get-custom-media-from-imports.js delete mode 100644 plugins/postcss-custom-media/src/index.js create mode 100644 plugins/postcss-custom-media/src/index.ts create mode 100644 plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts delete mode 100644 plugins/postcss-custom-media/src/media-ast-from-string.js create mode 100644 plugins/postcss-custom-media/src/toposort.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media.ts delete mode 100644 plugins/postcss-custom-media/src/transform-atrules.js delete mode 100644 plugins/postcss-custom-media/src/transform-media-list.js delete mode 100644 plugins/postcss-custom-media/src/write-custom-media-to-exports.js create mode 100644 plugins/postcss-custom-media/test/circular.css delete mode 100644 plugins/postcss-custom-media/test/export-media.css delete mode 100644 plugins/postcss-custom-media/test/export-media.js delete mode 100644 plugins/postcss-custom-media/test/export-media.json delete mode 100644 plugins/postcss-custom-media/test/export-media.mjs delete mode 100644 plugins/postcss-custom-media/test/import-css.css delete mode 100644 plugins/postcss-custom-media/test/import-media.css delete mode 100644 plugins/postcss-custom-media/test/import-media.js delete mode 100644 plugins/postcss-custom-media/test/import-media.json delete mode 100644 plugins/postcss-custom-media/test/import.css delete mode 100644 plugins/postcss-custom-media/test/import.empty.expect.css delete mode 100644 plugins/postcss-custom-media/test/import.expect.css delete mode 100644 plugins/postcss-custom-media/test/import.plugin.expect.css rename plugins/postcss-custom-media/test/{basic.import.expect.css => list.css} (100%) rename {packages/postcss-media-query-parser => plugins/postcss-custom-media}/tsconfig.json (74%) diff --git a/packages/css-tokenizer/package.json b/packages/css-tokenizer/package.json index 1c6e2b6868..ec22c6324c 100644 --- a/packages/css-tokenizer/package.json +++ b/packages/css-tokenizer/package.json @@ -19,7 +19,7 @@ "url": "https://opencollective.com/csstools" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "main": "dist/index.cjs", "module": "dist/index.mjs", diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index d3a5dfb33b..e35cf1a08c 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,3 +1,32 @@ +export type { CSSToken } from './interfaces/token'; export { Reader } from './reader'; -export { TokenType } from './interfaces/token'; +export { TokenType, NumberType } from './interfaces/token'; +export { stringify } from './stringify'; export { tokenizer } from './tokenizer'; + +export type { TokenAtKeyword } from './interfaces/token'; +export type { TokenBadString } from './interfaces/token'; +export type { TokenBadURL } from './interfaces/token'; +export type { TokenCDC } from './interfaces/token'; +export type { TokenCDO } from './interfaces/token'; +export type { TokenColon } from './interfaces/token'; +export type { TokenComma } from './interfaces/token'; +export type { TokenComment } from './interfaces/token'; +export type { TokenDelim } from './interfaces/token'; +export type { TokenDimension } from './interfaces/token'; +export type { TokenEOF } from './interfaces/token'; +export type { TokenFunction } from './interfaces/token'; +export type { TokenHash } from './interfaces/token'; +export type { TokenIdent } from './interfaces/token'; +export type { TokenNumber } from './interfaces/token'; +export type { TokenPercentage } from './interfaces/token'; +export type { TokenSemicolon } from './interfaces/token'; +export type { TokenString } from './interfaces/token'; +export type { TokenURL } from './interfaces/token'; +export type { TokenWhitespace } from './interfaces/token'; +export type { TokenOpenParen } from './interfaces/token'; +export type { TokenCloseParen } from './interfaces/token'; +export type { TokenOpenSquare } from './interfaces/token'; +export type { TokenCloseSquare } from './interfaces/token'; +export type { TokenOpenCurly } from './interfaces/token'; +export type { TokenCloseCurly } from './interfaces/token'; diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 5f08c6d70c..184be7ce90 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -123,7 +123,7 @@ export type CSSToken = TokenAtKeyword | export type Token = [ /** The type of token */ T, - /** The token value */ + /** The token representation */ string, /** Start position of representation */ number, diff --git a/packages/css-tokenizer/src/stringify.ts b/packages/css-tokenizer/src/stringify.ts new file mode 100644 index 0000000000..90d190871a --- /dev/null +++ b/packages/css-tokenizer/src/stringify.ts @@ -0,0 +1,10 @@ +import type { CSSToken } from './interfaces/token'; + +export function stringify(...tokens: Array): string { + let buffer = ''; + for (let i = 0; i < tokens.length; i++) { + buffer = buffer + tokens[i][1]; + } + + return buffer; +} diff --git a/packages/css-tokenizer/src/tokenizer.ts b/packages/css-tokenizer/src/tokenizer.ts index 6cf2899f6c..b6db134d2a 100644 --- a/packages/css-tokenizer/src/tokenizer.ts +++ b/packages/css-tokenizer/src/tokenizer.ts @@ -21,7 +21,7 @@ interface Stringer { valueOf(): string } -export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: false, onParseError?: (error: ParserError) => void }) { +export function tokenizer(input: { css: Stringer }, options?: { commentsAreTokens?: boolean, onParseError?: (error: ParserError) => void }) { const css = input.css.valueOf(); const reader = new Reader(css); diff --git a/packages/postcss-media-query-parser/.gitignore b/packages/postcss-media-query-parser/.gitignore deleted file mode 100644 index 7172b04f10..0000000000 --- a/packages/postcss-media-query-parser/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -node_modules -package-lock.json -yarn.lock -*.result.css -*.result.css.map -dist/* diff --git a/packages/postcss-media-query-parser/.nvmrc b/packages/postcss-media-query-parser/.nvmrc deleted file mode 100644 index f0b10f153f..0000000000 --- a/packages/postcss-media-query-parser/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -v16.13.1 diff --git a/packages/postcss-media-query-parser/CHANGELOG.md b/packages/postcss-media-query-parser/CHANGELOG.md deleted file mode 100644 index b0ff6b0825..0000000000 --- a/packages/postcss-media-query-parser/CHANGELOG.md +++ /dev/null @@ -1,3 +0,0 @@ -### 1.0.0 - -- Initial version diff --git a/packages/postcss-media-query-parser/LICENSE.md b/packages/postcss-media-query-parser/LICENSE.md deleted file mode 100644 index af5411fa24..0000000000 --- a/packages/postcss-media-query-parser/LICENSE.md +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright 2022 Romain Menke, Antonio Laguna - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/postcss-media-query-parser/README.md b/packages/postcss-media-query-parser/README.md deleted file mode 100644 index 464090415c..0000000000 --- a/packages/postcss-media-query-parser/README.md +++ /dev/null @@ -1 +0,0 @@ -# TODO diff --git a/packages/postcss-media-query-parser/package.json b/packages/postcss-media-query-parser/package.json deleted file mode 100644 index 37e16180eb..0000000000 --- a/packages/postcss-media-query-parser/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "name": "@csstools/postcss-media-query-parser", - "description": "PostCSS Media Query Parser", - "version": "1.0.0", - "contributors": [ - { - "name": "Antonio Laguna", - "email": "antonio@laguna.es", - "url": "https://antonio.laguna.es" - }, - { - "name": "Romain Menke", - "email": "romainmenke@gmail.com" - } - ], - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "main": "dist/index.cjs", - "module": "dist/index.mjs", - "types": "dist/index.d.ts", - "exports": { - ".": { - "import": "./dist/index.mjs", - "require": "./dist/index.cjs", - "default": "./dist/index.mjs" - } - }, - "files": [ - "CHANGELOG.md", - "LICENSE.md", - "README.md", - "dist" - ], - "dependencies": { - "@csstools/css-tokenizer": "^1.0.0" - }, - "scripts": { - "build": "rollup -c ../../rollup/default.js", - "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", - "lint": "npm run lint:eslint && npm run lint:package-json", - "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", - "lint:package-json": "node ../../.github/bin/format-package-json.mjs", - "prepublishOnly": "npm run clean && npm run build && npm run test", - "stryker": "stryker run --logLevel error", - "test": "npm run test:exports && node ./test/test.mjs", - "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs" - }, - "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/postcss-media-query-parser#readme", - "repository": { - "type": "git", - "url": "https://github.com/csstools/postcss-plugins.git", - "directory": "packages/postcss-media-query-parser" - }, - "bugs": "https://github.com/csstools/postcss-plugins/issues", - "keywords": [ - "css", - "tokenizer" - ], - "volta": { - "extends": "../../package.json" - } -} diff --git a/packages/postcss-media-query-parser/src/interfaces/position.ts b/packages/postcss-media-query-parser/src/interfaces/position.ts deleted file mode 100644 index d8a4d1a84b..0000000000 --- a/packages/postcss-media-query-parser/src/interfaces/position.ts +++ /dev/null @@ -1,16 +0,0 @@ -export interface Position { - /** - * Source offset in file. It starts from 0. - */ - offset: number - - /** - * Source line in file. In contrast to `offset` it starts from 1. - */ - column: number - - /** - * Source column in file. - */ - line: number -} diff --git a/packages/postcss-media-query-parser/src/interfaces/range.ts b/packages/postcss-media-query-parser/src/interfaces/range.ts deleted file mode 100644 index cbed653076..0000000000 --- a/packages/postcss-media-query-parser/src/interfaces/range.ts +++ /dev/null @@ -1,13 +0,0 @@ -import type { Position } from './position'; - -export interface Range { - /** - * Start position, inclusive. - */ - start: Position - - /** - * End position, exclusive. - */ - end: Position -} diff --git a/packages/postcss-media-query-parser/src/interfaces/source.ts b/packages/postcss-media-query-parser/src/interfaces/source.ts deleted file mode 100644 index d944e8dc1b..0000000000 --- a/packages/postcss-media-query-parser/src/interfaces/source.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Position } from './position'; - -export interface Source { - /** - * The file source of the node. - */ - input: { - from: string - } - /** - * The inclusive starting position of the node’s source. - */ - start?: Position - /** - * The inclusive ending position of the node's source. - */ - end?: Position -} diff --git a/packages/postcss-media-query-parser/src/node.ts b/packages/postcss-media-query-parser/src/node.ts deleted file mode 100644 index f55517dcc1..0000000000 --- a/packages/postcss-media-query-parser/src/node.ts +++ /dev/null @@ -1,170 +0,0 @@ -/* eslint-disable @typescript-eslint/no-this-alias */ -import { Source } from './interfaces/source'; - -type NodeConstructable = { constructor: new () => T }; - -function cloneNode(obj: NodeConstructable, parent?): T { - const cloned = new obj.constructor(); - - for (const i in obj) { - if (!Object.prototype.hasOwnProperty.call(obj, i)) { - continue; - } - - let value = obj[i]; - const type = typeof value; - - if (i === 'parent' && type === 'object') { - if (parent) { - cloned[i] = parent; - } - } else if (i === 'source') { - cloned[i] = value; - } else if (Array.isArray(value)) { - cloned[i] = value.map(j => cloneNode(j, cloned)); - } else { - if (type === 'object' && value !== null) { - value = cloneNode(value); - } - cloned[i] = value; - } - } - - return cloned; -} - -interface ChildRemover { - removeChild(child: Node | number): this -} - -interface InsertBeforer { - insertBefore( - oldNode: Node | number, - newNode: Node | Node[] - ): this -} - -interface InsertAfterer { - insertAfter( - oldNode: Node | number, - newNode: Node | Node[] - ): this -} - -interface NodeIndexer { - index(node: Node): number -} - -interface NodeContainer { - nodes: Array -} - -interface NodeContainerChild { - parent?: NodeContainer & NodeContainerChild -} - -type ParentNode = ChildRemover & InsertBeforer & InsertAfterer & NodeContainer & NodeIndexer & NodeContainerChild; - -export abstract class Node { - source: Source; - parent?: ParentNode; - - constructor() { - /* noop */ - } - - remove() { - if (this.parent) { - this.parent.removeChild(this); - } - this.parent = undefined; - return this; - } - - toString(): string { - return ''; - } - - clone(overrides = {}) { - const cloned = cloneNode((this as unknown) as NodeConstructable); - for (const name in overrides) { - cloned[name] = overrides[name]; - } - return cloned; - } - - cloneBefore(overrides = {}) { - const cloned = this.clone(overrides); - this.parent.insertBefore(this, cloned); - return cloned; - } - - cloneAfter(overrides = {}) { - const cloned = this.clone(overrides); - this.parent.insertAfter(this, cloned); - return cloned; - } - - replaceWith(...nodes) { - if (this.parent) { - let bookmark = this; - let foundSelf = false; - for (const node of nodes) { - if (node === this) { - foundSelf = true; - } else if (foundSelf) { - this.parent.insertAfter(bookmark, node); - bookmark = node; - } else { - this.parent.insertBefore(bookmark, node); - } - } - - if (!foundSelf) { - this.remove(); - } - } - - return this; - } - - next() { - if (!this.parent) { - return undefined; - } - const index = this.parent.index(this); - return this.parent.nodes[index + 1]; - } - - prev() { - if (!this.parent) { - return undefined; - } - const index = this.parent.index(this); - return this.parent.nodes[index - 1]; - } - - before(add) { - this.parent.insertBefore(this, add); - return this; - } - - after(add) { - this.parent.insertAfter(this, add); - return this; - } - - root(): NodeContainerChild | this { - if (!this.parent) { - return this; - } - - let result: NodeContainerChild = this.parent as NodeContainerChild; - - while (result.parent) { - result = result.parent; - } - - return result; - } -} diff --git a/packages/postcss-media-query-parser/stryker.conf.json b/packages/postcss-media-query-parser/stryker.conf.json deleted file mode 100644 index 015ebbb73c..0000000000 --- a/packages/postcss-media-query-parser/stryker.conf.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "$schema": "../../node_modules/@stryker-mutator/core/schema/stryker-schema.json", - "mutate": [ - "src/**/*.ts" - ], - "buildCommand": "npm run build", - "testRunner": "command", - "coverageAnalysis": "perTest", - "tempDirName": "../../.stryker-tmp", - "commandRunner": { - "command": "npm run test" - }, - "thresholds": { - "high": 100, - "low": 100, - "break": 100 - }, - "inPlace": true -} diff --git a/packages/postcss-media-query-parser/test/_import.mjs b/packages/postcss-media-query-parser/test/_import.mjs deleted file mode 100644 index 9c969f45d0..0000000000 --- a/packages/postcss-media-query-parser/test/_import.mjs +++ /dev/null @@ -1,8 +0,0 @@ -import assert from 'assert'; -import { selectorSpecificity, compare } from '@csstools/selector-specificity'; - -assert.equal(selectorSpecificity().a, 0); -assert.equal(selectorSpecificity().b, 0); -assert.equal(selectorSpecificity().c, 0); - -assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/postcss-media-query-parser/test/_require.cjs b/packages/postcss-media-query-parser/test/_require.cjs deleted file mode 100644 index 018f19a809..0000000000 --- a/packages/postcss-media-query-parser/test/_require.cjs +++ /dev/null @@ -1,8 +0,0 @@ -const assert = require('assert'); -const { selectorSpecificity, compare } = require('@csstools/selector-specificity'); - -assert.equal(selectorSpecificity().a, 0); -assert.equal(selectorSpecificity().b, 0); -assert.equal(selectorSpecificity().c, 0); - -assert.equal(compare(selectorSpecificity(), selectorSpecificity()), 0); diff --git a/packages/postcss-media-query-parser/test/test.mjs b/packages/postcss-media-query-parser/test/test.mjs deleted file mode 100644 index e921523b1b..0000000000 --- a/packages/postcss-media-query-parser/test/test.mjs +++ /dev/null @@ -1 +0,0 @@ -console.log('hello'); diff --git a/plugins/postcss-custom-media/.tape.cjs b/plugins/postcss-custom-media/.tape.cjs deleted file mode 100644 index 60fff7ba9b..0000000000 --- a/plugins/postcss-custom-media/.tape.cjs +++ /dev/null @@ -1,255 +0,0 @@ -const postcssTape = require('../../packages/postcss-tape/dist/index.cjs'); -const plugin = require('postcss-custom-media'); -const fs = require('fs'); - -postcssTape(plugin)({ - 'basic': { - message: 'supports basic usage' - }, - 'basic:preserve': { - message: 'supports { preserve: true } usage', - options: { - preserve: true - } - }, - 'examples/example': { - message: 'minimal example', - }, - 'examples/example:preserve': { - message: 'minimal example', - options: { - preserve: true - } - }, - 'complex': { - message: 'supports complex usage' - }, - 'import': { - message: 'supports { importFrom: { customMedia: { ... } } } usage', - options: { - importFrom: { - customMedia: { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--not-mq-a': 'not all and (--mq-a)' - } - } - } - }, - 'import:import-fn': { - message: 'supports { importFrom() } usage', - options: { - importFrom() { - return { - customMedia: { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--not-mq-a': 'not all and (--mq-a)' - } - }; - } - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:import-fn-promise': { - message: 'supports { async importFrom() } usage', - options: { - importFrom() { - return new Promise(resolve => { - resolve({ - customMedia: { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--not-mq-a': 'not all and (--mq-a)' - } - }) - }); - } - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:json': { - message: 'supports { importFrom: "test/import-media.json" } usage', - options: { - importFrom: 'test/import-media.json' - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:js': { - message: 'supports { importFrom: "test/import-media.js" } usage', - options: { - importFrom: 'test/import-media.js' - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:css': { - message: 'supports { importFrom: "test/import-media.css" } usage', - options: { - importFrom: 'test/import-media.css' - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:css-from': { - message: 'supports { importFrom: { from: "test/import-media.css" } } usage', - options: { - importFrom: { from: 'test/import-media.css' } - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:css-from-type': { - message: 'supports { importFrom: [ { from: "test/import-media.css", type: "css" } ] } usage', - options: { - importFrom: [{ from: 'test/import-media.css', type: 'css' }] - }, - expect: 'import.expect.css', - result: 'import.result.css' - }, - 'import:empty': { - message: 'supports { importFrom: {} } usage', - options: { - importFrom: {} - } - }, - 'basic:export': { - message: 'supports { exportTo: { customMedia: { ... } } } usage', - options: { - exportTo: (global.__exportMediaObject = global.__exportMediaObject || { - customMedia: null - }) - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - after() { - if (__exportMediaObject.customMedia['--mq-a'] !== '(max-width: 30em), (max-height: 30em)') { - throw new Error('The exportTo function failed'); - } - } - }, - 'basic:export-fn': { - message: 'supports { exportTo() } usage', - options: { - exportTo(customMedia) { - if (customMedia['--mq-a'] !== '(max-width: 30em), (max-height: 30em)') { - throw new Error('The exportTo function failed'); - } - } - }, - expect: 'basic.expect.css', - result: 'basic.result.css' - }, - 'basic:export-fn-promise': { - message: 'supports { async exportTo() } usage', - options: { - exportTo(customMedia) { - return new Promise((resolve, reject) => { - if (customMedia['--mq-a'] !== '(max-width: 30em), (max-height: 30em)') { - reject('The exportTo function failed'); - } else { - resolve(); - } - }); - } - }, - expect: 'basic.expect.css', - result: 'basic.result.css' - }, - 'basic:export-json': { - message: 'supports { exportTo: "test/export-media.json" } usage', - options: { - exportTo: 'test/export-media.json' - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.json', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.json', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - }, - 'basic:export-js': { - message: 'supports { exportTo: "test/export-media.js" } usage', - options: { - exportTo: 'test/export-media.js' - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.js', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.js', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - }, - 'basic:export-mjs': { - message: 'supports { exportTo: "test/export-media.mjs" } usage', - options: { - exportTo: 'test/export-media.mjs' - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.mjs', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.mjs', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - }, - 'basic:export-css': { - message: 'supports { exportTo: "test/export-media.css" } usage', - options: { - exportTo: 'test/export-media.css' - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.css', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.css', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - }, - 'basic:export-css-to': { - message: 'supports { exportTo: { to: "test/export-media.css" } } usage', - options: { - exportTo: { to: 'test/export-media.css' } - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.css', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.css', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - }, - 'basic:export-css-to-type': { - message: 'supports { exportTo: { to: "test/export-media.css", type: "css" } } usage', - options: { - exportTo: { to: 'test/export-media.css', type: 'css' } - }, - expect: 'basic.expect.css', - result: 'basic.result.css', - before() { - global.__exportMediaString = fs.readFileSync('test/export-media.css', 'utf8'); - }, - after() { - if (global.__exportMediaString !== fs.readFileSync('test/export-media.css', 'utf8')) { - throw new Error('The original file did not match the freshly exported copy'); - } - } - } -}); diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs new file mode 100644 index 0000000000..9dfdb64b9e --- /dev/null +++ b/plugins/postcss-custom-media/.tape.mjs @@ -0,0 +1,26 @@ +import postcssTape from '../../packages/postcss-tape/dist/index.cjs'; +import plugin from 'postcss-custom-media'; + +postcssTape(plugin)({ + 'basic': { + message: 'supports basic usage' + }, + 'basic:preserve': { + message: 'supports { preserve: true } usage', + options: { + preserve: true + } + }, + 'examples/example': { + message: 'minimal example', + }, + 'examples/example:preserve': { + message: 'minimal example', + options: { + preserve: true + } + }, + 'complex': { + message: 'supports complex usage' + } +}); diff --git a/plugins/postcss-custom-media/package.json b/plugins/postcss-custom-media/package.json index 1f760d0ddb..fd479b7563 100644 --- a/plugins/postcss-custom-media/package.json +++ b/plugins/postcss-custom-media/package.json @@ -45,7 +45,8 @@ "dist" ], "dependencies": { - "postcss-value-parser": "^4.2.0" + "postcss-value-parser": "^4.2.0", + "@csstools/css-tokenizer": "^1.0.0" }, "peerDependencies": { "postcss": "^8.4" @@ -58,9 +59,9 @@ "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", "lint:package-json": "node ../../.github/bin/format-package-json.mjs", "prepublishOnly": "npm run clean && npm run build && npm run test", - "test": "node .tape.cjs && npm run test:exports", + "test": "node .tape.mjs && npm run test:exports", "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs", - "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.cjs" + "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs" }, "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme", "repository": { diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.js b/plugins/postcss-custom-media/src/custom-media-from-root.js deleted file mode 100644 index d2ddbef6a3..0000000000 --- a/plugins/postcss-custom-media/src/custom-media-from-root.js +++ /dev/null @@ -1,62 +0,0 @@ -import mediaASTFromString from './media-ast-from-string'; -import valueParser from 'postcss-value-parser'; - -// return custom selectors from the css root, conditionally removing them -export default (root, opts) => { - // initialize custom selectors - const customMedias = {}; - - // for each custom selector atrule that is a child of the css root - root.nodes.slice().forEach(node => { - if (node.type !== 'atrule') { - return; - } - - if (node.name.toLowerCase() !== 'custom-media') { - return; - } - - let paramsAst = null; - try { - paramsAst = valueParser(node.params); - } catch (_) { - return; - } - - if (!paramsAst || !paramsAst.nodes || !paramsAst.nodes.length) { - return; - } - - let nameNodeIndex = -1; - for (let i = 0; i < paramsAst.nodes.length; i++) { - const node = paramsAst.nodes[i]; - if (node.type === 'space' || node.type === 'comment') { - continue; - } - - if (node.type === 'word' && node.value.startsWith('--')) { - nameNodeIndex = i; - break; - } - - return; /* invalid starting node */ - } - - if (nameNodeIndex < 0) { - return; - } - - const name = paramsAst.nodes[nameNodeIndex].value.trim(); - const selectors = valueParser.stringify(paramsAst.nodes.slice(nameNodeIndex + 1)).trim(); - - // write the parsed selectors to the custom selector - customMedias[name] = mediaASTFromString(selectors); - - // conditionally remove the custom selector atrule - if (!Object(opts).preserve) { - node.remove(); - } - }); - - return customMedias; -}; diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts new file mode 100644 index 0000000000..54f080e2d3 --- /dev/null +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -0,0 +1,47 @@ +import type { ChildNode, Container, Document, Root as PostCSSRoot } from 'postcss'; +import { isProcessableCustomMediaRule } from './is-processable-custom-media-rule'; +import { parseCustomMedia } from './transform-at-media'; + +// return custom media from the css root, conditionally removing them +export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boolean }): Map { + // initialize custom media + const customMedia: Map = new Map(); + + root.walkAtRules((atRule) => { + if (!isProcessableCustomMediaRule(atRule)) { + return; + } + + const parsed = parseCustomMedia(atRule.params); + if (!parsed) { + return; + } + + customMedia.set(parsed.name, { + truthy: parsed.truthy, + falsy: parsed.falsy, + }); + + if (!opts.preserve) { + atRule.remove(); + removeEmptyAncestorBlocks(atRule); + } + }); + + return customMedia; +} + +function removeEmptyAncestorBlocks(block: Container) { + let currentNode: Document | Container = block; + + while (currentNode) { + if (currentNode.nodes && currentNode.nodes.length > 0) { + return; + } + + const parent = currentNode.parent; + currentNode.remove(); + currentNode = parent; + } +} + diff --git a/plugins/postcss-custom-media/src/custom-media-name.js b/plugins/postcss-custom-media/src/custom-media-name.js deleted file mode 100644 index f9a7aaa5fb..0000000000 --- a/plugins/postcss-custom-media/src/custom-media-name.js +++ /dev/null @@ -1,47 +0,0 @@ -import valueParser from 'postcss-value-parser'; - -export function getCustomMediaNameReference(source) { - if (!source) { - return; - } - - let paramsAst = null; - try { - paramsAst = valueParser(source); - } catch (_) { - return; - } - - if (!paramsAst || !paramsAst.nodes || !paramsAst.nodes.length) { - return; - } - - if (paramsAst.nodes.length !== 1) { - return; - } - - while (paramsAst.nodes[0].type === 'function' && paramsAst.nodes[0].value === '') { - paramsAst = paramsAst.nodes[0]; - } - - let nameNodeIndex = -1; - for (let i = 0; i < paramsAst.nodes.length; i++) { - const node = paramsAst.nodes[i]; - if (node.type === 'space' || node.type === 'comment') { - continue; - } - - if (node.type === 'word' && node.value.startsWith('--')) { - nameNodeIndex = i; - break; - } - - return; /* invalid starting node */ - } - - if (nameNodeIndex < 0) { - return; - } - - return paramsAst.nodes[nameNodeIndex].value.trim(); -} diff --git a/plugins/postcss-custom-media/src/get-custom-media-from-imports.js b/plugins/postcss-custom-media/src/get-custom-media-from-imports.js deleted file mode 100644 index 944795ac5a..0000000000 --- a/plugins/postcss-custom-media/src/get-custom-media-from-imports.js +++ /dev/null @@ -1,110 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { parse } from 'postcss'; -import getMediaAstFromMediaString from './media-ast-from-string'; -import getCustomMedia from './custom-media-from-root'; - -/* Get Custom Media from CSS File -/* ========================================================================== */ - -async function getCustomMediaFromCSSFile(from) { - const css = await readFile(from); - const root = parse(css, { from }); - - return getCustomMedia(root, { preserve: true }); -} - -/* Get Custom Media from Object -/* ========================================================================== */ - -function getCustomMediaFromObject(object) { - const customMedia = Object.assign( - {}, - Object(object).customMedia, - Object(object)['custom-media'], - ); - - for (const key in customMedia) { - customMedia[key] = getMediaAstFromMediaString(customMedia[key]); - } - - return customMedia; -} - -/* Get Custom Media from JSON file -/* ========================================================================== */ - -async function getCustomMediaFromJSONFile(from) { - const object = await readJSON(from); - - return getCustomMediaFromObject(object); -} - -/* Get Custom Media from JS file -/* ========================================================================== */ - -async function getCustomMediaFromJSFile(from) { - const object = await import(from); - - return getCustomMediaFromObject(object); -} - -/* Get Custom Media from Sources -/* ========================================================================== */ - -export default function getCustomMediaFromSources(sources) { - return sources.map(source => { - if (source instanceof Promise) { - return source; - } else if (source instanceof Function) { - return source(); - } - - // read the source as an object - const opts = source === Object(source) ? source : { from: String(source) }; - - // skip objects with custom media - if (Object(opts).customMedia || Object(opts)['custom-media']) { - return opts; - } - - // source pathname - const from = path.resolve(String(opts.from || '')); - - // type of file being read from - const type = (opts.type || path.extname(from).slice(1)).toLowerCase(); - - return { type, from }; - }).reduce(async (customMedia, source) => { - const { type, from } = await source; - - if (type === 'css' || type === 'pcss') { - return Object.assign(await customMedia, await getCustomMediaFromCSSFile(from)); - } - - if (type === 'js') { - return Object.assign(await customMedia, await getCustomMediaFromJSFile(from)); - } - - if (type === 'json') { - return Object.assign(await customMedia, await getCustomMediaFromJSONFile(from)); - } - - return Object.assign(await customMedia, getCustomMediaFromObject(await source)); - }, {}); -} - -/* Helper utilities -/* ========================================================================== */ - -const readFile = from => new Promise((resolve, reject) => { - fs.readFile(from, 'utf8', (error, result) => { - if (error) { - reject(error); - } else { - resolve(result); - } - }); -}); - -const readJSON = async from => JSON.parse(await readFile(from)); diff --git a/plugins/postcss-custom-media/src/index.js b/plugins/postcss-custom-media/src/index.js deleted file mode 100644 index 17d08a2edd..0000000000 --- a/plugins/postcss-custom-media/src/index.js +++ /dev/null @@ -1,46 +0,0 @@ -import getCustomMediaFromRoot from './custom-media-from-root'; -import getCustomMediaFromImports from './get-custom-media-from-imports'; -import transformAtrules from './transform-atrules'; -import writeCustomMediaToExports from './write-custom-media-to-exports'; - -const creator = opts => { - // whether to preserve custom media and at-rules using them - const preserve = 'preserve' in Object(opts) ? Boolean(opts.preserve) : false; - - // sources to import custom media from - const importFrom = [].concat(Object(opts).importFrom || []); - - - // destinations to export custom media to - const exportTo = [].concat(Object(opts).exportTo || []); - - // promise any custom media are imported - const customMediaImportsPromise = getCustomMediaFromImports(importFrom); - - const customMediaHelperKey = Symbol('customMediaHelper'); - - return { - postcssPlugin: 'postcss-custom-media', - Once: async (root, helpers) => { - - // combine rules from root and from imports - helpers[customMediaHelperKey] = Object.assign( - await customMediaImportsPromise, - getCustomMediaFromRoot(root, { preserve }), - ); - - await writeCustomMediaToExports(helpers[customMediaHelperKey], exportTo); - }, - AtRule: (atrule, helpers) => { - if (atrule.name !== 'media') { - return; - } - - transformAtrules(atrule, helpers[customMediaHelperKey], { preserve }); - }, - }; -}; - -creator.postcss = true; - -export default creator; diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts new file mode 100644 index 0000000000..498095874b --- /dev/null +++ b/plugins/postcss-custom-media/src/index.ts @@ -0,0 +1,86 @@ +import type { PluginCreator } from 'postcss'; +import getCustomMedia from './custom-media-from-root'; +import { transformAtMediaTokens } from './transform-at-media'; + +export interface PluginOptions { + /** Determines whether Custom Selectors and selectors using custom selectors should be preserved in their original form. */ + preserve?: boolean +} + +const creator: PluginCreator = (opts?: PluginOptions) => { + // whether to preserve custom selectors and rules using them + const preserve = Boolean(Object(opts).preserve); + + if ('importFrom' in Object(opts)) { + throw new Error('[postcss-custom-media] "importFrom" is no longer supported'); + } + + if ('exportTo' in Object(opts)) { + throw new Error('[postcss-custom-media] "exportTo" is no longer supported'); + } + + return { + postcssPlugin: 'postcss-custom-media', + prepare() { + let customMedia = new Map(); + + return { + Once: (root) => { + customMedia = getCustomMedia(root, { preserve: preserve }); + }, + AtRule: (atRule) => { + if (!atRule.params) { + return; + } + + if (!atRule.params.includes('--')) { + return; + } + + const transformedParams = transformAtMediaTokens(atRule.params, customMedia); + if (transformedParams.length === 0) { + return; + } + + if (transformedParams.length === 1) { + if (atRule.params === transformedParams[0].replaceWith) { + return; + } + + atRule.cloneBefore({ params: transformedParams[0].replaceWith }); + + if (!preserve) { + atRule.remove(); + return; + } + } + + transformedParams.forEach((transformed) => { + const clone = atRule.clone({ params: transformed.replaceWith }); + const encapsulate = atRule.clone({ params: transformed.encapsulateWith, nodes: [] }); + if (encapsulate.nodes && encapsulate.nodes.length) { + encapsulate.each((child) => { + child.remove(); + }); + } + + clone.parent = null; + encapsulate.parent = null; + + encapsulate.append(clone); + atRule.before(encapsulate); + }); + + if (!preserve) { + atRule.remove(); + return; + } + }, + }; + }, + }; +}; + +creator.postcss = true; + +export default creator; diff --git a/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts new file mode 100644 index 0000000000..22ced2f6c1 --- /dev/null +++ b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts @@ -0,0 +1,36 @@ +import type { AtRule, ChildNode, Container, Document } from 'postcss'; + +const allowedParentAtRules = new Set(['scope', 'container']); + +export function isProcessableCustomMediaRule(atRule: AtRule): boolean { + if (atRule.type !== 'atrule') { + return false; + } + + if (atRule.name.toLowerCase() !== 'custom-media') { + return false; + } + + if (!atRule.params || !atRule.params.includes('--')) { + return false; + } + + if (atRule.nodes && atRule.nodes.length > 0) { + return false; + } + + let parent: Container | Document = atRule.parent; + while (parent) { + if (parent.type === 'rule') { + return false; + } + + if (parent.type === 'atrule' && !allowedParentAtRules.has((parent as AtRule).name.toLowerCase())) { + return false; + } + + parent = parent.parent; + } + + return true; +} diff --git a/plugins/postcss-custom-media/src/media-ast-from-string.js b/plugins/postcss-custom-media/src/media-ast-from-string.js deleted file mode 100644 index 3821a319ce..0000000000 --- a/plugins/postcss-custom-media/src/media-ast-from-string.js +++ /dev/null @@ -1,134 +0,0 @@ -function parse(string, splitByAnd) { - const array = []; - let buffer = ''; - let split = false; - let func = 0; - let i = -1; - - while (++i < string.length) { - const char = string[i]; - - if (char === '(') { - func += 1; - } else if (char === ')') { - if (func > 0) { - func -= 1; - } - } else if (func === 0) { - if (splitByAnd && andRegExp.test(buffer + char)) { - split = true; - } else if (!splitByAnd && char === ',') { - split = true; - } - } - - if (split) { - array.push(splitByAnd ? new MediaExpression(buffer + char) : new MediaQuery(buffer)); - - buffer = ''; - split = false; - } else { - buffer += char; - } - } - - if (buffer !== '') { - array.push(splitByAnd ? new MediaExpression(buffer) : new MediaQuery(buffer)); - } - - return array; -} - -class MediaQueryList { - constructor(string) { - this.nodes = parse(string); - } - - invert() { - this.nodes.forEach(node => { - node.invert(); - }); - - return this; - } - - clone() { - return new MediaQueryList(String(this)); - } - - toString() { - return this.nodes.join(','); - } -} - -class MediaQuery { - constructor(string) { - const [, before, media, after ] = string.match(spaceWrapRegExp); - const [, modifier = '', afterModifier = ' ', type = '', beforeAnd = '', and = '', beforeExpression = '', expression1 = '', expression2 = ''] = media.match(mediaRegExp) || []; - const raws = { before, after, afterModifier, originalModifier: modifier || '', beforeAnd, and, beforeExpression }; - const nodes = parse(expression1 || expression2, true); - - Object.assign(this, { - modifier, - type, - raws, - nodes, - }); - } - - clone(overrides) { - const instance = new MediaQuery(String(this)); - - Object.assign(instance, overrides); - - return instance; - } - - invert() { - this.modifier = this.modifier ? '' : this.raws.originalModifier; - - return this; - } - - toString() { - const { raws } = this; - - return `${raws.before}${this.modifier}${this.modifier ? `${raws.afterModifier}` : ''}${this.type}${raws.beforeAnd}${raws.and}${raws.beforeExpression}${this.nodes.join('')}${this.raws.after}`; - } -} - -class MediaExpression { - constructor(string) { - const [, value, after = '', and = '', afterAnd = '' ] = string.match(andRegExp) || [null, string]; - const raws = { after, and, afterAnd }; - - Object.assign(this, { value, raws }); - } - - clone(overrides) { - const instance = new MediaExpression(String(this)); - - Object.assign(instance, overrides); - - return instance; - } - - toString() { - const { raws } = this; - - return `${this.value}${raws.after}${raws.and}${raws.afterAnd}`; - } -} - -const modifierRE = '(not|only)'; -const typeRE = '(all|print|screen|speech)'; -const noExpressionRE = '([\\W\\w]*)'; -const expressionRE = '([\\W\\w]+)'; -const noSpaceRE = '(\\s*)'; -const spaceRE = '(\\s+)'; -const andRE = '(?:(\\s+)(and))'; -const andRegExp = new RegExp(`^${expressionRE}(?:${andRE}${spaceRE})$`, 'i'); -const spaceWrapRegExp = new RegExp(`^${noSpaceRE}${noExpressionRE}${noSpaceRE}$`); -const mediaRegExp = new RegExp(`^(?:${modifierRE}${spaceRE})?(?:${typeRE}(?:${andRE}${spaceRE}${expressionRE})?|${expressionRE})$`, 'i'); - -export default string => new MediaQueryList(string); diff --git a/plugins/postcss-custom-media/src/toposort.ts b/plugins/postcss-custom-media/src/toposort.ts new file mode 100644 index 0000000000..73b773d408 --- /dev/null +++ b/plugins/postcss-custom-media/src/toposort.ts @@ -0,0 +1,104 @@ +// Toposort - Topological sorting for node.js +// Copyright (c) 2012 by Marcel Klehr +// MIT LICENSE +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: + +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. + +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +export function toposort(nodes: Array, edges: Array>): Array { + let cursor = nodes.length; + const sorted: Array = new Array(cursor); + const visited: Record = {}; + let i = cursor; + // Better data structures make algorithm much faster. + const outgoingEdges = makeOutgoingEdges(edges); + const nodesHash = makeNodesHash(nodes); + + // check for unknown nodes + edges.forEach(function (edge) { + if (!nodesHash.has(edge[0]) || !nodesHash.has(edge[1])) { + throw new Error('Unknown token. Make sure to provide all tokens used in aliases.'); + } + }); + + while (i--) { + if (!visited[i]) { + visit(nodes[i], i, new Set()); + } + } + + return sorted; + + function visit(node: string, j: number, predecessors: Set) { + if (predecessors.has(node)) { + let nodeRep; + try { + nodeRep = ', token was: ' + JSON.stringify(node); + } catch (e) { + nodeRep = ''; + } + throw new Error('Cyclic dependency' + nodeRep); + } + + if (!nodesHash.has(node)) { + throw new Error('Found unknown token. Make sure to provided all involved tokens. Unknown token: ' + JSON.stringify(node)); + } + + if (visited[j]) { + return; + } + visited[j] = true; + + let outgoing = outgoingEdges.get(node) || new Set(); + outgoing = Array.from(outgoing); + + // eslint-disable-next-line no-cond-assign + if (j = outgoing.length) { + predecessors.add(node); + do { + const child = outgoing[--j]; + visit(child, nodesHash.get(child), predecessors); + } while (j); + predecessors.delete(node); + } + + sorted[--cursor] = node; + } +} + +function makeOutgoingEdges(arr: Array>) { + const edges = new Map(); + for (let i = 0, len = arr.length; i < len; i++) { + const edge = arr[i]; + if (!edges.has(edge[0])) { + edges.set(edge[0], new Set()); + } + if (!edges.has(edge[1])) { + edges.set(edge[1], new Set()); + } + edges.get(edge[0]).add(edge[1]); + } + return edges; +} + +function makeNodesHash(arr: Array) { + const res = new Map(); + for (let i = 0, len = arr.length; i < len; i++) { + res.set(arr[i], i); + } + return res; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts new file mode 100644 index 0000000000..0ca1aa032f --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -0,0 +1,356 @@ +import { tokenizer, stringify, TokenType, NumberType, TokenIdent } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; + +export function atMediaParamsTokens(params: string): Array { + const t = tokenizer({ + css: params, + }, {commentsAreTokens: true}); + + const tokens: Array = []; + while (!t.endOfFile()) { + tokens.push(t.nextToken()); + } + + return tokens; +} + +const alwaysTrue: Array = [ + [TokenType.Ident, 'max-color', 0, 0, { value: 'max-color' }], + [TokenType.Colon, ':', 0, 0, undefined], + [TokenType.Number, '9999943', 0, 0, { value: 9999943, type: NumberType.Integer }], +]; + +const neverTrue: Array = [ + [TokenType.Ident, 'color', 0, 0, { value: 'color' }], + [TokenType.Colon, ':', 0, 0, undefined], + [TokenType.Number, '9999943', 0, 0, { value: 9999943, type: NumberType.Integer }], +]; + +export function transformAtMediaTokens(params: string, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { + const tokens = atMediaParamsTokens(params); + + const tokenTypes: Set = new Set(); + let identCounter = 0; + for (let i = 0; i < tokens.length; i++) { + tokenTypes.add(tokens[i][0]); + if (tokens[i][0] === TokenType.Ident) { + identCounter++; + } + } + + tokenTypes.delete(TokenType.Comment); + tokenTypes.delete(TokenType.Whitespace); + tokenTypes.delete(TokenType.OpenParen); + tokenTypes.delete(TokenType.CloseParen); + tokenTypes.delete(TokenType.Ident); + + // replacement slot is a simple @media query : + // - @media (--custom-mq) { ... } + // - @media ((--custom-mq)) { ... } + if (tokenTypes.size == 0 && identCounter === 1) { + let parenDepth = 0; + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.OpenParen) { + parenDepth++; + continue; + } + if (tokens[i][0] === TokenType.CloseParen) { + parenDepth--; + continue; + } + + if (tokens[i][0] === TokenType.Ident && parenDepth > 0) { + const identToken = tokens[i] as TokenIdent; + + if (replacements.has(identToken[4].value)) { + return [{ + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + replaceWith: replacements.get(identToken[4].value)!.truthy, + }]; + } else { + return []; + } + } + } + } + + let functionDepth = 0; + + for (let i = 0; i < tokens.length; i++) { + switch (tokens[i][0]) { + case TokenType.Function: + functionDepth++; + while (functionDepth !== 0) { + i++; + switch (tokens[i][0]) { + case TokenType.OpenParen: + case TokenType.Function: + functionDepth++; + break; + case TokenType.CloseParen: + functionDepth--; + break; + case TokenType.EOF: + throw new Error('unexpected EOF'); + default: + break; + } + } + break; + + case TokenType.Ident: { + const identToken = tokens[i] as TokenIdent; + + if (!replacements.has(identToken[4].value)) { + break; + } + + let isValid = true; + for (let p = i-1; p>= 0; p--) { + if (tokens[p][0] === TokenType.Comment || tokens[p][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[p][0] === TokenType.OpenParen) { + break; + } + + isValid = false; + break; + } + + for (let n = i + 1; n < tokens.length; n++) { + if (tokens[n][0] === TokenType.Comment || tokens[n][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[n][0] === TokenType.CloseParen) { + break; + } + + isValid = false; + break; + } + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const replacement = replacements.get(identToken[4].value)!; + + if (isValid) { + const replaceWithTrue = tokens.slice(); + replaceWithTrue.splice(i, 1, ...alwaysTrue); + + const replaceWithFalse = tokens.slice(); + replaceWithFalse.splice(i, 1, ...neverTrue); + + return [ + { + replaceWith: stringify(...replaceWithTrue), + encapsulateWith: replacement.truthy, + }, + { + replaceWith: stringify(...replaceWithFalse), + encapsulateWith: replacement.falsy, + }, + ]; + } + + break; + } + default: + break; + } + } + + return []; +} + +export function parseCustomMedia(params: string): {name: string, truthy: string, falsy: string}|false { + const tokens = atMediaParamsTokens(params); + + let name = ''; + let remainder = tokens; + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.Comment) { + continue; + } + if (tokens[i][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[i][0] === TokenType.Ident) { + const identToken = tokens[i] as TokenIdent; + if (identToken[4].value.startsWith('--')) { + name = identToken[4].value; + remainder = tokens.slice(i + 1); + break; + } + } + + return false; + } + + const list = splitMediaQueryList(remainder); + const truthyParts = []; + const falsyParts = []; + + MEDIA_QUERY_LIST_LOOP: + for (let i = 0; i < list.length; i++) { + const mediaQuery = list[i]; + + const truthy = stringify(...handleTrueAndFalseTokens(mediaQuery)); + + for (let j = 0; j < mediaQuery.length; j++) { + if (mediaQuery[j][0] === TokenType.Comment) { + continue; + } + if (mediaQuery[j][0] === TokenType.Whitespace) { + continue; + } + + if (mediaQuery[j][0] === TokenType.Ident) { + const identToken = mediaQuery[j] as TokenIdent; + if (identToken[4].value.toLowerCase() === 'not') { + truthyParts.push(truthy); + + const falsy = mediaQuery.slice(); + falsy.splice(j, 1); + + falsyParts.push(stringify(...falsy)); + continue MEDIA_QUERY_LIST_LOOP; + } + + if (identToken[4].value.toLowerCase() === 'only') { + mediaQuery[j][1] = 'not'; + mediaQuery[j][4].value = 'not'; + + truthyParts.push(truthy); + falsyParts.push(stringify(...mediaQuery)); + continue MEDIA_QUERY_LIST_LOOP; + } + } + + const falsy = mediaQuery.slice(); + falsy.splice(j, 0, + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + ); + + truthyParts.push(truthy); + falsyParts.push(stringify(...falsy)); + continue MEDIA_QUERY_LIST_LOOP; + } + + truthyParts.push(truthy); + falsyParts.push('not all'); + continue MEDIA_QUERY_LIST_LOOP; + } + + return { + name: name, + truthy: truthyParts.join(','), + falsy: falsyParts.join(','), + }; +} + +export function handleTrueAndFalseTokens(tokens: Array): Array { + let booleanToken; + + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.Comment) { + continue; + } + if (tokens[i][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[i][0] !== TokenType.Ident) { + return tokens; + } + + if (booleanToken) { + return tokens; + } + + const identToken = tokens[i] as TokenIdent; + if (identToken[4].value.toLowerCase() === 'true') { + booleanToken = 'true'; + continue; + } + + if (identToken[4].value.toLowerCase() === 'false') { + booleanToken = 'false'; + continue; + } + + return tokens; + } + + if (!booleanToken) { + return tokens; + } + + if (booleanToken === 'true') { + return [ + [TokenType.OpenParen, '(', 0, 0, undefined], + ...alwaysTrue, + [TokenType.CloseParen, ')', 0, 0, undefined], + ]; + } + + return [ + [TokenType.OpenParen, '(', 0, 0, undefined], + ...neverTrue, + [TokenType.CloseParen, ')', 0, 0, undefined], + ]; +} + +export function splitMediaQueryList(tokens: Array): Array> { + let parenDepth = 0; + let squareDepth = 0; + let curlyDepth = 0; + let depth = 0; + + const listItems = []; + let lastSliceIndex = 0; + + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.OpenParen || tokens[i][0] === TokenType.Function) { + depth++; + parenDepth++; + } + if (tokens[i][0] === TokenType.CloseParen && parenDepth > 0) { + depth--; + parenDepth--; + } + + if (tokens[i][0] === TokenType.OpenCurly) { + depth++; + curlyDepth++; + } + if (tokens[i][0] === TokenType.CloseParen && curlyDepth > 0) { + depth--; + curlyDepth--; + } + + if (tokens[i][0] === TokenType.OpenSquare) { + depth++; + squareDepth++; + } + if (tokens[i][0] === TokenType.CloseSquare && squareDepth > 0) { + depth--; + squareDepth--; + } + + if (tokens[i][0] === TokenType.Comma && depth === 0) { + listItems.push(tokens.slice(lastSliceIndex, i)); + lastSliceIndex = i + 1; + } + } + + if (lastSliceIndex === 0) { + return [tokens]; + } + + listItems.push(tokens.slice(lastSliceIndex)); + return listItems; +} diff --git a/plugins/postcss-custom-media/src/transform-atrules.js b/plugins/postcss-custom-media/src/transform-atrules.js deleted file mode 100644 index 130e0bbb9f..0000000000 --- a/plugins/postcss-custom-media/src/transform-atrules.js +++ /dev/null @@ -1,25 +0,0 @@ -import transformMediaList from './transform-media-list'; -import mediaASTFromString from './media-ast-from-string'; - -// transform custom pseudo selectors with custom selectors -export default (atrule, customMedia, { preserve }) => { - if (atrule.params.indexOf('--') > -1) { - const mediaAST = mediaASTFromString(atrule.params); - const params = String(transformMediaList(mediaAST, customMedia)); - if (params === null) { - return; - } - - if (params === atrule.params) { - return; - } - - atrule.cloneBefore({ - params: params, - }); - - if (!preserve) { - atrule.remove(); - } - } -}; diff --git a/plugins/postcss-custom-media/src/transform-media-list.js b/plugins/postcss-custom-media/src/transform-media-list.js deleted file mode 100644 index 2eed88fdb0..0000000000 --- a/plugins/postcss-custom-media/src/transform-media-list.js +++ /dev/null @@ -1,88 +0,0 @@ -import { getCustomMediaNameReference } from './custom-media-name'; - -// return transformed medias, replacing custom pseudo medias with custom medias -export default function transformMediaList(mediaList, customMedias) { - let index = mediaList.nodes.length - 1; - - while (index >= 0) { - const transformedMedias = transformMedia(mediaList.nodes[index], customMedias); - - if (transformedMedias.length) { - mediaList.nodes.splice(index, 1, ...transformedMedias); - } - - --index; - } - - return mediaList; -} - -// return custom pseudo medias replaced with custom medias -function transformMedia(media, customMedias) { - const transpiledMedias = []; - - for (const index in media.nodes) { - const { value, nodes } = media.nodes[index]; - const key = getCustomMediaNameReference(value); - if (key && (key in customMedias)) { - for (const replacementMedia of customMedias[key].nodes) { - // use the first available modifier unless they cancel each other out - const modifier = media.modifier !== replacementMedia.modifier - ? media.modifier || replacementMedia.modifier - : ''; - const mediaClone = media.clone({ - modifier, - // conditionally use the raws from the first available modifier - raws: !modifier || media.modifier - ? { ...media.raws } - : { ...replacementMedia.raws }, - type: media.type || replacementMedia.type, - }); - - // conditionally include more replacement raws when the type is present - if (mediaClone.type === replacementMedia.type) { - Object.assign(mediaClone.raws, { - and: replacementMedia.raws.and, - beforeAnd: replacementMedia.raws.beforeAnd, - beforeExpression: replacementMedia.raws.beforeExpression, - }); - } - - mediaClone.nodes.splice(index, 1, ...replacementMedia.clone().nodes.map(node => { - // use raws and spacing from the current usage - if (media.nodes[index].raws.and) { - node.raws = { ...media.nodes[index].raws }; - } - - node.spaces = { ...media.nodes[index].spaces }; - - return node; - })); - - // remove the currently transformed key to prevent recursion - const nextCustomMedia = getCustomMediasWithoutKey(customMedias, key); - const retranspiledMedias = transformMedia(mediaClone, nextCustomMedia); - - if (retranspiledMedias.length) { - transpiledMedias.push(...retranspiledMedias); - } else { - transpiledMedias.push(mediaClone); - } - } - - return transpiledMedias; - } else if (nodes && nodes.length) { - transformMediaList(media.nodes[index], customMedias); - } - } - - return transpiledMedias; -} - -const getCustomMediasWithoutKey = (customMedias, key) => { - const nextCustomMedias = Object.assign({}, customMedias); - - delete nextCustomMedias[key]; - - return nextCustomMedias; -}; diff --git a/plugins/postcss-custom-media/src/write-custom-media-to-exports.js b/plugins/postcss-custom-media/src/write-custom-media-to-exports.js deleted file mode 100644 index 52754f3f53..0000000000 --- a/plugins/postcss-custom-media/src/write-custom-media-to-exports.js +++ /dev/null @@ -1,129 +0,0 @@ -import fs from 'fs'; -import path from 'path'; - -/* Write Custom Media from CSS File -/* ========================================================================== */ - -async function writeCustomMediaToCssFile(to, customMedia) { - const cssContent = Object.keys(customMedia).reduce((cssLines, name) => { - cssLines.push(`@custom-media ${name} ${customMedia[name]};`); - - return cssLines; - }, []).join('\n'); - const css = `${cssContent}\n`; - - await writeFile(to, css); -} - -/* Write Custom Media from JSON file -/* ========================================================================== */ - -async function writeCustomMediaToJsonFile(to, customMedia) { - const jsonContent = JSON.stringify({ - 'custom-media': customMedia, - }, null, '\t'); - const json = `${jsonContent}\n`; - - await writeFile(to, json); -} - -/* Write Custom Media from Common JS file -/* ========================================================================== */ - -async function writeCustomMediaToCjsFile(to, customMedia) { - const jsContents = Object.keys(customMedia).reduce((jsLines, name) => { - jsLines.push(`\t\t'${escapeForJS(name)}': '${escapeForJS(customMedia[name])}'`); - - return jsLines; - }, []).join(',\n'); - const js = `module.exports = {\n\tcustomMedia: {\n${jsContents}\n\t}\n};\n`; - - await writeFile(to, js); -} - -/* Write Custom Media from Module JS file -/* ========================================================================== */ - -async function writeCustomMediaToMjsFile(to, customMedia) { - const mjsContents = Object.keys(customMedia).reduce((mjsLines, name) => { - mjsLines.push(`\t'${escapeForJS(name)}': '${escapeForJS(customMedia[name])}'`); - - return mjsLines; - }, []).join(',\n'); - const mjs = `export const customMedia = {\n${mjsContents}\n};\n`; - - await writeFile(to, mjs); -} - -/* Write Custom Media to Exports -/* ========================================================================== */ - -export default function writeCustomMediaToExports(customMedia, destinations) { - return Promise.all(destinations.map(async destination => { - if (destination instanceof Function) { - await destination(defaultCustomMediaToJSON(customMedia)); - } else { - // read the destination as an object - const opts = destination === Object(destination) ? destination : { to: String(destination) }; - - // transformer for custom media into a JSON-compatible object - const toJSON = opts.toJSON || defaultCustomMediaToJSON; - - if ('customMedia' in opts) { - // write directly to an object as customMedia - opts.customMedia = toJSON(customMedia); - } else if ('custom-media' in opts) { - // write directly to an object as custom-media - opts['custom-media'] = toJSON(customMedia); - } else { - // destination pathname - const to = String(opts.to || ''); - - // type of file being written to - const type = (opts.type || path.extname(to).slice(1)).toLowerCase(); - - // transformed custom media - const customMediaJSON = toJSON(customMedia); - - if (type === 'css') { - await writeCustomMediaToCssFile(to, customMediaJSON); - } - - if (type === 'js') { - await writeCustomMediaToCjsFile(to, customMediaJSON); - } - - if (type === 'json') { - await writeCustomMediaToJsonFile(to, customMediaJSON); - } - - if (type === 'mjs') { - await writeCustomMediaToMjsFile(to, customMediaJSON); - } - } - } - })); -} - -/* Helper utilities -/* ========================================================================== */ - -const defaultCustomMediaToJSON = customMedia => { - return Object.keys(customMedia).reduce((customMediaJSON, key) => { - customMediaJSON[key] = String(customMedia[key]); - - return customMediaJSON; - }, {}); -}; - -const writeFile = (to, text) => new Promise((resolve, reject) => { - fs.writeFile(to, text, error => { - if (error) { - reject(error); - } else { - resolve(); - } - }); -}); - -const escapeForJS = string => string.replace(/\\([\s\S])|(')/g, '\\$1$2').replace(/\n/g, '\\n').replace(/\r/g, '\\r'); diff --git a/plugins/postcss-custom-media/test/basic.css b/plugins/postcss-custom-media/test/basic.css index a992cfe2ff..9610f77d41 100644 --- a/plugins/postcss-custom-media/test/basic.css +++ b/plugins/postcss-custom-media/test/basic.css @@ -1,132 +1,22 @@ -@custom-media --mq-a (max-width: 30em), (max-height: 30em); -@custom-media --mq-b screen and (max-width: 30em); -@custom-media --not-mq-a not all and (--mq-a); +@custom-media --simple-feature-test (min-width: 300px); -@media (--mq-a) { - body { +/* Most basic case */ +@media (--simple-feature-test) { + .a { order: 1; } } -@media (--mq-b) { - body { - order: 1; - } -} - -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (--mq-a) { - body { - order: 2; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media not all and (--not-mq-a) { - body { +/* Also a type condition */ +@media screen and (--simple-feature-test) { + .a { order: 2; } } -@custom-media --circular-mq-a (--circular-mq-b); -@custom-media --circular-mq-b (--circular-mq-a); - -@media (--circular-mq-a) { - body { +/* Negation */ +@media not (--simple-feature-test) { + .a { order: 3; } } - -@media (--circular-mq-b) { - body { - order: 4; - } -} - -@media (--unresolved-mq) { - body { - order: 5; - } -} - -@custom-media --min (min-width: 320px); -@custom-media --max (max-width: 640px); - -@media (--min) and (--max) { - body { - order: 6; - } -} - -@custom-media --concat (min-width: 320px) and (max-width: 640px); - -@media (--concat) { - body { - order: 7; - } -} - -@media (--concat) and (min-aspect-ratio: 16/9) { - body { - order: 8; - } -} - -@media ( --mq-a ) { - body { - order: 1000; - } -} - -@media ( --mq-a ) { - body { - order: 1001; - } -} - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1002; - } -} - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1003; - } -} - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1004; - } -} - -@media ( - --mq-a -), -( - --mq-a -) { - body { - order: 1005; - } -} - -@media (trailer--) { - body { - order: 1006; - } -} - -@custom-media trailer-- (min-width: 320px); diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index ed797941cc..3e558f7f36 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -1,117 +1,38 @@ -@media (max-width: 30em),(max-height: 30em) { - body { +/* Most basic case */ +@media (min-width: 300px) { + .a { order: 1; } } -@media screen and (max-width: 30em) { - body { - order: 1; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { +/* Also a type condition */ +@media (min-width: 300px) { +@media screen and (max-color:9999943) { + .a { order: 2; } } - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } } - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { +@media not (min-width: 300px) { +@media screen and (color:9999943) { + .a { order: 2; } } - -@media (--circular-mq-a) { - body { - order: 3; - } -} - -@media (--circular-mq-b) { - body { - order: 4; - } -} - -@media (--unresolved-mq) { - body { - order: 5; - } -} - -@media (min-width: 320px) and (max-width: 640px) { - body { - order: 6; - } } -@media (min-width: 320px) and (max-width: 640px) { - body { - order: 7; - } -} - -@media (min-width: 320px) and (max-width: 640px) and (min-aspect-ratio: 16/9) { - body { - order: 8; - } -} - -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1000; - } -} - -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1001; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1002; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1003; +/* Negation */ +@media (min-width: 300px) { +@media not (max-color:9999943) { + .a { + order: 3; } } - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1004; - } } - -@media (max-width: 30em),(max-height: 30em), -(max-width: 30em), -(max-height: 30em) { - body { - order: 1005; +@media not (min-width: 300px) { +@media not (color:9999943) { + .a { + order: 3; } } - -@media (trailer--) { - body { - order: 1006; - } } - -@custom-media trailer-- (min-width: 320px); diff --git a/plugins/postcss-custom-media/test/basic.preserve.expect.css b/plugins/postcss-custom-media/test/basic.preserve.expect.css index 4c8aefc634..e9d77df330 100644 --- a/plugins/postcss-custom-media/test/basic.preserve.expect.css +++ b/plugins/postcss-custom-media/test/basic.preserve.expect.css @@ -1,224 +1,62 @@ -@custom-media --mq-a (max-width: 30em), (max-height: 30em); -@custom-media --mq-b screen and (max-width: 30em); -@custom-media --not-mq-a not all and (--mq-a); +@custom-media --simple-feature-test (min-width: 300px); -@media (max-width: 30em),(max-height: 30em) { - body { +/* Most basic case */ +@media (min-width: 300px) { + .a { order: 1; } } - -@media (--mq-a) { - body { - order: 1; - } -} - -@media screen and (max-width: 30em) { - body { +@media { +@media (min-width: 300px) { + .a { order: 1; } } - -@media (--mq-b) { - body { - order: 1; - } } - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { +@media (--simple-feature-test) { + .a { order: 1; } } -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { +/* Also a type condition */ +@media (min-width: 300px) { +@media screen and (max-color:9999943) { + .a { order: 2; } } - -@media not all and (--mq-a) { - body { - order: 2; - } } - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { +@media not (min-width: 300px) { +@media screen and (color:9999943) { + .a { order: 2; } } - -@media not all and (--not-mq-a) { - body { +} +@media screen and (--simple-feature-test) { + .a { order: 2; } } -@custom-media --circular-mq-a (--circular-mq-b); -@custom-media --circular-mq-b (--circular-mq-a); - -@media (--circular-mq-a) { - body { +/* Negation */ +@media (min-width: 300px) { +@media not (max-color:9999943) { + .a { order: 3; } } - -@media (--circular-mq-b) { - body { - order: 4; - } -} - -@media (--unresolved-mq) { - body { - order: 5; - } -} - -@custom-media --min (min-width: 320px); -@custom-media --max (max-width: 640px); - -@media (min-width: 320px) and (max-width: 640px) { - body { - order: 6; - } -} - -@media (--min) and (--max) { - body { - order: 6; - } -} - -@custom-media --concat (min-width: 320px) and (max-width: 640px); - -@media (min-width: 320px) and (max-width: 640px) { - body { - order: 7; - } -} - -@media (--concat) { - body { - order: 7; - } -} - -@media (min-width: 320px) and (max-width: 640px) and (min-aspect-ratio: 16/9) { - body { - order: 8; - } -} - -@media (--concat) and (min-aspect-ratio: 16/9) { - body { - order: 8; - } -} - -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1000; - } -} - -@media ( --mq-a ) { - body { - order: 1000; - } -} - -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1001; - } -} - -@media ( --mq-a ) { - body { - order: 1001; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1002; - } } - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1002; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1003; - } -} - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1003; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1004; - } -} - -@media ( --mq-a ), ( --mq-a ) { - body { - order: 1004; +@media not (min-width: 300px) { +@media not (color:9999943) { + .a { + order: 3; } } - -@media (max-width: 30em),(max-height: 30em), -(max-width: 30em), -(max-height: 30em) { - body { - order: 1005; - } } - -@media ( - --mq-a -), -( - --mq-a -) { - body { - order: 1005; - } -} - -@media (trailer--) { - body { - order: 1006; +@media not (--simple-feature-test) { + .a { + order: 3; } } - -@custom-media trailer-- (min-width: 320px); diff --git a/plugins/postcss-custom-media/test/circular.css b/plugins/postcss-custom-media/test/circular.css new file mode 100644 index 0000000000..67209b0659 --- /dev/null +++ b/plugins/postcss-custom-media/test/circular.css @@ -0,0 +1 @@ +/* TODO : implement circular checking */ diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 486d7f5157..97bf357427 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -1,49 +1,143 @@ -@media (min-width: 1) { +@media (min-width: 1) { .a { order: 1; } } -@media (min-width: 2) { +@media (min-width: 2) { .a { order: 2; } } -@media (min-width: 3) and (width > 1024px),(min-width: 4) and (width > 1024px) { +@media (min-width: 3), (min-width: 4) { + +@media (max-color:9999943) and (width > 1024px) { .a { order: 3; } } +} + +@media not (min-width: 3), not (min-width: 4) { + +@media (color:9999943) and (width > 1024px) { + .a { order: 3; } +} +} /* #region https://github.com/csstools/postcss-custom-media/issues/51 */ /* TODO: This is broken at the moment */ -@media only screen(width >= 570px) { +@media --screen and (width >= 570px) { body { background-color: red; } } -@media only screen(width >= 570px) { +@media only screen { + +@media (max-color:9999943) and (width >= 570px) { + body { + background-color: yellow; + } +} +} + +@media not screen { + +@media (color:9999943) and (width >= 570px) { body { background-color: yellow; } } +} + +@media only screen and (width >= 570px) { + body { + background-color: green; + } +} + +@media only screen { + +@media (width >=570px) { + +@media (max-color:9999943) and (max-color:9999943) { + body { + background-color: green; + } +} +} + +@media not (width >=570px) { + +@media (max-color:9999943) and (color:9999943) { + body { + background-color: green; + } +} +} +} + +@media not screen { + +@media (width >=570px) { + +@media (color:9999943) and (max-color:9999943) { + body { + background-color: green; + } +} +} + +@media not (width >=570px) { -@media only screen and (width >= 570px) { +@media (color:9999943) and (color:9999943) { body { background-color: green; } } +} +} + +@media (width >=570px) { -@media only screen(width >=570px) { +@media (width < 1000px) { + +@media (max-color:9999943) and (max-color:9999943) { body { background-color: green; } } +} -@media (width >=570px) and (width < 1000px) { +@media not (width < 1000px) { + +@media (max-color:9999943) and (color:9999943) { body { background-color: green; } } +} +} + +@media not (width >=570px) { + +@media (width < 1000px) { + +@media (color:9999943) and (max-color:9999943) { + body { + background-color: green; + } +} +} + +@media not (width < 1000px) { + +@media (color:9999943) and (color:9999943) { + body { + background-color: green; + } +} +} +} /* #endregion https://github.com/csstools/postcss-custom-media/issues/51 */ diff --git a/plugins/postcss-custom-media/test/examples/example.expect.css b/plugins/postcss-custom-media/test/examples/example.expect.css index 3b68ef9bef..e916bd207e 100644 --- a/plugins/postcss-custom-media/test/examples/example.expect.css +++ b/plugins/postcss-custom-media/test/examples/example.expect.css @@ -1,3 +1,3 @@ -@media (max-width: 30em) { +@media (max-width: 30em) { /* styles for small viewport */ } diff --git a/plugins/postcss-custom-media/test/examples/example.preserve.expect.css b/plugins/postcss-custom-media/test/examples/example.preserve.expect.css index ed814500bc..736478fe47 100644 --- a/plugins/postcss-custom-media/test/examples/example.preserve.expect.css +++ b/plugins/postcss-custom-media/test/examples/example.preserve.expect.css @@ -1,9 +1,16 @@ @custom-media --small-viewport (max-width: 30em); -@media (max-width: 30em) { +@media (max-width: 30em) { /* styles for small viewport */ } +@media { + +@media (max-width: 30em) { + /* styles for small viewport */ +} +} + @media (--small-viewport) { /* styles for small viewport */ } diff --git a/plugins/postcss-custom-media/test/export-media.css b/plugins/postcss-custom-media/test/export-media.css deleted file mode 100644 index f51e88c82e..0000000000 --- a/plugins/postcss-custom-media/test/export-media.css +++ /dev/null @@ -1,8 +0,0 @@ -@custom-media --mq-a (max-width: 30em), (max-height: 30em); -@custom-media --mq-b screen and (max-width: 30em); -@custom-media --not-mq-a not all and (--mq-a); -@custom-media --circular-mq-a (--circular-mq-b); -@custom-media --circular-mq-b (--circular-mq-a); -@custom-media --min (min-width: 320px); -@custom-media --max (max-width: 640px); -@custom-media --concat (min-width: 320px) and (max-width: 640px); diff --git a/plugins/postcss-custom-media/test/export-media.js b/plugins/postcss-custom-media/test/export-media.js deleted file mode 100644 index acccd84089..0000000000 --- a/plugins/postcss-custom-media/test/export-media.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - customMedia: { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--mq-b': 'screen and (max-width: 30em)', - '--not-mq-a': 'not all and (--mq-a)', - '--circular-mq-a': '(--circular-mq-b)', - '--circular-mq-b': '(--circular-mq-a)', - '--min': '(min-width: 320px)', - '--max': '(max-width: 640px)', - '--concat': '(min-width: 320px) and (max-width: 640px)' - } -}; diff --git a/plugins/postcss-custom-media/test/export-media.json b/plugins/postcss-custom-media/test/export-media.json deleted file mode 100644 index 729bde28ee..0000000000 --- a/plugins/postcss-custom-media/test/export-media.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "custom-media": { - "--mq-a": "(max-width: 30em), (max-height: 30em)", - "--mq-b": "screen and (max-width: 30em)", - "--not-mq-a": "not all and (--mq-a)", - "--circular-mq-a": "(--circular-mq-b)", - "--circular-mq-b": "(--circular-mq-a)", - "--min": "(min-width: 320px)", - "--max": "(max-width: 640px)", - "--concat": "(min-width: 320px) and (max-width: 640px)" - } -} diff --git a/plugins/postcss-custom-media/test/export-media.mjs b/plugins/postcss-custom-media/test/export-media.mjs deleted file mode 100644 index ea36519d86..0000000000 --- a/plugins/postcss-custom-media/test/export-media.mjs +++ /dev/null @@ -1,10 +0,0 @@ -export const customMedia = { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--mq-b': 'screen and (max-width: 30em)', - '--not-mq-a': 'not all and (--mq-a)', - '--circular-mq-a': '(--circular-mq-b)', - '--circular-mq-b': '(--circular-mq-a)', - '--min': '(min-width: 320px)', - '--max': '(max-width: 640px)', - '--concat': '(min-width: 320px) and (max-width: 640px)' -}; diff --git a/plugins/postcss-custom-media/test/import-css.css b/plugins/postcss-custom-media/test/import-css.css deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/postcss-custom-media/test/import-media.css b/plugins/postcss-custom-media/test/import-media.css deleted file mode 100644 index e788f32ae5..0000000000 --- a/plugins/postcss-custom-media/test/import-media.css +++ /dev/null @@ -1,2 +0,0 @@ -@custom-media --mq-a (max-width: 30em), (max-height: 30em); -@custom-media --not-mq-a not all and (--mq-a); diff --git a/plugins/postcss-custom-media/test/import-media.js b/plugins/postcss-custom-media/test/import-media.js deleted file mode 100644 index 3f2e0401ab..0000000000 --- a/plugins/postcss-custom-media/test/import-media.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - customMedia: { - '--mq-a': '(max-width: 30em), (max-height: 30em)', - '--not-mq-a': 'not all and (--mq-a)' - } -} diff --git a/plugins/postcss-custom-media/test/import-media.json b/plugins/postcss-custom-media/test/import-media.json deleted file mode 100644 index 807d8dfdd5..0000000000 --- a/plugins/postcss-custom-media/test/import-media.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "customMedia": { - "--mq-a": "(max-width: 30em), (max-height: 30em)", - "--not-mq-a": "not all and (--mq-a)" - } -} diff --git a/plugins/postcss-custom-media/test/import.css b/plugins/postcss-custom-media/test/import.css deleted file mode 100644 index f37220e74e..0000000000 --- a/plugins/postcss-custom-media/test/import.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (--mq-a) { - body { - order: 1; - } -} - -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (--mq-a) { - body { - order: 2; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media not all and (--not-mq-a) { - body { - order: 2; - } -} diff --git a/plugins/postcss-custom-media/test/import.empty.expect.css b/plugins/postcss-custom-media/test/import.empty.expect.css deleted file mode 100644 index f37220e74e..0000000000 --- a/plugins/postcss-custom-media/test/import.empty.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (--mq-a) { - body { - order: 1; - } -} - -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (--mq-a) { - body { - order: 2; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media not all and (--not-mq-a) { - body { - order: 2; - } -} diff --git a/plugins/postcss-custom-media/test/import.expect.css b/plugins/postcss-custom-media/test/import.expect.css deleted file mode 100644 index 0bc2bbf3bf..0000000000 --- a/plugins/postcss-custom-media/test/import.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 2; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } -} - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { - order: 2; - } -} diff --git a/plugins/postcss-custom-media/test/import.plugin.expect.css b/plugins/postcss-custom-media/test/import.plugin.expect.css deleted file mode 100644 index 0bc2bbf3bf..0000000000 --- a/plugins/postcss-custom-media/test/import.plugin.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 2; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } -} - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { - order: 2; - } -} diff --git a/plugins/postcss-custom-media/test/basic.import.expect.css b/plugins/postcss-custom-media/test/list.css similarity index 100% rename from plugins/postcss-custom-media/test/basic.import.expect.css rename to plugins/postcss-custom-media/test/list.css diff --git a/packages/postcss-media-query-parser/tsconfig.json b/plugins/postcss-custom-media/tsconfig.json similarity index 74% rename from packages/postcss-media-query-parser/tsconfig.json rename to plugins/postcss-custom-media/tsconfig.json index e0d06239cc..2e428a8c22 100644 --- a/packages/postcss-media-query-parser/tsconfig.json +++ b/plugins/postcss-custom-media/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../../tsconfig.json", "compilerOptions": { "outDir": "dist", - "declarationDir": "." + "declarationDir": ".", + "module": "es2020" }, "include": ["./src/**/*"], "exclude": ["dist"], diff --git a/rollup/presets/package-typescript.js b/rollup/presets/package-typescript.js index d765bf7031..6e739ef656 100644 --- a/rollup/presets/package-typescript.js +++ b/rollup/presets/package-typescript.js @@ -21,7 +21,7 @@ export function packageTypescript() { extensions: ['.js', '.ts'], presets: packageBabelPreset, }), - terser(), + // terser(), ], }, ]; From ec6a7f9da9ad306f6dfb5c41a933c14ba3d39675 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 19:05:57 +0200 Subject: [PATCH 36/59] wip --- plugins/postcss-custom-media/test/list.css | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/postcss-custom-media/test/list.css b/plugins/postcss-custom-media/test/list.css index e69de29bb2..6b033e65a6 100644 --- a/plugins/postcss-custom-media/test/list.css +++ b/plugins/postcss-custom-media/test/list.css @@ -0,0 +1 @@ +/* TODO : write tests for lists */ From 0a5ec17f70120de144a577e8d806611fc54475bf Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 23:17:58 +0200 Subject: [PATCH 37/59] fixes --- plugins/postcss-custom-media/.tape.mjs | 6 ++ .../src/custom-media-from-root.ts | 6 ++ plugins/postcss-custom-media/src/index.ts | 8 +- plugins/postcss-custom-media/src/toposort.ts | 28 +++++- .../src/transform-at-media.ts | 62 +++++++++++-- .../test/basic.expect.css | 18 ++-- .../test/basic.preserve.expect.css | 25 ++---- .../postcss-custom-media/test/circular.css | 1 - .../test/complex.expect.css | 64 +++++++------- plugins/postcss-custom-media/test/cyclic.css | 29 +++++++ .../test/cyclic.expect.css | 23 +++++ .../test/examples/example.expect.css | 2 +- .../test/examples/example.preserve.expect.css | 9 +- plugins/postcss-custom-media/test/list.css | 31 ++++++- .../postcss-custom-media/test/list.expect.css | 87 +++++++++++++++++++ rollup/configs/externals.js | 2 + rollup/presets/package-typescript.js | 2 +- 17 files changed, 321 insertions(+), 82 deletions(-) delete mode 100644 plugins/postcss-custom-media/test/circular.css create mode 100644 plugins/postcss-custom-media/test/cyclic.css create mode 100644 plugins/postcss-custom-media/test/cyclic.expect.css create mode 100644 plugins/postcss-custom-media/test/list.expect.css diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 9dfdb64b9e..7ec653894f 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -22,5 +22,11 @@ postcssTape(plugin)({ }, 'complex': { message: 'supports complex usage' + }, + 'cyclic': { + message: 'handles cyclic references' + }, + 'list': { + message: 'supports media query lists' } }); diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts index 54f080e2d3..0e6f7ec88c 100644 --- a/plugins/postcss-custom-media/src/custom-media-from-root.ts +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -1,11 +1,13 @@ import type { ChildNode, Container, Document, Root as PostCSSRoot } from 'postcss'; import { isProcessableCustomMediaRule } from './is-processable-custom-media-rule'; +import { removeCyclicReferences } from './toposort'; import { parseCustomMedia } from './transform-at-media'; // return custom media from the css root, conditionally removing them export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boolean }): Map { // initialize custom media const customMedia: Map = new Map(); + const customMediaGraph: Array<[string, string]> = []; root.walkAtRules((atRule) => { if (!isProcessableCustomMediaRule(atRule)) { @@ -22,12 +24,16 @@ export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boo falsy: parsed.falsy, }); + customMediaGraph.push(...parsed.dependsOn); + if (!opts.preserve) { atRule.remove(); removeEmptyAncestorBlocks(atRule); } }); + removeCyclicReferences(customMedia, customMediaGraph); + return customMedia; } diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index 498095874b..72b29cfd41 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -1,6 +1,6 @@ import type { PluginCreator } from 'postcss'; import getCustomMedia from './custom-media-from-root'; -import { transformAtMediaTokens } from './transform-at-media'; +import { transformAtMediaListTokens } from './transform-at-media'; export interface PluginOptions { /** Determines whether Custom Selectors and selectors using custom selectors should be preserved in their original form. */ @@ -37,8 +37,8 @@ const creator: PluginCreator = (opts?: PluginOptions) => { return; } - const transformedParams = transformAtMediaTokens(atRule.params, customMedia); - if (transformedParams.length === 0) { + const transformedParams = transformAtMediaListTokens(atRule.params, customMedia); + if (!transformedParams || transformedParams.length === 0) { return; } @@ -53,6 +53,8 @@ const creator: PluginCreator = (opts?: PluginOptions) => { atRule.remove(); return; } + + return; } transformedParams.forEach((transformed) => { diff --git a/plugins/postcss-custom-media/src/toposort.ts b/plugins/postcss-custom-media/src/toposort.ts index 73b773d408..8249bab90d 100644 --- a/plugins/postcss-custom-media/src/toposort.ts +++ b/plugins/postcss-custom-media/src/toposort.ts @@ -19,7 +19,28 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -export function toposort(nodes: Array, edges: Array>): Array { +export function removeCyclicReferences(nodes: Map, edges: Array>) { + // eslint-disable-next-line no-constant-condition + let _edges = edges; + while (nodes.size > 0) { + try { + toposort(Array.from(nodes.keys()), _edges); + break; + } catch (e) { + if (e['_graphNode']) { + + nodes.delete(e['_graphNode']); + _edges = _edges.filter((x) => { + return x.indexOf(e['_graphNode']) === -1; + }); + } else { + throw e; + } + } + } +} + +function toposort(nodes: Array, edges: Array>): Array { let cursor = nodes.length; const sorted: Array = new Array(cursor); const visited: Record = {}; @@ -51,7 +72,10 @@ export function toposort(nodes: Array, edges: Array>): Arr } catch (e) { nodeRep = ''; } - throw new Error('Cyclic dependency' + nodeRep); + const err = new Error('Cyclic dependency' + nodeRep); + err['_graphNode'] = node; + + throw err; } if (!nodesHash.has(node)) { diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 0ca1aa032f..5a7d058993 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -4,7 +4,11 @@ import type { CSSToken } from '@csstools/css-tokenizer'; export function atMediaParamsTokens(params: string): Array { const t = tokenizer({ css: params, - }, {commentsAreTokens: true}); + }, { + commentsAreTokens: true, onParseError: () => { + throw new Error(`Unable to parse media query "${params}"`); + }, + }); const tokens: Array = []; while (!t.endOfFile()) { @@ -17,18 +21,46 @@ export function atMediaParamsTokens(params: string): Array { const alwaysTrue: Array = [ [TokenType.Ident, 'max-color', 0, 0, { value: 'max-color' }], [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '9999943', 0, 0, { value: 9999943, type: NumberType.Integer }], + [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], ]; const neverTrue: Array = [ [TokenType.Ident, 'color', 0, 0, { value: 'color' }], [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '9999943', 0, 0, { value: 9999943, type: NumberType.Integer }], + [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], ]; -export function transformAtMediaTokens(params: string, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { - const tokens = atMediaParamsTokens(params); +export function transformAtMediaListTokens(params: string, replacements: Map): Array<{ replaceWith: string, encapsulateWith?: string }> { + const mediaQueries = splitMediaQueryList(atMediaParamsTokens(params)); + + const stringQueries = mediaQueries.map((x) => stringify(...x)); + + for (let i = 0; i < mediaQueries.length; i++) { + const mediaQuery = mediaQueries[i]; + const original = stringQueries[i]; + + const transformedQuery = transformAtMediaTokens(mediaQuery, replacements); + if (!transformedQuery || transformedQuery.length === 0) { + continue; + } + if (transformedQuery[0].replaceWith === original) { + continue; + } + + transformedQuery.map((transformedPart) => { + const replaceWithSource = stringQueries.slice(); + replaceWithSource[i] = transformedPart.replaceWith; + transformedPart.replaceWith = replaceWithSource.join(','); + }); + + return transformedQuery; + } + + return []; +} + +export function transformAtMediaTokens(tokens: Array, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { const tokenTypes: Set = new Set(); let identCounter = 0; for (let i = 0; i < tokens.length; i++) { @@ -164,9 +196,11 @@ export function transformAtMediaTokens(params: string, replacements: Map}|false { const tokens = atMediaParamsTokens(params); + const customMediaReferences: Set = new Set(); + let name = ''; let remainder = tokens; for (let i = 0; i < tokens.length; i++) { @@ -189,6 +223,15 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, return false; } + for (let i = 0; i < remainder.length; i++) { + if (remainder[i][0] === TokenType.Ident) { + const identToken = remainder[i] as TokenIdent; + if (identToken[4].value.startsWith('--')) { + customMediaReferences.add(identToken[4].value); + } + } + } + const list = splitMediaQueryList(remainder); const truthyParts = []; const falsyParts = []; @@ -247,8 +290,11 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, return { name: name, - truthy: truthyParts.join(','), - falsy: falsyParts.join(','), + truthy: truthyParts.map((x) => x.trim()).join(','), + falsy: falsyParts.map((x) => x.trim()).join(','), + dependsOn: Array.from(customMediaReferences).map((x) => { + return [x, name]; + }), }; } diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index 3e558f7f36..691bfd7825 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -1,20 +1,20 @@ /* Most basic case */ -@media (min-width: 300px) { +@media (min-width: 300px) { .a { order: 1; } } /* Also a type condition */ -@media (min-width: 300px) { -@media screen and (max-color:9999943) { +@media (min-width: 300px) { +@media screen and (max-color:2147477350) { .a { order: 2; } } } -@media not (min-width: 300px) { -@media screen and (color:9999943) { +@media not (min-width: 300px) { +@media screen and (color:2147477350) { .a { order: 2; } @@ -22,15 +22,15 @@ } /* Negation */ -@media (min-width: 300px) { -@media not (max-color:9999943) { +@media (min-width: 300px) { +@media not (max-color:2147477350) { .a { order: 3; } } } -@media not (min-width: 300px) { -@media not (color:9999943) { +@media not (min-width: 300px) { +@media not (color:2147477350) { .a { order: 3; } diff --git a/plugins/postcss-custom-media/test/basic.preserve.expect.css b/plugins/postcss-custom-media/test/basic.preserve.expect.css index e9d77df330..915b9a3dbb 100644 --- a/plugins/postcss-custom-media/test/basic.preserve.expect.css +++ b/plugins/postcss-custom-media/test/basic.preserve.expect.css @@ -1,18 +1,11 @@ @custom-media --simple-feature-test (min-width: 300px); /* Most basic case */ -@media (min-width: 300px) { +@media (min-width: 300px) { .a { order: 1; } } -@media { -@media (min-width: 300px) { - .a { - order: 1; - } -} -} @media (--simple-feature-test) { .a { order: 1; @@ -20,15 +13,15 @@ } /* Also a type condition */ -@media (min-width: 300px) { -@media screen and (max-color:9999943) { +@media (min-width: 300px) { +@media screen and (max-color:2147477350) { .a { order: 2; } } } -@media not (min-width: 300px) { -@media screen and (color:9999943) { +@media not (min-width: 300px) { +@media screen and (color:2147477350) { .a { order: 2; } @@ -41,15 +34,15 @@ } /* Negation */ -@media (min-width: 300px) { -@media not (max-color:9999943) { +@media (min-width: 300px) { +@media not (max-color:2147477350) { .a { order: 3; } } } -@media not (min-width: 300px) { -@media not (color:9999943) { +@media not (min-width: 300px) { +@media not (color:2147477350) { .a { order: 3; } diff --git a/plugins/postcss-custom-media/test/circular.css b/plugins/postcss-custom-media/test/circular.css deleted file mode 100644 index 67209b0659..0000000000 --- a/plugins/postcss-custom-media/test/circular.css +++ /dev/null @@ -1 +0,0 @@ -/* TODO : implement circular checking */ diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 97bf357427..1c4889b540 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -1,25 +1,25 @@ -@media (min-width: 1) { +@media (min-width: 1) { .a { order: 1; } } -@media (min-width: 2) { +@media (min-width: 2) { .a { order: 2; } } -@media (min-width: 3), (min-width: 4) { +@media (min-width: 3),(min-width: 4) { -@media (max-color:9999943) and (width > 1024px) { +@media (max-color:2147477350) and (width > 1024px) { .a { order: 3; } } } -@media not (min-width: 3), not (min-width: 4) { +@media not (min-width: 3),not (min-width: 4) { -@media (color:9999943) and (width > 1024px) { +@media (color:2147477350) and (width > 1024px) { .a { order: 3; } } } @@ -27,50 +27,50 @@ /* #region https://github.com/csstools/postcss-custom-media/issues/51 */ /* TODO: This is broken at the moment */ -@media --screen and (width >= 570px) { +@media --screen and (width >= 570px) { body { background-color: red; } } -@media only screen { +@media only screen { -@media (max-color:9999943) and (width >= 570px) { +@media (max-color:2147477350) and (width >= 570px) { body { background-color: yellow; } } } -@media not screen { +@media not screen { -@media (color:9999943) and (width >= 570px) { +@media (color:2147477350) and (width >= 570px) { body { background-color: yellow; } } } -@media only screen and (width >= 570px) { +@media only screen and (width >= 570px) { body { background-color: green; } } -@media only screen { +@media only screen { -@media (width >=570px) { +@media (width >=570px) { -@media (max-color:9999943) and (max-color:9999943) { +@media (max-color:2147477350) and (max-color:2147477350) { body { background-color: green; } } } -@media not (width >=570px) { +@media not (width >=570px) { -@media (max-color:9999943) and (color:9999943) { +@media (max-color:2147477350) and (color:2147477350) { body { background-color: green; } @@ -78,20 +78,20 @@ } } -@media not screen { +@media not screen { -@media (width >=570px) { +@media (width >=570px) { -@media (color:9999943) and (max-color:9999943) { +@media (color:2147477350) and (max-color:2147477350) { body { background-color: green; } } } -@media not (width >=570px) { +@media not (width >=570px) { -@media (color:9999943) and (color:9999943) { +@media (color:2147477350) and (color:2147477350) { body { background-color: green; } @@ -99,20 +99,20 @@ } } -@media (width >=570px) { +@media (width >=570px) { -@media (width < 1000px) { +@media (width < 1000px) { -@media (max-color:9999943) and (max-color:9999943) { +@media (max-color:2147477350) and (max-color:2147477350) { body { background-color: green; } } } -@media not (width < 1000px) { +@media not (width < 1000px) { -@media (max-color:9999943) and (color:9999943) { +@media (max-color:2147477350) and (color:2147477350) { body { background-color: green; } @@ -120,20 +120,20 @@ } } -@media not (width >=570px) { +@media not (width >=570px) { -@media (width < 1000px) { +@media (width < 1000px) { -@media (color:9999943) and (max-color:9999943) { +@media (color:2147477350) and (max-color:2147477350) { body { background-color: green; } } } -@media not (width < 1000px) { +@media not (width < 1000px) { -@media (color:9999943) and (color:9999943) { +@media (color:2147477350) and (color:2147477350) { body { background-color: green; } diff --git a/plugins/postcss-custom-media/test/cyclic.css b/plugins/postcss-custom-media/test/cyclic.css new file mode 100644 index 0000000000..c22b3a4e95 --- /dev/null +++ b/plugins/postcss-custom-media/test/cyclic.css @@ -0,0 +1,29 @@ +/* Simple cyclic */ +@custom-media --mq-a (--mq-b); +@custom-media --mq-b (--mq-a); + +@media (--mq-a) { + .a { + color: red; + } +} + +/* Indirect cyclic */ +@custom-media --mq-x (--mq-z); +@custom-media --mq-y (--mq-x); +@custom-media --mq-z (--mq-y); + +@media (--mq-z) { + .b { + color: red; + } +} + +/* Self referencing */ +@custom-media --mq-self (--mq-self); + +@media (--mq-self) { + .c { + color: red; + } +} diff --git a/plugins/postcss-custom-media/test/cyclic.expect.css b/plugins/postcss-custom-media/test/cyclic.expect.css new file mode 100644 index 0000000000..6674fd4a8d --- /dev/null +++ b/plugins/postcss-custom-media/test/cyclic.expect.css @@ -0,0 +1,23 @@ +/* Simple cyclic */ + +@media (--mq-b) { + .a { + color: red; + } +} + +/* Indirect cyclic */ + +@media (--mq-z) { + .b { + color: red; + } +} + +/* Self referencing */ + +@media (--mq-self) { + .c { + color: red; + } +} diff --git a/plugins/postcss-custom-media/test/examples/example.expect.css b/plugins/postcss-custom-media/test/examples/example.expect.css index e916bd207e..3b68ef9bef 100644 --- a/plugins/postcss-custom-media/test/examples/example.expect.css +++ b/plugins/postcss-custom-media/test/examples/example.expect.css @@ -1,3 +1,3 @@ -@media (max-width: 30em) { +@media (max-width: 30em) { /* styles for small viewport */ } diff --git a/plugins/postcss-custom-media/test/examples/example.preserve.expect.css b/plugins/postcss-custom-media/test/examples/example.preserve.expect.css index 736478fe47..ed814500bc 100644 --- a/plugins/postcss-custom-media/test/examples/example.preserve.expect.css +++ b/plugins/postcss-custom-media/test/examples/example.preserve.expect.css @@ -1,16 +1,9 @@ @custom-media --small-viewport (max-width: 30em); -@media (max-width: 30em) { +@media (max-width: 30em) { /* styles for small viewport */ } -@media { - -@media (max-width: 30em) { - /* styles for small viewport */ -} -} - @media (--small-viewport) { /* styles for small viewport */ } diff --git a/plugins/postcss-custom-media/test/list.css b/plugins/postcss-custom-media/test/list.css index 6b033e65a6..cd0b8e893d 100644 --- a/plugins/postcss-custom-media/test/list.css +++ b/plugins/postcss-custom-media/test/list.css @@ -1 +1,30 @@ -/* TODO : write tests for lists */ +/* Custom media with a list */ +@custom-media --mq-with-list-a (min-width: 101px), (min-height: 102px); + +@media screen and (--mq-with-list-a) { + .a { + order: 1; + } +} + +@media ((other: feature) and (--mq-with-list-a)) { + .a { + order: 2; + } +} + +/* Custom media used in a list */ +@custom-media --mq-without-a-list-a (min-width: 201px); +@custom-media --mq-without-a-list-b (min-width: 202px); + +@media (--mq-without-a-list-a), (--mq-without-a-list-b) { + .b { + order: 3; + } +} + +@media screen and (--mq-without-a-list-a), not (--mq-without-a-list-b) { + .b { + order: 4; + } +} diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css new file mode 100644 index 0000000000..a399864c62 --- /dev/null +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -0,0 +1,87 @@ +/* Custom media with a list */ + +@media (min-width: 101px),(min-height: 102px) { + +@media screen and (max-color:2147477350) { + .a { + order: 1; + } +} +} + +@media not (min-width: 101px),not (min-height: 102px) { + +@media screen and (color:2147477350) { + .a { + order: 1; + } +} +} + +@media (min-width: 101px),(min-height: 102px) { + +@media ((other: feature) and (max-color:2147477350)) { + .a { + order: 2; + } +} +} + +@media not (min-width: 101px),not (min-height: 102px) { + +@media ((other: feature) and (color:2147477350)) { + .a { + order: 2; + } +} +} + +/* Custom media used in a list */ + +@media (min-width: 201px),(min-width: 202px) { + .b { + order: 3; + } +} + +@media (min-width: 201px) { + +@media (min-width: 202px) { + +@media screen and (max-color:2147477350), not (max-color:2147477350) { + .b { + order: 4; + } +} +} + +@media not (min-width: 202px) { + +@media screen and (max-color:2147477350), not (color:2147477350) { + .b { + order: 4; + } +} +} +} + +@media not (min-width: 201px) { + +@media (min-width: 202px) { + +@media screen and (color:2147477350), not (max-color:2147477350) { + .b { + order: 4; + } +} +} + +@media not (min-width: 202px) { + +@media screen and (color:2147477350), not (color:2147477350) { + .b { + order: 4; + } +} +} +} diff --git a/rollup/configs/externals.js b/rollup/configs/externals.js index cb4aab798c..aaf0a70e59 100644 --- a/rollup/configs/externals.js +++ b/rollup/configs/externals.js @@ -4,6 +4,7 @@ export const externalsForCLI = [ 'url', 'vm', + '@csstools/css-tokenizer', '@csstools/postcss-cascade-layers', '@csstools/postcss-color-function', '@csstools/postcss-font-format-keywords', @@ -69,6 +70,7 @@ export const externalsForPlugin = [ /^postcss\/lib\/*/, 'postcss-html', + '@csstools/css-tokenizer', '@csstools/postcss-cascade-layers', '@csstools/postcss-color-function', '@csstools/postcss-font-format-keywords', diff --git a/rollup/presets/package-typescript.js b/rollup/presets/package-typescript.js index 6e739ef656..d765bf7031 100644 --- a/rollup/presets/package-typescript.js +++ b/rollup/presets/package-typescript.js @@ -21,7 +21,7 @@ export function packageTypescript() { extensions: ['.js', '.ts'], presets: packageBabelPreset, }), - // terser(), + terser(), ], }, ]; From 3357c4a9ac21d5a8254011c1f01ef4375f0747d1 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 23:40:11 +0200 Subject: [PATCH 38/59] fixes --- plugins/postcss-custom-media/.tape.mjs | 6 ++ plugins/postcss-custom-media/README.md | 84 ------------------- plugins/postcss-custom-media/docs/README.md | 84 ------------------- plugins/postcss-custom-media/package.json | 4 +- .../src/custom-media-from-root.ts | 3 +- plugins/postcss-custom-media/src/index.ts | 4 +- .../postcss-custom-media/test/modifiers.css | 28 +++++++ .../test/modifiers.expect.css | 73 ++++++++++++++++ .../postcss-custom-media/test/override.css | 30 +++++++ .../test/override.expect.css | 19 +++++ 10 files changed, 162 insertions(+), 173 deletions(-) create mode 100644 plugins/postcss-custom-media/test/modifiers.css create mode 100644 plugins/postcss-custom-media/test/modifiers.expect.css create mode 100644 plugins/postcss-custom-media/test/override.css create mode 100644 plugins/postcss-custom-media/test/override.expect.css diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 7ec653894f..6056e76caa 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -26,6 +26,12 @@ postcssTape(plugin)({ 'cyclic': { message: 'handles cyclic references' }, + 'override': { + message: 'handles reference overrides' + }, + 'modifiers': { + message: 'supports media query modifiers' + }, 'list': { message: 'supports media query lists' } diff --git a/plugins/postcss-custom-media/README.md b/plugins/postcss-custom-media/README.md index 73437387f8..e847e2fbaa 100644 --- a/plugins/postcss-custom-media/README.md +++ b/plugins/postcss-custom-media/README.md @@ -74,90 +74,6 @@ postcssCustomMedia({ preserve: true }) } ``` - -### importFrom - -The `importFrom` option specifies sources where custom media can be imported -from, which might be CSS, JS, and JSON files, functions, and directly passed -objects. - -```js -postcssCustomMedia({ - importFrom: 'path/to/file.css' // => @custom-selector --small-viewport (max-width: 30em); -}); -``` - -```pcss -@media (max-width: 30em) { - /* styles for small viewport */ -} - -@media (--small-viewport) { - /* styles for small viewport */ -} -``` - -Multiple sources can be passed into this option, and they will be parsed in the -order they are received. JavaScript files, JSON files, functions, and objects -will need to namespace custom media using the `customMedia` or -`custom-media` key. - -```js -postcssCustomMedia({ - importFrom: [ - 'path/to/file.css', - 'and/then/this.js', - 'and/then/that.json', - { - customMedia: { '--small-viewport': '(max-width: 30em)' } - }, - () => { - const customMedia = { '--small-viewport': '(max-width: 30em)' }; - - return { customMedia }; - } - ] -}); -``` - -### exportTo - -The `exportTo` option specifies destinations where custom media can be exported -to, which might be CSS, JS, and JSON files, functions, and directly passed -objects. - -```js -postcssCustomMedia({ - exportTo: 'path/to/file.css' // @custom-media --small-viewport (max-width: 30em); -}); -``` - -Multiple destinations can be passed into this option, and they will be parsed -in the order they are received. JavaScript files, JSON files, and objects will -need to namespace custom media using the `customMedia` or -`custom-media` key. - -```js -const cachedObject = { customMedia: {} }; - -postcssCustomMedia({ - exportTo: [ - 'path/to/file.css', // @custom-media --small-viewport (max-width: 30em); - 'and/then/this.js', // module.exports = { customMedia: { '--small-viewport': '(max-width: 30em)' } } - 'and/then/this.mjs', // export const customMedia = { '--small-viewport': '(max-width: 30em)' } } - 'and/then/that.json', // { "custom-media": { "--small-viewport": "(max-width: 30em)" } } - cachedObject, - customMedia => { - customMedia // { '--small-viewport': '(max-width: 30em)' } - } - ] -}); -``` - -See example exports written to [CSS](test/export-media.css), -[JS](test/export-media.js), [MJS](test/export-media.mjs), and -[JSON](test/export-media.json). - [cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test [css-url]: https://cssdb.org/#custom-media-queries [discord]: https://discord.gg/bUadyRwkJS diff --git a/plugins/postcss-custom-media/docs/README.md b/plugins/postcss-custom-media/docs/README.md index 9961d39fd4..6d3d8dc767 100644 --- a/plugins/postcss-custom-media/docs/README.md +++ b/plugins/postcss-custom-media/docs/README.md @@ -49,89 +49,5 @@ is preserved. By default, it is not preserved. ``` - -### importFrom - -The `importFrom` option specifies sources where custom media can be imported -from, which might be CSS, JS, and JSON files, functions, and directly passed -objects. - -```js -({ - importFrom: 'path/to/file.css' // => @custom-selector --small-viewport (max-width: 30em); -}); -``` - -```pcss -@media (max-width: 30em) { - /* styles for small viewport */ -} - -@media (--small-viewport) { - /* styles for small viewport */ -} -``` - -Multiple sources can be passed into this option, and they will be parsed in the -order they are received. JavaScript files, JSON files, functions, and objects -will need to namespace custom media using the `customMedia` or -`custom-media` key. - -```js -({ - importFrom: [ - 'path/to/file.css', - 'and/then/this.js', - 'and/then/that.json', - { - customMedia: { '--small-viewport': '(max-width: 30em)' } - }, - () => { - const customMedia = { '--small-viewport': '(max-width: 30em)' }; - - return { customMedia }; - } - ] -}); -``` - -### exportTo - -The `exportTo` option specifies destinations where custom media can be exported -to, which might be CSS, JS, and JSON files, functions, and directly passed -objects. - -```js -({ - exportTo: 'path/to/file.css' // @custom-media --small-viewport (max-width: 30em); -}); -``` - -Multiple destinations can be passed into this option, and they will be parsed -in the order they are received. JavaScript files, JSON files, and objects will -need to namespace custom media using the `customMedia` or -`custom-media` key. - -```js -const cachedObject = { customMedia: {} }; - -({ - exportTo: [ - 'path/to/file.css', // @custom-media --small-viewport (max-width: 30em); - 'and/then/this.js', // module.exports = { customMedia: { '--small-viewport': '(max-width: 30em)' } } - 'and/then/this.mjs', // export const customMedia = { '--small-viewport': '(max-width: 30em)' } } - 'and/then/that.json', // { "custom-media": { "--small-viewport": "(max-width: 30em)" } } - cachedObject, - customMedia => { - customMedia // { '--small-viewport': '(max-width: 30em)' } - } - ] -}); -``` - -See example exports written to [CSS](test/export-media.css), -[JS](test/export-media.js), [MJS](test/export-media.mjs), and -[JSON](test/export-media.json). - [Custom Media Specification]: diff --git a/plugins/postcss-custom-media/package.json b/plugins/postcss-custom-media/package.json index fd479b7563..b39278934e 100644 --- a/plugins/postcss-custom-media/package.json +++ b/plugins/postcss-custom-media/package.json @@ -45,8 +45,8 @@ "dist" ], "dependencies": { - "postcss-value-parser": "^4.2.0", - "@csstools/css-tokenizer": "^1.0.0" + "@csstools/css-tokenizer": "^1.0.0", + "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.4" diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts index 0e6f7ec88c..038c55296a 100644 --- a/plugins/postcss-custom-media/src/custom-media-from-root.ts +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -27,8 +27,9 @@ export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boo customMediaGraph.push(...parsed.dependsOn); if (!opts.preserve) { + const parent = atRule.parent; atRule.remove(); - removeEmptyAncestorBlocks(atRule); + removeEmptyAncestorBlocks(parent); } }); diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index 72b29cfd41..ccec2c723b 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -3,12 +3,12 @@ import getCustomMedia from './custom-media-from-root'; import { transformAtMediaListTokens } from './transform-at-media'; export interface PluginOptions { - /** Determines whether Custom Selectors and selectors using custom selectors should be preserved in their original form. */ + /** Determines whether Custom Media and media queries using custom media should be preserved in their original form. */ preserve?: boolean } const creator: PluginCreator = (opts?: PluginOptions) => { - // whether to preserve custom selectors and rules using them + // whether to preserve custom media and rules using them const preserve = Boolean(Object(opts).preserve); if ('importFrom' in Object(opts)) { diff --git a/plugins/postcss-custom-media/test/modifiers.css b/plugins/postcss-custom-media/test/modifiers.css new file mode 100644 index 0000000000..c8216fad54 --- /dev/null +++ b/plugins/postcss-custom-media/test/modifiers.css @@ -0,0 +1,28 @@ +/* Media queries with modifiers (not|only) */ +@custom-media --mq-not-screen not screen; + +@media screen and (--mq-not-screen) { + .a { + order: 1; + } +} + +@media only print and (not (--mq-not-screen)) { + .a { + order: 2; + } +} + +@custom-media --mq-only-screen-min-width only screen and (min-width: 200px); + +@media print and (--mq-only-screen-min-width) { + .a { + order: 3; + } +} + +@media (--mq-only-screen-min-width), (not (--mq-only-screen-min-width)) { + .a { + order: 4; + } +} diff --git a/plugins/postcss-custom-media/test/modifiers.expect.css b/plugins/postcss-custom-media/test/modifiers.expect.css new file mode 100644 index 0000000000..a4b77a43c1 --- /dev/null +++ b/plugins/postcss-custom-media/test/modifiers.expect.css @@ -0,0 +1,73 @@ +/* Media queries with modifiers (not|only) */ + +@media not screen { + +@media screen and (max-color:2147477350) { + .a { + order: 1; + } +} +} + +@media screen { + +@media screen and (color:2147477350) { + .a { + order: 1; + } +} +} + +@media not screen { + +@media only print and (not (max-color:2147477350)) { + .a { + order: 2; + } +} +} + +@media screen { + +@media only print and (not (color:2147477350)) { + .a { + order: 2; + } +} +} + +@media only screen and (min-width: 200px) { + +@media print and (max-color:2147477350) { + .a { + order: 3; + } +} +} + +@media not screen and (min-width: 200px) { + +@media print and (color:2147477350) { + .a { + order: 3; + } +} +} + +@media only screen and (min-width: 200px) { + +@media only screen and (min-width: 200px), (not (max-color:2147477350)) { + .a { + order: 4; + } +} +} + +@media not screen and (min-width: 200px) { + +@media only screen and (min-width: 200px), (not (color:2147477350)) { + .a { + order: 4; + } +} +} diff --git a/plugins/postcss-custom-media/test/override.css b/plugins/postcss-custom-media/test/override.css new file mode 100644 index 0000000000..7b7fd09bc3 --- /dev/null +++ b/plugins/postcss-custom-media/test/override.css @@ -0,0 +1,30 @@ +@custom-media --mq-a (min-width: 101px); + +@scope (.a-scope) { + @custom-media --mq-a (min-width: 102px); +} + +@media (--mq-a) { + .a { + order: 1; + } +} + +@custom-media --mq-b (min-width: 201px); + +@media (--mq-b) { + @custom-media --mq-b (min-width: 202px); + + .b { + order: 2; + } +} + +@custom-media --mq-c (min-width: 301px); +@custom-media --mq-c (min-width: 302px); + +@media (--mq-c) { + .c { + order: 3; + } +} diff --git a/plugins/postcss-custom-media/test/override.expect.css b/plugins/postcss-custom-media/test/override.expect.css new file mode 100644 index 0000000000..30f2040bdc --- /dev/null +++ b/plugins/postcss-custom-media/test/override.expect.css @@ -0,0 +1,19 @@ +@media (min-width: 102px) { + .a { + order: 1; + } +} + +@media (min-width: 201px) { + @custom-media --mq-b (min-width: 202px); + + .b { + order: 2; + } +} + +@media (min-width: 302px) { + .c { + order: 3; + } +} From fa6090c060208bd4808ab5cf1dd41ed90b04204b Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 23:56:42 +0200 Subject: [PATCH 39/59] fixes --- plugins/postcss-custom-media/src/index.ts | 23 +++++++++++++++++-- .../src/transform-at-media.ts | 14 ++++++----- .../postcss-custom-media/test/list.expect.css | 16 ++++--------- .../test/modifiers.expect.css | 10 ++++++-- 4 files changed, 42 insertions(+), 21 deletions(-) diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index ccec2c723b..2b90e6fd00 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -47,7 +47,7 @@ const creator: PluginCreator = (opts?: PluginOptions) => { return; } - atRule.cloneBefore({ params: transformedParams[0].replaceWith }); + atRule.cloneBefore({ params: transformedParams[0].replaceWith.trim() }); if (!preserve) { atRule.remove(); @@ -57,9 +57,28 @@ const creator: PluginCreator = (opts?: PluginOptions) => { return; } + const needsEncapsulation = !!(transformedParams.find((x) => { + return !!x.encapsulateWith; + })); + + if (!needsEncapsulation) { + atRule.cloneBefore({ params: transformedParams.map((x) => x.replaceWith).join(',').trim() }); + if (!preserve) { + atRule.remove(); + return; + } + + return; + } + transformedParams.forEach((transformed) => { + if (!transformed.encapsulateWith) { + atRule.cloneBefore({ params: transformed.replaceWith.trim() }); + return; + } + const clone = atRule.clone({ params: transformed.replaceWith }); - const encapsulate = atRule.clone({ params: transformed.encapsulateWith, nodes: [] }); + const encapsulate = atRule.clone({ params: transformed.encapsulateWith.trim(), nodes: [] }); if (encapsulate.nodes && encapsulate.nodes.length) { encapsulate.each((child) => { child.remove(); diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 5a7d058993..7f62234e08 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -48,13 +48,15 @@ export function transformAtMediaListTokens(params: string, replacements: Map { - const replaceWithSource = stringQueries.slice(); - replaceWithSource[i] = transformedPart.replaceWith; - transformedPart.replaceWith = replaceWithSource.join(','); - }); + return stringQueries.flatMap((query, index) => { + if (index === i) { + return transformedQuery; + } - return transformedQuery; + return [{ + replaceWith: query, + }]; + }); } return []; diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css index a399864c62..ac17854a8f 100644 --- a/plugins/postcss-custom-media/test/list.expect.css +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -46,30 +46,25 @@ @media (min-width: 201px) { -@media (min-width: 202px) { - -@media screen and (max-color:2147477350), not (max-color:2147477350) { +@media screen and (max-color:2147477350) { .b { order: 4; } } } -@media not (min-width: 202px) { +@media not (min-width: 201px) { -@media screen and (max-color:2147477350), not (color:2147477350) { +@media screen and (color:2147477350) { .b { order: 4; } } } -} - -@media not (min-width: 201px) { @media (min-width: 202px) { -@media screen and (color:2147477350), not (max-color:2147477350) { +@media not (max-color:2147477350) { .b { order: 4; } @@ -78,10 +73,9 @@ @media not (min-width: 202px) { -@media screen and (color:2147477350), not (color:2147477350) { +@media not (color:2147477350) { .b { order: 4; } } } -} diff --git a/plugins/postcss-custom-media/test/modifiers.expect.css b/plugins/postcss-custom-media/test/modifiers.expect.css index a4b77a43c1..1b25749952 100644 --- a/plugins/postcss-custom-media/test/modifiers.expect.css +++ b/plugins/postcss-custom-media/test/modifiers.expect.css @@ -54,9 +54,15 @@ } } +@media only screen and (min-width: 200px) { + .a { + order: 4; + } +} + @media only screen and (min-width: 200px) { -@media only screen and (min-width: 200px), (not (max-color:2147477350)) { +@media (not (max-color:2147477350)) { .a { order: 4; } @@ -65,7 +71,7 @@ @media not screen and (min-width: 200px) { -@media only screen and (min-width: 200px), (not (color:2147477350)) { +@media (not (color:2147477350)) { .a { order: 4; } From 97a19b489e68551de280488c32db193d83ed3219 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sat, 24 Sep 2022 23:59:36 +0200 Subject: [PATCH 40/59] cleanup whitespace --- plugins/postcss-custom-media/test/list.expect.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css index ac17854a8f..94e4166966 100644 --- a/plugins/postcss-custom-media/test/list.expect.css +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -64,7 +64,7 @@ @media (min-width: 202px) { -@media not (max-color:2147477350) { +@media not (max-color:2147477350) { .b { order: 4; } @@ -73,7 +73,7 @@ @media not (min-width: 202px) { -@media not (color:2147477350) { +@media not (color:2147477350) { .b { order: 4; } From 7ae42258763a4241e097351c68138e5e5da749b9 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 00:25:15 +0200 Subject: [PATCH 41/59] bring back old tests --- plugins/postcss-custom-media/.tape.mjs | 7 +- .../src/transform-at-media.ts | 2 + .../test/basic-after-v9.css | 22 ++ .../test/basic-after-v9.expect.css | 38 +++ ...css => basic-after-v9.preserve.expect.css} | 0 plugins/postcss-custom-media/test/basic.css | 130 +++++++++- .../test/basic.expect.css | 231 ++++++++++++++++-- 7 files changed, 398 insertions(+), 32 deletions(-) create mode 100644 plugins/postcss-custom-media/test/basic-after-v9.css create mode 100644 plugins/postcss-custom-media/test/basic-after-v9.expect.css rename plugins/postcss-custom-media/test/{basic.preserve.expect.css => basic-after-v9.preserve.expect.css} (100%) diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 6056e76caa..600f97887f 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -2,15 +2,18 @@ import postcssTape from '../../packages/postcss-tape/dist/index.cjs'; import plugin from 'postcss-custom-media'; postcssTape(plugin)({ - 'basic': { + 'basic-after-v9': { message: 'supports basic usage' }, - 'basic:preserve': { + 'basic-after-v9:preserve': { message: 'supports { preserve: true } usage', options: { preserve: true } }, + 'basic': { + message: 'supports basic usage (old)' + }, 'examples/example': { message: 'minimal example', }, diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 7f62234e08..8bc90d2989 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -133,6 +133,8 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma break; case TokenType.Ident: { + // TODO : custom media need to have enclosing parens. + // !! big bug const identToken = tokens[i] as TokenIdent; if (!replacements.has(identToken[4].value)) { diff --git a/plugins/postcss-custom-media/test/basic-after-v9.css b/plugins/postcss-custom-media/test/basic-after-v9.css new file mode 100644 index 0000000000..9610f77d41 --- /dev/null +++ b/plugins/postcss-custom-media/test/basic-after-v9.css @@ -0,0 +1,22 @@ +@custom-media --simple-feature-test (min-width: 300px); + +/* Most basic case */ +@media (--simple-feature-test) { + .a { + order: 1; + } +} + +/* Also a type condition */ +@media screen and (--simple-feature-test) { + .a { + order: 2; + } +} + +/* Negation */ +@media not (--simple-feature-test) { + .a { + order: 3; + } +} diff --git a/plugins/postcss-custom-media/test/basic-after-v9.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.expect.css new file mode 100644 index 0000000000..691bfd7825 --- /dev/null +++ b/plugins/postcss-custom-media/test/basic-after-v9.expect.css @@ -0,0 +1,38 @@ +/* Most basic case */ +@media (min-width: 300px) { + .a { + order: 1; + } +} + +/* Also a type condition */ +@media (min-width: 300px) { +@media screen and (max-color:2147477350) { + .a { + order: 2; + } +} +} +@media not (min-width: 300px) { +@media screen and (color:2147477350) { + .a { + order: 2; + } +} +} + +/* Negation */ +@media (min-width: 300px) { +@media not (max-color:2147477350) { + .a { + order: 3; + } +} +} +@media not (min-width: 300px) { +@media not (color:2147477350) { + .a { + order: 3; + } +} +} diff --git a/plugins/postcss-custom-media/test/basic.preserve.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css similarity index 100% rename from plugins/postcss-custom-media/test/basic.preserve.expect.css rename to plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css diff --git a/plugins/postcss-custom-media/test/basic.css b/plugins/postcss-custom-media/test/basic.css index 9610f77d41..2b80609fe6 100644 --- a/plugins/postcss-custom-media/test/basic.css +++ b/plugins/postcss-custom-media/test/basic.css @@ -1,22 +1,132 @@ -@custom-media --simple-feature-test (min-width: 300px); +@custom-media --mq-a (max-width: 30em), (max-height: 30em); +@custom-media --mq-b screen and (max-width: 30em); +@custom-media --not-mq-a not all and (--mq-a); -/* Most basic case */ -@media (--simple-feature-test) { - .a { +@media (--mq-a) { + body { order: 1; } } -/* Also a type condition */ -@media screen and (--simple-feature-test) { - .a { +@media (--mq-b) { + body { order: 2; } } -/* Negation */ -@media not (--simple-feature-test) { - .a { +@media (--mq-a), (--mq-a) { + body { order: 3; } } + +@media not all and (--mq-a) { + body { + order: 4; + } +} + +@media (--not-mq-a) { + body { + order: 5; + } +} + +@media not all and (--not-mq-a) { + body { + order: 6; + } +} + +@custom-media --circular-mq-a (--circular-mq-b); +@custom-media --circular-mq-b (--circular-mq-a); + +@media (--circular-mq-a) { + body { + order: 7; + } +} + +@media (--circular-mq-b) { + body { + order: 8; + } +} + +@media (--unresolved-mq) { + body { + order: 9; + } +} + +@custom-media --min (min-width: 320px); +@custom-media --max (max-width: 640px); + +@media (--min) and (--max) { + body { + order: 10; + } +} + +@custom-media --concat (min-width: 320px) and (max-width: 640px); + +@media (--concat) { + body { + order: 11; + } +} + +@media (--concat) and (min-aspect-ratio: 16/9) { + body { + order: 12; + } +} + +@media ( --mq-a ) { + body { + order: 1000; + } +} + +@media ( --mq-a ) { + body { + order: 1001; + } +} + +@media ( --mq-a ), ( --mq-a ) { + body { + order: 1002; + } +} + +@media ( --mq-a ), ( --mq-a ) { + body { + order: 1003; + } +} + +@media ( --mq-a ), ( --mq-a ) { + body { + order: 1004; + } +} + +@media ( + --mq-a +), +( + --mq-a +) { + body { + order: 1005; + } +} + +@media (trailer--) { + body { + order: 1006; + } +} + +@custom-media trailer-- (min-width: 320px); diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index 691bfd7825..ab426afd4f 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -1,38 +1,229 @@ -/* Most basic case */ -@media (min-width: 300px) { - .a { +@media (max-width: 30em),(max-height: 30em) { + body { order: 1; } } -/* Also a type condition */ -@media (min-width: 300px) { -@media screen and (max-color:2147477350) { - .a { +@media screen and (max-width: 30em) { + body { order: 2; } } + +@media (max-width: 30em),(max-height: 30em),(max-width: 30em),(max-height: 30em) { + body { + order: 3; + } } -@media not (min-width: 300px) { -@media screen and (color:2147477350) { - .a { - order: 2; + +@media (max-width: 30em),(max-height: 30em) { + +@media not all and (max-color:2147477350) { + body { + order: 4; } } } -/* Negation */ -@media (min-width: 300px) { -@media not (max-color:2147477350) { - .a { - order: 3; +@media not (max-width: 30em),not (max-height: 30em) { + +@media not all and (color:2147477350) { + body { + order: 4; } } } -@media not (min-width: 300px) { -@media not (color:2147477350) { - .a { - order: 3; + +@media (max-width: 30em),(max-height: 30em) { + +@media not all and (max-color:2147477350) { + body { + order: 5; + } +} +} + +@media not (max-width: 30em),not (max-height: 30em) { + +@media not all and (color:2147477350) { + body { + order: 5; + } +} +} + +@media (max-width: 30em),(max-height: 30em) { + +@media not all and (max-color:2147477350) { + +@media not all and (max-color:2147477350) { + body { + order: 6; + } +} +} +} + +@media not (max-width: 30em),not (max-height: 30em) { + +@media not all and (color:2147477350) { + +@media not all and (max-color:2147477350) { + body { + order: 6; + } +} +} +} + +@media (max-width: 30em),(max-height: 30em) { + +@media all and (max-color:2147477350) { + +@media not all and (color:2147477350) { + body { + order: 6; + } +} +} +} + +@media not (max-width: 30em),not (max-height: 30em) { + +@media all and (color:2147477350) { + +@media not all and (color:2147477350) { + body { + order: 6; + } +} +} +} + +@media (--circular-mq-b) { + body { + order: 7; + } +} + +@media (--circular-mq-b) { + body { + order: 8; + } +} + +@media (--unresolved-mq) { + body { + order: 9; + } +} + +@media (min-width: 320px) { + +@media (max-width: 640px) { + +@media (max-color:2147477350) and (max-color:2147477350) { + body { + order: 10; + } +} +} + +@media not (max-width: 640px) { + +@media (max-color:2147477350) and (color:2147477350) { + body { + order: 10; + } +} +} +} + +@media not (min-width: 320px) { + +@media (max-width: 640px) { + +@media (color:2147477350) and (max-color:2147477350) { + body { + order: 10; + } +} +} + +@media not (max-width: 640px) { + +@media (color:2147477350) and (color:2147477350) { + body { + order: 10; + } +} +} +} + +@media (min-width: 320px) and (max-width: 640px) { + body { + order: 11; + } +} + +@media (min-width: 320px) and (max-width: 640px) { + +@media (max-color:2147477350) and (min-aspect-ratio: 16/9) { + body { + order: 12; + } +} +} + +@media not (min-width: 320px) and (max-width: 640px) { + +@media (color:2147477350) and (min-aspect-ratio: 16/9) { + body { + order: 12; + } +} +} + +@media (max-width: 30em),(max-height: 30em) { + body { + order: 1000; + } +} + +@media (max-width: 30em),(max-height: 30em) { + body { + order: 1001; + } +} + +@media (max-width: 30em),(max-height: 30em),(max-width: 30em),(max-height: 30em) { + body { + order: 1002; + } +} + +@media (max-width: 30em),(max-height: 30em),(max-width: 30em),(max-height: 30em) { + body { + order: 1003; + } +} + +@media (max-width: 30em),(max-height: 30em),(max-width: 30em),(max-height: 30em) { + body { + order: 1004; } } + +@media (max-width: 30em),(max-height: 30em),(max-width: 30em),(max-height: 30em) { + body { + order: 1005; + } } + +@media (trailer--) { + body { + order: 1006; + } +} + +@custom-media trailer-- (min-width: 320px); From d5124f2d83c041aeab04a2112cd4ed99c2e78f5a Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 11:21:39 +0200 Subject: [PATCH 42/59] more tests and fixes --- package-lock.json | 17 +- plugins/postcss-custom-media/.tape.mjs | 36 ++++- plugins/postcss-custom-media/CHANGELOG.md | 4 + plugins/postcss-custom-media/package.json | 3 +- .../src/custom-media-from-root.ts | 11 +- plugins/postcss-custom-media/src/index.ts | 25 +-- .../src/is-processable-custom-media-rule.ts | 4 - plugins/postcss-custom-media/src/toposort.ts | 24 +-- .../src/transform-at-media.ts | 150 +++++++++++++----- plugins/postcss-custom-media/test/comma-1.css | 39 +++++ .../test/comma-1.expect.css | 29 ++++ plugins/postcss-custom-media/test/comma-2.css | 46 ++++++ .../test/comma-2.expect.css | 43 +++++ plugins/postcss-custom-media/test/eof-1.css | 4 + .../test/eof-1.expect.css | 2 + plugins/postcss-custom-media/test/eof-2.css | 3 + .../test/eof-2.expect.css | 1 + plugins/postcss-custom-media/test/eof-3.css | 3 + .../test/eof-3.expect.css | 1 + plugins/postcss-custom-media/test/eof-4.css | 3 + .../test/eof-4.expect.css | 1 + .../test/not-processable.css | 21 +++ .../test/not-processable.expect.css | 21 +++ .../test/parser-checks.css | 58 +++++++ .../test/parser-checks.expect.css | 49 ++++++ .../postcss-custom-media/test/true-false.css | 44 +++++ .../test/true-false.expect.css | 57 +++++++ 27 files changed, 620 insertions(+), 79 deletions(-) create mode 100644 plugins/postcss-custom-media/test/comma-1.css create mode 100644 plugins/postcss-custom-media/test/comma-1.expect.css create mode 100644 plugins/postcss-custom-media/test/comma-2.css create mode 100644 plugins/postcss-custom-media/test/comma-2.expect.css create mode 100644 plugins/postcss-custom-media/test/eof-1.css create mode 100644 plugins/postcss-custom-media/test/eof-1.expect.css create mode 100644 plugins/postcss-custom-media/test/eof-2.css create mode 100644 plugins/postcss-custom-media/test/eof-2.expect.css create mode 100644 plugins/postcss-custom-media/test/eof-3.css create mode 100644 plugins/postcss-custom-media/test/eof-3.expect.css create mode 100644 plugins/postcss-custom-media/test/eof-4.css create mode 100644 plugins/postcss-custom-media/test/eof-4.expect.css create mode 100644 plugins/postcss-custom-media/test/not-processable.css create mode 100644 plugins/postcss-custom-media/test/not-processable.expect.css create mode 100644 plugins/postcss-custom-media/test/parser-checks.css create mode 100644 plugins/postcss-custom-media/test/parser-checks.expect.css create mode 100644 plugins/postcss-custom-media/test/true-false.css create mode 100644 plugins/postcss-custom-media/test/true-false.expect.css diff --git a/package-lock.json b/package-lock.json index 0c965b1a65..6b167b9bea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1848,10 +1848,6 @@ "resolved": "plugins/postcss-is-pseudo-class", "link": true }, - "node_modules/@csstools/postcss-media-query-parser": { - "resolved": "packages/postcss-media-query-parser", - "link": true - }, "node_modules/@csstools/postcss-nested-calc": { "resolved": "plugins/postcss-nested-calc", "link": true @@ -6833,7 +6829,7 @@ "version": "1.0.0", "license": "MIT", "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", @@ -6857,6 +6853,7 @@ }, "packages/postcss-media-query-parser": { "version": "1.0.0", + "extraneous": true, "license": "MIT", "dependencies": { "@csstools/css-tokenizer": "^1.0.0" @@ -7185,7 +7182,7 @@ "version": "8.0.2", "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "@csstools/css-tokenizer": "^1.0.0" }, "engines": { "node": "^14 || ^16 || >=18" @@ -9032,12 +9029,6 @@ "puppeteer": "^17.1.3" } }, - "@csstools/postcss-media-query-parser": { - "version": "file:packages/postcss-media-query-parser", - "requires": { - "@csstools/css-tokenizer": "^1.0.0" - } - }, "@csstools/postcss-nested-calc": { "version": "file:plugins/postcss-nested-calc", "requires": { @@ -11590,7 +11581,7 @@ "postcss-custom-media": { "version": "file:plugins/postcss-custom-media", "requires": { - "postcss-value-parser": "^4.2.0" + "@csstools/css-tokenizer": "^1.0.0" } }, "postcss-custom-properties": { diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 600f97887f..965f8cce48 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -12,7 +12,8 @@ postcssTape(plugin)({ } }, 'basic': { - message: 'supports basic usage (old)' + message: 'supports basic usage (old)', + warnings: 1, }, 'examples/example': { message: 'minimal example', @@ -23,11 +24,33 @@ postcssTape(plugin)({ preserve: true } }, + 'not-processable': { + message: 'only handles processable @custom-media rules' + }, + 'parser-checks': { + message: 'supports more obscure CSS' + }, + 'eof-1': { + message: 'handles EOF correctly (1)' + }, + 'eof-2': { + message: 'handles EOF correctly (2)', + warnings: 1, + }, + 'eof-3': { + message: 'handles EOF correctly (3)', + warnings: 1, + }, + 'eof-4': { + message: 'handles EOF correctly (4)', + warnings: 1, + }, 'complex': { message: 'supports complex usage' }, 'cyclic': { - message: 'handles cyclic references' + message: 'handles cyclic references', + warnings: 3, }, 'override': { message: 'handles reference overrides' @@ -37,5 +60,14 @@ postcssTape(plugin)({ }, 'list': { message: 'supports media query lists' + }, + 'true-false': { + message: 'supports true|false keywords' + }, + 'comma-1': { + message: 'can correctly split media query lists' + }, + 'comma-2': { + message: 'can correctly split media query lists' } }); diff --git a/plugins/postcss-custom-media/CHANGELOG.md b/plugins/postcss-custom-media/CHANGELOG.md index 7ded46ba58..4e8143f476 100644 --- a/plugins/postcss-custom-media/CHANGELOG.md +++ b/plugins/postcss-custom-media/CHANGELOG.md @@ -3,6 +3,10 @@ ### Unreleased (major) - Updated: Support for Node v14+ (major). +- Removed: `importFrom` feature (breaking). +- Removed: `exportTo` feature (breaking). +- Fixed: implement logical evaluation of custom media queries. +- Added: Support for `true` and `false` keywords in `@custom-media`. ### 8.0.2 (June 4, 2022) diff --git a/plugins/postcss-custom-media/package.json b/plugins/postcss-custom-media/package.json index b39278934e..dea2f6d012 100644 --- a/plugins/postcss-custom-media/package.json +++ b/plugins/postcss-custom-media/package.json @@ -45,8 +45,7 @@ "dist" ], "dependencies": { - "@csstools/css-tokenizer": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "@csstools/css-tokenizer": "^1.0.0" }, "peerDependencies": { "postcss": "^8.4" diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts index 038c55296a..3a54bc3327 100644 --- a/plugins/postcss-custom-media/src/custom-media-from-root.ts +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -4,7 +4,7 @@ import { removeCyclicReferences } from './toposort'; import { parseCustomMedia } from './transform-at-media'; // return custom media from the css root, conditionally removing them -export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boolean }): Map { +export default function getCustomMedia(root: PostCSSRoot, result, opts: { preserve?: boolean }): Map { // initialize custom media const customMedia: Map = new Map(); const customMediaGraph: Array<[string, string]> = []; @@ -19,6 +19,10 @@ export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boo return; } + if (!parsed.truthy.trim()) { + return; + } + customMedia.set(parsed.name, { truthy: parsed.truthy, falsy: parsed.falsy, @@ -33,7 +37,10 @@ export default function getCustomMedia(root: PostCSSRoot, opts: { preserve?: boo } }); - removeCyclicReferences(customMedia, customMediaGraph); + const cyclicReferences = removeCyclicReferences(customMedia, customMediaGraph); + for (const cyclicReference of cyclicReferences.values()) { + root.warn(result, `@custom-media rules have cyclic dependencies for "${cyclicReference}"`); + } return customMedia; } diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index 2b90e6fd00..b442a7e83d 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -25,10 +25,10 @@ const creator: PluginCreator = (opts?: PluginOptions) => { let customMedia = new Map(); return { - Once: (root) => { - customMedia = getCustomMedia(root, { preserve: preserve }); + Once: (root, { result }) => { + customMedia = getCustomMedia(root, result, { preserve: preserve }); }, - AtRule: (atRule) => { + AtRule: (atRule, { result }) => { if (!atRule.params) { return; } @@ -37,13 +37,21 @@ const creator: PluginCreator = (opts?: PluginOptions) => { return; } - const transformedParams = transformAtMediaListTokens(atRule.params, customMedia); + let transformedParams: Array<{ replaceWith: string, encapsulateWith?: string }> = []; + + try { + transformedParams = transformAtMediaListTokens(atRule.params, customMedia); + } catch (err) { + atRule.warn(result, `Failed to parse @custom-media params with error message: "${err.message}"`); + return; + } + if (!transformedParams || transformedParams.length === 0) { return; } if (transformedParams.length === 1) { - if (atRule.params === transformedParams[0].replaceWith) { + if (atRule.params.trim() === transformedParams[0].replaceWith.trim()) { return; } @@ -63,9 +71,9 @@ const creator: PluginCreator = (opts?: PluginOptions) => { if (!needsEncapsulation) { atRule.cloneBefore({ params: transformedParams.map((x) => x.replaceWith).join(',').trim() }); + if (!preserve) { atRule.remove(); - return; } return; @@ -79,11 +87,6 @@ const creator: PluginCreator = (opts?: PluginOptions) => { const clone = atRule.clone({ params: transformed.replaceWith }); const encapsulate = atRule.clone({ params: transformed.encapsulateWith.trim(), nodes: [] }); - if (encapsulate.nodes && encapsulate.nodes.length) { - encapsulate.each((child) => { - child.remove(); - }); - } clone.parent = null; encapsulate.parent = null; diff --git a/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts index 22ced2f6c1..02053ed77a 100644 --- a/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts +++ b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts @@ -3,10 +3,6 @@ import type { AtRule, ChildNode, Container, Document } from 'postcss'; const allowedParentAtRules = new Set(['scope', 'container']); export function isProcessableCustomMediaRule(atRule: AtRule): boolean { - if (atRule.type !== 'atrule') { - return false; - } - if (atRule.name.toLowerCase() !== 'custom-media') { return false; } diff --git a/plugins/postcss-custom-media/src/toposort.ts b/plugins/postcss-custom-media/src/toposort.ts index 8249bab90d..f3166f2f39 100644 --- a/plugins/postcss-custom-media/src/toposort.ts +++ b/plugins/postcss-custom-media/src/toposort.ts @@ -19,7 +19,15 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -export function removeCyclicReferences(nodes: Map, edges: Array>) { +// We (ab)use `toposort` to find cyclic references. +// At the moment this is not optimized and uses a brute force approach. +// +// while there are cyclic ref errors +// - remove node from graph +// - re-do toposort +export function removeCyclicReferences(nodes: Map, edges: Array>): Set { + const cyclicReferences: Set = new Set(); + // eslint-disable-next-line no-constant-condition let _edges = edges; while (nodes.size > 0) { @@ -27,9 +35,11 @@ export function removeCyclicReferences(nodes: Map, edges: Array toposort(Array.from(nodes.keys()), _edges); break; } catch (e) { + /* see the hack below */ if (e['_graphNode']) { nodes.delete(e['_graphNode']); + cyclicReferences.add(e['_graphNode']); _edges = _edges.filter((x) => { return x.indexOf(e['_graphNode']) === -1; }); @@ -38,6 +48,8 @@ export function removeCyclicReferences(nodes: Map, edges: Array } } } + + return cyclicReferences; } function toposort(nodes: Array, edges: Array>): Array { @@ -66,14 +78,8 @@ function toposort(nodes: Array, edges: Array>): Array) { if (predecessors.has(node)) { - let nodeRep; - try { - nodeRep = ', token was: ' + JSON.stringify(node); - } catch (e) { - nodeRep = ''; - } - const err = new Error('Cyclic dependency' + nodeRep); - err['_graphNode'] = node; + const err = new Error('Cyclic dependency' + JSON.stringify(node)); + err['_graphNode'] = node; /* a hack to communicate which node is causing the cyclic error */ throw err; } diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 8bc90d2989..8edd959b6f 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -78,63 +78,123 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma tokenTypes.delete(TokenType.CloseParen); tokenTypes.delete(TokenType.Ident); - // replacement slot is a simple @media query : + // replacement slot is in a simple @media query : // - @media (--custom-mq) { ... } // - @media ((--custom-mq)) { ... } if (tokenTypes.size == 0 && identCounter === 1) { + let candidate: Array<{ replaceWith: string, encapsulateWith?: string }> | null = null; + let parenDepth = 0; for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.OpenParen) { - parenDepth++; + if (tokens[i][0] === TokenType.Whitespace || tokens[i][0] === TokenType.Comment) { continue; } + + if (tokens[i][0] === TokenType.CloseParen) { + if (candidate) { + return candidate; + } + } + + candidate = null; + if (tokens[i][0] === TokenType.CloseParen) { parenDepth--; continue; } + if (tokens[i][0] === TokenType.OpenParen) { + parenDepth++; + continue; + } if (tokens[i][0] === TokenType.Ident && parenDepth > 0) { const identToken = tokens[i] as TokenIdent; if (replacements.has(identToken[4].value)) { - return [{ + candidate = [{ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion replaceWith: replacements.get(identToken[4].value)!.truthy, }]; - } else { - return []; } } } - } - let functionDepth = 0; + return []; + } + // replacement slot is in a comples @media query : + // - @media not (--custom-mq) { ... } + // - @media ((--custom-mq-1) or (--custom-mq-2) or (not (--custom-mq-3))) { ... } for (let i = 0; i < tokens.length; i++) { switch (tokens[i][0]) { - case TokenType.Function: - functionDepth++; - while (functionDepth !== 0) { + case TokenType.Function: { + let depth = 1; + while (depth !== 0) { i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + switch (tokens[i][0]) { case TokenType.OpenParen: case TokenType.Function: - functionDepth++; + depth++; break; case TokenType.CloseParen: - functionDepth--; + depth--; break; - case TokenType.EOF: - throw new Error('unexpected EOF'); default: break; } } break; + } + + case TokenType.OpenCurly: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenCurly: + depth++; + break; + case TokenType.CloseCurly: + depth--; + break; + default: + break; + } + } + break; + } + + case TokenType.OpenSquare: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenSquare: + depth++; + break; + case TokenType.CloseSquare: + depth--; + break; + default: + break; + } + } + break; + } case TokenType.Ident: { - // TODO : custom media need to have enclosing parens. - // !! big bug const identToken = tokens[i] as TokenIdent; if (!replacements.has(identToken[4].value)) { @@ -242,9 +302,9 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, MEDIA_QUERY_LIST_LOOP: for (let i = 0; i < list.length; i++) { - const mediaQuery = list[i]; + const mediaQuery = handleTrueAndFalseTokens(list[i]); - const truthy = stringify(...handleTrueAndFalseTokens(mediaQuery)); + const truthy = stringify(...mediaQuery); for (let j = 0; j < mediaQuery.length; j++) { if (mediaQuery[j][0] === TokenType.Comment) { @@ -304,6 +364,7 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, export function handleTrueAndFalseTokens(tokens: Array): Array { let booleanToken; + let remainder; for (let i = 0; i < tokens.length; i++) { if (tokens[i][0] === TokenType.Comment) { @@ -313,23 +374,19 @@ export function handleTrueAndFalseTokens(tokens: Array): Array): Array): Array 0) { depth--; parenDepth--; + continue; } if (tokens[i][0] === TokenType.OpenCurly) { depth++; curlyDepth++; + continue; } - if (tokens[i][0] === TokenType.CloseParen && curlyDepth > 0) { + if (tokens[i][0] === TokenType.CloseCurly && curlyDepth > 0) { depth--; curlyDepth--; + continue; } if (tokens[i][0] === TokenType.OpenSquare) { depth++; squareDepth++; + continue; } if (tokens[i][0] === TokenType.CloseSquare && squareDepth > 0) { depth--; squareDepth--; + continue; } if (tokens[i][0] === TokenType.Comma && depth === 0) { listItems.push(tokens.slice(lastSliceIndex, i)); lastSliceIndex = i + 1; + continue; } } diff --git a/plugins/postcss-custom-media/test/comma-1.css b/plugins/postcss-custom-media/test/comma-1.css new file mode 100644 index 0000000000..962a50fed0 --- /dev/null +++ b/plugins/postcss-custom-media/test/comma-1.css @@ -0,0 +1,39 @@ +@custom-media --list-1 screen, print; + +@media (--list-1) { + .a { + order: 1; + } +} + +@custom-media --list-2 screen, (func(aa,bb,cc)); + +@media (--list-2) { + .a { + order: 2; + } +} + +@custom-media --list-3 screen, [aa,bb,cc]; + +@media (--list-3) { + .a { + order: 3; + } +} + +@custom-media --list-4 screen, ([aa,bb,cc]); + +@media (--list-4) { + .a { + order: 4; + } +} + +@custom-media --list-5 screen, ({aa,bb,cc}); + +@media (--list-5) { + .a { + order: 5; + } +} diff --git a/plugins/postcss-custom-media/test/comma-1.expect.css b/plugins/postcss-custom-media/test/comma-1.expect.css new file mode 100644 index 0000000000..6a87b6d357 --- /dev/null +++ b/plugins/postcss-custom-media/test/comma-1.expect.css @@ -0,0 +1,29 @@ +@media screen,print { + .a { + order: 1; + } +} + +@media screen,(func(aa,bb,cc)) { + .a { + order: 2; + } +} + +@media screen,[aa,bb,cc] { + .a { + order: 3; + } +} + +@media screen,([aa,bb,cc]) { + .a { + order: 4; + } +} + +@media screen,({aa,bb,cc}) { + .a { + order: 5; + } +} diff --git a/plugins/postcss-custom-media/test/comma-2.css b/plugins/postcss-custom-media/test/comma-2.css new file mode 100644 index 0000000000..16f4b87644 --- /dev/null +++ b/plugins/postcss-custom-media/test/comma-2.css @@ -0,0 +1,46 @@ +@custom-media --list-1 screen; +@custom-media --list-2 print; + +@media (--list-1),(--list-2) { + .a { + order: 1; + } +} + +@media (--list-1), (func(aa,(--list-2),cc)) { + .a { + order: 2; + } +} + +@media (--list-1), [aa,(--list-2),cc] { + .a { + order: 3; + } +} + +@media (--list-1), ([aa,(--list-2),cc]) { + .a { + order: 4; + } +} + +@media (--list-1), ([aa,[(--list-2)],cc]) { + .a { + order: 5; + } +} + +@media (--list-1), ({aa,(--list-2),cc}) { + .a { + order: 6; + } +} + +@media (--list-1), ({aa,{(--list-2)},cc}) { + .a { + order: 7; + } +} + + diff --git a/plugins/postcss-custom-media/test/comma-2.expect.css b/plugins/postcss-custom-media/test/comma-2.expect.css new file mode 100644 index 0000000000..0bb1662005 --- /dev/null +++ b/plugins/postcss-custom-media/test/comma-2.expect.css @@ -0,0 +1,43 @@ +@media screen,print { + .a { + order: 1; + } +} + +@media screen, (func(aa,(--list-2),cc)) { + .a { + order: 2; + } +} + +@media screen, [aa,(--list-2),cc] { + .a { + order: 3; + } +} + +@media screen, ([aa,(--list-2),cc]) { + .a { + order: 4; + } +} + +@media screen, ([aa,[(--list-2)],cc]) { + .a { + order: 5; + } +} + +@media screen, ({aa,(--list-2),cc}) { + .a { + order: 6; + } +} + +@media screen, ({aa,{(--list-2)},cc}) { + .a { + order: 7; + } +} + + diff --git a/plugins/postcss-custom-media/test/eof-1.css b/plugins/postcss-custom-media/test/eof-1.css new file mode 100644 index 0000000000..424bd22f04 --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-1.css @@ -0,0 +1,4 @@ +@custom-media --one screen; + +@media (--one + diff --git a/plugins/postcss-custom-media/test/eof-1.expect.css b/plugins/postcss-custom-media/test/eof-1.expect.css new file mode 100644 index 0000000000..f3ea0731ed --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-1.expect.css @@ -0,0 +1,2 @@ +@media (--one + diff --git a/plugins/postcss-custom-media/test/eof-2.css b/plugins/postcss-custom-media/test/eof-2.css new file mode 100644 index 0000000000..50cb010f7a --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-2.css @@ -0,0 +1,3 @@ +@custom-media --one screen; + +@media (calc(--one diff --git a/plugins/postcss-custom-media/test/eof-2.expect.css b/plugins/postcss-custom-media/test/eof-2.expect.css new file mode 100644 index 0000000000..460b84e8e0 --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-2.expect.css @@ -0,0 +1 @@ +@media (calc(--one diff --git a/plugins/postcss-custom-media/test/eof-3.css b/plugins/postcss-custom-media/test/eof-3.css new file mode 100644 index 0000000000..849c7feccf --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-3.css @@ -0,0 +1,3 @@ +@custom-media --one screen; + +@media ([--one diff --git a/plugins/postcss-custom-media/test/eof-3.expect.css b/plugins/postcss-custom-media/test/eof-3.expect.css new file mode 100644 index 0000000000..f907f2f71a --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-3.expect.css @@ -0,0 +1 @@ +@media ([--one diff --git a/plugins/postcss-custom-media/test/eof-4.css b/plugins/postcss-custom-media/test/eof-4.css new file mode 100644 index 0000000000..4ddee3de8f --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-4.css @@ -0,0 +1,3 @@ +@custom-media --one screen; + +@media ({--one diff --git a/plugins/postcss-custom-media/test/eof-4.expect.css b/plugins/postcss-custom-media/test/eof-4.expect.css new file mode 100644 index 0000000000..20ae091c41 --- /dev/null +++ b/plugins/postcss-custom-media/test/eof-4.expect.css @@ -0,0 +1 @@ +@media ({--one diff --git a/plugins/postcss-custom-media/test/not-processable.css b/plugins/postcss-custom-media/test/not-processable.css new file mode 100644 index 0000000000..08a489a342 --- /dev/null +++ b/plugins/postcss-custom-media/test/not-processable.css @@ -0,0 +1,21 @@ +:root { + @custom-media --foo screen; +} + +@media print { + @custom-media --foo screen; +} + +@custom-media --foo screen { + /* has children */ +} + +@custom-media --foo; +@custom-media screen; +@custom-media ; + +@media (--foo) { + .a { + order: 1; + } +} diff --git a/plugins/postcss-custom-media/test/not-processable.expect.css b/plugins/postcss-custom-media/test/not-processable.expect.css new file mode 100644 index 0000000000..08a489a342 --- /dev/null +++ b/plugins/postcss-custom-media/test/not-processable.expect.css @@ -0,0 +1,21 @@ +:root { + @custom-media --foo screen; +} + +@media print { + @custom-media --foo screen; +} + +@custom-media --foo screen { + /* has children */ +} + +@custom-media --foo; +@custom-media screen; +@custom-media ; + +@media (--foo) { + .a { + order: 1; + } +} diff --git a/plugins/postcss-custom-media/test/parser-checks.css b/plugins/postcss-custom-media/test/parser-checks.css new file mode 100644 index 0000000000..5c5b625a57 --- /dev/null +++ b/plugins/postcss-custom-media/test/parser-checks.css @@ -0,0 +1,58 @@ +@custom-media/*a comment */--one/*a comment */screen; + +@media (--one) { + .one { + order: 1; + } +} + +@custom-media --two only screen; + +@media/*a comment */((/*a comment */--two/*a comment */))/*a comment */{ + .two { + order: 2; + } +} + +@custom-media --👨‍👨‍👧‍👦 (min-width: 300px); + +@media (--👨‍👨‍👧‍👦) { + .three { + order: 3; + } +} + +/* Double space is needed */ +@custom-media --\66 (min-width: 300px); + +@media (--f) { + .four { + order: 4; + } +} + +@custom-media --five (min-width: 300px); + +@media (width: calc(--five * 5)) { + .five { + order: 5.0; + } +} + +@media calc(--five) { + .five { + order: 5.1; + } +} + +@media (width: calc((--five) * 5)) { + .five { + order: 5.2; + } +} + +@media (width: calc(env(--five) * 5)) { + .five { + order: 5.3; + } +} diff --git a/plugins/postcss-custom-media/test/parser-checks.expect.css b/plugins/postcss-custom-media/test/parser-checks.expect.css new file mode 100644 index 0000000000..40af5f4d20 --- /dev/null +++ b/plugins/postcss-custom-media/test/parser-checks.expect.css @@ -0,0 +1,49 @@ +@media /*a comment */screen { + .one { + order: 1; + } +} + +@media/*a comment */only screen/*a comment */{ + .two { + order: 2; + } +} + +@media (min-width: 300px) { + .three { + order: 3; + } +} + +/* Double space is needed */ + +@media (min-width: 300px) { + .four { + order: 4; + } +} + +@media (width: calc(--five * 5)) { + .five { + order: 5.0; + } +} + +@media calc(--five) { + .five { + order: 5.1; + } +} + +@media (width: calc((--five) * 5)) { + .five { + order: 5.2; + } +} + +@media (width: calc(env(--five) * 5)) { + .five { + order: 5.3; + } +} diff --git a/plugins/postcss-custom-media/test/true-false.css b/plugins/postcss-custom-media/test/true-false.css new file mode 100644 index 0000000000..3c717c050a --- /dev/null +++ b/plugins/postcss-custom-media/test/true-false.css @@ -0,0 +1,44 @@ +@custom-media --truthy tRUe; +@custom-media --falsy fAlsE; + +@media screen and (--truthy) { + .true { + order: 1; + } +} + +@media screen and (--falsy) { + .false { + order: 2; + } +} + +@custom-media --truthy-trailing-ws tRUe ; +@custom-media --falsy-trailing-comment fAlsE/* a comment */ /* another comment */; + +@media (--truthy-trailing-ws) { + .true { + order: 3; + } +} + +@media (--falsy-trailing-comment) { + .false { + order: 4; + } +} + +@custom-media --truthy-broken tRUe and (min-width: 300px); +@custom-media --falsy-broken fAlsE and (min-width: 300px); + +@media (--truthy-broken) { + .true { + order: 5; + } +} + +@media (--falsy-broken) { + .false { + order: 6; + } +} diff --git a/plugins/postcss-custom-media/test/true-false.expect.css b/plugins/postcss-custom-media/test/true-false.expect.css new file mode 100644 index 0000000000..6ddf8b4d3b --- /dev/null +++ b/plugins/postcss-custom-media/test/true-false.expect.css @@ -0,0 +1,57 @@ +@media (max-color:2147477350) {@media screen and (max-color:2147477350) { + .true { + order: 1; + } +} +} + +@media not (max-color:2147477350) { + +@media screen and (color:2147477350) { + .true { + order: 1; + } +} +} + +@media (color:2147477350) { + +@media screen and (max-color:2147477350) { + .false { + order: 2; + } +} +} + +@media not (color:2147477350) { + +@media screen and (color:2147477350) { + .false { + order: 2; + } +} +} + +@media (max-color:2147477350) { + .true { + order: 3; + } +} + +@media (color:2147477350) { + .false { + order: 4; + } +} + +@media tRUe and (min-width: 300px) { + .true { + order: 5; + } +} + +@media fAlsE and (min-width: 300px) { + .false { + order: 6; + } +} From b3746dab966423794d8c9bccdcd6efb2f19691af Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 11:42:32 +0200 Subject: [PATCH 43/59] update lock file --- package-lock.json | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8002ddca81..6651725c24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,6 +36,7 @@ } }, "cli/csstools-cli": { + "name": "@csstools/csstools-cli", "version": "1.4.0", "license": "CC0-1.0", "dependencies": { @@ -91,6 +92,7 @@ } }, "experimental/css-has-pseudo": { + "name": "@csstools/css-has-pseudo-experimental", "version": "0.6.0", "license": "CC0-1.0", "engines": { @@ -6801,6 +6803,7 @@ } }, "packages/base-cli": { + "name": "@csstools/base-cli", "version": "0.1.0", "license": "CC0-1.0", "dependencies": { @@ -6827,6 +6830,7 @@ } }, "packages/generate-test-cases": { + "name": "@csstools/generate-test-cases", "version": "1.0.0", "license": "CC0-1.0", "devDependencies": { @@ -6840,22 +6844,8 @@ "url": "https://opencollective.com/csstools" } }, - "packages/postcss-media-query-parser": { - "version": "1.0.0", - "extraneous": true, - "license": "MIT", - "dependencies": { - "@csstools/css-tokenizer": "^1.0.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - }, "packages/postcss-tape": { + "name": "@csstools/postcss-tape", "version": "1.0.0", "license": "CC0-1.0", "dependencies": { @@ -6872,6 +6862,7 @@ } }, "packages/selector-specificity": { + "name": "@csstools/selector-specificity", "version": "2.0.2", "license": "CC0-1.0", "devDependencies": { @@ -7034,6 +7025,7 @@ } }, "plugins/postcss-base-plugin": { + "name": "@csstools/postcss-base-plugin", "version": "0.0.0", "license": "CC0-1.0", "bin": { @@ -7051,6 +7043,7 @@ } }, "plugins/postcss-cascade-layers": { + "name": "@csstools/postcss-cascade-layers", "version": "1.1.1", "license": "CC0-1.0", "dependencies": { @@ -7073,6 +7066,7 @@ } }, "plugins/postcss-color-function": { + "name": "@csstools/postcss-color-function", "version": "1.1.1", "license": "CC0-1.0", "dependencies": { @@ -7145,6 +7139,7 @@ } }, "plugins/postcss-conditional-values": { + "name": "@csstools/postcss-conditional-values", "version": "1.0.0", "license": "CC0-1.0", "devDependencies": { @@ -7216,6 +7211,7 @@ } }, "plugins/postcss-design-tokens": { + "name": "@csstools/postcss-design-tokens", "version": "1.2.0", "license": "CC0-1.0", "dependencies": { @@ -7326,6 +7322,7 @@ } }, "plugins/postcss-font-format-keywords": { + "name": "@csstools/postcss-font-format-keywords", "version": "1.0.1", "license": "CC0-1.0", "dependencies": { @@ -7357,6 +7354,7 @@ } }, "plugins/postcss-gradients-interpolation-method": { + "name": "@csstools/postcss-gradients-interpolation-method", "version": "1.0.1", "license": "CC0-1.0", "dependencies": { @@ -7375,6 +7373,7 @@ } }, "plugins/postcss-hwb-function": { + "name": "@csstools/postcss-hwb-function", "version": "1.0.2", "license": "CC0-1.0", "dependencies": { @@ -7392,6 +7391,7 @@ } }, "plugins/postcss-ic-unit": { + "name": "@csstools/postcss-ic-unit", "version": "1.0.1", "license": "CC0-1.0", "dependencies": { @@ -7427,6 +7427,7 @@ } }, "plugins/postcss-is-pseudo-class": { + "name": "@csstools/postcss-is-pseudo-class", "version": "2.0.7", "license": "CC0-1.0", "dependencies": { @@ -7480,6 +7481,7 @@ } }, "plugins/postcss-nested-calc": { + "name": "@csstools/postcss-nested-calc", "version": "1.0.0", "license": "CC0-1.0", "dependencies": { @@ -7515,6 +7517,7 @@ } }, "plugins/postcss-normalize-display-values": { + "name": "@csstools/postcss-normalize-display-values", "version": "1.0.1", "license": "CC0-1.0", "dependencies": { @@ -7532,6 +7535,7 @@ } }, "plugins/postcss-oklab-function": { + "name": "@csstools/postcss-oklab-function", "version": "1.1.1", "license": "CC0-1.0", "dependencies": { @@ -7584,6 +7588,7 @@ } }, "plugins/postcss-progressive-custom-properties": { + "name": "@csstools/postcss-progressive-custom-properties", "version": "1.3.0", "license": "CC0-1.0", "dependencies": { @@ -7635,6 +7640,7 @@ } }, "plugins/postcss-stepped-value-functions": { + "name": "@csstools/postcss-stepped-value-functions", "version": "1.0.1", "license": "CC0-1.0", "dependencies": { @@ -7652,6 +7658,7 @@ } }, "plugins/postcss-text-decoration-shorthand": { + "name": "@csstools/postcss-text-decoration-shorthand", "version": "1.0.0", "license": "CC0-1.0", "dependencies": { @@ -7672,6 +7679,7 @@ } }, "plugins/postcss-trigonometric-functions": { + "name": "@csstools/postcss-trigonometric-functions", "version": "1.0.2", "license": "CC0-1.0", "dependencies": { @@ -7689,6 +7697,7 @@ } }, "plugins/postcss-unset-value": { + "name": "@csstools/postcss-unset-value", "version": "1.0.2", "license": "CC0-1.0", "engines": { From 4a243d0c6bb299f7cbd5577c810b5ec56846eb22 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 11:59:51 +0200 Subject: [PATCH 44/59] remove todo comment --- plugins/postcss-custom-media/test/complex.css | 1 - plugins/postcss-custom-media/test/complex.expect.css | 1 - 2 files changed, 2 deletions(-) diff --git a/plugins/postcss-custom-media/test/complex.css b/plugins/postcss-custom-media/test/complex.css index 4b427cbd0d..5ed08057ee 100644 --- a/plugins/postcss-custom-media/test/complex.css +++ b/plugins/postcss-custom-media/test/complex.css @@ -21,7 +21,6 @@ } /* #region https://github.com/csstools/postcss-custom-media/issues/51 */ -/* TODO: This is broken at the moment */ @custom-media --screen only screen; @custom-media --md-and-larger1 --screen and (width >= 570px); @custom-media --md-and-larger2 (--screen) and (width >= 570px); diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 1c4889b540..5827785fb4 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -25,7 +25,6 @@ } /* #region https://github.com/csstools/postcss-custom-media/issues/51 */ -/* TODO: This is broken at the moment */ @media --screen and (width >= 570px) { body { From 8ba7294efa162cbf0fea1b5690292fbcb5f78af8 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 12:31:22 +0200 Subject: [PATCH 45/59] fix 'or' conditions --- plugins/postcss-custom-media/.tape.mjs | 3 + .../src/transform-at-media.ts | 4 ++ .../test/basic-after-v9.css | 9 +++ .../test/basic-after-v9.expect.css | 24 +++++++- .../test/basic-after-v9.preserve.expect.css | 31 +++++++++- .../test/basic.expect.css | 16 ++--- .../test/complex.expect.css | 12 ++-- .../postcss-custom-media/test/list.expect.css | 8 +-- plugins/postcss-custom-media/test/or.css | 17 ++++++ .../postcss-custom-media/test/or.expect.css | 61 +++++++++++++++++++ .../test/true-false.expect.css | 4 +- 11 files changed, 165 insertions(+), 24 deletions(-) create mode 100644 plugins/postcss-custom-media/test/or.css create mode 100644 plugins/postcss-custom-media/test/or.expect.css diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 965f8cce48..10d121baed 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -69,5 +69,8 @@ postcssTape(plugin)({ }, 'comma-2': { message: 'can correctly split media query lists' + }, + 'or': { + message: 'supports media queries with "or"' } }); diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 8edd959b6f..62e50374f5 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -340,6 +340,10 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, falsy.splice(j, 0, [TokenType.Ident, 'not', 0, 0, { value: 'not' }], [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.OpenParen, '(', 0, 0, undefined], + ); + falsy.push( + [TokenType.CloseParen, ')', 0, 0, undefined], ); truthyParts.push(truthy); diff --git a/plugins/postcss-custom-media/test/basic-after-v9.css b/plugins/postcss-custom-media/test/basic-after-v9.css index 9610f77d41..ae998d53d4 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.css @@ -20,3 +20,12 @@ order: 3; } } + +/* LightningCSS example */ +@custom-media --modern (color), (hover); + +@media (--modern) and (width > 1024px) { + .a { + color: green; + } +} diff --git a/plugins/postcss-custom-media/test/basic-after-v9.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.expect.css index 691bfd7825..696c8fe8ec 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.expect.css @@ -13,7 +13,7 @@ } } } -@media not (min-width: 300px) { +@media not ((min-width: 300px)) { @media screen and (color:2147477350) { .a { order: 2; @@ -29,10 +29,30 @@ } } } -@media not (min-width: 300px) { +@media not ((min-width: 300px)) { @media not (color:2147477350) { .a { order: 3; } } } + +/* LightningCSS example */ + +@media (color),(hover) { + +@media (max-color:2147477350) and (width > 1024px) { + .a { + color: green; + } +} +} + +@media not ((color)),not ((hover)) { + +@media (color:2147477350) and (width > 1024px) { + .a { + color: green; + } +} +} diff --git a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css index 915b9a3dbb..4498142d31 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css @@ -20,7 +20,7 @@ } } } -@media not (min-width: 300px) { +@media not ((min-width: 300px)) { @media screen and (color:2147477350) { .a { order: 2; @@ -41,7 +41,7 @@ } } } -@media not (min-width: 300px) { +@media not ((min-width: 300px)) { @media not (color:2147477350) { .a { order: 3; @@ -53,3 +53,30 @@ order: 3; } } + +/* LightningCSS example */ +@custom-media --modern (color), (hover); + +@media (color),(hover) { + +@media (max-color:2147477350) and (width > 1024px) { + .a { + color: green; + } +} +} + +@media not ((color)),not ((hover)) { + +@media (color:2147477350) and (width > 1024px) { + .a { + color: green; + } +} +} + +@media (--modern) and (width > 1024px) { + .a { + color: green; + } +} diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index ab426afd4f..a49f1e05cb 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -25,7 +25,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not ((max-width: 30em)),not ((max-height: 30em)) { @media not all and (color:2147477350) { body { @@ -43,7 +43,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not ((max-width: 30em)),not ((max-height: 30em)) { @media not all and (color:2147477350) { body { @@ -64,7 +64,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not ((max-width: 30em)),not ((max-height: 30em)) { @media not all and (color:2147477350) { @@ -88,7 +88,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not ((max-width: 30em)),not ((max-height: 30em)) { @media all and (color:2147477350) { @@ -129,7 +129,7 @@ } } -@media not (max-width: 640px) { +@media not ((max-width: 640px)) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -139,7 +139,7 @@ } } -@media not (min-width: 320px) { +@media not ((min-width: 320px)) { @media (max-width: 640px) { @@ -150,7 +150,7 @@ } } -@media not (max-width: 640px) { +@media not ((max-width: 640px)) { @media (color:2147477350) and (color:2147477350) { body { @@ -175,7 +175,7 @@ } } -@media not (min-width: 320px) and (max-width: 640px) { +@media not ((min-width: 320px) and (max-width: 640px)) { @media (color:2147477350) and (min-aspect-ratio: 16/9) { body { diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 5827785fb4..261e53ed32 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -17,7 +17,7 @@ } } -@media not (min-width: 3),not (min-width: 4) { +@media not ((min-width: 3)),not ((min-width: 4)) { @media (color:2147477350) and (width > 1024px) { .a { order: 3; } @@ -67,7 +67,7 @@ } } -@media not (width >=570px) { +@media not ((width >=570px)) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -88,7 +88,7 @@ } } -@media not (width >=570px) { +@media not ((width >=570px)) { @media (color:2147477350) and (color:2147477350) { body { @@ -109,7 +109,7 @@ } } -@media not (width < 1000px) { +@media not ((width < 1000px)) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -119,7 +119,7 @@ } } -@media not (width >=570px) { +@media not ((width >=570px)) { @media (width < 1000px) { @@ -130,7 +130,7 @@ } } -@media not (width < 1000px) { +@media not ((width < 1000px)) { @media (color:2147477350) and (color:2147477350) { body { diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css index 94e4166966..09e30b36b2 100644 --- a/plugins/postcss-custom-media/test/list.expect.css +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -9,7 +9,7 @@ } } -@media not (min-width: 101px),not (min-height: 102px) { +@media not ((min-width: 101px)),not ((min-height: 102px)) { @media screen and (color:2147477350) { .a { @@ -27,7 +27,7 @@ } } -@media not (min-width: 101px),not (min-height: 102px) { +@media not ((min-width: 101px)),not ((min-height: 102px)) { @media ((other: feature) and (color:2147477350)) { .a { @@ -53,7 +53,7 @@ } } -@media not (min-width: 201px) { +@media not ((min-width: 201px)) { @media screen and (color:2147477350) { .b { @@ -71,7 +71,7 @@ } } -@media not (min-width: 202px) { +@media not ((min-width: 202px)) { @media not (color:2147477350) { .b { diff --git a/plugins/postcss-custom-media/test/or.css b/plugins/postcss-custom-media/test/or.css new file mode 100644 index 0000000000..c428d9c3e2 --- /dev/null +++ b/plugins/postcss-custom-media/test/or.css @@ -0,0 +1,17 @@ +/* Media queries with "or" */ +@custom-media --with-or (min-width: 300px) or (min-height: 300px); + +@media not screen and (--with-or) { + .a { + order: 1; + } +} + +@custom-media --not-screen not screen; +@custom-media --not-print not print; + +@media (--not-screen) or (--not-print) { + .a { + order: 2; + } +} diff --git a/plugins/postcss-custom-media/test/or.expect.css b/plugins/postcss-custom-media/test/or.expect.css new file mode 100644 index 0000000000..1bd0ba80df --- /dev/null +++ b/plugins/postcss-custom-media/test/or.expect.css @@ -0,0 +1,61 @@ +/* Media queries with "or" */ + +@media (min-width: 300px) or (min-height: 300px) { + +@media not screen and (max-color:2147477350) { + .a { + order: 1; + } +} +} + +@media not ((min-width: 300px) or (min-height: 300px)) { + +@media not screen and (color:2147477350) { + .a { + order: 1; + } +} +} + +@media not screen { + +@media not print { + +@media (max-color:2147477350) or (max-color:2147477350) { + .a { + order: 2; + } +} +} + +@media print { + +@media (max-color:2147477350) or (color:2147477350) { + .a { + order: 2; + } +} +} +} + +@media screen { + +@media not print { + +@media (color:2147477350) or (max-color:2147477350) { + .a { + order: 2; + } +} +} + +@media print { + +@media (color:2147477350) or (color:2147477350) { + .a { + order: 2; + } +} +} +} diff --git a/plugins/postcss-custom-media/test/true-false.expect.css b/plugins/postcss-custom-media/test/true-false.expect.css index 6ddf8b4d3b..2df7ff2dc5 100644 --- a/plugins/postcss-custom-media/test/true-false.expect.css +++ b/plugins/postcss-custom-media/test/true-false.expect.css @@ -5,7 +5,7 @@ } } -@media not (max-color:2147477350) { +@media not ((max-color:2147477350)) { @media screen and (color:2147477350) { .true { @@ -23,7 +23,7 @@ } } -@media not (color:2147477350) { +@media not ((color:2147477350)) { @media screen and (color:2147477350) { .false { From 67db0ec70cd998f090857e74a7ec34e0688f835f Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 13:33:38 +0200 Subject: [PATCH 46/59] correctly prefix with not --- .../src/transform-at-media.ts | 124 +++++++++++++++--- .../test/basic-after-v9.expect.css | 6 +- .../test/basic-after-v9.preserve.expect.css | 6 +- .../test/basic.expect.css | 14 +- .../test/complex.expect.css | 12 +- .../postcss-custom-media/test/list.expect.css | 8 +- .../test/true-false.expect.css | 4 +- 7 files changed, 133 insertions(+), 41 deletions(-) diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts index 62e50374f5..6cba164824 100644 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media.ts @@ -143,8 +143,6 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma case TokenType.CloseParen: depth--; break; - default: - break; } } break; @@ -165,8 +163,6 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma case TokenType.CloseCurly: depth--; break; - default: - break; } } break; @@ -187,8 +183,6 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma case TokenType.CloseSquare: depth--; break; - default: - break; } } break; @@ -252,8 +246,6 @@ export function transformAtMediaTokens(tokens: Array, replacements: Ma break; } - default: - break; } } @@ -337,14 +329,26 @@ export function parseCustomMedia(params: string): {name: string, truthy: string, } const falsy = mediaQuery.slice(); - falsy.splice(j, 0, - [TokenType.Ident, 'not', 0, 0, { value: 'not' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.OpenParen, '(', 0, 0, undefined], - ); - falsy.push( - [TokenType.CloseParen, ')', 0, 0, undefined], - ); + + const falsyRemainder = falsy.slice(j); + const falsyRemainderKeywords = topLevelCombinationKeywords(falsyRemainder); + falsyRemainderKeywords.delete('not'); + + if (falsyRemainderKeywords.size > 0) { + falsy.splice(j, 0, + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.OpenParen, '(', 0, 0, undefined], + ); + falsy.push( + [TokenType.CloseParen, ')', 0, 0, undefined], + ); + } else { + falsy.splice(j, 0, + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + ); + } truthyParts.push(truthy); falsyParts.push(stringify(...falsy)); @@ -486,3 +490,91 @@ export function splitMediaQueryList(tokens: Array): Array): Set { + const keywords: Set = new Set(); + + for (let i = 0; i < tokens.length; i++) { + switch (tokens[i][0]) { + case TokenType.Function: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenParen: + case TokenType.Function: + depth++; + break; + case TokenType.CloseParen: + depth--; + break; + } + } + break; + } + + case TokenType.OpenCurly: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenCurly: + depth++; + break; + case TokenType.CloseCurly: + depth--; + break; + } + } + break; + } + + case TokenType.OpenSquare: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenSquare: + depth++; + break; + case TokenType.CloseSquare: + depth--; + break; + } + } + break; + } + + case TokenType.Ident: { + const identToken = tokens[i] as TokenIdent; + switch (identToken[4].value.toLowerCase()) { + case 'not': + keywords.add('not'); + break; + case 'and': + keywords.add('and'); + break; + case 'or': + keywords.add('or'); + break; + } + + break; + } + } + } + + return keywords; +} diff --git a/plugins/postcss-custom-media/test/basic-after-v9.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.expect.css index 696c8fe8ec..75d3d58529 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.expect.css @@ -13,7 +13,7 @@ } } } -@media not ((min-width: 300px)) { +@media not (min-width: 300px) { @media screen and (color:2147477350) { .a { order: 2; @@ -29,7 +29,7 @@ } } } -@media not ((min-width: 300px)) { +@media not (min-width: 300px) { @media not (color:2147477350) { .a { order: 3; @@ -48,7 +48,7 @@ } } -@media not ((color)),not ((hover)) { +@media not (color),not (hover) { @media (color:2147477350) and (width > 1024px) { .a { diff --git a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css index 4498142d31..d5f35bf1b9 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css @@ -20,7 +20,7 @@ } } } -@media not ((min-width: 300px)) { +@media not (min-width: 300px) { @media screen and (color:2147477350) { .a { order: 2; @@ -41,7 +41,7 @@ } } } -@media not ((min-width: 300px)) { +@media not (min-width: 300px) { @media not (color:2147477350) { .a { order: 3; @@ -66,7 +66,7 @@ } } -@media not ((color)),not ((hover)) { +@media not (color),not (hover) { @media (color:2147477350) and (width > 1024px) { .a { diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index a49f1e05cb..fe2b954f1b 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -25,7 +25,7 @@ } } -@media not ((max-width: 30em)),not ((max-height: 30em)) { +@media not (max-width: 30em),not (max-height: 30em) { @media not all and (color:2147477350) { body { @@ -43,7 +43,7 @@ } } -@media not ((max-width: 30em)),not ((max-height: 30em)) { +@media not (max-width: 30em),not (max-height: 30em) { @media not all and (color:2147477350) { body { @@ -64,7 +64,7 @@ } } -@media not ((max-width: 30em)),not ((max-height: 30em)) { +@media not (max-width: 30em),not (max-height: 30em) { @media not all and (color:2147477350) { @@ -88,7 +88,7 @@ } } -@media not ((max-width: 30em)),not ((max-height: 30em)) { +@media not (max-width: 30em),not (max-height: 30em) { @media all and (color:2147477350) { @@ -129,7 +129,7 @@ } } -@media not ((max-width: 640px)) { +@media not (max-width: 640px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -139,7 +139,7 @@ } } -@media not ((min-width: 320px)) { +@media not (min-width: 320px) { @media (max-width: 640px) { @@ -150,7 +150,7 @@ } } -@media not ((max-width: 640px)) { +@media not (max-width: 640px) { @media (color:2147477350) and (color:2147477350) { body { diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 261e53ed32..5827785fb4 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -17,7 +17,7 @@ } } -@media not ((min-width: 3)),not ((min-width: 4)) { +@media not (min-width: 3),not (min-width: 4) { @media (color:2147477350) and (width > 1024px) { .a { order: 3; } @@ -67,7 +67,7 @@ } } -@media not ((width >=570px)) { +@media not (width >=570px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -88,7 +88,7 @@ } } -@media not ((width >=570px)) { +@media not (width >=570px) { @media (color:2147477350) and (color:2147477350) { body { @@ -109,7 +109,7 @@ } } -@media not ((width < 1000px)) { +@media not (width < 1000px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -119,7 +119,7 @@ } } -@media not ((width >=570px)) { +@media not (width >=570px) { @media (width < 1000px) { @@ -130,7 +130,7 @@ } } -@media not ((width < 1000px)) { +@media not (width < 1000px) { @media (color:2147477350) and (color:2147477350) { body { diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css index 09e30b36b2..94e4166966 100644 --- a/plugins/postcss-custom-media/test/list.expect.css +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -9,7 +9,7 @@ } } -@media not ((min-width: 101px)),not ((min-height: 102px)) { +@media not (min-width: 101px),not (min-height: 102px) { @media screen and (color:2147477350) { .a { @@ -27,7 +27,7 @@ } } -@media not ((min-width: 101px)),not ((min-height: 102px)) { +@media not (min-width: 101px),not (min-height: 102px) { @media ((other: feature) and (color:2147477350)) { .a { @@ -53,7 +53,7 @@ } } -@media not ((min-width: 201px)) { +@media not (min-width: 201px) { @media screen and (color:2147477350) { .b { @@ -71,7 +71,7 @@ } } -@media not ((min-width: 202px)) { +@media not (min-width: 202px) { @media not (color:2147477350) { .b { diff --git a/plugins/postcss-custom-media/test/true-false.expect.css b/plugins/postcss-custom-media/test/true-false.expect.css index 2df7ff2dc5..6ddf8b4d3b 100644 --- a/plugins/postcss-custom-media/test/true-false.expect.css +++ b/plugins/postcss-custom-media/test/true-false.expect.css @@ -5,7 +5,7 @@ } } -@media not ((max-color:2147477350)) { +@media not (max-color:2147477350) { @media screen and (color:2147477350) { .true { @@ -23,7 +23,7 @@ } } -@media not ((color:2147477350)) { +@media not (color:2147477350) { @media screen and (color:2147477350) { .false { From 305aaebd692d9e5d497c40dc6a3a482d80c48120 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 17:15:10 +0200 Subject: [PATCH 47/59] better code structure --- .../src/custom-media-from-root.ts | 2 +- plugins/postcss-custom-media/src/index.ts | 2 +- .../src/transform-at-media.ts | 580 ------------------ .../always-true-or-false.ts | 14 + .../at-media-params-tokens.ts | 19 + .../src/transform-at-media/custom-media.ts | 123 ++++ .../split-media-query-list.ts | 60 ++ .../top-level-combination-keywords.ts | 90 +++ .../transform-at-media/transform-at-media.ts | 227 +++++++ .../src/transform-at-media/true-and-false.ts | 66 ++ 10 files changed, 601 insertions(+), 582 deletions(-) delete mode 100644 plugins/postcss-custom-media/src/transform-at-media.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/custom-media.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts create mode 100644 plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts index 3a54bc3327..c7364a678d 100644 --- a/plugins/postcss-custom-media/src/custom-media-from-root.ts +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -1,7 +1,7 @@ import type { ChildNode, Container, Document, Root as PostCSSRoot } from 'postcss'; import { isProcessableCustomMediaRule } from './is-processable-custom-media-rule'; import { removeCyclicReferences } from './toposort'; -import { parseCustomMedia } from './transform-at-media'; +import { parseCustomMedia } from './transform-at-media/custom-media'; // return custom media from the css root, conditionally removing them export default function getCustomMedia(root: PostCSSRoot, result, opts: { preserve?: boolean }): Map { diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index b442a7e83d..9e41dedee1 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -1,6 +1,6 @@ import type { PluginCreator } from 'postcss'; import getCustomMedia from './custom-media-from-root'; -import { transformAtMediaListTokens } from './transform-at-media'; +import { transformAtMediaListTokens } from './transform-at-media/transform-at-media'; export interface PluginOptions { /** Determines whether Custom Media and media queries using custom media should be preserved in their original form. */ diff --git a/plugins/postcss-custom-media/src/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media.ts deleted file mode 100644 index 6cba164824..0000000000 --- a/plugins/postcss-custom-media/src/transform-at-media.ts +++ /dev/null @@ -1,580 +0,0 @@ -import { tokenizer, stringify, TokenType, NumberType, TokenIdent } from '@csstools/css-tokenizer'; -import type { CSSToken } from '@csstools/css-tokenizer'; - -export function atMediaParamsTokens(params: string): Array { - const t = tokenizer({ - css: params, - }, { - commentsAreTokens: true, onParseError: () => { - throw new Error(`Unable to parse media query "${params}"`); - }, - }); - - const tokens: Array = []; - while (!t.endOfFile()) { - tokens.push(t.nextToken()); - } - - return tokens; -} - -const alwaysTrue: Array = [ - [TokenType.Ident, 'max-color', 0, 0, { value: 'max-color' }], - [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], -]; - -const neverTrue: Array = [ - [TokenType.Ident, 'color', 0, 0, { value: 'color' }], - [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], -]; - -export function transformAtMediaListTokens(params: string, replacements: Map): Array<{ replaceWith: string, encapsulateWith?: string }> { - const mediaQueries = splitMediaQueryList(atMediaParamsTokens(params)); - - const stringQueries = mediaQueries.map((x) => stringify(...x)); - - for (let i = 0; i < mediaQueries.length; i++) { - const mediaQuery = mediaQueries[i]; - const original = stringQueries[i]; - - const transformedQuery = transformAtMediaTokens(mediaQuery, replacements); - if (!transformedQuery || transformedQuery.length === 0) { - continue; - } - - if (transformedQuery[0].replaceWith === original) { - continue; - } - - return stringQueries.flatMap((query, index) => { - if (index === i) { - return transformedQuery; - } - - return [{ - replaceWith: query, - }]; - }); - } - - return []; -} - -export function transformAtMediaTokens(tokens: Array, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { - const tokenTypes: Set = new Set(); - let identCounter = 0; - for (let i = 0; i < tokens.length; i++) { - tokenTypes.add(tokens[i][0]); - if (tokens[i][0] === TokenType.Ident) { - identCounter++; - } - } - - tokenTypes.delete(TokenType.Comment); - tokenTypes.delete(TokenType.Whitespace); - tokenTypes.delete(TokenType.OpenParen); - tokenTypes.delete(TokenType.CloseParen); - tokenTypes.delete(TokenType.Ident); - - // replacement slot is in a simple @media query : - // - @media (--custom-mq) { ... } - // - @media ((--custom-mq)) { ... } - if (tokenTypes.size == 0 && identCounter === 1) { - let candidate: Array<{ replaceWith: string, encapsulateWith?: string }> | null = null; - - let parenDepth = 0; - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.Whitespace || tokens[i][0] === TokenType.Comment) { - continue; - } - - if (tokens[i][0] === TokenType.CloseParen) { - if (candidate) { - return candidate; - } - } - - candidate = null; - - if (tokens[i][0] === TokenType.CloseParen) { - parenDepth--; - continue; - } - if (tokens[i][0] === TokenType.OpenParen) { - parenDepth++; - continue; - } - - if (tokens[i][0] === TokenType.Ident && parenDepth > 0) { - const identToken = tokens[i] as TokenIdent; - - if (replacements.has(identToken[4].value)) { - candidate = [{ - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - replaceWith: replacements.get(identToken[4].value)!.truthy, - }]; - } - } - } - - return []; - } - - // replacement slot is in a comples @media query : - // - @media not (--custom-mq) { ... } - // - @media ((--custom-mq-1) or (--custom-mq-2) or (not (--custom-mq-3))) { ... } - for (let i = 0; i < tokens.length; i++) { - switch (tokens[i][0]) { - case TokenType.Function: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenParen: - case TokenType.Function: - depth++; - break; - case TokenType.CloseParen: - depth--; - break; - } - } - break; - } - - case TokenType.OpenCurly: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenCurly: - depth++; - break; - case TokenType.CloseCurly: - depth--; - break; - } - } - break; - } - - case TokenType.OpenSquare: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenSquare: - depth++; - break; - case TokenType.CloseSquare: - depth--; - break; - } - } - break; - } - - case TokenType.Ident: { - const identToken = tokens[i] as TokenIdent; - - if (!replacements.has(identToken[4].value)) { - break; - } - - let isValid = true; - for (let p = i-1; p>= 0; p--) { - if (tokens[p][0] === TokenType.Comment || tokens[p][0] === TokenType.Whitespace) { - continue; - } - - if (tokens[p][0] === TokenType.OpenParen) { - break; - } - - isValid = false; - break; - } - - for (let n = i + 1; n < tokens.length; n++) { - if (tokens[n][0] === TokenType.Comment || tokens[n][0] === TokenType.Whitespace) { - continue; - } - - if (tokens[n][0] === TokenType.CloseParen) { - break; - } - - isValid = false; - break; - } - - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - const replacement = replacements.get(identToken[4].value)!; - - if (isValid) { - const replaceWithTrue = tokens.slice(); - replaceWithTrue.splice(i, 1, ...alwaysTrue); - - const replaceWithFalse = tokens.slice(); - replaceWithFalse.splice(i, 1, ...neverTrue); - - return [ - { - replaceWith: stringify(...replaceWithTrue), - encapsulateWith: replacement.truthy, - }, - { - replaceWith: stringify(...replaceWithFalse), - encapsulateWith: replacement.falsy, - }, - ]; - } - - break; - } - } - } - - return []; -} - -export function parseCustomMedia(params: string): {name: string, truthy: string, falsy: string, dependsOn: Array<[string, string]>}|false { - const tokens = atMediaParamsTokens(params); - - const customMediaReferences: Set = new Set(); - - let name = ''; - let remainder = tokens; - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.Comment) { - continue; - } - if (tokens[i][0] === TokenType.Whitespace) { - continue; - } - - if (tokens[i][0] === TokenType.Ident) { - const identToken = tokens[i] as TokenIdent; - if (identToken[4].value.startsWith('--')) { - name = identToken[4].value; - remainder = tokens.slice(i + 1); - break; - } - } - - return false; - } - - for (let i = 0; i < remainder.length; i++) { - if (remainder[i][0] === TokenType.Ident) { - const identToken = remainder[i] as TokenIdent; - if (identToken[4].value.startsWith('--')) { - customMediaReferences.add(identToken[4].value); - } - } - } - - const list = splitMediaQueryList(remainder); - const truthyParts = []; - const falsyParts = []; - - MEDIA_QUERY_LIST_LOOP: - for (let i = 0; i < list.length; i++) { - const mediaQuery = handleTrueAndFalseTokens(list[i]); - - const truthy = stringify(...mediaQuery); - - for (let j = 0; j < mediaQuery.length; j++) { - if (mediaQuery[j][0] === TokenType.Comment) { - continue; - } - if (mediaQuery[j][0] === TokenType.Whitespace) { - continue; - } - - if (mediaQuery[j][0] === TokenType.Ident) { - const identToken = mediaQuery[j] as TokenIdent; - if (identToken[4].value.toLowerCase() === 'not') { - truthyParts.push(truthy); - - const falsy = mediaQuery.slice(); - falsy.splice(j, 1); - - falsyParts.push(stringify(...falsy)); - continue MEDIA_QUERY_LIST_LOOP; - } - - if (identToken[4].value.toLowerCase() === 'only') { - mediaQuery[j][1] = 'not'; - mediaQuery[j][4].value = 'not'; - - truthyParts.push(truthy); - falsyParts.push(stringify(...mediaQuery)); - continue MEDIA_QUERY_LIST_LOOP; - } - } - - const falsy = mediaQuery.slice(); - - const falsyRemainder = falsy.slice(j); - const falsyRemainderKeywords = topLevelCombinationKeywords(falsyRemainder); - falsyRemainderKeywords.delete('not'); - - if (falsyRemainderKeywords.size > 0) { - falsy.splice(j, 0, - [TokenType.Ident, 'not', 0, 0, { value: 'not' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.OpenParen, '(', 0, 0, undefined], - ); - falsy.push( - [TokenType.CloseParen, ')', 0, 0, undefined], - ); - } else { - falsy.splice(j, 0, - [TokenType.Ident, 'not', 0, 0, { value: 'not' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - ); - } - - truthyParts.push(truthy); - falsyParts.push(stringify(...falsy)); - continue MEDIA_QUERY_LIST_LOOP; - } - - truthyParts.push(truthy); - falsyParts.push('not all'); - continue MEDIA_QUERY_LIST_LOOP; - } - - return { - name: name, - truthy: truthyParts.map((x) => x.trim()).join(','), - falsy: falsyParts.map((x) => x.trim()).join(','), - dependsOn: Array.from(customMediaReferences).map((x) => { - return [x, name]; - }), - }; -} - -export function handleTrueAndFalseTokens(tokens: Array): Array { - let booleanToken; - let remainder; - - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.Comment) { - continue; - } - if (tokens[i][0] === TokenType.Whitespace) { - continue; - } - - if (tokens[i][0] === TokenType.Ident) { - const identToken = tokens[i] as TokenIdent; - if (identToken[4].value.toLowerCase() === 'true') { - booleanToken = 'true'; - remainder = tokens.slice(i + 1); - break; - } - - if (identToken[4].value.toLowerCase() === 'false') { - booleanToken = 'false'; - remainder = tokens.slice(i + 1); - break; - } - } - - return tokens; - } - - if (!booleanToken) { - return tokens; - } - - { - // Nothing is allowed after true|false except for comments and whitespace - for (let i = 0; i < remainder.length; i++) { - if (remainder[i][0] === TokenType.Comment) { - continue; - } - if (remainder[i][0] === TokenType.Whitespace) { - continue; - } - - return tokens; - } - } - - if (booleanToken === 'true') { - return [ - [TokenType.OpenParen, '(', 0, 0, undefined], - ...alwaysTrue, - [TokenType.CloseParen, ')', 0, 0, undefined], - ]; - } - - return [ - [TokenType.OpenParen, '(', 0, 0, undefined], - ...neverTrue, - [TokenType.CloseParen, ')', 0, 0, undefined], - ]; -} - -export function splitMediaQueryList(tokens: Array): Array> { - let parenDepth = 0; - let squareDepth = 0; - let curlyDepth = 0; - let depth = 0; - - const listItems = []; - let lastSliceIndex = 0; - - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.OpenParen || tokens[i][0] === TokenType.Function) { - depth++; - parenDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseParen && parenDepth > 0) { - depth--; - parenDepth--; - continue; - } - - if (tokens[i][0] === TokenType.OpenCurly) { - depth++; - curlyDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseCurly && curlyDepth > 0) { - depth--; - curlyDepth--; - continue; - } - - if (tokens[i][0] === TokenType.OpenSquare) { - depth++; - squareDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseSquare && squareDepth > 0) { - depth--; - squareDepth--; - continue; - } - - if (tokens[i][0] === TokenType.Comma && depth === 0) { - listItems.push(tokens.slice(lastSliceIndex, i)); - lastSliceIndex = i + 1; - continue; - } - } - - if (lastSliceIndex === 0) { - return [tokens]; - } - - listItems.push(tokens.slice(lastSliceIndex)); - return listItems; -} - -function topLevelCombinationKeywords(tokens: Array): Set { - const keywords: Set = new Set(); - - for (let i = 0; i < tokens.length; i++) { - switch (tokens[i][0]) { - case TokenType.Function: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenParen: - case TokenType.Function: - depth++; - break; - case TokenType.CloseParen: - depth--; - break; - } - } - break; - } - - case TokenType.OpenCurly: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenCurly: - depth++; - break; - case TokenType.CloseCurly: - depth--; - break; - } - } - break; - } - - case TokenType.OpenSquare: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenSquare: - depth++; - break; - case TokenType.CloseSquare: - depth--; - break; - } - } - break; - } - - case TokenType.Ident: { - const identToken = tokens[i] as TokenIdent; - switch (identToken[4].value.toLowerCase()) { - case 'not': - keywords.add('not'); - break; - case 'and': - keywords.add('and'); - break; - case 'or': - keywords.add('or'); - break; - } - - break; - } - } - } - - return keywords; -} diff --git a/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts b/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts new file mode 100644 index 0000000000..78d0c72b06 --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts @@ -0,0 +1,14 @@ +import { NumberType, TokenType } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; + +export const alwaysTrue: Array = [ + [TokenType.Ident, 'max-color', 0, 0, { value: 'max-color' }], + [TokenType.Colon, ':', 0, 0, undefined], + [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], +]; + +export const neverTrue: Array = [ + [TokenType.Ident, 'color', 0, 0, { value: 'color' }], + [TokenType.Colon, ':', 0, 0, undefined], + [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], +]; diff --git a/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts b/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts new file mode 100644 index 0000000000..815e1dd30b --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts @@ -0,0 +1,19 @@ +import { tokenizer } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; + +export function atMediaParamsTokens(params: string): Array { + const t = tokenizer({ + css: params, + }, { + commentsAreTokens: true, onParseError: () => { + throw new Error(`Unable to parse media query "${params}"`); + }, + }); + + const tokens: Array = []; + while (!t.endOfFile()) { + tokens.push(t.nextToken()); + } + + return tokens; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts new file mode 100644 index 0000000000..ed7c449c45 --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts @@ -0,0 +1,123 @@ +import { stringify, TokenType, TokenIdent } from '@csstools/css-tokenizer'; +import { topLevelCombinationKeywords } from './top-level-combination-keywords'; +import { splitMediaQueryList } from './split-media-query-list'; +import { replaceTrueAndFalseTokens } from './true-and-false'; +import { atMediaParamsTokens } from './at-media-params-tokens'; + +export function parseCustomMedia(params: string): { name: string, truthy: string, falsy: string, dependsOn: Array<[string, string]> } | false { + const tokens = atMediaParamsTokens(params); + + const customMediaReferences: Set = new Set(); + + let name = ''; + let remainder = tokens; + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.Comment) { + continue; + } + if (tokens[i][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[i][0] === TokenType.Ident) { + const identToken = tokens[i] as TokenIdent; + if (identToken[4].value.startsWith('--')) { + name = identToken[4].value; + remainder = tokens.slice(i + 1); + break; + } + } + + return false; + } + + for (let i = 0; i < remainder.length; i++) { + if (remainder[i][0] === TokenType.Ident) { + const identToken = remainder[i] as TokenIdent; + if (identToken[4].value.startsWith('--')) { + customMediaReferences.add(identToken[4].value); + } + } + } + + const list = splitMediaQueryList(remainder); + const truthyParts = []; + const falsyParts = []; + + MEDIA_QUERY_LIST_LOOP: + for (let i = 0; i < list.length; i++) { + const mediaQuery = replaceTrueAndFalseTokens(list[i]); + + const truthy = stringify(...mediaQuery); + + for (let j = 0; j < mediaQuery.length; j++) { + if (mediaQuery[j][0] === TokenType.Comment) { + continue; + } + if (mediaQuery[j][0] === TokenType.Whitespace) { + continue; + } + + if (mediaQuery[j][0] === TokenType.Ident) { + const identToken = mediaQuery[j] as TokenIdent; + if (identToken[4].value.toLowerCase() === 'not') { + truthyParts.push(truthy); + + const falsy = mediaQuery.slice(); + falsy.splice(j, 1); + + falsyParts.push(stringify(...falsy)); + continue MEDIA_QUERY_LIST_LOOP; + } + + if (identToken[4].value.toLowerCase() === 'only') { + mediaQuery[j][1] = 'not'; + mediaQuery[j][4].value = 'not'; + + truthyParts.push(truthy); + falsyParts.push(stringify(...mediaQuery)); + continue MEDIA_QUERY_LIST_LOOP; + } + } + + const falsy = mediaQuery.slice(); + + const falsyRemainder = falsy.slice(j); + const falsyRemainderKeywords = topLevelCombinationKeywords(falsyRemainder); + falsyRemainderKeywords.delete('not'); + + if (falsyRemainderKeywords.size > 0) { + falsy.splice(j, 0, + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.OpenParen, '(', 0, 0, undefined], + ); + falsy.push( + [TokenType.CloseParen, ')', 0, 0, undefined], + ); + } else { + falsy.splice(j, 0, + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + ); + } + + truthyParts.push(truthy); + falsyParts.push(stringify(...falsy)); + continue MEDIA_QUERY_LIST_LOOP; + } + + truthyParts.push(truthy); + falsyParts.push('not all'); + continue MEDIA_QUERY_LIST_LOOP; + } + + return { + name: name, + truthy: truthyParts.map((x) => x.trim()).join(','), + falsy: falsyParts.map((x) => x.trim()).join(','), + dependsOn: Array.from(customMediaReferences).map((x) => { + return [x, name]; + }), + }; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts b/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts new file mode 100644 index 0000000000..ae43ab3d2c --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts @@ -0,0 +1,60 @@ +import { TokenType } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; + +export function splitMediaQueryList(tokens: Array): Array> { + let parenDepth = 0; + let squareDepth = 0; + let curlyDepth = 0; + let depth = 0; + + const listItems = []; + let lastSliceIndex = 0; + + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.OpenParen || tokens[i][0] === TokenType.Function) { + depth++; + parenDepth++; + continue; + } + if (tokens[i][0] === TokenType.CloseParen && parenDepth > 0) { + depth--; + parenDepth--; + continue; + } + + if (tokens[i][0] === TokenType.OpenCurly) { + depth++; + curlyDepth++; + continue; + } + if (tokens[i][0] === TokenType.CloseCurly && curlyDepth > 0) { + depth--; + curlyDepth--; + continue; + } + + if (tokens[i][0] === TokenType.OpenSquare) { + depth++; + squareDepth++; + continue; + } + if (tokens[i][0] === TokenType.CloseSquare && squareDepth > 0) { + depth--; + squareDepth--; + continue; + } + + if (tokens[i][0] === TokenType.Comma && depth === 0) { + listItems.push(tokens.slice(lastSliceIndex, i)); + lastSliceIndex = i + 1; + continue; + } + } + + if (lastSliceIndex === 0) { + return [tokens]; + } + + listItems.push(tokens.slice(lastSliceIndex)); + return listItems; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts b/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts new file mode 100644 index 0000000000..b893b56061 --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts @@ -0,0 +1,90 @@ +import { TokenType, TokenIdent } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; + +export function topLevelCombinationKeywords(tokens: Array): Set { + const keywords: Set = new Set(); + + for (let i = 0; i < tokens.length; i++) { + switch (tokens[i][0]) { + case TokenType.Function: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenParen: + case TokenType.Function: + depth++; + break; + case TokenType.CloseParen: + depth--; + break; + } + } + break; + } + + case TokenType.OpenCurly: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenCurly: + depth++; + break; + case TokenType.CloseCurly: + depth--; + break; + } + } + break; + } + + case TokenType.OpenSquare: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenSquare: + depth++; + break; + case TokenType.CloseSquare: + depth--; + break; + } + } + break; + } + + case TokenType.Ident: { + const identToken = tokens[i] as TokenIdent; + switch (identToken[4].value.toLowerCase()) { + case 'not': + keywords.add('not'); + break; + case 'and': + keywords.add('and'); + break; + case 'or': + keywords.add('or'); + break; + } + + break; + } + } + } + + return keywords; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts new file mode 100644 index 0000000000..a02074b7ae --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts @@ -0,0 +1,227 @@ +import { stringify, TokenType, TokenIdent } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; +import { splitMediaQueryList } from './split-media-query-list'; +import { alwaysTrue, neverTrue } from './always-true-or-false'; +import { atMediaParamsTokens } from './at-media-params-tokens'; + +export function transformAtMediaListTokens(params: string, replacements: Map): Array<{ replaceWith: string, encapsulateWith?: string }> { + const mediaQueries = splitMediaQueryList(atMediaParamsTokens(params)); + + const stringQueries = mediaQueries.map((x) => stringify(...x)); + + for (let i = 0; i < mediaQueries.length; i++) { + const mediaQuery = mediaQueries[i]; + const original = stringQueries[i]; + + const transformedQuery = transformAtMediaTokens(mediaQuery, replacements); + if (!transformedQuery || transformedQuery.length === 0) { + continue; + } + + if (transformedQuery[0].replaceWith === original) { + continue; + } + + return stringQueries.flatMap((query, index) => { + if (index === i) { + return transformedQuery; + } + + return [{ + replaceWith: query, + }]; + }); + } + + return []; +} + +export function transformAtMediaTokens(tokens: Array, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { + const tokenTypes: Set = new Set(); + let identCounter = 0; + for (let i = 0; i < tokens.length; i++) { + tokenTypes.add(tokens[i][0]); + if (tokens[i][0] === TokenType.Ident) { + identCounter++; + } + } + + tokenTypes.delete(TokenType.Comment); + tokenTypes.delete(TokenType.Whitespace); + tokenTypes.delete(TokenType.OpenParen); + tokenTypes.delete(TokenType.CloseParen); + tokenTypes.delete(TokenType.Ident); + + // replacement slot is in a simple @media query : + // - @media (--custom-mq) { ... } + // - @media ((--custom-mq)) { ... } + if (tokenTypes.size == 0 && identCounter === 1) { + let candidate: Array<{ replaceWith: string, encapsulateWith?: string }> | null = null; + + let parenDepth = 0; + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.Whitespace || tokens[i][0] === TokenType.Comment) { + continue; + } + + if (tokens[i][0] === TokenType.CloseParen) { + if (candidate) { + return candidate; + } + } + + candidate = null; + + if (tokens[i][0] === TokenType.CloseParen) { + parenDepth--; + continue; + } + if (tokens[i][0] === TokenType.OpenParen) { + parenDepth++; + continue; + } + + if (tokens[i][0] === TokenType.Ident && parenDepth > 0) { + const identToken = tokens[i] as TokenIdent; + + if (replacements.has(identToken[4].value)) { + candidate = [{ + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + replaceWith: replacements.get(identToken[4].value)!.truthy, + }]; + } + } + } + + return []; + } + + // replacement slot is in a comples @media query : + // - @media not (--custom-mq) { ... } + // - @media ((--custom-mq-1) or (--custom-mq-2) or (not (--custom-mq-3))) { ... } + for (let i = 0; i < tokens.length; i++) { + switch (tokens[i][0]) { + case TokenType.Function: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenParen: + case TokenType.Function: + depth++; + break; + case TokenType.CloseParen: + depth--; + break; + } + } + break; + } + + case TokenType.OpenCurly: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenCurly: + depth++; + break; + case TokenType.CloseCurly: + depth--; + break; + } + } + break; + } + + case TokenType.OpenSquare: { + let depth = 1; + while (depth !== 0) { + i++; + if (!tokens[i] || tokens[i][0] === TokenType.EOF) { + throw new Error('unexpected EOF'); + } + + switch (tokens[i][0]) { + case TokenType.OpenSquare: + depth++; + break; + case TokenType.CloseSquare: + depth--; + break; + } + } + break; + } + + case TokenType.Ident: { + const identToken = tokens[i] as TokenIdent; + + if (!replacements.has(identToken[4].value)) { + break; + } + + let isValid = true; + for (let p = i-1; p>= 0; p--) { + if (tokens[p][0] === TokenType.Comment || tokens[p][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[p][0] === TokenType.OpenParen) { + break; + } + + isValid = false; + break; + } + + for (let n = i + 1; n < tokens.length; n++) { + if (tokens[n][0] === TokenType.Comment || tokens[n][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[n][0] === TokenType.CloseParen) { + break; + } + + isValid = false; + break; + } + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const replacement = replacements.get(identToken[4].value)!; + + if (isValid) { + const replaceWithTrue = tokens.slice(); + replaceWithTrue.splice(i, 1, ...alwaysTrue); + + const replaceWithFalse = tokens.slice(); + replaceWithFalse.splice(i, 1, ...neverTrue); + + return [ + { + replaceWith: stringify(...replaceWithTrue), + encapsulateWith: replacement.truthy, + }, + { + replaceWith: stringify(...replaceWithFalse), + encapsulateWith: replacement.falsy, + }, + ]; + } + + break; + } + } + } + + return []; +} diff --git a/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts b/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts new file mode 100644 index 0000000000..46a8ec636a --- /dev/null +++ b/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts @@ -0,0 +1,66 @@ +import { TokenType, TokenIdent } from '@csstools/css-tokenizer'; +import type { CSSToken } from '@csstools/css-tokenizer'; +import { alwaysTrue, neverTrue } from './always-true-or-false'; + +export function replaceTrueAndFalseTokens(tokens: Array): Array { + let booleanToken; + let remainder; + + for (let i = 0; i < tokens.length; i++) { + if (tokens[i][0] === TokenType.Comment) { + continue; + } + if (tokens[i][0] === TokenType.Whitespace) { + continue; + } + + if (tokens[i][0] === TokenType.Ident) { + const identToken = tokens[i] as TokenIdent; + if (identToken[4].value.toLowerCase() === 'true') { + booleanToken = 'true'; + remainder = tokens.slice(i + 1); + break; + } + + if (identToken[4].value.toLowerCase() === 'false') { + booleanToken = 'false'; + remainder = tokens.slice(i + 1); + break; + } + } + + return tokens; + } + + if (!booleanToken) { + return tokens; + } + + { + // Nothing is allowed after true|false except for comments and whitespace + for (let i = 0; i < remainder.length; i++) { + if (remainder[i][0] === TokenType.Comment) { + continue; + } + if (remainder[i][0] === TokenType.Whitespace) { + continue; + } + + return tokens; + } + } + + if (booleanToken === 'true') { + return [ + [TokenType.OpenParen, '(', 0, 0, undefined], + ...alwaysTrue, + [TokenType.CloseParen, ')', 0, 0, undefined], + ]; + } + + return [ + [TokenType.OpenParen, '(', 0, 0, undefined], + ...neverTrue, + [TokenType.CloseParen, ')', 0, 0, undefined], + ]; +} From c4243e3687331b975fdb7b7b5bee19f421843290 Mon Sep 17 00:00:00 2001 From: romainmenke Date: Sun, 25 Sep 2022 18:11:53 +0200 Subject: [PATCH 48/59] fix negation for older browsers --- plugins/postcss-custom-media/.tape.mjs | 6 ++ .../src/transform-at-media/custom-media.ts | 10 ++- plugins/postcss-custom-media/test/and.css | 17 ++++++ .../postcss-custom-media/test/and.expect.css | 61 +++++++++++++++++++ .../test/basic-after-v9.expect.css | 6 +- .../test/basic-after-v9.preserve.expect.css | 6 +- .../test/basic.expect.css | 16 ++--- plugins/postcss-custom-media/test/complex.css | 2 +- .../test/complex.expect.css | 18 +++--- .../postcss-custom-media/test/list.expect.css | 8 +-- plugins/postcss-custom-media/test/not.css | 17 ++++++ .../postcss-custom-media/test/not.expect.css | 61 +++++++++++++++++++ .../postcss-custom-media/test/or.expect.css | 2 +- .../test/true-false.expect.css | 4 +- 14 files changed, 202 insertions(+), 32 deletions(-) create mode 100644 plugins/postcss-custom-media/test/and.css create mode 100644 plugins/postcss-custom-media/test/and.expect.css create mode 100644 plugins/postcss-custom-media/test/not.css create mode 100644 plugins/postcss-custom-media/test/not.expect.css diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index 10d121baed..ef9ef8086b 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -70,6 +70,12 @@ postcssTape(plugin)({ 'comma-2': { message: 'can correctly split media query lists' }, + 'and': { + message: 'supports media queries with "and"' + }, + 'not': { + message: 'supports media queries with "not"' + }, 'or': { message: 'supports media queries with "or"' } diff --git a/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts index ed7c449c45..c38e23404d 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts @@ -84,12 +84,16 @@ export function parseCustomMedia(params: string): { name: string, truthy: string const falsyRemainder = falsy.slice(j); const falsyRemainderKeywords = topLevelCombinationKeywords(falsyRemainder); - falsyRemainderKeywords.delete('not'); + falsyRemainderKeywords.delete('and'); if (falsyRemainderKeywords.size > 0) { falsy.splice(j, 0, [TokenType.Ident, 'not', 0, 0, { value: 'not' }], [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.Ident, 'all', 0, 0, { value: 'all' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.Ident, 'and', 0, 0, { value: 'and' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], [TokenType.OpenParen, '(', 0, 0, undefined], ); falsy.push( @@ -99,6 +103,10 @@ export function parseCustomMedia(params: string): { name: string, truthy: string falsy.splice(j, 0, [TokenType.Ident, 'not', 0, 0, { value: 'not' }], [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.Ident, 'all', 0, 0, { value: 'all' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.Ident, 'and', 0, 0, { value: 'and' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], ); } diff --git a/plugins/postcss-custom-media/test/and.css b/plugins/postcss-custom-media/test/and.css new file mode 100644 index 0000000000..4d40c3bcd4 --- /dev/null +++ b/plugins/postcss-custom-media/test/and.css @@ -0,0 +1,17 @@ +/* Media queries with "and" */ +@custom-media --with-and (min-width: 300px) and (min-height: 300px); + +@media not screen and (--with-and) { + .a { + order: 1; + } +} + +@custom-media --not-screen not screen; +@custom-media --not-print not print; + +@media (--not-screen) and (--not-print) { + .a { + order: 2; + } +} diff --git a/plugins/postcss-custom-media/test/and.expect.css b/plugins/postcss-custom-media/test/and.expect.css new file mode 100644 index 0000000000..9cbf54fd43 --- /dev/null +++ b/plugins/postcss-custom-media/test/and.expect.css @@ -0,0 +1,61 @@ +/* Media queries with "and" */ + +@media (min-width: 300px) and (min-height: 300px) { + +@media not screen and (max-color:2147477350) { + .a { + order: 1; + } +} +} + +@media not all and (min-width: 300px) and (min-height: 300px) { + +@media not screen and (color:2147477350) { + .a { + order: 1; + } +} +} + +@media not screen { + +@media not print { + +@media (max-color:2147477350) and (max-color:2147477350) { + .a { + order: 2; + } +} +} + +@media print { + +@media (max-color:2147477350) and (color:2147477350) { + .a { + order: 2; + } +} +} +} + +@media screen { + +@media not print { + +@media (color:2147477350) and (max-color:2147477350) { + .a { + order: 2; + } +} +} + +@media print { + +@media (color:2147477350) and (color:2147477350) { + .a { + order: 2; + } +} +} +} diff --git a/plugins/postcss-custom-media/test/basic-after-v9.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.expect.css index 75d3d58529..fe92455d52 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.expect.css @@ -13,7 +13,7 @@ } } } -@media not (min-width: 300px) { +@media not all and (min-width: 300px) { @media screen and (color:2147477350) { .a { order: 2; @@ -29,7 +29,7 @@ } } } -@media not (min-width: 300px) { +@media not all and (min-width: 300px) { @media not (color:2147477350) { .a { order: 3; @@ -48,7 +48,7 @@ } } -@media not (color),not (hover) { +@media not all and (color),not all and (hover) { @media (color:2147477350) and (width > 1024px) { .a { diff --git a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css index d5f35bf1b9..1a74c42959 100644 --- a/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css +++ b/plugins/postcss-custom-media/test/basic-after-v9.preserve.expect.css @@ -20,7 +20,7 @@ } } } -@media not (min-width: 300px) { +@media not all and (min-width: 300px) { @media screen and (color:2147477350) { .a { order: 2; @@ -41,7 +41,7 @@ } } } -@media not (min-width: 300px) { +@media not all and (min-width: 300px) { @media not (color:2147477350) { .a { order: 3; @@ -66,7 +66,7 @@ } } -@media not (color),not (hover) { +@media not all and (color),not all and (hover) { @media (color:2147477350) and (width > 1024px) { .a { diff --git a/plugins/postcss-custom-media/test/basic.expect.css b/plugins/postcss-custom-media/test/basic.expect.css index fe2b954f1b..97d82e3904 100644 --- a/plugins/postcss-custom-media/test/basic.expect.css +++ b/plugins/postcss-custom-media/test/basic.expect.css @@ -25,7 +25,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not all and (max-width: 30em),not all and (max-height: 30em) { @media not all and (color:2147477350) { body { @@ -43,7 +43,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not all and (max-width: 30em),not all and (max-height: 30em) { @media not all and (color:2147477350) { body { @@ -64,7 +64,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not all and (max-width: 30em),not all and (max-height: 30em) { @media not all and (color:2147477350) { @@ -88,7 +88,7 @@ } } -@media not (max-width: 30em),not (max-height: 30em) { +@media not all and (max-width: 30em),not all and (max-height: 30em) { @media all and (color:2147477350) { @@ -129,7 +129,7 @@ } } -@media not (max-width: 640px) { +@media not all and (max-width: 640px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -139,7 +139,7 @@ } } -@media not (min-width: 320px) { +@media not all and (min-width: 320px) { @media (max-width: 640px) { @@ -150,7 +150,7 @@ } } -@media not (max-width: 640px) { +@media not all and (max-width: 640px) { @media (color:2147477350) and (color:2147477350) { body { @@ -175,7 +175,7 @@ } } -@media not ((min-width: 320px) and (max-width: 640px)) { +@media not all and (min-width: 320px) and (max-width: 640px) { @media (color:2147477350) and (min-aspect-ratio: 16/9) { body { diff --git a/plugins/postcss-custom-media/test/complex.css b/plugins/postcss-custom-media/test/complex.css index 5ed08057ee..ca21e84820 100644 --- a/plugins/postcss-custom-media/test/complex.css +++ b/plugins/postcss-custom-media/test/complex.css @@ -25,7 +25,7 @@ @custom-media --md-and-larger1 --screen and (width >= 570px); @custom-media --md-and-larger2 (--screen) and (width >= 570px); @custom-media --md-and-larger3 only screen and (width >= 570px); -@custom-media --md-larger4 (width >=570px); +@custom-media --md-larger4 (width >= 570px); @custom-media --md-smaller4 (width < 1000px); @media (--md-and-larger1) { diff --git a/plugins/postcss-custom-media/test/complex.expect.css b/plugins/postcss-custom-media/test/complex.expect.css index 5827785fb4..792e80338f 100644 --- a/plugins/postcss-custom-media/test/complex.expect.css +++ b/plugins/postcss-custom-media/test/complex.expect.css @@ -17,7 +17,7 @@ } } -@media not (min-width: 3),not (min-width: 4) { +@media not all and (min-width: 3),not all and (min-width: 4) { @media (color:2147477350) and (width > 1024px) { .a { order: 3; } @@ -58,7 +58,7 @@ @media only screen { -@media (width >=570px) { +@media (width >= 570px) { @media (max-color:2147477350) and (max-color:2147477350) { body { @@ -67,7 +67,7 @@ } } -@media not (width >=570px) { +@media not all and (width >= 570px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -79,7 +79,7 @@ @media not screen { -@media (width >=570px) { +@media (width >= 570px) { @media (color:2147477350) and (max-color:2147477350) { body { @@ -88,7 +88,7 @@ } } -@media not (width >=570px) { +@media not all and (width >= 570px) { @media (color:2147477350) and (color:2147477350) { body { @@ -98,7 +98,7 @@ } } -@media (width >=570px) { +@media (width >= 570px) { @media (width < 1000px) { @@ -109,7 +109,7 @@ } } -@media not (width < 1000px) { +@media not all and (width < 1000px) { @media (max-color:2147477350) and (color:2147477350) { body { @@ -119,7 +119,7 @@ } } -@media not (width >=570px) { +@media not all and (width >= 570px) { @media (width < 1000px) { @@ -130,7 +130,7 @@ } } -@media not (width < 1000px) { +@media not all and (width < 1000px) { @media (color:2147477350) and (color:2147477350) { body { diff --git a/plugins/postcss-custom-media/test/list.expect.css b/plugins/postcss-custom-media/test/list.expect.css index 94e4166966..3bf1138d36 100644 --- a/plugins/postcss-custom-media/test/list.expect.css +++ b/plugins/postcss-custom-media/test/list.expect.css @@ -9,7 +9,7 @@ } } -@media not (min-width: 101px),not (min-height: 102px) { +@media not all and (min-width: 101px),not all and (min-height: 102px) { @media screen and (color:2147477350) { .a { @@ -27,7 +27,7 @@ } } -@media not (min-width: 101px),not (min-height: 102px) { +@media not all and (min-width: 101px),not all and (min-height: 102px) { @media ((other: feature) and (color:2147477350)) { .a { @@ -53,7 +53,7 @@ } } -@media not (min-width: 201px) { +@media not all and (min-width: 201px) { @media screen and (color:2147477350) { .b { @@ -71,7 +71,7 @@ } } -@media not (min-width: 202px) { +@media not all and (min-width: 202px) { @media not (color:2147477350) { .b { diff --git a/plugins/postcss-custom-media/test/not.css b/plugins/postcss-custom-media/test/not.css new file mode 100644 index 0000000000..cb21c4a2e0 --- /dev/null +++ b/plugins/postcss-custom-media/test/not.css @@ -0,0 +1,17 @@ +/* Media queries with "and" */ +@custom-media --with-not not (min-height: 300px); + +@media not (--with-not) { + .a { + order: 1; + } +} + +@custom-media --not-screen not screen; +@custom-media --not-print not print; + +@media (--not-screen) and (not (--not-print)) { + .a { + order: 2; + } +} diff --git a/plugins/postcss-custom-media/test/not.expect.css b/plugins/postcss-custom-media/test/not.expect.css new file mode 100644 index 0000000000..e1d749ba4b --- /dev/null +++ b/plugins/postcss-custom-media/test/not.expect.css @@ -0,0 +1,61 @@ +/* Media queries with "and" */ + +@media not (min-height: 300px) { + +@media not (max-color:2147477350) { + .a { + order: 1; + } +} +} + +@media (min-height: 300px) { + +@media not (color:2147477350) { + .a { + order: 1; + } +} +} + +@media not screen { + +@media not print { + +@media (max-color:2147477350) and (not (max-color:2147477350)) { + .a { + order: 2; + } +} +} + +@media print { + +@media (max-color:2147477350) and (not (color:2147477350)) { + .a { + order: 2; + } +} +} +} + +@media screen { + +@media not print { + +@media (color:2147477350) and (not (max-color:2147477350)) { + .a { + order: 2; + } +} +} + +@media print { + +@media (color:2147477350) and (not (color:2147477350)) { + .a { + order: 2; + } +} +} +} diff --git a/plugins/postcss-custom-media/test/or.expect.css b/plugins/postcss-custom-media/test/or.expect.css index 1bd0ba80df..17d9c8262b 100644 --- a/plugins/postcss-custom-media/test/or.expect.css +++ b/plugins/postcss-custom-media/test/or.expect.css @@ -9,7 +9,7 @@ } } -@media not ((min-width: 300px) or (min-height: 300px)) { +@media not all and ((min-width: 300px) or (min-height: 300px)) { @media not screen and (color:2147477350) { .a { diff --git a/plugins/postcss-custom-media/test/true-false.expect.css b/plugins/postcss-custom-media/test/true-false.expect.css index 6ddf8b4d3b..789755def4 100644 --- a/plugins/postcss-custom-media/test/true-false.expect.css +++ b/plugins/postcss-custom-media/test/true-false.expect.css @@ -5,7 +5,7 @@ } } -@media not (max-color:2147477350) { +@media not all and (max-color:2147477350) { @media screen and (color:2147477350) { .true { @@ -23,7 +23,7 @@ } } -@media not (color:2147477350) { +@media not all and (color:2147477350) { @media screen and (color:2147477350) { .false { From 8145d490e7baa17c647e614c001a4f23bcd9623c Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sat, 1 Oct 2022 16:11:55 +0200 Subject: [PATCH 49/59] cleanup --- packages/css-tokenizer/src/index.ts | 54 +++++++++++++++-------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index e35cf1a08c..54e28b122b 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -4,29 +4,31 @@ export { TokenType, NumberType } from './interfaces/token'; export { stringify } from './stringify'; export { tokenizer } from './tokenizer'; -export type { TokenAtKeyword } from './interfaces/token'; -export type { TokenBadString } from './interfaces/token'; -export type { TokenBadURL } from './interfaces/token'; -export type { TokenCDC } from './interfaces/token'; -export type { TokenCDO } from './interfaces/token'; -export type { TokenColon } from './interfaces/token'; -export type { TokenComma } from './interfaces/token'; -export type { TokenComment } from './interfaces/token'; -export type { TokenDelim } from './interfaces/token'; -export type { TokenDimension } from './interfaces/token'; -export type { TokenEOF } from './interfaces/token'; -export type { TokenFunction } from './interfaces/token'; -export type { TokenHash } from './interfaces/token'; -export type { TokenIdent } from './interfaces/token'; -export type { TokenNumber } from './interfaces/token'; -export type { TokenPercentage } from './interfaces/token'; -export type { TokenSemicolon } from './interfaces/token'; -export type { TokenString } from './interfaces/token'; -export type { TokenURL } from './interfaces/token'; -export type { TokenWhitespace } from './interfaces/token'; -export type { TokenOpenParen } from './interfaces/token'; -export type { TokenCloseParen } from './interfaces/token'; -export type { TokenOpenSquare } from './interfaces/token'; -export type { TokenCloseSquare } from './interfaces/token'; -export type { TokenOpenCurly } from './interfaces/token'; -export type { TokenCloseCurly } from './interfaces/token'; +export type { + TokenAtKeyword, + TokenBadString, + TokenBadURL, + TokenCDC, + TokenCDO, + TokenColon, + TokenComma, + TokenComment, + TokenDelim, + TokenDimension, + TokenEOF, + TokenFunction, + TokenHash, + TokenIdent, + TokenNumber, + TokenPercentage, + TokenSemicolon, + TokenString, + TokenURL, + TokenWhitespace, + TokenOpenParen, + TokenCloseParen, + TokenOpenSquare, + TokenCloseSquare, + TokenOpenCurly, + TokenCloseCurly, +} from './interfaces/token'; From 8d7f867bebe90a17779e007a1b10b3cc233888d6 Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Mon, 17 Oct 2022 22:55:04 +0200 Subject: [PATCH 50/59] update test files --- plugins/postcss-custom-media/test/true-false.expect.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/postcss-custom-media/test/true-false.expect.css b/plugins/postcss-custom-media/test/true-false.expect.css index 789755def4..fdde69e1b7 100644 --- a/plugins/postcss-custom-media/test/true-false.expect.css +++ b/plugins/postcss-custom-media/test/true-false.expect.css @@ -3,11 +3,7 @@ order: 1; } } -} - -@media not all and (max-color:2147477350) { - -@media screen and (color:2147477350) { +}@media not all and (max-color:2147477350) {@media screen and (color:2147477350) { .true { order: 1; } From 6f2f13a477342da9b440c454dad4babaa0f051fe Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Fri, 4 Nov 2022 22:39:45 +0100 Subject: [PATCH 51/59] merge --- package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 125214cccd..313993ae1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -115,14 +115,14 @@ "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.2" + "postcss": "^8.4" } }, "node_modules/@ampproject/remapping": { @@ -7747,14 +7747,14 @@ "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.2" + "postcss": "^8.4" } }, "plugins/postcss-selector-not": { From 8ef04ce8114c88dd8ae5effa1e05ded6120e208a Mon Sep 17 00:00:00 2001 From: Romain Menke <11521496+romainmenke@users.noreply.github.com> Date: Sat, 5 Nov 2022 18:21:25 +0100 Subject: [PATCH 52/59] media query list parser (#659) * wip * wip * wip * wip * wip * finish range * more work * lint * fix ranges * more work * media lists * finish parser * toJSON * add a test suite * more tests * wip * lint * more tests * wip * fix range parsing * docs * add ancestry utility * fixes * fixes * allow parsing from tokens * add some convenience methods * fixes * more migration * more convenience methods * more type predicates * wip * fix * fix * finish up * lets get rid of those build errors --- .github/workflows/test.yml | 2 +- package-lock.json | 103 +- package.json | 3 + packages/css-parser-algorithms/.gitignore | 7 + packages/css-parser-algorithms/.nvmrc | 1 + packages/css-parser-algorithms/CHANGELOG.md | 3 + packages/css-parser-algorithms/LICENSE.md | 20 + packages/css-parser-algorithms/README.md | 120 ++ packages/css-parser-algorithms/package.json | 69 + .../consume-component-block-function.ts | 626 ++++++ packages/css-parser-algorithms/src/index.ts | 16 + .../src/interfaces/context.ts | 5 + .../src/interfaces/error.ts | 6 + ...omma-separated-list-of-component-values.ts | 59 + .../src/parse/parse-component-value.ts | 40 + .../parse/parse-list-of-component-values.ts | 40 + .../src/util/component-value-type.ts | 9 + .../src/util/node-ancestry.ts | 19 + .../src/util/type-predicates.ts | 29 + .../css-parser-algorithms/stryker.conf.json | 19 + .../css-parser-algorithms/test/_import.mjs | 11 + .../css-parser-algorithms/test/_require.cjs | 11 + .../media-not/0001.list-comma.expect.json | 81 + .../media-not/0001.list-space.expect.json | 79 + .../test/cases/media-not/0001.mjs | 13 + .../mf-boolean/0001.list-comma.expect.json | 55 + .../mf-boolean/0001.list-space.expect.json | 53 + .../test/cases/mf-boolean/0001.mjs | 13 + .../mf-boolean/0002.list-comma.expect.json | 117 ++ .../mf-boolean/0002.list-space.expect.json | 115 ++ .../test/cases/mf-boolean/0002.mjs | 13 + .../mf-boolean/0003.list-comma.expect.json | 55 + .../mf-boolean/0003.list-space.expect.json | 53 + .../test/cases/mf-boolean/0003.mjs | 13 + .../mf-boolean/0004.list-comma.expect.json | 55 + .../mf-boolean/0004.list-space.expect.json | 53 + .../test/cases/mf-boolean/0004.mjs | 13 + .../mf-boolean/0005.list-comma.expect.json | 71 + .../mf-boolean/0005.list-space.expect.json | 69 + .../test/cases/mf-boolean/0005.mjs | 13 + .../mf-plain/0001.list-comma.expect.json | 120 ++ .../mf-plain/0001.list-space.expect.json | 118 ++ .../test/cases/mf-plain/0001.mjs | 13 + .../mf-plain/0002.list-comma.expect.json | 201 ++ .../mf-plain/0002.list-space.expect.json | 199 ++ .../test/cases/mf-plain/0002.mjs | 13 + .../mf-plain/0003.list-comma.expect.json | 116 ++ .../mf-plain/0003.list-space.expect.json | 114 ++ .../test/cases/mf-plain/0003.mjs | 13 + .../mf-plain/0004.list-comma.expect.json | 165 ++ .../mf-plain/0004.list-space.expect.json | 163 ++ .../test/cases/mf-plain/0004.mjs | 13 + .../mf-plain/0005.list-comma.expect.json | 116 ++ .../mf-plain/0005.list-space.expect.json | 114 ++ .../test/cases/mf-plain/0005.mjs | 13 + .../0001.list-comma.expect.json | 18 + .../0001.list-space.expect.json | 16 + .../test/cases/query-with-type/0001.mjs | 13 + .../0002.list-comma.expect.json | 44 + .../0002.list-space.expect.json | 42 + .../test/cases/query-with-type/0002.mjs | 13 + .../0003.list-comma.expect.json | 44 + .../0003.list-space.expect.json | 42 + .../test/cases/query-with-type/0003.mjs | 13 + .../cases/various/0001.list-comma.expect.json | 145 ++ .../cases/various/0001.list-space.expect.json | 143 ++ .../test/cases/various/0001.mjs | 13 + .../cases/various/0002.list-comma.expect.json | 790 ++++++++ .../cases/various/0002.list-space.expect.json | 788 ++++++++ .../test/cases/various/0002.mjs | 13 + .../cases/various/0003.list-comma.expect.json | 347 ++++ .../cases/various/0003.list-space.expect.json | 345 ++++ .../test/cases/various/0003.mjs | 13 + .../cases/various/0004.list-comma.expect.json | 316 +++ .../cases/various/0004.list-space.expect.json | 314 +++ .../test/cases/various/0004.mjs | 13 + .../cases/various/0005.list-comma.expect.json | 198 ++ .../cases/various/0005.list-space.expect.json | 196 ++ .../test/cases/various/0005.mjs | 13 + .../cases/various/0006.list-comma.expect.json | 56 + .../cases/various/0006.list-space.expect.json | 54 + .../test/cases/various/0006.mjs | 13 + .../cases/various/0007.list-comma.expect.json | 59 + .../cases/various/0007.list-space.expect.json | 57 + .../test/cases/various/0007.mjs | 13 + .../cases/various/0008.list-comma.expect.json | 110 ++ .../cases/various/0008.list-space.expect.json | 108 ++ .../test/cases/various/0008.mjs | 13 + .../cases/various/0009.list-comma.expect.json | 129 ++ .../cases/various/0009.list-space.expect.json | 127 ++ .../test/cases/various/0009.mjs | 13 + .../cases/various/0010.list-comma.expect.json | 129 ++ .../cases/various/0010.list-space.expect.json | 127 ++ .../test/cases/various/0010.mjs | 13 + .../cases/various/0011.list-comma.expect.json | 298 +++ .../cases/various/0011.list-space.expect.json | 296 +++ .../test/cases/various/0011.mjs | 13 + .../cases/various/0012.list-comma.expect.json | 55 + .../cases/various/0012.list-space.expect.json | 53 + .../test/cases/various/0012.mjs | 13 + .../cases/various/0013.list-comma.expect.json | 74 + .../cases/various/0013.list-space.expect.json | 72 + .../test/cases/various/0013.mjs | 13 + .../cases/various/0014.list-comma.expect.json | 74 + .../cases/various/0014.list-space.expect.json | 72 + .../test/cases/various/0014.mjs | 13 + .../cases/various/0015.list-comma.expect.json | 347 ++++ .../cases/various/0015.list-space.expect.json | 345 ++++ .../test/cases/various/0015.mjs | 13 + .../cases/various/0016.list-comma.expect.json | 162 ++ .../cases/various/0016.list-space.expect.json | 170 ++ .../test/cases/various/0016.mjs | 13 + .../cases/various/0017.list-comma.expect.json | 151 ++ .../cases/various/0017.list-space.expect.json | 159 ++ .../test/cases/various/0017.mjs | 13 + .../cases/various/0018.list-comma.expect.json | 48 + .../cases/various/0018.list-space.expect.json | 46 + .../test/cases/various/0018.mjs | 13 + .../cases/various/0019.list-comma.expect.json | 1704 +++++++++++++++++ .../cases/various/0019.list-space.expect.json | 1702 ++++++++++++++++ .../test/cases/various/0019.mjs | 13 + packages/css-parser-algorithms/test/test.mjs | 37 + .../test/util/run-test.mjs | 65 + packages/css-parser-algorithms/tsconfig.json | 9 + packages/css-tokenizer/src/index.ts | 3 +- .../css-tokenizer/src/interfaces/token.ts | 51 + .../css-tokenizer/src/util/clone-tokens.ts | 9 + packages/css-tokenizer/test/token/basic.mjs | 25 + packages/css-tokenizer/test/token/numeric.mjs | 20 + packages/media-query-list-parser/.gitignore | 7 + packages/media-query-list-parser/.nvmrc | 1 + packages/media-query-list-parser/CHANGELOG.md | 3 + packages/media-query-list-parser/LICENSE.md | 20 + packages/media-query-list-parser/README.md | 60 + packages/media-query-list-parser/package.json | 70 + packages/media-query-list-parser/src/index.ts | 46 + .../src/nodes/general-enclosed.ts | 71 + .../src/nodes/media-and.ts | 75 + .../src/nodes/media-condition-list.ts | 245 +++ .../src/nodes/media-condition.ts | 71 + .../src/nodes/media-feature-boolean.ts | 82 + .../src/nodes/media-feature-comparison.ts | 114 ++ .../src/nodes/media-feature-name.ts | 113 ++ .../src/nodes/media-feature-plain.ts | 124 ++ .../src/nodes/media-feature-range.ts | 454 +++++ .../src/nodes/media-feature-value.ts | 244 +++ .../src/nodes/media-feature.ts | 143 ++ .../src/nodes/media-in-parens.ts | 91 + .../src/nodes/media-not.ts | 75 + .../src/nodes/media-or.ts | 75 + .../src/nodes/media-query-modifier.ts | 22 + .../src/nodes/media-query.ts | 350 ++++ .../src/nodes/media-type.ts | 58 + .../src/parser/parse-media-query.ts | 510 +++++ .../src/parser/parse.ts | 44 + .../src/util/clone-media-query.ts | 27 + .../src/util/component-value-is.ts | 53 + .../src/util/node-type.ts | 21 + .../src/util/type-predicates.ts | 102 + .../media-query-list-parser/test/_import.mjs | 3 + .../media-query-list-parser/test/_require.cjs | 3 + .../test/cases/media-not/0001.expect.json | 71 + .../test/cases/media-not/0001.mjs | 13 + .../test/cases/mf-boolean/0001.expect.json | 50 + .../test/cases/mf-boolean/0001.mjs | 13 + .../test/cases/mf-boolean/0002.expect.json | 78 + .../test/cases/mf-boolean/0002.mjs | 13 + .../test/cases/mf-boolean/0003.expect.json | 50 + .../test/cases/mf-boolean/0003.mjs | 13 + .../test/cases/mf-boolean/0004.expect.json | 50 + .../test/cases/mf-boolean/0004.mjs | 13 + .../test/cases/mf-boolean/0005.expect.json | 49 + .../test/cases/mf-boolean/0005.mjs | 13 + .../test/cases/mf-plain/0001.expect.json | 128 ++ .../test/cases/mf-plain/0001.mjs | 13 + .../test/cases/mf-plain/0002.expect.json | 184 ++ .../test/cases/mf-plain/0002.mjs | 13 + .../test/cases/mf-plain/0003.expect.json | 122 ++ .../test/cases/mf-plain/0003.mjs | 13 + .../test/cases/mf-plain/0004.expect.json | 81 + .../test/cases/mf-plain/0004.mjs | 13 + .../test/cases/mf-plain/0005.expect.json | 1 + .../test/cases/mf-plain/0005.mjs | 13 + .../test/cases/mf-range/0001.expect.json | 168 ++ .../test/cases/mf-range/0001.mjs | 13 + .../test/cases/mf-range/0002.expect.json | 186 ++ .../test/cases/mf-range/0002.mjs | 13 + .../test/cases/mf-range/0003.expect.json | 488 +++++ .../test/cases/mf-range/0003.mjs | 13 + .../test/cases/mf-range/0004.expect.json | 300 +++ .../test/cases/mf-range/0004.mjs | 13 + .../test/cases/mf-range/0005.expect.json | 139 ++ .../test/cases/mf-range/0005.mjs | 13 + .../test/cases/mf-range/0006.expect.json | 139 ++ .../test/cases/mf-range/0006.mjs | 13 + .../test/cases/mf-range/0007.expect.json | 224 +++ .../test/cases/mf-range/0007.mjs | 13 + .../cases/query-with-type/0001.expect.json | 19 + .../test/cases/query-with-type/0001.mjs | 13 + .../cases/query-with-type/0002.expect.json | 36 + .../test/cases/query-with-type/0002.mjs | 13 + .../cases/query-with-type/0003.expect.json | 36 + .../test/cases/query-with-type/0003.mjs | 13 + .../cases/query-with-type/0004.expect.json | 182 ++ .../test/cases/query-with-type/0004.mjs | 13 + .../test/cases/various/0001.expect.json | 1 + .../test/cases/various/0001.mjs | 13 + .../test/cases/various/0002.expect.json | 737 +++++++ .../test/cases/various/0002.mjs | 13 + .../test/cases/various/0003.expect.json | 255 +++ .../test/cases/various/0003.mjs | 13 + .../test/cases/various/0004.expect.json | 367 ++++ .../test/cases/various/0004.mjs | 13 + .../test/cases/various/0005.expect.json | 186 ++ .../test/cases/various/0005.mjs | 13 + .../test/cases/various/0006.expect.json | 43 + .../test/cases/various/0006.mjs | 13 + .../test/serialize/0001.mjs | 13 + .../media-query-list-parser/test/test.mjs | 35 + .../test/util/run-test.mjs | 25 + .../media-query-list-parser/tsconfig.json | 9 + plugins/postcss-custom-media/.tape.mjs | 6 +- plugins/postcss-custom-media/package.json | 3 +- .../src/custom-media-from-root.ts | 7 +- plugins/postcss-custom-media/src/index.ts | 3 +- .../src/is-processable-custom-media-rule.ts | 4 - .../always-true-or-false.ts | 4 +- .../at-media-params-tokens.ts | 3 +- .../src/transform-at-media/custom-media.ts | 108 +- .../split-media-query-list.ts | 60 - .../top-level-combination-keywords.ts | 90 - .../transform-at-media/transform-at-media.ts | 292 ++- .../src/transform-at-media/true-and-false.ts | 2 + .../test/basic-after-v9.css | 6 + .../test/basic-after-v9.expect.css | 6 + .../test/basic-after-v9.preserve.expect.css | 12 + plugins/postcss-custom-media/test/comma-2.css | 6 +- .../test/comma-2.expect.css | 34 + plugins/postcss-custom-media/test/nesting.css | 25 + .../test/nesting.expect.css | 20 + .../test/not-processable.css | 4 - .../test/not-processable.expect.css | 4 - .../postcss-custom-media/test/or.expect.css | 2 +- rollup/configs/externals.js | 4 + rollup/presets/package-typescript.js | 4 +- 245 files changed, 23182 insertions(+), 440 deletions(-) create mode 100644 packages/css-parser-algorithms/.gitignore create mode 100644 packages/css-parser-algorithms/.nvmrc create mode 100644 packages/css-parser-algorithms/CHANGELOG.md create mode 100644 packages/css-parser-algorithms/LICENSE.md create mode 100644 packages/css-parser-algorithms/README.md create mode 100644 packages/css-parser-algorithms/package.json create mode 100644 packages/css-parser-algorithms/src/consume/consume-component-block-function.ts create mode 100644 packages/css-parser-algorithms/src/index.ts create mode 100644 packages/css-parser-algorithms/src/interfaces/context.ts create mode 100644 packages/css-parser-algorithms/src/interfaces/error.ts create mode 100644 packages/css-parser-algorithms/src/parse/parse-comma-separated-list-of-component-values.ts create mode 100644 packages/css-parser-algorithms/src/parse/parse-component-value.ts create mode 100644 packages/css-parser-algorithms/src/parse/parse-list-of-component-values.ts create mode 100644 packages/css-parser-algorithms/src/util/component-value-type.ts create mode 100644 packages/css-parser-algorithms/src/util/node-ancestry.ts create mode 100644 packages/css-parser-algorithms/src/util/type-predicates.ts create mode 100644 packages/css-parser-algorithms/stryker.conf.json create mode 100644 packages/css-parser-algorithms/test/_import.mjs create mode 100644 packages/css-parser-algorithms/test/_require.cjs create mode 100644 packages/css-parser-algorithms/test/cases/media-not/0001.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/media-not/0001.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/media-not/0001.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0001.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0002.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0003.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0004.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-boolean/0005.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0001.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0001.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0001.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0002.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0002.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0002.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0003.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0003.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0003.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0004.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0004.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0004.mjs create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0005.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0005.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/mf-plain/0005.mjs create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0001.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0001.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0001.mjs create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0002.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0002.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0002.mjs create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0003.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0003.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/query-with-type/0003.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0001.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0001.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0001.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0002.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0002.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0002.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0003.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0003.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0003.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0004.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0004.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0004.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0005.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0005.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0005.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0006.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0006.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0006.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0007.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0007.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0007.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0008.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0008.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0008.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0009.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0009.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0009.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0010.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0010.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0010.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0011.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0011.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0011.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0012.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0012.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0012.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0013.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0013.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0013.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0014.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0014.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0014.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0015.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0015.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0015.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0016.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0016.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0016.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0017.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0017.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0017.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0018.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0018.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0018.mjs create mode 100644 packages/css-parser-algorithms/test/cases/various/0019.list-comma.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0019.list-space.expect.json create mode 100644 packages/css-parser-algorithms/test/cases/various/0019.mjs create mode 100644 packages/css-parser-algorithms/test/test.mjs create mode 100644 packages/css-parser-algorithms/test/util/run-test.mjs create mode 100644 packages/css-parser-algorithms/tsconfig.json create mode 100644 packages/css-tokenizer/src/util/clone-tokens.ts create mode 100644 packages/media-query-list-parser/.gitignore create mode 100644 packages/media-query-list-parser/.nvmrc create mode 100644 packages/media-query-list-parser/CHANGELOG.md create mode 100644 packages/media-query-list-parser/LICENSE.md create mode 100644 packages/media-query-list-parser/README.md create mode 100644 packages/media-query-list-parser/package.json create mode 100644 packages/media-query-list-parser/src/index.ts create mode 100644 packages/media-query-list-parser/src/nodes/general-enclosed.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-and.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-condition-list.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-condition.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-boolean.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-comparison.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-name.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-plain.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-range.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature-value.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-feature.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-in-parens.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-not.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-or.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-query-modifier.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-query.ts create mode 100644 packages/media-query-list-parser/src/nodes/media-type.ts create mode 100644 packages/media-query-list-parser/src/parser/parse-media-query.ts create mode 100644 packages/media-query-list-parser/src/parser/parse.ts create mode 100644 packages/media-query-list-parser/src/util/clone-media-query.ts create mode 100644 packages/media-query-list-parser/src/util/component-value-is.ts create mode 100644 packages/media-query-list-parser/src/util/node-type.ts create mode 100644 packages/media-query-list-parser/src/util/type-predicates.ts create mode 100644 packages/media-query-list-parser/test/_import.mjs create mode 100644 packages/media-query-list-parser/test/_require.cjs create mode 100644 packages/media-query-list-parser/test/cases/media-not/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/media-not/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-plain/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0006.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0006.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0007.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0007.mjs create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0006.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0006.mjs create mode 100644 packages/media-query-list-parser/test/serialize/0001.mjs create mode 100644 packages/media-query-list-parser/test/test.mjs create mode 100644 packages/media-query-list-parser/test/util/run-test.mjs create mode 100644 packages/media-query-list-parser/tsconfig.json delete mode 100644 plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts delete mode 100644 plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts create mode 100644 plugins/postcss-custom-media/test/nesting.css create mode 100644 plugins/postcss-custom-media/test/nesting.expect.css diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d98bf10d01..2cb8186230 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,7 +81,7 @@ jobs: # - without requiring postinstall scripts from dependencies to run - name: build run: | - npm run build --if-present $MODIFIED_WORKSPACES + npm run build --if-present - name: lint run: npm run lint --if-present $MODIFIED_WORKSPACES diff --git a/package-lock.json b/package-lock.json index 313993ae1c..8ba40711a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,9 @@ "version": "1.0.0", "license": "CC0-1.0", "workspaces": [ + "packages/css-tokenizer", + "packages/css-parser-algorithms", + "packages/media-query-list-parser", "packages/*", "plugins/postcss-progressive-custom-properties", "plugins/*", @@ -1812,6 +1815,10 @@ "resolved": "experimental/css-has-pseudo", "link": true }, + "node_modules/@csstools/css-parser-algorithms": { + "resolved": "packages/css-parser-algorithms", + "link": true + }, "node_modules/@csstools/css-tokenizer": { "resolved": "packages/css-tokenizer", "link": true @@ -1824,6 +1831,10 @@ "resolved": "packages/generate-test-cases", "link": true }, + "node_modules/@csstools/media-query-list-parser": { + "resolved": "packages/media-query-list-parser", + "link": true + }, "node_modules/@csstools/postcss-base-plugin": { "resolved": "plugins/postcss-base-plugin", "link": true @@ -6915,6 +6926,37 @@ "url": "https://opencollective.com/csstools" } }, + "packages/css-parser": { + "name": "@csstools/css-parser", + "version": "1.0.0", + "extraneous": true, + "license": "MIT", + "dependencies": { + "@csstools/css-tokenizer": "^1.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, + "packages/css-parser-algorithms": { + "name": "@csstools/css-parser-algorithms", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@csstools/css-tokenizer": "^1.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, "packages/css-tokenizer": { "name": "@csstools/css-tokenizer", "version": "1.0.0", @@ -6942,6 +6984,35 @@ "url": "https://opencollective.com/csstools" } }, + "packages/media-query-list-parser": { + "name": "@csstools/media-query-list-parser", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@csstools/css-parser-algorithms": "^1.0.0", + "@csstools/css-tokenizer": "^1.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, + "packages/postcss-media-query-list-parser": { + "name": "@csstools/postcss-media-query-list-parser", + "version": "1.0.0", + "extraneous": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, "packages/postcss-tape": { "name": "@csstools/postcss-tape", "version": "1.0.0", @@ -6978,6 +7049,19 @@ "postcss-selector-parser": "^6.0.10" } }, + "packages/virtual-media": { + "name": "@csstools/virtual-media", + "version": "1.0.0", + "extraneous": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, "plugin-packs/postcss-preset-env": { "version": "8.0.0-alpha.0", "license": "CC0-1.0", @@ -7259,7 +7343,8 @@ "version": "8.0.2", "license": "MIT", "dependencies": { - "@csstools/css-tokenizer": "^1.0.0" + "@csstools/css-tokenizer": "^1.0.0", + "@csstools/media-query-list-parser": "^1.0.0" }, "engines": { "node": "^14 || ^16 || >=18" @@ -9019,6 +9104,12 @@ "version": "file:experimental/css-has-pseudo", "requires": {} }, + "@csstools/css-parser-algorithms": { + "version": "file:packages/css-parser-algorithms", + "requires": { + "@csstools/css-tokenizer": "^1.0.0" + } + }, "@csstools/css-tokenizer": { "version": "file:packages/css-tokenizer" }, @@ -9070,6 +9161,13 @@ "mdn-data": "^2.0.28" } }, + "@csstools/media-query-list-parser": { + "version": "file:packages/media-query-list-parser", + "requires": { + "@csstools/css-parser-algorithms": "^1.0.0", + "@csstools/css-tokenizer": "^1.0.0" + } + }, "@csstools/postcss-base-plugin": { "version": "file:plugins/postcss-base-plugin", "requires": {} @@ -11722,7 +11820,8 @@ "postcss-custom-media": { "version": "file:plugins/postcss-custom-media", "requires": { - "@csstools/css-tokenizer": "^1.0.0" + "@csstools/css-tokenizer": "^1.0.0", + "@csstools/media-query-list-parser": "^1.0.0" } }, "postcss-custom-properties": { diff --git a/package.json b/package.json index 63de9f4f56..92b4a687e1 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,9 @@ "node": "^14 || ^16 || >=18" }, "workspaces": [ + "packages/css-tokenizer", + "packages/css-parser-algorithms", + "packages/media-query-list-parser", "packages/*", "plugins/postcss-progressive-custom-properties", "plugins/*", diff --git a/packages/css-parser-algorithms/.gitignore b/packages/css-parser-algorithms/.gitignore new file mode 100644 index 0000000000..f548255b01 --- /dev/null +++ b/packages/css-parser-algorithms/.gitignore @@ -0,0 +1,7 @@ +node_modules +package-lock.json +yarn.lock +*.result.css +*.result.css.map +*.result.json +dist/* diff --git a/packages/css-parser-algorithms/.nvmrc b/packages/css-parser-algorithms/.nvmrc new file mode 100644 index 0000000000..f0b10f153f --- /dev/null +++ b/packages/css-parser-algorithms/.nvmrc @@ -0,0 +1 @@ +v16.13.1 diff --git a/packages/css-parser-algorithms/CHANGELOG.md b/packages/css-parser-algorithms/CHANGELOG.md new file mode 100644 index 0000000000..b0ff6b0825 --- /dev/null +++ b/packages/css-parser-algorithms/CHANGELOG.md @@ -0,0 +1,3 @@ +### 1.0.0 + +- Initial version diff --git a/packages/css-parser-algorithms/LICENSE.md b/packages/css-parser-algorithms/LICENSE.md new file mode 100644 index 0000000000..af5411fa24 --- /dev/null +++ b/packages/css-parser-algorithms/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2022 Romain Menke, Antonio Laguna + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/css-parser-algorithms/README.md b/packages/css-parser-algorithms/README.md new file mode 100644 index 0000000000..aeda873442 --- /dev/null +++ b/packages/css-parser-algorithms/README.md @@ -0,0 +1,120 @@ +# CSS Parser Algorithms + +[npm version][npm-url] +[Build Status][cli-url] +[Discord][discord] + +Implemented from : https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/ + +## Usage + +Add [CSS Parser Algorithms] to your project: + +```bash +npm install postcss @csstools/css-parser-algorithms --save-dev +``` + +[CSS Parser Algorithms] only accepts tokenized CSS. +It must be used together with `@csstools/css-tokenizer`. + + +```js +import { tokenizer, TokenType } from '@csstools/css-tokenizer'; +import { parseComponentValue } from '@csstools/css-parser-algorithms'; + +const myCSS = `@media only screen and (min-width: 768rem) { + .foo { + content: 'Some content!' !important; + } +} +`; + +const t = tokenizer({ + css: myCSS, +}); + +const tokens = []; + +{ + while (!t.endOfFile()) { + tokens.push(t.nextToken()); + } + + tokens.push(t.nextToken()); // EOF-token +} + +const options = { + onParseError: ((err) => { + throw new Error(JSON.stringify(err)); + }), +}; + +const result = parseComponentValue(tokens, options); + +console.log(result); +``` + +### Available functions + +- [`parseComponentValue`](https://www.w3.org/TR/css-syntax-3/#parse-component-value) +- [`parseListOfComponentValues`](https://www.w3.org/TR/css-syntax-3/#parse-list-of-component-values) +- [`parseCommaSeparatedListOfComponentValues`](https://www.w3.org/TR/css-syntax-3/#parse-comma-separated-list-of-component-values) + +### Utilities + +#### `gatherNodeAncestry` + +The AST does not expose the entire ancestry of each node. +The walker methods do provide access to the current parent, but also not the entire ancestry. + +To gather the entire ancestry for a a given sub tree of the AST you can use `gatherNodeAncestry`. +The result is a `Map` with the child nodes as keys and the parents as values. +This allows you to lookup any ancestor of any node. + +```css +import { parseComponentValue } from '@csstools/css-parser-algorithms'; + +const result = parseComponentValue(tokens, options); +const ancestry = gatherNodeAncestry(result); +``` + +### Options + +```ts +{ + onParseError?: (error: ParserError) => void +} +``` + +#### `onParseError` + +The parser algorithms are forgiving and won't stop when a parse error is encountered. +Parse errors also aren't tokens. + +To receive parsing error information you can set a callback. + +Parser errors will try to inform you about the point in the parsing logic the error happened. +This tells you the kind of error. + +`start` and `end` are the location in your CSS source code. + +`UnclosedSimpleBlockNode` and `UnclosedFunctionNode` entries will be added to the output. +This allows you to recover from errors and/or show warnings. + +## Goals and non-goals + +Things this package aims to be: +- specification compliant CSS parser +- a reliable low level package to be used in CSS sub-grammars + +What it is not: +- opinionated +- fast +- small +- a replacement for PostCSS (PostCSS is fast and also an ecosystem) + +[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test +[discord]: https://discord.gg/bUadyRwkJS +[npm-url]: https://www.npmjs.com/package/@csstools/css-parser-algorithms + +[CSS Parser Algorithms]: https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms diff --git a/packages/css-parser-algorithms/package.json b/packages/css-parser-algorithms/package.json new file mode 100644 index 0000000000..35048273d9 --- /dev/null +++ b/packages/css-parser-algorithms/package.json @@ -0,0 +1,69 @@ +{ + "name": "@csstools/css-parser-algorithms", + "description": "Algorithms to help you parse CSS from an array of tokens.", + "version": "1.0.0", + "contributors": [ + { + "name": "Antonio Laguna", + "email": "antonio@laguna.es", + "url": "https://antonio.laguna.es" + }, + { + "name": "Romain Menke", + "email": "romainmenke@gmail.com" + } + ], + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "main": "dist/index.cjs", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.cjs", + "default": "./dist/index.mjs" + } + }, + "files": [ + "CHANGELOG.md", + "LICENSE.md", + "README.md", + "dist" + ], + "dependencies": { + "@csstools/css-tokenizer": "^1.0.0" + }, + "scripts": { + "build": "rollup -c ../../rollup/default.js", + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", + "lint": "npm run lint:eslint && npm run lint:package-json", + "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", + "lint:package-json": "node ../../.github/bin/format-package-json.mjs", + "prepublishOnly": "npm run clean && npm run build && npm run test", + "stryker": "stryker run --logLevel error", + "test": "node ./test/test.mjs", + "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs", + "test:rewrite-expects": "REWRITE_EXPECTS=true node ./test/test.mjs" + }, + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms#readme", + "repository": { + "type": "git", + "url": "https://github.com/csstools/postcss-plugins.git", + "directory": "packages/css-parser-algorithms" + }, + "bugs": "https://github.com/csstools/postcss-plugins/issues", + "keywords": [ + "css", + "parser" + ], + "volta": { + "extends": "../../package.json" + } +} diff --git a/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts new file mode 100644 index 0000000000..0bad490c7f --- /dev/null +++ b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts @@ -0,0 +1,626 @@ +import { CSSToken, mirrorVariantType, stringify, TokenType, isToken, TokenFunction } from '@csstools/css-tokenizer'; +import { Context } from '../interfaces/context'; +import { ComponentValueType } from '../util/component-value-type'; + +export type ContainerNode = FunctionNode | SimpleBlockNode; + +export type ComponentValue = FunctionNode | SimpleBlockNode | WhitespaceNode | CommentNode | TokenNode | UnclosedSimpleBlockNode | UnclosedFunctionNode; + +// https://www.w3.org/TR/css-syntax-3/#consume-a-component-value +export function consumeComponentValue(ctx: Context, tokens: Array): { advance: number, node: ComponentValue } { + const i = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + const token = tokens[i]; + if ( + token[0] === TokenType.OpenParen || + token[0] === TokenType.OpenCurly || + token[0] === TokenType.OpenSquare + ) { + const r = consumeSimpleBlock(ctx, tokens.slice(i)); + return { + advance: r.advance + i, + node: r.node, + }; + } + + if (token[0] === TokenType.Function) { + const r = consumeFunction(ctx, tokens.slice(i)); + return { + advance: r.advance + i, + node: r.node, + }; + } + + if (token[0] === TokenType.Whitespace) { + const r = consumeWhitespace(ctx, tokens.slice(i)); + return { + advance: r.advance + i, + node: r.node, + }; + } + + if (token[0] === TokenType.Comment) { + const r = consumeComment(ctx, tokens.slice(i)); + return { + advance: r.advance + i, + node: r.node, + }; + } + + return { + advance: i + 1, + node: new TokenNode(token), + }; + } +} + +export class FunctionNode { + type: ComponentValueType = ComponentValueType.Function; + + name: TokenFunction; + endToken: CSSToken; + value: Array; + + constructor(name: TokenFunction, endToken: CSSToken, value: Array) { + this.name = name; + this.endToken = endToken; + this.value = value; + } + + get nameTokenValue(): string { + return this.name[4].value; + } + + tokens(): Array { + return [ + this.name, + ...this.value.flatMap((x) => { + if (isToken(x)) { + return x; + } + + return x.tokens(); + }), + this.endToken, + ]; + } + + toString(): string { + const valueString = this.value.map((x) => { + if (isToken(x)) { + return stringify(x); + } + + return x.toString(); + }).join(''); + + return stringify(this.name) + valueString + stringify(this.endToken); + } + + indexOf(item: ComponentValue): number | string { + return this.value.indexOf(item); + } + + at(index: number | string) { + if (typeof index === 'number') { + if (index < 0) { + index = this.value.length + index; + } + return this.value[index]; + } + } + + walk(cb: (entry: { node: ComponentValue, parent: ContainerNode }, index: number | string) => boolean | void) { + let aborted = false; + + this.value.forEach((child, index) => { + if (aborted) { + return; + } + + if (cb({ node: child, parent: this }, index) === false) { + aborted = true; + return; + } + + if ('walk' in child) { + if (child.walk(cb) === false) { + aborted = true; + return; + } + } + }); + + if (aborted) { + return false; + } + } + + toJSON() { + return { + type: this.type, + name: this.name[4].value, + tokens: this.tokens(), + value: this.value.map((x) => x.toJSON()), + }; + } + + isFunctionNode(): this is FunctionNode { + return FunctionNode.isFunctionNode(this); + } + + static isFunctionNode(x: unknown): x is FunctionNode { + if (!x) { + return false; + } + + if (!(x instanceof FunctionNode)) { + return false; + } + + return x.type === ComponentValueType.Function; + } +} + +// https://www.w3.org/TR/css-syntax-3/#consume-function +export function consumeFunction(ctx: Context, tokens: Array): { advance: number, node: FunctionNode | UnclosedFunctionNode } { + const value: Array = []; + + let i = 1; + + // eslint-disable-next-line no-constant-condition + while (true) { + const token = tokens[i]; + if (!token || token[0] === TokenType.EOF) { + ctx.onParseError({ + message: 'Unexpected EOF while consuming a function.', + start: tokens[0][2], + end: tokens[tokens.length - 1][3], + state: [ + '5.4.9. Consume a function', + 'Unexpected EOF', + ], + }); + + return { + advance: tokens.length, + node: new UnclosedFunctionNode(tokens), + }; + } + + if (token[0] === TokenType.CloseParen) { + return { + advance: i + 1, + node: new FunctionNode(tokens[0] as TokenFunction, token, value), + }; + } + + if (token[0] === TokenType.Comment || token[0] === TokenType.Whitespace) { + const result = consumeAllCommentsAndWhitespace(ctx, tokens.slice(i)); + i += result.advance; + value.push(...result.nodes); + continue; + } + + const result = consumeComponentValue(ctx, tokens.slice(i)); + i += result.advance; + value.push(result.node); + } +} + +export class SimpleBlockNode { + type: ComponentValueType = ComponentValueType.SimpleBlock; + + startToken: CSSToken; + endToken: CSSToken; + value: Array; + + constructor(startToken: CSSToken, endToken: CSSToken, value: Array) { + this.startToken = startToken; + this.endToken = endToken; + this.value = value; + } + + tokens(): Array { + return [ + this.startToken, + ...this.value.flatMap((x) => { + if (isToken(x)) { + return x; + } + + return x.tokens(); + }), + this.endToken, + ]; + } + + toString(): string { + const valueString = this.value.map((x) => { + if (isToken(x)) { + return stringify(x); + } + + return x.toString(); + }).join(''); + + return stringify(this.startToken) + valueString + stringify(this.endToken); + } + + indexOf(item: ComponentValue): number | string { + return this.value.indexOf(item); + } + + at(index: number | string) { + if (typeof index === 'number') { + if (index < 0) { + index = this.value.length + index; + } + return this.value[index]; + } + } + + walk(cb: (entry: { node: ComponentValue, parent: ContainerNode }, index: number | string) => boolean | void) { + let aborted = false; + + this.value.forEach((child, index) => { + if (aborted) { + return; + } + + if (cb({ node: child, parent: this }, index) === false) { + aborted = true; + return; + } + + if ('walk' in child) { + if (child.walk(cb) === false) { + aborted = true; + return; + } + } + }); + + if (aborted) { + return false; + } + } + + toJSON() { + return { + type: this.type, + startToken: this.startToken, + tokens: this.tokens(), + value: this.value.map((x) => x.toJSON()), + }; + } + + isSimpleBlockNode(): this is SimpleBlockNode { + return SimpleBlockNode.isSimpleBlockNode(this); + } + + static isSimpleBlockNode(x: unknown): x is SimpleBlockNode { + if (!x) { + return false; + } + + if (!(x instanceof SimpleBlockNode)) { + return false; + } + + return x.type === ComponentValueType.SimpleBlock; + } +} + +/** https://www.w3.org/TR/css-syntax-3/#consume-simple-block */ +export function consumeSimpleBlock(ctx: Context, tokens: Array): { advance: number, node: SimpleBlockNode | UnclosedSimpleBlockNode } { + const endingTokenType = mirrorVariantType(tokens[0][0]); + if (!endingTokenType) { + throw new Error('Failed to parse, a mirror variant must exist for all block open tokens.'); + } + + const value: Array = []; + + let i = 1; + + // eslint-disable-next-line no-constant-condition + while (true) { + const token = tokens[i]; + if (!token || token[0] === TokenType.EOF) { + ctx.onParseError({ + message: 'Unexpected EOF while consuming a simple block.', + start: tokens[0][2], + end: tokens[tokens.length - 1][3], + state: [ + '5.4.8. Consume a simple block', + 'Unexpected EOF', + ], + }); + + return { + advance: tokens.length, + node: new UnclosedSimpleBlockNode(tokens), + }; + } + + if (token[0] === endingTokenType) { + return { + advance: i + 1, + node: new SimpleBlockNode(tokens[0], token, value), + }; + } + + if (token[0] === TokenType.Comment || token[0] === TokenType.Whitespace) { + const result = consumeAllCommentsAndWhitespace(ctx, tokens.slice(i)); + i += result.advance; + value.push(...result.nodes); + continue; + } + + const result = consumeComponentValue(ctx, tokens.slice(i)); + i += result.advance; + value.push(result.node); + } +} + +export class WhitespaceNode { + type: ComponentValueType = ComponentValueType.Whitespace; + + value: Array; + + constructor(value: Array) { + this.value = value; + } + + tokens(): Array { + return this.value; + } + + toString(): string { + return stringify(...this.value); + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isWhitespaceNode(): this is WhitespaceNode { + return WhitespaceNode.isWhitespaceNode(this); + } + + static isWhitespaceNode(x: unknown): x is WhitespaceNode { + if (!x) { + return false; + } + + if (!(x instanceof WhitespaceNode)) { + return false; + } + + return x.type === ComponentValueType.Whitespace; + } +} + +export function consumeWhitespace(ctx: Context, tokens: Array): { advance: number, node: WhitespaceNode } { + let i = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + const token = tokens[i]; + if (token[0] !== TokenType.Whitespace) { + return { + advance: i, + node: new WhitespaceNode(tokens.slice(0, i)), + }; + } + + i++; + } +} + +export class CommentNode { + type: ComponentValueType = ComponentValueType.Comment; + + value: CSSToken; + + constructor(value: CSSToken) { + this.value = value; + } + + tokens(): Array { + return [ + this.value, + ]; + } + + toString(): string { + return stringify(this.value); + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isCommentNode(): this is CommentNode { + return CommentNode.isCommentNode(this); + } + + static isCommentNode(x: unknown): x is CommentNode { + if (!x) { + return false; + } + + if (!(x instanceof CommentNode)) { + return false; + } + + return x.type === ComponentValueType.Comment; + } +} + +export function consumeComment(ctx: Context, tokens: Array): { advance: number, node: CommentNode } { + return { + advance: 1, + node: new CommentNode(tokens[0]), + }; +} + +export function consumeAllCommentsAndWhitespace(ctx: Context, tokens: Array): { advance: number, nodes: Array } { + const nodes: Array = []; + + let i = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + if (tokens[i][0] === TokenType.Whitespace) { + const result = consumeWhitespace(ctx, tokens.slice(i)); + i += result.advance; + nodes.push(result.node); + continue; + } + + if (tokens[i][0] === TokenType.Comment) { + nodes.push(new CommentNode(tokens[i])); + i++; + continue; + } + + return { + advance: i, + nodes: nodes, + }; + } +} + +export class TokenNode { + type: ComponentValueType = ComponentValueType.Token; + + value: CSSToken; + + constructor(value: CSSToken) { + this.value = value; + } + + tokens(): Array { + return [ + this.value, + ]; + } + + toString(): string { + return stringify(this.value); + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isTokenNode(): this is TokenNode { + return TokenNode.isTokenNode(this); + } + + static isTokenNode(x: unknown): x is TokenNode { + if (!x) { + return false; + } + + if (!(x instanceof TokenNode)) { + return false; + } + + return x.type === ComponentValueType.Token; + } +} + +export class UnclosedFunctionNode { + type: ComponentValueType = ComponentValueType.UnclosedFunction; + + value: Array; + + constructor(value: Array) { + this.value = value; + } + + tokens(): Array { + return this.value; + } + + toString(): string { + return stringify(...this.value); + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isUnclosedFunctionNode(): this is UnclosedFunctionNode { + return UnclosedFunctionNode.isUnclosedFunctionNode(this); + } + + static isUnclosedFunctionNode(x: unknown): x is UnclosedFunctionNode { + if (!x) { + return false; + } + + if (!(x instanceof UnclosedFunctionNode)) { + return false; + } + + return x.type === ComponentValueType.UnclosedFunction; + } +} + +export class UnclosedSimpleBlockNode { + type: ComponentValueType = ComponentValueType.UnclosedSimpleBlock; + + value: Array; + + constructor(value: Array) { + this.value = value; + } + + tokens(): Array { + return this.value; + } + + toString(): string { + return stringify(...this.value); + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isUnclosedSimpleBlockNode(): this is UnclosedSimpleBlockNode { + return UnclosedSimpleBlockNode.isUnclosedSimpleBlockNode(this); + } + + static isUnclosedSimpleBlockNode(x: unknown): x is UnclosedSimpleBlockNode { + if (!x) { + return false; + } + + if (!(x instanceof UnclosedSimpleBlockNode)) { + return false; + } + + return x.type === ComponentValueType.UnclosedSimpleBlock; + } +} diff --git a/packages/css-parser-algorithms/src/index.ts b/packages/css-parser-algorithms/src/index.ts new file mode 100644 index 0000000000..5bb92c097e --- /dev/null +++ b/packages/css-parser-algorithms/src/index.ts @@ -0,0 +1,16 @@ +export * from './consume/consume-component-block-function'; +export { parseComponentValue } from './parse/parse-component-value'; +export { parseListOfComponentValues } from './parse/parse-list-of-component-values'; +export { parseCommaSeparatedListOfComponentValues } from './parse/parse-comma-separated-list-of-component-values'; +export { gatherNodeAncestry } from './util/node-ancestry'; +export { ParserError } from './interfaces/error'; +export { ComponentValueType } from './util/component-value-type'; +export { + isCommentNode, + isFunctionNode, + isSimpleBlockNode, + isTokenNode, + isUnclosedFunctionNode, + isUnclosedSimpleBlockNode, + isWhitespaceNode, +} from './util/type-predicates'; diff --git a/packages/css-parser-algorithms/src/interfaces/context.ts b/packages/css-parser-algorithms/src/interfaces/context.ts new file mode 100644 index 0000000000..27eb77de68 --- /dev/null +++ b/packages/css-parser-algorithms/src/interfaces/context.ts @@ -0,0 +1,5 @@ +import { ParserError } from './error'; + +export type Context = { + onParseError: (error: ParserError) => void +} diff --git a/packages/css-parser-algorithms/src/interfaces/error.ts b/packages/css-parser-algorithms/src/interfaces/error.ts new file mode 100644 index 0000000000..e8c6777458 --- /dev/null +++ b/packages/css-parser-algorithms/src/interfaces/error.ts @@ -0,0 +1,6 @@ +export type ParserError = { + message: string, + start: number, + end: number, + state: Array +} diff --git a/packages/css-parser-algorithms/src/parse/parse-comma-separated-list-of-component-values.ts b/packages/css-parser-algorithms/src/parse/parse-comma-separated-list-of-component-values.ts new file mode 100644 index 0000000000..a4136fcb8b --- /dev/null +++ b/packages/css-parser-algorithms/src/parse/parse-comma-separated-list-of-component-values.ts @@ -0,0 +1,59 @@ +import { ParserError } from '../interfaces/error'; +import { CSSToken, TokenType } from '@csstools/css-tokenizer'; +import { ComponentValue, consumeComponentValue } from '../consume/consume-component-block-function'; + +export function parseCommaSeparatedListOfComponentValues(tokens: Array, options?: { onParseError?: (error: ParserError) => void }) { + const ctx = { + onParseError: options?.onParseError ?? (() => { /* noop */ }), + }; + + const tokensCopy = [ + ...tokens, + ]; + + if (tokens.length === 0) { + return []; + } + + // We expect the last token to be an EOF token. + // Passing slices of tokens to this function can easily cause the EOF token to be missing. + if (tokensCopy[tokensCopy.length - 1][0] !== TokenType.EOF) { + tokensCopy.push([ + TokenType.EOF, + '', + tokensCopy[tokensCopy.length - 1][2], + tokensCopy[tokensCopy.length - 1][3], + undefined, + ]); + } + + const listOfCvls: Array> = []; + let list: Array = []; + + let i = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + if (!tokensCopy[i] || tokensCopy[i][0] === TokenType.EOF) { + if (list.length) { + listOfCvls.push(list); + } + + return listOfCvls; + } + + if (tokensCopy[i][0] === TokenType.Comma) { + if (list.length) { + listOfCvls.push(list); + } + + list = []; + i++; + continue; + } + + const result = consumeComponentValue(ctx, tokens.slice(i)); + list.push(result.node); + i += result.advance; + } +} diff --git a/packages/css-parser-algorithms/src/parse/parse-component-value.ts b/packages/css-parser-algorithms/src/parse/parse-component-value.ts new file mode 100644 index 0000000000..1fbb8ca011 --- /dev/null +++ b/packages/css-parser-algorithms/src/parse/parse-component-value.ts @@ -0,0 +1,40 @@ +import { ParserError } from '../interfaces/error'; +import { CSSToken, TokenType } from '@csstools/css-tokenizer'; +import { consumeComponentValue } from '../consume/consume-component-block-function'; + +export function parseComponentValue(tokens: Array, options?: { onParseError?: (error: ParserError) => void }) { + const ctx = { + onParseError: options?.onParseError ?? (() => { /* noop */ }), + }; + + const tokensCopy = [ + ...tokens, + ]; + + // We expect the last token to be an EOF token. + // Passing slices of tokens to this function can easily cause the EOF token to be missing. + if (tokensCopy[tokensCopy.length - 1][0] !== TokenType.EOF) { + tokensCopy.push([ + TokenType.EOF, + '', + tokensCopy[tokensCopy.length - 1][2], + tokensCopy[tokensCopy.length - 1][3], + undefined, + ]); + } + + const result = consumeComponentValue(ctx, tokensCopy); + if (tokensCopy[Math.min(result.advance, tokensCopy.length - 1)][0] === TokenType.EOF) { + return result.node; + } + + ctx.onParseError({ + message: 'Expected EOF after parsing a component value.', + start: tokens[0][2], + end: tokens[tokens.length - 1][3], + state: [ + '5.3.9. Parse a component value', + 'Expected EOF', + ], + }); +} diff --git a/packages/css-parser-algorithms/src/parse/parse-list-of-component-values.ts b/packages/css-parser-algorithms/src/parse/parse-list-of-component-values.ts new file mode 100644 index 0000000000..833a5d17a9 --- /dev/null +++ b/packages/css-parser-algorithms/src/parse/parse-list-of-component-values.ts @@ -0,0 +1,40 @@ +import { ParserError } from '../interfaces/error'; +import { CSSToken, TokenType } from '@csstools/css-tokenizer'; +import { ComponentValue, consumeComponentValue } from '../consume/consume-component-block-function'; + +export function parseListOfComponentValues(tokens: Array, options?: { onParseError?: (error: ParserError) => void }) { + const ctx = { + onParseError: options?.onParseError ?? (() => { /* noop */ }), + }; + + const tokensCopy = [ + ...tokens, + ]; + + // We expect the last token to be an EOF token. + // Passing slices of tokens to this function can easily cause the EOF token to be missing. + if (tokensCopy[tokensCopy.length - 1][0] !== TokenType.EOF) { + tokensCopy.push([ + TokenType.EOF, + '', + tokensCopy[tokensCopy.length - 1][2], + tokensCopy[tokensCopy.length - 1][3], + undefined, + ]); + } + + const list: Array = []; + + let i = 0; + + // eslint-disable-next-line no-constant-condition + while (true) { + if (!tokensCopy[i] || tokensCopy[i][0] === TokenType.EOF) { + return list; + } + + const result = consumeComponentValue(ctx, tokensCopy.slice(i)); + list.push(result.node); + i += result.advance; + } +} diff --git a/packages/css-parser-algorithms/src/util/component-value-type.ts b/packages/css-parser-algorithms/src/util/component-value-type.ts new file mode 100644 index 0000000000..228ae5fc75 --- /dev/null +++ b/packages/css-parser-algorithms/src/util/component-value-type.ts @@ -0,0 +1,9 @@ +export enum ComponentValueType { + Function = 'function', + SimpleBlock = 'simple-block', + Whitespace = 'whitespace', + Comment = 'comment', + Token = 'token', + UnclosedFunction = 'unclosed-function', + UnclosedSimpleBlock = 'unclosed-simple-block' +} diff --git a/packages/css-parser-algorithms/src/util/node-ancestry.ts b/packages/css-parser-algorithms/src/util/node-ancestry.ts new file mode 100644 index 0000000000..b6e3403da7 --- /dev/null +++ b/packages/css-parser-algorithms/src/util/node-ancestry.ts @@ -0,0 +1,19 @@ +export interface walkable { + walk(cb: (entry: { node: Array | T, parent: U }, index: number | string) => boolean | void) +} + +export function gatherNodeAncestry(node: walkable) { + const ancestry: Map = new Map(); + + node.walk((entry) => { + if (Array.isArray(entry.node)) { + entry.node.forEach((x) => { + ancestry.set(x, entry.parent); + }); + } else { + ancestry.set(entry.node, entry.parent); + } + }); + + return ancestry; +} diff --git a/packages/css-parser-algorithms/src/util/type-predicates.ts b/packages/css-parser-algorithms/src/util/type-predicates.ts new file mode 100644 index 0000000000..a5cb96eda9 --- /dev/null +++ b/packages/css-parser-algorithms/src/util/type-predicates.ts @@ -0,0 +1,29 @@ +import { CommentNode, FunctionNode, SimpleBlockNode, TokenNode, UnclosedFunctionNode, UnclosedSimpleBlockNode, WhitespaceNode } from '../consume/consume-component-block-function'; + +export function isSimpleBlockNode(x: unknown): x is SimpleBlockNode { + return SimpleBlockNode.isSimpleBlockNode(x); +} + +export function isFunctionNode(x: unknown): x is FunctionNode { + return FunctionNode.isFunctionNode(x); +} + +export function isUnclosedSimpleBlockNode(x: unknown): x is UnclosedSimpleBlockNode { + return UnclosedSimpleBlockNode.isUnclosedSimpleBlockNode(x); +} + +export function isUnclosedFunctionNode(x: unknown): x is UnclosedFunctionNode { + return UnclosedFunctionNode.isUnclosedFunctionNode(x); +} + +export function isWhitespaceNode(x: unknown): x is WhitespaceNode { + return WhitespaceNode.isWhitespaceNode(x); +} + +export function isCommentNode(x: unknown): x is CommentNode { + return CommentNode.isCommentNode(x); +} + +export function isTokenNode(x: unknown): x is TokenNode { + return TokenNode.isTokenNode(x); +} diff --git a/packages/css-parser-algorithms/stryker.conf.json b/packages/css-parser-algorithms/stryker.conf.json new file mode 100644 index 0000000000..015ebbb73c --- /dev/null +++ b/packages/css-parser-algorithms/stryker.conf.json @@ -0,0 +1,19 @@ +{ + "$schema": "../../node_modules/@stryker-mutator/core/schema/stryker-schema.json", + "mutate": [ + "src/**/*.ts" + ], + "buildCommand": "npm run build", + "testRunner": "command", + "coverageAnalysis": "perTest", + "tempDirName": "../../.stryker-tmp", + "commandRunner": { + "command": "npm run test" + }, + "thresholds": { + "high": 100, + "low": 100, + "break": 100 + }, + "inPlace": true +} diff --git a/packages/css-parser-algorithms/test/_import.mjs b/packages/css-parser-algorithms/test/_import.mjs new file mode 100644 index 0000000000..44050c1ac4 --- /dev/null +++ b/packages/css-parser-algorithms/test/_import.mjs @@ -0,0 +1,11 @@ +import { parseComponentValue } from '@csstools/css-parser-algorithms'; +import { TokenType } from '@csstools/css-tokenizer'; + +parseComponentValue([ + [ + TokenType.Ident, 'any', 0, 0, undefined, + ], + [ + TokenType.EOF, '', 0, 0, undefined, + ], +]); diff --git a/packages/css-parser-algorithms/test/_require.cjs b/packages/css-parser-algorithms/test/_require.cjs new file mode 100644 index 0000000000..1e519d1d49 --- /dev/null +++ b/packages/css-parser-algorithms/test/_require.cjs @@ -0,0 +1,11 @@ +const { parseComponentValue } = require('@csstools/css-parser-algorithms'); +const { TokenType } = require('@csstools/css-tokenizer'); + +parseComponentValue([ + [ + TokenType.Ident, 'any', 0, 0, undefined, + ], + [ + TokenType.EOF, '', 0, 0, undefined, + ], +]); diff --git a/packages/css-parser-algorithms/test/cases/media-not/0001.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/media-not/0001.list-comma.expect.json new file mode 100644 index 0000000000..33eb1719a4 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/media-not/0001.list-comma.expect.json @@ -0,0 +1,81 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 4, + 4, + null + ], + "tokens": [ + [ + "(-token", + "(", + 4, + 4, + null + ], + [ + "ident-token", + "color", + 5, + 9, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 5, + 9, + { + "value": "color" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/media-not/0001.list-space.expect.json b/packages/css-parser-algorithms/test/cases/media-not/0001.list-space.expect.json new file mode 100644 index 0000000000..88ce51c608 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/media-not/0001.list-space.expect.json @@ -0,0 +1,79 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 4, + 4, + null + ], + "tokens": [ + [ + "(-token", + "(", + 4, + 4, + null + ], + [ + "ident-token", + "color", + 5, + 9, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 5, + 9, + { + "value": "color" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/media-not/0001.mjs b/packages/css-parser-algorithms/test/cases/media-not/0001.mjs new file mode 100644 index 0000000000..5eb55f343b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/media-not/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not (color)', + 'media-not/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-comma.expect.json new file mode 100644 index 0000000000..7afd42c4d2 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-comma.expect.json @@ -0,0 +1,55 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-space.expect.json new file mode 100644 index 0000000000..5c51b53b73 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.list-space.expect.json @@ -0,0 +1,53 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0001.mjs b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.mjs new file mode 100644 index 0000000000..2686abd601 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color)', + 'mf-boolean/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-comma.expect.json new file mode 100644 index 0000000000..031cdcd31a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-comma.expect.json @@ -0,0 +1,117 @@ +[ + [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "color", + 31, + 35, + { + "value": "color" + } + ], + [ + "comment", + "/* comment 3 */", + 36, + 50, + null + ], + [ + ")-token", + ")", + 51, + 51, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 31, + 35, + { + "value": "color" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 3 */", + 36, + 50, + null + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 4 */", + 52, + 66, + null + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-space.expect.json new file mode 100644 index 0000000000..c3cc37c5c4 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.list-space.expect.json @@ -0,0 +1,115 @@ +[ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "color", + 31, + 35, + { + "value": "color" + } + ], + [ + "comment", + "/* comment 3 */", + 36, + 50, + null + ], + [ + ")-token", + ")", + 51, + 51, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 31, + 35, + { + "value": "color" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 3 */", + 36, + 50, + null + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 4 */", + 52, + 66, + null + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0002.mjs b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.mjs new file mode 100644 index 0000000000..f8266d4410 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '/* comment 1 */(/* comment 2 */color/* comment 3 */)/* comment 4 */', + 'mf-boolean/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-comma.expect.json new file mode 100644 index 0000000000..ea4485beb8 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-comma.expect.json @@ -0,0 +1,55 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "true", + 1, + 4, + { + "value": "true" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "true", + 1, + 4, + { + "value": "true" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-space.expect.json new file mode 100644 index 0000000000..72c7af5f3b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.list-space.expect.json @@ -0,0 +1,53 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "true", + 1, + 4, + { + "value": "true" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "true", + 1, + 4, + { + "value": "true" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0003.mjs b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.mjs new file mode 100644 index 0000000000..c0c9f5645a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(true)', + 'mf-boolean/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-comma.expect.json new file mode 100644 index 0000000000..2c9b6e9486 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-comma.expect.json @@ -0,0 +1,55 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "false", + 1, + 5, + { + "value": "false" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "false", + 1, + 5, + { + "value": "false" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-space.expect.json new file mode 100644 index 0000000000..8d6e7f3be0 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.list-space.expect.json @@ -0,0 +1,53 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "false", + 1, + 5, + { + "value": "false" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "false", + 1, + 5, + { + "value": "false" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0004.mjs b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.mjs new file mode 100644 index 0000000000..0a34a2dc8b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(false)', + 'mf-boolean/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-comma.expect.json new file mode 100644 index 0000000000..b6014d3dfe --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-comma.expect.json @@ -0,0 +1,71 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "color(", + 1, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ], + [ + ")-token", + ")", + 8, + 8, + null + ] + ], + "value": [ + { + "type": "function", + "name": "color", + "tokens": [ + [ + "function-token", + "color(", + 1, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ] + ], + "value": [] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-space.expect.json new file mode 100644 index 0000000000..536dbad654 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.list-space.expect.json @@ -0,0 +1,69 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "color(", + 1, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ], + [ + ")-token", + ")", + 8, + 8, + null + ] + ], + "value": [ + { + "type": "function", + "name": "color", + "tokens": [ + [ + "function-token", + "color(", + 1, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ] + ], + "value": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-boolean/0005.mjs b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.mjs new file mode 100644 index 0000000000..c44c8c1f75 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-boolean/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color())', + 'mf-boolean/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-comma.expect.json new file mode 100644 index 0000000000..297d582fcf --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-comma.expect.json @@ -0,0 +1,120 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17, + 17, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 10, + 10, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-space.expect.json new file mode 100644 index 0000000000..511342310a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0001.list-space.expect.json @@ -0,0 +1,118 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17, + 17, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 10, + 10, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0001.mjs b/packages/css-parser-algorithms/test/cases/mf-plain/0001.mjs new file mode 100644 index 0000000000..b674721b73 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(min-width: 300px)', + 'mf-plain/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-comma.expect.json new file mode 100644 index 0000000000..8669e19b67 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-comma.expect.json @@ -0,0 +1,201 @@ +[ + [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ], + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ], + [ + "colon-token", + ":", + 55, + 55, + null + ], + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ], + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ], + [ + ")-token", + ")", + 91, + 91, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 55, + 55, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 6 */", + 92, + 106, + null + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-space.expect.json new file mode 100644 index 0000000000..e61e96cf24 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0002.list-space.expect.json @@ -0,0 +1,199 @@ +[ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ], + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ], + [ + "colon-token", + ":", + 55, + 55, + null + ], + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ], + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ], + [ + ")-token", + ")", + 91, + 91, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 55, + 55, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* comment 6 */", + 92, + 106, + null + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0002.mjs b/packages/css-parser-algorithms/test/cases/mf-plain/0002.mjs new file mode 100644 index 0000000000..90eb3e1f92 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '/* comment 1 */(/* comment 2 */min-width/* comment 3 */:/* comment 4 */300px/* comment 5 */)/* comment 6 */', + 'mf-plain/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-comma.expect.json new file mode 100644 index 0000000000..f27dd647b7 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-comma.expect.json @@ -0,0 +1,116 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 11, + 11, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-space.expect.json new file mode 100644 index 0000000000..704164d678 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0003.list-space.expect.json @@ -0,0 +1,114 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 11, + 11, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0003.mjs b/packages/css-parser-algorithms/test/cases/mf-plain/0003.mjs new file mode 100644 index 0000000000..ad7c3adf2d --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution: infinite)', + 'mf-plain/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-comma.expect.json new file mode 100644 index 0000000000..cd0b720eb8 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-comma.expect.json @@ -0,0 +1,165 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "resolution(", + 1, + 11, + { + "value": "resolution" + } + ], + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ], + [ + ")-token", + ")", + 15, + 15, + null + ], + [ + "colon-token", + ":", + 16, + 16, + null + ], + [ + "whitespace-token", + " ", + 17, + 17, + null + ], + [ + "ident-token", + "infinite", + 18, + 25, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "function", + "name": "resolution", + "tokens": [ + [ + "function-token", + "resolution(", + 1, + 11, + { + "value": "resolution" + } + ], + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ], + [ + ")-token", + ")", + 15, + 15, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ] + ] + } + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 16, + 16, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 17, + 17, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 18, + 25, + { + "value": "infinite" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-space.expect.json new file mode 100644 index 0000000000..1410e6a8b6 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0004.list-space.expect.json @@ -0,0 +1,163 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "resolution(", + 1, + 11, + { + "value": "resolution" + } + ], + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ], + [ + ")-token", + ")", + 15, + 15, + null + ], + [ + "colon-token", + ":", + 16, + 16, + null + ], + [ + "whitespace-token", + " ", + 17, + 17, + null + ], + [ + "ident-token", + "infinite", + 18, + 25, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "function", + "name": "resolution", + "tokens": [ + [ + "function-token", + "resolution(", + 1, + 11, + { + "value": "resolution" + } + ], + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ], + [ + ")-token", + ")", + 15, + 15, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ] + ] + } + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 16, + 16, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 17, + 17, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 18, + 25, + { + "value": "infinite" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0004.mjs b/packages/css-parser-algorithms/test/cases/mf-plain/0004.mjs new file mode 100644 index 0000000000..6d9a61a7b9 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution(foo): infinite)', + 'mf-plain/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-comma.expect.json new file mode 100644 index 0000000000..3afb8dc077 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-comma.expect.json @@ -0,0 +1,116 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 0, + 0, + null + ], + "tokens": [ + [ + "[-token", + "[", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ], + [ + "]-token", + "]", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 11, + 11, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-space.expect.json b/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-space.expect.json new file mode 100644 index 0000000000..a7c69ba1cf --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0005.list-space.expect.json @@ -0,0 +1,114 @@ +[ + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 0, + 0, + null + ], + "tokens": [ + [ + "[-token", + "[", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ], + [ + "]-token", + "]", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 11, + 11, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/mf-plain/0005.mjs b/packages/css-parser-algorithms/test/cases/mf-plain/0005.mjs new file mode 100644 index 0000000000..946d31898c --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/mf-plain/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '[resolution: infinite]', + 'mf-plain/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-comma.expect.json new file mode 100644 index 0000000000..45a0eace6a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-comma.expect.json @@ -0,0 +1,18 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-space.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-space.expect.json new file mode 100644 index 0000000000..f8d27aa465 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0001.list-space.expect.json @@ -0,0 +1,16 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0001.mjs b/packages/css-parser-algorithms/test/cases/query-with-type/0001.mjs new file mode 100644 index 0000000000..b8d1c3f6b1 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen', + 'query-with-type/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-comma.expect.json new file mode 100644 index 0000000000..d708f4353d --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-comma.expect.json @@ -0,0 +1,44 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-space.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-space.expect.json new file mode 100644 index 0000000000..e27303e35e --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0002.list-space.expect.json @@ -0,0 +1,42 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0002.mjs b/packages/css-parser-algorithms/test/cases/query-with-type/0002.mjs new file mode 100644 index 0000000000..d9da6523a1 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'only screen', + 'query-with-type/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-comma.expect.json new file mode 100644 index 0000000000..4d70580d23 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-comma.expect.json @@ -0,0 +1,44 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-space.expect.json b/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-space.expect.json new file mode 100644 index 0000000000..445e7635bf --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0003.list-space.expect.json @@ -0,0 +1,42 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/query-with-type/0003.mjs b/packages/css-parser-algorithms/test/cases/query-with-type/0003.mjs new file mode 100644 index 0000000000..1684cf6799 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/query-with-type/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not screen', + 'query-with-type/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0001.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0001.list-comma.expect.json new file mode 100644 index 0000000000..e2cb41189a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0001.list-comma.expect.json @@ -0,0 +1,145 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "comment", + "/* a comment */", + 1, + 15, + null + ], + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ], + [ + "whitespace-token", + " ", + 19, + 20, + null + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 1, + 15, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 19, + 20, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "something", + 23, + 31, + { + "value": "something" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 32, + 32, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "else", + 33, + 36, + { + "value": "else" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0001.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0001.list-space.expect.json new file mode 100644 index 0000000000..1fb3acae11 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0001.list-space.expect.json @@ -0,0 +1,143 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "comment", + "/* a comment */", + 1, + 15, + null + ], + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ], + [ + "whitespace-token", + " ", + 19, + 20, + null + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 1, + 15, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 19, + 20, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "something", + 23, + 31, + { + "value": "something" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 32, + 32, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "else", + 33, + 36, + { + "value": "else" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0001.mjs b/packages/css-parser-algorithms/test/cases/various/0001.mjs new file mode 100644 index 0000000000..c5764560e5 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(/* a comment */foo ) something else', + 'various/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0002.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0002.list-comma.expect.json new file mode 100644 index 0000000000..b88eee50e3 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0002.list-comma.expect.json @@ -0,0 +1,790 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 11, + 13, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 25, + 25, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 33, + 33, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 34, + 36, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 38, + 38, + null + ], + "tokens": [ + [ + "(-token", + "(", + 38, + 38, + null + ], + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ], + [ + "colon-token", + ":", + 59, + 59, + null + ], + [ + "comment", + "/* a comment */", + 60, + 74, + null + ], + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ], + [ + ")-token", + ")", + 79, + 79, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 59, + 59, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 60, + 74, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 80, + 80, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 81, + 83, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 84, + 84, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 85, + 85, + null + ], + "tokens": [ + [ + "(-token", + "(", + 85, + 85, + null + ], + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 91, + 91, + null + ], + [ + "delim-token", + "<", + 92, + 92, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 93, + 93, + null + ], + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 98, + 98, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 91, + 91, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 92, + 92, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 93, + 93, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 99, + 99, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 100, + 102, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 103, + 103, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 104, + 104, + null + ], + "tokens": [ + [ + "(-token", + "(", + 104, + 104, + null + ], + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 109, + 109, + null + ], + [ + "delim-token", + "<", + 110, + 110, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 111, + 111, + null + ], + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 117, + 117, + null + ], + [ + "delim-token", + "<", + 118, + 118, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 119, + 119, + null + ], + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 125, + 125, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 109, + 109, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 110, + 110, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 111, + 111, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 117, + 117, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 118, + 118, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 119, + 119, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0002.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0002.list-space.expect.json new file mode 100644 index 0000000000..1df900bfc7 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0002.list-space.expect.json @@ -0,0 +1,788 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 11, + 13, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 25, + 25, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 33, + 33, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 34, + 36, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 38, + 38, + null + ], + "tokens": [ + [ + "(-token", + "(", + 38, + 38, + null + ], + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ], + [ + "colon-token", + ":", + 59, + 59, + null + ], + [ + "comment", + "/* a comment */", + 60, + 74, + null + ], + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ], + [ + ")-token", + ")", + 79, + 79, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 59, + 59, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 60, + 74, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 80, + 80, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 81, + 83, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 84, + 84, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 85, + 85, + null + ], + "tokens": [ + [ + "(-token", + "(", + 85, + 85, + null + ], + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 91, + 91, + null + ], + [ + "delim-token", + "<", + 92, + 92, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 93, + 93, + null + ], + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ], + [ + ")-token", + ")", + 98, + 98, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 91, + 91, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 92, + 92, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 93, + 93, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 99, + 99, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 100, + 102, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 103, + 103, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 104, + 104, + null + ], + "tokens": [ + [ + "(-token", + "(", + 104, + 104, + null + ], + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 109, + 109, + null + ], + [ + "delim-token", + "<", + 110, + 110, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 111, + 111, + null + ], + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 117, + 117, + null + ], + [ + "delim-token", + "<", + 118, + 118, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 119, + 119, + null + ], + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 125, + 125, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 109, + 109, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 110, + 110, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 111, + 111, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 117, + 117, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 118, + 118, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 119, + 119, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0002.mjs b/packages/css-parser-algorithms/test/cases/various/0002.mjs new file mode 100644 index 0000000000..964b4d9b99 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not screen and (min-width: 300px) and (prefers-color-scheme:/* a comment */dark) and (width < 40vw) and (30px < width < 50rem)', + 'various/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0003.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0003.list-comma.expect.json new file mode 100644 index 0000000000..ad2407cdab --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0003.list-comma.expect.json @@ -0,0 +1,347 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "delim-token", + "<", + 12, + 12, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 22, + 22, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 12, + 12, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 23, + 23, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 24, + 26, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 28, + 28, + null + ], + "tokens": [ + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ], + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 40, + 40, + null + ], + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ], + [ + ")-token", + ")", + 51, + 51, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 40, + 40, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 52, + 52, + null + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0003.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0003.list-space.expect.json new file mode 100644 index 0000000000..3bfcbac73f --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0003.list-space.expect.json @@ -0,0 +1,345 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "delim-token", + "<", + 12, + 12, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 22, + 22, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 12, + 12, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 23, + 23, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 24, + 26, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 28, + 28, + null + ], + "tokens": [ + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ], + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 40, + 40, + null + ], + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ], + [ + ")-token", + ")", + 51, + 51, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 40, + 40, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 52, + 52, + null + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0003.mjs b/packages/css-parser-algorithms/test/cases/various/0003.mjs new file mode 100644 index 0000000000..2af154b337 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution < infinite) and (infinite <= resolution) ', + 'various/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0004.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0004.list-comma.expect.json new file mode 100644 index 0000000000..72fb943f6b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0004.list-comma.expect.json @@ -0,0 +1,316 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ] + ] + }, + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 18, + 18, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 20, + 20, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ] + ] + } + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0004.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0004.list-space.expect.json new file mode 100644 index 0000000000..5653f51367 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0004.list-space.expect.json @@ -0,0 +1,314 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ] + ] + }, + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 18, + 18, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 20, + 20, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0004.mjs b/packages/css-parser-algorithms/test/cases/various/0004.mjs new file mode 100644 index 0000000000..62f73bf0a7 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(width < calc(50vw - 3rem))', + 'various/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0005.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0005.list-comma.expect.json new file mode 100644 index 0000000000..8e0833bda1 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0005.list-comma.expect.json @@ -0,0 +1,198 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 7, + 9, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 11, + 13, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 25, + 25, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0005.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0005.list-space.expect.json new file mode 100644 index 0000000000..b41645b594 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0005.list-space.expect.json @@ -0,0 +1,196 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 7, + 9, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 11, + 13, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 15, + 15, + null + ], + "tokens": [ + [ + "(-token", + "(", + 15, + 15, + null + ], + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 25, + 25, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0005.mjs b/packages/css-parser-algorithms/test/cases/various/0005.mjs new file mode 100644 index 0000000000..7c55c608d0 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen and not (min-width: 300px)', + 'various/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0006.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0006.list-comma.expect.json new file mode 100644 index 0000000000..0e5184edc2 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0006.list-comma.expect.json @@ -0,0 +1,56 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0006.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0006.list-space.expect.json new file mode 100644 index 0000000000..75bf497e46 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0006.list-space.expect.json @@ -0,0 +1,54 @@ +[ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0006.mjs b/packages/css-parser-algorithms/test/cases/various/0006.mjs new file mode 100644 index 0000000000..2d9faf7585 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0006.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'only screen ', + 'various/0006', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0007.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0007.list-comma.expect.json new file mode 100644 index 0000000000..e500341e8d --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0007.list-comma.expect.json @@ -0,0 +1,59 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 0, + 0, + null + ], + "tokens": [ + [ + "[-token", + "[", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "]-token", + "]", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0007.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0007.list-space.expect.json new file mode 100644 index 0000000000..c9ead936b2 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0007.list-space.expect.json @@ -0,0 +1,57 @@ +[ + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 0, + 0, + null + ], + "tokens": [ + [ + "[-token", + "[", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "]-token", + "]", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0007.mjs b/packages/css-parser-algorithms/test/cases/various/0007.mjs new file mode 100644 index 0000000000..f3e178c404 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0007.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '[10px]', + 'various/0007', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0008.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0008.list-comma.expect.json new file mode 100644 index 0000000000..9fa9596f9f --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0008.list-comma.expect.json @@ -0,0 +1,110 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + ")-token", + ")", + 11, + 11, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0008.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0008.list-space.expect.json new file mode 100644 index 0000000000..75447e8444 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0008.list-space.expect.json @@ -0,0 +1,108 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + ")-token", + ")", + 11, + 11, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0008.mjs b/packages/css-parser-algorithms/test/cases/various/0008.mjs new file mode 100644 index 0000000000..6ea1fad9db --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0008.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(calc(10px))', + 'various/0008', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0009.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0009.list-comma.expect.json new file mode 100644 index 0000000000..70fea63dd6 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0009.list-comma.expect.json @@ -0,0 +1,129 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + ")-token", + ")", + 12, + 12, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0009.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0009.list-space.expect.json new file mode 100644 index 0000000000..9efe5dbe66 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0009.list-space.expect.json @@ -0,0 +1,127 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + ")-token", + ")", + 12, + 12, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0009.mjs b/packages/css-parser-algorithms/test/cases/various/0009.mjs new file mode 100644 index 0000000000..bdf46f868f --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0009.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(calc(10px) )', + 'various/0009', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0010.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0010.list-comma.expect.json new file mode 100644 index 0000000000..38a3b8c7a8 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0010.list-comma.expect.json @@ -0,0 +1,129 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + "comment", + "/* a comment */", + 11, + 25, + null + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 11, + 25, + null + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0010.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0010.list-space.expect.json new file mode 100644 index 0000000000..bc616fb213 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0010.list-space.expect.json @@ -0,0 +1,127 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ], + [ + "comment", + "/* a comment */", + 11, + 25, + null + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 1, + 5, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 6, + 9, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 11, + 25, + null + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0010.mjs b/packages/css-parser-algorithms/test/cases/various/0010.mjs new file mode 100644 index 0000000000..9b314124f8 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0010.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(calc(10px)/* a comment */)', + 'various/0010', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0011.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0011.list-comma.expect.json new file mode 100644 index 0000000000..b7d0d623d6 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0011.list-comma.expect.json @@ -0,0 +1,298 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ], + [ + "comment", + "/* a comment */", + 12, + 26, + null + ], + [ + ")-token", + ")", + 27, + 27, + null + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "(-token", + "(", + 29, + 29, + null + ], + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ], + [ + ")-token", + ")", + 35, + 35, + null + ], + [ + ")-token", + ")", + 36, + 36, + null + ] + ], + "value": [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 1, + 1, + null + ], + "tokens": [ + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ], + [ + "comment", + "/* a comment */", + 12, + 26, + null + ], + [ + ")-token", + ")", + 27, + 27, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 12, + 26, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 28, + 28, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 29, + 29, + null + ], + "tokens": [ + [ + "(-token", + "(", + 29, + 29, + null + ], + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ], + [ + ")-token", + ")", + 35, + 35, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ] + ] + } + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0011.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0011.list-space.expect.json new file mode 100644 index 0000000000..ce17e46da3 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0011.list-space.expect.json @@ -0,0 +1,296 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ], + [ + "comment", + "/* a comment */", + 12, + 26, + null + ], + [ + ")-token", + ")", + 27, + 27, + null + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "(-token", + "(", + 29, + 29, + null + ], + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ], + [ + ")-token", + ")", + 35, + 35, + null + ], + [ + ")-token", + ")", + 36, + 36, + null + ] + ], + "value": [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 1, + 1, + null + ], + "tokens": [ + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ], + [ + "comment", + "/* a comment */", + 12, + 26, + null + ], + [ + ")-token", + ")", + 27, + 27, + null + ] + ], + "value": [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 2, + 6, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 11, + 11, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 7, + 10, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 12, + 26, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 28, + 28, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 29, + 29, + null + ], + "tokens": [ + [ + "(-token", + "(", + 29, + 29, + null + ], + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ], + [ + ")-token", + ")", + 35, + 35, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "other", + 30, + 34, + { + "value": "other" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0011.mjs b/packages/css-parser-algorithms/test/cases/various/0011.mjs new file mode 100644 index 0000000000..dc4fa65141 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0011.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '((calc(10px)/* a comment */) (other))', + 'various/0011', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0012.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0012.list-comma.expect.json new file mode 100644 index 0000000000..b99cb9831b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0012.list-comma.expect.json @@ -0,0 +1,55 @@ +[ + [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 9, + 9, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0012.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0012.list-space.expect.json new file mode 100644 index 0000000000..ed15ba06aa --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0012.list-space.expect.json @@ -0,0 +1,53 @@ +[ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 9, + 9, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0012.mjs b/packages/css-parser-algorithms/test/cases/various/0012.mjs new file mode 100644 index 0000000000..6f2b313391 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0012.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'calc(10px)', + 'various/0012', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0013.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0013.list-comma.expect.json new file mode 100644 index 0000000000..8f8bd84d15 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0013.list-comma.expect.json @@ -0,0 +1,74 @@ +[ + [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0013.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0013.list-space.expect.json new file mode 100644 index 0000000000..18a9843789 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0013.list-space.expect.json @@ -0,0 +1,72 @@ +[ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0013.mjs b/packages/css-parser-algorithms/test/cases/various/0013.mjs new file mode 100644 index 0000000000..94cc52dee0 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0013.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'calc(10px )', + 'various/0013', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0014.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0014.list-comma.expect.json new file mode 100644 index 0000000000..c7e67316b6 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0014.list-comma.expect.json @@ -0,0 +1,74 @@ +[ + [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* a comment */", + 9, + 23, + null + ], + [ + ")-token", + ")", + 24, + 24, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 9, + 23, + null + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0014.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0014.list-space.expect.json new file mode 100644 index 0000000000..c59243b265 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0014.list-space.expect.json @@ -0,0 +1,72 @@ +[ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* a comment */", + 9, + 23, + null + ], + [ + ")-token", + ")", + 24, + 24, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 9, + 23, + null + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0014.mjs b/packages/css-parser-algorithms/test/cases/various/0014.mjs new file mode 100644 index 0000000000..26a323ac3d --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0014.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'calc(10px/* a comment */)', + 'various/0014', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0015.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0015.list-comma.expect.json new file mode 100644 index 0000000000..d5108b8fdf --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0015.list-comma.expect.json @@ -0,0 +1,347 @@ +[ + [ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 9, + 9, + null + ], + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "comment", + "/* a comment */", + 11, + 25, + null + ], + [ + "comma-token", + ",", + 26, + 26, + null + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ], + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ], + [ + "whitespace-token", + " ", + 34, + 34, + null + ], + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ], + [ + ")-token", + ")", + 45, + 45, + null + ], + [ + ")-token", + ")", + 46, + 46, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 9, + 9, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 11, + 25, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 26, + 26, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 28, + 28, + null + ], + "tokens": [ + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ], + [ + "whitespace-token", + " ", + 34, + 34, + null + ], + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ], + [ + ")-token", + ")", + 45, + 45, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 34, + 34, + null + ] + ] + }, + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ] + ] + } + ] + } + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0015.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0015.list-space.expect.json new file mode 100644 index 0000000000..9bf015a268 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0015.list-space.expect.json @@ -0,0 +1,345 @@ +[ + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 0, + 4, + { + "value": "calc" + } + ], + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 9, + 9, + null + ], + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "comment", + "/* a comment */", + 11, + 25, + null + ], + [ + "comma-token", + ",", + 26, + 26, + null + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ], + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ], + [ + "whitespace-token", + " ", + 34, + 34, + null + ], + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ], + [ + ")-token", + ")", + 45, + 45, + null + ], + [ + ")-token", + ")", + 46, + 46, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 5, + 8, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 9, + 9, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 11, + 25, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 26, + 26, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 28, + 28, + null + ], + "tokens": [ + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ], + [ + "whitespace-token", + " ", + 34, + 34, + null + ], + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ], + [ + ")-token", + ")", + 45, + 45, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "other", + 29, + 33, + { + "value": "other" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 34, + 34, + null + ] + ] + }, + { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 35, + 39, + { + "value": "calc" + } + ], + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ], + [ + ")-token", + ")", + 44, + 44, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "more", + 40, + 43, + { + "value": "more" + } + ] + ] + } + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0015.mjs b/packages/css-parser-algorithms/test/cases/various/0015.mjs new file mode 100644 index 0000000000..656a7b017c --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0015.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'calc(10px, /* a comment */, (other calc(more)))', + 'various/0015', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0016.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0016.list-comma.expect.json new file mode 100644 index 0000000000..28f35b5cd1 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0016.list-comma.expect.json @@ -0,0 +1,162 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 5, + 5, + null + ], + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 5, + 5, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ], + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 12, + 12, + null + ], + "tokens": [ + [ + "(-token", + "(", + 12, + 12, + null + ], + [ + "dimension-token", + "10px", + 13, + 16, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17, + 17, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 13, + 16, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0016.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0016.list-space.expect.json new file mode 100644 index 0000000000..bc31e9fd73 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0016.list-space.expect.json @@ -0,0 +1,170 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 5, + 5, + null + ], + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 5, + 5, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 11, + 11, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 12, + 12, + null + ], + "tokens": [ + [ + "(-token", + "(", + 12, + 12, + null + ], + [ + "dimension-token", + "10px", + 13, + 16, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17, + 17, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 13, + 16, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0016.mjs b/packages/css-parser-algorithms/test/cases/various/0016.mjs new file mode 100644 index 0000000000..238192b316 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0016.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(10px,12px),(10px)', + 'various/0016', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0017.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0017.list-comma.expect.json new file mode 100644 index 0000000000..51b1cc6a1a --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0017.list-comma.expect.json @@ -0,0 +1,151 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 5, + 5, + null + ], + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 5, + 5, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ], + [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 12, + 15, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 17, + 20, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0017.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0017.list-space.expect.json new file mode 100644 index 0000000000..c5cf8279c2 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0017.list-space.expect.json @@ -0,0 +1,159 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ], + [ + "comma-token", + ",", + 5, + 5, + null + ], + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 1, + 4, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 5, + 5, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "12px", + 6, + 9, + { + "value": 12, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + }, + { + "type": "token", + "tokens": [ + [ + "comma-token", + ",", + 11, + 11, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 12, + 15, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 17, + 20, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0017.mjs b/packages/css-parser-algorithms/test/cases/various/0017.mjs new file mode 100644 index 0000000000..3ffaa1e3b6 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0017.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(10px,12px),10px 10px', + 'various/0017', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0018.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0018.list-comma.expect.json new file mode 100644 index 0000000000..d025163ca1 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0018.list-comma.expect.json @@ -0,0 +1,48 @@ +[ + [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 0, + 3, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "15px", + 5, + 8, + { + "value": 15, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0018.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0018.list-space.expect.json new file mode 100644 index 0000000000..fd958c8ba7 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0018.list-space.expect.json @@ -0,0 +1,46 @@ +[ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "10px", + 0, + 3, + { + "value": 10, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "15px", + 5, + 8, + { + "value": 15, + "type": "integer", + "unit": "px" + } + ] + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0018.mjs b/packages/css-parser-algorithms/test/cases/various/0018.mjs new file mode 100644 index 0000000000..3420741281 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0018.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '10px 15px', + 'various/0018', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/cases/various/0019.list-comma.expect.json b/packages/css-parser-algorithms/test/cases/various/0019.list-comma.expect.json new file mode 100644 index 0000000000..1bd898203f --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0019.list-comma.expect.json @@ -0,0 +1,1704 @@ +[ + [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "whitespace-token", + " ", + 1, + 1, + null + ], + [ + "(-token", + "(", + 2, + 2, + null + ], + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "[-token", + "[", + 7, + 7, + null + ], + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ], + [ + "]-token", + "]", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "{-token", + "{", + 12, + 12, + null + ], + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ], + [ + "}-token", + "}", + 15, + 15, + null + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "function-token", + "z(", + 17, + 18, + { + "value": "z" + } + ], + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + ")-token", + ")", + 23, + 23, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 1, + 1, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 2, + 2, + null + ], + "tokens": [ + [ + "(-token", + "(", + 2, + 2, + null + ], + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 7, + 7, + null + ], + "tokens": [ + [ + "[-token", + "[", + 7, + 7, + null + ], + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ], + [ + "]-token", + "]", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 12, + 12, + null + ], + "tokens": [ + [ + "{-token", + "{", + 12, + 12, + null + ], + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ], + [ + "}-token", + "}", + 15, + 15, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 17, + 18, + { + "value": "z" + } + ], + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 25, + 25, + null + ], + "tokens": [ + [ + "[-token", + "[", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "(-token", + "(", + 27, + 27, + null + ], + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ], + [ + "whitespace-token", + " ", + 31, + 31, + null + ], + [ + "[-token", + "[", + 32, + 32, + null + ], + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ], + [ + "]-token", + "]", + 35, + 35, + null + ], + [ + "whitespace-token", + " ", + 36, + 36, + null + ], + [ + "{-token", + "{", + 37, + 37, + null + ], + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ], + [ + "}-token", + "}", + 40, + 40, + null + ], + [ + "whitespace-token", + " ", + 41, + 41, + null + ], + [ + "function-token", + "z(", + 42, + 43, + { + "value": "z" + } + ], + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ], + [ + ")-token", + ")", + 46, + 46, + null + ], + [ + "whitespace-token", + " ", + 47, + 47, + null + ], + [ + "]-token", + "]", + 48, + 48, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 27, + 27, + null + ], + "tokens": [ + [ + "(-token", + "(", + 27, + 27, + null + ], + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 31, + 31, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 32, + 32, + null + ], + "tokens": [ + [ + "[-token", + "[", + 32, + 32, + null + ], + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ], + [ + "]-token", + "]", + 35, + 35, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 36, + 36, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 37, + 37, + null + ], + "tokens": [ + [ + "{-token", + "{", + 37, + 37, + null + ], + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ], + [ + "}-token", + "}", + 40, + 40, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 41, + 41, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 42, + 43, + { + "value": "z" + } + ], + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ], + [ + ")-token", + ")", + 46, + 46, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 47, + 47, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 49, + 49, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 50, + 50, + null + ], + "tokens": [ + [ + "{-token", + "{", + 50, + 50, + null + ], + [ + "whitespace-token", + " ", + 51, + 51, + null + ], + [ + "(-token", + "(", + 52, + 52, + null + ], + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ], + [ + ")-token", + ")", + 55, + 55, + null + ], + [ + "whitespace-token", + " ", + 56, + 56, + null + ], + [ + "[-token", + "[", + 57, + 57, + null + ], + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ], + [ + "]-token", + "]", + 60, + 60, + null + ], + [ + "whitespace-token", + " ", + 61, + 61, + null + ], + [ + "{-token", + "{", + 62, + 62, + null + ], + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ], + [ + "}-token", + "}", + 65, + 65, + null + ], + [ + "whitespace-token", + " ", + 66, + 66, + null + ], + [ + "function-token", + "z(", + 67, + 68, + { + "value": "z" + } + ], + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ], + [ + ")-token", + ")", + 71, + 71, + null + ], + [ + "whitespace-token", + " ", + 72, + 72, + null + ], + [ + "}-token", + "}", + 73, + 73, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 51, + 51, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 52, + 52, + null + ], + "tokens": [ + [ + "(-token", + "(", + 52, + 52, + null + ], + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ], + [ + ")-token", + ")", + 55, + 55, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 56, + 56, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 57, + 57, + null + ], + "tokens": [ + [ + "[-token", + "[", + 57, + 57, + null + ], + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ], + [ + "]-token", + "]", + 60, + 60, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 61, + 61, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 62, + 62, + null + ], + "tokens": [ + [ + "{-token", + "{", + 62, + 62, + null + ], + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ], + [ + "}-token", + "}", + 65, + 65, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 66, + 66, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 67, + 68, + { + "value": "z" + } + ], + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ], + [ + ")-token", + ")", + 71, + 71, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 72, + 72, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 74, + 74, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 75, + 76, + { + "value": "z" + } + ], + [ + "whitespace-token", + " ", + 77, + 77, + null + ], + [ + "(-token", + "(", + 78, + 78, + null + ], + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ], + [ + ")-token", + ")", + 81, + 81, + null + ], + [ + "whitespace-token", + " ", + 82, + 82, + null + ], + [ + "[-token", + "[", + 83, + 83, + null + ], + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ], + [ + "]-token", + "]", + 86, + 86, + null + ], + [ + "whitespace-token", + " ", + 87, + 87, + null + ], + [ + "{-token", + "{", + 88, + 88, + null + ], + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ], + [ + "}-token", + "}", + 91, + 91, + null + ], + [ + "whitespace-token", + " ", + 92, + 92, + null + ], + [ + "function-token", + "z(", + 93, + 94, + { + "value": "z" + } + ], + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ], + [ + ")-token", + ")", + 97, + 97, + null + ], + [ + "whitespace-token", + " ", + 98, + 98, + null + ], + [ + ")-token", + ")", + 99, + 99, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 77, + 77, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 78, + 78, + null + ], + "tokens": [ + [ + "(-token", + "(", + 78, + 78, + null + ], + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ], + [ + ")-token", + ")", + 81, + 81, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 82, + 82, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 83, + 83, + null + ], + "tokens": [ + [ + "[-token", + "[", + 83, + 83, + null + ], + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ], + [ + "]-token", + "]", + 86, + 86, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 87, + 87, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 88, + 88, + null + ], + "tokens": [ + [ + "{-token", + "{", + 88, + 88, + null + ], + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ], + [ + "}-token", + "}", + 91, + 91, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 92, + 92, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 93, + 94, + { + "value": "z" + } + ], + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ], + [ + ")-token", + ")", + 97, + 97, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 98, + 98, + null + ] + ] + } + ] + } + ] +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0019.list-space.expect.json b/packages/css-parser-algorithms/test/cases/various/0019.list-space.expect.json new file mode 100644 index 0000000000..72ba46a67b --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0019.list-space.expect.json @@ -0,0 +1,1702 @@ +[ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "whitespace-token", + " ", + 1, + 1, + null + ], + [ + "(-token", + "(", + 2, + 2, + null + ], + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "[-token", + "[", + 7, + 7, + null + ], + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ], + [ + "]-token", + "]", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "{-token", + "{", + 12, + 12, + null + ], + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ], + [ + "}-token", + "}", + 15, + 15, + null + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "function-token", + "z(", + 17, + 18, + { + "value": "z" + } + ], + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + ")-token", + ")", + 23, + 23, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 1, + 1, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 2, + 2, + null + ], + "tokens": [ + [ + "(-token", + "(", + 2, + 2, + null + ], + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ], + [ + ")-token", + ")", + 5, + 5, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "aa", + 3, + 4, + { + "value": "aa" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 7, + 7, + null + ], + "tokens": [ + [ + "[-token", + "[", + 7, + 7, + null + ], + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ], + [ + "]-token", + "]", + 10, + 10, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ab", + 8, + 9, + { + "value": "ab" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 12, + 12, + null + ], + "tokens": [ + [ + "{-token", + "{", + 12, + 12, + null + ], + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ], + [ + "}-token", + "}", + 15, + 15, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ac", + 13, + 14, + { + "value": "ac" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 17, + 18, + { + "value": "z" + } + ], + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ad", + 19, + 20, + { + "value": "ad" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 25, + 25, + null + ], + "tokens": [ + [ + "[-token", + "[", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "(-token", + "(", + 27, + 27, + null + ], + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ], + [ + "whitespace-token", + " ", + 31, + 31, + null + ], + [ + "[-token", + "[", + 32, + 32, + null + ], + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ], + [ + "]-token", + "]", + 35, + 35, + null + ], + [ + "whitespace-token", + " ", + 36, + 36, + null + ], + [ + "{-token", + "{", + 37, + 37, + null + ], + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ], + [ + "}-token", + "}", + 40, + 40, + null + ], + [ + "whitespace-token", + " ", + 41, + 41, + null + ], + [ + "function-token", + "z(", + 42, + 43, + { + "value": "z" + } + ], + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ], + [ + ")-token", + ")", + 46, + 46, + null + ], + [ + "whitespace-token", + " ", + 47, + 47, + null + ], + [ + "]-token", + "]", + 48, + 48, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 27, + 27, + null + ], + "tokens": [ + [ + "(-token", + "(", + 27, + 27, + null + ], + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ba", + 28, + 29, + { + "value": "ba" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 31, + 31, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 32, + 32, + null + ], + "tokens": [ + [ + "[-token", + "[", + 32, + 32, + null + ], + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ], + [ + "]-token", + "]", + 35, + 35, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bb", + 33, + 34, + { + "value": "bb" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 36, + 36, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 37, + 37, + null + ], + "tokens": [ + [ + "{-token", + "{", + 37, + 37, + null + ], + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ], + [ + "}-token", + "}", + 40, + 40, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bc", + 38, + 39, + { + "value": "bc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 41, + 41, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 42, + 43, + { + "value": "z" + } + ], + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ], + [ + ")-token", + ")", + 46, + 46, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "bd", + 44, + 45, + { + "value": "bd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 47, + 47, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 49, + 49, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 50, + 50, + null + ], + "tokens": [ + [ + "{-token", + "{", + 50, + 50, + null + ], + [ + "whitespace-token", + " ", + 51, + 51, + null + ], + [ + "(-token", + "(", + 52, + 52, + null + ], + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ], + [ + ")-token", + ")", + 55, + 55, + null + ], + [ + "whitespace-token", + " ", + 56, + 56, + null + ], + [ + "[-token", + "[", + 57, + 57, + null + ], + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ], + [ + "]-token", + "]", + 60, + 60, + null + ], + [ + "whitespace-token", + " ", + 61, + 61, + null + ], + [ + "{-token", + "{", + 62, + 62, + null + ], + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ], + [ + "}-token", + "}", + 65, + 65, + null + ], + [ + "whitespace-token", + " ", + 66, + 66, + null + ], + [ + "function-token", + "z(", + 67, + 68, + { + "value": "z" + } + ], + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ], + [ + ")-token", + ")", + 71, + 71, + null + ], + [ + "whitespace-token", + " ", + 72, + 72, + null + ], + [ + "}-token", + "}", + 73, + 73, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 51, + 51, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 52, + 52, + null + ], + "tokens": [ + [ + "(-token", + "(", + 52, + 52, + null + ], + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ], + [ + ")-token", + ")", + 55, + 55, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "ca", + 53, + 54, + { + "value": "ca" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 56, + 56, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 57, + 57, + null + ], + "tokens": [ + [ + "[-token", + "[", + 57, + 57, + null + ], + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ], + [ + "]-token", + "]", + 60, + 60, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cb", + 58, + 59, + { + "value": "cb" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 61, + 61, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 62, + 62, + null + ], + "tokens": [ + [ + "{-token", + "{", + 62, + 62, + null + ], + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ], + [ + "}-token", + "}", + 65, + 65, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cc", + 63, + 64, + { + "value": "cc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 66, + 66, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 67, + 68, + { + "value": "z" + } + ], + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ], + [ + ")-token", + ")", + 71, + 71, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "cd", + 69, + 70, + { + "value": "cd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 72, + 72, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 74, + 74, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 75, + 76, + { + "value": "z" + } + ], + [ + "whitespace-token", + " ", + 77, + 77, + null + ], + [ + "(-token", + "(", + 78, + 78, + null + ], + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ], + [ + ")-token", + ")", + 81, + 81, + null + ], + [ + "whitespace-token", + " ", + 82, + 82, + null + ], + [ + "[-token", + "[", + 83, + 83, + null + ], + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ], + [ + "]-token", + "]", + 86, + 86, + null + ], + [ + "whitespace-token", + " ", + 87, + 87, + null + ], + [ + "{-token", + "{", + 88, + 88, + null + ], + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ], + [ + "}-token", + "}", + 91, + 91, + null + ], + [ + "whitespace-token", + " ", + 92, + 92, + null + ], + [ + "function-token", + "z(", + 93, + 94, + { + "value": "z" + } + ], + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ], + [ + ")-token", + ")", + 97, + 97, + null + ], + [ + "whitespace-token", + " ", + 98, + 98, + null + ], + [ + ")-token", + ")", + 99, + 99, + null + ] + ], + "value": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 77, + 77, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 78, + 78, + null + ], + "tokens": [ + [ + "(-token", + "(", + 78, + 78, + null + ], + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ], + [ + ")-token", + ")", + 81, + 81, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "da", + 79, + 80, + { + "value": "da" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 82, + 82, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 83, + 83, + null + ], + "tokens": [ + [ + "[-token", + "[", + 83, + 83, + null + ], + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ], + [ + "]-token", + "]", + 86, + 86, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "db", + 84, + 85, + { + "value": "db" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 87, + 87, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "{-token", + "{", + 88, + 88, + null + ], + "tokens": [ + [ + "{-token", + "{", + 88, + 88, + null + ], + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ], + [ + "}-token", + "}", + 91, + 91, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dc", + 89, + 90, + { + "value": "dc" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 92, + 92, + null + ] + ] + }, + { + "type": "function", + "name": "z", + "tokens": [ + [ + "function-token", + "z(", + 93, + 94, + { + "value": "z" + } + ], + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ], + [ + ")-token", + ")", + 97, + 97, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "dd", + 95, + 96, + { + "value": "dd" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 98, + 98, + null + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/css-parser-algorithms/test/cases/various/0019.mjs b/packages/css-parser-algorithms/test/cases/various/0019.mjs new file mode 100644 index 0000000000..32c9385e61 --- /dev/null +++ b/packages/css-parser-algorithms/test/cases/various/0019.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '( (aa) [ab] {ac} z(ad) ) [ (ba) [bb] {bc} z(bd) ] { (ca) [cb] {cc} z(cd) } z( (da) [db] {dc} z(dd) )', + 'various/0019', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/css-parser-algorithms/test/test.mjs b/packages/css-parser-algorithms/test/test.mjs new file mode 100644 index 0000000000..fa184c1357 --- /dev/null +++ b/packages/css-parser-algorithms/test/test.mjs @@ -0,0 +1,37 @@ +import './cases/media-not/0001.mjs'; + +import './cases/mf-boolean/0001.mjs'; +import './cases/mf-boolean/0002.mjs'; +import './cases/mf-boolean/0003.mjs'; +import './cases/mf-boolean/0004.mjs'; +import './cases/mf-boolean/0005.mjs'; + +import './cases/mf-plain/0001.mjs'; +import './cases/mf-plain/0002.mjs'; +import './cases/mf-plain/0003.mjs'; +import './cases/mf-plain/0004.mjs'; +import './cases/mf-plain/0005.mjs'; + +import './cases/query-with-type/0001.mjs'; +import './cases/query-with-type/0002.mjs'; +import './cases/query-with-type/0003.mjs'; + +import './cases/various/0001.mjs'; +import './cases/various/0002.mjs'; +import './cases/various/0003.mjs'; +import './cases/various/0004.mjs'; +import './cases/various/0005.mjs'; +import './cases/various/0006.mjs'; +import './cases/various/0007.mjs'; +import './cases/various/0008.mjs'; +import './cases/various/0009.mjs'; +import './cases/various/0010.mjs'; +import './cases/various/0011.mjs'; +import './cases/various/0012.mjs'; +import './cases/various/0013.mjs'; +import './cases/various/0014.mjs'; +import './cases/various/0015.mjs'; +import './cases/various/0016.mjs'; +import './cases/various/0017.mjs'; +import './cases/various/0018.mjs'; +import './cases/various/0019.mjs'; diff --git a/packages/css-parser-algorithms/test/util/run-test.mjs b/packages/css-parser-algorithms/test/util/run-test.mjs new file mode 100644 index 0000000000..5d58211c9c --- /dev/null +++ b/packages/css-parser-algorithms/test/util/run-test.mjs @@ -0,0 +1,65 @@ +import fs from 'fs'; +import path from 'path'; +import { parseCommaSeparatedListOfComponentValues, parseListOfComponentValues } from '@csstools/css-parser-algorithms'; +import { tokenizer } from '@csstools/css-tokenizer'; + +export function runTest(source, testPath, assertEqual) { + const onParseError = (err) => { + console.warn(err); + throw new Error(`Unable to parse "${source}"`); + }; + const t = tokenizer({ css: source }, { + commentsAreTokens: true, + onParseError: onParseError, + }); + + const tokens = []; + + { + while (!t.endOfFile()) { + tokens.push(t.nextToken()); + } + + tokens.push(t.nextToken()); // EOF-token + } + + { + // Space separated list of component values + const resultAST = parseListOfComponentValues(tokens, { + onParseError: onParseError, + }); + const resultAST_JSON = JSON.stringify(resultAST, null, '\t'); + + if (process.env['REWRITE_EXPECTS'] === 'true') { + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-space.expect.json`), resultAST_JSON); + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-space.result.json`), resultAST_JSON); + } else { + const expectData = JSON.parse(fs.readFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-space.expect.json`)).toString()); + + assertEqual( + JSON.parse(resultAST_JSON), + expectData, + ); + } + } + + { + // Comma separated list of component values + const resultAST = parseCommaSeparatedListOfComponentValues(tokens, { + onParseError: onParseError, + }); + const resultAST_JSON = JSON.stringify(resultAST, null, '\t'); + + if (process.env['REWRITE_EXPECTS'] === 'true') { + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-comma.expect.json`), resultAST_JSON); + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-comma.result.json`), resultAST_JSON); + } else { + const expectData = JSON.parse(fs.readFileSync(path.join(process.cwd(), `./test/cases/${testPath}.list-comma.expect.json`)).toString()); + + assertEqual( + JSON.parse(resultAST_JSON), + expectData, + ); + } + } +} diff --git a/packages/css-parser-algorithms/tsconfig.json b/packages/css-parser-algorithms/tsconfig.json new file mode 100644 index 0000000000..e0d06239cc --- /dev/null +++ b/packages/css-parser-algorithms/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "dist", + "declarationDir": "." + }, + "include": ["./src/**/*"], + "exclude": ["dist"], +} diff --git a/packages/css-tokenizer/src/index.ts b/packages/css-tokenizer/src/index.ts index 54e28b122b..015d990297 100644 --- a/packages/css-tokenizer/src/index.ts +++ b/packages/css-tokenizer/src/index.ts @@ -1,8 +1,9 @@ export type { CSSToken } from './interfaces/token'; export { Reader } from './reader'; -export { TokenType, NumberType } from './interfaces/token'; +export { TokenType, NumberType, mirrorVariantType, isToken } from './interfaces/token'; export { stringify } from './stringify'; export { tokenizer } from './tokenizer'; +export { cloneTokens } from './util/clone-tokens'; export type { TokenAtKeyword, diff --git a/packages/css-tokenizer/src/interfaces/token.ts b/packages/css-tokenizer/src/interfaces/token.ts index 184be7ce90..81a9160368 100644 --- a/packages/css-tokenizer/src/interfaces/token.ts +++ b/packages/css-tokenizer/src/interfaces/token.ts @@ -132,3 +132,54 @@ export type Token = [ /** Extra data */ U, ] + +export function mirrorVariantType(type: TokenType): TokenType|null { + switch (type) { + case TokenType.OpenParen: + return TokenType.CloseParen; + case TokenType.CloseParen: + return TokenType.OpenParen; + + case TokenType.OpenCurly: + return TokenType.CloseCurly; + case TokenType.CloseCurly: + return TokenType.OpenCurly; + + case TokenType.OpenSquare: + return TokenType.CloseSquare; + case TokenType.CloseSquare: + return TokenType.OpenSquare; + + default: + return null; + } +} + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export function isToken(x: any): x is CSSToken { + if (!Array.isArray(x)) { + return false; + } + + if (x.length < 4) { + return false; + } + + if (!(x[0] in TokenType)) { + return false; + } + + if (typeof x[1] !== 'string') { + return false; + } + + if (typeof x[2] !== 'number') { + return false; + } + + if (typeof x[3] !== 'number') { + return false; + } + + return true; +} diff --git a/packages/css-tokenizer/src/util/clone-tokens.ts b/packages/css-tokenizer/src/util/clone-tokens.ts new file mode 100644 index 0000000000..e703533070 --- /dev/null +++ b/packages/css-tokenizer/src/util/clone-tokens.ts @@ -0,0 +1,9 @@ +import { CSSToken } from '../interfaces/token'; + +export function cloneTokens(tokens: Array): Array { + if ((typeof globalThis !== 'undefined') && 'structuredClone' in globalThis) { + return structuredClone(tokens); + } + + return JSON.parse(JSON.stringify(tokens)); +} diff --git a/packages/css-tokenizer/test/token/basic.mjs b/packages/css-tokenizer/test/token/basic.mjs index 609e807135..46033d7d52 100644 --- a/packages/css-tokenizer/test/token/basic.mjs +++ b/packages/css-tokenizer/test/token/basic.mjs @@ -19,6 +19,31 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ); } +{ + const t = tokenizer({ + css: 'foo { width: calc(-infinity) }', + }); + + assert.deepEqual( + collectTokens(t), + [ + ['ident-token', 'foo', 0, 2, { value: 'foo' }], + ['whitespace-token', ' ', 3, 3, undefined], + ['{-token', '{', 4, 4, undefined], + ['whitespace-token', ' ', 5, 5, undefined], + ['ident-token', 'width', 6, 10, { value: 'width' }], + ['colon-token', ':', 11, 11, undefined], + ['whitespace-token', ' ', 12, 12, undefined], + ['function-token', 'calc(', 13, 17, { value: 'calc' }], + ['ident-token', '-infinity', 18, 26, { value: '-infinity' }], + [')-token', ')', 27, 27, undefined], + ['whitespace-token', ' ', 28, 28, undefined], + ['}-token', '}', 29, 29, undefined], + ['EOF-token', '', -1, -1, undefined], + ], + ); +} + { const t = tokenizer({ css: '@import url(https://example.com/stylesheet.css) layer( base.tokens ) supports( display: grid ) not screen and ((400px <= width < 1024px) and (prefers-color-scheme: dark));', diff --git a/packages/css-tokenizer/test/token/numeric.mjs b/packages/css-tokenizer/test/token/numeric.mjs index 801564d6b2..0ee6c1f0fd 100644 --- a/packages/css-tokenizer/test/token/numeric.mjs +++ b/packages/css-tokenizer/test/token/numeric.mjs @@ -220,6 +220,26 @@ import { collectTokens } from '../util/collect-tokens.mjs'; ); } +{ + const t = tokenizer({ + css: '1e2 ', + }); + + assert.deepEqual( + collectTokens(t).slice(0, -1), + [ + [ + 'number-token', + '1e2', + 0, + 2, + { value: 100, type: 'number' }, + ], + ['whitespace-token', ' ', 3, 3, undefined], + ], + ); +} + { const t = tokenizer({ css: '12rem ', diff --git a/packages/media-query-list-parser/.gitignore b/packages/media-query-list-parser/.gitignore new file mode 100644 index 0000000000..f548255b01 --- /dev/null +++ b/packages/media-query-list-parser/.gitignore @@ -0,0 +1,7 @@ +node_modules +package-lock.json +yarn.lock +*.result.css +*.result.css.map +*.result.json +dist/* diff --git a/packages/media-query-list-parser/.nvmrc b/packages/media-query-list-parser/.nvmrc new file mode 100644 index 0000000000..f0b10f153f --- /dev/null +++ b/packages/media-query-list-parser/.nvmrc @@ -0,0 +1 @@ +v16.13.1 diff --git a/packages/media-query-list-parser/CHANGELOG.md b/packages/media-query-list-parser/CHANGELOG.md new file mode 100644 index 0000000000..b0ff6b0825 --- /dev/null +++ b/packages/media-query-list-parser/CHANGELOG.md @@ -0,0 +1,3 @@ +### 1.0.0 + +- Initial version diff --git a/packages/media-query-list-parser/LICENSE.md b/packages/media-query-list-parser/LICENSE.md new file mode 100644 index 0000000000..af5411fa24 --- /dev/null +++ b/packages/media-query-list-parser/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2022 Romain Menke, Antonio Laguna + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/media-query-list-parser/README.md b/packages/media-query-list-parser/README.md new file mode 100644 index 0000000000..4f17a86b82 --- /dev/null +++ b/packages/media-query-list-parser/README.md @@ -0,0 +1,60 @@ +# Media Query List Parser + +[npm version][npm-url] +[Build Status][cli-url] +[Discord][discord] + +Implemented from : https://www.w3.org/TR/mediaqueries-5/ + +## Usage + +Add [Media Query List Parser] to your project: + +```bash +npm install postcss @csstools/media-query-list-parser --save-dev +``` + +```ts +import { parse } from '@csstools/media-query-list-parser'; + +export function parseCustomMedia() { + const mediaQueryList = parse('screen and (min-width: 300px), (50px < height < 30vw)'); + + mediaQueryList.forEach((mediaQuery) => { + mediaQuery.walk((entry, index) => { + // Index of the current Node in `parent`. + console.log(index); + // Type of `parent`. + console.log(entry.parent.type); + + // Type of `node` + { + // Sometimes nodes can be arrays. + if (Array.isArray(entry.node)) { + entry.node.forEach((item) => { + console.log(item.type); + }); + } + + if ('type' in entry.node) { + console.log(entry.node.type); + } + } + + // stringified version of the current node. + console.log(entry.node.toString()); + + // Return `false` to stop the walker. + return false; + }); + }); +} +``` + +[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test +[discord]: https://discord.gg/bUadyRwkJS +[npm-url]: https://www.npmjs.com/package/@csstools/media-query-list-parser + +[Media Query List Parser]: https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser + + diff --git a/packages/media-query-list-parser/package.json b/packages/media-query-list-parser/package.json new file mode 100644 index 0000000000..a24b5bdcaf --- /dev/null +++ b/packages/media-query-list-parser/package.json @@ -0,0 +1,70 @@ +{ + "name": "@csstools/media-query-list-parser", + "description": "Parse CSS media query lists.", + "version": "1.0.0", + "contributors": [ + { + "name": "Antonio Laguna", + "email": "antonio@laguna.es", + "url": "https://antonio.laguna.es" + }, + { + "name": "Romain Menke", + "email": "romainmenke@gmail.com" + } + ], + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "main": "dist/index.cjs", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.mjs", + "require": "./dist/index.cjs", + "default": "./dist/index.mjs" + } + }, + "files": [ + "CHANGELOG.md", + "LICENSE.md", + "README.md", + "dist" + ], + "dependencies": { + "@csstools/css-parser-algorithms": "^1.0.0", + "@csstools/css-tokenizer": "^1.0.0" + }, + "scripts": { + "build": "rollup -c ../../rollup/default.js", + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", + "lint": "npm run lint:eslint && npm run lint:package-json", + "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", + "lint:package-json": "node ../../.github/bin/format-package-json.mjs", + "prepublishOnly": "npm run clean && npm run build && npm run test", + "test": "node ./test/test.mjs", + "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs", + "test:rewrite-expects": "REWRITE_EXPECTS=true node ./test/test.mjs" + }, + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser#readme", + "repository": { + "type": "git", + "url": "https://github.com/csstools/postcss-plugins.git", + "directory": "packages/media-query-list-parser" + }, + "bugs": "https://github.com/csstools/postcss-plugins/issues", + "keywords": [ + "css", + "media query", + "parser" + ], + "volta": { + "extends": "../../package.json" + } +} diff --git a/packages/media-query-list-parser/src/index.ts b/packages/media-query-list-parser/src/index.ts new file mode 100644 index 0000000000..b87eef2714 --- /dev/null +++ b/packages/media-query-list-parser/src/index.ts @@ -0,0 +1,46 @@ +export { parse, parseFromTokens } from './parser/parse'; +export { NodeType } from './util/node-type'; +export { + isGeneralEnclosed, + isMediaAnd, + isMediaCondition, + isMediaConditionList, + isMediaConditionListWithAnd, + isMediaConditionListWithOr, + isMediaFeature, + isMediaFeatureBoolean, + isMediaFeatureName, + isMediaFeaturePlain, + isMediaFeatureRange, + isMediaFeatureRangeNameValue, + isMediaFeatureRangeValueName, + isMediaFeatureRangeValueNameValue, + isMediaFeatureValue, + isMediaInParens, + isMediaNot, + isMediaOr, + isMediaQuery, + isMediaQueryInvalid, + isMediaQueryWithType, + isMediaQueryWithoutType, +} from './util/type-predicates'; + +export { GeneralEnclosed } from './nodes/general-enclosed'; +export { MediaAnd } from './nodes/media-and'; +export { MediaCondition } from './nodes/media-condition'; +export { MediaConditionList, MediaConditionListWithAnd, MediaConditionListWithOr } from './nodes/media-condition-list'; +export { MediaFeature, newMediaFeatureBoolean, newMediaFeaturePlain } from './nodes/media-feature'; +export { MediaFeatureBoolean } from './nodes/media-feature-boolean'; +export { MediaFeatureName } from './nodes/media-feature-name'; +export { MediaFeaturePlain } from './nodes/media-feature-plain'; +export { MediaFeatureRange, MediaFeatureRangeNameValue, MediaFeatureRangeValueName, MediaFeatureRangeValueNameValue } from './nodes/media-feature-range'; +export { MediaFeatureValue } from './nodes/media-feature-value'; +export { MediaInParens } from './nodes/media-in-parens'; +export { MediaNot } from './nodes/media-not'; +export { MediaOr } from './nodes/media-or'; +export { MediaQuery, MediaQueryWithType, MediaQueryWithoutType, MediaQueryInvalid } from './nodes/media-query'; + +export { MediaFeatureComparison, MediaFeatureEQ, MediaFeatureGT, MediaFeatureLT, matchesComparison, comparisonFromTokens } from './nodes/media-feature-comparison'; +export { MediaType, typeFromToken } from './nodes/media-type'; +export { MediaQueryModifier, modifierFromToken } from './nodes/media-query-modifier'; +export { cloneMediaQuery } from './util/clone-media-query'; diff --git a/packages/media-query-list-parser/src/nodes/general-enclosed.ts b/packages/media-query-list-parser/src/nodes/general-enclosed.ts new file mode 100644 index 0000000000..73d443cbaf --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/general-enclosed.ts @@ -0,0 +1,71 @@ +import { ComponentValue, ContainerNode } from '@csstools/css-parser-algorithms'; +import { CSSToken } from '@csstools/css-tokenizer'; +import { NodeType } from '../util/node-type'; + +export class GeneralEnclosed { + type = NodeType.GeneralEnclosed; + + value: ComponentValue; + + constructor(value: ComponentValue) { + this.value = value; + } + + tokens(): Array { + return this.value.tokens(); + } + + toString(): string { + return this.value.toString(); + } + + indexOf(item: ComponentValue): number | string { + if (item === this.value) { + return 'value'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'value') { + return this.value; + } + } + + walk(cb: (entry: { node: GeneralEnclosedWalkerEntry, parent: GeneralEnclosedWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.value, parent: this }, 'value') === false) { + return false; + } + + if ('walk' in this.value) { + return this.value.walk(cb); + } + } + + toJSON() { + return { + type: this.type, + tokens: this.tokens(), + }; + } + + isGeneralEnclosed(): this is GeneralEnclosed { + return GeneralEnclosed.isGeneralEnclosed(this); + } + + static isGeneralEnclosed(x: unknown): x is GeneralEnclosed { + if (!x) { + return false; + } + + if (!(x instanceof GeneralEnclosed)) { + return false; + } + + return x.type === NodeType.GeneralEnclosed; + } +} + +export type GeneralEnclosedWalkerEntry = ComponentValue; +export type GeneralEnclosedWalkerParent = ContainerNode | GeneralEnclosed; diff --git a/packages/media-query-list-parser/src/nodes/media-and.ts b/packages/media-query-list-parser/src/nodes/media-and.ts new file mode 100644 index 0000000000..376d79f8bb --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-and.ts @@ -0,0 +1,75 @@ +import { CSSToken, stringify } from '@csstools/css-tokenizer'; +import { MediaInParens, MediaInParensWalkerEntry, MediaInParensWalkerParent } from './media-in-parens'; +import { NodeType } from '../util/node-type'; + +export class MediaAnd { + type = NodeType.MediaAnd; + + modifier: Array; + media: MediaInParens; + + constructor(modifier: Array, media: MediaInParens) { + this.modifier = modifier; + this.media = media; + } + + tokens(): Array { + return [ + ...this.modifier, + ...this.media.tokens(), + ]; + } + + toString(): string { + return stringify(...this.modifier) + this.media.toString(); + } + + indexOf(item: MediaInParens): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaAndWalkerEntry, parent: MediaAndWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + modifier: this.modifier, + media: this.media.toJSON(), + }; + } + + isMediaAnd(): this is MediaAnd { + return MediaAnd.isMediaAnd(this); + } + + static isMediaAnd(x: unknown): x is MediaAnd { + if (!x) { + return false; + } + + if (!(x instanceof MediaAnd)) { + return false; + } + + return x.type === NodeType.MediaAnd; + } +} + +export type MediaAndWalkerEntry = MediaInParensWalkerEntry | MediaInParens; +export type MediaAndWalkerParent = MediaInParensWalkerParent | MediaAnd; diff --git a/packages/media-query-list-parser/src/nodes/media-condition-list.ts b/packages/media-query-list-parser/src/nodes/media-condition-list.ts new file mode 100644 index 0000000000..9ba0e44997 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-condition-list.ts @@ -0,0 +1,245 @@ +import { CSSToken, stringify } from '@csstools/css-tokenizer'; +import { MediaAnd, MediaAndWalkerEntry, MediaAndWalkerParent } from './media-and'; +import { MediaInParens } from './media-in-parens'; +import { MediaOr, MediaOrWalkerEntry, MediaOrWalkerParent } from './media-or'; +import { NodeType } from '../util/node-type'; + +export type MediaConditionList = MediaConditionListWithAnd | MediaConditionListWithOr; + +export class MediaConditionListWithAnd { + type = NodeType.MediaConditionListWithAnd; + + leading: MediaInParens; + list: Array; + before: Array; + after: Array; + + constructor(leading: MediaInParens, list: Array, before: Array = [], after: Array = []) { + this.leading = leading; + this.list = list; + this.before = before; + this.after = after; + } + + tokens(): Array { + return [ + ...this.before, + ...this.leading.tokens(), + ...this.list.flatMap((item) => item.tokens()), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.leading.toString() + this.list.map((item) => item.toString()).join('') + stringify(...this.after); + } + + indexOf(item: MediaInParens | MediaAnd): number | string { + if (item === this.leading) { + return 'leading'; + } + + if (item.type === 'media-and') { + return this.list.indexOf(item as MediaAnd); + } + + return -1; + } + + at(index: number | string) { + if (index === 'leading') { + return this.leading; + } + + if (typeof index === 'number') { + if (index < 0) { + index = this.list.length + index; + } + return this.list[index]; + } + } + + walk(cb: (entry: { node: MediaConditionListWithAndWalkerEntry, parent: MediaConditionListWithAndWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.leading, parent: this }, 'leading') === false) { + return false; + } + + if ('walk' in this.leading) { + if (this.leading.walk(cb) === false) { + return false; + } + } + + let aborted = false; + + this.list.forEach((child, index) => { + if (aborted) { + return; + } + + if (cb({ node: child, parent: this }, index) === false) { + aborted = true; + return; + } + + if ('walk' in child) { + if (child.walk(cb) === false) { + aborted = true; + return; + } + } + }); + + if (aborted) { + return false; + } + } + + toJSON() { + return { + type: this.type, + leading: this.leading.toJSON(), + list: this.list.map((x) => x.toJSON()), + before: this.before, + after: this.after, + }; + } + + isMediaConditionListWithAnd(): this is MediaConditionListWithAnd { + return MediaConditionListWithAnd.isMediaConditionListWithAnd(this); + } + + static isMediaConditionListWithAnd(x: unknown): x is MediaConditionListWithAnd { + if (!x) { + return false; + } + + if (!(x instanceof MediaConditionListWithAnd)) { + return false; + } + + return x.type === NodeType.MediaConditionListWithAnd; + } +} + +export type MediaConditionListWithAndWalkerEntry = MediaAndWalkerEntry | MediaAnd; +export type MediaConditionListWithAndWalkerParent = MediaAndWalkerParent | MediaConditionListWithAnd; + +export class MediaConditionListWithOr { + type = NodeType.MediaConditionListWithOr; + + leading: MediaInParens; + list: Array; + before: Array; + after: Array; + + constructor(leading: MediaInParens, list: Array, before: Array = [], after: Array = []) { + this.leading = leading; + this.list = list; + this.before = before; + this.after = after; + } + + tokens(): Array { + return [ + ...this.before, + ...this.leading.tokens(), + ...this.list.flatMap((item) => item.tokens()), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.leading.toString() + this.list.map((item) => item.toString()).join('') + stringify(...this.after); + } + + indexOf(item: MediaInParens | MediaOr): number | string { + if (item === this.leading) { + return 'leading'; + } + + if (item.type === 'media-or') { + return this.list.indexOf(item as MediaOr); + } + + return -1; + } + + at(index: number | string) { + if (index === 'leading') { + return this.leading; + } + + if (typeof index === 'number') { + if (index < 0) { + index = this.list.length + index; + } + return this.list[index]; + } + } + + walk(cb: (entry: { node: MediaConditionListWithOrWalkerEntry, parent: MediaConditionListWithOrWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.leading, parent: this }, 'leading') === false) { + return false; + } + + if ('walk' in this.leading) { + if (this.leading.walk(cb) === false) { + return false; + } + } + + let aborted = false; + + this.list.forEach((child, index) => { + if (aborted) { + return; + } + + if (cb({ node: child, parent: this }, index) === false) { + aborted = true; + return; + } + + if ('walk' in child) { + if (child.walk(cb) === false) { + aborted = true; + return; + } + } + }); + + if (aborted) { + return false; + } + } + + toJSON() { + return { + type: this.type, + leading: this.leading.toJSON(), + list: this.list.map((x) => x.toJSON()), + before: this.before, + after: this.after, + }; + } + + isMediaConditionListWithOr(): this is MediaConditionListWithOr { + return MediaConditionListWithOr.isMediaConditionListWithOr(this); + } + + static isMediaConditionListWithOr(x: unknown): x is MediaConditionListWithOr { + if (!x) { + return false; + } + + if (!(x instanceof MediaConditionListWithOr)) { + return false; + } + + return x.type === NodeType.MediaConditionListWithOr; + } +} + +export type MediaConditionListWithOrWalkerEntry = MediaOrWalkerEntry | MediaOr; +export type MediaConditionListWithOrWalkerParent = MediaOrWalkerParent | MediaConditionListWithOr; diff --git a/packages/media-query-list-parser/src/nodes/media-condition.ts b/packages/media-query-list-parser/src/nodes/media-condition.ts new file mode 100644 index 0000000000..766c39eaf8 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-condition.ts @@ -0,0 +1,71 @@ +import { CSSToken } from '@csstools/css-tokenizer'; +import { MediaConditionListWithAnd, MediaConditionListWithAndWalkerEntry, MediaConditionListWithAndWalkerParent, MediaConditionListWithOr, MediaConditionListWithOrWalkerEntry, MediaConditionListWithOrWalkerParent } from './media-condition-list'; +import { MediaInParens } from './media-in-parens'; +import { MediaNot, MediaNotWalkerEntry, MediaNotWalkerParent } from './media-not'; +import { NodeType } from '../util/node-type'; + +export class MediaCondition { + type = NodeType.MediaCondition; + + media: MediaNot | MediaInParens | MediaConditionListWithAnd | MediaConditionListWithOr; + + constructor(media: MediaNot | MediaInParens |MediaConditionListWithAnd | MediaConditionListWithOr) { + this.media = media; + } + + tokens(): Array { + return this.media.tokens(); + } + + toString(): string { + return this.media.toString(); + } + + indexOf(item: MediaNot | MediaInParens | MediaConditionListWithAnd | MediaConditionListWithOr): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaConditionWalkerEntry, parent: MediaConditionWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + media: this.media.toJSON(), + }; + } + + isMediaCondition(): this is MediaCondition { + return MediaCondition.isMediaCondition(this); + } + + static isMediaCondition(x: unknown): x is MediaCondition { + if (!x) { + return false; + } + + if (!(x instanceof MediaCondition)) { + return false; + } + + return x.type === NodeType.MediaCondition; + } +} + +export type MediaConditionWalkerEntry = MediaNotWalkerEntry | MediaConditionListWithAndWalkerEntry | MediaConditionListWithOrWalkerEntry | MediaNot | MediaConditionListWithAnd | MediaConditionListWithOr; +export type MediaConditionWalkerParent = MediaNotWalkerParent | MediaConditionListWithAndWalkerParent | MediaConditionListWithOrWalkerParent | MediaCondition; diff --git a/packages/media-query-list-parser/src/nodes/media-feature-boolean.ts b/packages/media-query-list-parser/src/nodes/media-feature-boolean.ts new file mode 100644 index 0000000000..f533445002 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-boolean.ts @@ -0,0 +1,82 @@ +import { ComponentValue, TokenNode } from '@csstools/css-parser-algorithms'; +import { parseMediaFeatureName } from './media-feature-name'; +import { NodeType } from '../util/node-type'; +import { CSSToken, stringify, TokenIdent } from '@csstools/css-tokenizer'; + +export class MediaFeatureBoolean { + type = NodeType.MediaFeatureBoolean; + + name: ComponentValue; + before: Array; + after: Array; + + constructor(name: ComponentValue, before: Array = [], after: Array = []) { + this.name = name; + this.before = before; + this.after = after; + } + + getName() { + const token = (((this.name as TokenNode).value as CSSToken) as TokenIdent); + return token[4].value; + } + + tokens(): Array { + return [ + ...this.before, + ...this.name.tokens(), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.name.toString() + stringify(...this.after); + } + + indexOf(item: ComponentValue): number | string { + if (item === this.name) { + return 'name'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + } + + toJSON() { + return { + type: this.type, + name: this.getName(), + tokens: this.tokens(), + }; + } + + isMediaFeatureBoolean(): this is MediaFeatureBoolean { + return MediaFeatureBoolean.isMediaFeatureBoolean(this); + } + + static isMediaFeatureBoolean(x: unknown): x is MediaFeatureBoolean { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureBoolean)) { + return false; + } + + return x.type === NodeType.MediaFeatureBoolean; + } +} + +export function parseMediaFeatureBoolean(componentValues: Array) { + const mediaFeatureName = parseMediaFeatureName(componentValues); + if (mediaFeatureName === false) { + return mediaFeatureName; + } + + return new MediaFeatureBoolean(mediaFeatureName.name, mediaFeatureName.before, mediaFeatureName.after); +} diff --git a/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts new file mode 100644 index 0000000000..580a5dce24 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts @@ -0,0 +1,114 @@ +import { ComponentValue, ComponentValueType } from '@csstools/css-parser-algorithms'; +import { CSSToken, TokenDelim, TokenType } from '@csstools/css-tokenizer'; + +export enum MediaFeatureLT { + LT = '<', + LT_OR_EQ = '< =', +} + +export enum MediaFeatureGT { + GT = '>', + GT_OR_EQ = '> =', +} + +export enum MediaFeatureEQ { + EQ = '=', +} + +export type MediaFeatureComparison = MediaFeatureLT | MediaFeatureGT | MediaFeatureEQ + +export function matchesComparison(componentValues: Array): false | [number, number] { + let firstTokenIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Token) { + const token = componentValue.value as CSSToken; + if (token[0] === TokenType.Delim) { + if (token[4].value === MediaFeatureEQ.EQ) { + if (firstTokenIndex) { + return [firstTokenIndex, i]; + } + + firstTokenIndex = i; + continue; + } + if (token[4].value === MediaFeatureLT.LT) { + firstTokenIndex = i; + continue; + } + if (token[4].value === MediaFeatureGT.GT) { + firstTokenIndex = i; + continue; + } + } + } + + break; + } + + if (firstTokenIndex !== -1) { + return [firstTokenIndex, firstTokenIndex]; + } + + return false; +} + +export function comparisonFromTokens(tokens: [TokenDelim, TokenDelim] | [TokenDelim]): MediaFeatureComparison | false { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + /* @ts-ignore */ + if (tokens.length === 0 || tokens.length > 2) { + return false; + } + + if (tokens[0][0] !== TokenType.Delim) { + return false; + } + + if (tokens.length === 1) { + switch (tokens[0][4].value) { + case MediaFeatureEQ.EQ: + return MediaFeatureEQ.EQ; + case MediaFeatureLT.LT: + return MediaFeatureLT.LT; + case MediaFeatureGT.GT: + return MediaFeatureGT.GT; + default: + return false; + } + } + + if (tokens[1][0] !== TokenType.Delim) { + return false; + } + + if (tokens[1][4].value !== MediaFeatureEQ.EQ) { + return false; + } + + switch (tokens[0][4].value) { + case MediaFeatureLT.LT: + return MediaFeatureLT.LT_OR_EQ; + case MediaFeatureGT.GT: + return MediaFeatureGT.GT_OR_EQ; + default: + return false; + } +} + +export function invertComparison(operator: MediaFeatureComparison): MediaFeatureComparison | false { + switch (operator) { + case MediaFeatureEQ.EQ: + return MediaFeatureEQ.EQ; + case MediaFeatureLT.LT: + return MediaFeatureGT.GT; + case MediaFeatureLT.LT_OR_EQ: + return MediaFeatureGT.GT_OR_EQ; + case MediaFeatureGT.GT: + return MediaFeatureLT.LT; + case MediaFeatureGT.GT_OR_EQ: + return MediaFeatureLT.LT_OR_EQ; + default: + return false; + } +} diff --git a/packages/media-query-list-parser/src/nodes/media-feature-name.ts b/packages/media-query-list-parser/src/nodes/media-feature-name.ts new file mode 100644 index 0000000000..85bd0e592c --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-name.ts @@ -0,0 +1,113 @@ +import { ComponentValue, ComponentValueType, TokenNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenIdent } from '@csstools/css-tokenizer'; +import { isIdent } from '../util/component-value-is'; +import { NodeType } from '../util/node-type'; + +export class MediaFeatureName { + type = NodeType.MediaFeatureName; + + name: ComponentValue; + before: Array; + after: Array; + + constructor(name: ComponentValue, before: Array = [], after: Array = []) { + this.name = name; + this.before = before; + this.after = after; + } + + getName() { + const token = (((this.name as TokenNode).value as CSSToken) as TokenIdent); + return token[4].value; + } + + tokens(): Array { + return [ + ...this.before, + ...this.name.tokens(), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.name.toString() + stringify(...this.after); + } + + indexOf(item: ComponentValue): number | string { + if (item === this.name) { + return 'name'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + } + + toJSON() { + return { + type: this.type, + name: this.getName(), + tokens: this.tokens(), + }; + } + + isMediaFeatureName(): this is MediaFeatureName { + return MediaFeatureName.isMediaFeatureName(this); + } + + static isMediaFeatureName(x: unknown): x is MediaFeatureName { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureName)) { + return false; + } + + return x.type === NodeType.MediaFeatureName; + } +} + +export function parseMediaFeatureName(componentValues: Array) { + let singleIdentTokenIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (isIdent(componentValue)) { + if (singleIdentTokenIndex !== -1) { + return false; + } + + singleIdentTokenIndex = i; + continue; + } + + return false; + } + + if (singleIdentTokenIndex === -1) { + return false; + } + + return new MediaFeatureName( + componentValues[singleIdentTokenIndex], + componentValues.slice(0, singleIdentTokenIndex).flatMap((x) => { + return x.tokens(); + }), + componentValues.slice(singleIdentTokenIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ); +} diff --git a/packages/media-query-list-parser/src/nodes/media-feature-plain.ts b/packages/media-query-list-parser/src/nodes/media-feature-plain.ts new file mode 100644 index 0000000000..4d1a32d5f1 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-plain.ts @@ -0,0 +1,124 @@ +import { ComponentValue, ComponentValueType } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenColon, TokenType } from '@csstools/css-tokenizer'; +import { parseMediaFeatureName, MediaFeatureName } from './media-feature-name'; +import { parseMediaFeatureValue, MediaFeatureValue, MediaFeatureValueWalkerEntry, MediaFeatureValueWalkerParent } from './media-feature-value'; +import { NodeType } from '../util/node-type'; + +export class MediaFeaturePlain { + type = NodeType.MediaFeaturePlain; + + name: MediaFeatureName; + colon: TokenColon; + value: MediaFeatureValue; + + constructor(name: MediaFeatureName, colon: TokenColon, value: MediaFeatureValue) { + this.name = name; + this.colon = colon; + this.value = value; + } + + tokens(): Array { + return [ + ...this.name.tokens(), + this.colon, + ...this.value.tokens(), + ]; + } + + toString(): string { + return this.name.toString() + stringify(this.colon) + this.value.toString(); + } + + indexOf(item: MediaFeatureName | MediaFeatureValue): number | string { + if (item === this.name) { + return 'name'; + } + + if (item === this.value) { + return 'value'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + + if (index === 'value') { + return this.value; + } + } + + walk(cb: (entry: { node: MediaFeaturePlainWalkerEntry, parent: MediaFeaturePlainWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.value, parent: this }, 'value') === false) { + return false; + } + + return this.value.walk(cb); + } + + toJSON() { + return { + type: this.type, + name: this.name.toJSON(), + value: this.value.toJSON(), + tokens: this.tokens(), + }; + } + + isMediaFeaturePlain(): this is MediaFeaturePlain { + return MediaFeaturePlain.isMediaFeaturePlain(this); + } + + static isMediaFeaturePlain(x: unknown): x is MediaFeaturePlain { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeaturePlain)) { + return false; + } + + return x.type === NodeType.MediaFeaturePlain; + } +} + +export type MediaFeaturePlainWalkerEntry = MediaFeatureValueWalkerEntry | MediaFeatureValue; +export type MediaFeaturePlainWalkerParent = MediaFeatureValueWalkerParent | MediaFeaturePlain; + +export function parseMediaFeaturePlain(componentValues: Array) { + let a: Array = []; + let b: Array = []; + let colon: TokenColon | null = null; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Token) { + const token = componentValue.value as CSSToken; + if (token[0] === TokenType.Colon) { + a = componentValues.slice(0, i); + b = componentValues.slice(i + 1); + colon = token; + break; + } + } + } + + if (!a.length || !b.length) { + return false; + } + + const name = parseMediaFeatureName(a); + if (name === false) { + return false; + } + + const value = parseMediaFeatureValue(b); + if (value === false) { + return false; + } + + return new MediaFeaturePlain(name, colon , value); +} diff --git a/packages/media-query-list-parser/src/nodes/media-feature-range.ts b/packages/media-query-list-parser/src/nodes/media-feature-range.ts new file mode 100644 index 0000000000..970a78c32f --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-range.ts @@ -0,0 +1,454 @@ +import { ComponentValue, ComponentValueType, TokenNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenDelim, TokenType } from '@csstools/css-tokenizer'; +import { comparisonFromTokens, matchesComparison } from './media-feature-comparison'; +import { MediaFeatureName, parseMediaFeatureName } from './media-feature-name'; +import { MediaFeatureValue, MediaFeatureValueWalkerEntry, MediaFeatureValueWalkerParent, parseMediaFeatureValue } from './media-feature-value'; +import { NodeType } from '../util/node-type'; + +export type MediaFeatureRange = MediaFeatureRangeNameValue | + MediaFeatureRangeValueName | + MediaFeatureRangeValueNameValue; + +export class MediaFeatureRangeNameValue { + type = NodeType.MediaFeatureRangeNameValue; + + name: MediaFeatureName; + operator: [TokenDelim, TokenDelim] | [TokenDelim]; + value: MediaFeatureValue; + + constructor(name: MediaFeatureName, operator: [TokenDelim, TokenDelim] | [TokenDelim], value: MediaFeatureValue) { + this.name = name; + this.operator = operator; + this.value = value; + } + + operatorKind() { + return comparisonFromTokens(this.operator); + } + + tokens(): Array { + return [ + ...this.name.tokens(), + ...this.operator, + ...this.value.tokens(), + ]; + } + + toString(): string { + return this.name.toString() + stringify(...this.operator) + this.value.toString(); + } + + indexOf(item: MediaFeatureName | MediaFeatureValue): number | string { + if (item === this.name) { + return 'name'; + } + + if (item === this.value) { + return 'value'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + + if (index === 'value') { + return this.value; + } + } + + walk(cb: (entry: { node: MediaFeatureRangeWalkerEntry, parent: MediaFeatureRangeWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.value, parent: this }, 'value') === false) { + return false; + } + + if ('walk' in this.value) { + return this.value.walk(cb); + } + } + + toJSON() { + return { + type: this.type, + name: this.name.toJSON(), + value: this.value.toJSON(), + tokens: this.tokens(), + }; + } + + isMediaFeatureRangeNameValue(): this is MediaFeatureRangeNameValue { + return MediaFeatureRangeNameValue.isMediaFeatureRangeNameValue(this); + } + + static isMediaFeatureRangeNameValue(x: unknown): x is MediaFeatureRangeNameValue { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureRangeNameValue)) { + return false; + } + + return x.type === NodeType.MediaFeatureRangeNameValue; + } +} + +export class MediaFeatureRangeValueName { + type = NodeType.MediaFeatureRangeValueName; + + name: MediaFeatureName; + operator: [TokenDelim, TokenDelim] | [TokenDelim]; + value: MediaFeatureValue; + + constructor(name: MediaFeatureName, operator: [TokenDelim, TokenDelim] | [TokenDelim], value: MediaFeatureValue) { + this.name = name; + this.operator = operator; + this.value = value; + } + + operatorKind() { + return comparisonFromTokens(this.operator); + } + + tokens(): Array { + return [ + ...this.value.tokens(), + ...this.operator, + ...this.name.tokens(), + ]; + } + + toString(): string { + return this.value.toString() + stringify(...this.operator) + this.name.toString(); + } + + indexOf(item: MediaFeatureName | MediaFeatureValue): number | string { + if (item === this.name) { + return 'name'; + } + + if (item === this.value) { + return 'value'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + + if (index === 'value') { + return this.value; + } + } + + walk(cb: (entry: { node: MediaFeatureRangeWalkerEntry, parent: MediaFeatureRangeWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.value, parent: this }, 'value') === false) { + return false; + } + + if ('walk' in this.value) { + return this.value.walk(cb); + } + } + + toJSON() { + return { + type: this.type, + name: this.name.toJSON(), + value: this.value.toJSON(), + tokens: this.tokens(), + }; + } + + isMediaFeatureRangeValueName(): this is MediaFeatureRangeValueName { + return MediaFeatureRangeValueName.isMediaFeatureRangeValueName(this); + } + + static isMediaFeatureRangeValueName(x: unknown): x is MediaFeatureRangeValueName { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureRangeValueName)) { + return false; + } + + return x.type === NodeType.MediaFeatureRangeValueName; + } +} + +export class MediaFeatureRangeValueNameValue { + type = NodeType.MediaFeatureRangeValueNameValue; + + name: MediaFeatureName; + valueOne: MediaFeatureValue; + valueOneOperator: [TokenDelim, TokenDelim] | [TokenDelim]; + valueTwo: MediaFeatureValue; + valueTwoOperator: [TokenDelim, TokenDelim] | [TokenDelim]; + + constructor(name: MediaFeatureName, valueOne: MediaFeatureValue, valueOneOperator: [TokenDelim, TokenDelim] | [TokenDelim], valueTwo: MediaFeatureValue, valueTwoOperator: [TokenDelim, TokenDelim] | [TokenDelim]) { + this.name = name; + this.valueOne = valueOne; + this.valueOneOperator = valueOneOperator; + this.valueTwo = valueTwo; + this.valueTwoOperator = valueTwoOperator; + } + + valueOneOperatorKind() { + return comparisonFromTokens(this.valueOneOperator); + } + + valueTwoOperatorKind() { + return comparisonFromTokens(this.valueTwoOperator); + } + + tokens(): Array { + return [ + ...this.valueOne.tokens(), + ...this.valueOneOperator, + ...this.name.tokens(), + ...this.valueTwoOperator, + ...this.valueTwo.tokens(), + ]; + } + + toString(): string { + return this.valueOne.toString() + stringify(...this.valueOneOperator) + this.name.toString() + stringify(...this.valueTwoOperator) + this.valueTwo.toString(); + } + + indexOf(item: MediaFeatureName | MediaFeatureValue): number | string { + if (item === this.name) { + return 'name'; + } + + if (item === this.valueOne) { + return 'valueOne'; + } + + if (item === this.valueTwo) { + return 'valueTwo'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'name') { + return this.name; + } + + if (index === 'valueOne') { + return this.valueOne; + } + + if (index === 'valueTwo') { + return this.valueTwo; + } + } + + walk(cb: (entry: { node: MediaFeatureRangeWalkerEntry, parent: MediaFeatureRangeWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.valueOne, parent: this }, 'valueOne') === false) { + return false; + } + + if ('walk' in this.valueOne) { + if (this.valueOne.walk(cb) === false) { + return false; + } + } + + if (cb({ node: this.valueTwo, parent: this }, 'valueTwo') === false) { + return false; + } + + if ('walk' in this.valueTwo) { + if (this.valueTwo.walk(cb) === false) { + return false; + } + } + } + + toJSON() { + return { + type: this.type, + name: this.name.toJSON(), + valueOne: this.valueOne.toJSON(), + valueTwo: this.valueTwo.toJSON(), + tokens: this.tokens(), + }; + } + + isMediaFeatureRangeValueNameValue(): this is MediaFeatureRangeValueNameValue { + return MediaFeatureRangeValueNameValue.isMediaFeatureRangeValueNameValue(this); + } + + static isMediaFeatureRangeValueNameValue(x: unknown): x is MediaFeatureRangeValueNameValue { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureRangeValueNameValue)) { + return false; + } + + return x.type === NodeType.MediaFeatureRangeValueNameValue; + } +} + +export type MediaFeatureRangeWalkerEntry = MediaFeatureValueWalkerEntry | MediaFeatureValue; +export type MediaFeatureRangeWalkerParent = MediaFeatureValueWalkerParent | MediaFeatureRange; + +export function parseMediaFeatureRange(componentValues: Array) { + let comparisonOne: false | [number, number] = false; + let comparisonTwo: false | [number, number] = false; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Token) { + const token = componentValue.value as CSSToken; + if (token[0] === TokenType.Delim) { + const comparison = matchesComparison(componentValues.slice(i)); + if (comparison !== false) { + if (comparisonOne === false) { + comparisonOne = [ + comparison[0] + i, + comparison[1] + i, + ]; + } else { + comparisonTwo = [ + comparison[0] + i, + comparison[1] + i, + ]; + break; + } + } + } + } + } + + if (comparisonOne === false) { + return false; + } + + const comparisonTokensOne: [TokenDelim, TokenDelim] | [TokenDelim] = [ + (componentValues[comparisonOne[0]] as TokenNode).value as TokenDelim, + ]; + if (comparisonOne[0] !== comparisonOne[1]) { + comparisonTokensOne.push( + (componentValues[comparisonOne[1]] as TokenNode).value as TokenDelim, + ); + } + + if (comparisonTwo === false) { + const a = componentValues.slice(0, comparisonOne[0]); + const b = componentValues.slice(comparisonOne[1] + 1); + + const nameA = parseMediaFeatureName(a); + const nameB = parseMediaFeatureName(b); + + if (!nameA && !nameB) { + return false; + } + + if ( + (nameA && !nameB) || + nameA && mediaDescriptors.has(nameA.getName().toLowerCase()) + ) { + const value = parseMediaFeatureValue(b); + if (!value) { + return false; + } + + return new MediaFeatureRangeNameValue(nameA, comparisonTokensOne, value); + } + + if ( + (!nameA && nameB) || + nameB && mediaDescriptors.has(nameB.getName().toLowerCase()) + ) { + const value = parseMediaFeatureValue(a); + if (!value) { + return false; + } + + return new MediaFeatureRangeValueName(nameB, comparisonTokensOne, value); + } + + return false; + } + + const comparisonTokensTwo: [TokenDelim, TokenDelim] | [TokenDelim] = [ + (componentValues[comparisonTwo[0]] as TokenNode).value as TokenDelim, + ]; + if (comparisonTwo[0] !== comparisonTwo[1]) { + comparisonTokensTwo.push( + (componentValues[comparisonTwo[1]] as TokenNode).value as TokenDelim, + ); + } + + const a = componentValues.slice(0, comparisonOne[0]); + const b = componentValues.slice(comparisonOne[1] + 1, comparisonTwo[0]); + const c = componentValues.slice(comparisonTwo[1] + 1); + + const valueA = parseMediaFeatureValue(a); + const nameB = parseMediaFeatureName(b); + const valueC = parseMediaFeatureValue(c); + + if (!valueA || !nameB || !valueC) { + return false; + } + + return new MediaFeatureRangeValueNameValue( + nameB, + valueA, + comparisonTokensOne, + valueC, + comparisonTokensTwo, + ); +} + +export const mediaDescriptors = new Set([ + 'any-hover', + 'any-pointer', + 'aspect-ratio', + 'color', + 'color-gamut', + 'color-index', + 'device-aspect-ratio', + 'device-height', + 'device-width', + 'display-mode', + 'dynamic-range', + 'environment-blending', + 'forced-colors', + 'grid', + 'height', + 'horizontal-viewport-segments', + 'hover', + 'inverted-colors', + 'monochrome', + 'nav-controls', + 'orientation', + 'overflow-block', + 'overflow-inline', + 'pointer', + 'prefers-color-scheme', + 'prefers-contrast', + 'prefers-reduced-data', + 'prefers-reduced-motion', + 'prefers-reduced-transparency', + 'resolution', + 'scan', + 'scripting', + 'update', + 'vertical-viewport-segments', + 'video-color-gamut', + 'video-dynamic-range', + 'width', +]); diff --git a/packages/media-query-list-parser/src/nodes/media-feature-value.ts b/packages/media-query-list-parser/src/nodes/media-feature-value.ts new file mode 100644 index 0000000000..642a7487da --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature-value.ts @@ -0,0 +1,244 @@ +import { ComponentValue, ComponentValueType, ContainerNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenType } from '@csstools/css-tokenizer'; +import { isDimension, isIdent, isNumber } from '../util/component-value-is'; +import { NodeType } from '../util/node-type'; + +export class MediaFeatureValue { + type = NodeType.MediaFeatureValue; + + value: ComponentValue | Array; + before: Array; + after: Array; + + constructor(value: ComponentValue | Array, before: Array = [], after: Array = []) { + if (Array.isArray(value) && value.length === 1) { + this.value = value[0]; + } else { + this.value = value; + } + + this.before = before; + this.after = after; + } + + tokens(): Array { + if (Array.isArray(this.value)) { + return [ + ...this.before, + ...this.value.flatMap((x) => x.tokens()), + ...this.after, + ]; + } + + return [ + ...this.before, + ...this.value.tokens(), + ...this.after, + ]; + } + + toString(): string { + if (Array.isArray(this.value)) { + return stringify(...this.before) + this.value.map((x) => x.toString()).join('') + stringify(...this.after); + } + + return stringify(...this.before) + this.value.toString() + stringify(...this.after); + } + + indexOf(item: ComponentValue): number | string { + if (item === this.value) { + return 'value'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'value') { + return this.value; + } + } + + walk(cb: (entry: { node: MediaFeatureValueWalkerEntry, parent: MediaFeatureValueWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.value, parent: this }, 'value') === false) { + return false; + } + + if ('walk' in this.value) { + return this.value.walk(cb); + } + } + + toJSON() { + if (Array.isArray(this.value)) { + return { + type: this.type, + value: this.value.map((x) => x.toJSON()), + tokens: this.tokens(), + }; + } + + return { + type: this.type, + value: this.value.toJSON(), + tokens: this.tokens(), + }; + } + + isMediaFeatureValue(): this is MediaFeatureValue { + return MediaFeatureValue.isMediaFeatureValue(this); + } + + static isMediaFeatureValue(x: unknown): x is MediaFeatureValue { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeatureValue)) { + return false; + } + + return x.type === NodeType.MediaFeatureValue; + } +} + +export type MediaFeatureValueWalkerEntry = ComponentValue | Array; +export type MediaFeatureValueWalkerParent = ContainerNode | MediaFeatureValue; + +export function parseMediaFeatureValue(componentValues: Array) { + let candidateIndexStart = -1; + let candidateIndexEnd = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (candidateIndexStart !== -1) { + return false; + } + + if (isNumber(componentValue)) { + const maybeRatio = matchesRatioExactly(componentValues.slice(i)); + if (maybeRatio !== -1) { + candidateIndexStart = maybeRatio[0] + i; + candidateIndexEnd = maybeRatio[1] + i; + i += maybeRatio[1] - maybeRatio[0]; + continue; + } + + candidateIndexStart = i; + candidateIndexEnd = i; + continue; + } + + if (isDimension(componentValue)) { + candidateIndexStart = i; + candidateIndexEnd = i; + continue; + } + + if (isIdent(componentValue)) { + candidateIndexStart = i; + candidateIndexEnd = i; + continue; + } + + return false; + } + + if (candidateIndexStart === -1) { + return false; + } + + return new MediaFeatureValue( + componentValues.slice(candidateIndexStart, candidateIndexEnd + 1), + componentValues.slice(0, candidateIndexStart).flatMap((x) => { + return x.tokens(); + }), + componentValues.slice(candidateIndexEnd + 1).flatMap((x) => { + return x.tokens(); + }), + ); +} + +export function matchesRatioExactly(componentValues: Array) { + let firstNumber = -1; + let secondNumber = -1; + + const result = matchesRatio(componentValues); + if (result === -1) { + return -1; + } + + firstNumber = result[0]; + secondNumber = result[1]; + + for (let i = secondNumber+1; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === 'whitespace') { + continue; + } + + if (componentValue.type === 'comment') { + continue; + } + + return -1; + } + + return [firstNumber, secondNumber]; +} + +export function matchesRatio(componentValues: Array) { + let firstNumber = -1; + let delim = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === 'whitespace') { + continue; + } + + if (componentValue.type === 'comment') { + continue; + } + + if (componentValue.type === 'token') { + const token = componentValue.value as CSSToken; + if (token[0] === TokenType.Delim && token[4].value === '/') { + if (firstNumber === -1) { + return -1; + } + + if (delim !== -1) { + return -1; + } + + delim = i; + continue; + } + } + + if (isNumber(componentValue)) { + if (delim !== -1) { + return [firstNumber, i]; + } else if (firstNumber !== -1) { + return -1; + } else { + firstNumber = i; + continue; + } + } + + return -1; + } + + return -1; +} + diff --git a/packages/media-query-list-parser/src/nodes/media-feature.ts b/packages/media-query-list-parser/src/nodes/media-feature.ts new file mode 100644 index 0000000000..d9a9a41370 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-feature.ts @@ -0,0 +1,143 @@ +import { SimpleBlockNode, TokenNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenType } from '@csstools/css-tokenizer'; +import { MediaFeatureBoolean, parseMediaFeatureBoolean } from './media-feature-boolean'; +import { MediaFeatureName } from './media-feature-name'; +import { MediaFeaturePlain, MediaFeaturePlainWalkerEntry, MediaFeaturePlainWalkerParent, parseMediaFeaturePlain } from './media-feature-plain'; +import { MediaFeatureRange, MediaFeatureRangeWalkerEntry, MediaFeatureRangeWalkerParent, parseMediaFeatureRange } from './media-feature-range'; +import { MediaFeatureValue } from './media-feature-value'; +import { NodeType } from '../util/node-type'; + +export class MediaFeature { + type = NodeType.MediaFeature; + + feature: MediaFeaturePlain | MediaFeatureBoolean | MediaFeatureRange; + before: Array; + after: Array; + + constructor(feature: MediaFeaturePlain | MediaFeatureBoolean | MediaFeatureRange, before: Array = [], after: Array = []) { + this.feature = feature; + this.before = before; + this.after = after; + } + + tokens(): Array { + return [ + ...this.before, + ...this.feature.tokens(), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.feature.toString() + stringify(...this.after); + } + + indexOf(item: MediaFeaturePlain | MediaFeatureBoolean | MediaFeatureRange): number | string { + if (item === this.feature) { + return 'feature'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'feature') { + return this.feature; + } + } + + walk(cb: (entry: { node: MediaFeatureWalkerEntry, parent: MediaFeatureWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.feature, parent: this }, 'feature') === false) { + return false; + } + + if ('walk' in this.feature) { + return this.feature.walk(cb); + } + } + + toJSON() { + return { + type: this.type, + feature: this.feature.toJSON(), + before: this.before, + after: this.after, + }; + } + + isMediaFeature(): this is MediaFeature { + return MediaFeature.isMediaFeature(this); + } + + static isMediaFeature(x: unknown): x is MediaFeature { + if (!x) { + return false; + } + + if (!(x instanceof MediaFeature)) { + return false; + } + + return x.type === NodeType.MediaFeature; + } +} + +export type MediaFeatureWalkerEntry = MediaFeaturePlainWalkerEntry | MediaFeatureRangeWalkerEntry | MediaFeaturePlain | MediaFeatureBoolean | MediaFeatureRange; +export type MediaFeatureWalkerParent = MediaFeaturePlainWalkerParent | MediaFeatureRangeWalkerParent | MediaFeature; + +export function parseMediaFeature(simpleBlock: SimpleBlockNode, before: Array = [], after: Array = []) { + if (simpleBlock.startToken[0] !== TokenType.OpenParen) { + return false; + } + + const boolean = parseMediaFeatureBoolean(simpleBlock.value); + if (boolean !== false) { + return new MediaFeature(boolean, before, after); + } + + const plain = parseMediaFeaturePlain(simpleBlock.value); + if (plain !== false) { + return new MediaFeature(plain, before, after); + } + + const range = parseMediaFeatureRange(simpleBlock.value); + if (range !== false) { + return new MediaFeature(range, before, after); + } + + return false; +} + +export function newMediaFeatureBoolean(name: string) { + return new MediaFeature( + new MediaFeatureBoolean( + new TokenNode([TokenType.Ident, name, -1, -1, { value: name }]), + ), + [ + [TokenType.OpenParen, '(', -1, -1, undefined], + ], + [ + [TokenType.CloseParen, ')', -1, -1, undefined], + ], + ); +} + +export function newMediaFeaturePlain(name: string, ...value: Array) { + return new MediaFeature( + new MediaFeaturePlain( + new MediaFeatureName( + new TokenNode([TokenType.Ident, name, -1, -1, { value: name }]), + ), + [TokenType.Colon, ':', -1, -1, undefined], + new MediaFeatureValue( + value.map((x) => new TokenNode(x)), + ), + ), + [ + [TokenType.OpenParen, '(', -1, -1, undefined], + ], + [ + [TokenType.CloseParen, ')', -1, -1, undefined], + ], + ); +} diff --git a/packages/media-query-list-parser/src/nodes/media-in-parens.ts b/packages/media-query-list-parser/src/nodes/media-in-parens.ts new file mode 100644 index 0000000000..02aff59a34 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-in-parens.ts @@ -0,0 +1,91 @@ +import { ComponentValue, ContainerNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify } from '@csstools/css-tokenizer'; +import { GeneralEnclosed } from './general-enclosed'; +import { MediaAnd } from './media-and'; +import { MediaCondition } from './media-condition'; +import { MediaConditionList } from './media-condition-list'; +import { MediaFeature } from './media-feature'; +import { MediaFeatureBoolean } from './media-feature-boolean'; +import { MediaFeatureName } from './media-feature-name'; +import { MediaFeaturePlain } from './media-feature-plain'; +import { MediaFeatureRange } from './media-feature-range'; +import { MediaFeatureValue } from './media-feature-value'; +import { NodeType } from '../util/node-type'; + +export class MediaInParens { + type = NodeType.MediaInParens; + + media: MediaCondition | MediaFeature | GeneralEnclosed; + before: Array; + after: Array; + + constructor(media: MediaCondition | MediaFeature | GeneralEnclosed, before: Array = [], after: Array = []) { + this.media = media; + this.before = before; + this.after = after; + } + + tokens(): Array { + return [ + ...this.before, + ...this.media.tokens(), + ...this.after, + ]; + } + + toString(): string { + return stringify(...this.before) + this.media.toString() + stringify(...this.after); + } + + indexOf(item: MediaCondition | MediaFeature | GeneralEnclosed): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaInParensWalkerEntry, parent: MediaInParensWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + if ('walk' in this.media) { + return this.media.walk(cb); + } + } + + toJSON() { + return { + type: this.type, + media: this.media.toJSON(), + before: this.before, + after: this.after, + }; + } + + isMediaInParens(): this is MediaInParens { + return MediaInParens.isMediaInParens(this); + } + + static isMediaInParens(x: unknown): x is MediaInParens { + if (!x) { + return false; + } + + if (!(x instanceof MediaInParens)) { + return false; + } + + return x.type === NodeType.MediaInParens; + } +} + +export type MediaInParensWalkerEntry = ComponentValue | Array | GeneralEnclosed | MediaAnd | MediaConditionList | MediaCondition | MediaFeatureBoolean | MediaFeatureName | MediaFeaturePlain | MediaFeatureRange | MediaFeatureValue | MediaFeature | GeneralEnclosed | MediaInParens; +export type MediaInParensWalkerParent = ContainerNode | GeneralEnclosed | MediaAnd | MediaConditionList | MediaCondition | MediaFeatureBoolean | MediaFeatureName | MediaFeaturePlain | MediaFeatureRange | MediaFeatureValue | MediaFeature | GeneralEnclosed | MediaInParens; diff --git a/packages/media-query-list-parser/src/nodes/media-not.ts b/packages/media-query-list-parser/src/nodes/media-not.ts new file mode 100644 index 0000000000..1a81910e63 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-not.ts @@ -0,0 +1,75 @@ +import { CSSToken, stringify } from '@csstools/css-tokenizer'; +import { MediaInParens, MediaInParensWalkerEntry, MediaInParensWalkerParent } from './media-in-parens'; +import { NodeType } from '../util/node-type'; + +export class MediaNot { + type = NodeType.MediaNot; + + modifier: Array; + media: MediaInParens; + + constructor(modifier: Array, media: MediaInParens) { + this.modifier = modifier; + this.media = media; + } + + tokens(): Array { + return [ + ...this.modifier, + ...this.media.tokens(), + ]; + } + + toString(): string { + return stringify(...this.modifier) + this.media.toString(); + } + + indexOf(item: MediaInParens): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaNotWalkerEntry, parent: MediaNotWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + modifier: this.modifier, + media: this.media.toJSON(), + }; + } + + isMediaNot(): this is MediaNot { + return MediaNot.isMediaNot(this); + } + + static isMediaNot(x: unknown): x is MediaNot { + if (!x) { + return false; + } + + if (!(x instanceof MediaNot)) { + return false; + } + + return x.type === NodeType.MediaNot; + } +} + +export type MediaNotWalkerEntry = MediaInParensWalkerEntry | MediaInParens; +export type MediaNotWalkerParent = MediaInParensWalkerParent | MediaNot; diff --git a/packages/media-query-list-parser/src/nodes/media-or.ts b/packages/media-query-list-parser/src/nodes/media-or.ts new file mode 100644 index 0000000000..9d45e629f3 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-or.ts @@ -0,0 +1,75 @@ +import { CSSToken, stringify } from '@csstools/css-tokenizer'; +import { MediaInParens, MediaInParensWalkerEntry, MediaInParensWalkerParent } from './media-in-parens'; +import { NodeType } from '../util/node-type'; + +export class MediaOr { + type = NodeType.MediaOr; + + modifier: Array; + media: MediaInParens; + + constructor(modifier: Array, media: MediaInParens) { + this.modifier = modifier; + this.media = media; + } + + tokens(): Array { + return [ + ...this.modifier, + ...this.media.tokens(), + ]; + } + + toString(): string { + return stringify(...this.modifier) + this.media.toString(); + } + + indexOf(item: MediaInParens): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaOrWalkerEntry, parent: MediaOrWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + modifier: this.modifier, + media: this.media.toJSON(), + }; + } + + isMediaOr(): this is MediaOr { + return MediaOr.isMediaOr(this); + } + + static isMediaOr(x: unknown): x is MediaOr { + if (!x) { + return false; + } + + if (!(x instanceof MediaOr)) { + return false; + } + + return x.type === NodeType.MediaOr; + } +} + +export type MediaOrWalkerEntry = MediaInParensWalkerEntry | MediaInParens; +export type MediaOrWalkerParent = MediaInParensWalkerParent | MediaOr; diff --git a/packages/media-query-list-parser/src/nodes/media-query-modifier.ts b/packages/media-query-list-parser/src/nodes/media-query-modifier.ts new file mode 100644 index 0000000000..22d94d0921 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-query-modifier.ts @@ -0,0 +1,22 @@ +import { TokenIdent, TokenType } from '@csstools/css-tokenizer'; + +export enum MediaQueryModifier { + Not = 'not', + Only = 'only' +} + +export function modifierFromToken(token: TokenIdent): MediaQueryModifier | false { + if (token[0] !== TokenType.Ident) { + return false; + } + + const matchingValue = token[4].value.toLowerCase(); + switch (matchingValue) { + case MediaQueryModifier.Not: + return MediaQueryModifier.Not; + case MediaQueryModifier.Only: + return MediaQueryModifier.Only; + default: + return false; + } +} diff --git a/packages/media-query-list-parser/src/nodes/media-query.ts b/packages/media-query-list-parser/src/nodes/media-query.ts new file mode 100644 index 0000000000..e6a1a65313 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-query.ts @@ -0,0 +1,350 @@ +import { ComponentValue } from '@csstools/css-parser-algorithms'; +import { CSSToken, stringify, TokenType } from '@csstools/css-tokenizer'; +import { NodeType } from '../util/node-type'; +import { MediaCondition, MediaConditionWalkerEntry, MediaConditionWalkerParent } from './media-condition'; +import { MediaInParens } from './media-in-parens'; +import { MediaNot } from './media-not'; + +export type MediaQuery = MediaQueryWithType | MediaQueryWithoutType | MediaQueryInvalid; + +export class MediaQueryWithType { + type = NodeType.MediaQueryWithType; + + modifier: Array; + mediaType: Array; + and: Array; + media: MediaCondition | null = null; + + constructor(modifier: Array, mediaType: Array, and?: Array, media?: MediaCondition | null) { + this.modifier = modifier; + this.mediaType = mediaType; + + if (and && media) { + this.and = and; + this.media = media; + } + } + + getModifier() { + if (!this.modifier.length) { + return ''; + } + + for (let i = 0; i < this.modifier.length; i++) { + const token = this.modifier[i]; + if (token[0] === TokenType.Ident) { + return token[4].value; + } + } + + return ''; + } + + negateQuery(): MediaQuery { + const copy = new MediaQueryWithType([...this.modifier], [...this.mediaType], this.and, this.media); + if (copy.modifier.length === 0) { + copy.modifier = [ + [TokenType.Ident, 'not', -1, -1, { value: 'not' }], + [TokenType.Whitespace, ' ', -1, -1, undefined], + ]; + + return copy; + } + + for (let i = 0; i < copy.modifier.length; i++) { + const token = copy.modifier[i]; + if (token[0] === TokenType.Ident && token[4].value.toLowerCase() === 'not') { + copy.modifier.splice(i, 1); + break; + } + + if (token[0] === TokenType.Ident && token[4].value.toLowerCase() === 'only') { + copy.modifier[i][1] = 'not'; + copy.modifier[i][4].value = 'not'; + break; + } + } + + return copy; + } + + getMediaType() { + if (!this.mediaType.length) { + return ''; + } + + for (let i = 0; i < this.mediaType.length; i++) { + const token = this.mediaType[i]; + if (token[0] === TokenType.Ident) { + return token[4].value; + } + } + + return ''; + } + + tokens() { + if (this.and && this.media) { + return [ + ...this.modifier, + ...this.mediaType, + ...this.and, + ...this.media.tokens(), + ]; + } + + return [ + ...this.modifier, + ...this.mediaType, + ]; + } + + toString() { + if (this.and && this.media) { + return stringify(...this.modifier) + stringify(...this.mediaType) + stringify(...this.and) + this.media.toString(); + } + + return stringify(...this.modifier) + stringify(...this.mediaType); + } + + indexOf(item: MediaCondition): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaQueryWithTypeWalkerEntry, parent: MediaQueryWithTypeWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + if (!this.media) { + return; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + string: this.toString(), + modifier: this.modifier, + mediaType: this.mediaType, + and: this.and, + media: this.media, + }; + } + + isMediaQueryWithType(): this is MediaQueryWithType { + return MediaQueryWithType.isMediaQueryWithType(this); + } + + static isMediaQueryWithType(x: unknown): x is MediaQueryWithType { + if (!x) { + return false; + } + + if (!(x instanceof MediaQueryWithType)) { + return false; + } + + return x.type === NodeType.MediaQueryWithType; + } +} + +export type MediaQueryWithTypeWalkerEntry = MediaConditionWalkerEntry | MediaCondition; +export type MediaQueryWithTypeWalkerParent = MediaConditionWalkerParent | MediaQueryWithType; + +export class MediaQueryWithoutType { + type = NodeType.MediaQueryWithoutType; + + media: MediaCondition; + + constructor(media: MediaCondition) { + this.media = media; + } + + negateQuery(): MediaQuery { + let mediaCondition = this.media; + if (mediaCondition.media.type === NodeType.MediaNot) { + return new MediaQueryWithoutType( + new MediaCondition( + (mediaCondition.media as MediaNot).media, + ), + ); + } + + if (mediaCondition.media.type === NodeType.MediaConditionListWithOr) { + mediaCondition = new MediaCondition( + new MediaInParens( + mediaCondition, + [ + [TokenType.Whitespace, ' ', 0, 0, undefined], + [TokenType.OpenParen, '(', 0, 0, undefined], + ], + [ + [TokenType.CloseParen, ')', 0, 0, undefined], + ], + ), + ); + } + + const query = new MediaQueryWithType( + [ + [TokenType.Ident, 'not', 0, 0, { value: 'not' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + ], + [ + [TokenType.Ident, 'all', 0, 0, { value: 'all' }], + [TokenType.Whitespace, ' ', 0, 0, undefined], + ], + [ + [TokenType.Ident, 'and', 0, 0, { value: 'and' }], + ], + mediaCondition, + ); + + return query; + } + + tokens(): Array { + return this.media.tokens(); + } + + toString(): string { + return this.media.toString(); + } + + indexOf(item: MediaCondition): number | string { + if (item === this.media) { + return 'media'; + } + + return -1; + } + + at(index: number | string) { + if (index === 'media') { + return this.media; + } + } + + walk(cb: (entry: { node: MediaQueryWithoutTypeWalkerEntry, parent: MediaQueryWithoutTypeWalkerParent }, index: number | string) => boolean | void) { + if (cb({ node: this.media, parent: this }, 'media') === false) { + return false; + } + + return this.media.walk(cb); + } + + toJSON() { + return { + type: this.type, + string: this.toString(), + media: this.media, + }; + } + + isMediaQueryWithoutType(): this is MediaQueryWithoutType { + return MediaQueryWithoutType.isMediaQueryWithoutType(this); + } + + static isMediaQueryWithoutType(x: unknown): x is MediaQueryWithoutType { + if (!x) { + return false; + } + + if (!(x instanceof MediaQueryWithoutType)) { + return false; + } + + return x.type === NodeType.MediaQueryWithoutType; + } +} + +export type MediaQueryWithoutTypeWalkerEntry = MediaConditionWalkerEntry | MediaCondition; +export type MediaQueryWithoutTypeWalkerParent = MediaConditionWalkerParent | MediaQueryWithoutType; + +export class MediaQueryInvalid { + type = NodeType.MediaQueryInvalid; + + media: Array; + + constructor(media: Array) { + this.media = media; + } + + negateQuery(): MediaQuery { + return new MediaQueryInvalid(this.media); + } + + tokens(): Array { + return this.media.flatMap((x) => x.tokens()); + } + + toString(): string { + return this.media.map((x) => x.toString()).join(''); + } + + walk(cb: (entry: { node: MediaQueryInvalidWalkerEntry, parent: MediaQueryInvalidWalkerParent }, index: number | string) => boolean | void) { + let aborted = false; + + this.media.forEach((child, index) => { + if (aborted) { + return; + } + + if (cb({ node: child, parent: this }, index) === false) { + aborted = true; + return; + } + + if ('walk' in child) { + if (child.walk(cb) === false) { + aborted = true; + return; + } + } + }); + + if (aborted) { + return false; + } + } + + toJSON() { + return { + type: this.type, + string: this.toString(), + media: this.media, + }; + } + + isMediaQueryInvalid(): this is MediaQueryInvalid { + return MediaQueryInvalid.isMediaQueryInvalid(this); + } + + static isMediaQueryInvalid(x: unknown): x is MediaQueryInvalid { + if (!x) { + return false; + } + + if (!(x instanceof MediaQueryInvalid)) { + return false; + } + + return x.type === NodeType.MediaQueryInvalid; + } +} + +export type MediaQueryInvalidWalkerEntry = ComponentValue; +export type MediaQueryInvalidWalkerParent = ComponentValue | MediaQueryInvalid; diff --git a/packages/media-query-list-parser/src/nodes/media-type.ts b/packages/media-query-list-parser/src/nodes/media-type.ts new file mode 100644 index 0000000000..d30336bea7 --- /dev/null +++ b/packages/media-query-list-parser/src/nodes/media-type.ts @@ -0,0 +1,58 @@ +import { TokenIdent, TokenType } from '@csstools/css-tokenizer'; + +export enum MediaType { + /** Always matches */ + All = 'all', + Print = 'print', + Screen = 'screen', + /** Never matches */ + Tty = 'tty', + /** Never matches */ + Tv = 'tv', + /** Never matches */ + Projection = 'projection', + /** Never matches */ + Handheld = 'handheld', + /** Never matches */ + Braille = 'braille', + /** Never matches */ + Embossed = 'embossed', + /** Never matches */ + Aural = 'aural', + /** Never matches */ + Speech = 'speech', +} + +export function typeFromToken(token: TokenIdent): MediaType | false { + if (token[0] !== TokenType.Ident) { + return false; + } + + const matchingValue = token[4].value.toLowerCase(); + switch (matchingValue) { + case MediaType.All: + return MediaType.All; + case MediaType.Print: + return MediaType.Print; + case MediaType.Screen: + return MediaType.Screen; + case MediaType.Tty: + return MediaType.Tty; + case MediaType.Tv: + return MediaType.Tv; + case MediaType.Projection: + return MediaType.Projection; + case MediaType.Handheld: + return MediaType.Handheld; + case MediaType.Braille: + return MediaType.Braille; + case MediaType.Embossed: + return MediaType.Embossed; + case MediaType.Aural: + return MediaType.Aural; + case MediaType.Speech: + return MediaType.Speech; + default: + return false; + } +} diff --git a/packages/media-query-list-parser/src/parser/parse-media-query.ts b/packages/media-query-list-parser/src/parser/parse-media-query.ts new file mode 100644 index 0000000000..9e95b638eb --- /dev/null +++ b/packages/media-query-list-parser/src/parser/parse-media-query.ts @@ -0,0 +1,510 @@ +import { ComponentValue, ComponentValueType, isCommentNode, isTokenNode, isWhitespaceNode, SimpleBlockNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, TokenIdent, TokenType } from '@csstools/css-tokenizer'; +import { GeneralEnclosed } from '../nodes/general-enclosed'; +import { MediaAnd } from '../nodes/media-and'; +import { MediaCondition } from '../nodes/media-condition'; +import { MediaConditionListWithAnd, MediaConditionListWithOr } from '../nodes/media-condition-list'; +import { parseMediaFeature } from '../nodes/media-feature'; +import { MediaInParens } from '../nodes/media-in-parens'; +import { MediaNot } from '../nodes/media-not'; +import { MediaOr } from '../nodes/media-or'; +import { MediaQueryWithoutType, MediaQueryWithType } from '../nodes/media-query'; +import { modifierFromToken } from '../nodes/media-query-modifier'; +import { isIdent } from '../util/component-value-is'; + +export function parseMediaQuery(componentValues: Array) { + { + const condition = parseMediaCondition(componentValues); + if (condition !== false) { + return new MediaQueryWithoutType(condition); + } + } + + { + let modifierIndex = -1; + let typeIndex = -1; + let andIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i] as ComponentValue; + if (isWhitespaceNode(componentValue)) { + continue; + } + + if (isCommentNode(componentValue)) { + continue; + } + + if (isTokenNode(componentValue)) { + const token = componentValue.value; + if (modifierIndex === -1 && token[0] === TokenType.Ident && modifierFromToken(token)) { + modifierIndex = i; + continue; + } + + if (typeIndex === -1 && token[0] === TokenType.Ident && !modifierFromToken(token)) { + typeIndex = i; + continue; + } + + if (andIndex === -1 && token[0] === TokenType.Ident && token[4].value.toLowerCase() === 'and') { + andIndex = i; + const condition = parseMediaConditionWithoutOr(componentValues.slice(i+1)); + if (condition === false) { + return false; + } + + break; + } + + return false; + } + + return false; + } + + let modifierTokens: Array = []; + let typeTokens: Array = []; + + if (modifierIndex !== -1) { + modifierTokens = componentValues.slice(0, modifierIndex + 1).flatMap((x) => { + return x.tokens(); + }); + + if (typeIndex !== -1) { + typeTokens = componentValues.slice(modifierIndex + 1, typeIndex + 1).flatMap((x) => { + return x.tokens(); + }); + } + } else if (typeIndex !== -1) { + typeTokens = componentValues.slice(0, typeIndex + 1).flatMap((x) => { + return x.tokens(); + }); + } + + const remainder = componentValues.slice(Math.max(modifierIndex, typeIndex, andIndex) + 1); + const condition = parseMediaConditionWithoutOr(remainder); + if (condition === false) { + return new MediaQueryWithType( + modifierTokens, + [ + ...typeTokens, + ...componentValues.slice(typeIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ], + ); + } + + return new MediaQueryWithType( + modifierTokens, + typeTokens, + componentValues.slice(typeIndex + 1, andIndex + 1).flatMap((x) => { + return x.tokens(); + }), + condition, + ); + } +} + +export function parseMediaConditionListWithOr(componentValues: Array) { + let leading: MediaInParens | false = false; + const list: Array = []; + let firstIndex = -1; + let lastIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + if (leading) { + const part = parseMediaOr(componentValues.slice(i)); + if (part !== false) { + i += part.advance; + list.push(part.node); + lastIndex = i; + continue; + } + } + + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (leading) { + return false; + } + + if (leading === false && componentValue.type === ComponentValueType.SimpleBlock) { + leading = parseMediaInParensFromSimpleBlock(componentValue as SimpleBlockNode); + if (leading === false) { + return false; + } + + firstIndex = i; + continue; + } + + return false; + } + + if (leading && list.length) { + return new MediaConditionListWithOr( + leading, + list, + componentValues.slice(0, firstIndex).flatMap((x) => { + return x.tokens(); + }), + componentValues.slice(lastIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ); + } + + return false; +} + +export function parseMediaConditionListWithAnd(componentValues: Array) { + let leading: MediaInParens | false = false; + const list: Array = []; + let firstIndex = -1; + let lastIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + if (leading) { + const part = parseMediaAnd(componentValues.slice(i)); + if (part !== false) { + i += part.advance; + list.push(part.node); + lastIndex = i; + continue; + } + } + + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (leading) { + return false; + } + + if (leading === false && componentValue.type === ComponentValueType.SimpleBlock) { + leading = parseMediaInParensFromSimpleBlock(componentValue as SimpleBlockNode); + if (leading === false) { + return false; + } + + firstIndex = i; + continue; + } + + return false; + } + + if (leading && list.length) { + return new MediaConditionListWithAnd( + leading, + list, + componentValues.slice(0, firstIndex).flatMap((x) => { + return x.tokens(); + }), + componentValues.slice(lastIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ); + } + + return false; +} + +export function parseMediaCondition(componentValues: Array) { + const mediaNot = parseMediaNot(componentValues); + if (mediaNot !== false) { + return new MediaCondition(mediaNot); + } + + const mediaListAnd = parseMediaConditionListWithAnd(componentValues); + if (mediaListAnd !== false) { + return new MediaCondition(mediaListAnd); + } + + const mediaListOr = parseMediaConditionListWithOr(componentValues); + if (mediaListOr !== false) { + return new MediaCondition(mediaListOr); + } + + const mediaInParens = parseMediaInParens(componentValues); + if (mediaInParens !== false) { + return new MediaCondition(mediaInParens); + } + + return false; +} + +export function parseMediaConditionWithoutOr(componentValues: Array) { + const mediaNot = parseMediaNot(componentValues); + if (mediaNot !== false) { + return new MediaCondition(mediaNot); + } + + const mediaListAnd = parseMediaConditionListWithAnd(componentValues); + if (mediaListAnd !== false) { + return new MediaCondition(mediaListAnd); + } + + const mediaInParens = parseMediaInParens(componentValues); + if (mediaInParens !== false) { + return new MediaCondition(mediaInParens); + } + + return false; +} + +export function parseMediaInParens(componentValues: Array) { + let singleSimpleBlockIndex = -1; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (componentValue.type === ComponentValueType.SimpleBlock) { + if (singleSimpleBlockIndex !== -1) { + return false; + } + + singleSimpleBlockIndex = i; + continue; + } + + return false; + } + + if (singleSimpleBlockIndex === -1) { + return false; + } + + const simpleBlock = componentValues[singleSimpleBlockIndex] as SimpleBlockNode; + if (simpleBlock.startToken[0] !== TokenType.OpenParen) { + return false; + } + + const before = [ + ...componentValues.slice(0, singleSimpleBlockIndex).flatMap((x) => { + return x.tokens(); + }), + simpleBlock.startToken, + ]; + + const after = [ + simpleBlock.endToken, + ...componentValues.slice(singleSimpleBlockIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ]; + + const feature = parseMediaFeature(simpleBlock, before, after); + if (feature !== false) { + return new MediaInParens(feature); + } + + const condition = parseMediaCondition(simpleBlock.value); + if (condition !== false) { + return new MediaInParens(condition, before, after); + } + + return new MediaInParens( + new GeneralEnclosed(simpleBlock), + componentValues.slice(0, singleSimpleBlockIndex).flatMap((x) => { + return x.tokens(); + }), + componentValues.slice(singleSimpleBlockIndex + 1).flatMap((x) => { + return x.tokens(); + }), + ); +} + +export function parseMediaInParensFromSimpleBlock(simpleBlock: SimpleBlockNode) { + if (simpleBlock.startToken[0] !== TokenType.OpenParen) { + return false; + } + + const feature = parseMediaFeature(simpleBlock, [simpleBlock.startToken], [simpleBlock.endToken]); + if (feature !== false) { + return new MediaInParens(feature); + } + + const condition = parseMediaCondition(simpleBlock.value); + if (condition !== false) { + return new MediaInParens(condition, [simpleBlock.startToken], [simpleBlock.endToken]); + } + + return new MediaInParens(new GeneralEnclosed(simpleBlock)); +} + +export function parseMediaNot(componentValues: Array) { + let sawNot = false; + let node: MediaNot | null = null; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (isIdent(componentValue)) { + const token = (componentValue.value as TokenIdent); + if (token[4].value.toLowerCase() === 'not') { + if (sawNot) { + return false; + } + + sawNot = true; + continue; + } + + return false; + } + + if (sawNot && componentValue.type === ComponentValueType.SimpleBlock) { + const media = parseMediaInParensFromSimpleBlock(componentValue as SimpleBlockNode); + if (media === false) { + return false; + } + + node = new MediaNot( + componentValues.slice(0, i).flatMap((x) => { + return x.tokens(); + }), + media, + ); + + continue; + } + + return false; + } + + if (node) { + return node; + } + + return false; +} + +export function parseMediaOr(componentValues: Array) { + let sawOr = false; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (isIdent(componentValue)) { + const token = (componentValue.value as TokenIdent); + if (token[4].value.toLowerCase() === 'or') { + if (sawOr) { + return false; + } + + sawOr = true; + continue; + } + + return false; + } + + if (sawOr && componentValue.type === ComponentValueType.SimpleBlock) { + const media = parseMediaInParensFromSimpleBlock(componentValue as SimpleBlockNode); + if (media === false) { + return false; + } + + return { + advance: i, + node: new MediaOr( + componentValues.slice(0, i).flatMap((x) => { + return x.tokens(); + }), + media, + ), + }; + } + + return false; + } + + return false; +} + +export function parseMediaAnd(componentValues: Array) { + let sawAnd = false; + + for (let i = 0; i < componentValues.length; i++) { + const componentValue = componentValues[i]; + if (componentValue.type === ComponentValueType.Whitespace) { + continue; + } + + if (componentValue.type === ComponentValueType.Comment) { + continue; + } + + if (isIdent(componentValue)) { + const token = (componentValue.value as TokenIdent); + if (token[4].value.toLowerCase() === 'and') { + if (sawAnd) { + return false; + } + + sawAnd = true; + continue; + } + + return false; + } + + if (sawAnd && componentValue.type === ComponentValueType.SimpleBlock) { + const media = parseMediaInParensFromSimpleBlock(componentValue as SimpleBlockNode); + if (media === false) { + return false; + } + + return { + advance: i, + node: new MediaAnd( + componentValues.slice(0, i).flatMap((x) => { + return x.tokens(); + }), + media, + ), + }; + } + + return false; + } + + return false; +} diff --git a/packages/media-query-list-parser/src/parser/parse.ts b/packages/media-query-list-parser/src/parser/parse.ts new file mode 100644 index 0000000000..950ed71535 --- /dev/null +++ b/packages/media-query-list-parser/src/parser/parse.ts @@ -0,0 +1,44 @@ +import { parseCommaSeparatedListOfComponentValues } from '@csstools/css-parser-algorithms'; +import { ParserError } from '@csstools/css-parser-algorithms/dist/interfaces/error'; +import { CSSToken, tokenizer } from '@csstools/css-tokenizer'; +import { MediaQuery, MediaQueryInvalid } from '../nodes/media-query'; +import { parseMediaQuery } from './parse-media-query'; + +export type Options = { + preserveInvalidMediaQueries?: boolean, + onParseError?: (error: ParserError) => void +} + +export function parseFromTokens(tokens: Array, options?: Options) { + const componentValuesLists = parseCommaSeparatedListOfComponentValues(tokens, { + onParseError: options?.onParseError, + }); + + return componentValuesLists.map((componentValuesList, index) => { + const mediaQuery = parseMediaQuery(componentValuesList); + if (mediaQuery == false && options?.preserveInvalidMediaQueries === true) { + return new MediaQueryInvalid(componentValuesLists[index]); + } + + return mediaQuery; + }).filter((x) => !!x) as Array; +} + +export function parse(source: string, options?: Options) { + const t = tokenizer({ css: source }, { + commentsAreTokens: true, + onParseError: options?.onParseError, + }); + + const tokens = []; + + { + while (!t.endOfFile()) { + tokens.push(t.nextToken()); + } + + tokens.push(t.nextToken()); // EOF-token + } + + return parseFromTokens(tokens, options); +} diff --git a/packages/media-query-list-parser/src/util/clone-media-query.ts b/packages/media-query-list-parser/src/util/clone-media-query.ts new file mode 100644 index 0000000000..ec8b69bdee --- /dev/null +++ b/packages/media-query-list-parser/src/util/clone-media-query.ts @@ -0,0 +1,27 @@ +import { cloneTokens, stringify } from '@csstools/css-tokenizer'; +import { MediaQueryInvalid, MediaQueryWithoutType, MediaQueryWithType } from '../nodes/media-query'; +import { parseFromTokens } from '../parser/parse'; +import { isMediaQueryInvalid, isMediaQueryWithoutType, isMediaQueryWithType } from './type-predicates'; + +export function cloneMediaQuery(x: T): T { + const tokens = cloneTokens(x.tokens()); + const parsed = parseFromTokens(tokens, { preserveInvalidMediaQueries: true }); + const firstQuery = parsed[0]; + if (!firstQuery) { + throw new Error(`Failed to clone media query for : "${stringify(...tokens)}"`); + } + + if (isMediaQueryInvalid(x) && isMediaQueryInvalid(firstQuery)) { + return firstQuery as T; + } + + if (isMediaQueryWithType(x) && isMediaQueryWithType(firstQuery)) { + return firstQuery as T; + } + + if (isMediaQueryWithoutType(x) && isMediaQueryWithoutType(firstQuery)) { + return firstQuery as T; + } + + throw new Error(`Failed to clone media query for : "${stringify(...tokens)}"`); +} diff --git a/packages/media-query-list-parser/src/util/component-value-is.ts b/packages/media-query-list-parser/src/util/component-value-is.ts new file mode 100644 index 0000000000..1475eaeeb1 --- /dev/null +++ b/packages/media-query-list-parser/src/util/component-value-is.ts @@ -0,0 +1,53 @@ +import { ComponentValue, ComponentValueType, FunctionNode } from '@csstools/css-parser-algorithms'; +import { CSSToken, TokenFunction, TokenIdent, TokenType } from '@csstools/css-tokenizer'; + +export function isNumber(componentValue: ComponentValue) { + if ( + (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Number) || + (componentValue.type === ComponentValueType.Function && ((componentValue as FunctionNode).name as TokenFunction)[4].value === 'calc') + ) { + return true; + } + + return false; +} + +export function isNumericConstant(componentValue: ComponentValue) { + if (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Ident) { + const token = componentValue.value as TokenIdent; + const tokenValue = token[4].value.toLowerCase(); + if (tokenValue === 'infinity') { + return true; + } + if (tokenValue === '-infinity') { + return true; + } + if (tokenValue === 'nan') { + return true; + } + if (tokenValue === 'e') { + return true; + } + if (tokenValue === 'pi') { + return true; + } + } + + return false; +} + +export function isDimension(componentValue: ComponentValue) { + if (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Dimension) { + return true; + } + + return false; +} + +export function isIdent(componentValue: ComponentValue) { + if (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Ident) { + return true; + } + + return false; +} diff --git a/packages/media-query-list-parser/src/util/node-type.ts b/packages/media-query-list-parser/src/util/node-type.ts new file mode 100644 index 0000000000..dd8fd4374b --- /dev/null +++ b/packages/media-query-list-parser/src/util/node-type.ts @@ -0,0 +1,21 @@ +export enum NodeType { + GeneralEnclosed = 'general-enclosed', + MediaAnd = 'media-and', + MediaCondition = 'media-condition', + MediaConditionListWithAnd = 'media-condition-list-and', + MediaConditionListWithOr = 'media-condition-list-or', + MediaFeature = 'media-feature', + MediaFeatureBoolean = 'mf-boolean', + MediaFeatureName = 'mf-name', + MediaFeaturePlain = 'mf-plain', + MediaFeatureRangeNameValue = 'mf-range-name-value', + MediaFeatureRangeValueName = 'mf-range-value-name', + MediaFeatureRangeValueNameValue = 'mf-range-value-name-value', + MediaFeatureValue = 'mf-value', + MediaInParens = 'media-in-parens', + MediaNot = 'media-not', + MediaOr = 'media-or', + MediaQueryWithType = 'media-query-with-type', + MediaQueryWithoutType = 'media-query-without-type', + MediaQueryInvalid = 'media-query-invalid', +} diff --git a/packages/media-query-list-parser/src/util/type-predicates.ts b/packages/media-query-list-parser/src/util/type-predicates.ts new file mode 100644 index 0000000000..659f048b45 --- /dev/null +++ b/packages/media-query-list-parser/src/util/type-predicates.ts @@ -0,0 +1,102 @@ +import { GeneralEnclosed } from '../nodes/general-enclosed'; +import { MediaAnd } from '../nodes/media-and'; +import { MediaCondition } from '../nodes/media-condition'; +import { MediaConditionList, MediaConditionListWithAnd, MediaConditionListWithOr } from '../nodes/media-condition-list'; +import { MediaFeature } from '../nodes/media-feature'; +import { MediaFeatureBoolean } from '../nodes/media-feature-boolean'; +import { MediaFeatureName } from '../nodes/media-feature-name'; +import { MediaFeaturePlain } from '../nodes/media-feature-plain'; +import { MediaFeatureRange, MediaFeatureRangeNameValue, MediaFeatureRangeValueName, MediaFeatureRangeValueNameValue } from '../nodes/media-feature-range'; +import { MediaFeatureValue } from '../nodes/media-feature-value'; +import { MediaInParens } from '../nodes/media-in-parens'; +import { MediaNot } from '../nodes/media-not'; +import { MediaOr } from '../nodes/media-or'; +import { MediaQuery, MediaQueryInvalid, MediaQueryWithoutType, MediaQueryWithType } from '../nodes/media-query'; + +export function isGeneralEnclosed(x: unknown): x is GeneralEnclosed { + return GeneralEnclosed.isGeneralEnclosed(x); +} + +export function isMediaAnd(x: unknown): x is MediaAnd { + return MediaAnd.isMediaAnd(x); +} + +export function isMediaConditionList(x: unknown): x is MediaConditionList { + return isMediaConditionListWithAnd(x) || isMediaConditionListWithOr(x); +} + +export function isMediaConditionListWithAnd(x: unknown): x is MediaConditionListWithAnd { + return MediaConditionListWithAnd.isMediaConditionListWithAnd(x); +} + +export function isMediaConditionListWithOr(x: unknown): x is MediaConditionListWithOr { + return MediaConditionListWithOr.isMediaConditionListWithOr(x); +} + +export function isMediaCondition(x: unknown): x is MediaCondition { + return MediaCondition.isMediaCondition(x); +} + +export function isMediaFeatureBoolean(x: unknown): x is MediaFeatureBoolean { + return MediaFeatureBoolean.isMediaFeatureBoolean(x); +} + +export function isMediaFeatureName(x: unknown): x is MediaFeatureName { + return MediaFeatureName.isMediaFeatureName(x); +} + +export function isMediaFeatureValue(x: unknown): x is MediaFeatureValue { + return MediaFeatureValue.isMediaFeatureValue(x); +} + +export function isMediaFeaturePlain(x: unknown): x is MediaFeaturePlain { + return MediaFeaturePlain.isMediaFeaturePlain(x); +} + +export function isMediaFeatureRange(x: unknown): x is MediaFeatureRange { + return isMediaFeatureRangeNameValue(x) || isMediaFeatureRangeValueName(x) || isMediaFeatureRangeValueNameValue(x); +} + +export function isMediaFeatureRangeNameValue(x: unknown): x is MediaFeatureRangeNameValue { + return MediaFeatureRangeNameValue.isMediaFeatureRangeNameValue(x); +} + +export function isMediaFeatureRangeValueName(x: unknown): x is MediaFeatureRangeValueName { + return MediaFeatureRangeValueName.isMediaFeatureRangeValueName(x); +} + +export function isMediaFeatureRangeValueNameValue(x: unknown): x is MediaFeatureRangeValueNameValue { + return MediaFeatureRangeValueNameValue.isMediaFeatureRangeValueNameValue(x); +} + +export function isMediaFeature(x: unknown): x is MediaFeature { + return MediaFeature.isMediaFeature(x); +} + +export function isMediaInParens(x: unknown): x is MediaInParens { + return MediaInParens.isMediaInParens(x); +} + +export function isMediaNot(x: unknown): x is MediaNot { + return MediaNot.isMediaNot(x); +} + +export function isMediaOr(x: unknown): x is MediaOr { + return MediaOr.isMediaOr(x); +} + +export function isMediaQuery(x: unknown): x is MediaQuery { + return isMediaQueryWithType(x) || isMediaQueryWithoutType(x) || isMediaQueryInvalid(x); +} + +export function isMediaQueryWithType(x: unknown): x is MediaQueryWithType { + return MediaQueryWithType.isMediaQueryWithType(x); +} + +export function isMediaQueryWithoutType(x: unknown): x is MediaQueryWithoutType { + return MediaQueryWithoutType.isMediaQueryWithoutType(x); +} + +export function isMediaQueryInvalid(x: unknown): x is MediaQueryInvalid { + return MediaQueryInvalid.isMediaQueryInvalid(x); +} diff --git a/packages/media-query-list-parser/test/_import.mjs b/packages/media-query-list-parser/test/_import.mjs new file mode 100644 index 0000000000..3215dfbbbe --- /dev/null +++ b/packages/media-query-list-parser/test/_import.mjs @@ -0,0 +1,3 @@ +import { parse } from '@csstools/media-query-list-parser'; + +parse('(min-width: 300px)'); diff --git a/packages/media-query-list-parser/test/_require.cjs b/packages/media-query-list-parser/test/_require.cjs new file mode 100644 index 0000000000..09406cf784 --- /dev/null +++ b/packages/media-query-list-parser/test/_require.cjs @@ -0,0 +1,3 @@ +const { parse } = require('@csstools/media-query-list-parser'); + +parse('(min-width: 300px)'); diff --git a/packages/media-query-list-parser/test/cases/media-not/0001.expect.json b/packages/media-query-list-parser/test/cases/media-not/0001.expect.json new file mode 100644 index 0000000000..5a9906847c --- /dev/null +++ b/packages/media-query-list-parser/test/cases/media-not/0001.expect.json @@ -0,0 +1,71 @@ +[ + { + "type": "media-query-without-type", + "string": "not (color)", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 5, + 9, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 4, + 4, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 10, + 10, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/media-not/0001.mjs b/packages/media-query-list-parser/test/cases/media-not/0001.mjs new file mode 100644 index 0000000000..5eb55f343b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/media-not/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not (color)', + 'media-not/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0001.expect.json b/packages/media-query-list-parser/test/cases/mf-boolean/0001.expect.json new file mode 100644 index 0000000000..af1643cf27 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0001.expect.json @@ -0,0 +1,50 @@ +[ + { + "type": "media-query-without-type", + "string": "(color)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 6, + 6, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0001.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0001.mjs new file mode 100644 index 0000000000..2686abd601 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color)', + 'mf-boolean/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0002.expect.json b/packages/media-query-list-parser/test/cases/mf-boolean/0002.expect.json new file mode 100644 index 0000000000..91c136e7d8 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0002.expect.json @@ -0,0 +1,78 @@ +[ + { + "type": "media-query-without-type", + "string": "/* comment 1 */(/* comment 2 */color/* comment 3 */)/* comment 4 */", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "color", + 31, + 35, + { + "value": "color" + } + ], + [ + "comment", + "/* comment 3 */", + 36, + 50, + null + ] + ] + }, + "before": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ], + [ + "(-token", + "(", + 15, + 15, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 51, + 51, + null + ], + [ + "comment", + "/* comment 4 */", + 52, + 66, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0002.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0002.mjs new file mode 100644 index 0000000000..f8266d4410 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '/* comment 1 */(/* comment 2 */color/* comment 3 */)/* comment 4 */', + 'mf-boolean/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0003.expect.json b/packages/media-query-list-parser/test/cases/mf-boolean/0003.expect.json new file mode 100644 index 0000000000..af07020b75 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0003.expect.json @@ -0,0 +1,50 @@ +[ + { + "type": "media-query-without-type", + "string": "(true)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "true", + "tokens": [ + [ + "ident-token", + "true", + 1, + 4, + { + "value": "true" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 5, + 5, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0003.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0003.mjs new file mode 100644 index 0000000000..c0c9f5645a --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(true)', + 'mf-boolean/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0004.expect.json b/packages/media-query-list-parser/test/cases/mf-boolean/0004.expect.json new file mode 100644 index 0000000000..ec092ecf0e --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0004.expect.json @@ -0,0 +1,50 @@ +[ + { + "type": "media-query-without-type", + "string": "(false)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "false", + "tokens": [ + [ + "ident-token", + "false", + 1, + 5, + { + "value": "false" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 6, + 6, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0004.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0004.mjs new file mode 100644 index 0000000000..0a34a2dc8b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(false)', + 'mf-boolean/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0005.expect.json b/packages/media-query-list-parser/test/cases/mf-boolean/0005.expect.json new file mode 100644 index 0000000000..924b11622d --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0005.expect.json @@ -0,0 +1,49 @@ +[ + { + "type": "media-query-without-type", + "string": "(color())", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "color(", + 1, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ], + [ + ")-token", + ")", + 8, + 8, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs new file mode 100644 index 0000000000..c44c8c1f75 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color())', + 'mf-boolean/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0001.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0001.expect.json new file mode 100644 index 0000000000..7a0c3891e7 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0001.expect.json @@ -0,0 +1,128 @@ +[ + { + "type": "media-query-without-type", + "string": "(min-width: 300px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "min-width", + 1, + 9, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 10, + 10, + null + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "dimension-token", + "300px", + 12, + 16, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 17, + 17, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0001.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0001.mjs new file mode 100644 index 0000000000..b674721b73 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(min-width: 300px)', + 'mf-plain/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0002.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0002.expect.json new file mode 100644 index 0000000000..dbcb811614 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0002.expect.json @@ -0,0 +1,184 @@ +[ + { + "type": "media-query-without-type", + "string": "/* comment 1 */(/* comment 2 */min-width/* comment 3 */:/* comment 4 */300px/* comment 5 */)/* comment 6 */", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ], + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ], + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ] + ] + }, + "tokens": [ + [ + "comment", + "/* comment 2 */", + 16, + 30, + null + ], + [ + "ident-token", + "min-width", + 31, + 39, + { + "value": "min-width" + } + ], + [ + "comment", + "/* comment 3 */", + 40, + 54, + null + ], + [ + "colon-token", + ":", + 55, + 55, + null + ], + [ + "comment", + "/* comment 4 */", + 56, + 70, + null + ], + [ + "dimension-token", + "300px", + 71, + 75, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + "comment", + "/* comment 5 */", + 76, + 90, + null + ] + ] + }, + "before": [ + [ + "comment", + "/* comment 1 */", + 0, + 14, + null + ], + [ + "(-token", + "(", + 15, + 15, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 91, + 91, + null + ], + [ + "comment", + "/* comment 6 */", + 92, + 106, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0002.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0002.mjs new file mode 100644 index 0000000000..90eb3e1f92 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '/* comment 1 */(/* comment 2 */min-width/* comment 3 */:/* comment 4 */300px/* comment 5 */)/* comment 6 */', + 'mf-plain/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0003.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0003.expect.json new file mode 100644 index 0000000000..1eb0b3ce36 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0003.expect.json @@ -0,0 +1,122 @@ +[ + { + "type": "media-query-without-type", + "string": "(resolution: infinite)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "resolution", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 21, + 21, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0003.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0003.mjs new file mode 100644 index 0000000000..ad7c3adf2d --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution: infinite)', + 'mf-plain/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0004.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0004.expect.json new file mode 100644 index 0000000000..5c69041e48 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0004.expect.json @@ -0,0 +1,81 @@ +[ + { + "type": "media-query-without-type", + "string": "(resolution(foo): infinite)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "function-token", + "resolution(", + 1, + 11, + { + "value": "resolution" + } + ], + [ + "ident-token", + "foo", + 12, + 14, + { + "value": "foo" + } + ], + [ + ")-token", + ")", + 15, + 15, + null + ], + [ + "colon-token", + ":", + 16, + 16, + null + ], + [ + "whitespace-token", + " ", + 17, + 17, + null + ], + [ + "ident-token", + "infinite", + 18, + 25, + { + "value": "infinite" + } + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs new file mode 100644 index 0000000000..6d9a61a7b9 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution(foo): infinite)', + 'mf-plain/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0005.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0005.mjs new file mode 100644 index 0000000000..946d31898c --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-plain/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '[resolution: infinite]', + 'mf-plain/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json new file mode 100644 index 0000000000..28cb45f065 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json @@ -0,0 +1,168 @@ +[ + { + "type": "media-query-without-type", + "string": "(20px < width <= calc(20px * 5))", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "20px", + 1, + 4, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null + ], + [ + "delim-token", + "<", + 6, + 6, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "width", + 8, + 12, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "delim-token", + "<", + 14, + 14, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 15, + 15, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "function-token", + "calc(", + 17, + 21, + { + "value": "calc" + } + ], + [ + "dimension-token", + "20px", + 22, + 25, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "*", + 27, + 27, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "5", + 29, + 29, + { + "value": 5, + "type": "integer" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ], + [ + ")-token", + ")", + 31, + 31, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0001.mjs b/packages/media-query-list-parser/test/cases/mf-range/0001.mjs new file mode 100644 index 0000000000..37aba33f4b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(20px < width <= calc(20px * 5))', + 'mf-range/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0002.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0002.expect.json new file mode 100644 index 0000000000..00ce71e31e --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0002.expect.json @@ -0,0 +1,186 @@ +[ + { + "type": "media-query-without-type", + "string": "/* comment 1 */(/* comment 2 */30px/* comment 3 */ { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0003.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0003.expect.json new file mode 100644 index 0000000000..b509b256c5 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0003.expect.json @@ -0,0 +1,488 @@ +[ + { + "type": "media-query-without-type", + "string": "( 1 / 5 < aspect-ratio < 3 / 2 )", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-value-name-value", + "name": { + "type": "mf-name", + "name": "aspect-ratio", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "aspect-ratio", + 10, + 21, + { + "value": "aspect-ratio" + } + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + }, + "valueOne": { + "type": "mf-value", + "value": [ + { + "type": "token", + "tokens": [ + [ + "number-token", + "1", + 2, + 2, + { + "value": 1, + "type": "integer" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "/", + 4, + 4, + { + "value": "/" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 5, + 5, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "number-token", + "5", + 6, + 6, + { + "value": 5, + "type": "integer" + } + ] + ] + } + ], + "tokens": [ + [ + "whitespace-token", + " ", + 1, + 1, + null + ], + [ + "number-token", + "1", + 2, + 2, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 3, + 3, + null + ], + [ + "delim-token", + "/", + 4, + 4, + { + "value": "/" + } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null + ], + [ + "number-token", + "5", + 6, + 6, + { + "value": 5, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ] + ] + }, + "valueTwo": { + "type": "mf-value", + "value": [ + { + "type": "token", + "tokens": [ + [ + "number-token", + "3", + 25, + 25, + { + "value": 3, + "type": "integer" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "/", + 27, + 27, + { + "value": "/" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 28, + 28, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "number-token", + "2", + 29, + 29, + { + "value": 2, + "type": "integer" + } + ] + ] + } + ], + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ], + [ + "number-token", + "3", + 25, + 25, + { + "value": 3, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "/", + 27, + 27, + { + "value": "/" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "2", + 29, + 29, + { + "value": 2, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 30, + 30, + null + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 1, + 1, + null + ], + [ + "number-token", + "1", + 2, + 2, + { + "value": 1, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 3, + 3, + null + ], + [ + "delim-token", + "/", + 4, + 4, + { + "value": "/" + } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null + ], + [ + "number-token", + "5", + 6, + 6, + { + "value": 5, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + "<", + 8, + 8, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "aspect-ratio", + 10, + 21, + { + "value": "aspect-ratio" + } + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + "delim-token", + "<", + 23, + 23, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 24, + 24, + null + ], + [ + "number-token", + "3", + 25, + 25, + { + "value": 3, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "/", + 27, + 27, + { + "value": "/" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "2", + 29, + 29, + { + "value": 2, + "type": "integer" + } + ], + [ + "whitespace-token", + " ", + 30, + 30, + null + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 31, + 31, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0003.mjs b/packages/media-query-list-parser/test/cases/mf-range/0003.mjs new file mode 100644 index 0000000000..5626fc00a9 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '( 1 / 5 < aspect-ratio < 3 / 2 )', + 'mf-range/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0004.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0004.expect.json new file mode 100644 index 0000000000..8990ac58b2 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0004.expect.json @@ -0,0 +1,300 @@ +[ + { + "type": "media-query-without-type", + "string": "(1/5 { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json new file mode 100644 index 0000000000..716ff79b43 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json @@ -0,0 +1,139 @@ +[ + { + "type": "media-query-without-type", + "string": "(widthundefined= 50px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50px", + 9, + 12, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "dimension-token", + "50px", + 9, + 12, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ], + [ + "delim-token", + "=", + 7, + 7, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "dimension-token", + "50px", + 9, + 12, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 13, + 13, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0005.mjs b/packages/media-query-list-parser/test/cases/mf-range/0005.mjs new file mode 100644 index 0000000000..fbaf319253 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(width = 50px)', + 'mf-range/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json new file mode 100644 index 0000000000..a91c89edc9 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json @@ -0,0 +1,139 @@ +[ + { + "type": "media-query-without-type", + "string": "(50pxundefined= width)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-value-name", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "width", + 8, + 12, + { + "value": "width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50px", + 1, + 4, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "50px", + 1, + 4, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "50px", + 1, + 4, + { + "value": 50, + "type": "integer", + "unit": "px" + } + ], + [ + [ + "whitespace-token", + " ", + 5, + 5, + null + ] + ], + [ + "delim-token", + "=", + 6, + 6, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "width", + 8, + 12, + { + "value": "width" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 13, + 13, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0006.mjs b/packages/media-query-list-parser/test/cases/mf-range/0006.mjs new file mode 100644 index 0000000000..cc1c77c20d --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0006.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(50px = width)', + 'mf-range/0006', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0007.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0007.expect.json new file mode 100644 index 0000000000..2f4ab2f303 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0007.expect.json @@ -0,0 +1,224 @@ +[ + { + "type": "media-query-without-type", + "string": "(1000px > height > 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-value-name-value", + "name": { + "type": "mf-name", + "name": "height", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + "valueOne": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ] + ] + }, + "valueTwo": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "100px", + 19, + 23, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "dimension-token", + "100px", + 19, + 23, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "delim-token", + ">", + 17, + 17, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "dimension-token", + "100px", + 19, + 23, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 24, + 24, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0007.mjs b/packages/media-query-list-parser/test/cases/mf-range/0007.mjs new file mode 100644 index 0000000000..0db8883c79 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0007.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(1000px > height > 100px)', + 'mf-range/0007', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0001.expect.json b/packages/media-query-list-parser/test/cases/query-with-type/0001.expect.json new file mode 100644 index 0000000000..ca5c59492b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0001.expect.json @@ -0,0 +1,19 @@ +[ + { + "type": "media-query-with-type", + "string": "screen", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0001.mjs b/packages/media-query-list-parser/test/cases/query-with-type/0001.mjs new file mode 100644 index 0000000000..b8d1c3f6b1 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen', + 'query-with-type/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0002.expect.json b/packages/media-query-list-parser/test/cases/query-with-type/0002.expect.json new file mode 100644 index 0000000000..f8f8ec84d6 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0002.expect.json @@ -0,0 +1,36 @@ +[ + { + "type": "media-query-with-type", + "string": "only screen", + "modifier": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ], + "mediaType": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ], + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0002.mjs b/packages/media-query-list-parser/test/cases/query-with-type/0002.mjs new file mode 100644 index 0000000000..d9da6523a1 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'only screen', + 'query-with-type/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0003.expect.json b/packages/media-query-list-parser/test/cases/query-with-type/0003.expect.json new file mode 100644 index 0000000000..428d658846 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0003.expect.json @@ -0,0 +1,36 @@ +[ + { + "type": "media-query-with-type", + "string": "not screen", + "modifier": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ], + "mediaType": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ], + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0003.mjs b/packages/media-query-list-parser/test/cases/query-with-type/0003.mjs new file mode 100644 index 0000000000..1684cf6799 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not screen', + 'query-with-type/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0004.expect.json b/packages/media-query-list-parser/test/cases/query-with-type/0004.expect.json new file mode 100644 index 0000000000..c1793f870b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0004.expect.json @@ -0,0 +1,182 @@ +[ + { + "type": "media-query-with-type", + "string": "only screen and (min-width: 300px)", + "modifier": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ], + "mediaType": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ], + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "ident-token", + "and", + 12, + 14, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "ident-token", + "min-width", + 17, + 25, + { + "value": "min-width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 28, + 32, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 27, + 27, + null + ], + [ + "dimension-token", + "300px", + 28, + 32, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "min-width", + 17, + 25, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 26, + 26, + null + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ], + [ + "dimension-token", + "300px", + 28, + 32, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "whitespace-token", + " ", + 15, + 15, + null + ], + [ + "(-token", + "(", + 16, + 16, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 33, + 33, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0004.mjs b/packages/media-query-list-parser/test/cases/query-with-type/0004.mjs new file mode 100644 index 0000000000..e056d54973 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'only screen and (min-width: 300px)', + 'query-with-type/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0001.expect.json b/packages/media-query-list-parser/test/cases/various/0001.expect.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0001.expect.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0001.mjs b/packages/media-query-list-parser/test/cases/various/0001.mjs new file mode 100644 index 0000000000..c5764560e5 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(/* a comment */foo ) something else', + 'various/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0002.expect.json b/packages/media-query-list-parser/test/cases/various/0002.expect.json new file mode 100644 index 0000000000..7d8dd3926b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0002.expect.json @@ -0,0 +1,737 @@ +[ + { + "type": "media-query-with-type", + "string": "not screen and (min-width: 300px) and (prefers-color-scheme:/* a comment */dark) and (width < 40vw) and (30px < width < 50rem)", + "modifier": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ] + ], + "mediaType": [ + [ + "whitespace-token", + " ", + 3, + 3, + null + ], + [ + "ident-token", + "screen", + 4, + 9, + { + "value": "screen" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "ident-token", + "and", + 11, + 13, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 15, + 15, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 32, + 32, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 33, + 33, + null + ], + [ + "ident-token", + "and", + 34, + 36, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "prefers-color-scheme", + "tokens": [ + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ] + ] + }, + "tokens": [ + [ + "comment", + "/* a comment */", + 60, + 74, + null + ], + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "prefers-color-scheme", + 39, + 58, + { + "value": "prefers-color-scheme" + } + ], + [ + "colon-token", + ":", + 59, + 59, + null + ], + [ + "comment", + "/* a comment */", + 60, + 74, + null + ], + [ + "ident-token", + "dark", + 75, + 78, + { + "value": "dark" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 38, + 38, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 79, + 79, + null + ] + ] + }, + "before": [], + "after": [] + } + }, + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 80, + 80, + null + ], + [ + "ident-token", + "and", + 81, + 83, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 84, + 84, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 91, + 91, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 93, + 93, + null + ], + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "width", + 86, + 90, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 91, + 91, + null + ], + [ + "delim-token", + "<", + 92, + 92, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 93, + 93, + null + ], + [ + "dimension-token", + "40vw", + 94, + 97, + { + "value": 40, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 85, + 85, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 98, + 98, + null + ] + ] + }, + "before": [], + "after": [] + } + }, + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 99, + 99, + null + ], + [ + "ident-token", + "and", + 100, + 102, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 103, + 103, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-value-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "whitespace-token", + " ", + 111, + 111, + null + ], + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 117, + 117, + null + ] + ] + }, + "valueOne": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 109, + 109, + null + ] + ] + }, + "valueTwo": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 119, + 119, + null + ], + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "30px", + 105, + 108, + { + "value": 30, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 109, + 109, + null + ], + [ + "delim-token", + "<", + 110, + 110, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 111, + 111, + null + ], + [ + "ident-token", + "width", + 112, + 116, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 117, + 117, + null + ], + [ + "delim-token", + "<", + 118, + 118, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 119, + 119, + null + ], + [ + "dimension-token", + "50rem", + 120, + 124, + { + "value": 50, + "type": "integer", + "unit": "rem" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 104, + 104, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 125, + 125, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0002.mjs b/packages/media-query-list-parser/test/cases/various/0002.mjs new file mode 100644 index 0000000000..964b4d9b99 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not screen and (min-width: 300px) and (prefers-color-scheme:/* a comment */dark) and (width < 40vw) and (30px < width < 50rem)', + 'various/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0003.expect.json b/packages/media-query-list-parser/test/cases/various/0003.expect.json new file mode 100644 index 0000000000..227fdaa805 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0003.expect.json @@ -0,0 +1,255 @@ +[ + { + "type": "media-query-without-type", + "string": "(resolution < infinite) and (infinite <= resolution) ", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "resolution", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "delim-token", + "<", + 12, + 12, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "infinite", + 14, + 21, + { + "value": "infinite" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 22, + 22, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 23, + 23, + null + ], + [ + "ident-token", + "and", + 24, + 26, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 28, + 28, + null + ], + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ], + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 40, + 40, + null + ], + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ], + [ + ")-token", + ")", + 51, + 51, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [ + [ + "whitespace-token", + " ", + 52, + 52, + null + ] + ] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0003.mjs b/packages/media-query-list-parser/test/cases/various/0003.mjs new file mode 100644 index 0000000000..2af154b337 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(resolution < infinite) and (infinite <= resolution) ', + 'various/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0004.expect.json b/packages/media-query-list-parser/test/cases/various/0004.expect.json new file mode 100644 index 0000000000..5288c94e4a --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0004.expect.json @@ -0,0 +1,367 @@ +[ + { + "type": "media-query-without-type", + "string": "(width < calc(50vw - 3rem))", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 18, + 18, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 20, + 20, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ] + ] + } + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ] + }, + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "function-token", + "calc(", + 9, + 13, + { + "value": "calc" + } + ], + [ + "dimension-token", + "50vw", + 14, + 17, + { + "value": 50, + "type": "integer", + "unit": "vw" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "-", + 19, + 19, + { + "value": "-" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "3rem", + 21, + 24, + { + "value": 3, + "type": "integer", + "unit": "rem" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 26, + 26, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0004.mjs b/packages/media-query-list-parser/test/cases/various/0004.mjs new file mode 100644 index 0000000000..62f73bf0a7 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(width < calc(50vw - 3rem))', + 'various/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0005.expect.json b/packages/media-query-list-parser/test/cases/various/0005.expect.json new file mode 100644 index 0000000000..a954c0d337 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0005.expect.json @@ -0,0 +1,186 @@ +[ + { + "type": "media-query-with-type", + "string": "screen and not (min-width: 300px)", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "ident-token", + "and", + 7, + 9, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "ident-token", + "not", + 11, + 13, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 14, + 14, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "min-width", + 16, + 24, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 25, + 25, + null + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "dimension-token", + "300px", + 27, + 31, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 15, + 15, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 32, + 32, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0005.mjs b/packages/media-query-list-parser/test/cases/various/0005.mjs new file mode 100644 index 0000000000..7c55c608d0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen and not (min-width: 300px)', + 'various/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0006.expect.json b/packages/media-query-list-parser/test/cases/various/0006.expect.json new file mode 100644 index 0000000000..4e7482d4b9 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0006.expect.json @@ -0,0 +1,43 @@ +[ + { + "type": "media-query-with-type", + "string": "only screen ", + "modifier": [ + [ + "ident-token", + "only", + 0, + 3, + { + "value": "only" + } + ] + ], + "mediaType": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ], + [ + "ident-token", + "screen", + 5, + 10, + { + "value": "screen" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0006.mjs b/packages/media-query-list-parser/test/cases/various/0006.mjs new file mode 100644 index 0000000000..2d9faf7585 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0006.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'only screen ', + 'various/0006', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/serialize/0001.mjs b/packages/media-query-list-parser/test/serialize/0001.mjs new file mode 100644 index 0000000000..d1f41f3fef --- /dev/null +++ b/packages/media-query-list-parser/test/serialize/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { newMediaFeatureBoolean, newMediaFeaturePlain } from '@csstools/media-query-list-parser'; +import { TokenType } from '@csstools/css-tokenizer'; + +assert.strictEqual( + newMediaFeaturePlain('min-width', [TokenType.Dimension, '300px', 0, 0, { value: 300, unit: 'px' }]).toString(), + '(min-width:300px)', +); + +assert.strictEqual( + newMediaFeatureBoolean('color').toString(), + '(color)', +); diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs new file mode 100644 index 0000000000..3184a4e503 --- /dev/null +++ b/packages/media-query-list-parser/test/test.mjs @@ -0,0 +1,35 @@ +import './cases/media-not/0001.mjs'; + +import './cases/mf-boolean/0001.mjs'; +import './cases/mf-boolean/0002.mjs'; +import './cases/mf-boolean/0003.mjs'; +import './cases/mf-boolean/0004.mjs'; +import './cases/mf-boolean/0005.mjs'; + +import './cases/mf-plain/0001.mjs'; +import './cases/mf-plain/0002.mjs'; +import './cases/mf-plain/0003.mjs'; +import './cases/mf-plain/0004.mjs'; +import './cases/mf-plain/0005.mjs'; + +import './cases/mf-range/0001.mjs'; +import './cases/mf-range/0002.mjs'; +import './cases/mf-range/0003.mjs'; +import './cases/mf-range/0004.mjs'; +import './cases/mf-range/0005.mjs'; +import './cases/mf-range/0006.mjs'; +import './cases/mf-range/0007.mjs'; + +import './cases/query-with-type/0001.mjs'; +import './cases/query-with-type/0002.mjs'; +import './cases/query-with-type/0003.mjs'; +import './cases/query-with-type/0004.mjs'; + +import './cases/various/0001.mjs'; +import './cases/various/0002.mjs'; +import './cases/various/0003.mjs'; +import './cases/various/0004.mjs'; +import './cases/various/0005.mjs'; +import './cases/various/0006.mjs'; + +import './serialize/0001.mjs'; diff --git a/packages/media-query-list-parser/test/util/run-test.mjs b/packages/media-query-list-parser/test/util/run-test.mjs new file mode 100644 index 0000000000..e1a747c7f2 --- /dev/null +++ b/packages/media-query-list-parser/test/util/run-test.mjs @@ -0,0 +1,25 @@ +import fs from 'fs'; +import path from 'path'; +import { parse } from '@csstools/media-query-list-parser'; + +export function runTest(source, testPath, assertEqual) { + const resultAST = parse(source); + const resultAST_JSON = JSON.stringify(resultAST, null, '\t'); + + if (process.env['REWRITE_EXPECTS'] === 'true') { + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.expect.json`), resultAST_JSON); + fs.writeFileSync(path.join(process.cwd(), `./test/cases/${testPath}.result.json`), resultAST_JSON); + } else { + const expectData = JSON.parse(fs.readFileSync(path.join(process.cwd(), `./test/cases/${testPath}.expect.json`)).toString()); + + assertEqual( + resultAST.map((x) => x.toString()).join(','), + expectData.map((x) => x.string).join(','), + ); + + assertEqual( + JSON.parse(resultAST_JSON), + expectData, + ); + } +} diff --git a/packages/media-query-list-parser/tsconfig.json b/packages/media-query-list-parser/tsconfig.json new file mode 100644 index 0000000000..e0d06239cc --- /dev/null +++ b/packages/media-query-list-parser/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "dist", + "declarationDir": "." + }, + "include": ["./src/**/*"], + "exclude": ["dist"], +} diff --git a/plugins/postcss-custom-media/.tape.mjs b/plugins/postcss-custom-media/.tape.mjs index ef9ef8086b..7dac6d2714 100644 --- a/plugins/postcss-custom-media/.tape.mjs +++ b/plugins/postcss-custom-media/.tape.mjs @@ -24,6 +24,9 @@ postcssTape(plugin)({ preserve: true } }, + 'nesting': { + message: 'works when nested' + }, 'not-processable': { message: 'only handles processable @custom-media rules' }, @@ -31,7 +34,8 @@ postcssTape(plugin)({ message: 'supports more obscure CSS' }, 'eof-1': { - message: 'handles EOF correctly (1)' + message: 'handles EOF correctly (1)', + warnings: 1, }, 'eof-2': { message: 'handles EOF correctly (2)', diff --git a/plugins/postcss-custom-media/package.json b/plugins/postcss-custom-media/package.json index dea2f6d012..39dc809f54 100644 --- a/plugins/postcss-custom-media/package.json +++ b/plugins/postcss-custom-media/package.json @@ -45,7 +45,8 @@ "dist" ], "dependencies": { - "@csstools/css-tokenizer": "^1.0.0" + "@csstools/css-tokenizer": "^1.0.0", + "@csstools/media-query-list-parser": "^1.0.0" }, "peerDependencies": { "postcss": "^8.4" diff --git a/plugins/postcss-custom-media/src/custom-media-from-root.ts b/plugins/postcss-custom-media/src/custom-media-from-root.ts index c7364a678d..964e69bc0b 100644 --- a/plugins/postcss-custom-media/src/custom-media-from-root.ts +++ b/plugins/postcss-custom-media/src/custom-media-from-root.ts @@ -1,12 +1,13 @@ +import { MediaQuery } from '@csstools/media-query-list-parser'; import type { ChildNode, Container, Document, Root as PostCSSRoot } from 'postcss'; import { isProcessableCustomMediaRule } from './is-processable-custom-media-rule'; import { removeCyclicReferences } from './toposort'; import { parseCustomMedia } from './transform-at-media/custom-media'; // return custom media from the css root, conditionally removing them -export default function getCustomMedia(root: PostCSSRoot, result, opts: { preserve?: boolean }): Map { +export default function getCustomMedia(root: PostCSSRoot, result, opts: { preserve?: boolean }): Map, falsy: Array }> { // initialize custom media - const customMedia: Map = new Map(); + const customMedia: Map, falsy: Array }> = new Map(); const customMediaGraph: Array<[string, string]> = []; root.walkAtRules((atRule) => { @@ -19,7 +20,7 @@ export default function getCustomMedia(root: PostCSSRoot, result, opts: { preser return; } - if (!parsed.truthy.trim()) { + if (parsed.truthy.length === 0) { return; } diff --git a/plugins/postcss-custom-media/src/index.ts b/plugins/postcss-custom-media/src/index.ts index 9e41dedee1..9ab51864f4 100644 --- a/plugins/postcss-custom-media/src/index.ts +++ b/plugins/postcss-custom-media/src/index.ts @@ -1,3 +1,4 @@ +import { MediaQuery } from '@csstools/media-query-list-parser'; import type { PluginCreator } from 'postcss'; import getCustomMedia from './custom-media-from-root'; import { transformAtMediaListTokens } from './transform-at-media/transform-at-media'; @@ -22,7 +23,7 @@ const creator: PluginCreator = (opts?: PluginOptions) => { return { postcssPlugin: 'postcss-custom-media', prepare() { - let customMedia = new Map(); + let customMedia: Map, falsy: Array }> = new Map(); return { Once: (root, { result }) => { diff --git a/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts index 02053ed77a..ba3947ccd6 100644 --- a/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts +++ b/plugins/postcss-custom-media/src/is-processable-custom-media-rule.ts @@ -17,10 +17,6 @@ export function isProcessableCustomMediaRule(atRule: AtRule): boolean { let parent: Container | Document = atRule.parent; while (parent) { - if (parent.type === 'rule') { - return false; - } - if (parent.type === 'atrule' && !allowedParentAtRules.has((parent as AtRule).name.toLowerCase())) { return false; } diff --git a/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts b/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts index 78d0c72b06..ec03674d19 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/always-true-or-false.ts @@ -4,11 +4,11 @@ import type { CSSToken } from '@csstools/css-tokenizer'; export const alwaysTrue: Array = [ [TokenType.Ident, 'max-color', 0, 0, { value: 'max-color' }], [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], + [TokenType.Number, '2147477350', 0, 0, { value: 2147477350, type: NumberType.Integer }], ]; export const neverTrue: Array = [ [TokenType.Ident, 'color', 0, 0, { value: 'color' }], [TokenType.Colon, ':', 0, 0, undefined], - [TokenType.Number, '2147477350', 0, 0, { value: 9999943, type: NumberType.Integer }], + [TokenType.Number, '2147477350', 0, 0, { value: 2147477350, type: NumberType.Integer }], ]; diff --git a/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts b/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts index 815e1dd30b..3b96058ad1 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/at-media-params-tokens.ts @@ -5,7 +5,8 @@ export function atMediaParamsTokens(params: string): Array { const t = tokenizer({ css: params, }, { - commentsAreTokens: true, onParseError: () => { + commentsAreTokens: true, + onParseError: () => { throw new Error(`Unable to parse media query "${params}"`); }, }); diff --git a/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts index c38e23404d..bd9de7806b 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/custom-media.ts @@ -1,10 +1,9 @@ -import { stringify, TokenType, TokenIdent } from '@csstools/css-tokenizer'; -import { topLevelCombinationKeywords } from './top-level-combination-keywords'; -import { splitMediaQueryList } from './split-media-query-list'; +import { cloneTokens, stringify, TokenIdent, TokenType } from '@csstools/css-tokenizer'; +import { parseFromTokens, MediaQuery } from '@csstools/media-query-list-parser'; +import { atMediaParamsTokens } from '../transform-at-media/at-media-params-tokens'; import { replaceTrueAndFalseTokens } from './true-and-false'; -import { atMediaParamsTokens } from './at-media-params-tokens'; -export function parseCustomMedia(params: string): { name: string, truthy: string, falsy: string, dependsOn: Array<[string, string]> } | false { +export function parseCustomMedia(params: string): { name: string, truthy: Array, falsy: Array, dependsOn: Array<[string, string]> } | false { const tokens = atMediaParamsTokens(params); const customMediaReferences: Set = new Set(); @@ -40,90 +39,29 @@ export function parseCustomMedia(params: string): { name: string, truthy: string } } - const list = splitMediaQueryList(remainder); - const truthyParts = []; - const falsyParts = []; - - MEDIA_QUERY_LIST_LOOP: - for (let i = 0; i < list.length; i++) { - const mediaQuery = replaceTrueAndFalseTokens(list[i]); - - const truthy = stringify(...mediaQuery); - - for (let j = 0; j < mediaQuery.length; j++) { - if (mediaQuery[j][0] === TokenType.Comment) { - continue; - } - if (mediaQuery[j][0] === TokenType.Whitespace) { - continue; - } - - if (mediaQuery[j][0] === TokenType.Ident) { - const identToken = mediaQuery[j] as TokenIdent; - if (identToken[4].value.toLowerCase() === 'not') { - truthyParts.push(truthy); - - const falsy = mediaQuery.slice(); - falsy.splice(j, 1); - - falsyParts.push(stringify(...falsy)); - continue MEDIA_QUERY_LIST_LOOP; - } - - if (identToken[4].value.toLowerCase() === 'only') { - mediaQuery[j][1] = 'not'; - mediaQuery[j][4].value = 'not'; - - truthyParts.push(truthy); - falsyParts.push(stringify(...mediaQuery)); - continue MEDIA_QUERY_LIST_LOOP; - } - } - - const falsy = mediaQuery.slice(); - - const falsyRemainder = falsy.slice(j); - const falsyRemainderKeywords = topLevelCombinationKeywords(falsyRemainder); - falsyRemainderKeywords.delete('and'); - - if (falsyRemainderKeywords.size > 0) { - falsy.splice(j, 0, - [TokenType.Ident, 'not', 0, 0, { value: 'not' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.Ident, 'all', 0, 0, { value: 'all' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.Ident, 'and', 0, 0, { value: 'and' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.OpenParen, '(', 0, 0, undefined], - ); - falsy.push( - [TokenType.CloseParen, ')', 0, 0, undefined], - ); - } else { - falsy.splice(j, 0, - [TokenType.Ident, 'not', 0, 0, { value: 'not' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.Ident, 'all', 0, 0, { value: 'all' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - [TokenType.Ident, 'and', 0, 0, { value: 'and' }], - [TokenType.Whitespace, ' ', 0, 0, undefined], - ); - } - - truthyParts.push(truthy); - falsyParts.push(stringify(...falsy)); - continue MEDIA_QUERY_LIST_LOOP; - } - - truthyParts.push(truthy); - falsyParts.push('not all'); - continue MEDIA_QUERY_LIST_LOOP; + remainder = replaceTrueAndFalseTokens(remainder); + + const mediaQueryListTruthy = parseFromTokens(cloneTokens(remainder), { + preserveInvalidMediaQueries: true, + onParseError: () => { + throw new Error(`Unable to parse media query "${stringify(...remainder)}"`); + }, + }); + const mediaQueryListFalsy = parseFromTokens(cloneTokens(remainder), { + preserveInvalidMediaQueries: true, + onParseError: () => { + throw new Error(`Unable to parse media query "${stringify(...remainder) }"`); + }, + }); + + for (let i = 0; i < mediaQueryListFalsy.length; i++) { + mediaQueryListFalsy[i] = mediaQueryListFalsy[i].negateQuery(); } return { name: name, - truthy: truthyParts.map((x) => x.trim()).join(','), - falsy: falsyParts.map((x) => x.trim()).join(','), + truthy: mediaQueryListTruthy, + falsy: mediaQueryListFalsy, dependsOn: Array.from(customMediaReferences).map((x) => { return [x, name]; }), diff --git a/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts b/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts deleted file mode 100644 index ae43ab3d2c..0000000000 --- a/plugins/postcss-custom-media/src/transform-at-media/split-media-query-list.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { TokenType } from '@csstools/css-tokenizer'; -import type { CSSToken } from '@csstools/css-tokenizer'; - -export function splitMediaQueryList(tokens: Array): Array> { - let parenDepth = 0; - let squareDepth = 0; - let curlyDepth = 0; - let depth = 0; - - const listItems = []; - let lastSliceIndex = 0; - - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.OpenParen || tokens[i][0] === TokenType.Function) { - depth++; - parenDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseParen && parenDepth > 0) { - depth--; - parenDepth--; - continue; - } - - if (tokens[i][0] === TokenType.OpenCurly) { - depth++; - curlyDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseCurly && curlyDepth > 0) { - depth--; - curlyDepth--; - continue; - } - - if (tokens[i][0] === TokenType.OpenSquare) { - depth++; - squareDepth++; - continue; - } - if (tokens[i][0] === TokenType.CloseSquare && squareDepth > 0) { - depth--; - squareDepth--; - continue; - } - - if (tokens[i][0] === TokenType.Comma && depth === 0) { - listItems.push(tokens.slice(lastSliceIndex, i)); - lastSliceIndex = i + 1; - continue; - } - } - - if (lastSliceIndex === 0) { - return [tokens]; - } - - listItems.push(tokens.slice(lastSliceIndex)); - return listItems; -} diff --git a/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts b/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts deleted file mode 100644 index b893b56061..0000000000 --- a/plugins/postcss-custom-media/src/transform-at-media/top-level-combination-keywords.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { TokenType, TokenIdent } from '@csstools/css-tokenizer'; -import type { CSSToken } from '@csstools/css-tokenizer'; - -export function topLevelCombinationKeywords(tokens: Array): Set { - const keywords: Set = new Set(); - - for (let i = 0; i < tokens.length; i++) { - switch (tokens[i][0]) { - case TokenType.Function: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenParen: - case TokenType.Function: - depth++; - break; - case TokenType.CloseParen: - depth--; - break; - } - } - break; - } - - case TokenType.OpenCurly: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenCurly: - depth++; - break; - case TokenType.CloseCurly: - depth--; - break; - } - } - break; - } - - case TokenType.OpenSquare: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenSquare: - depth++; - break; - case TokenType.CloseSquare: - depth--; - break; - } - } - break; - } - - case TokenType.Ident: { - const identToken = tokens[i] as TokenIdent; - switch (identToken[4].value.toLowerCase()) { - case 'not': - keywords.add('not'); - break; - case 'and': - keywords.add('and'); - break; - case 'or': - keywords.add('or'); - break; - } - - break; - } - } - } - - return keywords; -} diff --git a/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts b/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts index a02074b7ae..65bea992a3 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/transform-at-media.ts @@ -1,19 +1,35 @@ -import { stringify, TokenType, TokenIdent } from '@csstools/css-tokenizer'; -import type { CSSToken } from '@csstools/css-tokenizer'; -import { splitMediaQueryList } from './split-media-query-list'; import { alwaysTrue, neverTrue } from './always-true-or-false'; -import { atMediaParamsTokens } from './at-media-params-tokens'; +import { isGeneralEnclosed, isMediaAnd, isMediaConditionList, isMediaFeature, isMediaFeatureBoolean, isMediaNot, isMediaOr, isMediaQueryInvalid, isMediaQueryWithType, MediaQuery, newMediaFeaturePlain, parse } from '@csstools/media-query-list-parser'; -export function transformAtMediaListTokens(params: string, replacements: Map): Array<{ replaceWith: string, encapsulateWith?: string }> { - const mediaQueries = splitMediaQueryList(atMediaParamsTokens(params)); +export function transformAtMediaListTokens(params: string, replacements: Map, falsy: Array }>): Array<{ replaceWith: string, encapsulateWith?: string }> { + const mediaQueries = parse(params, { + preserveInvalidMediaQueries: true, onParseError: () => { + throw new Error(`Unable to parse media query "${params}"`); + }, + }); - const stringQueries = mediaQueries.map((x) => stringify(...x)); + const stringQueries = mediaQueries.map((x) => x.toString()); for (let i = 0; i < mediaQueries.length; i++) { const mediaQuery = mediaQueries[i]; const original = stringQueries[i]; - const transformedQuery = transformAtMediaTokens(mediaQuery, replacements); + { + const transformedQuery = transformSimpleMediaQuery(mediaQuery, replacements); + if (transformedQuery && transformedQuery.replaceWith !== original) { + return stringQueries.map((query, index) => { + if (index === i) { + return transformedQuery; + } + + return { + replaceWith: query, + }; + }); + } + } + + const transformedQuery = transformComplexMediaQuery(mediaQuery, replacements); if (!transformedQuery || transformedQuery.length === 0) { continue; } @@ -36,192 +52,114 @@ export function transformAtMediaListTokens(params: string, replacements: Map, replacements: Map): Array<{replaceWith: string, encapsulateWith?: string}> { - const tokenTypes: Set = new Set(); - let identCounter = 0; - for (let i = 0; i < tokens.length; i++) { - tokenTypes.add(tokens[i][0]); - if (tokens[i][0] === TokenType.Ident) { - identCounter++; - } +export function transformSimpleMediaQuery(mediaQuery: MediaQuery, replacements: Map, falsy: Array }>): { replaceWith: string, encapsulateWith?: string } | null { + if (!mediaQueryIsSimple(mediaQuery)) { + return null; } - tokenTypes.delete(TokenType.Comment); - tokenTypes.delete(TokenType.Whitespace); - tokenTypes.delete(TokenType.OpenParen); - tokenTypes.delete(TokenType.CloseParen); - tokenTypes.delete(TokenType.Ident); - - // replacement slot is in a simple @media query : - // - @media (--custom-mq) { ... } - // - @media ((--custom-mq)) { ... } - if (tokenTypes.size == 0 && identCounter === 1) { - let candidate: Array<{ replaceWith: string, encapsulateWith?: string }> | null = null; - - let parenDepth = 0; - for (let i = 0; i < tokens.length; i++) { - if (tokens[i][0] === TokenType.Whitespace || tokens[i][0] === TokenType.Comment) { - continue; - } - - if (tokens[i][0] === TokenType.CloseParen) { - if (candidate) { - return candidate; - } - } - - candidate = null; - - if (tokens[i][0] === TokenType.CloseParen) { - parenDepth--; - continue; - } - if (tokens[i][0] === TokenType.OpenParen) { - parenDepth++; - continue; - } - - if (tokens[i][0] === TokenType.Ident && parenDepth > 0) { - const identToken = tokens[i] as TokenIdent; + let candidate: { replaceWith: string, encapsulateWith?: string } | null = null; - if (replacements.has(identToken[4].value)) { - candidate = [{ - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - replaceWith: replacements.get(identToken[4].value)!.truthy, - }]; - } - } + mediaQuery.walk((entry) => { + const node = entry.node; + if (!isMediaFeatureBoolean(node)) { + return; } - return []; - } - - // replacement slot is in a comples @media query : - // - @media not (--custom-mq) { ... } - // - @media ((--custom-mq-1) or (--custom-mq-2) or (not (--custom-mq-3))) { ... } - for (let i = 0; i < tokens.length; i++) { - switch (tokens[i][0]) { - case TokenType.Function: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } - - switch (tokens[i][0]) { - case TokenType.OpenParen: - case TokenType.Function: - depth++; - break; - case TokenType.CloseParen: - depth--; - break; - } - } - break; - } + const name = node.getName(); + if (!name.startsWith('--')) { + return false; + } - case TokenType.OpenCurly: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } + const replacement = replacements.get(name); + if (replacement) { + candidate = { + replaceWith: replacement.truthy.map((x) => x.toString().trim()).join(','), + }; - switch (tokens[i][0]) { - case TokenType.OpenCurly: - depth++; - break; - case TokenType.CloseCurly: - depth--; - break; - } - } - break; - } + return false; + } + }); - case TokenType.OpenSquare: { - let depth = 1; - while (depth !== 0) { - i++; - if (!tokens[i] || tokens[i][0] === TokenType.EOF) { - throw new Error('unexpected EOF'); - } + return candidate; +} - switch (tokens[i][0]) { - case TokenType.OpenSquare: - depth++; - break; - case TokenType.CloseSquare: - depth--; - break; - } - } - break; - } +export function transformComplexMediaQuery(mediaQuery: MediaQuery, replacements: Map, falsy: Array }>): Array<{ replaceWith: string, encapsulateWith?: string }> { + let candidate: Array<{ replaceWith: string, encapsulateWith?: string }> = []; - case TokenType.Ident: { - const identToken = tokens[i] as TokenIdent; + mediaQuery.walk((entry) => { + const node = entry.node; + if (!isMediaFeatureBoolean(node)) { + return; + } - if (!replacements.has(identToken[4].value)) { - break; - } + const parent = entry.parent; + if (!isMediaFeature(parent)) { + return; + } - let isValid = true; - for (let p = i-1; p>= 0; p--) { - if (tokens[p][0] === TokenType.Comment || tokens[p][0] === TokenType.Whitespace) { - continue; - } + const name = node.getName(); + if (!name.startsWith('--')) { + return false; + } - if (tokens[p][0] === TokenType.OpenParen) { - break; - } + const replacement = replacements.get(name); + if (replacement) { + const replaceWithTrue = newMediaFeaturePlain( + alwaysTrue[0][4].value as string, + alwaysTrue[2], + ); + + parent.feature = replaceWithTrue.feature; + const replaceWithTrueString = mediaQuery.toString(); + + const replaceWithFalse = newMediaFeaturePlain( + neverTrue[0][4].value as string, + neverTrue[2], + ); + + parent.feature = replaceWithFalse.feature; + const replaceWithFalseString = mediaQuery.toString(); + + candidate = [ + { + replaceWith: replaceWithTrueString, + encapsulateWith: replacement.truthy.map((x) => x.toString().trim()).join(','), + }, + { + replaceWith: replaceWithFalseString, + encapsulateWith: replacement.falsy.map((x) => x.toString().trim()).join(','), + }, + ]; + + return false; + } + }); - isValid = false; - break; - } + return candidate; +} - for (let n = i + 1; n < tokens.length; n++) { - if (tokens[n][0] === TokenType.Comment || tokens[n][0] === TokenType.Whitespace) { - continue; - } +function mediaQueryIsSimple(mediaQuery: MediaQuery): boolean { + if (isMediaQueryInvalid(mediaQuery)) { + return false; + } - if (tokens[n][0] === TokenType.CloseParen) { - break; - } + if (isMediaQueryWithType(mediaQuery)) { + return false; + } - isValid = false; - break; - } - - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - const replacement = replacements.get(identToken[4].value)!; - - if (isValid) { - const replaceWithTrue = tokens.slice(); - replaceWithTrue.splice(i, 1, ...alwaysTrue); - - const replaceWithFalse = tokens.slice(); - replaceWithFalse.splice(i, 1, ...neverTrue); - - return [ - { - replaceWith: stringify(...replaceWithTrue), - encapsulateWith: replacement.truthy, - }, - { - replaceWith: stringify(...replaceWithFalse), - encapsulateWith: replacement.falsy, - }, - ]; - } - - break; - } + let isSimple = true; + mediaQuery.walk((entry) => { + if ( + isMediaAnd(entry.node) || + isMediaOr(entry.node) || + isMediaNot(entry.node) || + isMediaConditionList(entry.node) || + isGeneralEnclosed(entry.node) + ) { + isSimple = false; + return false; } - } + }); - return []; + return isSimple; } diff --git a/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts b/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts index 46a8ec636a..ebb56a4600 100644 --- a/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts +++ b/plugins/postcss-custom-media/src/transform-at-media/true-and-false.ts @@ -52,6 +52,7 @@ export function replaceTrueAndFalseTokens(tokens: Array): Array): Array Date: Sun, 6 Nov 2022 10:31:12 +0100 Subject: [PATCH 53/59] fixes --- .../src/util/node-ancestry.ts | 8 +- packages/media-query-list-parser/src/index.ts | 2 +- .../src/nodes/media-feature-comparison.ts | 2 +- .../src/nodes/media-feature-range.ts | 49 +- .../test/cases/mf-range/0001.expect.json | 560 +++++++++++++----- .../test/cases/mf-range/0008.expect.json | 110 ++++ .../test/cases/mf-range/0008.mjs | 13 + .../test/cases/mf-range/0009.expect.json | 119 ++++ .../test/cases/mf-range/0009.mjs | 13 + .../test/cases/mf-range/0010.expect.json | 110 ++++ .../test/cases/mf-range/0010.mjs | 13 + .../test/cases/mf-range/0011.expect.json | 126 ++++ .../test/cases/mf-range/0011.mjs | 13 + .../test/cases/mf-range/0012.expect.json | 92 +++ .../test/cases/mf-range/0012.mjs | 13 + .../media-query-list-parser/test/test.mjs | 61 +- 16 files changed, 1131 insertions(+), 173 deletions(-) create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0008.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0008.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0009.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0009.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0010.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0010.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0011.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0011.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0012.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0012.mjs diff --git a/packages/css-parser-algorithms/src/util/node-ancestry.ts b/packages/css-parser-algorithms/src/util/node-ancestry.ts index b6e3403da7..6a908ee6ea 100644 --- a/packages/css-parser-algorithms/src/util/node-ancestry.ts +++ b/packages/css-parser-algorithms/src/util/node-ancestry.ts @@ -1,9 +1,9 @@ -export interface walkable { - walk(cb: (entry: { node: Array | T, parent: U }, index: number | string) => boolean | void) +export interface walkable { + walk(cb: (entry: { node: Array | unknown, parent: unknown }, index: number | string) => boolean | void) } -export function gatherNodeAncestry(node: walkable) { - const ancestry: Map = new Map(); +export function gatherNodeAncestry(node: walkable) { + const ancestry: Map = new Map(); node.walk((entry) => { if (Array.isArray(entry.node)) { diff --git a/packages/media-query-list-parser/src/index.ts b/packages/media-query-list-parser/src/index.ts index b87eef2714..ed02df1531 100644 --- a/packages/media-query-list-parser/src/index.ts +++ b/packages/media-query-list-parser/src/index.ts @@ -34,7 +34,7 @@ export { MediaFeatureBoolean } from './nodes/media-feature-boolean'; export { MediaFeatureName } from './nodes/media-feature-name'; export { MediaFeaturePlain } from './nodes/media-feature-plain'; export { MediaFeatureRange, MediaFeatureRangeNameValue, MediaFeatureRangeValueName, MediaFeatureRangeValueNameValue } from './nodes/media-feature-range'; -export { MediaFeatureValue } from './nodes/media-feature-value'; +export { MediaFeatureValue, matchesRatio, matchesRatioExactly } from './nodes/media-feature-value'; export { MediaInParens } from './nodes/media-in-parens'; export { MediaNot } from './nodes/media-not'; export { MediaOr } from './nodes/media-or'; diff --git a/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts index 580a5dce24..795ae44af6 100644 --- a/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts +++ b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts @@ -26,7 +26,7 @@ export function matchesComparison(componentValues: Array): false const token = componentValue.value as CSSToken; if (token[0] === TokenType.Delim) { if (token[4].value === MediaFeatureEQ.EQ) { - if (firstTokenIndex) { + if (firstTokenIndex !== -1) { return [firstTokenIndex, i]; } diff --git a/packages/media-query-list-parser/src/nodes/media-feature-range.ts b/packages/media-query-list-parser/src/nodes/media-feature-range.ts index 970a78c32f..40c07e3c05 100644 --- a/packages/media-query-list-parser/src/nodes/media-feature-range.ts +++ b/packages/media-query-list-parser/src/nodes/media-feature-range.ts @@ -1,6 +1,6 @@ import { ComponentValue, ComponentValueType, TokenNode } from '@csstools/css-parser-algorithms'; import { CSSToken, stringify, TokenDelim, TokenType } from '@csstools/css-tokenizer'; -import { comparisonFromTokens, matchesComparison } from './media-feature-comparison'; +import { comparisonFromTokens, matchesComparison, MediaFeatureEQ, MediaFeatureGT, MediaFeatureLT } from './media-feature-comparison'; import { MediaFeatureName, parseMediaFeatureName } from './media-feature-name'; import { MediaFeatureValue, MediaFeatureValueWalkerEntry, MediaFeatureValueWalkerParent, parseMediaFeatureValue } from './media-feature-value'; import { NodeType } from '../util/node-type'; @@ -404,6 +404,53 @@ export function parseMediaFeatureRange(componentValues: Array) { return false; } + // https://www.w3.org/TR/mediaqueries-5/#mq-range-context + // Only certain comparison operators are allowed and only in certain combinations. + { + const comparisonOneCheck = comparisonFromTokens(comparisonTokensOne); + if ( + comparisonOneCheck === false || + comparisonOneCheck === MediaFeatureEQ.EQ + ) { + return false; + } + const comparisonTwoCheck = comparisonFromTokens(comparisonTokensTwo); + if ( + comparisonTwoCheck === false || + comparisonTwoCheck === MediaFeatureEQ.EQ + ) { + return false; + } + + if ( + ( + comparisonOneCheck === MediaFeatureLT.LT || + comparisonOneCheck === MediaFeatureLT.LT_OR_EQ + ) + && + ( + comparisonTwoCheck === MediaFeatureGT.GT || + comparisonTwoCheck === MediaFeatureGT.GT_OR_EQ + ) + ) { + return false; + } + + if ( + ( + comparisonOneCheck === MediaFeatureGT.GT || + comparisonOneCheck === MediaFeatureGT.GT_OR_EQ + ) + && + ( + comparisonTwoCheck === MediaFeatureLT.LT || + comparisonTwoCheck === MediaFeatureLT.LT_OR_EQ + ) + ) { + return false; + } + } + return new MediaFeatureRangeValueNameValue( nameB, valueA, diff --git a/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json index 28cb45f065..11eadf3af1 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json +++ b/packages/media-query-list-parser/test/cases/mf-range/0001.expect.json @@ -7,150 +7,434 @@ "media": { "type": "media-in-parens", "media": { - "type": "general-enclosed", - "tokens": [ + "type": "media-feature", + "feature": { + "type": "mf-range-value-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "width", + 8, + 12, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ] + ] + }, + "valueOne": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "20px", + 1, + 4, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "20px", + 1, + 4, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null + ] + ] + }, + "valueTwo": { + "type": "mf-value", + "value": { + "type": "function", + "name": "calc", + "tokens": [ + [ + "function-token", + "calc(", + 17, + 21, + { + "value": "calc" + } + ], + [ + "dimension-token", + "20px", + 22, + 25, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "*", + 27, + 27, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "5", + 29, + 29, + { + "value": 5, + "type": "integer" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "20px", + 22, + 25, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "*", + 27, + 27, + { + "value": "*" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 28, + 28, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "number-token", + "5", + 29, + 29, + { + "value": 5, + "type": "integer" + } + ] + ] + } + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "function-token", + "calc(", + 17, + 21, + { + "value": "calc" + } + ], + [ + "dimension-token", + "20px", + 22, + 25, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "*", + 27, + 27, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "5", + 29, + 29, + { + "value": 5, + "type": "integer" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "20px", + 1, + 4, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null + ], + [ + "delim-token", + "<", + 6, + 6, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "width", + 8, + 12, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "delim-token", + "<", + 14, + 14, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 15, + 15, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "function-token", + "calc(", + 17, + 21, + { + "value": "calc" + } + ], + [ + "dimension-token", + "20px", + 22, + 25, + { + "value": 20, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ], + [ + "delim-token", + "*", + 27, + 27, + { + "value": "*" + } + ], + [ + "whitespace-token", + " ", + 28, + 28, + null + ], + [ + "number-token", + "5", + 29, + 29, + { + "value": 5, + "type": "integer" + } + ], + [ + ")-token", + ")", + 30, + 30, + null + ] + ] + }, + "before": [ [ "(-token", "(", 0, 0, null - ], - [ - "dimension-token", - "20px", - 1, - 4, - { - "value": 20, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 5, - 5, - null - ], - [ - "delim-token", - "<", - 6, - 6, - { - "value": "<" - } - ], - [ - "whitespace-token", - " ", - 7, - 7, - null - ], - [ - "ident-token", - "width", - 8, - 12, - { - "value": "width" - } - ], - [ - "whitespace-token", - " ", - 13, - 13, - null - ], - [ - "delim-token", - "<", - 14, - 14, - { - "value": "<" - } - ], - [ - "delim-token", - "=", - 15, - 15, - { - "value": "=" - } - ], - [ - "whitespace-token", - " ", - 16, - 16, - null - ], - [ - "function-token", - "calc(", - 17, - 21, - { - "value": "calc" - } - ], - [ - "dimension-token", - "20px", - 22, - 25, - { - "value": 20, - "type": "integer", - "unit": "px" - } - ], - [ - "whitespace-token", - " ", - 26, - 26, - null - ], - [ - "delim-token", - "*", - 27, - 27, - { - "value": "*" - } - ], - [ - "whitespace-token", - " ", - 28, - 28, - null - ], - [ - "number-token", - "5", - 29, - 29, - { - "value": 5, - "type": "integer" - } - ], - [ - ")-token", - ")", - 30, - 30, - null - ], + ] + ], + "after": [ [ ")-token", ")", diff --git a/packages/media-query-list-parser/test/cases/mf-range/0008.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0008.expect.json new file mode 100644 index 0000000000..7609cc506b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0008.expect.json @@ -0,0 +1,110 @@ +[ + { + "type": "media-query-without-type", + "string": "(1000px > height < 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "delim-token", + "<", + 17, + 17, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "dimension-token", + "100px", + 19, + 23, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24, + 24, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0008.mjs b/packages/media-query-list-parser/test/cases/mf-range/0008.mjs new file mode 100644 index 0000000000..f6e3a7c143 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0008.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(1000px > height < 100px)', + 'mf-range/0008', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0009.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0009.expect.json new file mode 100644 index 0000000000..67cfa71114 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0009.expect.json @@ -0,0 +1,119 @@ +[ + { + "type": "media-query-without-type", + "string": "(1000px > height <= 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "delim-token", + "<", + 17, + 17, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 18, + 18, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 19, + 19, + null + ], + [ + "dimension-token", + "100px", + 20, + 24, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 25, + 25, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0009.mjs b/packages/media-query-list-parser/test/cases/mf-range/0009.mjs new file mode 100644 index 0000000000..7f69bc9854 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0009.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(1000px > height <= 100px)', + 'mf-range/0009', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0010.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0010.expect.json new file mode 100644 index 0000000000..ca2e475cb2 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0010.expect.json @@ -0,0 +1,110 @@ +[ + { + "type": "media-query-without-type", + "string": "(1000px > height = 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "delim-token", + "=", + 17, + 17, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "dimension-token", + "100px", + 19, + 23, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 24, + 24, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0010.mjs b/packages/media-query-list-parser/test/cases/mf-range/0010.mjs new file mode 100644 index 0000000000..36714065f4 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0010.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(1000px > height = 100px)', + 'mf-range/0010', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0011.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0011.expect.json new file mode 100644 index 0000000000..d78ab5dcd2 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0011.expect.json @@ -0,0 +1,126 @@ +[ + { + "type": "media-query-without-type", + "string": "(1000px > height > = 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "dimension-token", + "1000px", + 1, + 6, + { + "value": 1000, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "height", + 10, + 15, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ], + [ + "delim-token", + ">", + 17, + 17, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 18, + 18, + null + ], + [ + "delim-token", + "=", + 19, + 19, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 20, + 20, + null + ], + [ + "dimension-token", + "100px", + 21, + 25, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 26, + 26, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0011.mjs b/packages/media-query-list-parser/test/cases/mf-range/0011.mjs new file mode 100644 index 0000000000..4e2b8740c4 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0011.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(1000px > height > = 100px)', + 'mf-range/0011', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0012.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0012.expect.json new file mode 100644 index 0000000000..945713f415 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0012.expect.json @@ -0,0 +1,92 @@ +[ + { + "type": "media-query-without-type", + "string": "(height > = 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "height", + 1, + 6, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "delim-token", + "=", + 10, + 10, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ], + [ + "dimension-token", + "100px", + 12, + 16, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 17, + 17, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0012.mjs b/packages/media-query-list-parser/test/cases/mf-range/0012.mjs new file mode 100644 index 0000000000..52274de225 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0012.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(height > = 100px)', + 'mf-range/0012', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index 3184a4e503..e8f11b365d 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -1,35 +1,40 @@ -import './cases/media-not/0001.mjs'; +// import './cases/media-not/0001.mjs'; -import './cases/mf-boolean/0001.mjs'; -import './cases/mf-boolean/0002.mjs'; -import './cases/mf-boolean/0003.mjs'; -import './cases/mf-boolean/0004.mjs'; -import './cases/mf-boolean/0005.mjs'; +// import './cases/mf-boolean/0001.mjs'; +// import './cases/mf-boolean/0002.mjs'; +// import './cases/mf-boolean/0003.mjs'; +// import './cases/mf-boolean/0004.mjs'; +// import './cases/mf-boolean/0005.mjs'; -import './cases/mf-plain/0001.mjs'; -import './cases/mf-plain/0002.mjs'; -import './cases/mf-plain/0003.mjs'; -import './cases/mf-plain/0004.mjs'; -import './cases/mf-plain/0005.mjs'; +// import './cases/mf-plain/0001.mjs'; +// import './cases/mf-plain/0002.mjs'; +// import './cases/mf-plain/0003.mjs'; +// import './cases/mf-plain/0004.mjs'; +// import './cases/mf-plain/0005.mjs'; import './cases/mf-range/0001.mjs'; -import './cases/mf-range/0002.mjs'; -import './cases/mf-range/0003.mjs'; -import './cases/mf-range/0004.mjs'; -import './cases/mf-range/0005.mjs'; -import './cases/mf-range/0006.mjs'; -import './cases/mf-range/0007.mjs'; +// import './cases/mf-range/0002.mjs'; +// import './cases/mf-range/0003.mjs'; +// import './cases/mf-range/0004.mjs'; +// import './cases/mf-range/0005.mjs'; +// import './cases/mf-range/0006.mjs'; +// import './cases/mf-range/0007.mjs'; +// import './cases/mf-range/0008.mjs'; +// import './cases/mf-range/0009.mjs'; +// import './cases/mf-range/0010.mjs'; +// import './cases/mf-range/0011.mjs'; +// import './cases/mf-range/0012.mjs'; -import './cases/query-with-type/0001.mjs'; -import './cases/query-with-type/0002.mjs'; -import './cases/query-with-type/0003.mjs'; -import './cases/query-with-type/0004.mjs'; +// import './cases/query-with-type/0001.mjs'; +// import './cases/query-with-type/0002.mjs'; +// import './cases/query-with-type/0003.mjs'; +// import './cases/query-with-type/0004.mjs'; -import './cases/various/0001.mjs'; -import './cases/various/0002.mjs'; -import './cases/various/0003.mjs'; -import './cases/various/0004.mjs'; -import './cases/various/0005.mjs'; -import './cases/various/0006.mjs'; +// import './cases/various/0001.mjs'; +// import './cases/various/0002.mjs'; +// import './cases/various/0003.mjs'; +// import './cases/various/0004.mjs'; +// import './cases/various/0005.mjs'; +// import './cases/various/0006.mjs'; -import './serialize/0001.mjs'; +// import './serialize/0001.mjs'; From d2fe1cfa16400f73872636088ca11917f90c4e0a Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sun, 6 Nov 2022 12:21:57 +0100 Subject: [PATCH 54/59] fixes --- .../src/nodes/media-feature-comparison.ts | 4 +- .../src/nodes/media-feature-range.ts | 1 + .../test/cases/mf-range/0005.expect.json | 21 ++- .../test/cases/mf-range/0006.expect.json | 21 ++- .../test/cases/mf-range/0013.expect.json | 153 ++++++++++++++++ .../test/cases/mf-range/0013.mjs | 13 ++ .../test/cases/mf-range/0014.expect.json | 153 ++++++++++++++++ .../test/cases/mf-range/0014.mjs | 13 ++ .../test/cases/various/0003.expect.json | 170 ++++++++++++------ .../media-query-list-parser/test/test.mjs | 68 +++---- 10 files changed, 513 insertions(+), 104 deletions(-) create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0013.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0013.mjs create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0014.expect.json create mode 100644 packages/media-query-list-parser/test/cases/mf-range/0014.mjs diff --git a/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts index 795ae44af6..60520ca741 100644 --- a/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts +++ b/packages/media-query-list-parser/src/nodes/media-feature-comparison.ts @@ -3,12 +3,12 @@ import { CSSToken, TokenDelim, TokenType } from '@csstools/css-tokenizer'; export enum MediaFeatureLT { LT = '<', - LT_OR_EQ = '< =', + LT_OR_EQ = '<=', } export enum MediaFeatureGT { GT = '>', - GT_OR_EQ = '> =', + GT_OR_EQ = '>=', } export enum MediaFeatureEQ { diff --git a/packages/media-query-list-parser/src/nodes/media-feature-range.ts b/packages/media-query-list-parser/src/nodes/media-feature-range.ts index 40c07e3c05..7f9f5aff4d 100644 --- a/packages/media-query-list-parser/src/nodes/media-feature-range.ts +++ b/packages/media-query-list-parser/src/nodes/media-feature-range.ts @@ -320,6 +320,7 @@ export function parseMediaFeatureRange(componentValues: Array) { comparison[0] + i, comparison[1] + i, ]; + i += comparison[1]; } else { comparisonTwo = [ comparison[0] + i, diff --git a/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json index 716ff79b43..58e7ee127b 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json +++ b/packages/media-query-list-parser/test/cases/mf-range/0005.expect.json @@ -1,7 +1,7 @@ [ { "type": "media-query-without-type", - "string": "(widthundefined= 50px)", + "string": "(width = 50px)", "media": { "type": "media-condition", "media": { @@ -22,6 +22,13 @@ { "value": "width" } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null ] ] }, @@ -75,13 +82,11 @@ } ], [ - [ - "whitespace-token", - " ", - 6, - 6, - null - ] + "whitespace-token", + " ", + 6, + 6, + null ], [ "delim-token", diff --git a/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json index a91c89edc9..dc8669cc72 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json +++ b/packages/media-query-list-parser/test/cases/mf-range/0006.expect.json @@ -1,7 +1,7 @@ [ { "type": "media-query-without-type", - "string": "(50pxundefined= width)", + "string": "(50px = width)", "media": { "type": "media-condition", "media": { @@ -61,6 +61,13 @@ "type": "integer", "unit": "px" } + ], + [ + "whitespace-token", + " ", + 5, + 5, + null ] ] }, @@ -77,13 +84,11 @@ } ], [ - [ - "whitespace-token", - " ", - 5, - 5, - null - ] + "whitespace-token", + " ", + 5, + 5, + null ], [ "delim-token", diff --git a/packages/media-query-list-parser/test/cases/mf-range/0013.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0013.expect.json new file mode 100644 index 0000000000..2cf2497d3e --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0013.expect.json @@ -0,0 +1,153 @@ +[ + { + "type": "media-query-without-type", + "string": "(height >= 100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "height", + "tokens": [ + [ + "ident-token", + "height", + 1, + 6, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "100px", + 11, + 15, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "dimension-token", + "100px", + 11, + 15, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "height", + 1, + 6, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "delim-token", + ">", + 8, + 8, + { + "value": ">" + } + ], + [ + "delim-token", + "=", + 9, + 9, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "dimension-token", + "100px", + 11, + 15, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 16, + 16, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0013.mjs b/packages/media-query-list-parser/test/cases/mf-range/0013.mjs new file mode 100644 index 0000000000..ea88732f72 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0013.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(height >= 100px)', + 'mf-range/0013', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0014.expect.json b/packages/media-query-list-parser/test/cases/mf-range/0014.expect.json new file mode 100644 index 0000000000..4f0b3df0f7 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0014.expect.json @@ -0,0 +1,153 @@ +[ + { + "type": "media-query-without-type", + "string": "(100px <= width)", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-value-name", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "width", + 10, + 14, + { + "value": "width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "100px", + 1, + 5, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "100px", + 1, + 5, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + "tokens": [ + [ + "dimension-token", + "100px", + 1, + 5, + { + "value": 100, + "type": "integer", + "unit": "px" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 8, + 8, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 9, + 9, + null + ], + [ + "ident-token", + "width", + 10, + 14, + { + "value": "width" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 15, + 15, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0014.mjs b/packages/media-query-list-parser/test/cases/mf-range/0014.mjs new file mode 100644 index 0000000000..07057e0692 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/mf-range/0014.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(100px <= width)', + 'mf-range/0014', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0003.expect.json b/packages/media-query-list-parser/test/cases/various/0003.expect.json index 227fdaa805..16e2949337 100644 --- a/packages/media-query-list-parser/test/cases/various/0003.expect.json +++ b/packages/media-query-list-parser/test/cases/various/0003.expect.json @@ -166,65 +166,129 @@ "media": { "type": "media-in-parens", "media": { - "type": "general-enclosed", - "tokens": [ + "type": "media-feature", + "feature": { + "type": "mf-range-value-name", + "name": { + "type": "mf-name", + "name": "resolution", + "tokens": [ + [ + "whitespace-token", + " ", + 40, + 40, + null + ], + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ] + ] + }, + "tokens": [ + [ + "ident-token", + "infinite", + 29, + 36, + { + "value": "infinite" + } + ], + [ + "whitespace-token", + " ", + 37, + 37, + null + ], + [ + "delim-token", + "<", + 38, + 38, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 39, + 39, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 40, + 40, + null + ], + [ + "ident-token", + "resolution", + 41, + 50, + { + "value": "resolution" + } + ] + ] + }, + "before": [ [ "(-token", "(", 28, 28, null - ], - [ - "ident-token", - "infinite", - 29, - 36, - { - "value": "infinite" - } - ], - [ - "whitespace-token", - " ", - 37, - 37, - null - ], - [ - "delim-token", - "<", - 38, - 38, - { - "value": "<" - } - ], - [ - "delim-token", - "=", - 39, - 39, - { - "value": "=" - } - ], - [ - "whitespace-token", - " ", - 40, - 40, - null - ], - [ - "ident-token", - "resolution", - 41, - 50, - { - "value": "resolution" - } - ], + ] + ], + "after": [ [ ")-token", ")", diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index e8f11b365d..b40c05fd2a 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -1,40 +1,42 @@ -// import './cases/media-not/0001.mjs'; +import './cases/media-not/0001.mjs'; -// import './cases/mf-boolean/0001.mjs'; -// import './cases/mf-boolean/0002.mjs'; -// import './cases/mf-boolean/0003.mjs'; -// import './cases/mf-boolean/0004.mjs'; -// import './cases/mf-boolean/0005.mjs'; +import './cases/mf-boolean/0001.mjs'; +import './cases/mf-boolean/0002.mjs'; +import './cases/mf-boolean/0003.mjs'; +import './cases/mf-boolean/0004.mjs'; +import './cases/mf-boolean/0005.mjs'; -// import './cases/mf-plain/0001.mjs'; -// import './cases/mf-plain/0002.mjs'; -// import './cases/mf-plain/0003.mjs'; -// import './cases/mf-plain/0004.mjs'; -// import './cases/mf-plain/0005.mjs'; +import './cases/mf-plain/0001.mjs'; +import './cases/mf-plain/0002.mjs'; +import './cases/mf-plain/0003.mjs'; +import './cases/mf-plain/0004.mjs'; +import './cases/mf-plain/0005.mjs'; import './cases/mf-range/0001.mjs'; -// import './cases/mf-range/0002.mjs'; -// import './cases/mf-range/0003.mjs'; -// import './cases/mf-range/0004.mjs'; -// import './cases/mf-range/0005.mjs'; -// import './cases/mf-range/0006.mjs'; -// import './cases/mf-range/0007.mjs'; -// import './cases/mf-range/0008.mjs'; -// import './cases/mf-range/0009.mjs'; -// import './cases/mf-range/0010.mjs'; -// import './cases/mf-range/0011.mjs'; -// import './cases/mf-range/0012.mjs'; +import './cases/mf-range/0002.mjs'; +import './cases/mf-range/0003.mjs'; +import './cases/mf-range/0004.mjs'; +import './cases/mf-range/0005.mjs'; +import './cases/mf-range/0006.mjs'; +import './cases/mf-range/0007.mjs'; +import './cases/mf-range/0008.mjs'; +import './cases/mf-range/0009.mjs'; +import './cases/mf-range/0010.mjs'; +import './cases/mf-range/0011.mjs'; +import './cases/mf-range/0012.mjs'; +import './cases/mf-range/0013.mjs'; +import './cases/mf-range/0014.mjs'; -// import './cases/query-with-type/0001.mjs'; -// import './cases/query-with-type/0002.mjs'; -// import './cases/query-with-type/0003.mjs'; -// import './cases/query-with-type/0004.mjs'; +import './cases/query-with-type/0001.mjs'; +import './cases/query-with-type/0002.mjs'; +import './cases/query-with-type/0003.mjs'; +import './cases/query-with-type/0004.mjs'; -// import './cases/various/0001.mjs'; -// import './cases/various/0002.mjs'; -// import './cases/various/0003.mjs'; -// import './cases/various/0004.mjs'; -// import './cases/various/0005.mjs'; -// import './cases/various/0006.mjs'; +import './cases/various/0001.mjs'; +import './cases/various/0002.mjs'; +import './cases/various/0003.mjs'; +import './cases/various/0004.mjs'; +import './cases/various/0005.mjs'; +import './cases/various/0006.mjs'; -// import './serialize/0001.mjs'; +import './serialize/0001.mjs'; From 68d1778cf15295d7208e91442b328c7cdf708562 Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sun, 6 Nov 2022 15:16:47 +0100 Subject: [PATCH 55/59] increase test coverage --- packages/media-query-list-parser/package.json | 1 + .../src/util/component-value-is.ts | 26 +- .../media-query-list-parser/stryker.conf.json | 19 ++ .../test/cases/mf-boolean/0005.mjs | 1 + .../test/cases/mf-plain/0004.mjs | 1 + .../test/cases/mf-plain/0005.expect.json | 121 ++++++- .../test/cases/mf-range/0008.mjs | 1 + .../test/cases/mf-range/0009.mjs | 1 + .../test/cases/mf-range/0010.mjs | 1 + .../test/cases/mf-range/0011.mjs | 1 + .../test/cases/mf-range/0012.mjs | 1 + .../specification-examples/0001.expect.json | 19 ++ .../cases/specification-examples/0001.mjs | 13 + .../specification-examples/0002.expect.json | 19 ++ .../cases/specification-examples/0002.mjs | 13 + .../specification-examples/0003.expect.json | 179 ++++++++++ .../cases/specification-examples/0003.mjs | 13 + .../specification-examples/0004.expect.json | 1 + .../cases/specification-examples/0004.mjs | 13 + .../specification-examples/0005.expect.json | 19 ++ .../cases/specification-examples/0005.mjs | 13 + .../specification-examples/0006.expect.json | 231 +++++++++++++ .../cases/specification-examples/0006.mjs | 13 + .../specification-examples/0007.expect.json | 174 ++++++++++ .../cases/specification-examples/0007.mjs | 13 + .../specification-examples/0008.expect.json | 314 ++++++++++++++++++ .../cases/specification-examples/0008.mjs | 13 + .../specification-examples/0009.expect.json | 270 +++++++++++++++ .../cases/specification-examples/0009.mjs | 13 + .../specification-examples/0010.expect.json | 171 ++++++++++ .../cases/specification-examples/0010.mjs | 13 + .../specification-examples/0011.expect.json | 171 ++++++++++ .../cases/specification-examples/0011.mjs | 13 + .../specification-examples/0012.expect.json | 216 ++++++++++++ .../cases/specification-examples/0012.mjs | 13 + .../specification-examples/0013.expect.json | 226 +++++++++++++ .../cases/specification-examples/0013.mjs | 13 + .../specification-examples/0014.expect.json | 226 +++++++++++++ .../cases/specification-examples/0014.mjs | 13 + .../specification-examples/0015.expect.json | 237 +++++++++++++ .../cases/specification-examples/0015.mjs | 13 + .../specification-examples/0016.expect.json | 237 +++++++++++++ .../cases/specification-examples/0016.mjs | 13 + .../specification-examples/0017.expect.json | 148 +++++++++ .../cases/specification-examples/0017.mjs | 14 + .../specification-examples/0018.expect.json | 148 +++++++++ .../cases/specification-examples/0018.mjs | 14 + .../test/cases/various/0001.expect.json | 150 ++++++++- .../media-query-list-parser/test/test.mjs | 19 ++ .../test/util/run-test.mjs | 22 +- 50 files changed, 3577 insertions(+), 30 deletions(-) create mode 100644 packages/media-query-list-parser/stryker.conf.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0001.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0001.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0002.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0002.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0003.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0003.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0004.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0004.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0006.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0006.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0007.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0007.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0008.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0008.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0009.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0009.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0010.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0010.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0011.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0011.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0012.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0012.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0013.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0013.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0014.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0014.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0015.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0015.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0016.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0016.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0017.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0017.mjs create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0018.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0018.mjs diff --git a/packages/media-query-list-parser/package.json b/packages/media-query-list-parser/package.json index a24b5bdcaf..fa77ed6e81 100644 --- a/packages/media-query-list-parser/package.json +++ b/packages/media-query-list-parser/package.json @@ -48,6 +48,7 @@ "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", "lint:package-json": "node ../../.github/bin/format-package-json.mjs", "prepublishOnly": "npm run clean && npm run build && npm run test", + "stryker": "stryker run --logLevel error", "test": "node ./test/test.mjs", "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs", "test:rewrite-expects": "REWRITE_EXPECTS=true node ./test/test.mjs" diff --git a/packages/media-query-list-parser/src/util/component-value-is.ts b/packages/media-query-list-parser/src/util/component-value-is.ts index 1475eaeeb1..1088cc72be 100644 --- a/packages/media-query-list-parser/src/util/component-value-is.ts +++ b/packages/media-query-list-parser/src/util/component-value-is.ts @@ -1,5 +1,5 @@ import { ComponentValue, ComponentValueType, FunctionNode } from '@csstools/css-parser-algorithms'; -import { CSSToken, TokenFunction, TokenIdent, TokenType } from '@csstools/css-tokenizer'; +import { CSSToken, TokenFunction, TokenType } from '@csstools/css-tokenizer'; export function isNumber(componentValue: ComponentValue) { if ( @@ -12,30 +12,6 @@ export function isNumber(componentValue: ComponentValue) { return false; } -export function isNumericConstant(componentValue: ComponentValue) { - if (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Ident) { - const token = componentValue.value as TokenIdent; - const tokenValue = token[4].value.toLowerCase(); - if (tokenValue === 'infinity') { - return true; - } - if (tokenValue === '-infinity') { - return true; - } - if (tokenValue === 'nan') { - return true; - } - if (tokenValue === 'e') { - return true; - } - if (tokenValue === 'pi') { - return true; - } - } - - return false; -} - export function isDimension(componentValue: ComponentValue) { if (componentValue.type === ComponentValueType.Token && (componentValue.value as CSSToken)[0] === TokenType.Dimension) { return true; diff --git a/packages/media-query-list-parser/stryker.conf.json b/packages/media-query-list-parser/stryker.conf.json new file mode 100644 index 0000000000..015ebbb73c --- /dev/null +++ b/packages/media-query-list-parser/stryker.conf.json @@ -0,0 +1,19 @@ +{ + "$schema": "../../node_modules/@stryker-mutator/core/schema/stryker-schema.json", + "mutate": [ + "src/**/*.ts" + ], + "buildCommand": "npm run build", + "testRunner": "command", + "coverageAnalysis": "perTest", + "tempDirName": "../../.stryker-tmp", + "commandRunner": { + "command": "npm run test" + }, + "thresholds": { + "high": 100, + "low": 100, + "break": 100 + }, + "inPlace": true +} diff --git a/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs b/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs index c44c8c1f75..fd8afbd156 100644 --- a/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs +++ b/packages/media-query-list-parser/test/cases/mf-boolean/0005.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs b/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs index 6d9a61a7b9..7c310ffb4d 100644 --- a/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs +++ b/packages/media-query-list-parser/test/cases/mf-plain/0004.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json b/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json index 0637a088a0..81dc5863df 100644 --- a/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json +++ b/packages/media-query-list-parser/test/cases/mf-plain/0005.expect.json @@ -1 +1,120 @@ -[] \ No newline at end of file +[ + { + "type": "media-query-invalid", + "string": "[resolution: infinite]", + "media": [ + { + "type": "simple-block", + "startToken": [ + "[-token", + "[", + 0, + 0, + null + ], + "tokens": [ + [ + "[-token", + "[", + 0, + 0, + null + ], + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ], + [ + "colon-token", + ":", + 11, + 11, + null + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ], + [ + "]-token", + "]", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "resolution", + 1, + 10, + { + "value": "resolution" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 11, + 11, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "infinite", + 13, + 20, + { + "value": "infinite" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/mf-range/0008.mjs b/packages/media-query-list-parser/test/cases/mf-range/0008.mjs index f6e3a7c143..7b9fc76098 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0008.mjs +++ b/packages/media-query-list-parser/test/cases/mf-range/0008.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0009.mjs b/packages/media-query-list-parser/test/cases/mf-range/0009.mjs index 7f69bc9854..95098d1cad 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0009.mjs +++ b/packages/media-query-list-parser/test/cases/mf-range/0009.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0010.mjs b/packages/media-query-list-parser/test/cases/mf-range/0010.mjs index 36714065f4..6ff9a2ba01 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0010.mjs +++ b/packages/media-query-list-parser/test/cases/mf-range/0010.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0011.mjs b/packages/media-query-list-parser/test/cases/mf-range/0011.mjs index 4e2b8740c4..5d1a49b552 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0011.mjs +++ b/packages/media-query-list-parser/test/cases/mf-range/0011.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/mf-range/0012.mjs b/packages/media-query-list-parser/test/cases/mf-range/0012.mjs index 52274de225..01cd32f50d 100644 --- a/packages/media-query-list-parser/test/cases/mf-range/0012.mjs +++ b/packages/media-query-list-parser/test/cases/mf-range/0012.mjs @@ -10,4 +10,5 @@ runTest( expected, ); }, + 1, ); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0001.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0001.expect.json new file mode 100644 index 0000000000..ca5c59492b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0001.expect.json @@ -0,0 +1,19 @@ +[ + { + "type": "media-query-with-type", + "string": "screen", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0001.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0001.mjs new file mode 100644 index 0000000000..9b78044a64 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0001.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen', + 'specification-examples/0001', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0002.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0002.expect.json new file mode 100644 index 0000000000..a4c943d655 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0002.expect.json @@ -0,0 +1,19 @@ +[ + { + "type": "media-query-with-type", + "string": "print", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "print", + 0, + 4, + { + "value": "print" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0002.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0002.mjs new file mode 100644 index 0000000000..fc91ac1298 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0002.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'print', + 'specification-examples/0002', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0003.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0003.expect.json new file mode 100644 index 0000000000..632d6888fa --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0003.expect.json @@ -0,0 +1,179 @@ +[ + { + "type": "media-query-with-type", + "string": "screen and (color)", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "screen", + 0, + 5, + { + "value": "screen" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "ident-token", + "and", + 7, + 9, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 12, + 16, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "(-token", + "(", + 11, + 11, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 17, + 17, + null + ] + ] + }, + "before": [], + "after": [] + } + } + }, + { + "type": "media-query-with-type", + "string": " projection and (color)", + "modifier": [], + "mediaType": [ + [ + "whitespace-token", + " ", + 19, + 19, + null + ], + [ + "ident-token", + "projection", + 20, + 29, + { + "value": "projection" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 30, + 30, + null + ], + [ + "ident-token", + "and", + 31, + 33, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 36, + 40, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "whitespace-token", + " ", + 34, + 34, + null + ], + [ + "(-token", + "(", + 35, + 35, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 41, + 41, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0003.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0003.mjs new file mode 100644 index 0000000000..70f1591ed0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0003.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'screen and (color), projection and (color)', + 'specification-examples/0003', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0004.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0004.expect.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0004.expect.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0004.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0004.mjs new file mode 100644 index 0000000000..531984b8b0 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0004.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '', + 'specification-examples/0004', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0005.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0005.expect.json new file mode 100644 index 0000000000..4a93fb3d26 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0005.expect.json @@ -0,0 +1,19 @@ +[ + { + "type": "media-query-with-type", + "string": "all", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "all", + 0, + 2, + { + "value": "all" + } + ] + ], + "media": null + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0005.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0005.mjs new file mode 100644 index 0000000000..f9a7370f3a --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'all', + 'specification-examples/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0006.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0006.expect.json new file mode 100644 index 0000000000..0a18102264 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0006.expect.json @@ -0,0 +1,231 @@ +[ + { + "type": "media-query-with-type", + "string": "speech and (device-aspect-ratio: 16/9)", + "modifier": [], + "mediaType": [ + [ + "ident-token", + "speech", + 0, + 5, + { + "value": "speech" + } + ] + ], + "and": [ + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "ident-token", + "and", + 7, + 9, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "device-aspect-ratio", + "tokens": [ + [ + "ident-token", + "device-aspect-ratio", + 12, + 30, + { + "value": "device-aspect-ratio" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": [ + { + "type": "token", + "tokens": [ + [ + "number-token", + "16", + 33, + 34, + { + "value": 16, + "type": "integer" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "delim-token", + "/", + 35, + 35, + { + "value": "/" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "number-token", + "9", + 36, + 36, + { + "value": 9, + "type": "integer" + } + ] + ] + } + ], + "tokens": [ + [ + "whitespace-token", + " ", + 32, + 32, + null + ], + [ + "number-token", + "16", + 33, + 34, + { + "value": 16, + "type": "integer" + } + ], + [ + "delim-token", + "/", + 35, + 35, + { + "value": "/" + } + ], + [ + "number-token", + "9", + 36, + 36, + { + "value": 9, + "type": "integer" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "device-aspect-ratio", + 12, + 30, + { + "value": "device-aspect-ratio" + } + ], + [ + "colon-token", + ":", + 31, + 31, + null + ], + [ + "whitespace-token", + " ", + 32, + 32, + null + ], + [ + "number-token", + "16", + 33, + 34, + { + "value": 16, + "type": "integer" + } + ], + [ + "delim-token", + "/", + 35, + 35, + { + "value": "/" + } + ], + [ + "number-token", + "9", + 36, + 36, + { + "value": 9, + "type": "integer" + } + ] + ] + }, + "before": [ + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "(-token", + "(", + 11, + 11, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 37, + 37, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0006.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0006.mjs new file mode 100644 index 0000000000..2a9da88e0d --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0006.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'speech and (device-aspect-ratio: 16/9)', + 'specification-examples/0006', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0007.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0007.expect.json new file mode 100644 index 0000000000..d3955b3fd4 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0007.expect.json @@ -0,0 +1,174 @@ +[ + { + "type": "media-query-without-type", + "string": "not (width <= -100px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 5, + 9, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 10, + 10, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "-100px", + 14, + 19, + { + "value": -100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "dimension-token", + "-100px", + 14, + 19, + { + "value": -100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "width", + 5, + 9, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 10, + 10, + null + ], + [ + "delim-token", + "<", + 11, + 11, + { + "value": "<" + } + ], + [ + "delim-token", + "=", + 12, + 12, + { + "value": "=" + } + ], + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "dimension-token", + "-100px", + 14, + 19, + { + "value": -100, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 4, + 4, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 20, + 20, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0007.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0007.mjs new file mode 100644 index 0000000000..910e53f13f --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0007.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not (width <= -100px)', + 'specification-examples/0007', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0008.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0008.expect.json new file mode 100644 index 0000000000..3ba2afa4c2 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0008.expect.json @@ -0,0 +1,314 @@ +[ + { + "type": "media-query-without-type", + "string": "(width < 600px) and (height < 600px)", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "600px", + 9, + 13, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "dimension-token", + "600px", + 9, + 13, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "width", + 1, + 5, + { + "value": "width" + } + ], + [ + "whitespace-token", + " ", + 6, + 6, + null + ], + [ + "delim-token", + "<", + 7, + 7, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "dimension-token", + "600px", + 9, + 13, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 14, + 14, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 15, + 15, + null + ], + [ + "ident-token", + "and", + 16, + 18, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 19, + 19, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-range-name-value", + "name": { + "type": "mf-name", + "name": "height", + "tokens": [ + [ + "ident-token", + "height", + 21, + 26, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "600px", + 30, + 34, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 29, + 29, + null + ], + [ + "dimension-token", + "600px", + 30, + 34, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "height", + 21, + 26, + { + "value": "height" + } + ], + [ + "whitespace-token", + " ", + 27, + 27, + null + ], + [ + "delim-token", + "<", + 28, + 28, + { + "value": "<" + } + ], + [ + "whitespace-token", + " ", + 29, + 29, + null + ], + [ + "dimension-token", + "600px", + 30, + 34, + { + "value": 600, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 20, + 20, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 35, + 35, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0008.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0008.mjs new file mode 100644 index 0000000000..a29e3a438b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0008.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(width < 600px) and (height < 600px)', + 'specification-examples/0008', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0009.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0009.expect.json new file mode 100644 index 0000000000..d55ed0c157 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0009.expect.json @@ -0,0 +1,270 @@ +[ + { + "type": "media-query-without-type", + "string": "(update: slow) or (hover: none)", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-or", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "update", + "tokens": [ + [ + "ident-token", + "update", + 1, + 6, + { + "value": "update" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "slow", + 9, + 12, + { + "value": "slow" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "slow", + 9, + 12, + { + "value": "slow" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "update", + 1, + 6, + { + "value": "update" + } + ], + [ + "colon-token", + ":", + 7, + 7, + null + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "slow", + 9, + 12, + { + "value": "slow" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 13, + 13, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-or", + "modifier": [ + [ + "whitespace-token", + " ", + 14, + 14, + null + ], + [ + "ident-token", + "or", + 15, + 16, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 17, + 17, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 19, + 23, + { + "value": "hover" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "ident-token", + "none", + 26, + 29, + { + "value": "none" + } + ] + ] + }, + "tokens": [ + [ + "whitespace-token", + " ", + 25, + 25, + null + ], + [ + "ident-token", + "none", + 26, + 29, + { + "value": "none" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "hover", + 19, + 23, + { + "value": "hover" + } + ], + [ + "colon-token", + ":", + 24, + 24, + null + ], + [ + "whitespace-token", + " ", + 25, + 25, + null + ], + [ + "ident-token", + "none", + 26, + 29, + { + "value": "none" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 18, + 18, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 30, + 30, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0009.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0009.mjs new file mode 100644 index 0000000000..35c04d1af4 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0009.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(update: slow) or (hover: none)', + 'specification-examples/0009', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0010.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0010.expect.json new file mode 100644 index 0000000000..86d043cf0c --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0010.expect.json @@ -0,0 +1,171 @@ +[ + { + "type": "media-query-without-type", + "string": "(not (color)) or (hover)", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-or", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 1, + 3, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 6, + 10, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 5, + 5, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 11, + 11, + null + ] + ] + }, + "before": [], + "after": [] + } + } + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 12, + 12, + null + ] + ] + }, + "list": [ + { + "type": "media-or", + "modifier": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "or", + 14, + 15, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 18, + 22, + { + "value": "hover" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 17, + 17, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 23, + 23, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0010.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0010.mjs new file mode 100644 index 0000000000..490eb23b4a --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0010.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(not (color)) or (hover)', + 'specification-examples/0010', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0011.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0011.expect.json new file mode 100644 index 0000000000..388ba10172 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0011.expect.json @@ -0,0 +1,171 @@ +[ + { + "type": "media-query-without-type", + "string": "not ((color) or (hover))", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 0, + 2, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 3, + 3, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-or", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 6, + 10, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 5, + 5, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 11, + 11, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-or", + "modifier": [ + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "ident-token", + "or", + 13, + 14, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 15, + 15, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 17, + 21, + { + "value": "hover" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 16, + 16, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 22, + 22, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + }, + "before": [ + [ + "(-token", + "(", + 4, + 4, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 23, + 23, + null + ] + ] + } + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0011.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0011.mjs new file mode 100644 index 0000000000..4e6c07660c --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0011.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + 'not ((color) or (hover))', + 'specification-examples/0011', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0012.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0012.expect.json new file mode 100644 index 0000000000..0ff982293b --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0012.expect.json @@ -0,0 +1,216 @@ +[ + { + "type": "media-query-without-type", + "string": "(not (color)) and (not (hover))", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 1, + 3, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 6, + 10, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 5, + 5, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 11, + 11, + null + ] + ] + }, + "before": [], + "after": [] + } + } + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 12, + 12, + null + ] + ] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 13, + 13, + null + ], + [ + "ident-token", + "and", + 14, + 16, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 17, + 17, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-not", + "modifier": [ + [ + "ident-token", + "not", + 19, + 21, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 24, + 28, + { + "value": "hover" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 23, + 23, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 29, + 29, + null + ] + ] + }, + "before": [], + "after": [] + } + } + }, + "before": [ + [ + "(-token", + "(", + 18, + 18, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 30, + 30, + null + ] + ] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0012.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0012.mjs new file mode 100644 index 0000000000..c5e04a01dd --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0012.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(not (color)) and (not (hover))', + 'specification-examples/0012', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0013.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0013.expect.json new file mode 100644 index 0000000000..24a092e181 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0013.expect.json @@ -0,0 +1,226 @@ +[ + { + "type": "media-query-without-type", + "string": "(color) and ((pointer) or (hover))", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 6, + 6, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 7, + 7, + null + ], + [ + "ident-token", + "and", + 8, + 10, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-or", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "pointer", + "tokens": [ + [ + "ident-token", + "pointer", + 14, + 20, + { + "value": "pointer" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 13, + 13, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 21, + 21, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-or", + "modifier": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + "ident-token", + "or", + 23, + 24, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 25, + 25, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 27, + 31, + { + "value": "hover" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 26, + 26, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 32, + 32, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + }, + "before": [ + [ + "(-token", + "(", + 12, + 12, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 33, + 33, + null + ] + ] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0013.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0013.mjs new file mode 100644 index 0000000000..29fb57b1cd --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0013.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color) and ((pointer) or (hover))', + 'specification-examples/0013', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0014.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0014.expect.json new file mode 100644 index 0000000000..26292910c3 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0014.expect.json @@ -0,0 +1,226 @@ +[ + { + "type": "media-query-without-type", + "string": "((color) and (pointer)) or (hover)", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-or", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 2, + 6, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 1, + 1, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 7, + 7, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "and", + 9, + 11, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "pointer", + "tokens": [ + [ + "ident-token", + "pointer", + 14, + 20, + { + "value": "pointer" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 13, + 13, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 21, + 21, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 22, + 22, + null + ] + ] + }, + "list": [ + { + "type": "media-or", + "modifier": [ + [ + "whitespace-token", + " ", + 23, + 23, + null + ], + [ + "ident-token", + "or", + 24, + 25, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 26, + 26, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "hover", + "tokens": [ + [ + "ident-token", + "hover", + 28, + 32, + { + "value": "hover" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 27, + 27, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 33, + 33, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0014.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0014.mjs new file mode 100644 index 0000000000..1426a69600 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0014.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '((color) and (pointer)) or (hover)', + 'specification-examples/0014', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0015.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0015.expect.json new file mode 100644 index 0000000000..c20caa59e1 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0015.expect.json @@ -0,0 +1,237 @@ +[ + { + "type": "media-query-invalid", + "string": "(color) and (pointer) or (hover)", + "media": [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 7, + 7, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 8, + 10, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 12, + 12, + null + ], + "tokens": [ + [ + "(-token", + "(", + 12, + 12, + null + ], + [ + "ident-token", + "pointer", + 13, + 19, + { + "value": "pointer" + } + ], + [ + ")-token", + ")", + 20, + 20, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "pointer", + 13, + 19, + { + "value": "pointer" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 21, + 21, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "or", + 22, + 23, + { + "value": "or" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 25, + 25, + null + ], + "tokens": [ + [ + "(-token", + "(", + 25, + 25, + null + ], + [ + "ident-token", + "hover", + 26, + 30, + { + "value": "hover" + } + ], + [ + ")-token", + ")", + 31, + 31, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "hover", + 26, + 30, + { + "value": "hover" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0015.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0015.mjs new file mode 100644 index 0000000000..befcbc3a49 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0015.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color) and (pointer) or (hover)', + 'specification-examples/0015', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0016.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0016.expect.json new file mode 100644 index 0000000000..0a0968a3d8 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0016.expect.json @@ -0,0 +1,237 @@ +[ + { + "type": "media-query-invalid", + "string": "(color) not (pointer) or (hover)", + "media": [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 6, + 6, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 1, + 5, + { + "value": "color" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 7, + 7, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 8, + 10, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 11, + 11, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 12, + 12, + null + ], + "tokens": [ + [ + "(-token", + "(", + 12, + 12, + null + ], + [ + "ident-token", + "pointer", + 13, + 19, + { + "value": "pointer" + } + ], + [ + ")-token", + ")", + 20, + 20, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "pointer", + 13, + 19, + { + "value": "pointer" + } + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 21, + 21, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "or", + 22, + 23, + { + "value": "or" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 25, + 25, + null + ], + "tokens": [ + [ + "(-token", + "(", + 25, + 25, + null + ], + [ + "ident-token", + "hover", + 26, + 30, + { + "value": "hover" + } + ], + [ + ")-token", + ")", + 31, + 31, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "hover", + 26, + 30, + { + "value": "hover" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0016.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0016.mjs new file mode 100644 index 0000000000..a45f0c4066 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0016.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '(color) not (pointer) or (hover)', + 'specification-examples/0016', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0017.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0017.expect.json new file mode 100644 index 0000000000..85ad37800e --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0017.expect.json @@ -0,0 +1,148 @@ +[ + { + "type": "media-query-without-type", + "string": "((color) and (pointer) or (hover))", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "ident-token", + "color", + 2, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "and", + 9, + 11, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "(-token", + "(", + 13, + 13, + null + ], + [ + "ident-token", + "pointer", + 14, + 20, + { + "value": "pointer" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + "ident-token", + "or", + 23, + 24, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 25, + 25, + null + ], + [ + "(-token", + "(", + 26, + 26, + null + ], + [ + "ident-token", + "hover", + 27, + 31, + { + "value": "hover" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ], + [ + ")-token", + ")", + 33, + 33, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0017.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0017.mjs new file mode 100644 index 0000000000..37ded5cb82 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0017.mjs @@ -0,0 +1,14 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '((color) and (pointer) or (hover))', + 'specification-examples/0017', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, + 1, +); diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0018.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0018.expect.json new file mode 100644 index 0000000000..fd2eda5026 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0018.expect.json @@ -0,0 +1,148 @@ +[ + { + "type": "media-query-without-type", + "string": "((color) not (pointer) or (hover))", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "general-enclosed", + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "(-token", + "(", + 1, + 1, + null + ], + [ + "ident-token", + "color", + 2, + 6, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 7, + 7, + null + ], + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "not", + 9, + 11, + { + "value": "not" + } + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ], + [ + "(-token", + "(", + 13, + 13, + null + ], + [ + "ident-token", + "pointer", + 14, + 20, + { + "value": "pointer" + } + ], + [ + ")-token", + ")", + 21, + 21, + null + ], + [ + "whitespace-token", + " ", + 22, + 22, + null + ], + [ + "ident-token", + "or", + 23, + 24, + { + "value": "or" + } + ], + [ + "whitespace-token", + " ", + 25, + 25, + null + ], + [ + "(-token", + "(", + 26, + 26, + null + ], + [ + "ident-token", + "hover", + 27, + 31, + { + "value": "hover" + } + ], + [ + ")-token", + ")", + 32, + 32, + null + ], + [ + ")-token", + ")", + 33, + 33, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0018.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0018.mjs new file mode 100644 index 0000000000..46e80a9a76 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0018.mjs @@ -0,0 +1,14 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '((color) not (pointer) or (hover))', + 'specification-examples/0018', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, + 1, +); diff --git a/packages/media-query-list-parser/test/cases/various/0001.expect.json b/packages/media-query-list-parser/test/cases/various/0001.expect.json index 0637a088a0..36d0caf8d3 100644 --- a/packages/media-query-list-parser/test/cases/various/0001.expect.json +++ b/packages/media-query-list-parser/test/cases/various/0001.expect.json @@ -1 +1,149 @@ -[] \ No newline at end of file +[ + { + "type": "media-query-invalid", + "string": "(/* a comment */foo ) something else", + "media": [ + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 0, + 0, + null + ], + "tokens": [ + [ + "(-token", + "(", + 0, + 0, + null + ], + [ + "comment", + "/* a comment */", + 1, + 15, + null + ], + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ], + [ + "whitespace-token", + " ", + 19, + 20, + null + ], + [ + ")-token", + ")", + 21, + 21, + null + ] + ], + "value": [ + { + "type": "comment", + "tokens": [ + [ + "comment", + "/* a comment */", + 1, + 15, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 16, + 18, + { + "value": "foo" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 19, + 20, + null + ] + ] + } + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 22, + 22, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "something", + 23, + 31, + { + "value": "something" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 32, + 32, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "else", + 33, + 36, + { + "value": "else" + } + ] + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index b40c05fd2a..e091a9f87a 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -32,6 +32,25 @@ import './cases/query-with-type/0002.mjs'; import './cases/query-with-type/0003.mjs'; import './cases/query-with-type/0004.mjs'; +import './cases/specification-examples/0001.mjs'; +import './cases/specification-examples/0002.mjs'; +import './cases/specification-examples/0003.mjs'; +import './cases/specification-examples/0004.mjs'; +import './cases/specification-examples/0005.mjs'; +import './cases/specification-examples/0006.mjs'; +import './cases/specification-examples/0007.mjs'; +import './cases/specification-examples/0008.mjs'; +import './cases/specification-examples/0009.mjs'; +import './cases/specification-examples/0010.mjs'; +import './cases/specification-examples/0011.mjs'; +import './cases/specification-examples/0012.mjs'; +import './cases/specification-examples/0013.mjs'; +import './cases/specification-examples/0014.mjs'; +import './cases/specification-examples/0015.mjs'; +import './cases/specification-examples/0016.mjs'; +import './cases/specification-examples/0017.mjs'; +import './cases/specification-examples/0018.mjs'; + import './cases/various/0001.mjs'; import './cases/various/0002.mjs'; import './cases/various/0003.mjs'; diff --git a/packages/media-query-list-parser/test/util/run-test.mjs b/packages/media-query-list-parser/test/util/run-test.mjs index e1a747c7f2..fd36d3cf89 100644 --- a/packages/media-query-list-parser/test/util/run-test.mjs +++ b/packages/media-query-list-parser/test/util/run-test.mjs @@ -1,9 +1,11 @@ import fs from 'fs'; import path from 'path'; -import { parse } from '@csstools/media-query-list-parser'; +import { isGeneralEnclosed, parse } from '@csstools/media-query-list-parser'; -export function runTest(source, testPath, assertEqual) { - const resultAST = parse(source); +export function runTest(source, testPath, assertEqual, expectGeneralEnclosed = 0) { + const resultAST = parse(source, { + preserveInvalidMediaQueries: true, + }); const resultAST_JSON = JSON.stringify(resultAST, null, '\t'); if (process.env['REWRITE_EXPECTS'] === 'true') { @@ -21,5 +23,19 @@ export function runTest(source, testPath, assertEqual) { JSON.parse(resultAST_JSON), expectData, ); + + let generalEnclosedCounter = 0; + resultAST.map((x) => { + x.walk((entry) => { + if (isGeneralEnclosed(entry.node)) { + generalEnclosedCounter++; + } + }); + }); + + assertEqual( + generalEnclosedCounter, + expectGeneralEnclosed, + ); } } From 21b126a75fc42cce3a4fbed548c5c41c7c6a0aec Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sun, 6 Nov 2022 16:23:46 +0100 Subject: [PATCH 56/59] fix + more test coverage --- .../consume-component-block-function.ts | 75 +++++++++---------- .../test/api/options.mjs | 71 ++++++++++++++++++ .../media-query-list-parser/test/test.mjs | 2 + .../test/util/run-test.mjs | 1 + 4 files changed, 109 insertions(+), 40 deletions(-) create mode 100644 packages/media-query-list-parser/test/api/options.mjs diff --git a/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts index 0bad490c7f..55ccb9df09 100644 --- a/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts +++ b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts @@ -8,52 +8,47 @@ export type ComponentValue = FunctionNode | SimpleBlockNode | WhitespaceNode | C // https://www.w3.org/TR/css-syntax-3/#consume-a-component-value export function consumeComponentValue(ctx: Context, tokens: Array): { advance: number, node: ComponentValue } { - const i = 0; - - // eslint-disable-next-line no-constant-condition - while (true) { - const token = tokens[i]; - if ( - token[0] === TokenType.OpenParen || - token[0] === TokenType.OpenCurly || - token[0] === TokenType.OpenSquare - ) { - const r = consumeSimpleBlock(ctx, tokens.slice(i)); - return { - advance: r.advance + i, - node: r.node, - }; - } - - if (token[0] === TokenType.Function) { - const r = consumeFunction(ctx, tokens.slice(i)); - return { - advance: r.advance + i, - node: r.node, - }; - } + const token = tokens[0]; + if ( + token[0] === TokenType.OpenParen || + token[0] === TokenType.OpenCurly || + token[0] === TokenType.OpenSquare + ) { + const r = consumeSimpleBlock(ctx, tokens); + return { + advance: r.advance, + node: r.node, + }; + } - if (token[0] === TokenType.Whitespace) { - const r = consumeWhitespace(ctx, tokens.slice(i)); - return { - advance: r.advance + i, - node: r.node, - }; - } + if (token[0] === TokenType.Function) { + const r = consumeFunction(ctx, tokens); + return { + advance: r.advance, + node: r.node, + }; + } - if (token[0] === TokenType.Comment) { - const r = consumeComment(ctx, tokens.slice(i)); - return { - advance: r.advance + i, - node: r.node, - }; - } + if (token[0] === TokenType.Whitespace) { + const r = consumeWhitespace(ctx, tokens); + return { + advance: r.advance, + node: r.node, + }; + } + if (token[0] === TokenType.Comment) { + const r = consumeComment(ctx, tokens); return { - advance: i + 1, - node: new TokenNode(token), + advance: r.advance, + node: r.node, }; } + + return { + advance: 1, + node: new TokenNode(token), + }; } export class FunctionNode { diff --git a/packages/media-query-list-parser/test/api/options.mjs b/packages/media-query-list-parser/test/api/options.mjs new file mode 100644 index 0000000000..9268779f4f --- /dev/null +++ b/packages/media-query-list-parser/test/api/options.mjs @@ -0,0 +1,71 @@ +import assert from 'assert'; +import { parse } from '@csstools/media-query-list-parser'; + +{ + const resultAST = parse('[a, b], all', { + preserveInvalidMediaQueries: true, + }); + + assert.equal( + resultAST.length, + 2, + ); + + assert.equal( + resultAST[0].type, + 'media-query-invalid', + ); +} + +{ + const resultAST = parse('[a, b], all', { + preserveInvalidMediaQueries: false, + }); + + assert.equal( + resultAST.length, + 1, + ); +} + +{ + const resultAST = parse('[a, b], all'); + + assert.equal( + resultAST.length, + 1, + ); +} + +{ + const resultAST = parse('(foo'); + + assert.equal( + resultAST.length, + 0, + ); +} + +{ + let error; + const resultAST = parse('(foo', { + onParseError: (err) => { + error = err; + }, + }); + + assert.equal( + resultAST.length, + 0, + ); + + assert.deepEqual( + error, + { + message: 'Unexpected EOF while consuming a simple block.', + start: 0, + end: -1, + state: ['5.4.8. Consume a simple block', 'Unexpected EOF'], + }, + ); +} diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index e091a9f87a..2bb212ff93 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -1,3 +1,5 @@ +import './api/options.mjs'; + import './cases/media-not/0001.mjs'; import './cases/mf-boolean/0001.mjs'; diff --git a/packages/media-query-list-parser/test/util/run-test.mjs b/packages/media-query-list-parser/test/util/run-test.mjs index fd36d3cf89..f96dc172e9 100644 --- a/packages/media-query-list-parser/test/util/run-test.mjs +++ b/packages/media-query-list-parser/test/util/run-test.mjs @@ -6,6 +6,7 @@ export function runTest(source, testPath, assertEqual, expectGeneralEnclosed = 0 const resultAST = parse(source, { preserveInvalidMediaQueries: true, }); + const resultAST_JSON = JSON.stringify(resultAST, null, '\t'); if (process.env['REWRITE_EXPECTS'] === 'true') { From f37db29d940f4801f17534f89c3ecb4cfa0ba912 Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sun, 6 Nov 2022 17:18:26 +0100 Subject: [PATCH 57/59] getter -> method --- .../src/consume/consume-component-block-function.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts index 55ccb9df09..726b51843f 100644 --- a/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts +++ b/packages/css-parser-algorithms/src/consume/consume-component-block-function.ts @@ -64,7 +64,7 @@ export class FunctionNode { this.value = value; } - get nameTokenValue(): string { + nameTokenValue(): string { return this.name[4].value; } @@ -136,7 +136,7 @@ export class FunctionNode { toJSON() { return { type: this.type, - name: this.name[4].value, + name: this.nameTokenValue(), tokens: this.tokens(), value: this.value.map((x) => x.toJSON()), }; From 1222b53470976700af3c92ef567f71cc2c16d2ac Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Sun, 6 Nov 2022 17:38:39 +0100 Subject: [PATCH 58/59] fix build + more test coverage --- .github/workflows/test.yml | 41 +- .../cases/query-with-type/0005.expect.json | 203 +++++ .../test/cases/query-with-type/0005.mjs | 13 + .../test/cases/various/0007.expect.json | 740 ++++++++++++++++++ .../test/cases/various/0007.mjs | 14 + .../media-query-list-parser/test/test.mjs | 2 + 6 files changed, 977 insertions(+), 36 deletions(-) create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0005.expect.json create mode 100644 packages/media-query-list-parser/test/cases/query-with-type/0005.mjs create mode 100644 packages/media-query-list-parser/test/cases/various/0007.expect.json create mode 100644 packages/media-query-list-parser/test/cases/various/0007.mjs diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2cb8186230..71d9340e20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,35 +47,10 @@ jobs: with: node-version: ${{ matrix.node }} - - name: env - run: | - echo 'DIST_RESTORE_KEYS<> $GITHUB_ENV - echo "$(git --no-pager log -9 --skip 1 --no-merges --pretty=format:'%H--test-dist-${{ matrix.node }}-${{ matrix.os }}')" >> $GITHUB_ENV - echo 'EOF' >> $GITHUB_ENV - echo "COMMIT_SHA=$(git --no-pager log -1 --no-merges --pretty=format:'%H')" >> $GITHUB_ENV - echo "BUILD_AND_TEST_ALL_PACKAGES=$(echo ${{ github.event.inputs.run_index }})" >> $GITHUB_ENV - - - name: previous build artifacts cache - uses: actions/cache@v3.0.11 - with: - path: | - .cached-commit - cli/*/dist/** - experimental/*/dist/** - packages/*/dist/** - plugin-packs/*/dist/** - plugins/*/dist/** - key: ${{ env.COMMIT_SHA }}--test-dist-${{ matrix.node }}-${{ matrix.os }} - restore-keys: ${{ env.DIST_RESTORE_KEYS }} - - name: npm ci run: | npm ci --ignore-scripts - - name: determine modified workspaces - run: | - echo "MODIFIED_WORKSPACES=$(node './.github/bin/modified-workspaces/log-modified-workspaces.mjs')" >> $GITHUB_ENV - # Build, lint and PostCSS Tape tests must all work and pass : # - with exact dependencies from package-lock.json # - without requiring postinstall scripts from dependencies to run @@ -84,12 +59,12 @@ jobs: npm run build --if-present - name: lint - run: npm run lint --if-present $MODIFIED_WORKSPACES + run: npm run lint --if-present if: matrix.is_base_node_version && matrix.is_base_os_version # Basic tests - name: test - run: npm run test --if-present $MODIFIED_WORKSPACES + run: npm run test --if-present env: ENABLE_ANNOTATIONS_FOR_NODE: ${{ matrix.is_base_node_version }} ENABLE_ANNOTATIONS_FOR_OS: ${{ matrix.is_base_os_version }} @@ -99,14 +74,14 @@ jobs: - name: test:cli run: | npm install --ignore-scripts - npm run test:cli --if-present $MODIFIED_WORKSPACES + npm run test:cli --if-present # Browser Tests # running "npm ci" again, but allowing scripts so that Chrome is installed - name: test:browser run: | npm ci - npm run test:browser --if-present $MODIFIED_WORKSPACES + npm run test:browser --if-present if: matrix.is_base_node_version && matrix.is_base_os_version # E2E Tests @@ -125,11 +100,5 @@ jobs: if: matrix.is_base_node_version && matrix.is_base_os_version - name: test:deno - run: npm run test:deno --if-present $MODIFIED_WORKSPACES + run: npm run test:deno --if-present if: matrix.is_base_node_version && matrix.is_base_os_version - - # record the current commit for the cache at the end of the job - # must be the last step - - name: record current commit - run: | - echo "$(git --no-pager log -1 --no-merges --pretty=format:'%H')" > .cached-commit diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0005.expect.json b/packages/media-query-list-parser/test/cases/query-with-type/0005.expect.json new file mode 100644 index 0000000000..2beac0b28a --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0005.expect.json @@ -0,0 +1,203 @@ +[ + { + "type": "media-query-with-type", + "string": "/* a comment 0 */only/* a comment 1 */screen/* a comment 2 */ /* a comment 3 */and/* a comment 4 */(min-width:/* a comment 5 */300px)", + "modifier": [ + [ + "comment", + "/* a comment 0 */", + 0, + 16, + null + ], + [ + "ident-token", + "only", + 17, + 20, + { + "value": "only" + } + ] + ], + "mediaType": [ + [ + "comment", + "/* a comment 1 */", + 21, + 37, + null + ], + [ + "ident-token", + "screen", + 38, + 43, + { + "value": "screen" + } + ] + ], + "and": [ + [ + "comment", + "/* a comment 2 */", + 44, + 60, + null + ], + [ + "whitespace-token", + " ", + 61, + 61, + null + ], + [ + "comment", + "/* a comment 3 */", + 62, + 78, + null + ], + [ + "ident-token", + "and", + 79, + 81, + { + "value": "and" + } + ] + ], + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-plain", + "name": { + "type": "mf-name", + "name": "min-width", + "tokens": [ + [ + "ident-token", + "min-width", + 100, + 108, + { + "value": "min-width" + } + ] + ] + }, + "value": { + "type": "mf-value", + "value": { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 127, + 131, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "comment", + "/* a comment 5 */", + 110, + 126, + null + ], + [ + "dimension-token", + "300px", + 127, + 131, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "tokens": [ + [ + "ident-token", + "min-width", + 100, + 108, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 109, + 109, + null + ], + [ + "comment", + "/* a comment 5 */", + 110, + 126, + null + ], + [ + "dimension-token", + "300px", + 127, + 131, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + }, + "before": [ + [ + "comment", + "/* a comment 4 */", + 82, + 98, + null + ], + [ + "(-token", + "(", + 99, + 99, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 132, + 132, + null + ] + ] + }, + "before": [], + "after": [] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/query-with-type/0005.mjs b/packages/media-query-list-parser/test/cases/query-with-type/0005.mjs new file mode 100644 index 0000000000..7dffdd9d58 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/query-with-type/0005.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '/* a comment 0 */only/* a comment 1 */screen/* a comment 2 */ /* a comment 3 */and/* a comment 4 */(min-width:/* a comment 5 */300px)', + 'query-with-type/0005', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/cases/various/0007.expect.json b/packages/media-query-list-parser/test/cases/various/0007.expect.json new file mode 100644 index 0000000000..18df982878 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0007.expect.json @@ -0,0 +1,740 @@ +[ + { + "type": "media-query-invalid", + "string": " and and", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 0, + 0, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 1, + 3, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 4, + 4, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 5, + 7, + { + "value": "and" + } + ] + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " screen and and (color)", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 9, + 9, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 10, + 15, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 16, + 16, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 17, + 19, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 20, + 20, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 21, + 23, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 24, + 24, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 25, + 25, + null + ], + "tokens": [ + [ + "(-token", + "(", + 25, + 25, + null + ], + [ + "ident-token", + "color", + 26, + 30, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 31, + 31, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 26, + 30, + { + "value": "color" + } + ] + ] + } + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " only screen print", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 33, + 33, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 34, + 37, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 38, + 38, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 39, + 44, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 45, + 45, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "print", + 46, + 50, + { + "value": "print" + } + ] + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " only only", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 52, + 52, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 53, + 56, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 57, + 57, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 58, + 61, + { + "value": "only" + } + ] + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " not print or", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 63, + 63, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "not", + 64, + 66, + { + "value": "not" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 67, + 67, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "print", + 68, + 72, + { + "value": "print" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 73, + 73, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "or", + 74, + 75, + { + "value": "or" + } + ] + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " and (color)", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 77, + 77, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "and", + 78, + 80, + { + "value": "and" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 81, + 81, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 82, + 82, + null + ], + "tokens": [ + [ + "(-token", + "(", + 82, + 82, + null + ], + [ + "ident-token", + "color", + 83, + 87, + { + "value": "color" + } + ], + [ + ")-token", + ")", + 88, + 88, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "color", + 83, + 87, + { + "value": "color" + } + ] + ] + } + ] + } + ] + }, + { + "type": "media-query-invalid", + "string": " only screen foo (min-width: 300px)", + "media": [ + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 90, + 90, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "only", + 91, + 94, + { + "value": "only" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 95, + 95, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "screen", + 96, + 101, + { + "value": "screen" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 102, + 102, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "ident-token", + "foo", + 103, + 105, + { + "value": "foo" + } + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 106, + 106, + null + ] + ] + }, + { + "type": "simple-block", + "startToken": [ + "(-token", + "(", + 107, + 107, + null + ], + "tokens": [ + [ + "(-token", + "(", + 107, + 107, + null + ], + [ + "ident-token", + "min-width", + 108, + 116, + { + "value": "min-width" + } + ], + [ + "colon-token", + ":", + 117, + 117, + null + ], + [ + "whitespace-token", + " ", + 118, + 118, + null + ], + [ + "dimension-token", + "300px", + 119, + 123, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ], + [ + ")-token", + ")", + 124, + 124, + null + ] + ], + "value": [ + { + "type": "token", + "tokens": [ + [ + "ident-token", + "min-width", + 108, + 116, + { + "value": "min-width" + } + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "colon-token", + ":", + 117, + 117, + null + ] + ] + }, + { + "type": "whitespace", + "tokens": [ + [ + "whitespace-token", + " ", + 118, + 118, + null + ] + ] + }, + { + "type": "token", + "tokens": [ + [ + "dimension-token", + "300px", + 119, + 123, + { + "value": 300, + "type": "integer", + "unit": "px" + } + ] + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/various/0007.mjs b/packages/media-query-list-parser/test/cases/various/0007.mjs new file mode 100644 index 0000000000..1b5de51ffe --- /dev/null +++ b/packages/media-query-list-parser/test/cases/various/0007.mjs @@ -0,0 +1,14 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +// MUST all be invalid: +runTest( + ' and and, screen and and (color), only screen print, only only, not print or, and (color), only screen foo (min-width: 300px)', + 'various/0007', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index 2bb212ff93..f8539dff62 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -33,6 +33,7 @@ import './cases/query-with-type/0001.mjs'; import './cases/query-with-type/0002.mjs'; import './cases/query-with-type/0003.mjs'; import './cases/query-with-type/0004.mjs'; +import './cases/query-with-type/0005.mjs'; import './cases/specification-examples/0001.mjs'; import './cases/specification-examples/0002.mjs'; @@ -59,5 +60,6 @@ import './cases/various/0003.mjs'; import './cases/various/0004.mjs'; import './cases/various/0005.mjs'; import './cases/various/0006.mjs'; +import './cases/various/0007.mjs'; import './serialize/0001.mjs'; From b386d3e9f46038f81fa8785563b712e68ff35932 Mon Sep 17 00:00:00 2001 From: Romain Menke Date: Mon, 7 Nov 2022 08:06:04 +0100 Subject: [PATCH 59/59] export and more test coverage --- packages/media-query-list-parser/src/index.ts | 2 +- .../specification-examples/0019.expect.json | 150 ++++++++++++++++++ .../cases/specification-examples/0019.mjs | 13 ++ .../media-query-list-parser/test/test.mjs | 1 + 4 files changed, 165 insertions(+), 1 deletion(-) create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0019.expect.json create mode 100644 packages/media-query-list-parser/test/cases/specification-examples/0019.mjs diff --git a/packages/media-query-list-parser/src/index.ts b/packages/media-query-list-parser/src/index.ts index ed02df1531..57680d2953 100644 --- a/packages/media-query-list-parser/src/index.ts +++ b/packages/media-query-list-parser/src/index.ts @@ -40,7 +40,7 @@ export { MediaNot } from './nodes/media-not'; export { MediaOr } from './nodes/media-or'; export { MediaQuery, MediaQueryWithType, MediaQueryWithoutType, MediaQueryInvalid } from './nodes/media-query'; -export { MediaFeatureComparison, MediaFeatureEQ, MediaFeatureGT, MediaFeatureLT, matchesComparison, comparisonFromTokens } from './nodes/media-feature-comparison'; +export { MediaFeatureComparison, MediaFeatureEQ, MediaFeatureGT, MediaFeatureLT, invertComparison, matchesComparison, comparisonFromTokens } from './nodes/media-feature-comparison'; export { MediaType, typeFromToken } from './nodes/media-type'; export { MediaQueryModifier, modifierFromToken } from './nodes/media-query-modifier'; export { cloneMediaQuery } from './util/clone-media-query'; diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0019.expect.json b/packages/media-query-list-parser/test/cases/specification-examples/0019.expect.json new file mode 100644 index 0000000000..67bb1b6591 --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0019.expect.json @@ -0,0 +1,150 @@ +[ + { + "type": "media-query-without-type", + "string": "((color) and (width))", + "media": { + "type": "media-condition", + "media": { + "type": "media-in-parens", + "media": { + "type": "media-condition", + "media": { + "type": "media-condition-list-and", + "leading": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "color", + "tokens": [ + [ + "ident-token", + "color", + 2, + 6, + { + "value": "color" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 1, + 1, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 7, + 7, + null + ] + ] + }, + "before": [], + "after": [] + }, + "list": [ + { + "type": "media-and", + "modifier": [ + [ + "whitespace-token", + " ", + 8, + 8, + null + ], + [ + "ident-token", + "and", + 9, + 11, + { + "value": "and" + } + ], + [ + "whitespace-token", + " ", + 12, + 12, + null + ] + ], + "media": { + "type": "media-in-parens", + "media": { + "type": "media-feature", + "feature": { + "type": "mf-boolean", + "name": "width", + "tokens": [ + [ + "ident-token", + "width", + 14, + 18, + { + "value": "width" + } + ] + ] + }, + "before": [ + [ + "(-token", + "(", + 13, + 13, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 19, + 19, + null + ] + ] + }, + "before": [], + "after": [] + } + } + ], + "before": [], + "after": [] + } + }, + "before": [ + [ + "(-token", + "(", + 0, + 0, + null + ] + ], + "after": [ + [ + ")-token", + ")", + 20, + 20, + null + ] + ] + } + } + } +] \ No newline at end of file diff --git a/packages/media-query-list-parser/test/cases/specification-examples/0019.mjs b/packages/media-query-list-parser/test/cases/specification-examples/0019.mjs new file mode 100644 index 0000000000..80b9aa5e4e --- /dev/null +++ b/packages/media-query-list-parser/test/cases/specification-examples/0019.mjs @@ -0,0 +1,13 @@ +import assert from 'assert'; +import { runTest } from '../../util/run-test.mjs'; + +runTest( + '((color) and (width))', + 'specification-examples/0019', + (actual, expected) => { + assert.deepStrictEqual( + actual, + expected, + ); + }, +); diff --git a/packages/media-query-list-parser/test/test.mjs b/packages/media-query-list-parser/test/test.mjs index f8539dff62..58b7e395e5 100644 --- a/packages/media-query-list-parser/test/test.mjs +++ b/packages/media-query-list-parser/test/test.mjs @@ -53,6 +53,7 @@ import './cases/specification-examples/0015.mjs'; import './cases/specification-examples/0016.mjs'; import './cases/specification-examples/0017.mjs'; import './cases/specification-examples/0018.mjs'; +import './cases/specification-examples/0019.mjs'; import './cases/various/0001.mjs'; import './cases/various/0002.mjs';